aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2003-04-24 01:52:37 +0000
committerRichard M. Stallman2003-04-24 01:52:37 +0000
commita81edd91e0da0ac9f1e46be1e9dbe0b068146c9c (patch)
treea7ad70e7d69597131581779799528c6fda984d8d
parentd8c912588720da6b48e4d8ba089244b34a2f48ba (diff)
downloademacs-a81edd91e0da0ac9f1e46be1e9dbe0b068146c9c.tar.gz
emacs-a81edd91e0da0ac9f1e46be1e9dbe0b068146c9c.zip
Comment change.
-rw-r--r--lisp/emacs-lisp/bytecomp.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el
index 22c798b4ee9..ade83aa0f41 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: 2.127 $") 13(defconst byte-compile-version "$Revision: 2.129 $")
14 14
15;; This file is part of GNU Emacs. 15;; This file is part of GNU Emacs.
16 16
@@ -3546,6 +3546,8 @@ If FORM is a lambda or a macro, byte-compile it as a function."
3546 (byte-compile-byte-code-maker 3546 (byte-compile-byte-code-maker
3547 (byte-compile-lambda (cons 'lambda (cdr (cdr form))))))) 3547 (byte-compile-lambda (cons 'lambda (cdr (cdr form)))))))
3548 (byte-compile-discard)) 3548 (byte-compile-discard))
3549 ;; We prefer to generate a defalias form so it will record the function
3550 ;; definition just like interpreting a defun.
3549 (byte-compile-form 3551 (byte-compile-form
3550 (list 'defalias 3552 (list 'defalias
3551 (list 'quote (nth 1 form)) 3553 (list 'quote (nth 1 form))