mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 18:40:39 -08:00
(byte-optimize-pure-func): Quote the
folded value.
This commit is contained in:
parent
4cd305ac33
commit
c80eca7195
2 changed files with 6 additions and 1 deletions
|
|
@ -1,3 +1,8 @@
|
||||||
|
2005-11-02 Andreas Schwab <schwab@suse.de>
|
||||||
|
|
||||||
|
* emacs-lisp/byte-opt.el (byte-optimize-pure-func): Quote the
|
||||||
|
folded value.
|
||||||
|
|
||||||
2005-11-02 Nick Roberts <nickrob@snap.net.nz>
|
2005-11-02 Nick Roberts <nickrob@snap.net.nz>
|
||||||
|
|
||||||
* progmodes/gdb-ui.el (gdb-mouse-until): Make it work in
|
* progmodes/gdb-ui.el (gdb-mouse-until): Make it work in
|
||||||
|
|
|
||||||
|
|
@ -1135,7 +1135,7 @@ of FORM by signaling the error at compile-time."
|
||||||
(setq constant nil))
|
(setq constant nil))
|
||||||
(setq args (cdr args)))
|
(setq args (cdr args)))
|
||||||
(if constant
|
(if constant
|
||||||
(cons 'quote (eval form))
|
(list 'quote (eval form))
|
||||||
form)))
|
form)))
|
||||||
|
|
||||||
;; Avoid having to write forward-... with a negative arg for speed.
|
;; Avoid having to write forward-... with a negative arg for speed.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue