diff options
| author | Gerd Moellmann | 2000-03-31 11:28:14 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2000-03-31 11:28:14 +0000 |
| commit | c3b2784b4bfd506726bf046e6f0bd4283bb8be42 (patch) | |
| tree | 57e2d2804c0f1f20ae5aed1567a0fdf95e35b241 | |
| parent | 78ecf55a6a3d15b80c86fc7edf507942ef9c0581 (diff) | |
| download | emacs-c3b2784b4bfd506726bf046e6f0bd4283bb8be42.tar.gz emacs-c3b2784b4bfd506726bf046e6f0bd4283bb8be42.zip | |
(byte-compile-file-form-autoload): Re-enable new code.
| -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 08742923c67..28a80458c09 100644 --- a/lisp/emacs-lisp/bytecomp.el +++ b/lisp/emacs-lisp/bytecomp.el | |||
| @@ -10,7 +10,7 @@ | |||
| 10 | 10 | ||
| 11 | ;;; This version incorporates changes up to version 2.10 of the | 11 | ;;; This version incorporates changes up to version 2.10 of the |
| 12 | ;;; Zawinski-Furuseth compiler. | 12 | ;;; Zawinski-Furuseth compiler. |
| 13 | (defconst byte-compile-version "$Revision: 1.1 $") | 13 | (defconst byte-compile-version "$Revision: 2.68 $") |
| 14 | 14 | ||
| 15 | ;; This file is part of GNU Emacs. | 15 | ;; This file is part of GNU Emacs. |
| 16 | 16 | ||
| @@ -1807,7 +1807,7 @@ list that represents a doc string reference. | |||
| 1807 | (eval (nth 5 form)) ;Macro | 1807 | (eval (nth 5 form)) ;Macro |
| 1808 | (eval form)) ;Define the autoload. | 1808 | (eval form)) ;Define the autoload. |
| 1809 | ;; Avoid undefined function warnings for the autoload. | 1809 | ;; Avoid undefined function warnings for the autoload. |
| 1810 | (if (and nil (consp (nth 1 form)) | 1810 | (if (and (consp (nth 1 form)) |
| 1811 | (eq (car (nth 1 form)) 'quote) | 1811 | (eq (car (nth 1 form)) 'quote) |
| 1812 | (consp (cdr (nth 1 form))) | 1812 | (consp (cdr (nth 1 form))) |
| 1813 | (symbolp (nth 1 (nth 1 form)))) | 1813 | (symbolp (nth 1 (nth 1 form)))) |