emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master 056cbcb 1/2: Improve doc strings for some -search-p


From: Stephen Leake
Subject: [Emacs-diffs] master 056cbcb 1/2: Improve doc strings for some -search-path variables
Date: Tue, 30 Jul 2019 14:03:42 -0400 (EDT)

branch: master
commit 056cbcb7a959463290bc91c19b909cbf3eb47d0a
Author: Stephen Leake <address@hidden>
Commit: Stephen Leake <address@hidden>

    Improve doc strings for some -search-path variables
    
    * lisp/emacs-lisp/bytecomp.el (emacs-lisp-compilation-search-path):
    Improve doc string.
    
    * lisp/progmodes/compile.el (compilation-search-path): Improve doc
    string.
    
    * lisp/progmodes/grep.el (grep-search-path): Improve doc string.
---
 lisp/emacs-lisp/bytecomp.el | 7 ++++---
 lisp/progmodes/compile.el   | 5 +++--
 lisp/progmodes/grep.el      | 7 ++++---
 3 files changed, 11 insertions(+), 8 deletions(-)

diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el
index 4315254..125344b 100644
--- a/lisp/emacs-lisp/bytecomp.el
+++ b/lisp/emacs-lisp/bytecomp.el
@@ -1037,9 +1037,10 @@ If STR is something like \"Buffer foo.el\", return 
#<buffer foo.el>
 we go into emacs-lisp-compilation-mode.")
 
 (defcustom emacs-lisp-compilation-search-path '(nil)
-  "Search path for byte-compile error messages.
-Elements should be directory names, not file names of directories.
-The value nil as an element means to try the default directory."
+  "Directories to search for files named in byte-compile error messages.
+Value should be a list of directory names, not file names of
+directories.  The value nil as an element means the byte-compile
+message buffer `default-directory'."
   :version "27.1"
   :type '(repeat (choice (const :tag "Default" nil)
                         (string :tag "Directory"))))
diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el
index 4b2fc51..7537525 100644
--- a/lisp/progmodes/compile.el
+++ b/lisp/progmodes/compile.el
@@ -677,8 +677,9 @@ of `my-compilation-root' here."
 ;;;###autoload
 (defcustom compilation-search-path '(nil)
   "List of directories to search for source files named in error messages.
-Elements should be directory names, not file names of directories.
-The value nil as an element means to try the default directory."
+Elements should be directory names, not file names of
+directories.  The value nil as an element means the error
+message buffer `default-directory'."
   :type '(repeat (choice (const :tag "Default" nil)
                         (string :tag "Directory"))))
 
diff --git a/lisp/progmodes/grep.el b/lisp/progmodes/grep.el
index 67222f7..306ae8f 100644
--- a/lisp/progmodes/grep.el
+++ b/lisp/progmodes/grep.el
@@ -442,9 +442,10 @@ abbreviated part can also be toggled with
   :group 'grep)
 
 (defcustom grep-search-path '(nil)
-  "Search path for grep results.
-Elements should be directory names, not file names of directories.
-The value nil as an element means to try the default directory."
+  "List of directories to search for files named in grep messages.
+Elements should be directory names, not file names of
+directories.  The value nil as an element means the grep messages
+buffer `default-directory'."
   :group 'grep
   :version "27.1"
   :type '(repeat (choice (const :tag "Default" nil)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]