aboutsummaryrefslogtreecommitdiffstats
path: root/src/lread.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lread.c')
-rw-r--r--src/lread.c12
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 */
4002void 4002void
4003defalias (sname, string) 4003defalias (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
4420variables defined in that file, the features provided, and the 4418variables defined in that file, the features provided, and the
4421features required. Each entry has the form `(provide . FEATURE)', 4419features 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 4422may precede a `(defun . FUNCTION)' entry, and means that SYMBOL was an
4425SYMBOL was an autoload before this file redefined it as a function. 4423autoload before this file redefined it as a function. In addition,
4424entries may also be single symbols, which means that SYMBOL was
4425defined by `defvar' or `defconst'.
4426 4426
4427During preloading, the file name recorded is relative to the main Lisp 4427During preloading, the file name recorded is relative to the main Lisp
4428directory. These file names are converted to absolute at startup. */); 4428directory. These file names are converted to absolute at startup. */);