(outline-minor-mode): When turning off the mode, turn ^Ms back to \n's.
[bpt/emacs.git] / lisp / macros.el
CommitLineData
6594deb0
ER
1;;; macros.el --- non-primitive commands for keyboard macros.
2
45ca32a6 3;; Copyright (C) 1985, 1986, 1987, 1992 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
21;; along with GNU Emacs; see the file COPYING. If not, write to
22;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
23
e41b2db1
ER
24;;; Commentary:
25
26;; Extension commands for keyboard macros. These permit you to assign
27;; a name to the last-defined keyboard macro, expand and insert the
28;; lisp corresponding to a macro, query the user from within a macro,
29;; or apply a macro to each line in the reason.
30
e5167999 31;;; Code:
a2535589 32
7229064d 33;;;###autoload
a2535589
JA
34(defun name-last-kbd-macro (symbol)
35 "Assign a name to the last keyboard macro defined.
ac5b56bc 36Argument SYMBOL is the name to define.
a2535589 37The symbol's function definition becomes the keyboard macro string.
540671f3 38Such a \"function\" cannot be called from Lisp, but it is a valid editor command."
a2535589
JA
39 (interactive "SName for last kbd macro: ")
40 (or last-kbd-macro
41 (error "No keyboard macro defined"))
42 (and (fboundp symbol)
43 (not (stringp (symbol-function symbol)))
4dc7458e 44 (not (vectorp (symbol-function symbol)))
a2535589
JA
45 (error "Function %s is already defined and not a keyboard macro."
46 symbol))
47 (fset symbol last-kbd-macro))
48
7229064d 49;;;###autoload
a2535589
JA
50(defun insert-kbd-macro (macroname &optional keys)
51 "Insert in buffer the definition of kbd macro NAME, as Lisp code.
540671f3 52Optional second arg KEYS means also record the keys it is on
b4b3b736 53\(this is the prefix argument, when calling interactively).
a2535589 54
540671f3
RS
55This Lisp code will, when executed, define the kbd macro with the same
56definition it has now. If you say to record the keys, the Lisp code
57will also rebind those keys to the macro. Only global key bindings
58are recorded since executing this Lisp code always makes global
59bindings.
a2535589 60
b4b3b736 61To save a kbd macro, visit a file of Lisp code such as your `~/.emacs',
a2535589
JA
62use this command, and then save the file."
63 (interactive "CInsert kbd macro (name): \nP")
45ca32a6
RS
64 (let (definition)
65 (if (string= (symbol-name macroname) "")
66 (progn
67 (setq macroname 'last-kbd-macro definition last-kbd-macro)
68 (insert "(setq "))
69 (setq definition (symbol-function macroname))
70 (insert "(fset '"))
71 (prin1 macroname (current-buffer))
72 (insert "\n ")
73 (let ((beg (point)) end)
74 (prin1 definition (current-buffer))
75 (setq end (point-marker))
76 (goto-char beg)
77 (while (< (point) end)
78 (let ((char (following-char)))
79 (cond ((< char 32)
80 (delete-region (point) (1+ (point)))
81 (insert "\\C-" (+ 96 char)))
82 ((< char 127)
83 (forward-char 1))
84 ((= char 127)
85 (delete-region (point) (1+ (point)))
86 (insert "\\C-?"))
87 ((< char 160)
88 (delete-region (point) (1+ (point)))
89 (insert "\\M-C-" (- char 32)))
90 ((< char 255)
91 (delete-region (point) (1+ (point)))
92 (insert "\\M-" (- char 128)))
93 ((= char 255)
94 (delete-region (point) (1+ (point)))
95 (insert "\\M-C-?"))))))
96 (insert ")\n")
97 (if keys
98 (let ((keys (where-is-internal macroname nil)))
99 (while keys
100 (insert "(global-set-key ")
101 (prin1 (car keys) (current-buffer))
102 (insert " '")
103 (prin1 macroname (current-buffer))
104 (insert ")\n")
105 (setq keys (cdr keys)))))))
a2535589 106
7229064d 107;;;###autoload
a2535589
JA
108(defun kbd-macro-query (flag)
109 "Query user during kbd macro execution.
540671f3
RS
110 With prefix argument, enters recursive edit, reading keyboard
111commands even within a kbd macro. You can give different commands
112each time the macro executes.
ba790870
RS
113 Without prefix argument, asks whether to continue running the macro.
114Your options are: \\<query-replace-map>
115\\[act] Finish this iteration normally and continue with the next.
116\\[skip] Skip the rest of this iteration, and start the next.
117\\[exit] Stop the macro entirely right now.
118\\[recenter] Redisplay the screen, then ask again.
119\\[edit] Enter recursive edit; ask again when you exit from that."
a2535589
JA
120 (interactive "P")
121 (or executing-macro
122 defining-kbd-macro
123 (error "Not defining or executing kbd macro"))
124 (if flag
125 (let (executing-macro defining-kbd-macro)
126 (recursive-edit))
127 (if (not executing-macro)
128 nil
af400c00
RS
129 (let ((loop t)
130 (msg (substitute-command-keys
131 "Proceed with macro?\\<query-replace-map>\
8693344e 132 (\\[act], \\[skip], \\[exit], \\[recenter], \\[edit]) ")))
a2535589 133 (while loop
af400c00
RS
134 (let ((key (let ((executing-macro nil)
135 (defining-kbd-macro nil))
136 (message msg)
137 (read-event)))
138 def)
139 (setq key (vector key))
140 (setq def (lookup-key query-replace-map key))
141 (cond ((eq def 'act)
a2535589 142 (setq loop nil))
af400c00 143 ((eq def 'skip)
a2535589
JA
144 (setq loop nil)
145 (setq executing-macro ""))
af400c00 146 ((eq def 'exit)
a2535589
JA
147 (setq loop nil)
148 (setq executing-macro t))
af400c00 149 ((eq def 'recenter)
a2535589 150 (recenter nil))
af400c00 151 ((eq def 'edit)
a2535589 152 (let (executing-macro defining-kbd-macro)
af400c00
RS
153 (recursive-edit)))
154 ((eq def 'quit)
155 (setq quit-flag t))
156 (t
157 (or (eq def 'help)
158 (ding))
159 (with-output-to-temp-buffer "*Help*"
160 (princ
161 (substitute-command-keys
eb8c3be9 162 "Specify how to proceed with keyboard macro execution.
af400c00
RS
163Possibilities: \\<query-replace-map>
164\\[act] Finish this iteration normally and continue with the next.
165\\[skip] Skip the rest of this iteration, and start the next.
166\\[exit] Stop the macro entirely right now.
167\\[recenter] Redisplay the screen, then ask again.
168\\[edit] Enter recursive edit; ask again when you exit from that."))))
169 )))))))
7229064d 170
63c86e17
JB
171;;;###autoload
172(defun apply-macro-to-region-lines (top bottom &optional macro)
bcc78bc0
JB
173 "For each complete line between point and mark, move to the beginning
174of the line, and run the last keyboard macro.
63c86e17
JB
175
176When called from lisp, this function takes two arguments TOP and
177BOTTOM, describing the current region. TOP must be before BOTTOM.
178The optional third argument MACRO specifies a keyboard macro to
179execute.
180
181This is useful for quoting or unquoting included text, adding and
182removing comments, or producing tables where the entries are regular.
183
184For example, in Usenet articles, sections of text quoted from another
185author are indented, or have each line start with `>'. To quote a
186section of text, define a keyboard macro which inserts `>', put point
187and mark at opposite ends of the quoted section, and use
188`\\[apply-macro-to-region-lines]' to mark the entire section.
189
190Suppose you wanted to build a keyword table in C where each entry
191looked like this:
192
193 { \"foo\", foo_data, foo_function },
194 { \"bar\", bar_data, bar_function },
195 { \"baz\", baz_data, baz_function },
196
197You could enter the names in this format:
198
199 foo
200 bar
201 baz
202
203and write a macro to massage a word into a table entry:
204
205 \\C-x (
206 \\M-d { \"\\C-y\", \\C-y_data, \\C-y_function },
207 \\C-x )
208
209and then select the region of un-tablified names and use
210`\\[apply-macro-to-region-lines]' to build the table from the names.
211"
212 (interactive "r")
bcc78bc0
JB
213 (or macro
214 (progn
215 (if (null last-kbd-macro)
216 (error "No keyboard macro has been defined."))
217 (setq macro last-kbd-macro)))
63c86e17
JB
218 (save-excursion
219 (let ((end-marker (progn
220 (goto-char bottom)
221 (beginning-of-line)
5277487d
JB
222 (point-marker)))
223 next-line-marker)
63c86e17
JB
224 (goto-char top)
225 (if (not (bolp))
226 (forward-line 1))
5277487d
JB
227 (setq next-line-marker (point-marker))
228 (while (< next-line-marker end-marker)
229 (goto-char next-line-marker)
3d64136f 230 (save-excursion
5277487d
JB
231 (forward-line 1)
232 (set-marker next-line-marker (point)))
233 (save-excursion
234 (execute-kbd-macro (or macro last-kbd-macro))))
235 (set-marker end-marker nil)
236 (set-marker next-line-marker nil))))
63c86e17 237
73fa8346
BP
238;;;###autoload
239(define-key ctl-x-map "q" 'kbd-macro-query)
6594deb0
ER
240
241;;; macros.el ends here