mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-20 03:47:34 +00:00
(byte-optimize-form-code-walker):
Use with-no-warnings around compiler-macroexpand.
This commit is contained in:
parent
71eb630896
commit
4cead7a206
1 changed files with 2 additions and 1 deletions
|
|
@ -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))
|
||||
|
|
|
|||
Loading…
Reference in a new issue