diff options
author | Dan Nicolaescu <dann@ics.uci.edu> | 2009-11-04 06:15:41 +0000 |
---|---|---|
committer | Dan Nicolaescu <dann@ics.uci.edu> | 2009-11-04 06:15:41 +0000 |
commit | f6195dfb584f77aa8d156cdbb21755c42bc5e98f (patch) | |
tree | f20f1b14cf85be6642f81983bcfaa2b368b35e11 /lisp/emacs-lisp | |
parent | 601dd9a3a99ed7433e16164ee291f5cb05254594 (diff) | |
download | emacs-f6195dfb584f77aa8d156cdbb21755c42bc5e98f.tar.gz emacs-f6195dfb584f77aa8d156cdbb21755c42bc5e98f.tar.bz2 emacs-f6195dfb584f77aa8d156cdbb21755c42bc5e98f.zip |
* emacs-lisp/bytecomp.el (byte-compile-output-file-form): Handle defvaralias.
* make-docfile.c (scan_lisp_file): Also look for `defvaralias'.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index 3f330703d51..e527d07029a 100644 --- a/lisp/emacs-lisp/bytecomp.el +++ b/lisp/emacs-lisp/bytecomp.el @@ -2077,7 +2077,7 @@ and will be removed soon. See (elisp)Backquote in the manual.")) ;; defalias calls are output directly by byte-compile-file-form-defmumble; ;; it does not pay to first build the defalias in defmumble and then parse ;; it here. - (if (and (memq (car-safe form) '(defun defmacro defvar defconst autoload + (if (and (memq (car-safe form) '(defun defmacro defvar defvaralias defconst autoload custom-declare-variable)) (stringp (nth 3 form))) (byte-compile-output-docform nil nil '("\n(" 3 ")") form nil |