* lread.c (syms_of_lread): Mention single symbols defined by
authorLars Magne Ingebrigtsen <larsi@gnus.org>
Sat, 2 Jul 2011 16:18:24 +0000 (18:18 +0200)
committerLars Magne Ingebrigtsen <larsi@gnus.org>
Sat, 2 Jul 2011 16:18:24 +0000 (18:18 +0200)
`defvar' or `defconst' (bug#7154).

src/ChangeLog
src/lread.c

index d3c7b89..cb5d3ba 100644 (file)
@@ -1,5 +1,8 @@
 2011-07-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
 
+       * lread.c (syms_of_lread): Mention single symbols defined by
+       `defvar' or `defconst' (bug#7154).
+
        * fns.c (Frequire): Mention .el.gz files (bug#7314).
        (Frequire): Mention get-load-suffixes.
 
index f937fa3..a9b69a1 100644 (file)
@@ -4420,9 +4420,11 @@ The remaining ENTRIES in the alist element describe the functions and
 variables defined in that file, the features provided, and the
 features required.  Each entry has the form `(provide . FEATURE)',
 `(require . FEATURE)', `(defun . FUNCTION)', `(autoload . SYMBOL)',
-`(defface . SYMBOL)', or `(t . SYMBOL)'.  In addition, an entry `(t
-. SYMBOL)' may precede an entry `(defun . FUNCTION)', and means that
-SYMBOL was an autoload before this file redefined it as a function.
+`(defface . SYMBOL)', or `(t . SYMBOL)'.  Entries like `(t . SYMBOL)'
+may precede a `(defun . FUNCTION)' entry, and means that SYMBOL was an
+autoload before this file redefined it as a function.  In addition,
+entries may also be single symbols, which means that SYMBOL was
+defined by `defvar' or `defconst'.
 
 During preloading, the file name recorded is relative to the main Lisp
 directory.  These file names are converted to absolute at startup.  */);