From: Kim F. Storm Date: Mon, 9 Sep 2002 22:45:03 +0000 (+0000) Subject: (keyboard-quit): Set defining-kbd-macro to nil to X-Git-Tag: ttn-vms-21-2-B4~13284 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=f5e130577e9c1c43a4ea58b1062bff6b43346f7a;p=emacs.git (keyboard-quit): Set defining-kbd-macro to nil to cancel defining keyboard macro when applicablex. --- diff --git a/lisp/simple.el b/lisp/simple.el index 79c3e561af6..6d1dbe1db7c 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -3418,6 +3418,7 @@ During execution of Lisp code, this character causes a quit directly. At top-level, as an editor command, this simply beeps." (interactive) (deactivate-mark) + (setq defining-kbd-macro nil) (signal 'quit nil)) (define-key global-map "\C-g" 'keyboard-quit)