aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorGerd Moellmann <[email protected]>2000-03-31 11:28:14 +0000
committerGerd Moellmann <[email protected]>2000-03-31 11:28:14 +0000
commitc3b2784b4bfd506726bf046e6f0bd4283bb8be42 (patch)
tree57e2d2804c0f1f20ae5aed1567a0fdf95e35b241 /lisp
parent78ecf55a6a3d15b80c86fc7edf507942ef9c0581 (diff)
(byte-compile-file-form-autoload): Re-enable new code.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/emacs-lisp/bytecomp.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el
index 08742923c6..28a80458c0 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: 1.1 $")
+(defconst byte-compile-version "$Revision: 2.68 $")
;; 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 nil (consp (nth 1 form))
+ (if (and (consp (nth 1 form))
(eq (car (nth 1 form)) 'quote)
(consp (cdr (nth 1 form)))
(symbolp (nth 1 (nth 1 form))))