diff options
author | Glenn Morris <rgm@gnu.org> | 2011-05-11 13:32:38 -0400 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2011-05-11 13:32:38 -0400 |
commit | 410c42c57059efda8f347751bcc6876893176595 (patch) | |
tree | 17df032b36d571c9c4b10a6c17ed3a1436bca781 /lisp/emacs-lisp | |
parent | f64049c6026b73896a97ae6d1c8e312b2e56a7e9 (diff) | |
download | emacs-410c42c57059efda8f347751bcc6876893176595.tar.gz emacs-410c42c57059efda8f347751bcc6876893176595.tar.bz2 emacs-410c42c57059efda8f347751bcc6876893176595.zip |
Revert accidental portion of previous bytecomp.el commit.
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)) |