aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2008-11-20 02:58:34 +0000
committerGlenn Morris2008-11-20 02:58:34 +0000
commita54fdddbe5d8fd6e62e4f521abc188dac3a10a8a (patch)
tree840fdcfece03323fe99403df0e6436379bdb5a02
parentd8aef2e6b50fa467fa9c1e214378b105e1ccef7b (diff)
downloademacs-a54fdddbe5d8fd6e62e4f521abc188dac3a10a8a.tar.gz
emacs-a54fdddbe5d8fd6e62e4f521abc188dac3a10a8a.zip
Comment.
-rw-r--r--lisp/emacs-lisp/cl-macs.el2
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/emacs-lisp/cl-macs.el b/lisp/emacs-lisp/cl-macs.el
index 08864962f08..a2c6218d838 100644
--- a/lisp/emacs-lisp/cl-macs.el
+++ b/lisp/emacs-lisp/cl-macs.el
@@ -1333,6 +1333,8 @@ go back to their previous definitions, or lack thereof).
1333 (and (get (car x) 'byte-compile) 1333 (and (get (car x) 'byte-compile)
1334 (error "Byte-compiling a redefinition of `%s' \ 1334 (error "Byte-compiling a redefinition of `%s' \
1335will not work - use `labels' instead" (symbol-name (car x)))) 1335will not work - use `labels' instead" (symbol-name (car x))))
1336 ;; FIXME This affects the rest of the file, when it
1337 ;; should be restricted to the flet body.
1336 (and (boundp 'byte-compile-function-environment) 1338 (and (boundp 'byte-compile-function-environment)
1337 (push (cons (car x) (eval func)) 1339 (push (cons (car x) (eval func))
1338 byte-compile-function-environment))) 1340 byte-compile-function-environment)))