diff options
| author | Stephen Leake | 2019-07-30 11:02:03 -0700 |
|---|---|---|
| committer | Stephen Leake | 2019-07-30 11:02:03 -0700 |
| commit | 056cbcb7a959463290bc91c19b909cbf3eb47d0a (patch) | |
| tree | 291f4e05718203b70223da435e492d4d1f887dd3 | |
| parent | d0eeb62c43cc3041b322249b488ad157c506abaa (diff) | |
| download | emacs-056cbcb7a959463290bc91c19b909cbf3eb47d0a.tar.gz emacs-056cbcb7a959463290bc91c19b909cbf3eb47d0a.zip | |
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.
| -rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 7 | ||||
| -rw-r--r-- | lisp/progmodes/compile.el | 5 | ||||
| -rw-r--r-- | 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 431525431a4..125344b779b 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> | |||
| 1037 | we go into emacs-lisp-compilation-mode.") | 1037 | we go into emacs-lisp-compilation-mode.") |
| 1038 | 1038 | ||
| 1039 | (defcustom emacs-lisp-compilation-search-path '(nil) | 1039 | (defcustom emacs-lisp-compilation-search-path '(nil) |
| 1040 | "Search path for byte-compile error messages. | 1040 | "Directories to search for files named in byte-compile error messages. |
| 1041 | Elements should be directory names, not file names of directories. | 1041 | Value should be a list of directory names, not file names of |
| 1042 | The value nil as an element means to try the default directory." | 1042 | directories. The value nil as an element means the byte-compile |
| 1043 | message buffer `default-directory'." | ||
| 1043 | :version "27.1" | 1044 | :version "27.1" |
| 1044 | :type '(repeat (choice (const :tag "Default" nil) | 1045 | :type '(repeat (choice (const :tag "Default" nil) |
| 1045 | (string :tag "Directory")))) | 1046 | (string :tag "Directory")))) |
diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el index 4b2fc516c3d..7537525a063 100644 --- a/lisp/progmodes/compile.el +++ b/lisp/progmodes/compile.el | |||
| @@ -677,8 +677,9 @@ of `my-compilation-root' here." | |||
| 677 | ;;;###autoload | 677 | ;;;###autoload |
| 678 | (defcustom compilation-search-path '(nil) | 678 | (defcustom compilation-search-path '(nil) |
| 679 | "List of directories to search for source files named in error messages. | 679 | "List of directories to search for source files named in error messages. |
| 680 | Elements should be directory names, not file names of directories. | 680 | Elements should be directory names, not file names of |
| 681 | The value nil as an element means to try the default directory." | 681 | directories. The value nil as an element means the error |
| 682 | message buffer `default-directory'." | ||
| 682 | :type '(repeat (choice (const :tag "Default" nil) | 683 | :type '(repeat (choice (const :tag "Default" nil) |
| 683 | (string :tag "Directory")))) | 684 | (string :tag "Directory")))) |
| 684 | 685 | ||
diff --git a/lisp/progmodes/grep.el b/lisp/progmodes/grep.el index 67222f78627..306ae8fd50f 100644 --- a/lisp/progmodes/grep.el +++ b/lisp/progmodes/grep.el | |||
| @@ -442,9 +442,10 @@ abbreviated part can also be toggled with | |||
| 442 | :group 'grep) | 442 | :group 'grep) |
| 443 | 443 | ||
| 444 | (defcustom grep-search-path '(nil) | 444 | (defcustom grep-search-path '(nil) |
| 445 | "Search path for grep results. | 445 | "List of directories to search for files named in grep messages. |
| 446 | Elements should be directory names, not file names of directories. | 446 | Elements should be directory names, not file names of |
| 447 | The value nil as an element means to try the default directory." | 447 | directories. The value nil as an element means the grep messages |
| 448 | buffer `default-directory'." | ||
| 448 | :group 'grep | 449 | :group 'grep |
| 449 | :version "27.1" | 450 | :version "27.1" |
| 450 | :type '(repeat (choice (const :tag "Default" nil) | 451 | :type '(repeat (choice (const :tag "Default" nil) |