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