diff options
| author | Eli Zaretskii | 2001-06-02 06:12:18 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2001-06-02 06:12:18 +0000 |
| commit | b75f8eab5535b58761a3b2a06c6fcf8765fcfa53 (patch) | |
| tree | 6210c8e487e2a808ed175a90646bc0ab786b72dc /src | |
| parent | 7727f3c0b893102feb94ad43b65b4fefb6c0abba (diff) | |
| download | emacs-b75f8eab5535b58761a3b2a06c6fcf8765fcfa53.tar.gz emacs-b75f8eab5535b58761a3b2a06c6fcf8765fcfa53.zip | |
(Fload): Document that the argument is run via substitute-in-file-name.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 5 | ||||
| -rw-r--r-- | src/lread.c | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index a842e42d810..7a369bd581e 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2001-06-02 Eli Zaretskii <eliz@is.elta.co.il> | ||
| 2 | |||
| 3 | * lread.c (Fload): Document that the argument is run via | ||
| 4 | substitute-in-file-name. | ||
| 5 | |||
| 1 | 2001-05-31 Gerd Moellmann <gerd@gnu.org> | 6 | 2001-05-31 Gerd Moellmann <gerd@gnu.org> |
| 2 | 7 | ||
| 3 | * Makefile.in (bootstrap-doc): New target. | 8 | * Makefile.in (bootstrap-doc): New target. |
diff --git a/src/lread.c b/src/lread.c index 8a357b7af47..735d9000fae 100644 --- a/src/lread.c +++ b/src/lread.c | |||
| @@ -609,7 +609,8 @@ record_load_unwind (old) | |||
| 609 | DEFUN ("load", Fload, Sload, 1, 5, 0, | 609 | DEFUN ("load", Fload, Sload, 1, 5, 0, |
| 610 | "Execute a file of Lisp code named FILE.\n\ | 610 | "Execute a file of Lisp code named FILE.\n\ |
| 611 | First try FILE with `.elc' appended, then try with `.el',\n\ | 611 | First try FILE with `.elc' appended, then try with `.el',\n\ |
| 612 | then try FILE unmodified.\n\ | 612 | then try FILE unmodified. Environment variable references in FILE\n\ |
| 613 | are replaced with their values by calling `substitute-in-file-name'.\n\ | ||
| 613 | This function searches the directories in `load-path'.\n\ | 614 | This function searches the directories in `load-path'.\n\ |
| 614 | If optional second arg NOERROR is non-nil,\n\ | 615 | If optional second arg NOERROR is non-nil,\n\ |
| 615 | report no error if FILE doesn't exist.\n\ | 616 | report no error if FILE doesn't exist.\n\ |