Mercurial > hg > xemacs-beta
comparison lisp/prim/auto-autoloads.el @ 173:8eaf7971accc r20-3b13
Import from CVS: tag r20-3b13
author | cvs |
---|---|
date | Mon, 13 Aug 2007 09:49:09 +0200 |
parents | 85ec50267440 |
children | e121b013d1f0 |
comparison
equal
deleted
inserted
replaced
172:a38aed19690b | 173:8eaf7971accc |
---|---|
127 | 127 |
128 ;;;### (autoloads nil "loaddefs" "prim/loaddefs.el") | 128 ;;;### (autoloads nil "loaddefs" "prim/loaddefs.el") |
129 | 129 |
130 ;;;*** | 130 ;;;*** |
131 | 131 |
132 ;;;### (autoloads (apply-macro-to-region-lines kbd-macro-query name-last-kbd-macro) "macros" "prim/macros.el") | 132 ;;;### (autoloads (apply-macro-to-region-lines kbd-macro-query insert-kbd-macro name-last-kbd-macro) "macros" "prim/macros.el") |
133 | 133 |
134 (autoload 'name-last-kbd-macro "macros" "\ | 134 (autoload 'name-last-kbd-macro "macros" "\ |
135 Assign a name to the last keyboard macro defined. | 135 Assign a name to the last keyboard macro defined. |
136 Argument SYMBOL is the name to define. | 136 Argument SYMBOL is the name to define. |
137 The symbol's function definition becomes the keyboard macro string. | 137 The symbol's function definition becomes the keyboard macro string. |
138 Such a \"function\" cannot be called from Lisp, but it is a valid | 138 Such a \"function\" cannot be called from Lisp, but it is a valid |
139 editor command." t nil) | 139 editor command." t nil) |
140 | |
141 (autoload 'insert-kbd-macro "macros" "\ | |
142 Insert in buffer the definition of kbd macro NAME, as Lisp code. | |
143 Optional second arg KEYS means also record the keys it is on | |
144 \(this is the prefix argument, when calling interactively). | |
145 | |
146 This Lisp code will, when executed, define the kbd macro with the same | |
147 definition it has now. If you say to record the keys, the Lisp code | |
148 will also rebind those keys to the macro. Only global key bindings | |
149 are recorded since executing this Lisp code always makes global | |
150 bindings. | |
151 | |
152 To save a kbd macro, visit a file of Lisp code such as your `~/.emacs', | |
153 use this command, and then save the file." t nil) | |
140 | 154 |
141 (autoload 'kbd-macro-query "macros" "\ | 155 (autoload 'kbd-macro-query "macros" "\ |
142 Query user during kbd macro execution. | 156 Query user during kbd macro execution. |
143 With prefix argument, enters recursive edit, | 157 With prefix argument, enters recursive edit, |
144 reading keyboard commands even within a kbd macro. | 158 reading keyboard commands even within a kbd macro. |
231 `get-profiling-info'. | 245 `get-profiling-info'. |
232 If STREAM is omitted, either current buffer or standard output are used, | 246 If STREAM is omitted, either current buffer or standard output are used, |
233 depending on whether the function was called interactively or not." t nil) | 247 depending on whether the function was called interactively or not." t nil) |
234 | 248 |
235 (autoload 'profile "profile" "\ | 249 (autoload 'profile "profile" "\ |
236 Turn on profiling, execute FORMS and stop profiling. | 250 Turn on profiling, execute FORMS and restore profiling state. |
251 Profiling state here means that if profiling was not in effect when | |
252 PROFILE was called, it will be turned off after FORMS are evaluated. | |
253 Otherwise, profiling will be left running. | |
254 | |
237 Returns the profiling info, printable by `pretty-print-profiling-info'." nil 'macro) | 255 Returns the profiling info, printable by `pretty-print-profiling-info'." nil 'macro) |
238 | 256 |
239 (autoload 'profile-key-sequence "profile" "\ | 257 (autoload 'profile-key-sequence "profile" "\ |
240 Dispatch the key sequence KEYS and profile the execution. | 258 Dispatch the key sequence KEYS and profile the execution. |
241 KEYS can be a vector of keypress events, a keypress event, or a character. | 259 KEYS can be a vector of keypress events, a keypress event, or a character. |