diff options
| author | Glenn Morris | 2017-06-20 21:35:42 -0400 |
|---|---|---|
| committer | Glenn Morris | 2017-06-20 21:35:42 -0400 |
| commit | d2ea4aee02a40b76b4e221c46ecb58270c2e1ca7 (patch) | |
| tree | 292117f3d4dfd005685b4f605f14b813947daa67 /src | |
| parent | 671921137ada3994766ff674783293cd0fc05244 (diff) | |
| download | emacs-d2ea4aee02a40b76b4e221c46ecb58270c2e1ca7.tar.gz emacs-d2ea4aee02a40b76b4e221c46ecb58270c2e1ca7.zip | |
* src/lread.c (syms_of_lread) <load-history>: Doc fix.
Diffstat (limited to 'src')
| -rw-r--r-- | src/lread.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/lread.c b/src/lread.c index f8493982c67..88dbc23b964 100644 --- a/src/lread.c +++ b/src/lread.c | |||
| @@ -4730,11 +4730,12 @@ The remaining ENTRIES in the alist element describe the functions and | |||
| 4730 | variables defined in that file, the features provided, and the | 4730 | variables defined in that file, the features provided, and the |
| 4731 | features required. Each entry has the form `(provide . FEATURE)', | 4731 | features required. Each entry has the form `(provide . FEATURE)', |
| 4732 | `(require . FEATURE)', `(defun . FUNCTION)', `(autoload . SYMBOL)', | 4732 | `(require . FEATURE)', `(defun . FUNCTION)', `(autoload . SYMBOL)', |
| 4733 | `(defface . SYMBOL)', or `(t . SYMBOL)'. Entries like `(t . SYMBOL)' | 4733 | `(defface . SYMBOL)', `(define-type . SYMBOL)', |
| 4734 | may precede a `(defun . FUNCTION)' entry, and means that SYMBOL was an | 4734 | `(cl-defmethod METHOD SPECIALIZERS)', or `(t . SYMBOL)'. |
| 4735 | autoload before this file redefined it as a function. In addition, | 4735 | Entries like `(t . SYMBOL)' may precede a `(defun . FUNCTION)' entry, |
| 4736 | entries may also be single symbols, which means that SYMBOL was | 4736 | and means that SYMBOL was an autoload before this file redefined it |
| 4737 | defined by `defvar' or `defconst'. | 4737 | as a function. In addition, entries may also be single symbols, |
| 4738 | which means that symbol was defined by `defvar' or `defconst'. | ||
| 4738 | 4739 | ||
| 4739 | During preloading, the file name recorded is relative to the main Lisp | 4740 | During preloading, the file name recorded is relative to the main Lisp |
| 4740 | directory. These file names are converted to absolute at startup. */); | 4741 | directory. These file names are converted to absolute at startup. */); |