*** empty log message ***
[bpt/emacs.git] / lisp / macros.el
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
21 ;;;###autoload
22 (defun name-last-kbd-macro (symbol)
23 "Assign a name to the last keyboard macro defined.
24 Argument SYMBOL is the name to define.
25 The symbol's function definition becomes the keyboard macro string.
26 Such a \"function\" cannot be called from Lisp, but it is a valid editor command."
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
36 ;;;###autoload
37 (defun insert-kbd-macro (macroname &optional keys)
38 "Insert in buffer the definition of kbd macro NAME, as Lisp code.
39 Optional second arg KEYS means also record the keys it is on
40 (this is the prefix argument, when calling interactively).
41
42 This Lisp code will, when executed, define the kbd macro with the same
43 definition it has now. If you say to record the keys, the Lisp code
44 will also rebind those keys to the macro. Only global key bindings
45 are recorded since executing this Lisp code always makes global
46 bindings.
47
48 To save a kbd macro, visit a file of Lisp code such as your ~/.emacs,
49 use 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
66 ;;;###autoload
67 (defun kbd-macro-query (flag)
68 "Query user during kbd macro execution.
69 With prefix argument, enters recursive edit, reading keyboard
70 commands even within a kbd macro. You can give different commands
71 each time the macro executes.
72 Without prefix argument, reads a character. Your options are:
73 Space -- execute the rest of the macro.
74 DEL -- skip the rest of the macro; start next repetition.
75 C-d -- skip rest of the macro and don't repeat it any more.
76 C-r -- enter a recursive edit, then on exit ask again for a character
77 C-l -- redisplay screen and ask again."
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))))))))))
106
107 ;;;###autoload (define-key ctl-x-map "q" 'kbd-macro-query)