163
|
1 ;;; DO NOT MODIFY THIS FILE
|
183
|
2 (if (featurep 'utils-autoloads) (error "Already loaded"))
|
163
|
3
|
|
4 ;;;### (autoloads (defadvice ad-add-advice) "advice" "utils/advice.el")
|
|
5
|
|
6 (defvar ad-redefinition-action 'warn "\
|
|
7 *Defines what to do with redefinitions during Advice de/activation.
|
|
8 Redefinition occurs if a previously activated function that already has an
|
|
9 original definition associated with it gets redefined and then de/activated.
|
|
10 In such a case we can either accept the current definition as the new
|
|
11 original definition, discard the current definition and replace it with the
|
|
12 old original, or keep it and raise an error. The values `accept', `discard',
|
|
13 `error' or `warn' govern what will be done. `warn' is just like `accept' but
|
|
14 it additionally prints a warning message. All other values will be
|
|
15 interpreted as `error'.")
|
|
16
|
|
17 (defvar ad-default-compilation-action 'maybe "\
|
|
18 *Defines whether to compile advised definitions during activation.
|
|
19 A value of `always' will result in unconditional compilation, `never' will
|
|
20 always avoid compilation, `maybe' will compile if the byte-compiler is already
|
|
21 loaded, and `like-original' will compile if the original definition of the
|
|
22 advised function is compiled or a built-in function. Every other value will
|
|
23 be interpreted as `maybe'. This variable will only be considered if the
|
|
24 COMPILE argument of `ad-activate' was supplied as nil.")
|
|
25
|
|
26 (autoload 'ad-add-advice "advice" "\
|
|
27 Adds a piece of ADVICE to FUNCTION's list of advices in CLASS.
|
|
28 If FUNCTION already has one or more pieces of advice of the specified
|
|
29 CLASS then POSITION determines where the new piece will go. The value
|
|
30 of POSITION can either be `first', `last' or a number where 0 corresponds
|
|
31 to `first'. Numbers outside the range will be mapped to the closest
|
|
32 extreme position. If there was already a piece of ADVICE with the same
|
|
33 name, then the position argument will be ignored and the old advice
|
|
34 will be overwritten with the new one.
|
|
35 If the FUNCTION was not advised already, then its advice info will be
|
|
36 initialized. Redefining a piece of advice whose name is part of the cache-id
|
|
37 will clear the cache." nil nil)
|
|
38
|
|
39 (autoload 'defadvice "advice" "\
|
|
40 Defines a piece of advice for FUNCTION (a symbol).
|
|
41 The syntax of `defadvice' is as follows:
|
|
42
|
|
43 (defadvice FUNCTION (CLASS NAME [POSITION] [ARGLIST] FLAG...)
|
|
44 [DOCSTRING] [INTERACTIVE-FORM]
|
|
45 BODY... )
|
|
46
|
|
47 FUNCTION ::= Name of the function to be advised.
|
|
48 CLASS ::= `before' | `around' | `after' | `activation' | `deactivation'.
|
|
49 NAME ::= Non-nil symbol that names this piece of advice.
|
|
50 POSITION ::= `first' | `last' | NUMBER. Optional, defaults to `first',
|
|
51 see also `ad-add-advice'.
|
|
52 ARGLIST ::= An optional argument list to be used for the advised function
|
|
53 instead of the argument list of the original. The first one found in
|
|
54 before/around/after-advices will be used.
|
|
55 FLAG ::= `protect'|`disable'|`activate'|`compile'|`preactivate'|`freeze'.
|
|
56 All flags can be specified with unambiguous initial substrings.
|
|
57 DOCSTRING ::= Optional documentation for this piece of advice.
|
|
58 INTERACTIVE-FORM ::= Optional interactive form to be used for the advised
|
|
59 function. The first one found in before/around/after-advices will be used.
|
|
60 BODY ::= Any s-expression.
|
|
61
|
|
62 Semantics of the various flags:
|
|
63 `protect': The piece of advice will be protected against non-local exits in
|
|
64 any code that precedes it. If any around-advice of a function is protected
|
|
65 then automatically all around-advices will be protected (the complete onion).
|
|
66
|
|
67 `activate': All advice of FUNCTION will be activated immediately if
|
|
68 FUNCTION has been properly defined prior to this application of `defadvice'.
|
|
69
|
|
70 `compile': In conjunction with `activate' specifies that the resulting
|
|
71 advised function should be compiled.
|
|
72
|
|
73 `disable': The defined advice will be disabled, hence, it will not be used
|
|
74 during activation until somebody enables it.
|
|
75
|
|
76 `preactivate': Preactivates the advised FUNCTION at macro-expansion/compile
|
|
77 time. This generates a compiled advised definition according to the current
|
|
78 advice state that will be used during activation if appropriate. Only use
|
|
79 this if the `defadvice' gets actually compiled.
|
|
80
|
|
81 `freeze': Expands the `defadvice' into a redefining `defun/defmacro' according
|
|
82 to this particular single advice. No other advice information will be saved.
|
|
83 Frozen advices cannot be undone, they behave like a hard redefinition of
|
|
84 the advised function. `freeze' implies `activate' and `preactivate'. The
|
|
85 documentation of the advised function can be dumped onto the `DOC' file
|
|
86 during preloading.
|
|
87
|
|
88 Look at the file `advice.el' for comprehensive documentation." nil 'macro)
|
|
89
|
|
90 ;;;***
|
|
91
|
|
92 ;;;### (autoloads (all-annotations annotation-list annotations-at annotations-in-region annotation-at annotationp delete-annotation make-annotation) "annotations" "utils/annotations.el")
|
|
93
|
|
94 (defvar make-annotation-hook nil "\
|
|
95 *Function or functions to run immediately after creating an annotation.")
|
|
96
|
|
97 (defvar before-delete-annotation-hook nil "\
|
|
98 *Function or functions to run immediately before deleting an annotation.")
|
|
99
|
|
100 (defvar after-delete-annotation-hook nil "\
|
|
101 *Function or functions to run immediately after deleting an annotation.")
|
|
102
|
|
103 (autoload 'make-annotation "annotations" "\
|
|
104 Create a marginal annotation, displayed using GLYPH, at position POS.
|
|
105 GLYPH may be either a glyph object or a string. Use layout policy
|
|
106 LAYOUT and place the annotation in buffer BUFFER. If POS is nil, point is
|
|
107 used. If LAYOUT is nil, `whitespace' is used. If BUFFER is nil, the
|
|
108 current buffer is used. If WITH-EVENT is non-nil, then when an annotation
|
|
109 is activated, the triggering event is passed as the second arg to the
|
|
110 annotation function. If D-GLYPH is non-nil then it is used as the glyph
|
|
111 that will be displayed when button1 is down. If RIGHTP is non-nil then
|
|
112 the glyph will be displayed on the right side of the buffer instead of the
|
|
113 left." nil nil)
|
|
114
|
|
115 (autoload 'delete-annotation "annotations" "\
|
|
116 Remove ANNOTATION from its buffer. This does not modify the buffer text." nil nil)
|
|
117
|
|
118 (autoload 'annotationp "annotations" "\
|
|
119 T if OBJECT is an annotation." nil nil)
|
|
120
|
|
121 (autoload 'annotation-at "annotations" "\
|
|
122 Return the first annotation at POS in BUFFER.
|
|
123 BUFFER defaults to the current buffer. POS defaults to point in BUFFER." nil nil)
|
|
124
|
|
125 (autoload 'annotations-in-region "annotations" "\
|
|
126 Return all annotations in BUFFER between START and END inclusively." nil nil)
|
|
127
|
|
128 (autoload 'annotations-at "annotations" "\
|
|
129 Return a list of all annotations at POS in BUFFER.
|
|
130 If BUFFER is nil, the current buffer is used. If POS is nil, point is used." nil nil)
|
|
131
|
|
132 (autoload 'annotation-list "annotations" "\
|
|
133 Return a list of all annotations in BUFFER.
|
|
134 If BUFFER is nil, the current buffer is used." nil nil)
|
|
135
|
|
136 (autoload 'all-annotations "annotations" "\
|
|
137 Return a list of all annotations in existence." nil nil)
|
|
138
|
|
139 ;;;***
|
|
140
|
|
141 ;;;### (autoloads (batch-update-directory batch-update-autoloads update-autoloads-from-directory update-autoloads-here update-file-autoloads generate-file-autoloads) "autoload" "utils/autoload.el")
|
|
142
|
|
143 (autoload 'generate-file-autoloads "autoload" "\
|
|
144 Insert at point a loaddefs autoload section for FILE.
|
|
145 autoloads are generated for defuns and defmacros in FILE
|
|
146 marked by `generate-autoload-cookie' (which see).
|
|
147 If FILE is being visited in a buffer, the contents of the buffer
|
|
148 are used." t nil)
|
|
149
|
|
150 (autoload 'update-file-autoloads "autoload" "\
|
|
151 Update the autoloads for FILE in `generated-autoload-file'
|
169
|
152 \(which FILE might bind in its local variables).
|
|
153 This functions refuses to update autolaods files and custom loads." t nil)
|
163
|
154
|
|
155 (autoload 'update-autoloads-here "autoload" "\
|
|
156 Update sections of the current buffer generated by `update-file-autoloads'." t nil)
|
|
157
|
|
158 (autoload 'update-autoloads-from-directory "autoload" "\
|
|
159 Update `generated-autoload-file' with all the current autoloads from DIR.
|
|
160 This runs `update-file-autoloads' on each .el file in DIR.
|
|
161 Obsolete autoload entries for files that no longer exist are deleted." t nil)
|
|
162
|
|
163 (autoload 'batch-update-autoloads "autoload" "\
|
|
164 Update the autoloads for the files or directories on the command line.
|
|
165 Runs `update-file-autoloads' on files and `update-directory-autoloads'
|
|
166 on directories. Must be used only with -batch, and kills Emacs on completion.
|
|
167 Each file will be processed even if an error occurred previously.
|
169
|
168 For example, invoke `xemacs -batch -f batch-update-autoloads *.el'.
|
|
169 The directory to which the auto-autoloads.el and custom-load.el files must
|
|
170 be the first parameter on the command line." nil nil)
|
163
|
171
|
|
172 (autoload 'batch-update-directory "autoload" "\
|
|
173 Update the autoloads for the directory on the command line.
|
|
174 Runs `update-file-autoloads' on each file in the given directory, and must
|
|
175 be used only with -batch, and kills XEmacs on completion." nil nil)
|
|
176
|
|
177 ;;;***
|
|
178
|
|
179 ;;;### (autoloads (browse-url-lynx-emacs browse-url-lynx-xterm browse-url-w3 browse-url-iximosaic browse-url-grail browse-url-mosaic browse-url-netscape) "browse-url" "utils/browse-url.el")
|
|
180
|
167
|
181 (defcustom browse-url-browser-function 'browse-url-w3 "*Function to display the current buffer in a WWW browser.\nUsed by the `browse-url-at-point', `browse-url-at-mouse', and\n`browse-url-of-file' commands." :type '(radio (function-item browse-url-w3) (function-item browse-url-netscape) (function-item browse-url-mosaic) (function-item browse-url-cci) (function-item browse-url-iximosaic) (function-item browse-url-lynx-xterm) (function-item browse-url-lynx-emacs) (function-item browse-url-grail) (function :tag "Other" nil)) :group 'browse-url)
|
163
|
182
|
|
183 (autoload 'browse-url-netscape "browse-url" "\
|
|
184 Ask the Netscape WWW browser to load URL.
|
|
185
|
|
186 Default to the URL around or before point. The strings in variable
|
|
187 `browse-url-netscape-arguments' are also passed to Netscape.
|
|
188
|
|
189 When called interactively, if variable `browse-url-new-window-p' is
|
|
190 non-nil, load the document in a new Netscape window, otherwise use a
|
|
191 random existing one. A non-nil interactive prefix argument reverses
|
|
192 the effect of browse-url-new-window-p.
|
|
193
|
|
194 When called non-interactively, optional second argument NEW-WINDOW is
|
|
195 used instead of browse-url-new-window-p." t nil)
|
|
196
|
|
197 (autoload 'browse-url-mosaic "browse-url" "\
|
|
198 Ask the XMosaic WWW browser to load URL.
|
|
199 Default to the URL around or before point." t nil)
|
|
200
|
|
201 (autoload 'browse-url-grail "browse-url" "\
|
|
202 Ask the Grail WWW browser to load URL.
|
|
203 Default to the URL around or before point. Runs the program in the
|
|
204 variable `browse-url-grail'." t nil)
|
|
205
|
|
206 (autoload 'browse-url-iximosaic "browse-url" "\
|
|
207 Ask the IXIMosaic WWW browser to load URL.
|
|
208 Default to the URL around or before point." t nil)
|
|
209
|
|
210 (autoload 'browse-url-w3 "browse-url" "\
|
|
211 Ask the w3 WWW browser to load URL.
|
|
212 Default to the URL around or before point." t nil)
|
|
213
|
|
214 (autoload 'browse-url-lynx-xterm "browse-url" "\
|
|
215 Ask the Lynx WWW browser to load URL.
|
|
216 Default to the URL around or before point. A new Lynx process is run
|
|
217 in an Xterm window." t nil)
|
|
218
|
|
219 (autoload 'browse-url-lynx-emacs "browse-url" "\
|
|
220 Ask the Lynx WWW browser to load URL.
|
|
221 Default to the URL around or before point. Run a new Lynx process in
|
|
222 an Emacs buffer." t nil)
|
|
223
|
|
224 ;;;***
|
|
225
|
175
|
226 ;;;### (autoloads (config-value config-value-hash-table) "config" "utils/config.el")
|
|
227
|
|
228 (autoload 'config-value-hash-table "config" "\
|
|
229 Returns hashtable of configuration parameters and their values." nil nil)
|
|
230
|
|
231 (autoload 'config-value "config" "\
|
|
232 Return the value of the configuration parameter CONFIG_SYMBOL." nil nil)
|
|
233
|
|
234 ;;;***
|
|
235
|
163
|
236 ;;;### (autoloads (docref-setup) "docref" "utils/docref.el")
|
|
237
|
|
238 (autoload 'docref-setup "docref" "\
|
|
239 Process docref cross-references in the current buffer.
|
|
240 See also \\(f@docref-subst)." t nil)
|
|
241
|
|
242 ;;;***
|
|
243
|
169
|
244 ;;;### (autoloads nil "easymenu" "utils/easymenu.el")
|
163
|
245
|
|
246 ;;;***
|
|
247
|
173
|
248 ;;;### (autoloads (edit-toolbar) "edit-toolbar" "utils/edit-toolbar.el")
|
|
249
|
|
250 (autoload 'edit-toolbar "edit-toolbar" "\
|
183
|
251 Alter toolbar characteristics by editing a buffer representing the specified toolbar.
|
|
252 Pops up a buffer containing a list of the toolbar matching TOOLBAR_NAME." t nil)
|
173
|
253
|
|
254 ;;;***
|
|
255
|
|
256 ;;;### (autoloads (format-kbd-macro kbd read-kbd-macro edit-named-kbd-macro edit-last-kbd-macro edit-kbd-macro) "edmacro" "utils/edmacro.el")
|
163
|
257
|
|
258 (define-key ctl-x-map "\C-k" 'edit-kbd-macro)
|
|
259
|
|
260 (autoload 'edit-kbd-macro "edmacro" "\
|
|
261 Edit a keyboard macro.
|
|
262 At the prompt, type any key sequence which is bound to a keyboard macro.
|
|
263 Or, type `C-x e' or RET to edit the last keyboard macro, `C-h l' to edit
|
|
264 the last 100 keystrokes as a keyboard macro, or `M-x' to edit a macro by
|
|
265 its command name.
|
|
266 With a prefix argument, format the macro in a more concise way." t nil)
|
|
267
|
|
268 (autoload 'edit-last-kbd-macro "edmacro" "\
|
|
269 Edit the most recently defined keyboard macro." t nil)
|
|
270
|
|
271 (autoload 'edit-named-kbd-macro "edmacro" "\
|
|
272 Edit a keyboard macro which has been given a name by `name-last-kbd-macro'." t nil)
|
|
273
|
|
274 (autoload 'read-kbd-macro "edmacro" "\
|
|
275 Read the region as a keyboard macro definition.
|
|
276 The region is interpreted as spelled-out keystrokes, e.g., \"M-x abc RET\".
|
|
277 See documentation for `edmacro-mode' for details.
|
|
278 Leading/trailing \"C-x (\" and \"C-x )\" in the text are allowed and ignored.
|
|
279 The resulting macro is installed as the \"current\" keyboard macro.
|
|
280
|
|
281 In Lisp, may also be called with a single STRING argument in which case
|
|
282 the result is returned rather than being installed as the current macro.
|
|
283 The result will be a string if possible, otherwise an event vector.
|
|
284 Second argument NEED-VECTOR means to return an event vector always." t nil)
|
|
285
|
|
286 (autoload 'kbd "edmacro" "\
|
|
287 Convert KEYS to the internal Emacs key representation." nil 'macro)
|
|
288
|
|
289 (autoload 'format-kbd-macro "edmacro" "\
|
|
290 Return the keyboard macro MACRO as a human-readable string.
|
|
291 This string is suitable for passing to `read-kbd-macro'.
|
|
292 Second argument VERBOSE means to put one command per line with comments.
|
|
293 If VERBOSE is `1', put everything on one line. If VERBOSE is omitted
|
|
294 or nil, use a compact 80-column format." nil nil)
|
|
295
|
|
296 ;;;***
|
|
297
|
|
298 ;;;### (autoloads (turn-on-eldoc-mode eldoc-mode) "eldoc" "utils/eldoc.el")
|
|
299
|
|
300 (defcustom eldoc-mode nil "*If non-nil, show the defined parameters for the elisp function near point.\n\nFor the emacs lisp function at the beginning of the sexp which point is\nwithin, show the defined parameters for the function in the echo area.\nThis information is extracted directly from the function or macro if it is\nin pure lisp. If the emacs function is a subr, the parameters are obtained\nfrom the documentation string if possible.\n\nIf point is over a documented variable, print that variable's docstring\ninstead.\n\nThis variable is buffer-local." :type 'boolean :group 'eldoc)
|
|
301
|
|
302 (autoload 'eldoc-mode "eldoc" "\
|
|
303 *Enable or disable eldoc mode.
|
|
304 See documentation for the variable of the same name for more details.
|
|
305
|
|
306 If called interactively with no prefix argument, toggle current condition
|
|
307 of the mode.
|
|
308 If called with a positive or negative prefix argument, enable or disable
|
|
309 the mode, respectively." t nil)
|
|
310
|
|
311 (autoload 'turn-on-eldoc-mode "eldoc" "\
|
|
312 Unequivocally turn on eldoc-mode (see variable documentation)." t nil)
|
|
313
|
|
314 ;;;***
|
|
315
|
|
316 ;;;### (autoloads (elp-submit-bug-report elp-results elp-instrument-package elp-instrument-list elp-restore-function elp-instrument-function) "elp" "utils/elp.el")
|
|
317
|
|
318 (autoload 'elp-instrument-function "elp" "\
|
|
319 Instrument FUNSYM for profiling.
|
|
320 FUNSYM must be a symbol of a defined function." t nil)
|
|
321
|
|
322 (autoload 'elp-restore-function "elp" "\
|
|
323 Restore an instrumented function to its original definition.
|
|
324 Argument FUNSYM is the symbol of a defined function." t nil)
|
|
325
|
|
326 (autoload 'elp-instrument-list "elp" "\
|
|
327 Instrument for profiling, all functions in `elp-function-list'.
|
|
328 Use optional LIST if provided instead." t nil)
|
|
329
|
|
330 (autoload 'elp-instrument-package "elp" "\
|
|
331 Instrument for profiling, all functions which start with PREFIX.
|
|
332 For example, to instrument all ELP functions, do the following:
|
|
333
|
|
334 \\[elp-instrument-package] RET elp- RET" t nil)
|
|
335
|
|
336 (autoload 'elp-results "elp" "\
|
|
337 Display current profiling results.
|
|
338 If `elp-reset-after-results' is non-nil, then current profiling
|
|
339 information for all instrumented functions are reset after results are
|
|
340 displayed." t nil)
|
|
341
|
|
342 (autoload 'elp-submit-bug-report "elp" "\
|
|
343 Submit via mail, a bug report on elp." t nil)
|
|
344
|
|
345 ;;;***
|
|
346
|
|
347 ;;;### (autoloads (list-colors-display facemenu-read-color list-text-properties-at facemenu-remove-special facemenu-remove-props facemenu-set-read-only facemenu-set-intangible facemenu-set-invisible facemenu-make-much-smaller facemenu-make-much-larger facemenu-make-smaller facemenu-make-larger facemenu-set-size-default facemenu-set-face-from-menu facemenu-set-background facemenu-set-foreground facemenu-set-face) "facemenu" "utils/facemenu.el")
|
|
348
|
|
349 (define-key ctl-x-map "F" 'facemenu-keymap)
|
|
350
|
|
351 (defvar facemenu-menu nil "\
|
|
352 Facemenu top-level menu keymap.")
|
|
353
|
|
354 (defvar facemenu-keymap (let ((map (make-sparse-keymap "Set face"))) (define-key map ?o 'facemenu-set-face) map) "\
|
|
355 Keymap for face-changing commands.
|
|
356 `Facemenu-update' fills in the keymap according to the bindings
|
|
357 requested in `facemenu-keybindings'.")
|
|
358
|
|
359 (autoload 'facemenu-set-face "facemenu" "\
|
|
360 Add FACE to the region or next character typed.
|
|
361 It will be added to the top of the face list; any faces lower on the list that
|
|
362 will not show through at all will be removed.
|
|
363
|
|
364 Interactively, the face to be used is read with the minibuffer.
|
|
365
|
|
366 If the region is active and there is no prefix argument,
|
|
367 this command sets the region to the requested face.
|
|
368
|
|
369 Otherwise, this command specifies the face for the next character
|
|
370 inserted. Moving point or switching buffers before
|
|
371 typing a character to insert cancels the specification." t nil)
|
|
372
|
|
373 (autoload 'facemenu-set-foreground "facemenu" "\
|
|
374 Set the foreground color of the region or next character typed.
|
|
375 The color is prompted for. A face named `fg:color' is used (or created).
|
|
376 If the region is active, it will be set to the requested face. If
|
|
377 it is inactive (even if mark-even-if-inactive is set) the next
|
|
378 character that is typed (via `self-insert-command') will be set to
|
|
379 the selected face. Moving point or switching buffers before
|
|
380 typing a character cancels the request." t nil)
|
|
381
|
|
382 (autoload 'facemenu-set-background "facemenu" "\
|
|
383 Set the background color of the region or next character typed.
|
|
384 The color is prompted for. A face named `bg:color' is used (or created).
|
|
385 If the region is active, it will be set to the requested face. If
|
|
386 it is inactive (even if mark-even-if-inactive is set) the next
|
|
387 character that is typed (via `self-insert-command') will be set to
|
|
388 the selected face. Moving point or switching buffers before
|
|
389 typing a character cancels the request." t nil)
|
|
390
|
|
391 (autoload 'facemenu-set-face-from-menu "facemenu" "\
|
|
392 Set the face of the region or next character typed.
|
|
393 This function is designed to be called from a menu; the face to use
|
|
394 is the menu item's name.
|
|
395
|
|
396 If the region is active and there is no prefix argument,
|
|
397 this command sets the region to the requested face.
|
|
398
|
|
399 Otherwise, this command specifies the face for the next character
|
|
400 inserted. Moving point or switching buffers before
|
|
401 typing a character to insert cancels the specification." t nil)
|
|
402
|
|
403 (autoload 'facemenu-set-size-default "facemenu" nil t nil)
|
|
404
|
|
405 (autoload 'facemenu-make-larger "facemenu" nil t nil)
|
|
406
|
|
407 (autoload 'facemenu-make-smaller "facemenu" nil t nil)
|
|
408
|
|
409 (autoload 'facemenu-make-much-larger "facemenu" nil t nil)
|
|
410
|
|
411 (autoload 'facemenu-make-much-smaller "facemenu" nil t nil)
|
|
412
|
|
413 (autoload 'facemenu-set-invisible "facemenu" "\
|
|
414 Make the region invisible.
|
|
415 This sets the `invisible' text property; it can be undone with
|
|
416 `facemenu-remove-special'." t nil)
|
|
417
|
|
418 (autoload 'facemenu-set-intangible "facemenu" "\
|
|
419 Make the region intangible: disallow moving into it.
|
|
420 This sets the `intangible' text property; it can be undone with
|
|
421 `facemenu-remove-special'." t nil)
|
|
422
|
|
423 (autoload 'facemenu-set-read-only "facemenu" "\
|
|
424 Make the region unmodifiable.
|
|
425 This sets the `read-only' text property; it can be undone with
|
|
426 `facemenu-remove-special'." t nil)
|
|
427
|
|
428 (autoload 'facemenu-remove-props "facemenu" "\
|
|
429 Remove all text properties that facemenu added to region." t nil)
|
|
430
|
|
431 (autoload 'facemenu-remove-special "facemenu" "\
|
|
432 Remove all the \"special\" text properties from the region.
|
|
433 These special properties include `invisible', `intangible' and `read-only'." t nil)
|
|
434
|
|
435 (autoload 'list-text-properties-at "facemenu" "\
|
|
436 Pop up a buffer listing text-properties at LOCATION." t nil)
|
|
437
|
|
438 (autoload 'facemenu-read-color "facemenu" "\
|
|
439 Read a color using the minibuffer." nil nil)
|
|
440
|
|
441 (autoload 'list-colors-display "facemenu" "\
|
|
442 Display names of defined colors, and show what they look like.
|
|
443 If the optional argument LIST is non-nil, it should be a list of
|
|
444 colors to display. Otherwise, this command computes a list
|
|
445 of colors that the current display can handle." t nil)
|
|
446
|
|
447 ;;;***
|
|
448
|
|
449 ;;;### (autoloads (floating-toolbar-from-extent-or-popup-mode-menu floating-toolbar-or-popup-mode-menu floating-toolbar) "floating-toolbar" "utils/floating-toolbar.el")
|
|
450
|
|
451 (autoload 'floating-toolbar "floating-toolbar" "\
|
|
452 Popup a toolbar near the current mouse position.
|
|
453 The toolbar instantiator used is taken from the 'floating-toolbar
|
|
454 property of any extent under the mouse. If no such non-nil
|
|
455 property exists for any extent under the mouse, then the value of the
|
|
456 variable `floating-toolbar' is checked. If its value si nil, then
|
|
457 no toolbar will be displayed.
|
|
458
|
|
459 This command should be bound to a button press event.
|
|
460
|
|
461 When called from a program, first arg EVENT should be the button
|
|
462 press event. Optional second arg EXTENT-LOCAL-ONLY specifies
|
|
463 that only extent local toolbars should be used; this means the
|
|
464 `floating-toolbar' variable will not be consulted." t nil)
|
|
465
|
|
466 (autoload 'floating-toolbar-or-popup-mode-menu "floating-toolbar" "\
|
|
467 Like floating-toolbar, but if no toolbar is displayed
|
|
468 run popup-mode-menu." t nil)
|
|
469
|
|
470 (autoload 'floating-toolbar-from-extent-or-popup-mode-menu "floating-toolbar" "\
|
|
471 Like floating-toolbar-or-popup-mode-menu, but search only for an
|
|
472 extent local toolbar." t nil)
|
|
473
|
|
474 ;;;***
|
|
475
|
|
476 ;;;### (autoloads (enable-flow-control-on enable-flow-control) "flow-ctrl" "utils/flow-ctrl.el")
|
|
477
|
|
478 (autoload 'enable-flow-control "flow-ctrl" "\
|
|
479 Toggle flow control handling.
|
|
480 When handling is enabled, user can type C-s as C-\\, and C-q as C-^.
|
|
481 With arg, enable flow control mode if arg is positive, otherwise disable." t nil)
|
|
482
|
|
483 (autoload 'enable-flow-control-on "flow-ctrl" "\
|
|
484 Enable flow control if using one of a specified set of terminal types.
|
|
485 Use `(enable-flow-control-on \"vt100\" \"h19\")' to enable flow control
|
|
486 on VT-100 and H19 terminals. When flow control is enabled,
|
|
487 you must type C-\\ to get the effect of a C-s, and type C-^
|
|
488 to get the effect of a C-q.
|
|
489
|
|
490 This function has no effect unless the current device is a tty.
|
|
491
|
|
492 The tty terminal type is determined from the TERM environment variable.
|
|
493 Trailing hyphens and everything following is stripped, so a TERM
|
|
494 value of \"vt100-nam\" is treated the same as \"vt100\"." nil nil)
|
|
495
|
|
496 ;;;***
|
|
497
|
|
498 ;;;### (autoloads (forms-find-file-other-window forms-find-file forms-mode) "forms" "utils/forms.el")
|
|
499
|
|
500 (autoload 'forms-mode "forms" "\
|
|
501 Major mode to visit files in a field-structured manner using a form.
|
|
502
|
|
503 Commands: Equivalent keys in read-only mode:
|
|
504 TAB forms-next-field TAB
|
|
505 \\C-c TAB forms-next-field
|
|
506 \\C-c < forms-first-record <
|
|
507 \\C-c > forms-last-record >
|
|
508 \\C-c ? describe-mode ?
|
|
509 \\C-c \\C-k forms-delete-record
|
|
510 \\C-c \\C-q forms-toggle-read-only q
|
|
511 \\C-c \\C-o forms-insert-record
|
|
512 \\C-c \\C-l forms-jump-record l
|
|
513 \\C-c \\C-n forms-next-record n
|
|
514 \\C-c \\C-p forms-prev-record p
|
|
515 \\C-c \\C-r forms-search-backward r
|
|
516 \\C-c \\C-s forms-search-forward s
|
|
517 \\C-c \\C-x forms-exit x
|
|
518 " t nil)
|
|
519
|
|
520 (autoload 'forms-find-file "forms" "\
|
|
521 Visit a file in Forms mode." t nil)
|
|
522
|
|
523 (autoload 'forms-find-file-other-window "forms" "\
|
|
524 Visit a file in Forms mode in other window." t nil)
|
|
525
|
|
526 ;;;***
|
|
527
|
|
528 ;;;### (autoloads (unhide-copyleft-region hide-copyleft-region) "hide-copyleft" "utils/hide-copyleft.el")
|
|
529
|
|
530 (autoload 'hide-copyleft-region "hide-copyleft" "\
|
|
531 Make the legal drivel at the front of this file invisible. Unhide it again
|
|
532 with C-u \\[hide-copyleft-region]." t nil)
|
|
533
|
|
534 (autoload 'unhide-copyleft-region "hide-copyleft" "\
|
|
535 If the legal nonsense at the top of this file is elided, make it visible again." nil nil)
|
|
536
|
|
537 ;;;***
|
|
538
|
|
539 ;;;### (autoloads (highlight-headers-follow-url highlight-headers-follow-url-mosaic highlight-headers-follow-url-netscape highlight-headers) "highlight-headers" "utils/highlight-headers.el")
|
|
540
|
|
541 (autoload 'highlight-headers "highlight-headers" "\
|
|
542 Highlight message headers between start and end.
|
|
543 Faces used:
|
|
544 message-headers the part before the colon
|
|
545 message-header-contents the part after the colon
|
|
546 message-highlighted-header-contents contents of \"special\" headers
|
|
547 message-cited-text quoted text from other messages
|
|
548
|
|
549 Variables used:
|
|
550
|
|
551 highlight-headers-regexp what makes a \"special\" header
|
|
552 highlight-headers-citation-regexp matches lines of quoted text
|
|
553 highlight-headers-citation-header-regexp matches headers for quoted text
|
|
554
|
|
555 If HACK-SIG is true,then we search backward from END for something that
|
|
556 looks like the beginning of a signature block, and don't consider that a
|
|
557 part of the message (this is because signatures are often incorrectly
|
|
558 interpreted as cited text.)" nil nil)
|
|
559
|
|
560 (autoload 'highlight-headers-follow-url-netscape "highlight-headers" nil nil nil)
|
|
561
|
|
562 (autoload 'highlight-headers-follow-url-mosaic "highlight-headers" nil nil nil)
|
|
563
|
|
564 (autoload 'highlight-headers-follow-url "highlight-headers" nil t nil)
|
|
565
|
|
566 ;;;***
|
|
567
|
|
568 ;;;### (autoloads (make-hippie-expand-function hippie-expand) "hippie-exp" "utils/hippie-exp.el")
|
|
569
|
|
570 (defvar hippie-expand-try-functions-list '(try-complete-file-name-partially try-complete-file-name try-expand-all-abbrevs try-expand-list try-expand-line try-expand-dabbrev try-expand-dabbrev-all-buffers try-expand-dabbrev-from-kill try-complete-lisp-symbol-partially try-complete-lisp-symbol) "\
|
|
571 The list of expansion functions tried in order by `hippie-expand'.
|
|
572 To change the behavior of `hippie-expand', remove, change the order of,
|
|
573 or insert functions in this list.")
|
|
574
|
|
575 (defvar hippie-expand-verbose t "\
|
|
576 *Non-nil makes `hippie-expand' output which function it is trying.")
|
|
577
|
|
578 (defvar hippie-expand-max-buffers nil "\
|
|
579 *The maximum number of buffers (apart from the current) searched.
|
|
580 If nil, all buffers are searched.")
|
|
581
|
|
582 (defvar hippie-expand-ignore-buffers '("^ \\*.*\\*$" dired-mode) "\
|
|
583 *A list specifying which buffers not to search (if not current).
|
|
584 Can contain both regexps matching buffer names (as strings) and major modes
|
|
585 \(as atoms)")
|
|
586
|
|
587 (autoload 'hippie-expand "hippie-exp" "\
|
|
588 Try to expand text before point, using multiple methods.
|
|
589 The expansion functions in `hippie-expand-try-functions-list' are
|
|
590 tried in order, until a possible expansion is found. Repeated
|
|
591 application of `hippie-expand' inserts successively possible
|
|
592 expansions.
|
|
593 With a positive numeric argument, jumps directly to the ARG next
|
|
594 function in this list. With a negative argument or just \\[universal-argument],
|
|
595 undoes the expansion." t nil)
|
|
596
|
|
597 (autoload 'make-hippie-expand-function "hippie-exp" "\
|
|
598 Construct a function similar to `hippie-expand'.
|
|
599 Make it use the expansion functions in TRY-LIST. An optional second
|
|
600 argument VERBOSE non-nil makes the function verbose." nil 'macro)
|
|
601
|
|
602 ;;;***
|
|
603
|
|
604 ;;;### (autoloads (id-select-double-click-hook id-select-and-kill-thing id-select-and-copy-thing id-select-goto-matching-tag id-select-thing-with-mouse id-select-thing) "id-select" "utils/id-select.el")
|
|
605
|
|
606 (autoload 'id-select-thing "id-select" "\
|
|
607 Mark the region selected by the syntax of the thing at point.
|
|
608 If invoked repeatedly, selects bigger and bigger things.
|
|
609 If `id-select-display-type' is non-nil, the type of selection is displayed in
|
|
610 the minibuffer." t nil)
|
|
611
|
|
612 (autoload 'id-select-thing-with-mouse "id-select" "\
|
|
613 Select a region based on the syntax of the character from a mouse click.
|
|
614 If the click occurs at the same point as the last click, select
|
|
615 the next larger syntactic structure. If `id-select-display-type' is non-nil,
|
|
616 the type of selection is displayed in the minibuffer." t nil)
|
|
617
|
|
618 (autoload 'id-select-goto-matching-tag "id-select" "\
|
|
619 If in a major mode listed in `id-select-markup-modes,' moves point to the start of the tag paired with the closest tag that point is within or precedes.
|
|
620 Returns t if point is moved, else nil.
|
|
621 Signals an error if no tag is found following point or if the closing tag
|
|
622 does not have a `>' terminator character." t nil)
|
|
623
|
|
624 (autoload 'id-select-and-copy-thing "id-select" "\
|
|
625 Copy the region surrounding the syntactical unit at point." t nil)
|
|
626
|
|
627 (autoload 'id-select-and-kill-thing "id-select" "\
|
|
628 Kill the region surrounding the syntactical unit at point." t nil)
|
|
629
|
|
630 (autoload 'id-select-double-click-hook "id-select" "\
|
|
631 Select a region based on the syntax of the character wherever the mouse is double-clicked.
|
|
632 If the double-click occurs at the same point as the last double-click, select
|
|
633 the next larger syntactic structure. If `id-select-display-type' is non-nil,
|
|
634 the type of selection is displayed in the minibuffer." nil nil)
|
|
635
|
|
636 ;;;***
|
|
637
|
|
638 ;;;### (autoloads (unload-feature) "loadhist" "utils/loadhist.el")
|
|
639
|
|
640 (autoload 'unload-feature "loadhist" "\
|
|
641 Unload the library that provided FEATURE, restoring all its autoloads.
|
|
642 If the feature is required by any other loaded code, and optional FORCE
|
|
643 is nil, raise an error." t nil)
|
|
644
|
|
645 ;;;***
|
|
646
|
|
647 ;;;### (autoloads (what-domain mail-extract-address-components) "mail-extr" "utils/mail-extr.el")
|
|
648
|
|
649 (autoload 'mail-extract-address-components "mail-extr" "\
|
|
650 Given an RFC-822 ADDRESS, extract full name and canonical address.
|
|
651 Returns a list of the form (FULL-NAME CANONICAL-ADDRESS).
|
|
652 If no name can be extracted, FULL-NAME will be nil.
|
|
653 ADDRESS may be a string or a buffer. If it is a buffer, the visible
|
|
654 (narrowed) portion of the buffer will be interpreted as the address.
|
|
655 (This feature exists so that the clever caller might be able to avoid
|
|
656 consing a string.)
|
|
657 If ADDRESS contains more than one RFC-822 address, only the first is
|
|
658 returned. Some day this function may be extended to extract multiple
|
|
659 addresses, or perhaps return the position at which parsing stopped." nil nil)
|
|
660
|
|
661 (autoload 'what-domain "mail-extr" "\
|
|
662 Prompts for a mail domain, and prints the country it corresponds to
|
|
663 in the minibuffer." t nil)
|
|
664
|
|
665 ;;;***
|
|
666
|
|
667 ;;;### (autoloads (mail-fetch-field mail-file-babyl-p) "mail-utils" "utils/mail-utils.el")
|
|
668
|
|
669 (defvar mail-use-rfc822 nil "\
|
|
670 *If non-nil, use a full, hairy RFC822 parser on mail addresses.
|
|
671 Otherwise, (the default) use a smaller, somewhat faster, and
|
|
672 often correct parser.")
|
|
673
|
|
674 (autoload 'mail-file-babyl-p "mail-utils" nil nil nil)
|
|
675
|
|
676 (autoload 'mail-fetch-field "mail-utils" "\
|
|
677 Return the value of the header field FIELD-NAME.
|
|
678 The buffer is expected to be narrowed to just the headers of the message.
|
|
679 If second arg LAST is non-nil, use the last such field if there are several.
|
|
680 If third arg ALL is non-nil, concatenate all such fields with commas between." nil nil)
|
|
681
|
|
682 ;;;***
|
|
683
|
|
684 ;;;### (autoloads (read-passwd) "passwd" "utils/passwd.el")
|
|
685
|
|
686 (autoload 'read-passwd "passwd" "\
|
|
687 Prompts for a password in the minibuffer, and returns it as a string.
|
|
688 If PROMPT may be a prompt string or an alist of elements
|
|
689 '(prompt . default).
|
|
690 If optional arg CONFIRM is true, then ask the user to type the password
|
|
691 again to confirm that they typed it correctly.
|
|
692 If optional arg DEFAULT is provided, then it is a string to insert as
|
|
693 the default choice (it is not, of course, displayed.)
|
|
694
|
|
695 If running under X, the keyboard will be grabbed (with XGrabKeyboard())
|
|
696 to reduce the possibility that eavesdropping is occuring.
|
|
697
|
|
698 When reading a password, all keys self-insert, except for:
|
|
699 \\<read-passwd-map>
|
|
700 \\[read-passwd-erase-line] Erase the entire line.
|
|
701 \\[quoted-insert] Insert the next character literally.
|
|
702 \\[delete-backward-char] Delete the previous character.
|
|
703 \\[exit-minibuffer] Accept what you have typed.
|
|
704 \\[keyboard-quit] Abort the command.
|
|
705
|
|
706 The returned value is always a newly-created string. No additional copies
|
|
707 of the password remain after this function has returned.
|
|
708
|
|
709 NOTE: unless great care is taken, the typed password will exist in plaintext
|
|
710 form in the running image for an arbitrarily long time. Priveleged users may
|
|
711 be able to extract it from memory. If emacs crashes, it may appear in the
|
|
712 resultant core file.
|
|
713
|
|
714 Some steps you can take to prevent the password from being copied around:
|
|
715
|
|
716 - as soon as you are done with the returned string, destroy it with
|
|
717 (fillarray string 0). The same goes for any default passwords
|
|
718 or password histories.
|
|
719
|
|
720 - do not copy the string, as with concat or substring - if you do, be
|
|
721 sure to keep track of and destroy all copies.
|
|
722
|
|
723 - do not insert the password into a buffer - if you do, be sure to
|
|
724 overwrite the buffer text before killing it, as with the functions
|
|
725 `passwd-erase-buffer' or `passwd-kill-buffer'. Note that deleting
|
|
726 the text from the buffer does NOT necessarily remove the text from
|
|
727 memory.
|
|
728
|
|
729 - be careful of the undo history - if you insert the password into a
|
|
730 buffer which has undo recording turned on, the password will be
|
|
731 copied onto the undo list, and thus recoverable.
|
|
732
|
|
733 - do not pass it as an argument to a shell command - anyone will be
|
|
734 able to see it if they run `ps' at the right time.
|
|
735
|
|
736 Note that the password will be temporarily recoverable with the `view-lossage'
|
|
737 command. This data will not be overwritten until another hundred or so
|
|
738 characters are typed. There's not currently a way around this." nil nil)
|
|
739
|
|
740 ;;;***
|
|
741
|
|
742 ;;;### (autoloads (pp-eval-last-sexp pp-eval-expression pp) "pp" "utils/pp.el")
|
|
743
|
|
744 (defalias 'pprint 'pp)
|
|
745
|
|
746 (autoload 'pp "pp" "\
|
|
747 Output the pretty-printed representation of OBJECT, any Lisp object.
|
|
748 Quoting characters are printed when needed to make output that `read'
|
|
749 can handle, whenever this is possible.
|
|
750 Output stream is STREAM, or value of `standard-output' (which see)." nil nil)
|
|
751
|
|
752 (autoload 'pp-eval-expression "pp" "\
|
|
753 Evaluate EXPRESSION and pretty-print value into a new display buffer.
|
|
754 If the pretty-printed value fits on one line, the message line is used
|
|
755 instead. Value is also consed on to front of variable values 's
|
|
756 value." t nil)
|
|
757
|
|
758 (autoload 'pp-eval-last-sexp "pp" "\
|
|
759 Run `pp-eval-expression' on sexp before point (which see).
|
|
760 With argument, pretty-print output into current buffer.
|
|
761 Ignores leading comment characters." t nil)
|
|
762
|
|
763 ;;;***
|
|
764
|
|
765 ;;;### (autoloads (prettyexpand-all-sexp prettyexpand-sexp macroexpand-all-sexp macroexpand-sexp pp-plist pp-variable pp-function) "pretty-print" "utils/pretty-print.el")
|
|
766
|
|
767 (autoload 'pp-function "pretty-print" "\
|
|
768 Pretty print the function definition of SYMBOL in a separate buffer" t nil)
|
|
769
|
|
770 (autoload 'pp-variable "pretty-print" "\
|
|
771 Pretty print the variable value of SYMBOL in a separate buffer" t nil)
|
|
772
|
|
773 (autoload 'pp-plist "pretty-print" "\
|
|
774 Pretty print the property list of SYMBOL in a separate buffer" t nil)
|
|
775
|
|
776 (autoload 'macroexpand-sexp "pretty-print" "\
|
|
777 Macro expand the sexpression following point. Pretty print expansion in a
|
|
778 temporary buffer. With prefix argument, replace the original
|
|
779 sexpression by its expansion in the current buffer." t nil)
|
|
780
|
|
781 (autoload 'macroexpand-all-sexp "pretty-print" "\
|
|
782 Macro expand recursively the sexpression following point. Pretty print
|
|
783 expansion in a temporary buffer. With prefix argument, replace the
|
|
784 original sexpression by its expansion in the current buffer." t nil)
|
|
785
|
|
786 (autoload 'prettyexpand-sexp "pretty-print" "\
|
|
787 Macro expand the sexpression following point. Pretty print expansion
|
|
788 in a temporary buffer. With prefix argument, replace the original
|
|
789 sexpression by its expansion in the current buffer.
|
|
790 However, calls to macros specified in the variable
|
|
791 `pp-shadow-expansion-list' are not expanded, in order to make the code
|
|
792 look nicer." t nil)
|
|
793
|
|
794 (autoload 'prettyexpand-all-sexp "pretty-print" "\
|
|
795 Macro expand recursively the sexpression following point. Pretty print
|
|
796 expansion in a temporary buffer. With prefix argument, replace the
|
|
797 original sexpression by its expansion in the current buffer.
|
|
798 However, calls to macros specified in the variable
|
|
799 `pp-shadow-expansion-list' are not expanded, in order to make the code
|
|
800 look nicer." t nil)
|
|
801
|
|
802 ;;;***
|
|
803
|
|
804 ;;;### (autoloads (reporter-submit-bug-report) "reporter" "utils/reporter.el")
|
|
805
|
|
806 (autoload 'reporter-submit-bug-report "reporter" nil nil nil)
|
|
807
|
|
808 ;;;***
|
|
809
|
|
810 ;;;### (autoloads (make-ring ringp) "ring" "utils/ring.el")
|
|
811
|
|
812 (autoload 'ringp "ring" "\
|
|
813 Returns t if X is a ring; nil otherwise." nil nil)
|
|
814
|
175
|
815 (define-compatible-function-alias 'ring-p 'ringp)
|
163
|
816
|
|
817 (autoload 'make-ring "ring" "\
|
|
818 Make a ring that can contain SIZE elements." nil nil)
|
|
819
|
|
820 ;;;***
|
|
821
|
|
822 ;;;### (autoloads (savehist-save savehist-load) "savehist" "utils/savehist.el")
|
|
823
|
|
824 (autoload 'savehist-load "savehist" "\
|
171
|
825 Load the minibuffer histories from `savehist-file'.
|
|
826 Unless NO-HOOK is specified, the function will also add the save function
|
|
827 to `kill-emacs-hook', thus ensuring that the minibuffer contents will be
|
|
828 saved before leaving Emacs.
|
163
|
829
|
|
830 This function should be normally used from your Emacs init file. Since it
|
171
|
831 removes your current minibuffer histories, it is unwise to call it at any
|
|
832 other time." t nil)
|
163
|
833
|
|
834 (autoload 'savehist-save "savehist" "\
|
|
835 Save the histories from `savehist-history-variables' to `savehist-file'.
|
|
836 A variable will be saved if it is bound and non-nil." t nil)
|
|
837
|
|
838 ;;;***
|
|
839
|
|
840 ;;;### (autoloads (skeleton-pair-insert-maybe skeleton-insert skeleton-proxy skeleton-proxy-new define-skeleton) "skeleton" "utils/skeleton.el")
|
|
841
|
|
842 (defvar skeleton-filter 'identity "\
|
|
843 Function for transforming a skeleton proxy's aliases' variable value.")
|
|
844
|
|
845 (autoload 'define-skeleton "skeleton" "\
|
|
846 Define a user-configurable COMMAND that enters a statement skeleton.
|
|
847 DOCUMENTATION is that of the command, while the variable of the same name,
|
|
848 which contains the skeleton, has a documentation to that effect.
|
|
849 INTERACTOR and ELEMENT ... are as defined under `skeleton-insert'." nil 'macro)
|
|
850
|
|
851 (autoload 'skeleton-proxy-new "skeleton" "\
|
|
852 Insert skeleton defined by variable of same name (see `skeleton-insert').
|
|
853 Prefix ARG allows wrapping around words or regions (see `skeleton-insert').
|
|
854 If no ARG was given, but the region is visible, ARG defaults to -1 depending
|
|
855 on `skeleton-autowrap'. An ARG of M-0 will prevent this just for once.
|
|
856 This command can also be an abbrev expansion (3rd and 4th columns in
|
|
857 \\[edit-abbrevs] buffer: \"\" command-name).
|
|
858
|
|
859 When called as a function, optional first argument STR may also be a string
|
|
860 which will be the value of `str' whereas the skeleton's interactor is then
|
|
861 ignored." t nil)
|
|
862
|
|
863 (autoload 'skeleton-proxy "skeleton" "\
|
|
864 Insert skeleton defined by variable of same name (see `skeleton-insert').
|
|
865 Prefix ARG allows wrapping around words or regions (see `skeleton-insert').
|
|
866 If no ARG was given, but the region is visible, ARG defaults to -1 depending
|
|
867 on `skeleton-autowrap'. An ARG of M-0 will prevent this just for once.
|
|
868 This command can also be an abbrev expansion (3rd and 4th columns in
|
|
869 \\[edit-abbrevs] buffer: \"\" command-name).
|
|
870
|
|
871 When called as a function, optional first argument STR may also be a string
|
|
872 which will be the value of `str' whereas the skeleton's interactor is then
|
|
873 ignored." t nil)
|
|
874
|
|
875 (autoload 'skeleton-insert "skeleton" "\
|
|
876 Insert the complex statement skeleton SKELETON describes very concisely.
|
|
877
|
|
878 With optional third REGIONS wrap first interesting point (`_') in skeleton
|
|
879 around next REGIONS words, if REGIONS is positive. If REGIONS is negative,
|
|
880 wrap REGIONS preceding interregions into first REGIONS interesting positions
|
|
881 \(successive `_'s) in skeleton. An interregion is the stretch of text between
|
|
882 two contiguous marked points. If you marked A B C [] (where [] is the cursor)
|
|
883 in alphabetical order, the 3 interregions are simply the last 3 regions. But
|
|
884 if you marked B A [] C, the interregions are B-A, A-[], []-C.
|
|
885
|
|
886 Optional fourth STR is the value for the variable `str' within the skeleton.
|
|
887 When this is non-`nil' the interactor gets ignored, and this should be a valid
|
|
888 skeleton element.
|
|
889
|
|
890 SKELETON is made up as (INTERACTOR ELEMENT ...). INTERACTOR may be nil if
|
|
891 not needed, a prompt-string or an expression for complex read functions.
|
|
892
|
|
893 If ELEMENT is a string or a character it gets inserted (see also
|
|
894 `skeleton-transformation'). Other possibilities are:
|
|
895
|
|
896 \\n go to next line and indent according to mode
|
|
897 _ interesting point, interregion here, point after termination
|
|
898 > indent line (or interregion if > _) according to major mode
|
|
899 & do next ELEMENT if previous moved point
|
|
900 | do next ELEMENT if previous didn't move point
|
|
901 -num delete num preceding characters (see `skeleton-untabify')
|
|
902 resume: skipped, continue here if quit is signaled
|
|
903 nil skipped
|
|
904
|
|
905 Further elements can be defined via `skeleton-further-elements'. ELEMENT may
|
|
906 itself be a SKELETON with an INTERACTOR. The user is prompted repeatedly for
|
|
907 different inputs. The SKELETON is processed as often as the user enters a
|
|
908 non-empty string. \\[keyboard-quit] terminates skeleton insertion, but
|
|
909 continues after `resume:' and positions at `_' if any. If INTERACTOR in such
|
|
910 a subskeleton is a prompt-string which contains a \".. %s ..\" it is
|
|
911 formatted with `skeleton-subprompt'. Such an INTERACTOR may also a list of
|
|
912 strings with the subskeleton being repeated once for each string.
|
|
913
|
|
914 Quoted Lisp expressions are evaluated evaluated for their side-effect.
|
|
915 Other Lisp expressions are evaluated and the value treated as above.
|
|
916 Note that expressions may not return `t' since this implies an
|
|
917 endless loop. Modes can define other symbols by locally setting them
|
|
918 to any valid skeleton element. The following local variables are
|
|
919 available:
|
|
920
|
|
921 str first time: read a string according to INTERACTOR
|
|
922 then: insert previously read string once more
|
|
923 help help-form during interaction with the user or `nil'
|
|
924 input initial input (string or cons with index) while reading str
|
|
925 v1, v2 local variables for memorizing anything you want
|
|
926
|
|
927 When done with skeleton, but before going back to `_'-point call
|
|
928 `skeleton-end-hook' if that is non-`nil'." nil nil)
|
|
929
|
|
930 (autoload 'skeleton-pair-insert-maybe "skeleton" "\
|
|
931 Insert the character you type ARG times.
|
|
932
|
|
933 With no ARG, if `skeleton-pair' is non-nil, pairing can occur. If the region
|
|
934 is visible the pair is wrapped around it depending on `skeleton-autowrap'.
|
|
935 Else, if `skeleton-pair-on-word' is non-nil or we are not before or inside a
|
|
936 word, and if `skeleton-pair-filter' returns nil, pairing is performed.
|
|
937
|
|
938 If a match is found in `skeleton-pair-alist', that is inserted, else
|
|
939 the defaults are used. These are (), [], {}, <> and `' for the
|
|
940 symmetrical ones, and the same character twice for the others." t nil)
|
|
941
|
|
942 ;;;***
|
|
943
|
177
|
944 ;;;### (autoloads (smtpmail-send-it) "smtpmail" "utils/smtpmail.el")
|
|
945
|
|
946 (autoload 'smtpmail-send-it "smtpmail" nil nil nil)
|
|
947
|
|
948 ;;;***
|
|
949
|
|
950 ;;;### (autoloads (speedbar-get-focus speedbar-frame-mode) "speedbar" "utils/speedbar.el")
|
|
951
|
|
952 (defalias 'speedbar 'speedbar-frame-mode)
|
|
953
|
|
954 (autoload 'speedbar-frame-mode "speedbar" "\
|
|
955 Enable or disable speedbar. Positive ARG means turn on, negative turn off.
|
|
956 nil means toggle. Once the speedbar frame is activated, a buffer in
|
|
957 `speedbar-mode' will be displayed. Currently, only one speedbar is
|
|
958 supported at a time." t nil)
|
|
959
|
|
960 (autoload 'speedbar-get-focus "speedbar" "\
|
|
961 Change frame focus to or from the speedbar frame.
|
|
962 If the selected frame is not speedbar, then speedbar frame is
|
|
963 selected. If the speedbar frame is active, then select the attached frame." t nil)
|
|
964
|
|
965 ;;;***
|
|
966
|
163
|
967 ;;;### (autoloads nil "timezone" "utils/timezone.el")
|
|
968
|
|
969 (define-error 'invalid-date "Invalid date string")
|
|
970
|
|
971 ;;;***
|
|
972
|
173
|
973 ;;;### (autoloads (toolbar-kill-item toolbar-kill-item-pos toolbar-add-item restore-initial-toolbar) "toolbar-utils" "utils/toolbar-utils.el")
|
|
974
|
|
975 (autoload 'restore-initial-toolbar "toolbar-utils" "\
|
|
976 Restores the default toolbar defined by initial-toolbar-spec." t nil)
|
|
977
|
|
978 (autoload 'toolbar-add-item "toolbar-utils" "\
|
|
979 Add a toolbar item ITEM at the first location of the toolbar specifier.
|
|
980 Optionally, can specify an INDEX position to insert the ITEM. The default is
|
|
981 to use default-toolbar, but a different specifier can by specified with
|
|
982 TOOLBAR-SPEC." nil nil)
|
|
983
|
|
984 (autoload 'toolbar-kill-item-pos "toolbar-utils" "\
|
|
985 Remove a toolbar item ITEM at the first location of the toolbar specifier.
|
|
986 Optionally, can specify an INDEX position where to remove the ITEM. The
|
|
987 default is to use default-toolbar, but a different specifier can by
|
|
988 specified with TOOLBAR-SPEC." nil nil)
|
|
989
|
|
990 (autoload 'toolbar-kill-item "toolbar-utils" "\
|
|
991 Remove a toolbar item ITEM at the first location of the toolbar specifier.
|
|
992 Optionally, can specify an ITEM to remove. The ITEM must be in form of a
|
|
993 vector. The default is to use default-toolbar, but a different specifier
|
|
994 can by specified with TOOLBAR-SPEC." nil nil)
|
|
995
|
|
996 ;;;***
|
|
997
|
163
|
998 ;;;### (autoloads (tq-create) "tq" "utils/tq.el")
|
|
999
|
|
1000 (autoload 'tq-create "tq" "\
|
|
1001 Create and return a transaction queue communicating with PROCESS.
|
|
1002 PROCESS should be a subprocess capable of sending and receiving
|
|
1003 streams of bytes. It may be a local process, or it may be connected
|
|
1004 to a tcp server on another machine." nil nil)
|
|
1005
|
|
1006 ;;;***
|
|
1007
|
|
1008 ;;;### (autoloads (trace-function-background trace-function) "trace" "utils/trace.el")
|
|
1009
|
|
1010 (defvar trace-buffer "*trace-output*" "\
|
|
1011 *Trace output will by default go to that buffer.")
|
|
1012
|
|
1013 (autoload 'trace-function "trace" "\
|
|
1014 Traces FUNCTION with trace output going to BUFFER.
|
|
1015 For every call of FUNCTION Lisp-style trace messages that display argument
|
|
1016 and return values will be inserted into BUFFER. This function generates the
|
|
1017 trace advice for FUNCTION and activates it together with any other advice
|
|
1018 there might be!! The trace BUFFER will popup whenever FUNCTION is called.
|
|
1019 Do not use this to trace functions that switch buffers or do any other
|
|
1020 display oriented stuff, use `trace-function-background' instead." t nil)
|
|
1021
|
|
1022 (autoload 'trace-function-background "trace" "\
|
|
1023 Traces FUNCTION with trace output going quietly to BUFFER.
|
|
1024 For every call of FUNCTION Lisp-style trace messages that display argument
|
|
1025 and return values will be inserted into BUFFER. This function generates the
|
|
1026 trace advice for FUNCTION and activates it together with any other advice
|
|
1027 there might be!! Trace output will quietly go to BUFFER without changing
|
|
1028 the window or buffer configuration at all." t nil)
|
|
1029
|
|
1030 ;;;***
|
|
1031
|
|
1032 ;;;### (autoloads (xbm-button-create) "xbm-button" "utils/xbm-button.el")
|
|
1033
|
|
1034 (autoload 'xbm-button-create "xbm-button" "\
|
|
1035 Returns a list of XBM image instantiators for a button displaying TEXT.
|
|
1036 The list is of the form
|
|
1037 (UP DOWN DISABLED)
|
|
1038 where UP, DOWN, and DISABLED are the up, down and disabled image
|
|
1039 instantiators for the button.
|
|
1040
|
|
1041 BORDER-THICKNESS specifies how many pixels should be used for the
|
|
1042 borders on the edges of the buttons. It should be a positive integer,
|
|
1043 or 0 to mean no border." nil nil)
|
|
1044
|
|
1045 ;;;***
|
|
1046
|
|
1047 ;;;### (autoloads (xpm-button-create) "xpm-button" "utils/xpm-button.el")
|
|
1048
|
|
1049 (autoload 'xpm-button-create "xpm-button" "\
|
|
1050 Returns a list of XPM image instantiators for a button displaying TEXT.
|
|
1051 The list is of the form
|
|
1052 (UP DOWN DISABLED)
|
|
1053 where UP, DOWN, and DISABLED are the up, down and disabled image
|
|
1054 instantiators for the button.
|
|
1055
|
|
1056 SHADOW-THICKNESS specifies how many pixels should be used for the
|
|
1057 shadows on the edges of the buttons. It should be a positive integer,
|
|
1058 or 0 to mean no shadows on the edges.
|
|
1059 FG-COLOR is the color used to display the text. It should be a string.
|
|
1060 BG-COLOR is the background color the text will be displayed upon.
|
|
1061 It should be a string." nil nil)
|
|
1062
|
|
1063 ;;;***
|
|
1064
|
|
1065 (provide 'utils-autoloads)
|