diff options
| -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. |