(group kmacro): Add :version.

(kmacro-keyboard-quit): New function to cleanup on C-g.
(kmacro-start-macro): Set defining-kbd-macro to append when
appending to last macro.
This commit is contained in:
Kim F. Storm
2004-11-01 23:06:32 +00:00
parent 8a7644e9fd
commit 1b25dccd6e
2 changed files with 16 additions and 2 deletions

View File

@@ -1,5 +1,8 @@
2004-11-02 Kim F. Storm <storm@cua.dk>
* descr-text.el (describe-text-properties): Don't err if called in
the *Help* buffer; output to *Help-2* buffer instead.
* kmacro.el (group kmacro): Add :version.
(kmacro-keyboard-quit): New function to cleanup on C-g.
(kmacro-start-macro): Set defining-kbd-macro to append when

View File

@@ -1,6 +1,6 @@
;;; kmacro.el --- enhanced keyboard macros
;; Copyright (C) 2002 Free Software Foundation, Inc.
;; Copyright (C) 2002, 2003, 2004 Free Software Foundation, Inc.
;; Author: Kim F. Storm <storm@cua.dk>
;; Keywords: keyboard convenience
@@ -120,6 +120,7 @@
"Simplified keyboard macro user interface."
:group 'keyboard
:group 'convenience
:version "21.4"
:link '(emacs-commentary-link :tag "Commentary" "kmacro.el")
:link '(emacs-library-link :tag "Lisp File" "kmacro.el"))
@@ -222,6 +223,14 @@ macro to be executed before appending to it."
(global-set-key (vector kmacro-call-mouse-event) 'kmacro-end-call-mouse))
;;; Called from keyboard-quit
(defun kmacro-keyboard-quit ()
(or (not defining-kbd-macro)
(eq defining-kbd-macro 'append)
(kmacro-ring-empty-p)
(kmacro-pop-ring)))
;;; Keyboard macro counter
@@ -585,7 +594,9 @@ Use \\[kmacro-bind-to-key] to bind it to a key sequence."
(and append
(if kmacro-execute-before-append
(> (car arg) 4)
(= (car arg) 4)))))))
(= (car arg) 4))))
(if (and defining-kbd-macro append)
(setq defining-kbd-macro 'append)))))
;;;###autoload