diff options
author | Leo Liu <sdl.web@gmail.com> | 2015-05-16 09:03:29 +0800 |
---|---|---|
committer | Leo Liu <sdl.web@gmail.com> | 2015-05-16 09:06:34 +0800 |
commit | e85053f8fecd2124450a4e27d629cf87cf508319 (patch) | |
tree | 375c96282fdf039c7e775c4d7ab8e717c9be38c3 /lisp/emacs-lisp | |
parent | 741b224a843d78bb12f67ce1a2a3a15355790b90 (diff) | |
download | emacs-e85053f8fecd2124450a4e27d629cf87cf508319.tar.gz emacs-e85053f8fecd2124450a4e27d629cf87cf508319.tar.bz2 emacs-e85053f8fecd2124450a4e27d629cf87cf508319.zip |
Revert "Fix cps--gensym"
* lisp/emacs-lisp/generator.el (cps--gensym): Revert commit
fbda511ab8069d0115eafca411a43353b85431b1 on 2015-05-14.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/generator.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/generator.el b/lisp/emacs-lisp/generator.el index 65def39bf2e..8251682590e 100644 --- a/lisp/emacs-lisp/generator.el +++ b/lisp/emacs-lisp/generator.el @@ -90,7 +90,7 @@ ;; Change this function to use `cl-gensym' if you want the generated ;; code to be easier to read and debug. ;; (cl-gensym (apply #'format fmt args)) - `(make-symbol (format ,fmt . ,args))) + `(make-symbol ,fmt)) (defvar cps--dynamic-wrappers '(identity) "List of transformer functions to apply to atomic forms we |