diff options
| author | Eli Zaretskii | 2015-10-29 20:47:09 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2015-10-29 20:47:09 +0200 |
| commit | 9dcbcbf2593935151b638330360cfb21efbc3f40 (patch) | |
| tree | 8ec36031d0f54fad9702a69eeb2614d58625858b /src | |
| parent | 8e8a06803c36fdbd4b90faf8f907a90cc33e1bd0 (diff) | |
| download | emacs-9dcbcbf2593935151b638330360cfb21efbc3f40.tar.gz emacs-9dcbcbf2593935151b638330360cfb21efbc3f40.zip | |
; * src/lread.c (syms_of_lread) <load-path>: Improve the doc string.
Diffstat (limited to 'src')
| -rw-r--r-- | src/lread.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/lread.c b/src/lread.c index 1119f3fdfd4..7c891f9954f 100644 --- a/src/lread.c +++ b/src/lread.c | |||
| @@ -4480,9 +4480,11 @@ were read in. */); | |||
| 4480 | DEFVAR_LISP ("load-path", Vload_path, | 4480 | DEFVAR_LISP ("load-path", Vload_path, |
| 4481 | doc: /* List of directories to search for files to load. | 4481 | doc: /* List of directories to search for files to load. |
| 4482 | Each element is a string (directory file name) or nil (meaning | 4482 | Each element is a string (directory file name) or nil (meaning |
| 4483 | `default-directory'). Initialized during startup as described in Info | 4483 | `default-directory'). |
| 4484 | node `(elisp)Library Search'. Use `directory-file-name' when adding items | 4484 | Initialized during startup as described in Info node `(elisp)Library Search'. |
| 4485 | to this path. */); | 4485 | Use `directory-file-name' when adding items to this path. However, Lisp |
| 4486 | programs that process this list should tolerate directories both with | ||
| 4487 | and without trailing slashes. */); | ||
| 4486 | 4488 | ||
| 4487 | DEFVAR_LISP ("load-suffixes", Vload_suffixes, | 4489 | DEFVAR_LISP ("load-suffixes", Vload_suffixes, |
| 4488 | doc: /* List of suffixes for (compiled or source) Emacs Lisp files. | 4490 | doc: /* List of suffixes for (compiled or source) Emacs Lisp files. |