1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-03 11:33:37 +00:00

(byte-optimize-form-code-walker):

Use with-no-warnings around compiler-macroexpand.
This commit is contained in:
Richard M. Stallman 2004-11-25 02:58:34 +00:00
parent 71eb630896
commit 4cead7a206

View File

@ -520,7 +520,8 @@
(symbolp (car-safe form))
(get (car-safe form) 'cl-compiler-macro)
(not (eq form
(setq form (compiler-macroexpand form)))))
(with-no-warnings
(setq form (compiler-macroexpand form))))))
(byte-optimize-form form for-effect))
((not (symbolp fn))