changeset 28441:a7b3ff772283

(byte-compile-file-form-autoload): Re-enable new code.
author Gerd Moellmann <gerd@gnu.org>
date Fri, 31 Mar 2000 11:28:14 +0000
parents 45337208670b
children efd5a62ccce9
files lisp/emacs-lisp/bytecomp.el
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/emacs-lisp/bytecomp.el	Fri Mar 31 11:25:10 2000 +0000
+++ b/lisp/emacs-lisp/bytecomp.el	Fri Mar 31 11:28:14 2000 +0000
@@ -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 @@
        (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))))