diff options
author | Dan Nicolaescu <dann@ics.uci.edu> | 2009-11-12 06:48:03 +0000 |
---|---|---|
committer | Dan Nicolaescu <dann@ics.uci.edu> | 2009-11-12 06:48:03 +0000 |
commit | 76410c3e214db0d579f299af4916276900550f73 (patch) | |
tree | d20ac3edbae19d25a727bd0e10e96a354c28346a /lisp/emacs-lisp | |
parent | 5d58e44c278cebdfa8f2c90fa92845b4cac5711b (diff) | |
download | emacs-76410c3e214db0d579f299af4916276900550f73.tar.gz emacs-76410c3e214db0d579f299af4916276900550f73.tar.bz2 emacs-76410c3e214db0d579f299af4916276900550f73.zip |
(define-compiler-macro): Purecopy the file name.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/cl-macs.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/cl-macs.el b/lisp/emacs-lisp/cl-macs.el index a0b0d2e092b..82d7843cd3a 100644 --- a/lisp/emacs-lisp/cl-macs.el +++ b/lisp/emacs-lisp/cl-macs.el @@ -2565,7 +2565,7 @@ and then returning foo." (list 'if 'file (list 'put (list 'quote func) '(quote compiler-macro-file) - '(file-name-nondirectory file)))))))) + '(purecopy (file-name-nondirectory file))))))))) ;;;###autoload (defun compiler-macroexpand (form) |