Sync to HEAD
[bpt/emacs.git] / lisp / macros.el
CommitLineData
55535639 1;;; macros.el --- non-primitive commands for keyboard macros
6594deb0 2
f8c25f1b 3;; Copyright (C) 1985, 86, 87, 92, 94, 95 Free Software Foundation, Inc.
a2535589 4
9750e079 5;; Maintainer: FSF
e9571d2a 6;; Keywords: abbrev
9750e079 7
a2535589
JA
8;; This file is part of GNU Emacs.
9
10;; GNU Emacs is free software; you can redistribute it and/or modify
11;; it under the terms of the GNU General Public License as published by
e5167999 12;; the Free Software Foundation; either version 2, or (at your option)
a2535589
JA
13;; any later version.
14
15;; GNU Emacs is distributed in the hope that it will be useful,
16;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18;; GNU General Public License for more details.
19
20;; You should have received a copy of the GNU General Public License
b578f267
EN
21;; along with GNU Emacs; see the file COPYING. If not, write to the
22;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23;; Boston, MA 02111-1307, USA.
a2535589 24
e41b2db1
ER
25;;; Commentary:
26
27;; Extension commands for keyboard macros. These permit you to assign
28;; a name to the last-defined keyboard macro, expand and insert the
29;; lisp corresponding to a macro, query the user from within a macro,
30;; or apply a macro to each line in the reason.
31
e5167999 32;;; Code:
a2535589 33
7229064d 34;;;###autoload
a2535589
JA
35(defun name-last-kbd-macro (symbol)
36 "Assign a name to the last keyboard macro defined.
ac5b56bc 37Argument SYMBOL is the name to define.
a2535589 38The symbol's function definition becomes the keyboard macro string.
540671f3 39Such a \"function\" cannot be called from Lisp, but it is a valid editor command."
a2535589
JA
40 (interactive "SName for last kbd macro: ")
41 (or last-kbd-macro
42 (error "No keyboard macro defined"))
43 (and (fboundp symbol)
44 (not (stringp (symbol-function symbol)))
4dc7458e 45 (not (vectorp (symbol-function symbol)))
55535639 46 (error "Function %s is already defined and not a keyboard macro"
a2535589 47 symbol))
a3fc4dee
RS
48 (if (string-equal symbol "")
49 (error "No command name given"))
a2535589
JA
50 (fset symbol last-kbd-macro))
51
7229064d 52;;;###autoload
a2535589
JA
53(defun insert-kbd-macro (macroname &optional keys)
54 "Insert in buffer the definition of kbd macro NAME, as Lisp code.
540671f3 55Optional second arg KEYS means also record the keys it is on
b4b3b736 56\(this is the prefix argument, when calling interactively).
a2535589 57
540671f3
RS
58This Lisp code will, when executed, define the kbd macro with the same
59definition it has now. If you say to record the keys, the Lisp code
60will also rebind those keys to the macro. Only global key bindings
61are recorded since executing this Lisp code always makes global
62bindings.
a2535589 63
b4b3b736 64To save a kbd macro, visit a file of Lisp code such as your `~/.emacs',
a2535589
JA
65use this command, and then save the file."
66 (interactive "CInsert kbd macro (name): \nP")
45ca32a6
RS
67 (let (definition)
68 (if (string= (symbol-name macroname) "")
69 (progn
70 (setq macroname 'last-kbd-macro definition last-kbd-macro)
71 (insert "(setq "))
72 (setq definition (symbol-function macroname))
73 (insert "(fset '"))
74 (prin1 macroname (current-buffer))
75 (insert "\n ")
157d78ec
KH
76 (if (stringp definition)
77 (let ((beg (point)) end)
78 (prin1 definition (current-buffer))
79 (setq end (point-marker))
80 (goto-char beg)
f0653de7
RS
81 (while (< (point) end)
82 (let ((char (following-char)))
83 (cond ((= char 0)
84 (delete-region (point) (1+ (point)))
85 (insert "\\C-@"))
86 ((< char 27)
87 (delete-region (point) (1+ (point)))
88 (insert "\\C-" (+ 96 char)))
89 ((= char ?\C-\\)
90 (delete-region (point) (1+ (point)))
91 (insert "\\C-\\\\"))
92 ((< char 32)
93 (delete-region (point) (1+ (point)))
94 (insert "\\C-" (+ 64 char)))
95 ((< char 127)
96 (forward-char 1))
97 ((= char 127)
98 (delete-region (point) (1+ (point)))
99 (insert "\\C-?"))
100 ((= char 128)
101 (delete-region (point) (1+ (point)))
102 (insert "\\M-\\C-@"))
103 ((= char (aref "\M-\C-\\" 0))
104 (delete-region (point) (1+ (point)))
105 (insert "\\M-\\C-\\\\"))
106 ((< char 155)
107 (delete-region (point) (1+ (point)))
108 (insert "\\M-\\C-" (- char 32)))
109 ((< char 160)
110 (delete-region (point) (1+ (point)))
111 (insert "\\M-\\C-" (- char 64)))
112 ((= char (aref "\M-\\" 0))
113 (delete-region (point) (1+ (point)))
114 (insert "\\M-\\\\"))
115 ((< char 255)
116 (delete-region (point) (1+ (point)))
117 (insert "\\M-" (- char 128)))
118 ((= char 255)
119 (delete-region (point) (1+ (point)))
157d78ec
KH
120 (insert "\\M-\\C-?"))))))
121 (if (vectorp definition)
07d1e73a 122 (let ((len (length definition)) (i 0) char mods)
157d78ec
KH
123 (while (< i len)
124 (insert (if (zerop i) ?\[ ?\ ))
125 (setq char (aref definition i)
126 i (1+ i))
07d1e73a 127 (cond ((not (numberp char))
157d78ec 128 (prin1 char (current-buffer)))
07d1e73a
RS
129 (t
130 (insert "?")
131 (setq mods (event-modifiers char)
132 char (event-basic-type char))
133 (while mods
134 (cond ((eq (car mods) 'control)
135 (insert "\\C-"))
136 ((eq (car mods) 'meta)
137 (insert "\\M-"))
138 ((eq (car mods) 'hyper)
139 (insert "\\H-"))
140 ((eq (car mods) 'super)
141 (insert "\\s-"))
142 ((eq (car mods) 'alt)
143 (insert "\\A-"))
144 ((and (eq (car mods) 'shift)
145 (>= char ?a)
146 (<= char ?z))
147 (setq char (upcase char)))
148 ((eq (car mods) 'shift)
149 (insert "\\S-")))
150 (setq mods (cdr mods)))
151 (cond ((= char ?\\)
152 (insert "\\\\"))
5367d2b3
GM
153 ((= char ?\")
154 (insert "\\\""))
eac6ee8f
GM
155 ((= char ?\;)
156 (insert "\\;"))
07d1e73a
RS
157 ((= char 127)
158 (insert "\\C-?"))
159 ((< char 127)
160 (insert char))
161 (t (insert "\\" (format "%o" char)))))))
157d78ec
KH
162 (insert ?\]))
163 (prin1 definition (current-buffer))))
45ca32a6
RS
164 (insert ")\n")
165 (if keys
16f63554 166 (let ((keys (where-is-internal macroname '(keymap))))
45ca32a6
RS
167 (while keys
168 (insert "(global-set-key ")
169 (prin1 (car keys) (current-buffer))
170 (insert " '")
171 (prin1 macroname (current-buffer))
172 (insert ")\n")
173 (setq keys (cdr keys)))))))
a2535589 174
7229064d 175;;;###autoload
a2535589
JA
176(defun kbd-macro-query (flag)
177 "Query user during kbd macro execution.
540671f3
RS
178 With prefix argument, enters recursive edit, reading keyboard
179commands even within a kbd macro. You can give different commands
180each time the macro executes.
ba790870
RS
181 Without prefix argument, asks whether to continue running the macro.
182Your options are: \\<query-replace-map>
183\\[act] Finish this iteration normally and continue with the next.
184\\[skip] Skip the rest of this iteration, and start the next.
185\\[exit] Stop the macro entirely right now.
186\\[recenter] Redisplay the screen, then ask again.
187\\[edit] Enter recursive edit; ask again when you exit from that."
a2535589 188 (interactive "P")
efcf38c7 189 (or executing-kbd-macro
a2535589
JA
190 defining-kbd-macro
191 (error "Not defining or executing kbd macro"))
192 (if flag
efcf38c7 193 (let (executing-kbd-macro defining-kbd-macro)
a2535589 194 (recursive-edit))
efcf38c7 195 (if (not executing-kbd-macro)
a2535589 196 nil
af400c00
RS
197 (let ((loop t)
198 (msg (substitute-command-keys
199 "Proceed with macro?\\<query-replace-map>\
8693344e 200 (\\[act], \\[skip], \\[exit], \\[recenter], \\[edit]) ")))
a2535589 201 (while loop
efcf38c7 202 (let ((key (let ((executing-kbd-macro nil)
af400c00 203 (defining-kbd-macro nil))
8700ec61 204 (message "%s" msg)
af400c00
RS
205 (read-event)))
206 def)
207 (setq key (vector key))
208 (setq def (lookup-key query-replace-map key))
209 (cond ((eq def 'act)
a2535589 210 (setq loop nil))
af400c00 211 ((eq def 'skip)
a2535589 212 (setq loop nil)
efcf38c7 213 (setq executing-kbd-macro ""))
af400c00 214 ((eq def 'exit)
a2535589 215 (setq loop nil)
efcf38c7 216 (setq executing-kbd-macro t))
af400c00 217 ((eq def 'recenter)
a2535589 218 (recenter nil))
af400c00 219 ((eq def 'edit)
efcf38c7 220 (let (executing-kbd-macro defining-kbd-macro)
af400c00
RS
221 (recursive-edit)))
222 ((eq def 'quit)
223 (setq quit-flag t))
224 (t
225 (or (eq def 'help)
226 (ding))
227 (with-output-to-temp-buffer "*Help*"
228 (princ
229 (substitute-command-keys
eb8c3be9 230 "Specify how to proceed with keyboard macro execution.
af400c00
RS
231Possibilities: \\<query-replace-map>
232\\[act] Finish this iteration normally and continue with the next.
233\\[skip] Skip the rest of this iteration, and start the next.
234\\[exit] Stop the macro entirely right now.
235\\[recenter] Redisplay the screen, then ask again.
6ec1c571
KH
236\\[edit] Enter recursive edit; ask again when you exit from that."))
237 (save-excursion
238 (set-buffer standard-output)
239 (help-mode)))))))))))
7229064d 240
63c86e17
JB
241;;;###autoload
242(defun apply-macro-to-region-lines (top bottom &optional macro)
bcc78bc0
JB
243 "For each complete line between point and mark, move to the beginning
244of the line, and run the last keyboard macro.
63c86e17
JB
245
246When called from lisp, this function takes two arguments TOP and
247BOTTOM, describing the current region. TOP must be before BOTTOM.
248The optional third argument MACRO specifies a keyboard macro to
249execute.
250
251This is useful for quoting or unquoting included text, adding and
252removing comments, or producing tables where the entries are regular.
253
254For example, in Usenet articles, sections of text quoted from another
255author are indented, or have each line start with `>'. To quote a
256section of text, define a keyboard macro which inserts `>', put point
257and mark at opposite ends of the quoted section, and use
258`\\[apply-macro-to-region-lines]' to mark the entire section.
259
260Suppose you wanted to build a keyword table in C where each entry
261looked like this:
262
f1180544 263 { \"foo\", foo_data, foo_function },
63c86e17
JB
264 { \"bar\", bar_data, bar_function },
265 { \"baz\", baz_data, baz_function },
266
267You could enter the names in this format:
268
269 foo
270 bar
271 baz
272
273and write a macro to massage a word into a table entry:
274
275 \\C-x (
276 \\M-d { \"\\C-y\", \\C-y_data, \\C-y_function },
277 \\C-x )
278
279and then select the region of un-tablified names and use
280`\\[apply-macro-to-region-lines]' to build the table from the names.
281"
282 (interactive "r")
bcc78bc0
JB
283 (or macro
284 (progn
285 (if (null last-kbd-macro)
55535639 286 (error "No keyboard macro has been defined"))
bcc78bc0 287 (setq macro last-kbd-macro)))
63c86e17
JB
288 (save-excursion
289 (let ((end-marker (progn
290 (goto-char bottom)
291 (beginning-of-line)
5277487d
JB
292 (point-marker)))
293 next-line-marker)
63c86e17
JB
294 (goto-char top)
295 (if (not (bolp))
296 (forward-line 1))
5277487d
JB
297 (setq next-line-marker (point-marker))
298 (while (< next-line-marker end-marker)
299 (goto-char next-line-marker)
3d64136f 300 (save-excursion
5277487d
JB
301 (forward-line 1)
302 (set-marker next-line-marker (point)))
303 (save-excursion
f732f824
KS
304 (let ((mark-active nil))
305 (execute-kbd-macro (or macro last-kbd-macro)))))
5277487d
JB
306 (set-marker end-marker nil)
307 (set-marker next-line-marker nil))))
63c86e17 308
5f5d794a 309;;;###autoload (define-key ctl-x-map "q" 'kbd-macro-query)
6594deb0 310
896546cd
RS
311(provide 'macros)
312
6b61353c 313;;; arch-tag: 346ed1a5-1220-4bc8-b533-961ee704361f
6594deb0 314;;; macros.el ends here