Initial revision
[bpt/emacs.git] / lisp / macros.el
CommitLineData
a2535589
JA
1;; Non-primitive commands for keyboard macros.
2;; Copyright (C) 1985, 1986, 1987 Free Software Foundation, Inc.
3
4;; This file is part of GNU Emacs.
5
6;; GNU Emacs is free software; you can redistribute it and/or modify
7;; it under the terms of the GNU General Public License as published by
8;; the Free Software Foundation; either version 1, or (at your option)
9;; any later version.
10
11;; GNU Emacs is distributed in the hope that it will be useful,
12;; but WITHOUT ANY WARRANTY; without even the implied warranty of
13;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14;; GNU General Public License for more details.
15
16;; You should have received a copy of the GNU General Public License
17;; along with GNU Emacs; see the file COPYING. If not, write to
18;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
19
20
7229064d 21;;;###autoload
a2535589
JA
22(defun name-last-kbd-macro (symbol)
23 "Assign a name to the last keyboard macro defined.
ac5b56bc 24Argument SYMBOL is the name to define.
a2535589 25The symbol's function definition becomes the keyboard macro string.
540671f3 26Such a \"function\" cannot be called from Lisp, but it is a valid editor command."
a2535589
JA
27 (interactive "SName for last kbd macro: ")
28 (or last-kbd-macro
29 (error "No keyboard macro defined"))
30 (and (fboundp symbol)
31 (not (stringp (symbol-function symbol)))
32 (error "Function %s is already defined and not a keyboard macro."
33 symbol))
34 (fset symbol last-kbd-macro))
35
7229064d 36;;;###autoload
a2535589
JA
37(defun insert-kbd-macro (macroname &optional keys)
38 "Insert in buffer the definition of kbd macro NAME, as Lisp code.
540671f3
RS
39Optional second arg KEYS means also record the keys it is on
40(this is the prefix argument, when calling interactively).
a2535589 41
540671f3
RS
42This Lisp code will, when executed, define the kbd macro with the same
43definition it has now. If you say to record the keys, the Lisp code
44will also rebind those keys to the macro. Only global key bindings
45are recorded since executing this Lisp code always makes global
46bindings.
a2535589
JA
47
48To save a kbd macro, visit a file of Lisp code such as your ~/.emacs,
49use this command, and then save the file."
50 (interactive "CInsert kbd macro (name): \nP")
51 (insert "(fset '")
52 (prin1 macroname (current-buffer))
53 (insert "\n ")
54 (prin1 (symbol-function macroname) (current-buffer))
55 (insert ")\n")
56 (if keys
57 (let ((keys (where-is-internal macroname nil)))
58 (while keys
59 (insert "(global-set-key ")
60 (prin1 (car keys) (current-buffer))
61 (insert " '")
62 (prin1 macroname (current-buffer))
63 (insert ")\n")
64 (setq keys (cdr keys))))))
65
7229064d 66;;;###autoload
a2535589
JA
67(defun kbd-macro-query (flag)
68 "Query user during kbd macro execution.
540671f3
RS
69 With prefix argument, enters recursive edit, reading keyboard
70commands even within a kbd macro. You can give different commands
71each time the macro executes.
72 Without prefix argument, reads a character. Your options are:
73Space -- execute the rest of the macro.
74DEL -- skip the rest of the macro; start next repetition.
75C-d -- skip rest of the macro and don't repeat it any more.
76C-r -- enter a recursive edit, then on exit ask again for a character
77C-l -- redisplay screen and ask again."
a2535589
JA
78 (interactive "P")
79 (or executing-macro
80 defining-kbd-macro
81 (error "Not defining or executing kbd macro"))
82 (if flag
83 (let (executing-macro defining-kbd-macro)
84 (recursive-edit))
85 (if (not executing-macro)
86 nil
87 (let ((loop t))
88 (while loop
89 (let ((char (let ((executing-macro nil)
90 (defining-kbd-macro nil))
91 (message "Proceed with macro? (Space, DEL, C-d, C-r or C-l) ")
92 (read-char))))
93 (cond ((= char ? )
94 (setq loop nil))
95 ((= char ?\177)
96 (setq loop nil)
97 (setq executing-macro ""))
98 ((= char ?\C-d)
99 (setq loop nil)
100 (setq executing-macro t))
101 ((= char ?\C-l)
102 (recenter nil))
103 ((= char ?\C-r)
104 (let (executing-macro defining-kbd-macro)
105 (recursive-edit))))))))))
7229064d 106
73fa8346
BP
107;;;###autoload
108(define-key ctl-x-map "q" 'kbd-macro-query)