diff options
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index e8d8993044c..02b886cdda0 100644 --- a/lisp/emacs-lisp/bytecomp.el +++ b/lisp/emacs-lisp/bytecomp.el @@ -1321,8 +1321,7 @@ extra args." ;; Assumes an element of b-c-i-macro-env that is a symbol points ;; to a defined function. (Bug#8646) (and initial (symbolp initial) - (setq old (byte-compile-fdefinition initial nil) - initial 'yes)) + (setq old (byte-compile-fdefinition initial nil))) (if (and old (not (eq old t))) (progn (and (eq 'macro (car-safe old)) |