diff options
Diffstat (limited to 'src/lread.c')
| -rw-r--r-- | src/lread.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/lread.c b/src/lread.c index f937fa39f0f..6cb217a21c6 100644 --- a/src/lread.c +++ b/src/lread.c | |||
| @@ -4000,9 +4000,7 @@ defsubr (struct Lisp_Subr *sname) | |||
| 4000 | 4000 | ||
| 4001 | #ifdef NOTDEF /* use fset in subr.el now */ | 4001 | #ifdef NOTDEF /* use fset in subr.el now */ |
| 4002 | void | 4002 | void |
| 4003 | defalias (sname, string) | 4003 | defalias (struct Lisp_Subr *sname, char *string) |
| 4004 | struct Lisp_Subr *sname; | ||
| 4005 | char *string; | ||
| 4006 | { | 4004 | { |
| 4007 | Lisp_Object sym; | 4005 | Lisp_Object sym; |
| 4008 | sym = intern (string); | 4006 | sym = intern (string); |
| @@ -4420,9 +4418,11 @@ The remaining ENTRIES in the alist element describe the functions and | |||
| 4420 | variables defined in that file, the features provided, and the | 4418 | variables defined in that file, the features provided, and the |
| 4421 | features required. Each entry has the form `(provide . FEATURE)', | 4419 | features required. Each entry has the form `(provide . FEATURE)', |
| 4422 | `(require . FEATURE)', `(defun . FUNCTION)', `(autoload . SYMBOL)', | 4420 | `(require . FEATURE)', `(defun . FUNCTION)', `(autoload . SYMBOL)', |
| 4423 | `(defface . SYMBOL)', or `(t . SYMBOL)'. In addition, an entry `(t | 4421 | `(defface . SYMBOL)', or `(t . SYMBOL)'. Entries like `(t . SYMBOL)' |
| 4424 | . SYMBOL)' may precede an entry `(defun . FUNCTION)', and means that | 4422 | may precede a `(defun . FUNCTION)' entry, and means that SYMBOL was an |
| 4425 | SYMBOL was an autoload before this file redefined it as a function. | 4423 | autoload before this file redefined it as a function. In addition, |
| 4424 | entries may also be single symbols, which means that SYMBOL was | ||
| 4425 | defined by `defvar' or `defconst'. | ||
| 4426 | 4426 | ||
| 4427 | During preloading, the file name recorded is relative to the main Lisp | 4427 | During preloading, the file name recorded is relative to the main Lisp |
| 4428 | directory. These file names are converted to absolute at startup. */); | 4428 | directory. These file names are converted to absolute at startup. */); |