]> git.eshelyaron.com Git - emacs.git/commitdiff
(keyboard-quit): Call kmacro-keyboard-quit.
authorKim F. Storm <storm@cua.dk>
Mon, 1 Nov 2004 23:03:12 +0000 (23:03 +0000)
committerKim F. Storm <storm@cua.dk>
Mon, 1 Nov 2004 23:03:12 +0000 (23:03 +0000)
lisp/simple.el

index 2665e4c7639e2b58bfd3e8c09755ea0d9f61a867..864340e25d4c0ebade751019a97f42b451f7be36 100644 (file)
@@ -1,7 +1,7 @@
 ;;; simple.el --- basic editing commands for Emacs
 
 ;; Copyright (C) 1985, 86, 87, 93, 94, 95, 96, 97, 98, 99,
-;;               2000, 01, 02, 03, 04
+;;               2000, 01, 02, 03, 2004
 ;;        Free Software Foundation, Inc.
 
 ;; Maintainer: FSF
@@ -3916,6 +3916,8 @@ During execution of Lisp code, this character causes a quit directly.
 At top-level, as an editor command, this simply beeps."
   (interactive)
   (deactivate-mark)
+  (if (fboundp 'kmacro-keyboard-quit)
+      (kmacro-keyboard-quit))
   (setq defining-kbd-macro nil)
   (signal 'quit nil))