diff options
author | Gerd Moellmann <gerd@gnu.org> | 2000-03-30 11:37:05 +0000 |
---|---|---|
committer | Gerd Moellmann <gerd@gnu.org> | 2000-03-30 11:37:05 +0000 |
commit | 95875d9635052f36d9d93f9decafe6de95644810 (patch) | |
tree | 8508874af45b8eae9eddf42f32c479ee53290e67 /lisp/emacs-lisp | |
parent | 1f56ba73350bdba2a7318023c2b64613df601d62 (diff) | |
download | emacs-95875d9635052f36d9d93f9decafe6de95644810.tar.gz emacs-95875d9635052f36d9d93f9decafe6de95644810.tar.bz2 emacs-95875d9635052f36d9d93f9decafe6de95644810.zip |
(byte-compile-file-form-autoload): Disable new code.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index b2d7bc483e3..08742923c67 100644 --- a/lisp/emacs-lisp/bytecomp.el +++ b/lisp/emacs-lisp/bytecomp.el @@ -10,7 +10,7 @@ ;;; This version incorporates changes up to version 2.10 of the ;;; Zawinski-Furuseth compiler. -(defconst byte-compile-version "$Revision: 2.66 $") +(defconst byte-compile-version "$Revision: 1.1 $") ;; This file is part of GNU Emacs. @@ -1807,7 +1807,7 @@ list that represents a doc string reference. (eval (nth 5 form)) ;Macro (eval form)) ;Define the autoload. ;; Avoid undefined function warnings for the autoload. - (if (and (consp (nth 1 form)) + (if (and nil (consp (nth 1 form)) (eq (car (nth 1 form)) 'quote) (consp (cdr (nth 1 form))) (symbolp (nth 1 (nth 1 form)))) |