diff options
author | Kim F. Storm <storm@cua.dk> | 2006-08-02 22:37:17 +0000 |
---|---|---|
committer | Kim F. Storm <storm@cua.dk> | 2006-08-02 22:37:17 +0000 |
commit | d2f00838a139465c7d0d49fe83eee36902943f13 (patch) | |
tree | 223f134c43504fe6023d223cbd6d6da75376a6ca /lisp/edmacro.el | |
parent | 97cd4340109b6f63e8eeb1beee1e21756e683801 (diff) | |
download | emacs-d2f00838a139465c7d0d49fe83eee36902943f13.tar.gz |
(edmacro-fix-menu-commands): Ignore switch-frame.
Diffstat (limited to 'lisp/edmacro.el')
-rw-r--r-- | lisp/edmacro.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/edmacro.el b/lisp/edmacro.el index 0998697dc2a..0fecaf2f5d4 100644 --- a/lisp/edmacro.el +++ b/lisp/edmacro.el @@ -670,6 +670,7 @@ This function assumes that the events can be stored in a string." (cond ((atom ev) (push ev result)) ((eq (car ev) 'help-echo)) + ((eq (car ev) 'switch-frame)) ((equal ev '(menu-bar)) (push 'menu-bar result)) ((equal (cadadr ev) '(menu-bar)) |