]> git.eshelyaron.com Git - emacs.git/commitdiff
* 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 d3c7b898dba0e99865b04e7641f62f632ae460fd..cb5d3bacba5982083094217e181b900ff556bca3 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 f937fa39f0fbdd4abd63407d2732d961ca4eea4e..a9b69a1977b0d79b11354fdf919168e02c44bfac 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.  */);