]> git.eshelyaron.com Git - emacs.git/commitdiff
(keyboard-quit): Set defining-kbd-macro to nil to
authorKim F. Storm <storm@cua.dk>
Mon, 9 Sep 2002 22:45:03 +0000 (22:45 +0000)
committerKim F. Storm <storm@cua.dk>
Mon, 9 Sep 2002 22:45:03 +0000 (22:45 +0000)
cancel defining keyboard macro when applicablex.

lisp/simple.el

index 79c3e561af6f32ccb89596dd558734513eec7c76..6d1dbe1db7cc62949de9b071507caa8727e0af5a 100644 (file)
@@ -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)