Merged from emacs@sv.gnu.org
[bpt/emacs.git] / lisp / ldefs-boot.el
CommitLineData
0a352cd7
GM
1;;; loaddefs.el --- automatically extracted autoloads
2;;
3;;; Code:
93548d2e 4\f
7518ed7b
GM
5;;;### (autoloads (5x5-crack 5x5-crack-xor-mutate 5x5-crack-mutating-best
6;;;;;; 5x5-crack-mutating-current 5x5-crack-randomly 5x5) "5x5"
a5805c9d 7;;;;;; "play/5x5.el" (17279 27123))
7518ed7b
GM
8;;; Generated autoloads from play/5x5.el
9
10(autoload (quote 5x5) "5x5" "\
11Play 5x5.
12
13The object of 5x5 is very simple, by moving around the grid and flipping
14squares you must fill the grid.
15
165x5 keyboard bindings are:
17\\<5x5-mode-map>
821b278f
MR
18Flip \\[5x5-flip-current]
19Move up \\[5x5-up]
20Move down \\[5x5-down]
21Move left \\[5x5-left]
22Move right \\[5x5-right]
7518ed7b
GM
23Start new game \\[5x5-new-game]
24New game with random grid \\[5x5-randomize]
25Random cracker \\[5x5-crack-randomly]
26Mutate current cracker \\[5x5-crack-mutating-current]
27Mutate best cracker \\[5x5-crack-mutating-best]
28Mutate xor cracker \\[5x5-crack-xor-mutate]
c595cc5f
MR
29Quit current game \\[5x5-quit-game]
30
31\(fn &optional SIZE)" t nil)
7518ed7b
GM
32
33(autoload (quote 5x5-crack-randomly) "5x5" "\
c595cc5f
MR
34Attempt to crack 5x5 using random solutions.
35
36\(fn)" t nil)
7518ed7b
GM
37
38(autoload (quote 5x5-crack-mutating-current) "5x5" "\
c595cc5f
MR
39Attempt to crack 5x5 by mutating the current solution.
40
41\(fn)" t nil)
7518ed7b
GM
42
43(autoload (quote 5x5-crack-mutating-best) "5x5" "\
c595cc5f
MR
44Attempt to crack 5x5 by mutating the best solution.
45
46\(fn)" t nil)
7518ed7b
GM
47
48(autoload (quote 5x5-crack-xor-mutate) "5x5" "\
8d8d8d4e 49Attempt to crack 5x5 by xor the current and best solution.
c595cc5f
MR
50Mutate the result.
51
52\(fn)" t nil)
7518ed7b
GM
53
54(autoload (quote 5x5-crack) "5x5" "\
55Attempt to find a solution for 5x5.
56
575x5-crack takes the argument BREEDER which should be a function that takes
58two parameters, the first will be a grid vector array that is the current
59solution and the second will be the best solution so far. The function
c595cc5f
MR
60should return a grid vector array that is the new solution.
61
62\(fn BREEDER)" t nil)
7518ed7b
GM
63
64;;;***
65\f
66;;;### (autoloads (ada-mode ada-add-extensions) "ada-mode" "progmodes/ada-mode.el"
a5805c9d 67;;;;;; (17279 27203))
93548d2e
DL
68;;; Generated autoloads from progmodes/ada-mode.el
69
7518ed7b 70(autoload (quote ada-add-extensions) "ada-mode" "\
cded5ed3
GM
71Define SPEC and BODY as being valid extensions for Ada files.
72Going from body to spec with `ff-find-other-file' used these
73extensions.
d66d64bc
KL
74SPEC and BODY are two regular expressions that must match against
75the file name.
c595cc5f
MR
76
77\(fn SPEC BODY)" nil nil)
7518ed7b 78
93548d2e
DL
79(autoload (quote ada-mode) "ada-mode" "\
80Ada mode is the major mode for editing Ada code.
81
82Bindings are as follows: (Note: 'LFD' is control-j.)
ec2bb97f 83\\{ada-mode-map}
93548d2e
DL
84
85 Indent line '\\[ada-tab]'
86 Indent line, insert newline and indent the new line. '\\[newline-and-indent]'
87
88 Re-format the parameter-list point is in '\\[ada-format-paramlist]'
89 Indent all lines in region '\\[ada-indent-region]'
93548d2e
DL
90
91 Adjust case of identifiers and keywords in region '\\[ada-adjust-case-region]'
92 Adjust case of identifiers and keywords in buffer '\\[ada-adjust-case-buffer]'
93
7518ed7b 94 Fill comment paragraph, justify and append postfix '\\[fill-paragraph]'
93548d2e
DL
95
96 Next func/proc/task '\\[ada-next-procedure]' Previous func/proc/task '\\[ada-previous-procedure]'
97 Next package '\\[ada-next-package]' Previous package '\\[ada-previous-package]'
98
99 Goto matching start of current 'end ...;' '\\[ada-move-to-start]'
100 Goto end of current block '\\[ada-move-to-end]'
101
102Comments are handled using standard GNU Emacs conventions, including:
103 Start a comment '\\[indent-for-comment]'
104 Comment region '\\[comment-region]'
105 Uncomment region '\\[ada-uncomment-region]'
106 Continue comment on next line '\\[indent-new-comment-line]'
107
108If you use imenu.el:
d66d64bc 109 Display index-menu of functions and procedures '\\[imenu]'
93548d2e
DL
110
111If you use find-file.el:
112 Switch to other file (Body <-> Spec) '\\[ff-find-other-file]'
113 or '\\[ff-mouse-find-other-file]
114 Switch to other file in other window '\\[ada-ff-other-window]'
115 or '\\[ff-mouse-find-other-file-other-window]
7518ed7b 116 If you use this function in a spec and no body is available, it gets created with body stubs.
93548d2e
DL
117
118If you use ada-xref.el:
119 Goto declaration: '\\[ada-point-and-xref]' on the identifier
120 or '\\[ada-goto-declaration]' with point on the identifier
c595cc5f
MR
121 Complete identifier: '\\[ada-complete-identifier]'.
122
123\(fn)" t nil)
7518ed7b
GM
124
125;;;***
126\f
127;;;### (autoloads (ada-header) "ada-stmt" "progmodes/ada-stmt.el"
a5805c9d 128;;;;;; (17279 27123))
7518ed7b 129;;; Generated autoloads from progmodes/ada-stmt.el
93548d2e 130
7518ed7b 131(autoload (quote ada-header) "ada-stmt" "\
c595cc5f
MR
132Insert a descriptive header at the top of the file.
133
134\(fn)" t nil)
93548d2e
DL
135
136;;;***
137\f
ec2bb97f 138;;;### (autoloads (ada-find-file) "ada-xref" "progmodes/ada-xref.el"
a5805c9d 139;;;;;; (17279 27172))
ec2bb97f
EZ
140;;; Generated autoloads from progmodes/ada-xref.el
141
142(autoload (quote ada-find-file) "ada-xref" "\
143Open a file anywhere in the source path.
c595cc5f
MR
144Completion is available.
145
146\(fn FILENAME)" t nil)
ec2bb97f
EZ
147
148;;;***
149\f
54baed30
GM
150;;;### (autoloads (change-log-redate change-log-merge add-log-current-defun
151;;;;;; change-log-mode add-change-log-entry-other-window add-change-log-entry
152;;;;;; find-change-log prompt-for-change-log-name add-log-mailing-address
0c72a1a2 153;;;;;; add-log-full-name add-log-current-defun-function) "add-log"
a5805c9d 154;;;;;; "add-log.el" (17356 16192))
93548d2e
DL
155;;; Generated autoloads from add-log.el
156
0c72a1a2
MR
157(defvar add-log-current-defun-function nil "\
158*If non-nil, function to guess name of surrounding function.
159It is used by `add-log-current-defun' in preference to built-in rules.
160Returns function's name as a string, or nil if outside a function.")
161
162(custom-autoload (quote add-log-current-defun-function) "add-log")
163
93548d2e
DL
164(defvar add-log-full-name nil "\
165*Full name of user, for inclusion in ChangeLog daily headers.
0a352cd7 166This defaults to the value returned by the function `user-full-name'.")
93548d2e 167
9c46b00a
MR
168(custom-autoload (quote add-log-full-name) "add-log")
169
93548d2e 170(defvar add-log-mailing-address nil "\
0ef3cc90 171*Email addresses of user, for inclusion in ChangeLog headers.
df2d7e04
CW
172This defaults to the value of `user-mail-address'. In addition to
173being a simple string, this value can also be a list. All elements
174will be recognized as referring to the same user; when creating a new
175ChangeLog entry, one element will be chosen at random.")
93548d2e 176
9c46b00a
MR
177(custom-autoload (quote add-log-mailing-address) "add-log")
178
93548d2e 179(autoload (quote prompt-for-change-log-name) "add-log" "\
c595cc5f
MR
180Prompt for a change log name.
181
182\(fn)" nil nil)
93548d2e
DL
183
184(autoload (quote find-change-log) "add-log" "\
185Find a change log file for \\[add-change-log-entry] and return the name.
186
187Optional arg FILE-NAME specifies the file to use.
188If FILE-NAME is nil, use the value of `change-log-default-name'.
d66d64bc 189If `change-log-default-name' is nil, behave as though it were 'ChangeLog'
93548d2e
DL
190\(or whatever we use on this operating system).
191
d66d64bc 192If `change-log-default-name' contains a leading directory component, then
93548d2e
DL
193simply find it in the current directory. Otherwise, search in the current
194directory and its successive parents for a file so named.
195
196Once a file is found, `change-log-default-name' is set locally in the
b442e70a 197current buffer to the complete file name.
c595cc5f
MR
198Optional arg BUFFER-FILE overrides `buffer-file-name'.
199
200\(fn &optional FILE-NAME BUFFER-FILE)" nil nil)
93548d2e
DL
201
202(autoload (quote add-change-log-entry) "add-log" "\
55e9efba 203Find change log file, and add an entry for today and an item for this file.
93548d2e 204Optional arg WHOAMI (interactive prefix) non-nil means prompt for user
390069bc 205name and email (stored in `add-log-full-name' and `add-log-mailing-address').
93548d2e 206
55e9efba
MB
207Second arg FILE-NAME is file name of the change log.
208If nil, use the value of `change-log-default-name'.
209
93548d2e 210Third arg OTHER-WINDOW non-nil means visit in other window.
55e9efba 211
93548d2e
DL
212Fourth arg NEW-ENTRY non-nil means always create a new entry at the front;
213never append to an existing entry. Option `add-log-keep-changes-together'
214otherwise affects whether a new entry is created.
215
5682d301
SS
216Option `add-log-always-start-new-record' non-nil means always create a
217new record, even when the last record was made on the same date and by
218the same person.
219
55e9efba
MB
220The change log file can start with a copyright notice and a copying
221permission notice. The first blank line indicates the end of these
222notices.
223
93548d2e 224Today's date is calculated according to `change-log-time-zone-rule' if
c595cc5f
MR
225non-nil, otherwise in local time.
226
227\(fn &optional WHOAMI FILE-NAME OTHER-WINDOW NEW-ENTRY)" t nil)
93548d2e
DL
228
229(autoload (quote add-change-log-entry-other-window) "add-log" "\
55e9efba
MB
230Find change log file in other window and add entry and item.
231This is just like `add-change-log-entry' except that it displays
c595cc5f
MR
232the change log file in another window.
233
234\(fn &optional WHOAMI FILE-NAME)" t nil)
93548d2e
DL
235 (define-key ctl-x-4-map "a" 'add-change-log-entry-other-window)
236
237(autoload (quote change-log-mode) "add-log" "\
238Major mode for editing change logs; like Indented Text Mode.
239Prevents numeric backups and sets `left-margin' to 8 and `fill-column' to 74.
240New log entries are usually made with \\[add-change-log-entry] or \\[add-change-log-entry-other-window].
241Each entry behaves as a paragraph, and the entries for one day as a page.
27a99a7c
GM
242Runs `change-log-mode-hook'.
243\\{change-log-mode-map}
244
245\(fn)" t nil)
93548d2e
DL
246
247(defvar add-log-lisp-like-modes (quote (emacs-lisp-mode lisp-mode scheme-mode dsssl-mode lisp-interaction-mode)) "\
248*Modes that look like Lisp to `add-log-current-defun'.")
249
250(defvar add-log-c-like-modes (quote (c-mode c++-mode c++-c-mode objc-mode)) "\
251*Modes that look like C to `add-log-current-defun'.")
252
253(defvar add-log-tex-like-modes (quote (TeX-mode plain-TeX-mode LaTeX-mode plain-tex-mode latex-mode)) "\
254*Modes that look like TeX to `add-log-current-defun'.")
255
256(autoload (quote add-log-current-defun) "add-log" "\
257Return name of function definition point is in, or nil.
258
259Understands C, Lisp, LaTeX (\"functions\" are chapters, sections, ...),
be0dbdab 260Texinfo (@node titles) and Perl.
93548d2e
DL
261
262Other modes are handled by a heuristic that looks in the 10K before
263point for uppercase headings starting in the first column or
be0dbdab 264identifiers followed by `:' or `='. See variables
0a352cd7 265`add-log-current-defun-header-regexp' and
296d7669 266`add-log-current-defun-function'.
93548d2e 267
c595cc5f
MR
268Has a preference of looking backwards.
269
270\(fn)" nil nil)
93548d2e 271
0a352cd7 272(autoload (quote change-log-merge) "add-log" "\
0ef3cc90 273Merge the contents of change log file OTHER-LOG with this buffer.
0a352cd7 274Both must be found in Change Log mode (since the merging depends on
c595cc5f
MR
275the appropriate motion commands). OTHER-LOG can be either a file name
276or a buffer.
0a352cd7 277
54baed30 278Entries are inserted in chronological order. Both the current and
c595cc5f
MR
279old-style time formats for entries are supported.
280
281\(fn OTHER-LOG)" t nil)
0a352cd7 282
54baed30 283(autoload (quote change-log-redate) "add-log" "\
c595cc5f
MR
284Fix any old-style date entries in the current log file to default format.
285
286\(fn)" t nil)
0a352cd7 287
93548d2e
DL
288;;;***
289\f
290;;;### (autoloads (defadvice ad-add-advice ad-default-compilation-action
a5805c9d
KL
291;;;;;; ad-redefinition-action) "advice" "emacs-lisp/advice.el" (17279
292;;;;;; 27196))
93548d2e
DL
293;;; Generated autoloads from emacs-lisp/advice.el
294
295(defvar ad-redefinition-action (quote warn) "\
296*Defines what to do with redefinitions during Advice de/activation.
297Redefinition occurs if a previously activated function that already has an
298original definition associated with it gets redefined and then de/activated.
299In such a case we can either accept the current definition as the new
300original definition, discard the current definition and replace it with the
301old original, or keep it and raise an error. The values `accept', `discard',
302`error' or `warn' govern what will be done. `warn' is just like `accept' but
303it additionally prints a warning message. All other values will be
304interpreted as `error'.")
305
9c46b00a
MR
306(custom-autoload (quote ad-redefinition-action) "advice")
307
93548d2e
DL
308(defvar ad-default-compilation-action (quote maybe) "\
309*Defines whether to compile advised definitions during activation.
310A value of `always' will result in unconditional compilation, `never' will
311always avoid compilation, `maybe' will compile if the byte-compiler is already
312loaded, and `like-original' will compile if the original definition of the
cded5ed3
GM
313advised function is compiled or a built-in function. Every other value will
314be interpreted as `maybe'. This variable will only be considered if the
93548d2e
DL
315COMPILE argument of `ad-activate' was supplied as nil.")
316
9c46b00a
MR
317(custom-autoload (quote ad-default-compilation-action) "advice")
318
93548d2e 319(autoload (quote ad-add-advice) "advice" "\
cded5ed3 320Add a piece of ADVICE to FUNCTION's list of advices in CLASS.
93548d2e
DL
321If FUNCTION already has one or more pieces of advice of the specified
322CLASS then POSITION determines where the new piece will go. The value
323of POSITION can either be `first', `last' or a number where 0 corresponds
324to `first'. Numbers outside the range will be mapped to the closest
325extreme position. If there was already a piece of ADVICE with the same
326name, then the position argument will be ignored and the old advice
327will be overwritten with the new one.
cded5ed3 328 If the FUNCTION was not advised already, then its advice info will be
93548d2e 329initialized. Redefining a piece of advice whose name is part of the cache-id
c595cc5f
MR
330will clear the cache.
331
332\(fn FUNCTION ADVICE CLASS POSITION)" nil nil)
93548d2e
DL
333
334(autoload (quote defadvice) "advice" "\
cded5ed3 335Define a piece of advice for FUNCTION (a symbol).
93548d2e
DL
336The syntax of `defadvice' is as follows:
337
338 (defadvice FUNCTION (CLASS NAME [POSITION] [ARGLIST] FLAG...)
339 [DOCSTRING] [INTERACTIVE-FORM]
340 BODY... )
341
342FUNCTION ::= Name of the function to be advised.
343CLASS ::= `before' | `around' | `after' | `activation' | `deactivation'.
344NAME ::= Non-nil symbol that names this piece of advice.
345POSITION ::= `first' | `last' | NUMBER. Optional, defaults to `first',
346 see also `ad-add-advice'.
347ARGLIST ::= An optional argument list to be used for the advised function
348 instead of the argument list of the original. The first one found in
349 before/around/after-advices will be used.
350FLAG ::= `protect'|`disable'|`activate'|`compile'|`preactivate'|`freeze'.
351 All flags can be specified with unambiguous initial substrings.
352DOCSTRING ::= Optional documentation for this piece of advice.
353INTERACTIVE-FORM ::= Optional interactive form to be used for the advised
354 function. The first one found in before/around/after-advices will be used.
355BODY ::= Any s-expression.
356
357Semantics of the various flags:
358`protect': The piece of advice will be protected against non-local exits in
359any code that precedes it. If any around-advice of a function is protected
360then automatically all around-advices will be protected (the complete onion).
361
362`activate': All advice of FUNCTION will be activated immediately if
363FUNCTION has been properly defined prior to this application of `defadvice'.
364
365`compile': In conjunction with `activate' specifies that the resulting
366advised function should be compiled.
367
cded5ed3 368`disable': The defined advice will be disabled, hence, it will not be used
93548d2e
DL
369during activation until somebody enables it.
370
371`preactivate': Preactivates the advised FUNCTION at macro-expansion/compile
372time. This generates a compiled advised definition according to the current
373advice state that will be used during activation if appropriate. Only use
374this if the `defadvice' gets actually compiled.
375
376`freeze': Expands the `defadvice' into a redefining `defun/defmacro' according
377to this particular single advice. No other advice information will be saved.
378Frozen advices cannot be undone, they behave like a hard redefinition of
379the advised function. `freeze' implies `activate' and `preactivate'. The
380documentation of the advised function can be dumped onto the `DOC' file
381during preloading.
382
c595cc5f
MR
383See Info node `(elisp)Advising Functions' for comprehensive documentation.
384
385\(fn FUNCTION ARGS &rest BODY)" nil (quote macro))
93548d2e
DL
386
387;;;***
388\f
abb2db1c
GM
389;;;### (autoloads (align-newline-and-indent align-unhighlight-rule
390;;;;;; align-highlight-rule align-current align-entire align-regexp
a5805c9d 391;;;;;; align) "align" "align.el" (17327 23538))
3c4c8064
GM
392;;; Generated autoloads from align.el
393
394(autoload (quote align) "align" "\
395Attempt to align a region based on a set of alignment rules.
396BEG and END mark the region. If BEG and END are specifically set to
397nil (this can only be done programmatically), the beginning and end of
398the current alignment section will be calculated based on the location
399of point, and the value of `align-region-separate' (or possibly each
400rule's `separate' attribute).
401
402If SEPARATE is non-nil, it overrides the value of
403`align-region-separate' for all rules, except those that have their
404`separate' attribute set.
405
406RULES and EXCLUDE-RULES, if either is non-nil, will replace the
407default rule lists defined in `align-rules-list' and
408`align-exclude-rules-list'. See `align-rules-list' for more details
c595cc5f
MR
409on the format of these lists.
410
411\(fn BEG END &optional SEPARATE RULES EXCLUDE-RULES)" t nil)
3c4c8064
GM
412
413(autoload (quote align-regexp) "align" "\
414Align the current region using an ad-hoc rule read from the minibuffer.
415BEG and END mark the limits of the region. This function will prompt
416for the REGEXP to align with. If no prefix arg was specified, you
417only need to supply the characters to be lined up and any preceding
418whitespace is replaced. If a prefix arg was specified, the full
419regexp with parenthesized whitespace should be supplied; it will also
420prompt for which parenthesis GROUP within REGEXP to modify, the amount
421of SPACING to use, and whether or not to REPEAT the rule throughout
422the line. See `align-rules-list' for more information about these
423options.
424
425For example, let's say you had a list of phone numbers, and wanted to
426align them so that the opening parentheses would line up:
427
428 Fred (123) 456-7890
429 Alice (123) 456-7890
430 Mary-Anne (123) 456-7890
431 Joe (123) 456-7890
432
433There is no predefined rule to handle this, but you could easily do it
434using a REGEXP like \"(\". All you would have to do is to mark the
c595cc5f
MR
435region, call `align-regexp' and type in that regular expression.
436
437\(fn BEG END REGEXP &optional GROUP SPACING REPEAT)" t nil)
3c4c8064
GM
438
439(autoload (quote align-entire) "align" "\
440Align the selected region as if it were one alignment section.
441BEG and END mark the extent of the region. If RULES or EXCLUDE-RULES
442is set to a list of rules (see `align-rules-list'), it can be used to
443override the default alignment rules that would have been used to
c595cc5f
MR
444align that section.
445
446\(fn BEG END &optional RULES EXCLUDE-RULES)" t nil)
3c4c8064
GM
447
448(autoload (quote align-current) "align" "\
449Call `align' on the current alignment section.
450This function assumes you want to align only the current section, and
451so saves you from having to specify the region. If RULES or
452EXCLUDE-RULES is set to a list of rules (see `align-rules-list'), it
453can be used to override the default alignment rules that would have
c595cc5f
MR
454been used to align that section.
455
456\(fn &optional RULES EXCLUDE-RULES)" t nil)
3c4c8064
GM
457
458(autoload (quote align-highlight-rule) "align" "\
459Highlight the whitespace which a given rule would have modified.
460BEG and END mark the extent of the region. TITLE identifies the rule
461that should be highlighted. If RULES or EXCLUDE-RULES is set to a
462list of rules (see `align-rules-list'), it can be used to override the
463default alignment rules that would have been used to identify the text
c595cc5f
MR
464to be colored.
465
466\(fn BEG END TITLE &optional RULES EXCLUDE-RULES)" t nil)
3c4c8064
GM
467
468(autoload (quote align-unhighlight-rule) "align" "\
c595cc5f
MR
469Remove any highlighting that was added by `align-highlight-rule'.
470
471\(fn)" t nil)
3c4c8064 472
abb2db1c 473(autoload (quote align-newline-and-indent) "align" "\
c595cc5f
MR
474A replacement function for `newline-and-indent', aligning as it goes.
475
476\(fn)" t nil)
abb2db1c 477
3c4c8064
GM
478;;;***
479\f
175a97e4 480;;;### (autoloads (outlineify-sticky allout-mode) "allout" "allout.el"
a5805c9d 481;;;;;; (17307 17624))
11254e5e
MR
482;;; Generated autoloads from allout.el
483
175a97e4
EZ
484(autoload (quote allout-mode) "allout" "\
485Toggle minor mode for controlling exposure and editing of text outlines.
486
487Optional arg forces mode to re-initialize iff arg is positive num or
488symbol. Allout outline mode always runs as a minor mode.
489
490Allout outline mode provides extensive outline oriented formatting and
491manipulation. It enables structural editing of outlines, as well as
492navigation and exposure. It also is specifically aimed at
493accommodating syntax-sensitive text like programming languages. (For
494an example, see the allout code itself, which is organized as an allout
495outline.)
496
497In addition to outline navigation and exposure, allout includes:
498
499 - topic-oriented repositioning, promotion/demotion, cut, and paste
500 - integral outline exposure-layout
501 - incremental search with dynamic exposure and reconcealment of hidden text
502 - automatic topic-number maintenance
503 - easy topic encryption and decryption
504 - \"Hot-spot\" operation, for single-keystroke maneuvering and
505 exposure control. (See the allout-mode docstring.)
506
507and many other features.
508
509Below is a description of the bindings, and then explanation of
510special `allout-mode' features and terminology. See also the outline
511menubar additions for quick reference to many of the features, and see
512the docstring of the function `allout-init' for instructions on
513priming your emacs session for automatic activation of `allout-mode'.
514
515
516The bindings are dictated by the `allout-keybindings-list' and
517`allout-command-prefix' variables.
518
519 Navigation: Exposure Control:
520 ---------- ----------------
521\\[allout-next-visible-heading] allout-next-visible-heading | \\[allout-hide-current-subtree] allout-hide-current-subtree
522\\[allout-previous-visible-heading] allout-previous-visible-heading | \\[allout-show-children] allout-show-children
523\\[allout-up-current-level] allout-up-current-level | \\[allout-show-current-subtree] allout-show-current-subtree
524\\[allout-forward-current-level] allout-forward-current-level | \\[allout-show-current-entry] allout-show-current-entry
525\\[allout-backward-current-level] allout-backward-current-level | \\[allout-show-all] allout-show-all
526\\[allout-end-of-entry] allout-end-of-entry
527\\[allout-beginning-of-current-entry,] allout-beginning-of-current-entry, alternately, goes to hot-spot
528
529 Topic Header Production:
530 -----------------------
531\\[allout-open-sibtopic] allout-open-sibtopic Create a new sibling after current topic.
532\\[allout-open-subtopic] allout-open-subtopic ... an offspring of current topic.
533\\[allout-open-supertopic] allout-open-supertopic ... a sibling of the current topic's parent.
534
535 Topic Level and Prefix Adjustment:
536 ---------------------------------
537\\[allout-shift-in] allout-shift-in Shift current topic and all offspring deeper.
538\\[allout-shift-out] allout-shift-out ... less deep.
539\\[allout-rebullet-current-heading] allout-rebullet-current-heading Prompt for alternate bullet for
540 current topic.
541\\[allout-rebullet-topic] allout-rebullet-topic Reconcile bullets of topic and its offspring
542 - distinctive bullets are not changed, others
543 alternated according to nesting depth.
544\\[allout-number-siblings] allout-number-siblings Number bullets of topic and siblings - the
545 offspring are not affected. With repeat
546 count, revoke numbering.
547
548 Topic-oriented Killing and Yanking:
549 ----------------------------------
550\\[allout-kill-topic] allout-kill-topic Kill current topic, including offspring.
551\\[allout-kill-line] allout-kill-line Like kill-line, but reconciles numbering, etc.
552\\[allout-yank] allout-yank Yank, adjusting depth of yanked topic to
553 depth of heading if yanking into bare topic
554 heading (ie, prefix sans text).
555\\[allout-yank-pop] allout-yank-pop Is to allout-yank as yank-pop is to yank
556
557 Misc commands:
558 -------------
559M-x outlineify-sticky Activate outline mode for current buffer,
560 and establish a default file-var setting
561 for `allout-layout'.
562\\[allout-mark-topic] allout-mark-topic
563\\[allout-copy-exposed-to-buffer] allout-copy-exposed-to-buffer
564 Duplicate outline, sans concealed text, to
565 buffer with name derived from derived from that
566 of current buffer - \"*BUFFERNAME exposed*\".
567\\[allout-flatten-exposed-to-buffer] allout-flatten-exposed-to-buffer
568 Like above 'copy-exposed', but convert topic
569 prefixes to section.subsection... numeric
570 format.
571ESC ESC (allout-init t) Setup Emacs session for outline mode
572 auto-activation.
573
574 Encrypted Entries
575
576Outline mode supports easily togglable gpg encryption of topics, with
577niceties like support for symmetric and key-pair modes, passphrase timeout,
578passphrase consistency checking, user-provided hinting for symmetric key
579mode, and auto-encryption of topics pending encryption on save. The aim is
580to enable reliable topic privacy while preventing accidents like neglected
581encryption, encryption with a mistaken passphrase, forgetting which
582passphrase was used, and other practical pitfalls.
583
c1a055ca 584See `allout-toggle-current-subtree-encryption' function docstring and
175a97e4
EZ
585`allout-encrypt-unencrypted-on-saves' customization variable for details.
586
587 HOT-SPOT Operation
588
589Hot-spot operation provides a means for easy, single-keystroke outline
590navigation and exposure control.
591
592\\<allout-mode-map>
593When the text cursor is positioned directly on the bullet character of
594a topic, regular characters (a to z) invoke the commands of the
595corresponding allout-mode keymap control chars. For example, \"f\"
596would invoke the command typically bound to \"C-c C-f\"
597\(\\[allout-forward-current-level] `allout-forward-current-level').
598
599Thus, by positioning the cursor on a topic bullet, you can execute
600the outline navigation and manipulation commands with a single
601keystroke. Non-literal chars never get this special translation, so
602you can use them to get away from the hot-spot, and back to normal
603operation.
604
605Note that the command `allout-beginning-of-current-entry' (\\[allout-beginning-of-current-entry])
606will move to the hot-spot when the cursor is already located at the
607beginning of the current entry, so you can simply hit \\[allout-beginning-of-current-entry]
608twice in a row to get to the hot-spot.
609
610 Terminology
611
612Topic hierarchy constituents - TOPICS and SUBTOPICS:
613
614TOPIC: A basic, coherent component of an Emacs outline. It can
615 contain other topics, and it can be subsumed by other topics,
616CURRENT topic:
617 The visible topic most immediately containing the cursor.
618DEPTH: The degree of nesting of a topic; it increases with
619 containment. Also called the:
620LEVEL: The same as DEPTH.
621
622ANCESTORS:
623 The topics that contain a topic.
624PARENT: A topic's immediate ancestor. It has a depth one less than
625 the topic.
626OFFSPRING:
627 The topics contained by a topic;
628SUBTOPIC:
629 An immediate offspring of a topic;
630CHILDREN:
631 The immediate offspring of a topic.
632SIBLINGS:
633 Topics having the same parent and depth.
634
635Topic text constituents:
636
637HEADER: The first line of a topic, include the topic PREFIX and header
638 text.
639PREFIX: The leading text of a topic which distinguishes it from normal
640 text. It has a strict form, which consists of a prefix-lead
641 string, padding, and a bullet. The bullet may be followed by a
642 number, indicating the ordinal number of the topic among its
643 siblings, a space, and then the header text.
644
645 The relative length of the PREFIX determines the nesting depth
646 of the topic.
647PREFIX-LEAD:
648 The string at the beginning of a topic prefix, normally a `.'.
649 It can be customized by changing the setting of
650 `allout-header-prefix' and then reinitializing `allout-mode'.
651
652 By setting the prefix-lead to the comment-string of a
653 programming language, you can embed outline structuring in
654 program code without interfering with the language processing
655 of that code. See `allout-use-mode-specific-leader'
656 docstring for more detail.
657PREFIX-PADDING:
658 Spaces or asterisks which separate the prefix-lead and the
659 bullet, according to the depth of the topic.
660BULLET: A character at the end of the topic prefix, it must be one of
661 the characters listed on `allout-plain-bullets-string' or
662 `allout-distinctive-bullets-string'. (See the documentation
663 for these variables for more details.) The default choice of
664 bullet when generating varies in a cycle with the depth of the
665 topic.
666ENTRY: The text contained in a topic before any offspring.
667BODY: Same as ENTRY.
668
669
670EXPOSURE:
671 The state of a topic which determines the on-screen visibility
672 of its offspring and contained text.
673CONCEALED:
674 Topics and entry text whose display is inhibited. Contiguous
675 units of concealed text is represented by `...' ellipses.
676 (Ref the `selective-display' var.)
677
678 Concealed topics are effectively collapsed within an ancestor.
679CLOSED: A topic whose immediate offspring and body-text is concealed.
680OPEN: A topic that is not closed, though its offspring or body may be.
681
682\(fn &optional TOGGLE)" t nil)
683
684(defalias (quote outlinify-sticky) (quote outlineify-sticky))
685
686(autoload (quote outlineify-sticky) "allout" "\
687Activate outline mode and establish file var so it is started subsequently.
688
689See doc-string for `allout-layout' and `allout-init' for details on
690setup for auto-startup.
11254e5e 691
175a97e4 692\(fn &optional ARG)" t nil)
11254e5e
MR
693
694;;;***
695\f
93548d2e 696;;;### (autoloads (ange-ftp-hook-function ange-ftp-reread-dir) "ange-ftp"
a5805c9d 697;;;;;; "net/ange-ftp.el" (17279 27196))
a25bbe00 698;;; Generated autoloads from net/ange-ftp.el
4c6bc877
MR
699
700(defalias (quote ange-ftp-re-read-dir) (quote ange-ftp-reread-dir))
93548d2e
DL
701
702(autoload (quote ange-ftp-reread-dir) "ange-ftp" "\
703Reread remote directory DIR to update the directory cache.
704The implementation of remote ftp file names caches directory contents
705for speed. Therefore, when new remote files are created, Emacs
706may not know they exist. You can use this command to reread a specific
c595cc5f
MR
707directory, so that Emacs will know its current contents.
708
709\(fn &optional DIR)" t nil)
710
711(autoload (quote ange-ftp-hook-function) "ange-ftp" "\
712Not documented
93548d2e 713
c595cc5f 714\(fn OPERATION &rest ARGS)" nil nil)
93548d2e 715
93548d2e
DL
716;;;***
717\f
a67b854e 718;;;### (autoloads (animate-birthday-present animate-sequence animate-string)
a5805c9d 719;;;;;; "animate" "play/animate.el" (17279 27172))
a67b854e
GM
720;;; Generated autoloads from play/animate.el
721
722(autoload (quote animate-string) "animate" "\
723Display STRING starting at position VPOS, HPOS, using animation.
724The characters start at randomly chosen places,
725and all slide in parallel to their final positions,
726passing through `animate-n-steps' positions before the final ones.
727If HPOS is nil (or omitted), center the string horizontally
c595cc5f
MR
728in the current window.
729
730\(fn STRING VPOS &optional HPOS)" nil nil)
a67b854e
GM
731
732(autoload (quote animate-sequence) "animate" "\
733Display strings from LIST-OF-STRING with animation in a new buffer.
c595cc5f
MR
734Strings will be separated from each other by SPACE lines.
735
736\(fn LIST-OF-STRINGS SPACE)" nil nil)
a67b854e
GM
737
738(autoload (quote animate-birthday-present) "animate" "\
390069bc
AS
739Display one's birthday present in a new buffer.
740You can specify the one's name by NAME; the default value is \"Sarah\".
c595cc5f 741
390069bc 742\(fn &optional NAME)" t nil)
a67b854e
GM
743
744;;;***
745\f
efaa080b 746;;;### (autoloads (ansi-color-process-output ansi-color-for-comint-mode-on)
a5805c9d 747;;;;;; "ansi-color" "ansi-color.el" (17279 27122))
efaa080b
GM
748;;; Generated autoloads from ansi-color.el
749
750(autoload (quote ansi-color-for-comint-mode-on) "ansi-color" "\
c595cc5f
MR
751Set `ansi-color-for-comint-mode' to t.
752
753\(fn)" t nil)
efaa080b
GM
754
755(autoload (quote ansi-color-process-output) "ansi-color" "\
756Maybe translate SGR control sequences of comint output into text-properties.
757
758Depending on variable `ansi-color-for-comint-mode' the comint output is
759either not processed, SGR control sequences are filtered using
760`ansi-color-filter-region', or SGR control sequences are translated into
761text-properties using `ansi-color-apply-on-region'.
762
763The comint output is assumed to lie between the marker
764`comint-last-output-start' and the process-mark.
765
c595cc5f
MR
766This is a good function to put in `comint-output-filter-functions'.
767
768\(fn STRING)" nil nil)
efaa080b
GM
769
770;;;***
771\f
6c083b4c 772;;;### (autoloads (antlr-set-tabs antlr-mode antlr-show-makefile-rules)
a5805c9d 773;;;;;; "antlr-mode" "progmodes/antlr-mode.el" (17279 27123))
cded5ed3
GM
774;;; Generated autoloads from progmodes/antlr-mode.el
775
6c083b4c
GM
776(autoload (quote antlr-show-makefile-rules) "antlr-mode" "\
777Show Makefile rules for all grammar files in the current directory.
778If the `major-mode' of the current buffer has the value `makefile-mode',
779the rules are directory inserted at point. Otherwise, a *Help* buffer
780is shown with the rules which are also put into the `kill-ring' for
781\\[yank].
782
783This command considers import/export vocabularies and grammar
784inheritance and provides a value for the \"-glib\" option if necessary.
785Customize variable `antlr-makefile-specification' for the appearance of
786the rules.
787
788If the file for a super-grammar cannot be determined, special file names
789are used according to variable `antlr-unknown-file-formats' and a
790commentary with value `antlr-help-unknown-file-text' is added. The
c595cc5f
MR
791*Help* buffer always starts with the text in `antlr-help-rules-intro'.
792
793\(fn)" t nil)
6c083b4c 794
cded5ed3
GM
795(autoload (quote antlr-mode) "antlr-mode" "\
796Major mode for editing ANTLR grammar files.
c595cc5f
MR
797\\{antlr-mode-map}
798
799\(fn)" t nil)
cded5ed3
GM
800
801(autoload (quote antlr-set-tabs) "antlr-mode" "\
802Use ANTLR's convention for TABs according to `antlr-tab-offset-alist'.
c595cc5f
MR
803Used in `antlr-mode'. Also a useful function in `java-mode-hook'.
804
805\(fn)" nil nil)
cded5ed3
GM
806
807;;;***
808\f
390069bc
AS
809;;;### (autoloads (appt-activate appt-make-list appt-delete appt-add
810;;;;;; appt-display-diary appt-display-duration appt-display-mode-line
811;;;;;; appt-msg-window appt-visible appt-audible appt-message-warning-time
a5805c9d 812;;;;;; appt-issue-message) "appt" "calendar/appt.el" (17308 43144))
93548d2e
DL
813;;; Generated autoloads from calendar/appt.el
814
815(defvar appt-issue-message t "\
816*Non-nil means check for appointments in the diary buffer.
390069bc
AS
817To be detected, the diary entry must have the format described in the
818documentation of the function `appt-check'.")
93548d2e 819
9c46b00a
MR
820(custom-autoload (quote appt-issue-message) "appt")
821
93548d2e
DL
822(defvar appt-message-warning-time 12 "\
823*Time in minutes before an appointment that the warning begins.")
824
9c46b00a
MR
825(custom-autoload (quote appt-message-warning-time) "appt")
826
93548d2e
DL
827(defvar appt-audible t "\
828*Non-nil means beep to indicate appointment.")
829
9c46b00a
MR
830(custom-autoload (quote appt-audible) "appt")
831
93548d2e 832(defvar appt-visible t "\
390069bc
AS
833*Non-nil means display appointment message in echo area.
834This variable is only relevant if `appt-msg-window' is nil.")
93548d2e 835
9c46b00a
MR
836(custom-autoload (quote appt-visible) "appt")
837
93548d2e 838(defvar appt-msg-window t "\
390069bc
AS
839*Non-nil means display appointment message in another window.
840If non-nil, this variable overrides `appt-visible'.")
93548d2e 841
9c46b00a
MR
842(custom-autoload (quote appt-msg-window) "appt")
843
390069bc
AS
844(defvar appt-display-mode-line t "\
845*Non-nil means display minutes to appointment and time on the mode line.
846This is in addition to any other display of appointment messages.")
847
848(custom-autoload (quote appt-display-mode-line) "appt")
849
93548d2e 850(defvar appt-display-duration 10 "\
390069bc
AS
851*The number of seconds an appointment message is displayed.
852Only relevant if reminders are to be displayed in their own window.")
93548d2e 853
9c46b00a
MR
854(custom-autoload (quote appt-display-duration) "appt")
855
93548d2e 856(defvar appt-display-diary t "\
390069bc 857*Non-nil displays the diary when the appointment list is first initialized.
93548d2e
DL
858This will occur at midnight when the appointment list is updated.")
859
9c46b00a
MR
860(custom-autoload (quote appt-display-diary) "appt")
861
93548d2e 862(autoload (quote appt-add) "appt" "\
d66d64bc 863Add an appointment for today at NEW-APPT-TIME with message NEW-APPT-MSG.
c595cc5f
MR
864The time should be in either 24 hour format or am/pm format.
865
866\(fn NEW-APPT-TIME NEW-APPT-MSG)" t nil)
93548d2e
DL
867
868(autoload (quote appt-delete) "appt" "\
c595cc5f
MR
869Delete an appointment from the list of appointments.
870
871\(fn)" t nil)
93548d2e 872
be0dbdab 873(autoload (quote appt-make-list) "appt" "\
be65bdd3 874Update the appointments list from today's diary buffer.
be0dbdab 875The time must be at the beginning of a line for it to be
390069bc
AS
876put in the appointments list (see examples in documentation of
877the function `appt-check'). We assume that the variables DATE and
878NUMBER hold the arguments that `list-diary-entries' received.
c595cc5f
MR
879They specify the range of dates that the diary is being processed for.
880
be65bdd3
AS
881Any appointments made with `appt-add' are not affected by this
882function.
883
d66d64bc
KL
884For backwards compatibility, this function activates the
885appointment package (if it is not already active).
886
c595cc5f 887\(fn)" nil nil)
93548d2e 888
390069bc
AS
889(autoload (quote appt-activate) "appt" "\
890Toggle checking of appointments.
891With optional numeric argument ARG, turn appointment checking on if
892ARG is positive, otherwise off.
893
894\(fn &optional ARG)" t nil)
895
93548d2e
DL
896;;;***
897\f
821b278f 898;;;### (autoloads (apropos-documentation apropos-value apropos apropos-documentation-property
59e085e0 899;;;;;; apropos-command apropos-variable apropos-read-pattern) "apropos"
a5805c9d 900;;;;;; "apropos.el" (17331 26860))
93548d2e
DL
901;;; Generated autoloads from apropos.el
902
59e085e0
KL
903(autoload (quote apropos-read-pattern) "apropos" "\
904Read an apropos pattern, either a word list or a regexp.
905Returns the user pattern, either a list of words which are matched
906literally, or a string which is used as a regexp to search for.
907
908SUBJECT is a string that is included in the prompt to identify what
909kind of objects to search.
910
911\(fn SUBJECT)" nil nil)
912
93548d2e 913(autoload (quote apropos-variable) "apropos" "\
59e085e0
KL
914Show user variables that match PATTERN.
915PATTERN can be a word, a list of words (separated by spaces),
916or a regexp (using some regexp special characters). If it is a word,
917search for matches for that word as a substring. If it is a list of words,
918search for matches for any two (or more) of those words.
919
920With \\[universal-argument] prefix, or if `apropos-do-all' is non-nil, also show
c595cc5f
MR
921normal variables.
922
59e085e0 923\(fn PATTERN &optional DO-ALL)" t nil)
93548d2e 924
4c6bc877 925(defalias (quote command-apropos) (quote apropos-command))
93548d2e
DL
926
927(autoload (quote apropos-command) "apropos" "\
59e085e0
KL
928Show commands (interactively callable functions) that match PATTERN.
929PATTERN can be a word, a list of words (separated by spaces),
930or a regexp (using some regexp special characters). If it is a word,
931search for matches for that word as a substring. If it is a list of words,
932search for matches for any two (or more) of those words.
933
934With \\[universal-argument] prefix, or if `apropos-do-all' is non-nil, also show
93548d2e
DL
935noninteractive functions.
936
937If VAR-PREDICATE is non-nil, show only variables, and only those that
c595cc5f
MR
938satisfy the predicate VAR-PREDICATE.
939
59e085e0
KL
940When called from a Lisp program, a string PATTERN is used as a regexp,
941while a list of strings is used as a word list.
942
943\(fn PATTERN &optional DO-ALL VAR-PREDICATE)" t nil)
93548d2e 944
821b278f
MR
945(autoload (quote apropos-documentation-property) "apropos" "\
946Like (documentation-property SYMBOL PROPERTY RAW) but handle errors.
947
948\(fn SYMBOL PROPERTY RAW)" nil nil)
949
93548d2e 950(autoload (quote apropos) "apropos" "\
c1a055ca
EZ
951Show all meaningful Lisp symbols whose names match PATTERN.
952Symbols are shown if they are defined as functions, variables, or
953faces, or if they have nonempty property lists.
954
59e085e0
KL
955PATTERN can be a word, a list of words (separated by spaces),
956or a regexp (using some regexp special characters). If it is a word,
957search for matches for that word as a substring. If it is a list of words,
958search for matches for any two (or more) of those words.
959
c1a055ca
EZ
960With \\[universal-argument] prefix, or if `apropos-do-all' is non-nil,
961consider all symbols (if they match PATTERN).
c595cc5f 962
c1a055ca 963Returns list of symbols and documentation found.
c595cc5f 964
59e085e0 965\(fn PATTERN &optional DO-ALL)" t nil)
93548d2e
DL
966
967(autoload (quote apropos-value) "apropos" "\
c1a055ca 968Show all symbols whose value's printed representation matches PATTERN.
59e085e0
KL
969PATTERN can be a word, a list of words (separated by spaces),
970or a regexp (using some regexp special characters). If it is a word,
971search for matches for that word as a substring. If it is a list of words,
972search for matches for any two (or more) of those words.
973
974With \\[universal-argument] prefix, or if `apropos-do-all' is non-nil, also looks
93548d2e 975at the function and at the names and values of properties.
c595cc5f
MR
976Returns list of symbols and values found.
977
59e085e0 978\(fn PATTERN &optional DO-ALL)" t nil)
93548d2e
DL
979
980(autoload (quote apropos-documentation) "apropos" "\
c1a055ca 981Show symbols whose documentation contains matches for PATTERN.
59e085e0
KL
982PATTERN can be a word, a list of words (separated by spaces),
983or a regexp (using some regexp special characters). If it is a word,
984search for matches for that word as a substring. If it is a list of words,
985search for matches for any two (or more) of those words.
986
987With \\[universal-argument] prefix, or if `apropos-do-all' is non-nil, also use
93548d2e
DL
988documentation that is not stored in the documentation file and show key
989bindings.
c595cc5f
MR
990Returns list of symbols and documentation found.
991
59e085e0 992\(fn PATTERN &optional DO-ALL)" t nil)
93548d2e
DL
993
994;;;***
995\f
c1a055ca 996;;;### (autoloads (archive-mode) "arc-mode" "arc-mode.el" (17379
a5805c9d 997;;;;;; 30027))
93548d2e
DL
998;;; Generated autoloads from arc-mode.el
999
1000(autoload (quote archive-mode) "arc-mode" "\
1001Major mode for viewing an archive file in a dired-like way.
1002You can move around using the usual cursor motion commands.
1003Letters no longer insert themselves.
1004Type `e' to pull a file out of the archive and into its own buffer;
1005or click mouse-2 on the file's line in the archive mode buffer.
1006
1007If you edit a sub-file of this archive (as with the `e' command) and
1008save it, the contents of that buffer will be saved back into the
1009archive.
1010
c595cc5f
MR
1011\\{archive-mode-map}
1012
1013\(fn &optional FORCE)" nil nil)
93548d2e
DL
1014
1015;;;***
1016\f
a5805c9d 1017;;;### (autoloads (array-mode) "array" "array.el" (17374 21266))
93548d2e
DL
1018;;; Generated autoloads from array.el
1019
1020(autoload (quote array-mode) "array" "\
1021Major mode for editing arrays.
1022
1023 Array mode is a specialized mode for editing arrays. An array is
1024considered to be a two-dimensional set of strings. The strings are
1025NOT recognized as integers or real numbers.
1026
0a352cd7 1027 The array MUST reside at the top of the buffer.
93548d2e
DL
1028
1029 TABs are not respected, and may be converted into spaces at any time.
0ef3cc90 1030Setting the variable `array-respect-tabs' to non-nil will prevent TAB conversion,
93548d2e
DL
1031but will cause many functions to give errors if they encounter one.
1032
1033 Upon entering array mode, you will be prompted for the values of
1034several variables. Others will be calculated based on the values you
33c18c83 1035supply. These variables are all local to the buffer. Other buffer
93548d2e
DL
1036in array mode may have different values assigned to the variables.
1037The variables are:
1038
1039Variables you assign:
0a352cd7
GM
1040 array-max-row: The number of rows in the array.
1041 array-max-column: The number of columns in the array.
1042 array-columns-per-line: The number of columns in the array per line of buffer.
1043 array-field-width: The width of each field, in characters.
1044 array-rows-numbered: A logical variable describing whether to ignore
93548d2e
DL
1045 row numbers in the buffer.
1046
1047Variables which are calculated:
0a352cd7
GM
1048 array-line-length: The number of characters in a buffer line.
1049 array-lines-per-row: The number of buffer lines used to display each row.
93548d2e
DL
1050
1051 The following commands are available (an asterisk indicates it may
1052take a numeric prefix argument):
1053
1054 * \\<array-mode-map>\\[array-forward-column] Move forward one column.
1055 * \\[array-backward-column] Move backward one column.
1056 * \\[array-next-row] Move down one row.
1057 * \\[array-previous-row] Move up one row.
1058
1059 * \\[array-copy-forward] Copy the current field into the column to the right.
1060 * \\[array-copy-backward] Copy the current field into the column to the left.
1061 * \\[array-copy-down] Copy the current field into the row below.
1062 * \\[array-copy-up] Copy the current field into the row above.
1063
1064 * \\[array-copy-column-forward] Copy the current column into the column to the right.
1065 * \\[array-copy-column-backward] Copy the current column into the column to the left.
1066 * \\[array-copy-row-down] Copy the current row into the row below.
1067 * \\[array-copy-row-up] Copy the current row into the row above.
1068
1069 \\[array-fill-rectangle] Copy the field at mark into every cell with row and column
1070 between that of point and mark.
1071
1072 \\[array-what-position] Display the current array row and column.
1073 \\[array-goto-cell] Go to a particular array cell.
1074
1075 \\[array-make-template] Make a template for a new array.
1076 \\[array-reconfigure-rows] Reconfigure the array.
1077 \\[array-expand-rows] Expand the array (remove row numbers and
1078 newlines inside rows)
1079
1080 \\[array-display-local-variables] Display the current values of local variables.
1081
c595cc5f
MR
1082Entering array mode calls the function `array-mode-hook'.
1083
1084\(fn)" t nil)
93548d2e
DL
1085
1086;;;***
1087\f
a5805c9d
KL
1088;;;### (autoloads (artist-mode) "artist" "textmodes/artist.el" (17279
1089;;;;;; 27174))
6c083b4c
GM
1090;;; Generated autoloads from textmodes/artist.el
1091
1092(autoload (quote artist-mode) "artist" "\
1093Toggle artist mode. With arg, turn artist mode on if arg is positive.
1094Artist lets you draw lines, squares, rectangles and poly-lines, ellipses
1095and circles with your mouse and/or keyboard.
1096
1097How to quit artist mode
1098
1099 Type \\[artist-mode-off] to quit artist-mode.
1100
1101
1102How to submit a bug report
1103
1104 Type \\[artist-submit-bug-report] to submit a bug report.
1105
1106
1107Drawing with the mouse:
1108
1109 mouse-2
1110 shift mouse-2 Pops up a menu where you can select what to draw with
1111 mouse-1, and where you can do some settings (described
1112 below).
1113
1114 mouse-1
1115 shift mouse-1 Draws lines, rectangles or poly-lines, erases, cuts, copies
1116 or pastes:
1117
1118 Operation Not shifted Shifted
1119 --------------------------------------------------------------
1120 Pen fill-char at point line from last point
1121 to new point
1122 --------------------------------------------------------------
1123 Line Line in any direction Straight line
1124 --------------------------------------------------------------
1125 Rectangle Rectangle Square
1126 --------------------------------------------------------------
1127 Poly-line Poly-line in any dir Straight poly-lines
1128 --------------------------------------------------------------
1129 Ellipses Ellipses Circles
1130 --------------------------------------------------------------
1131 Text Text (see thru) Text (overwrite)
1132 --------------------------------------------------------------
1133 Spray-can Spray-can Set size for spray
1134 --------------------------------------------------------------
1135 Erase Erase character Erase rectangle
1136 --------------------------------------------------------------
1137 Vaporize Erase single line Erase connected
1138 lines
1139 --------------------------------------------------------------
1140 Cut Cut rectangle Cut square
1141 --------------------------------------------------------------
1142 Copy Copy rectangle Copy square
1143 --------------------------------------------------------------
1144 Paste Paste Paste
1145 --------------------------------------------------------------
1146 Flood-fill Flood-fill Flood-fill
1147 --------------------------------------------------------------
1148
09938b67 1149 * Straight lines can only go horizontally, vertically
6c083b4c
GM
1150 or diagonally.
1151
1152 * Poly-lines are drawn while holding mouse-1 down. When you
1153 release the button, the point is set. If you want a segment
1154 to be straight, hold down shift before pressing the
1155 mouse-1 button. Click mouse-2 or mouse-3 to stop drawing
1156 poly-lines.
1157
1158 * See thru for text means that text already in the buffer
1159 will be visible through blanks in the text rendered, while
1160 overwrite means the opposite.
1161
1162 * Vaporizing connected lines only vaporizes lines whose
1163 _endpoints_ are connected. See also the variable
1164 `artist-vaporize-fuzziness'.
1165
1166 * Cut copies, then clears the rectangle/square.
1167
1168 * When drawing lines or poly-lines, you can set arrows.
1169 See below under ``Arrows'' for more info.
1170
1171 * The mode line shows the currently selected drawing operation.
1172 In addition, if it has an asterisk (*) at the end, you
1173 are currently drawing something.
1174
1175 * Be patient when flood-filling -- large areas take quite
1176 some time to fill.
1177
1178
1179 mouse-3 Erases character under pointer
1180 shift mouse-3 Erases rectangle
1181
1182
1183Settings
1184
1185 Set fill Sets the character used when filling rectangles/squares
1186
1187 Set line Sets the character used when drawing lines
1188
1189 Erase char Sets the character used when erasing
1190
1191 Rubber-banding Toggles rubber-banding
1192
1193 Trimming Toggles trimming of line-endings (that is: when the shape
1194 is drawn, extraneous white-space at end of lines is removed)
1195
1196 Borders Toggles the drawing of line borders around filled shapes.
1197
1198
1199Drawing with keys
1200
1201 \\[artist-key-set-point] Does one of the following:
1202 For lines/rectangles/squares: sets the first/second endpoint
1203 For poly-lines: sets a point (use C-u \\[artist-key-set-point] to set last point)
1204 When erase characters: toggles erasing
1205 When cutting/copying: Sets first/last endpoint of rect/square
1206 When pasting: Pastes
1207
1208 \\[artist-select-operation] Selects what to draw
1209
1210 Move around with \\[artist-next-line], \\[artist-previous-line], \\[artist-forward-char] and \\[artist-backward-char].
1211
1212 \\[artist-select-fill-char] Sets the charater to use when filling
1213 \\[artist-select-line-char] Sets the charater to use when drawing
1214 \\[artist-select-erase-char] Sets the charater to use when erasing
1215 \\[artist-toggle-rubber-banding] Toggles rubber-banding
1216 \\[artist-toggle-trim-line-endings] Toggles trimming of line-endings
1217 \\[artist-toggle-borderless-shapes] Toggles borders on drawn shapes
1218
1219
1220Arrows
1221
1222 \\[artist-toggle-first-arrow] Sets/unsets an arrow at the beginning
1223 of the line/poly-line
1224
1225 \\[artist-toggle-second-arrow] Sets/unsets an arrow at the end
1226 of the line/poly-line
1227
1228
1229Selecting operation
1230
1231 There are some keys for quickly selecting drawing operations:
1232
1233 \\[artist-select-op-line] Selects drawing lines
1234 \\[artist-select-op-straight-line] Selects drawing straight lines
1235 \\[artist-select-op-rectangle] Selects drawing rectangles
1236 \\[artist-select-op-square] Selects drawing squares
1237 \\[artist-select-op-poly-line] Selects drawing poly-lines
1238 \\[artist-select-op-straight-poly-line] Selects drawing straight poly-lines
1239 \\[artist-select-op-ellipse] Selects drawing ellipses
1240 \\[artist-select-op-circle] Selects drawing circles
1241 \\[artist-select-op-text-see-thru] Selects rendering text (see thru)
1242 \\[artist-select-op-text-overwrite] Selects rendering text (overwrite)
1243 \\[artist-select-op-spray-can] Spray with spray-can
1244 \\[artist-select-op-spray-set-size] Set size for the spray-can
1245 \\[artist-select-op-erase-char] Selects erasing characters
1246 \\[artist-select-op-erase-rectangle] Selects erasing rectangles
1247 \\[artist-select-op-vaporize-line] Selects vaporizing single lines
1248 \\[artist-select-op-vaporize-lines] Selects vaporizing connected lines
1249 \\[artist-select-op-cut-rectangle] Selects cutting rectangles
1250 \\[artist-select-op-copy-rectangle] Selects copying rectangles
1251 \\[artist-select-op-paste] Selects pasting
1252 \\[artist-select-op-flood-fill] Selects flood-filling
1253
1254
1255Variables
1256
1257 This is a brief overview of the different varaibles. For more info,
1258 see the documentation for the variables (type \\[describe-variable] <variable> RET).
1259
1260 artist-rubber-banding Interactively do rubber-banding or not
1261 artist-first-char What to set at first/second point...
1262 artist-second-char ...when not rubber-banding
1263 artist-interface-with-rect If cut/copy/paste should interface with rect
1264 artist-arrows The arrows to use when drawing arrows
1265 artist-aspect-ratio Character height-to-width for squares
1266 artist-trim-line-endings Trimming of line endings
1267 artist-flood-fill-right-border Right border when flood-filling
1268 artist-flood-fill-show-incrementally Update display while filling
1269 artist-pointer-shape Pointer shape to use while drawing
1270 artist-ellipse-left-char Character to use for narrow ellipses
1271 artist-ellipse-right-char Character to use for narrow ellipses
1272 artist-borderless-shapes If shapes should have borders
1273 artist-picture-compatibility Whether or not to be picture mode compatible
1274 artist-vaporize-fuzziness Tolerance when recognizing lines
1275 artist-spray-interval Seconds between repeated sprayings
1276 artist-spray-radius Size of the spray-area
1277 artist-spray-chars The spray-``color''
1278 artist-spray-new-chars Initial spray-``color''
1279
1280Hooks
1281
1282 When entering artist-mode, the hook `artist-mode-init-hook' is called.
1283 When quitting artist-mode, the hook `artist-mode-exit-hook' is called.
1284
1285
1286Keymap summary
1287
c595cc5f
MR
1288\\{artist-mode-map}
1289
1290\(fn &optional STATE)" t nil)
6c083b4c
GM
1291
1292;;;***
1293\f
a5805c9d
KL
1294;;;### (autoloads (asm-mode) "asm-mode" "progmodes/asm-mode.el" (17356
1295;;;;;; 16046))
93548d2e
DL
1296;;; Generated autoloads from progmodes/asm-mode.el
1297
1298(autoload (quote asm-mode) "asm-mode" "\
1299Major mode for editing typical assembler code.
1300Features a private abbrev table and the following bindings:
1301
1302\\[asm-colon] outdent a preceding label, tab to next tab stop.
1303\\[tab-to-tab-stop] tab to next tab stop.
1304\\[asm-newline] newline, then tab to next tab stop.
1305\\[asm-comment] smart placement of assembler comments.
1306
1307The character used for making comments is set by the variable
1308`asm-comment-char' (which defaults to `?\\;').
1309
1310Alternatively, you may set this variable in `asm-mode-set-comment-hook',
1311which is called near the beginning of mode initialization.
1312
1313Turning on Asm mode runs the hook `asm-mode-hook' at the end of initialization.
1314
1315Special commands:
1316\\{asm-mode-map}
c595cc5f
MR
1317
1318\(fn)" t nil)
93548d2e
DL
1319
1320;;;***
1321\f
ac95a621 1322;;;### (autoloads (auto-show-mode auto-show-mode) "auto-show" "obsolete/auto-show.el"
a5805c9d 1323;;;;;; (17279 27080))
ac95a621 1324;;; Generated autoloads from obsolete/auto-show.el
93548d2e
DL
1325
1326(defvar auto-show-mode nil "\
7518ed7b 1327Obsolete.")
93548d2e 1328
9c46b00a
MR
1329(custom-autoload (quote auto-show-mode) "auto-show")
1330
93548d2e 1331(autoload (quote auto-show-mode) "auto-show" "\
c595cc5f
MR
1332This command is obsolete.
1333
1334\(fn ARG)" t nil)
93548d2e
DL
1335
1336;;;***
1337\f
f75a0f7a 1338;;;### (autoloads (autoarg-kp-mode autoarg-mode) "autoarg" "autoarg.el"
a5805c9d 1339;;;;;; (17279 27122))
a1b8d58b
GM
1340;;; Generated autoloads from autoarg.el
1341
bd02b8e0 1342(defvar autoarg-mode nil "\
9be6c49a 1343Non-nil if Autoarg mode is enabled.
d66d64bc 1344See the command `autoarg-mode' for a description of this minor-mode.")
bd02b8e0 1345
9c46b00a 1346(custom-autoload (quote autoarg-mode) "autoarg")
bd02b8e0 1347
ac09dc1e
KL
1348(put (quote autoarg-mode) (quote custom-set) (quote custom-set-minor-mode))
1349
a1b8d58b 1350(autoload (quote autoarg-mode) "autoarg" "\
f75a0f7a 1351Toggle Autoarg minor mode globally.
a1b8d58b
GM
1352With ARG, turn Autoarg mode on if ARG is positive, off otherwise.
1353\\<autoarg-mode-map>
1354In Autoarg mode digits are bound to `digit-argument' -- i.e. they
1355supply prefix arguments as C-DIGIT and M-DIGIT normally do -- and
1356C-DIGIT inserts DIGIT. \\[autoarg-terminate] terminates the prefix sequence
1357and inserts the digits of the autoarg sequence into the buffer.
1358Without a numeric prefix arg the normal binding of \\[autoarg-terminate] is
1359invoked, i.e. what it would be with Autoarg mode off.
1360
1361For example:
1362`6 9 \\[autoarg-terminate]' inserts `69' into the buffer, as does `C-6 C-9'.
1363`6 9 a' inserts 69 `a's into the buffer.
1364`6 9 \\[autoarg-terminate] \\[autoarg-terminate]' inserts `69' into the buffer and
1365then invokes the normal binding of \\[autoarg-terminate].
1366`C-u \\[autoarg-terminate]' invokes the normal binding of \\[autoarg-terminate] four times.
1367
c595cc5f
MR
1368\\{autoarg-mode-map}
1369
1370\(fn &optional ARG)" t nil)
a1b8d58b 1371
bd02b8e0 1372(defvar autoarg-kp-mode nil "\
9be6c49a 1373Non-nil if Autoarg-Kp mode is enabled.
bd02b8e0
GM
1374See the command `autoarg-kp-mode' for a description of this minor-mode.
1375Setting this variable directly does not take effect;
1376use either \\[customize] or the function `autoarg-kp-mode'.")
1377
9c46b00a 1378(custom-autoload (quote autoarg-kp-mode) "autoarg")
bd02b8e0 1379
ac09dc1e
KL
1380(put (quote autoarg-kp-mode) (quote custom-set) (quote custom-set-minor-mode))
1381
f75a0f7a
GM
1382(autoload (quote autoarg-kp-mode) "autoarg" "\
1383Toggle Autoarg-KP minor mode globally.
1384With ARG, turn Autoarg mode on if ARG is positive, off otherwise.
1385\\<autoarg-kp-mode-map>
1386This is similar to \\[autoarg-mode] but rebinds the keypad keys `kp-1'
1387&c to supply digit arguments.
1388
c595cc5f
MR
1389\\{autoarg-kp-mode-map}
1390
1391\(fn &optional ARG)" t nil)
f75a0f7a 1392
a1b8d58b
GM
1393;;;***
1394\f
d1221ea9 1395;;;### (autoloads (autoconf-mode) "autoconf" "progmodes/autoconf.el"
a5805c9d 1396;;;;;; (17279 27123))
d1221ea9
GM
1397;;; Generated autoloads from progmodes/autoconf.el
1398
1399(autoload (quote autoconf-mode) "autoconf" "\
c595cc5f
MR
1400Major mode for editing Autoconf configure.in files.
1401
1402\(fn)" t nil)
d1221ea9
GM
1403
1404;;;***
1405\f
93548d2e 1406;;;### (autoloads (auto-insert-mode define-auto-insert auto-insert)
a5805c9d 1407;;;;;; "autoinsert" "autoinsert.el" (17279 27122))
93548d2e
DL
1408;;; Generated autoloads from autoinsert.el
1409
1410(autoload (quote auto-insert) "autoinsert" "\
b442e70a 1411Insert default contents into new files if variable `auto-insert' is non-nil.
c595cc5f
MR
1412Matches the visited file name against the elements of `auto-insert-alist'.
1413
1414\(fn)" t nil)
93548d2e
DL
1415
1416(autoload (quote define-auto-insert) "autoinsert" "\
1417Associate CONDITION with (additional) ACTION in `auto-insert-alist'.
1418Optional AFTER means to insert action after all existing actions for CONDITION,
c595cc5f
MR
1419or if CONDITION had no actions, after all other CONDITIONs.
1420
1421\(fn CONDITION ACTION &optional AFTER)" nil nil)
93548d2e 1422
b442e70a 1423(defvar auto-insert-mode nil "\
5682d301 1424Non-nil if Auto-Insert mode is enabled.
bd02b8e0 1425See the command `auto-insert-mode' for a description of this minor-mode.
b442e70a
MB
1426Setting this variable directly does not take effect;
1427use either \\[customize] or the function `auto-insert-mode'.")
1428
9c46b00a 1429(custom-autoload (quote auto-insert-mode) "autoinsert")
b442e70a 1430
ac09dc1e
KL
1431(put (quote auto-insert-mode) (quote custom-set) (quote custom-set-minor-mode))
1432
93548d2e 1433(autoload (quote auto-insert-mode) "autoinsert" "\
cded5ed3
GM
1434Toggle Auto-insert mode.
1435With prefix ARG, turn Auto-insert mode on if and only if ARG is positive.
1436Returns the new status of Auto-insert mode (non-nil means on).
93548d2e 1437
cded5ed3 1438When Auto-insert mode is enabled, when new files are created you can
c595cc5f
MR
1439insert a template for the file depending on the mode of the buffer.
1440
1441\(fn &optional ARG)" t nil)
93548d2e
DL
1442
1443;;;***
1444\f
0c72a1a2 1445;;;### (autoloads (batch-update-autoloads update-directory-autoloads
93548d2e 1446;;;;;; update-file-autoloads) "autoload" "emacs-lisp/autoload.el"
a5805c9d 1447;;;;;; (17307 17624))
93548d2e
DL
1448;;; Generated autoloads from emacs-lisp/autoload.el
1449
1450(autoload (quote update-file-autoloads) "autoload" "\
1451Update the autoloads for FILE in `generated-autoload-file'
c86350b1 1452\(which FILE might bind in its local variables).
390069bc
AS
1453If SAVE-AFTER is non-nil (which is always, when called interactively),
1454save the buffer too.
c595cc5f 1455
390069bc
AS
1456Return FILE if there was no autoload cookie in it, else nil.
1457
1458\(fn FILE &optional SAVE-AFTER)" t nil)
93548d2e 1459
0c72a1a2 1460(autoload (quote update-directory-autoloads) "autoload" "\
93548d2e 1461Update loaddefs.el with all the current autoloads from DIRS, and no old ones.
175a97e4 1462This uses `update-file-autoloads' (which see) to do its work.
0c72a1a2
MR
1463In an interactive call, you must give one argument, the name
1464of a single directory. In a call from Lisp, you can supply multiple
1465directories as separate arguments, but this usage is discouraged.
1466
1467The function does NOT recursively descend into subdirectories of the
1468directory or directories specified.
c595cc5f
MR
1469
1470\(fn &rest DIRS)" t nil)
93548d2e
DL
1471
1472(autoload (quote batch-update-autoloads) "autoload" "\
1473Update loaddefs.el autoloads in batch mode.
0c72a1a2 1474Calls `update-directory-autoloads' on the command line arguments.
c595cc5f
MR
1475
1476\(fn)" nil nil)
93548d2e
DL
1477
1478;;;***
1479\f
390069bc
AS
1480;;;### (autoloads (global-auto-revert-mode turn-on-auto-revert-tail-mode
1481;;;;;; auto-revert-tail-mode turn-on-auto-revert-mode auto-revert-mode)
a5805c9d 1482;;;;;; "autorevert" "autorevert.el" (17279 27122))
93548d2e
DL
1483;;; Generated autoloads from autorevert.el
1484
1485(autoload (quote auto-revert-mode) "autorevert" "\
1486Toggle reverting buffer when file on disk changes.
1487
1488With arg, turn Auto Revert mode on if and only if arg is positive.
1489This is a minor mode that affects only the current buffer.
c595cc5f 1490Use `global-auto-revert-mode' to automatically revert all buffers.
390069bc
AS
1491Use `auto-revert-tail-mode' if you know that the file will only grow
1492without being changed in the part that is already in the buffer.
c595cc5f
MR
1493
1494\(fn &optional ARG)" t nil)
93548d2e
DL
1495
1496(autoload (quote turn-on-auto-revert-mode) "autorevert" "\
1497Turn on Auto-Revert Mode.
1498
1499This function is designed to be added to hooks, for example:
c595cc5f
MR
1500 (add-hook 'c-mode-hook 'turn-on-auto-revert-mode)
1501
1502\(fn)" nil nil)
93548d2e 1503
390069bc
AS
1504(autoload (quote auto-revert-tail-mode) "autorevert" "\
1505Toggle reverting tail of buffer when file on disk grows.
1506With arg, turn Tail mode on iff arg is positive.
1507
1508When Tail mode is enabled, the tail of the file is constantly
1509followed, as with the shell command `tail -f'. This means that
1510whenever the file grows on disk (presumably because some
1511background process is appending to it from time to time), this is
1512reflected in the current buffer.
1513
1514You can edit the buffer and turn this mode off and on again as
1515you please. But make sure the background process has stopped
1516writing before you save the file!
1517
1518Use `auto-revert-mode' for changes other than appends!
1519
1520\(fn &optional ARG)" t nil)
1521
1522(autoload (quote turn-on-auto-revert-tail-mode) "autorevert" "\
1523Turn on Auto-Revert Tail Mode.
1524
1525This function is designed to be added to hooks, for example:
1526 (add-hook 'my-logfile-mode-hook 'turn-on-auto-revert-tail-mode)
1527
1528\(fn)" nil nil)
1529
ec2bb97f
EZ
1530(defvar global-auto-revert-mode nil "\
1531Non-nil if Global-Auto-Revert mode is enabled.
1532See the command `global-auto-revert-mode' for a description of this minor-mode.
1533Setting this variable directly does not take effect;
1534use either \\[customize] or the function `global-auto-revert-mode'.")
1535
9c46b00a 1536(custom-autoload (quote global-auto-revert-mode) "autorevert")
ec2bb97f 1537
ac09dc1e
KL
1538(put (quote global-auto-revert-mode) (quote custom-set) (quote custom-set-minor-mode))
1539
93548d2e 1540(autoload (quote global-auto-revert-mode) "autorevert" "\
390069bc 1541Revert any buffer when file on disk changes.
93548d2e
DL
1542
1543With arg, turn Auto Revert mode on globally if and only if arg is positive.
1544This is a minor mode that affects all buffers.
c595cc5f
MR
1545Use `auto-revert-mode' to revert a particular buffer.
1546
1547\(fn &optional ARG)" t nil)
93548d2e
DL
1548
1549;;;***
1550\f
fd0e837b 1551;;;### (autoloads (mouse-avoidance-mode mouse-avoidance-mode) "avoid"
a5805c9d 1552;;;;;; "avoid.el" (17279 27122))
93548d2e
DL
1553;;; Generated autoloads from avoid.el
1554
fd0e837b 1555(defvar mouse-avoidance-mode nil "\
54baed30 1556Activate mouse avoidance mode.
fd0e837b
GM
1557See function `mouse-avoidance-mode' for possible values.
1558Setting this variable directly does not take effect;
1559use either \\[customize] or the function `mouse-avoidance-mode'.")
1560
9c46b00a 1561(custom-autoload (quote mouse-avoidance-mode) "avoid")
fd0e837b 1562
93548d2e
DL
1563(autoload (quote mouse-avoidance-mode) "avoid" "\
1564Set cursor avoidance mode to MODE.
1565MODE should be one of the symbols `banish', `exile', `jump', `animate',
1566`cat-and-mouse', `proteus', or `none'.
1567
54baed30 1568If MODE is nil, toggle mouse avoidance between `none' and `banish'
93548d2e
DL
1569modes. Positive numbers and symbols other than the above are treated
1570as equivalent to `banish'; negative numbers and `-' are equivalent to `none'.
1571
54baed30 1572Effects of the different modes:
93548d2e
DL
1573 * banish: Move the mouse to the upper-right corner on any keypress.
1574 * exile: Move the mouse to the corner only if the cursor gets too close,
1575 and allow it to return once the cursor is out of the way.
1576 * jump: If the cursor gets too close to the mouse, displace the mouse
1577 a random distance & direction.
1578 * animate: As `jump', but shows steps along the way for illusion of motion.
1579 * cat-and-mouse: Same as `animate'.
1580 * proteus: As `animate', but changes the shape of the mouse pointer too.
1581
1582Whenever the mouse is moved, the frame is also raised.
1583
1584\(see `mouse-avoidance-threshold' for definition of \"too close\",
1585and `mouse-avoidance-nudge-dist' and `mouse-avoidance-nudge-var' for
c595cc5f
MR
1586definition of \"random distance\".)
1587
1588\(fn &optional MODE)" t nil)
93548d2e
DL
1589
1590;;;***
1591\f
93548d2e 1592;;;### (autoloads (backquote) "backquote" "emacs-lisp/backquote.el"
a5805c9d 1593;;;;;; (17279 27122))
93548d2e
DL
1594;;; Generated autoloads from emacs-lisp/backquote.el
1595
1596(autoload (quote backquote) "backquote" "\
1597Argument STRUCTURE describes a template to build.
1598
1599The whole structure acts as if it were quoted except for certain
1600places where expressions are evaluated and inserted or spliced in.
1601
1602For example:
1603
1604b => (ba bb bc) ; assume b has this value
1605`(a b c) => (a b c) ; backquote acts like quote
1606`(a ,b c) => (a (ba bb bc) c) ; insert the value of b
1607`(a ,@b c) => (a ba bb bc c) ; splice in the value of b
1608
c595cc5f
MR
1609Vectors work just like lists. Nested backquotes are permitted.
1610
1611\(fn ARG)" nil (quote macro))
93548d2e
DL
1612
1613(defalias (quote \`) (symbol-function (quote backquote)))
1614
1615;;;***
1616\f
be65bdd3 1617;;;### (autoloads (display-battery-mode battery) "battery" "battery.el"
a5805c9d 1618;;;;;; (17374 21274))
93548d2e 1619;;; Generated autoloads from battery.el
be65bdd3 1620 (put 'battery-mode-line-string 'risky-local-variable t)
93548d2e
DL
1621
1622(autoload (quote battery) "battery" "\
1623Display battery status information in the echo area.
5ec14d3c 1624The text being displayed in the echo area is controlled by the variables
c595cc5f
MR
1625`battery-echo-area-format' and `battery-status-function'.
1626
1627\(fn)" t nil)
93548d2e 1628
be65bdd3
AS
1629(defvar display-battery-mode nil "\
1630Non-nil if Display-Battery mode is enabled.
1631See the command `display-battery-mode' for a description of this minor-mode.
1632Setting this variable directly does not take effect;
1633use either \\[customize] or the function `display-battery-mode'.")
1634
1635(custom-autoload (quote display-battery-mode) "battery")
1636
ac09dc1e
KL
1637(put (quote display-battery-mode) (quote custom-set) (quote custom-set-minor-mode))
1638
be65bdd3 1639(autoload (quote display-battery-mode) "battery" "\
93548d2e 1640Display battery status information in the mode line.
0ad84a21 1641The text being displayed in the mode line is controlled by the variables
93548d2e
DL
1642`battery-mode-line-format' and `battery-status-function'.
1643The mode line will be updated automatically every `battery-update-interval'
c595cc5f
MR
1644seconds.
1645
be65bdd3 1646\(fn &optional ARG)" t nil)
93548d2e
DL
1647
1648;;;***
1649\f
821b278f 1650;;;### (autoloads (benchmark benchmark-run-compiled benchmark-run)
a5805c9d 1651;;;;;; "benchmark" "emacs-lisp/benchmark.el" (17279 27122))
821b278f
MR
1652;;; Generated autoloads from emacs-lisp/benchmark.el
1653
1654(autoload (quote benchmark-run) "benchmark" "\
1655Time execution of FORMS.
1656If REPETITIONS is supplied as a number, run forms that many times,
1657accounting for the overhead of the resulting loop. Otherwise run
1658FORMS once.
1659Return a list of the total elapsed time for execution, the number of
1660garbage collections that ran, and the time taken by garbage collection.
1661See also `benchmark-run-compiled'.
1662
1663\(fn &optional REPETITIONS &rest FORMS)" nil (quote macro))
1664
1665(autoload (quote benchmark-run-compiled) "benchmark" "\
1666Time execution of compiled version of FORMS.
1667This is like `benchmark-run', but what is timed is a funcall of the
1668byte code obtained by wrapping FORMS in a `lambda' and compiling the
1669result. The overhead of the `lambda's is accounted for.
1670
1671\(fn &optional REPETITIONS &rest FORMS)" nil (quote macro))
1672
1673(autoload (quote benchmark) "benchmark" "\
1674Print the time taken for REPETITIONS executions of FORM.
1675Interactively, REPETITIONS is taken from the prefix arg. For
1676non-interactive use see also `benchmark-run' and
1677`benchmark-run-compiled'.
1678
1679\(fn REPETITIONS FORM)" t nil)
1680
1681;;;***
1682\f
a5805c9d
KL
1683;;;### (autoloads (bibtex-mode) "bibtex" "textmodes/bibtex.el" (17374
1684;;;;;; 21275))
93548d2e
DL
1685;;; Generated autoloads from textmodes/bibtex.el
1686
1687(autoload (quote bibtex-mode) "bibtex" "\
1688Major mode for editing BibTeX files.
1689
93548d2e
DL
1690General information on working with BibTeX mode:
1691
390069bc
AS
1692Use commands such as \\[bibtex-Book] to get a template for a specific entry.
1693Then fill in all desired fields using \\[bibtex-next-field] to jump from field
1694to field. After having filled in all desired fields in the entry, clean the
1695new entry with the command \\[bibtex-clean-entry].
93548d2e 1696
0c867fa7 1697Some features of BibTeX mode are available only by setting the variable
390069bc
AS
1698`bibtex-maintain-sorted-entries' to non-nil. However, then BibTeX mode
1699works only with buffers containing valid (syntactical correct) and sorted
1700entries. This is usually the case, if you have created a buffer completely
1701with BibTeX mode and finished every new entry with \\[bibtex-clean-entry].
93548d2e 1702
d66d64bc 1703For third party BibTeX files, call the command \\[bibtex-convert-alien]
0c867fa7 1704to fully take advantage of all features of BibTeX mode.
93548d2e
DL
1705
1706
1707Special information:
1708
390069bc 1709A command such as \\[bibtex-Book] outlines the fields for a BibTeX book entry.
93548d2e 1710
390069bc
AS
1711The names of optional fields start with the string OPT, and are thus ignored
1712by BibTeX. The names of alternative fields from which only one is required
1713start with the string ALT. The OPT or ALT string may be removed from
1714the name of a field with \\[bibtex-remove-OPT-or-ALT].
93548d2e
DL
1715\\[bibtex-make-field] inserts a new field after the current one.
1716\\[bibtex-kill-field] kills the current field entirely.
0c867fa7 1717\\[bibtex-yank] yanks the last recently killed field after the current field.
93548d2e 1718\\[bibtex-remove-delimiters] removes the double-quotes or braces around the text of the current field.
390069bc
AS
1719\\[bibtex-empty-field] replaces the text of the current field with the default \"\" or {}.
1720\\[bibtex-find-text] moves point to the end of the current field.
1721\\[bibtex-complete] completes word fragment before point according to context.
93548d2e
DL
1722
1723The command \\[bibtex-clean-entry] cleans the current entry, i.e. it removes OPT/ALT
390069bc
AS
1724from the names of all non-empty optional or alternative fields, checks that
1725no required fields are empty, and does some formatting dependent on the value
1726of `bibtex-entry-format'. Furthermore, it can automatically generate a key
1727for the BibTeX entry, see `bibtex-generate-autokey'.
93548d2e
DL
1728Note: some functions in BibTeX mode depend on entries being in a special
1729format (all fields beginning on separate lines), so it is usually a bad
27a99a7c 1730idea to remove `realign' from `bibtex-entry-format'.
93548d2e 1731
390069bc
AS
1732BibTeX mode supports Imenu and hideshow minor mode (`hs-minor-mode').
1733
1734----------------------------------------------------------
1735Entry to BibTeX mode calls the value of `bibtex-mode-hook'
1736if that value is non-nil.
93548d2e 1737
c595cc5f
MR
1738\\{bibtex-mode-map}
1739
1740\(fn)" t nil)
93548d2e
DL
1741
1742;;;***
1743\f
390069bc
AS
1744;;;### (autoloads (binhex-decode-region binhex-decode-region-external
1745;;;;;; binhex-decode-region-internal) "binhex" "gnus/binhex.el"
a5805c9d 1746;;;;;; (17279 27122))
b442e70a
MB
1747;;; Generated autoloads from gnus/binhex.el
1748
1749(defconst binhex-begin-line "^:...............................................................$")
1750
390069bc
AS
1751(autoload (quote binhex-decode-region-internal) "binhex" "\
1752Binhex decode region between START and END without using an external program.
1753If HEADER-ONLY is non-nil only decode header and return filename.
1754
1755\(fn START END &optional HEADER-ONLY)" t nil)
1756
1757(autoload (quote binhex-decode-region-external) "binhex" "\
1758Binhex decode region between START and END using external decoder.
1759
1760\(fn START END)" t nil)
1761
1762(autoload (quote binhex-decode-region) "binhex" "\
1763Binhex decode region between START and END.
1764
1765\(fn START END)" t nil)
1766
b442e70a
MB
1767;;;***
1768\f
a5805c9d
KL
1769;;;### (autoloads (blackbox) "blackbox" "play/blackbox.el" (17279
1770;;;;;; 27196))
93548d2e
DL
1771;;; Generated autoloads from play/blackbox.el
1772
1773(autoload (quote blackbox) "blackbox" "\
8d8d8d4e
EZ
1774Play blackbox.
1775Optional prefix argument is the number of balls; the default is 4.
93548d2e
DL
1776
1777What is blackbox?
1778
1779Blackbox is a game of hide and seek played on an 8 by 8 grid (the
1780Blackbox). Your opponent (Emacs, in this case) has hidden several
1781balls (usually 4) within this box. By shooting rays into the box and
1782observing where they emerge it is possible to deduce the positions of
1783the hidden balls. The fewer rays you use to find the balls, the lower
1784your score.
1785
1786Overview of play:
1787
1788\\<blackbox-mode-map>To play blackbox, type \\[blackbox]. An optional prefix argument
1789specifies the number of balls to be hidden in the box; the default is
1790four.
1791
1792The cursor can be moved around the box with the standard cursor
1793movement keys.
1794
1795To shoot a ray, move the cursor to the edge of the box and press SPC.
1796The result will be determined and the playfield updated.
1797
1798You may place or remove balls in the box by moving the cursor into the
1799box and pressing \\[bb-romp].
1800
1801When you think the configuration of balls you have placed is correct,
1802press \\[bb-done]. You will be informed whether you are correct or
1803not, and be given your score. Your score is the number of letters and
1804numbers around the outside of the box plus five for each incorrectly
1805placed ball. If you placed any balls incorrectly, they will be
1806indicated with `x', and their actual positions indicated with `o'.
1807
1808Details:
1809
1810There are three possible outcomes for each ray you send into the box:
1811
1812 Detour: the ray is deflected and emerges somewhere other than
1813 where you sent it in. On the playfield, detours are
1814 denoted by matching pairs of numbers -- one where the
1815 ray went in, and the other where it came out.
1816
1817 Reflection: the ray is reflected and emerges in the same place
1818 it was sent in. On the playfield, reflections are
1819 denoted by the letter `R'.
1820
1821 Hit: the ray strikes a ball directly and is absorbed. It does
1822 not emerge from the box. On the playfield, hits are
1823 denoted by the letter `H'.
1824
1825The rules for how balls deflect rays are simple and are best shown by
1826example.
1827
1828As a ray approaches a ball it is deflected ninety degrees. Rays can
1829be deflected multiple times. In the diagrams below, the dashes
1830represent empty box locations and the letter `O' represents a ball.
1831The entrance and exit points of each ray are marked with numbers as
1832described under \"Detour\" above. Note that the entrance and exit
1833points are always interchangeable. `*' denotes the path taken by the
1834ray.
1835
1836Note carefully the relative positions of the ball and the ninety
1837degree deflection it causes.
1838
821b278f
MR
1839 1
1840 - * - - - - - - - - - - - - - - - - - - - - - -
1841 - * - - - - - - - - - - - - - - - - - - - - - -
18421 * * - - - - - - - - - - - - - - - O - - - - O -
93548d2e
DL
1843 - - O - - - - - - - O - - - - - - - * * * * - -
1844 - - - - - - - - - - - * * * * * 2 3 * * * - - * - -
821b278f
MR
1845 - - - - - - - - - - - * - - - - - - - O - * - -
1846 - - - - - - - - - - - * - - - - - - - - * * - -
1847 - - - - - - - - - - - * - - - - - - - - * - O -
93548d2e
DL
1848 2 3
1849
1850As mentioned above, a reflection occurs when a ray emerges from the same point
1851it was sent in. This can happen in several ways:
1852
821b278f 1853
93548d2e
DL
1854 - - - - - - - - - - - - - - - - - - - - - - - -
1855 - - - - O - - - - - O - O - - - - - - - - - - -
1856R * * * * - - - - - - - * - - - - O - - - - - - -
1857 - - - - O - - - - - - * - - - - R - - - - - - - -
1858 - - - - - - - - - - - * - - - - - - - - - - - -
1859 - - - - - - - - - - - * - - - - - - - - - - - -
1860 - - - - - - - - R * * * * - - - - - - - - - - - -
1861 - - - - - - - - - - - - O - - - - - - - - - - -
1862
1863In the first example, the ray is deflected downwards by the upper
1864ball, then left by the lower ball, and finally retraces its path to
1865its point of origin. The second example is similar. The third
1866example is a bit anomalous but can be rationalized by realizing the
1867ray never gets a chance to get into the box. Alternatively, the ray
1868can be thought of as being deflected downwards and immediately
1869emerging from the box.
1870
1871A hit occurs when a ray runs straight into a ball:
1872
1873 - - - - - - - - - - - - - - - - - - - - - - - -
1874 - - - - - - - - - - - - - - - - - - - - O - - -
1875 - - - - - - - - - - - - O - - - H * * * * - - - -
1876 - - - - - - - - H * * * * O - - - - - - * - - - -
1877 - - - - - - - - - - - - O - - - - - - O - - - -
1878H * * * O - - - - - - - - - - - - - - - - - - - -
1879 - - - - - - - - - - - - - - - - - - - - - - - -
1880 - - - - - - - - - - - - - - - - - - - - - - - -
1881
1882Be sure to compare the second example of a hit with the first example of
c595cc5f
MR
1883a reflection.
1884
1885\(fn NUM)" t nil)
93548d2e
DL
1886
1887;;;***
1888\f
932a6f0f
AS
1889;;;### (autoloads (bookmark-bmenu-list bookmark-load bookmark-save
1890;;;;;; bookmark-write bookmark-delete bookmark-insert bookmark-rename
1891;;;;;; bookmark-insert-location bookmark-relocate bookmark-jump
a5805c9d 1892;;;;;; bookmark-set) "bookmark" "bookmark.el" (17279 27201))
93548d2e
DL
1893;;; Generated autoloads from bookmark.el
1894 (define-key ctl-x-map "rb" 'bookmark-jump)
1895 (define-key ctl-x-map "rm" 'bookmark-set)
1896 (define-key ctl-x-map "rl" 'bookmark-bmenu-list)
1897
1898(defvar bookmark-map nil "\
1899Keymap containing bindings to bookmark functions.
1900It is not bound to any key by default: to bind it
1901so that you have a bookmark prefix, just use `global-set-key' and bind a
1902key of your choice to `bookmark-map'. All interactive bookmark
1903functions have a binding in this keymap.")
e3cc553b
AS
1904 (define-prefix-command 'bookmark-map)
1905 (define-key bookmark-map "x" 'bookmark-set)
1906 (define-key bookmark-map "m" 'bookmark-set) ; "m" for "mark"
1907 (define-key bookmark-map "j" 'bookmark-jump)
1908 (define-key bookmark-map "g" 'bookmark-jump) ; "g" for "go"
1909 (define-key bookmark-map "i" 'bookmark-insert)
1910 (define-key bookmark-map "e" 'edit-bookmarks)
1911 (define-key bookmark-map "f" 'bookmark-insert-location) ; "f" for "find"
1912 (define-key bookmark-map "r" 'bookmark-rename)
1913 (define-key bookmark-map "d" 'bookmark-delete)
1914 (define-key bookmark-map "l" 'bookmark-load)
1915 (define-key bookmark-map "w" 'bookmark-write)
1916 (define-key bookmark-map "s" 'bookmark-save)
93548d2e 1917
93548d2e
DL
1918(autoload (quote bookmark-set) "bookmark" "\
1919Set a bookmark named NAME inside a file.
1920If name is nil, then the user will be prompted.
1921With prefix arg, will not overwrite a bookmark that has the same name
1922as NAME if such a bookmark already exists, but instead will \"push\"
1923the new bookmark onto the bookmark alist. Thus the most recently set
1924bookmark with name NAME would be the one in effect at any given time,
1925but the others are still there, should you decide to delete the most
1926recent one.
1927
1928To yank words from the text of the buffer and use them as part of the
1929bookmark name, type C-w while setting a bookmark. Successive C-w's
1930yank successive words.
1931
1932Typing C-u inserts the name of the last bookmark used in the buffer
1933\(as an aid in using a single bookmark name to track your progress
1934through a large file). If no bookmark was used, then C-u inserts the
1935name of the file being visited.
1936
1937Use \\[bookmark-delete] to remove bookmarks (you give it a name,
1938and it removes only the first instance of a bookmark with that name from
c595cc5f
MR
1939the list of bookmarks.)
1940
1941\(fn &optional NAME PARG)" t nil)
93548d2e
DL
1942
1943(autoload (quote bookmark-jump) "bookmark" "\
2550055a 1944Jump to bookmark BOOKMARK (a point in some file).
93548d2e
DL
1945You may have a problem using this function if the value of variable
1946`bookmark-alist' is nil. If that happens, you need to load in some
1947bookmarks. See help on function `bookmark-load' for more about
1948this.
1949
1950If the file pointed to by BOOKMARK no longer exists, you will be asked
0ef3cc90 1951if you wish to give the bookmark a new location, and `bookmark-jump'
93548d2e 1952will then jump to the new location, as well as recording it in place
c595cc5f
MR
1953of the old one in the permanent bookmark record.
1954
1955\(fn BOOKMARK)" t nil)
93548d2e
DL
1956
1957(autoload (quote bookmark-relocate) "bookmark" "\
1958Relocate BOOKMARK to another file (reading file name with minibuffer).
1959This makes an already existing bookmark point to that file, instead of
1960the one it used to point at. Useful when a file has been renamed
c595cc5f
MR
1961after a bookmark was set in it.
1962
1963\(fn BOOKMARK)" t nil)
93548d2e
DL
1964
1965(autoload (quote bookmark-insert-location) "bookmark" "\
1966Insert the name of the file associated with BOOKMARK.
1967Optional second arg NO-HISTORY means don't record this in the
c595cc5f
MR
1968minibuffer history list `bookmark-history'.
1969
1970\(fn BOOKMARK &optional NO-HISTORY)" t nil)
93548d2e
DL
1971
1972(defalias (quote bookmark-locate) (quote bookmark-insert-location))
1973
1974(autoload (quote bookmark-rename) "bookmark" "\
1975Change the name of OLD bookmark to NEW name.
1976If called from keyboard, prompt for OLD and NEW. If called from
1977menubar, select OLD from a menu and prompt for NEW.
1978
1979If called from Lisp, prompt for NEW if only OLD was passed as an
1980argument. If called with two strings, then no prompting is done. You
1981must pass at least OLD when calling from Lisp.
1982
1983While you are entering the new name, consecutive C-w's insert
1984consecutive words from the text of the buffer into the new bookmark
c595cc5f
MR
1985name.
1986
1987\(fn OLD &optional NEW)" t nil)
93548d2e
DL
1988
1989(autoload (quote bookmark-insert) "bookmark" "\
2550055a 1990Insert the text of the file pointed to by bookmark BOOKMARK.
93548d2e
DL
1991You may have a problem using this function if the value of variable
1992`bookmark-alist' is nil. If that happens, you need to load in some
1993bookmarks. See help on function `bookmark-load' for more about
c595cc5f
MR
1994this.
1995
1996\(fn BOOKMARK)" t nil)
93548d2e
DL
1997
1998(autoload (quote bookmark-delete) "bookmark" "\
2550055a 1999Delete BOOKMARK from the bookmark list.
93548d2e
DL
2000Removes only the first instance of a bookmark with that name. If
2001there are one or more other bookmarks with the same name, they will
2002not be deleted. Defaults to the \"current\" bookmark (that is, the
2003one most recently used in this file, if any).
2004Optional second arg BATCH means don't update the bookmark list buffer,
c595cc5f
MR
2005probably because we were called from there.
2006
2007\(fn BOOKMARK &optional BATCH)" t nil)
93548d2e
DL
2008
2009(autoload (quote bookmark-write) "bookmark" "\
2010Write bookmarks to a file (reading the file name with the minibuffer).
c595cc5f
MR
2011Don't use this in Lisp programs; use `bookmark-save' instead.
2012
2013\(fn)" t nil)
93548d2e
DL
2014
2015(autoload (quote bookmark-save) "bookmark" "\
2016Save currently defined bookmarks.
2017Saves by default in the file defined by the variable
2018`bookmark-default-file'. With a prefix arg, save it in file FILE
2019\(second argument).
2020
0ef3cc90
LT
2021If you are calling this from Lisp, the two arguments are PARG and
2022FILE, and if you just want it to write to the default file, then
93548d2e
DL
2023pass no arguments. Or pass in nil and FILE, and it will save in FILE
2024instead. If you pass in one argument, and it is non-nil, then the
2025user will be interactively queried for a file to save in.
2026
2027When you want to load in the bookmarks from a file, use
2028`bookmark-load', \\[bookmark-load]. That function will prompt you
2029for a file, defaulting to the file defined by variable
c595cc5f
MR
2030`bookmark-default-file'.
2031
2032\(fn &optional PARG FILE)" t nil)
93548d2e
DL
2033
2034(autoload (quote bookmark-load) "bookmark" "\
2035Load bookmarks from FILE (which must be in bookmark format).
2036Appends loaded bookmarks to the front of the list of bookmarks. If
2037optional second argument OVERWRITE is non-nil, existing bookmarks are
2038destroyed. Optional third arg NO-MSG means don't display any messages
2039while loading.
2040
2041If you load a file that doesn't contain a proper bookmark alist, you
2042will corrupt Emacs's bookmark list. Generally, you should only load
2043in files that were created with the bookmark functions in the first
2044place. Your own personal bookmark file, `~/.emacs.bmk', is
2045maintained automatically by Emacs; you shouldn't need to load it
2046explicitly.
2047
2048If you load a file containing bookmarks with the same names as
2049bookmarks already present in your Emacs, the new bookmarks will get
2050unique numeric suffixes \"<2>\", \"<3>\", ... following the same
c595cc5f
MR
2051method buffers use to resolve name collisions.
2052
2053\(fn FILE &optional OVERWRITE NO-MSG)" t nil)
93548d2e
DL
2054
2055(autoload (quote bookmark-bmenu-list) "bookmark" "\
2056Display a list of existing bookmarks.
2057The list is displayed in a buffer named `*Bookmark List*'.
2058The leftmost column displays a D if the bookmark is flagged for
c595cc5f
MR
2059deletion, or > if it is flagged for displaying.
2060
2061\(fn)" t nil)
93548d2e
DL
2062
2063(defalias (quote list-bookmarks) (quote bookmark-bmenu-list))
2064
2065(defalias (quote edit-bookmarks) (quote bookmark-bmenu-list))
2066
d66d64bc 2067(defvar menu-bar-bookmark-map (let ((map (make-sparse-keymap "Bookmark functions"))) (define-key map [load] (quote ("Load a Bookmark File..." . bookmark-load))) (define-key map [write] (quote ("Save Bookmarks As..." . bookmark-write))) (define-key map [save] (quote ("Save Bookmarks" . bookmark-save))) (define-key map [edit] (quote ("Edit Bookmark List" . bookmark-bmenu-list))) (define-key map [delete] (quote ("Delete Bookmark..." . bookmark-delete))) (define-key map [rename] (quote ("Rename Bookmark..." . bookmark-rename))) (define-key map [locate] (quote ("Insert Location..." . bookmark-locate))) (define-key map [insert] (quote ("Insert Contents..." . bookmark-insert))) (define-key map [set] (quote ("Set Bookmark..." . bookmark-set))) (define-key map [jump] (quote ("Jump to Bookmark..." . bookmark-jump))) map))
93548d2e 2068
932a6f0f 2069(defalias (quote menu-bar-bookmark-map) menu-bar-bookmark-map)
93548d2e
DL
2070
2071;;;***
2072\f
09938b67
GM
2073;;;### (autoloads (browse-url-kde browse-url-generic browse-url-mail
2074;;;;;; browse-url-mmm browse-url-lynx-emacs browse-url-lynx-xterm
2075;;;;;; browse-url-w3-gnudoit browse-url-w3 browse-url-iximosaic
2076;;;;;; browse-url-cci browse-url-grail browse-url-mosaic browse-url-gnome-moz
d66d64bc 2077;;;;;; browse-url-galeon browse-url-firefox browse-url-mozilla browse-url-netscape
8d8d8d4e 2078;;;;;; browse-url-default-browser browse-url-at-mouse browse-url-at-point
09938b67 2079;;;;;; browse-url browse-url-of-region browse-url-of-dired-file
be65bdd3 2080;;;;;; browse-url-of-buffer browse-url-of-file browse-url-url-at-point
d66d64bc 2081;;;;;; browse-url-galeon-program browse-url-firefox-program browse-url-browser-function)
a5805c9d 2082;;;;;; "browse-url" "net/browse-url.el" (17283 59911))
a25bbe00 2083;;; Generated autoloads from net/browse-url.el
93548d2e 2084
0c72a1a2 2085(defvar browse-url-browser-function (cond ((memq system-type (quote (windows-nt ms-dos cygwin))) (quote browse-url-default-windows-browser)) ((memq system-type (quote (darwin))) (quote browse-url-default-macosx-browser)) (t (quote browse-url-default-browser))) "\
93548d2e
DL
2086*Function to display the current buffer in a WWW browser.
2087This is used by the `browse-url-at-point', `browse-url-at-mouse', and
2088`browse-url-of-file' commands.
2089
2090If the value is not a function it should be a list of pairs
2091\(REGEXP . FUNCTION). In this case the function called will be the one
2092associated with the first REGEXP which matches the current URL. The
2093function is passed the URL and any other args of `browse-url'. The last
2094regexp should probably be \".\" to specify a default browser.")
2095
9c46b00a
MR
2096(custom-autoload (quote browse-url-browser-function) "browse-url")
2097
d66d64bc
KL
2098(defvar browse-url-firefox-program "firefox" "\
2099*The name by which to invoke Firefox.")
2100
2101(custom-autoload (quote browse-url-firefox-program) "browse-url")
2102
2103(defvar browse-url-galeon-program "galeon" "\
2104*The name by which to invoke Galeon.")
2105
2106(custom-autoload (quote browse-url-galeon-program) "browse-url")
2107
be65bdd3
AS
2108(autoload (quote browse-url-url-at-point) "browse-url" "\
2109Not documented
2110
2111\(fn)" nil nil)
2112
93548d2e
DL
2113(autoload (quote browse-url-of-file) "browse-url" "\
2114Ask a WWW browser to display FILE.
2115Display the current buffer's file if FILE is nil or if called
2116interactively. Turn the filename into a URL with function
2117`browse-url-file-url'. Pass the URL to a browser using the
c595cc5f
MR
2118`browse-url' function then run `browse-url-of-file-hook'.
2119
2120\(fn &optional FILE)" t nil)
93548d2e
DL
2121
2122(autoload (quote browse-url-of-buffer) "browse-url" "\
2123Ask a WWW browser to display BUFFER.
2124Display the current buffer if BUFFER is nil. Display only the
2125currently visible part of BUFFER (from a temporary file) if buffer is
c595cc5f
MR
2126narrowed.
2127
2128\(fn &optional BUFFER)" t nil)
93548d2e
DL
2129
2130(autoload (quote browse-url-of-dired-file) "browse-url" "\
c595cc5f
MR
2131In Dired, ask a WWW browser to display the file named on this line.
2132
2133\(fn)" t nil)
93548d2e
DL
2134
2135(autoload (quote browse-url-of-region) "browse-url" "\
c595cc5f
MR
2136Ask a WWW browser to display the current region.
2137
2138\(fn MIN MAX)" t nil)
93548d2e
DL
2139
2140(autoload (quote browse-url) "browse-url" "\
2141Ask a WWW browser to load URL.
2142Prompts for a URL, defaulting to the URL at or before point. Variable
c595cc5f
MR
2143`browse-url-browser-function' says which browser to use.
2144
2145\(fn URL &rest ARGS)" t nil)
93548d2e
DL
2146
2147(autoload (quote browse-url-at-point) "browse-url" "\
2148Ask a WWW browser to load the URL at or before point.
2149Doesn't let you edit the URL like `browse-url'. Variable
c595cc5f
MR
2150`browse-url-browser-function' says which browser to use.
2151
2152\(fn &optional ARG)" t nil)
93548d2e
DL
2153
2154(autoload (quote browse-url-at-mouse) "browse-url" "\
2155Ask a WWW browser to load a URL clicked with the mouse.
2156The URL is the one around or before the position of the mouse click
2157but point is not changed. Doesn't let you edit the URL like
2158`browse-url'. Variable `browse-url-browser-function' says which browser
c595cc5f
MR
2159to use.
2160
2161\(fn EVENT)" t nil)
93548d2e 2162
8d8d8d4e
EZ
2163(autoload (quote browse-url-default-browser) "browse-url" "\
2164Find a suitable browser and ask it to load URL.
2165Default to the URL around or before point.
2166
2167When called interactively, if variable `browse-url-new-window-flag' is
2168non-nil, load the document in a new window, if possible, otherwise use
2169a random existing one. A non-nil interactive prefix argument reverses
2170the effect of `browse-url-new-window-flag'.
2171
2172When called non-interactively, optional second argument NEW-WINDOW is
2173used instead of `browse-url-new-window-flag'.
2174
d66d64bc
KL
2175The order attempted is gnome-moz-remote, Mozilla, Firefox,
2176Galeon, Konqueror, Netscape, Mosaic, IXI Mosaic, Lynx in an
2177xterm, MMM, and then W3.
c595cc5f
MR
2178
2179\(fn URL &rest ARGS)" nil nil)
8d8d8d4e 2180
93548d2e
DL
2181(autoload (quote browse-url-netscape) "browse-url" "\
2182Ask the Netscape WWW browser to load URL.
93548d2e
DL
2183Default to the URL around or before point. The strings in variable
2184`browse-url-netscape-arguments' are also passed to Netscape.
2185
b5c5b319 2186When called interactively, if variable `browse-url-new-window-flag' is
93548d2e
DL
2187non-nil, load the document in a new Netscape window, otherwise use a
2188random existing one. A non-nil interactive prefix argument reverses
b5c5b319 2189the effect of `browse-url-new-window-flag'.
93548d2e 2190
be65bdd3
AS
2191If `browse-url-netscape-new-window-is-tab' is non-nil, then
2192whenever a document would otherwise be loaded in a new window, it
2193is loaded in a new tab in an existing window instead.
2194
93548d2e 2195When called non-interactively, optional second argument NEW-WINDOW is
c595cc5f
MR
2196used instead of `browse-url-new-window-flag'.
2197
2198\(fn URL &optional NEW-WINDOW)" t nil)
93548d2e 2199
8d8d8d4e
EZ
2200(autoload (quote browse-url-mozilla) "browse-url" "\
2201Ask the Mozilla WWW browser to load URL.
2202Default to the URL around or before point. The strings in variable
2203`browse-url-mozilla-arguments' are also passed to Mozilla.
2204
2205When called interactively, if variable `browse-url-new-window-flag' is
2206non-nil, load the document in a new Mozilla window, otherwise use a
2207random existing one. A non-nil interactive prefix argument reverses
2208the effect of `browse-url-new-window-flag'.
2209
c595cc5f
MR
2210If `browse-url-mozilla-new-window-is-tab' is non-nil, then whenever a
2211document would otherwise be loaded in a new window, it is loaded in a
2212new tab in an existing window instead.
2213
8d8d8d4e 2214When called non-interactively, optional second argument NEW-WINDOW is
c595cc5f
MR
2215used instead of `browse-url-new-window-flag'.
2216
2217\(fn URL &optional NEW-WINDOW)" t nil)
8d8d8d4e 2218
d66d64bc
KL
2219(autoload (quote browse-url-firefox) "browse-url" "\
2220Ask the Firefox WWW browser to load URL.
2221Default to the URL around or before point. The strings in
2222variable `browse-url-firefox-arguments' are also passed to
2223Firefox.
2224
2225When called interactively, if variable
2226`browse-url-new-window-flag' is non-nil, load the document in a
2227new Firefox window, otherwise use a random existing one. A
2228non-nil interactive prefix argument reverses the effect of
2229`browse-url-new-window-flag'.
2230
2231If `browse-url-firefox-new-window-is-tab' is non-nil, then
2232whenever a document would otherwise be loaded in a new window, it
2233is loaded in a new tab in an existing window instead.
2234
2235When called non-interactively, optional second argument
2236NEW-WINDOW is used instead of `browse-url-new-window-flag'.
2237
2238On MS-Windows systems the optional `new-window' parameter is
2239ignored. Firefox for Windows does not support the \"-remote\"
2240command line parameter. Therefore, the
2241`browse-url-new-window-flag' and `browse-url-firefox-new-window-is-tab'
2242are ignored as well. Firefox on Windows will always open the requested
2243URL in a new window.
2244
2245\(fn URL &optional NEW-WINDOW)" t nil)
2246
8d8d8d4e
EZ
2247(autoload (quote browse-url-galeon) "browse-url" "\
2248Ask the Galeon WWW browser to load URL.
2249Default to the URL around or before point. The strings in variable
2250`browse-url-galeon-arguments' are also passed to Galeon.
2251
2252When called interactively, if variable `browse-url-new-window-flag' is
2253non-nil, load the document in a new Galeon window, otherwise use a
2254random existing one. A non-nil interactive prefix argument reverses
2255the effect of `browse-url-new-window-flag'.
2256
a5e28954
MB
2257If `browse-url-galeon-new-window-is-tab' is non-nil, then whenever a
2258document would otherwise be loaded in a new window, it is loaded in a
2259new tab in an existing window instead.
2260
8d8d8d4e 2261When called non-interactively, optional second argument NEW-WINDOW is
c595cc5f
MR
2262used instead of `browse-url-new-window-flag'.
2263
2264\(fn URL &optional NEW-WINDOW)" t nil)
8d8d8d4e 2265
0ad84a21
MB
2266(autoload (quote browse-url-gnome-moz) "browse-url" "\
2267Ask Mozilla/Netscape to load URL via the GNOME program `gnome-moz-remote'.
2268Default to the URL around or before point. The strings in variable
2269`browse-url-gnome-moz-arguments' are also passed.
2270
b5c5b319 2271When called interactively, if variable `browse-url-new-window-flag' is
0ad84a21
MB
2272non-nil, load the document in a new browser window, otherwise use an
2273existing one. A non-nil interactive prefix argument reverses the
b5c5b319 2274effect of `browse-url-new-window-flag'.
0ad84a21
MB
2275
2276When called non-interactively, optional second argument NEW-WINDOW is
c595cc5f
MR
2277used instead of `browse-url-new-window-flag'.
2278
2279\(fn URL &optional NEW-WINDOW)" t nil)
0ad84a21 2280
93548d2e
DL
2281(autoload (quote browse-url-mosaic) "browse-url" "\
2282Ask the XMosaic WWW browser to load URL.
2283
2284Default to the URL around or before point. The strings in variable
2285`browse-url-mosaic-arguments' are also passed to Mosaic and the
2286program is invoked according to the variable
2287`browse-url-mosaic-program'.
2288
b5c5b319 2289When called interactively, if variable `browse-url-new-window-flag' is
93548d2e
DL
2290non-nil, load the document in a new Mosaic window, otherwise use a
2291random existing one. A non-nil interactive prefix argument reverses
b5c5b319 2292the effect of `browse-url-new-window-flag'.
93548d2e
DL
2293
2294When called non-interactively, optional second argument NEW-WINDOW is
c595cc5f
MR
2295used instead of `browse-url-new-window-flag'.
2296
2297\(fn URL &optional NEW-WINDOW)" t nil)
93548d2e 2298
93548d2e
DL
2299(autoload (quote browse-url-grail) "browse-url" "\
2300Ask the Grail WWW browser to load URL.
2301Default to the URL around or before point. Runs the program in the
c595cc5f
MR
2302variable `browse-url-grail'.
2303
2304\(fn URL &optional NEW-WINDOW)" t nil)
93548d2e
DL
2305
2306(autoload (quote browse-url-cci) "browse-url" "\
2307Ask the XMosaic WWW browser to load URL.
2308Default to the URL around or before point.
2309
2310This function only works for XMosaic version 2.5 or later. You must
2311select `CCI' from XMosaic's File menu, set the CCI Port Address to the
2312value of variable `browse-url-CCI-port', and enable `Accept requests'.
2313
b5c5b319 2314When called interactively, if variable `browse-url-new-window-flag' is
93548d2e
DL
2315non-nil, load the document in a new browser window, otherwise use a
2316random existing one. A non-nil interactive prefix argument reverses
b5c5b319 2317the effect of `browse-url-new-window-flag'.
93548d2e
DL
2318
2319When called non-interactively, optional second argument NEW-WINDOW is
c595cc5f
MR
2320used instead of `browse-url-new-window-flag'.
2321
2322\(fn URL &optional NEW-WINDOW)" t nil)
93548d2e
DL
2323
2324(autoload (quote browse-url-iximosaic) "browse-url" "\
2325Ask the IXIMosaic WWW browser to load URL.
c595cc5f
MR
2326Default to the URL around or before point.
2327
2328\(fn URL &optional NEW-WINDOW)" t nil)
93548d2e
DL
2329
2330(autoload (quote browse-url-w3) "browse-url" "\
2331Ask the w3 WWW browser to load URL.
2332Default to the URL around or before point.
2333
b5c5b319 2334When called interactively, if variable `browse-url-new-window-flag' is
93548d2e 2335non-nil, load the document in a new window. A non-nil interactive
b5c5b319 2336prefix argument reverses the effect of `browse-url-new-window-flag'.
93548d2e
DL
2337
2338When called non-interactively, optional second argument NEW-WINDOW is
c595cc5f
MR
2339used instead of `browse-url-new-window-flag'.
2340
2341\(fn URL &optional NEW-WINDOW)" t nil)
93548d2e
DL
2342
2343(autoload (quote browse-url-w3-gnudoit) "browse-url" "\
2344Ask another Emacs running gnuserv to load the URL using the W3 browser.
2345The `browse-url-gnudoit-program' program is used with options given by
c595cc5f
MR
2346`browse-url-gnudoit-args'. Default to the URL around or before point.
2347
2348\(fn URL &optional NEW-WINDOW)" t nil)
93548d2e
DL
2349
2350(autoload (quote browse-url-lynx-xterm) "browse-url" "\
2351Ask the Lynx WWW browser to load URL.
2352Default to the URL around or before point. A new Lynx process is run
2353in an Xterm window using the Xterm program named by `browse-url-xterm-program'
c595cc5f
MR
2354with possible additional arguments `browse-url-xterm-args'.
2355
2356\(fn URL &optional NEW-WINDOW)" t nil)
93548d2e
DL
2357
2358(autoload (quote browse-url-lynx-emacs) "browse-url" "\
2359Ask the Lynx WWW browser to load URL.
2360Default to the URL around or before point. With a prefix argument, run
2361a new Lynx process in a new buffer.
2362
b5c5b319 2363When called interactively, if variable `browse-url-new-window-flag' is
93548d2e
DL
2364non-nil, load the document in a new lynx in a new term window,
2365otherwise use any existing one. A non-nil interactive prefix argument
b5c5b319 2366reverses the effect of `browse-url-new-window-flag'.
93548d2e
DL
2367
2368When called non-interactively, optional second argument NEW-WINDOW is
c595cc5f
MR
2369used instead of `browse-url-new-window-flag'.
2370
2371\(fn URL &optional NEW-BUFFER)" t nil)
93548d2e
DL
2372
2373(autoload (quote browse-url-mmm) "browse-url" "\
2374Ask the MMM WWW browser to load URL.
c595cc5f
MR
2375Default to the URL around or before point.
2376
2377\(fn URL &optional NEW-WINDOW)" t nil)
93548d2e
DL
2378
2379(autoload (quote browse-url-mail) "browse-url" "\
390069bc 2380Open a new mail message buffer within Emacs for the RFC 2368 URL.
93548d2e
DL
2381Default to using the mailto: URL around or before point as the
2382recipient's address. Supplying a non-nil interactive prefix argument
2383will cause the mail to be composed in another window rather than the
2384current one.
2385
b5c5b319 2386When called interactively, if variable `browse-url-new-window-flag' is
93548d2e
DL
2387non-nil use `compose-mail-other-window', otherwise `compose-mail'. A
2388non-nil interactive prefix argument reverses the effect of
b5c5b319 2389`browse-url-new-window-flag'.
93548d2e
DL
2390
2391When called non-interactively, optional second argument NEW-WINDOW is
c595cc5f
MR
2392used instead of `browse-url-new-window-flag'.
2393
2394\(fn URL &optional NEW-WINDOW)" t nil)
93548d2e
DL
2395
2396(autoload (quote browse-url-generic) "browse-url" "\
2397Ask the WWW browser defined by `browse-url-generic-program' to load URL.
2398Default to the URL around or before point. A fresh copy of the
2399browser is started up in a new process with possible additional arguments
2400`browse-url-generic-args'. This is appropriate for browsers which
c595cc5f
MR
2401don't offer a form of remote control.
2402
2403\(fn URL &optional NEW-WINDOW)" t nil)
93548d2e 2404
09938b67
GM
2405(autoload (quote browse-url-kde) "browse-url" "\
2406Ask the KDE WWW browser to load URL.
c595cc5f
MR
2407Default to the URL around or before point.
2408
2409\(fn URL &optional NEW-WINDOW)" t nil)
09938b67 2410
93548d2e
DL
2411;;;***
2412\f
a5805c9d
KL
2413;;;### (autoloads (snarf-bruces bruce) "bruce" "play/bruce.el" (17279
2414;;;;;; 27123))
93548d2e
DL
2415;;; Generated autoloads from play/bruce.el
2416
2417(autoload (quote bruce) "bruce" "\
c595cc5f
MR
2418Adds that special touch of class to your outgoing mail.
2419
2420\(fn)" t nil)
93548d2e
DL
2421
2422(autoload (quote snarf-bruces) "bruce" "\
c595cc5f
MR
2423Return a vector containing the lines from `bruce-phrases-file'.
2424
2425\(fn)" nil nil)
93548d2e
DL
2426
2427;;;***
2428\f
6448a6b3 2429;;;### (autoloads (bs-show bs-customize bs-cycle-previous bs-cycle-next)
a5805c9d 2430;;;;;; "bs" "bs.el" (17379 24708))
6448a6b3
GM
2431;;; Generated autoloads from bs.el
2432
2433(autoload (quote bs-cycle-next) "bs" "\
2434Select next buffer defined by buffer cycling.
2435The buffers taking part in buffer cycling are defined
c595cc5f
MR
2436by buffer configuration `bs-cycle-configuration-name'.
2437
2438\(fn)" t nil)
6448a6b3
GM
2439
2440(autoload (quote bs-cycle-previous) "bs" "\
2441Select previous buffer defined by buffer cycling.
2442The buffers taking part in buffer cycling are defined
c595cc5f
MR
2443by buffer configuration `bs-cycle-configuration-name'.
2444
2445\(fn)" t nil)
6448a6b3
GM
2446
2447(autoload (quote bs-customize) "bs" "\
c595cc5f
MR
2448Customization of group bs for Buffer Selection Menu.
2449
2450\(fn)" t nil)
6448a6b3
GM
2451
2452(autoload (quote bs-show) "bs" "\
54baed30 2453Make a menu of buffers so you can manipulate buffers or the buffer list.
6448a6b3
GM
2454\\<bs-mode-map>
2455There are many key commands similar to `Buffer-menu-mode' for
2456manipulating buffer list and buffers itself.
2457User can move with [up] or [down], select a buffer
2458by \\[bs-select] or [SPC]
2459
2460Type \\[bs-kill] to leave Buffer Selection Menu without a selection.
2461Type \\[bs-help] after invocation to get help on commands available.
2462With prefix argument ARG show a different buffer list. Function
2463`bs--configuration-name-for-prefix-arg' determine accordingly
c595cc5f
MR
2464name of buffer configuration.
2465
2466\(fn ARG)" t nil)
6448a6b3
GM
2467
2468;;;***
2469\f
4c6bc877 2470;;;### (autoloads (insert-text-button make-text-button insert-button
a5805c9d
KL
2471;;;;;; make-button define-button-type) "button" "button.el" (17331
2472;;;;;; 26860))
4c6bc877
MR
2473;;; Generated autoloads from button.el
2474
92e9233f 2475(defvar button-map (let ((map (make-sparse-keymap))) (define-key map "\r" (quote push-button)) (define-key map [mouse-2] (quote push-button)) map) "\
4c6bc877
MR
2476Keymap used by buttons.")
2477
c1a055ca 2478(defvar button-buffer-map (let ((map (make-sparse-keymap))) (define-key map [9] (quote forward-button)) (define-key map "\e " (quote backward-button)) (define-key map [backtab] (quote backward-button)) map) "\
4c6bc877
MR
2479Keymap useful for buffers containing buttons.
2480Mode-specific keymaps may want to use this as their parent keymap.")
2481
2482(autoload (quote define-button-type) "button" "\
2483Define a `button type' called NAME.
2484The remaining arguments form a sequence of PROPERTY VALUE pairs,
2485specifying properties to use as defaults for buttons with this type
2486\(a button's type may be set by giving it a `type' property when
2487creating the button, using the :type keyword argument).
2488
2489In addition, the keyword argument :supertype may be used to specify a
2490button-type from which NAME inherits its default property values
2491\(however, the inheritance happens only when NAME is defined; subsequent
c595cc5f
MR
2492changes to a supertype are not reflected in its subtypes).
2493
2494\(fn NAME &rest PROPERTIES)" nil nil)
4c6bc877
MR
2495
2496(autoload (quote make-button) "button" "\
2497Make a button from BEG to END in the current buffer.
2498The remaining arguments form a sequence of PROPERTY VALUE pairs,
2499specifying properties to add to the button.
2500In addition, the keyword argument :type may be used to specify a
2501button-type from which to inherit other properties; see
2502`define-button-type'.
2503
c595cc5f
MR
2504Also see `make-text-button', `insert-button'.
2505
2506\(fn BEG END &rest PROPERTIES)" nil nil)
4c6bc877
MR
2507
2508(autoload (quote insert-button) "button" "\
2509Insert a button with the label LABEL.
2510The remaining arguments form a sequence of PROPERTY VALUE pairs,
2511specifying properties to add to the button.
2512In addition, the keyword argument :type may be used to specify a
2513button-type from which to inherit other properties; see
2514`define-button-type'.
2515
c595cc5f
MR
2516Also see `insert-text-button', `make-button'.
2517
2518\(fn LABEL &rest PROPERTIES)" nil nil)
4c6bc877
MR
2519
2520(autoload (quote make-text-button) "button" "\
2521Make a button from BEG to END in the current buffer.
2522The remaining arguments form a sequence of PROPERTY VALUE pairs,
2523specifying properties to add to the button.
2524In addition, the keyword argument :type may be used to specify a
2525button-type from which to inherit other properties; see
2526`define-button-type'.
2527
2528This function is like `make-button', except that the button is actually
2529part of the text instead of being a property of the buffer. Creating
2530large numbers of buttons can also be somewhat faster using
2531`make-text-button'.
2532
c595cc5f
MR
2533Also see `insert-text-button'.
2534
2535\(fn BEG END &rest PROPERTIES)" nil nil)
4c6bc877
MR
2536
2537(autoload (quote insert-text-button) "button" "\
2538Insert a button with the label LABEL.
2539The remaining arguments form a sequence of PROPERTY VALUE pairs,
2540specifying properties to add to the button.
2541In addition, the keyword argument :type may be used to specify a
2542button-type from which to inherit other properties; see
2543`define-button-type'.
2544
2545This function is like `insert-button', except that the button is
2546actually part of the text instead of being a property of the buffer.
2547Creating large numbers of buttons can also be somewhat faster using
2548`insert-text-button'.
2549
c595cc5f
MR
2550Also see `make-text-button'.
2551
2552\(fn LABEL &rest PROPERTIES)" nil nil)
4c6bc877
MR
2553
2554;;;***
2555\f
93548d2e 2556;;;### (autoloads (batch-byte-recompile-directory batch-byte-compile
44d38e8d
SM
2557;;;;;; batch-byte-compile-if-not-done display-call-tree byte-compile
2558;;;;;; compile-defun byte-compile-file byte-recompile-directory
2559;;;;;; byte-force-recompile) "bytecomp" "emacs-lisp/bytecomp.el"
a5805c9d 2560;;;;;; (17356 16192))
93548d2e
DL
2561;;; Generated autoloads from emacs-lisp/bytecomp.el
2562
2563(autoload (quote byte-force-recompile) "bytecomp" "\
2564Recompile every `.el' file in DIRECTORY that already has a `.elc' file.
c595cc5f
MR
2565Files in subdirectories of DIRECTORY are processed also.
2566
2567\(fn DIRECTORY)" t nil)
93548d2e
DL
2568
2569(autoload (quote byte-recompile-directory) "bytecomp" "\
2570Recompile every `.el' file in DIRECTORY that needs recompilation.
2571This is if a `.elc' file exists but is older than the `.el' file.
2572Files in subdirectories of DIRECTORY are processed also.
2573
38747ec6
KS
2574If the `.elc' file does not exist, normally this function *does not*
2575compile the corresponding `.el' file. However,
2576if ARG (the prefix argument) is 0, that means do compile all those files.
2577A nonzero ARG means ask the user, for each such `.el' file,
2578whether to compile it.
93548d2e 2579
38747ec6 2580A nonzero ARG also means ask about each subdirectory before scanning it.
93548d2e
DL
2581
2582If the third argument FORCE is non-nil,
c595cc5f
MR
2583recompile every `.el' file that already has a `.elc' file.
2584
2585\(fn DIRECTORY &optional ARG FORCE)" t nil)
93548d2e
DL
2586
2587(autoload (quote byte-compile-file) "bytecomp" "\
2588Compile a file of Lisp code named FILENAME into a file of byte code.
2589The output file's name is made by appending `c' to the end of FILENAME.
c86350b1 2590With prefix arg (noninteractively: 2nd arg), LOAD the file after compiling.
c595cc5f
MR
2591The value is non-nil if there were no errors, nil if errors.
2592
2593\(fn FILENAME &optional LOAD)" t nil)
93548d2e
DL
2594
2595(autoload (quote compile-defun) "bytecomp" "\
2596Compile and evaluate the current top-level form.
390069bc 2597Print the result in the echo area.
c595cc5f
MR
2598With argument, insert value in current buffer after the form.
2599
2600\(fn &optional ARG)" t nil)
93548d2e
DL
2601
2602(autoload (quote byte-compile) "bytecomp" "\
2603If FORM is a symbol, byte-compile its function definition.
c595cc5f
MR
2604If FORM is a lambda or a macro, byte-compile it as a function.
2605
2606\(fn FORM)" nil nil)
93548d2e
DL
2607
2608(autoload (quote display-call-tree) "bytecomp" "\
2609Display a call graph of a specified file.
2610This lists which functions have been called, what functions called
2611them, and what functions they call. The list includes all functions
2612whose definitions have been compiled in this Emacs session, as well as
2613all functions called by those functions.
2614
2615The call graph does not include macros, inline functions, or
2616primitives that the byte-code interpreter knows about directly (eq,
2617cons, etc.).
2618
2619The call tree also lists those functions which are not known to be called
2620\(that is, to which no calls have been compiled), and which cannot be
c595cc5f
MR
2621invoked interactively.
2622
2623\(fn &optional FILENAME)" t nil)
93548d2e 2624
44d38e8d
SM
2625(autoload (quote batch-byte-compile-if-not-done) "bytecomp" "\
2626Like `byte-compile-file' but doesn't recompile if already up to date.
2627Use this from the command line, with `-batch';
c595cc5f
MR
2628it won't work in an interactive Emacs.
2629
2630\(fn)" nil nil)
44d38e8d 2631
93548d2e
DL
2632(autoload (quote batch-byte-compile) "bytecomp" "\
2633Run `byte-compile-file' on the files remaining on the command line.
2634Use this from the command line, with `-batch';
2635it won't work in an interactive Emacs.
2636Each file is processed even if an error occurred previously.
662c9e53
EZ
2637For example, invoke \"emacs -batch -f batch-byte-compile $emacs/ ~/*.el\".
2638If NOFORCE is non-nil, don't recompile a file that seems to be
c595cc5f
MR
2639already up-to-date.
2640
2641\(fn &optional NOFORCE)" nil nil)
93548d2e
DL
2642
2643(autoload (quote batch-byte-recompile-directory) "bytecomp" "\
c595cc5f 2644Run `byte-recompile-directory' on the dirs remaining on the command line.
93548d2e 2645Must be used only with `-batch', and kills Emacs on completion.
c595cc5f
MR
2646For example, invoke `emacs -batch -f batch-byte-recompile-directory .'.
2647
c1a055ca
EZ
2648Optional argument ARG is passed as second argument ARG to
2649`batch-recompile-directory'; see there for its possible values
2650and corresponding effects.
2651
390069bc 2652\(fn &optional ARG)" nil nil)
93548d2e
DL
2653
2654;;;***
2655\f
a5805c9d 2656;;;### (autoloads nil "cal-dst" "calendar/cal-dst.el" (17308 43144))
93548d2e
DL
2657;;; Generated autoloads from calendar/cal-dst.el
2658
2659(put (quote calendar-daylight-savings-starts) (quote risky-local-variable) t)
2660
2661(put (quote calendar-daylight-savings-ends) (quote risky-local-variable) t)
2662
2663;;;***
2664\f
2665;;;### (autoloads (list-yahrzeit-dates) "cal-hebrew" "calendar/cal-hebrew.el"
a5805c9d 2666;;;;;; (17308 43144))
93548d2e
DL
2667;;; Generated autoloads from calendar/cal-hebrew.el
2668
2669(autoload (quote list-yahrzeit-dates) "cal-hebrew" "\
2670List Yahrzeit dates for *Gregorian* DEATH-DATE from START-YEAR to END-YEAR.
2671When called interactively from the calendar window, the date of death is taken
c595cc5f
MR
2672from the cursor position.
2673
2674\(fn DEATH-DATE START-YEAR END-YEAR)" t nil)
93548d2e
DL
2675
2676;;;***
2677\f
4c6bc877
MR
2678;;;### (autoloads (defmath calc-embedded-activate calc-embedded calc-grab-rectangle
2679;;;;;; calc-grab-region full-calc-keypad calc-keypad calc-eval quick-calc
d66d64bc 2680;;;;;; full-calc calc calc-dispatch calc-settings-file) "calc" "calc/calc.el"
a5805c9d 2681;;;;;; (17297 42808))
4c6bc877
MR
2682;;; Generated autoloads from calc/calc.el
2683
be65bdd3
AS
2684(defvar calc-settings-file (convert-standard-filename "~/.calc.el") "\
2685*File in which to record permanent settings.")
d66d64bc
KL
2686
2687(custom-autoload (quote calc-settings-file) "calc")
c1a055ca 2688 (define-key ctl-x-map "*" 'calc-dispatch)
4c6bc877
MR
2689
2690(autoload (quote calc-dispatch) "calc" "\
c595cc5f
MR
2691Invoke the GNU Emacs Calculator. See `calc-dispatch-help' for details.
2692
2693\(fn &optional ARG)" t nil)
4c6bc877
MR
2694
2695(autoload (quote calc) "calc" "\
c595cc5f
MR
2696The Emacs Calculator. Full documentation is listed under \"calc-mode\".
2697
2698\(fn &optional ARG FULL-DISPLAY INTERACTIVE)" t nil)
4c6bc877
MR
2699
2700(autoload (quote full-calc) "calc" "\
c595cc5f
MR
2701Invoke the Calculator and give it a full-sized window.
2702
390069bc 2703\(fn &optional INTERACTIVE)" t nil)
4c6bc877
MR
2704
2705(autoload (quote quick-calc) "calc" "\
c595cc5f
MR
2706Do a quick calculation in the minibuffer without invoking full Calculator.
2707
2708\(fn)" t nil)
4c6bc877
MR
2709
2710(autoload (quote calc-eval) "calc" "\
2711Do a quick calculation and return the result as a string.
2712Return value will either be the formatted result in string form,
c595cc5f
MR
2713or a list containing a character position and an error message in string form.
2714
2715\(fn STR &optional SEPARATOR &rest ARGS)" nil nil)
4c6bc877
MR
2716
2717(autoload (quote calc-keypad) "calc" "\
2718Invoke the Calculator in \"visual keypad\" mode.
2719This is most useful in the X window system.
2720In this mode, click on the Calc \"buttons\" using the left mouse button.
c595cc5f
MR
2721Or, position the cursor manually and do M-x calc-keypad-press.
2722
390069bc 2723\(fn &optional INTERACTIVE)" t nil)
4c6bc877
MR
2724
2725(autoload (quote full-calc-keypad) "calc" "\
2726Invoke the Calculator in full-screen \"visual keypad\" mode.
c595cc5f
MR
2727See calc-keypad for details.
2728
390069bc 2729\(fn &optional INTERACTIVE)" t nil)
4c6bc877
MR
2730
2731(autoload (quote calc-grab-region) "calc" "\
c595cc5f
MR
2732Parse the region as a vector of numbers and push it on the Calculator stack.
2733
2734\(fn TOP BOT ARG)" t nil)
4c6bc877
MR
2735
2736(autoload (quote calc-grab-rectangle) "calc" "\
c595cc5f
MR
2737Parse a rectangle as a matrix of numbers and push it on the Calculator stack.
2738
2739\(fn TOP BOT ARG)" t nil)
4c6bc877
MR
2740
2741(autoload (quote calc-embedded) "calc" "\
c595cc5f
MR
2742Start Calc Embedded mode on the formula surrounding point.
2743
2744\(fn ARG &optional END OBEG OEND)" t nil)
4c6bc877
MR
2745
2746(autoload (quote calc-embedded-activate) "calc" "\
2747Scan the current editing buffer for all embedded := and => formulas.
c595cc5f
MR
2748Also looks for the equivalent TeX words, \\gets and \\evalto.
2749
2750\(fn &optional ARG CBUF)" t nil)
4c6bc877 2751
c595cc5f
MR
2752(autoload (quote defmath) "calc" "\
2753Not documented
2754
2755\(fn FUNC ARGS &rest BODY)" nil (quote macro))
4c6bc877
MR
2756
2757;;;***
2758\f
a5805c9d
KL
2759;;;### (autoloads (calculator) "calculator" "calculator.el" (17279
2760;;;;;; 27122))
d054101f
GM
2761;;; Generated autoloads from calculator.el
2762
2763(autoload (quote calculator) "calculator" "\
6c083b4c 2764Run the Emacs calculator.
c595cc5f
MR
2765See the documentation for `calculator-mode' for more information.
2766
2767\(fn)" t nil)
d054101f
GM
2768
2769;;;***
2770\f
be65bdd3
AS
2771;;;### (autoloads (calendar-week-start-day calendar calendar-setup
2772;;;;;; solar-holidays bahai-holidays islamic-holidays christian-holidays
2773;;;;;; hebrew-holidays other-holidays local-holidays oriental-holidays
2774;;;;;; general-holidays holidays-in-diary-buffer diary-list-include-blanks
2775;;;;;; nongregorian-diary-marking-hook mark-diary-entries-hook nongregorian-diary-listing-hook
2776;;;;;; diary-display-hook diary-hook list-diary-entries-hook print-diary-entries-hook
93548d2e
DL
2777;;;;;; american-calendar-display-form european-calendar-display-form
2778;;;;;; european-date-diary-pattern american-date-diary-pattern european-calendar-style
2779;;;;;; abbreviated-calendar-year sexp-diary-entry-symbol diary-include-string
390069bc
AS
2780;;;;;; bahai-diary-entry-symbol islamic-diary-entry-symbol hebrew-diary-entry-symbol
2781;;;;;; diary-nonmarking-symbol diary-file calendar-move-hook today-invisible-calendar-hook
7518ed7b 2782;;;;;; today-visible-calendar-hook initial-calendar-window-hook
390069bc
AS
2783;;;;;; calendar-load-hook all-bahai-calendar-holidays all-islamic-calendar-holidays
2784;;;;;; all-christian-calendar-holidays all-hebrew-calendar-holidays
2785;;;;;; mark-holidays-in-calendar view-calendar-holidays-initially
cded5ed3 2786;;;;;; calendar-remove-frame-by-deleting mark-diary-entries-in-calendar
175a97e4 2787;;;;;; view-diary-entries-initially calendar-offset) "calendar"
a5805c9d 2788;;;;;; "calendar/calendar.el" (17374 21531))
93548d2e
DL
2789;;; Generated autoloads from calendar/calendar.el
2790
93548d2e 2791(defvar calendar-offset 0 "\
c1a055ca 2792The offset of the principal month from the center of the calendar window.
93548d2e
DL
27930 means the principal month is in the center (default), -1 means on the left,
2794+1 means on the right. Larger (or smaller) values push the principal month off
2795the screen.")
2796
9c46b00a
MR
2797(custom-autoload (quote calendar-offset) "calendar")
2798
93548d2e 2799(defvar view-diary-entries-initially nil "\
c1a055ca 2800Non-nil means display current date's diary entries on entry to calendar.
93548d2e
DL
2801The diary is displayed in another window when the calendar is first displayed,
2802if the current date is visible. The number of days of diary entries displayed
390069bc
AS
2803is governed by the variable `number-of-diary-entries'. This variable can
2804be overridden by the value of `calendar-setup'.")
93548d2e 2805
9c46b00a
MR
2806(custom-autoload (quote view-diary-entries-initially) "calendar")
2807
93548d2e 2808(defvar mark-diary-entries-in-calendar nil "\
c1a055ca 2809Non-nil means mark dates with diary entries, in the calendar window.
93548d2e
DL
2810The marking symbol is specified by the variable `diary-entry-marker'.")
2811
9c46b00a
MR
2812(custom-autoload (quote mark-diary-entries-in-calendar) "calendar")
2813
cded5ed3 2814(defvar calendar-remove-frame-by-deleting nil "\
c1a055ca 2815Determine how the calendar mode removes a frame no longer needed.
cded5ed3
GM
2816If nil, make an icon of the frame. If non-nil, delete the frame.")
2817
9c46b00a
MR
2818(custom-autoload (quote calendar-remove-frame-by-deleting) "calendar")
2819
93548d2e 2820(defvar view-calendar-holidays-initially nil "\
c1a055ca 2821Non-nil means display holidays for current three month period on entry.
93548d2e
DL
2822The holidays are displayed in another window when the calendar is first
2823displayed.")
2824
9c46b00a
MR
2825(custom-autoload (quote view-calendar-holidays-initially) "calendar")
2826
93548d2e 2827(defvar mark-holidays-in-calendar nil "\
c1a055ca 2828Non-nil means mark dates of holidays in the calendar window.
93548d2e
DL
2829The marking symbol is specified by the variable `calendar-holiday-marker'.")
2830
9c46b00a
MR
2831(custom-autoload (quote mark-holidays-in-calendar) "calendar")
2832
93548d2e 2833(defvar all-hebrew-calendar-holidays nil "\
c1a055ca 2834If nil, show only major holidays from the Hebrew calendar.
93548d2e
DL
2835This means only those Jewish holidays that appear on secular calendars.
2836
2837If t, show all the holidays that would appear in a complete Hebrew calendar.")
2838
9c46b00a
MR
2839(custom-autoload (quote all-hebrew-calendar-holidays) "calendar")
2840
93548d2e 2841(defvar all-christian-calendar-holidays nil "\
c1a055ca 2842If nil, show only major holidays from the Christian calendar.
93548d2e
DL
2843This means only those Christian holidays that appear on secular calendars.
2844
2845If t, show all the holidays that would appear in a complete Christian
2846calendar.")
2847
9c46b00a
MR
2848(custom-autoload (quote all-christian-calendar-holidays) "calendar")
2849
93548d2e 2850(defvar all-islamic-calendar-holidays nil "\
c1a055ca 2851If nil, show only major holidays from the Islamic calendar.
93548d2e
DL
2852This means only those Islamic holidays that appear on secular calendars.
2853
2854If t, show all the holidays that would appear in a complete Islamic
2855calendar.")
2856
9c46b00a
MR
2857(custom-autoload (quote all-islamic-calendar-holidays) "calendar")
2858
390069bc 2859(defvar all-bahai-calendar-holidays nil "\
c1a055ca 2860If nil, show only major holidays from the Baha'i calendar.
390069bc
AS
2861These are the days on which work and school must be suspended.
2862
2863If t, show all the holidays that would appear in a complete Baha'i
2864calendar.")
2865
2866(custom-autoload (quote all-bahai-calendar-holidays) "calendar")
2867
93548d2e 2868(defvar calendar-load-hook nil "\
c1a055ca 2869List of functions to be called after the calendar is first loaded.
93548d2e
DL
2870This is the place to add key bindings to `calendar-mode-map'.")
2871
9c46b00a
MR
2872(custom-autoload (quote calendar-load-hook) "calendar")
2873
93548d2e 2874(defvar initial-calendar-window-hook nil "\
c1a055ca 2875List of functions to be called when the calendar window is first opened.
93548d2e
DL
2876The functions invoked are called after the calendar window is opened, but
2877once opened is never called again. Leaving the calendar with the `q' command
2878and reentering it will cause these functions to be called again.")
2879
9c46b00a
MR
2880(custom-autoload (quote initial-calendar-window-hook) "calendar")
2881
93548d2e 2882(defvar today-visible-calendar-hook nil "\
c1a055ca 2883List of functions called whenever the current date is visible.
93548d2e
DL
2884This can be used, for example, to replace today's date with asterisks; a
2885function `calendar-star-date' is included for this purpose:
2886 (setq today-visible-calendar-hook 'calendar-star-date)
2887It can also be used to mark the current date with `calendar-today-marker';
2888a function is also provided for this:
2889 (setq today-visible-calendar-hook 'calendar-mark-today)
2890
2891The corresponding variable `today-invisible-calendar-hook' is the list of
2892functions called when the calendar function was called when the current
2893date is not visible in the window.
2894
2895Other than the use of the provided functions, the changing of any
2896characters in the calendar buffer by the hooks may cause the failure of the
2897functions that move by days and weeks.")
2898
9c46b00a
MR
2899(custom-autoload (quote today-visible-calendar-hook) "calendar")
2900
93548d2e 2901(defvar today-invisible-calendar-hook nil "\
c1a055ca 2902List of functions called whenever the current date is not visible.
93548d2e
DL
2903
2904The corresponding variable `today-visible-calendar-hook' is the list of
2905functions called when the calendar function was called when the current
2906date is visible in the window.
2907
2908Other than the use of the provided functions, the changing of any
2909characters in the calendar buffer by the hooks may cause the failure of the
2910functions that move by days and weeks.")
2911
9c46b00a
MR
2912(custom-autoload (quote today-invisible-calendar-hook) "calendar")
2913
7518ed7b 2914(defvar calendar-move-hook nil "\
c1a055ca 2915List of functions called whenever the cursor moves in the calendar.
7518ed7b 2916
cded5ed3 2917For example,
7518ed7b 2918
175a97e4 2919 (add-hook 'calendar-move-hook (lambda () (diary-view-entries 1)))
7518ed7b
GM
2920
2921redisplays the diary for whatever date the cursor is moved to.")
2922
9c46b00a
MR
2923(custom-autoload (quote calendar-move-hook) "calendar")
2924
93548d2e 2925(defvar diary-file "~/diary" "\
c1a055ca 2926Name of the file in which one's personal diary of dates is kept.
93548d2e 2927
d1978f48
KH
2928The file's entries are lines beginning with any of the forms
2929specified by the variable `american-date-diary-pattern', by default:
93548d2e
DL
2930
2931 MONTH/DAY
2932 MONTH/DAY/YEAR
2933 MONTHNAME DAY
2934 MONTHNAME DAY, YEAR
2935 DAYNAME
2936
d1978f48
KH
2937with the remainder of the line being the diary entry string for
2938that date. MONTH and DAY are one or two digit numbers, YEAR is a
2939number and may be written in full or abbreviated to the final two
2940digits (if `abbreviated-calendar-year' is non-nil). MONTHNAME
2941and DAYNAME can be spelled in full (as specified by the variables
2942`calendar-month-name-array' and `calendar-day-name-array'),
2943abbreviated (as specified by `calendar-month-abbrev-array' and
2944`calendar-day-abbrev-array') with or without a period,
2945capitalized or not. Any of DAY, MONTH, or MONTHNAME, YEAR can be
2946`*' which matches any day, month, or year, respectively. If the
2947date does not contain a year, it is generic and applies to any
2948year. A DAYNAME entry applies to the appropriate day of the week
2949in every week.
2950
2951The European style (in which the day precedes the month) can be
2952used instead, if you execute `european-calendar' when in the
2953calendar, or set `european-calendar-style' to t in your .emacs
2954file. The European forms (see `european-date-diary-pattern') are
93548d2e
DL
2955
2956 DAY/MONTH
2957 DAY/MONTH/YEAR
2958 DAY MONTHNAME
2959 DAY MONTHNAME YEAR
2960 DAYNAME
2961
2962To revert to the default American style from the European style, execute
2963`american-calendar' in the calendar.
2964
2965A diary entry can be preceded by the character
2966`diary-nonmarking-symbol' (ordinarily `&') to make that entry
2967nonmarking--that is, it will not be marked on dates in the calendar
2968window but will appear in a diary window.
2969
2970Multiline diary entries are made by indenting lines after the first with
2971either a TAB or one or more spaces.
2972
2973Lines not in one the above formats are ignored. Here are some sample diary
2974entries (in the default American style):
2975
2976 12/22/1988 Twentieth wedding anniversary!!
2977 &1/1. Happy New Year!
2978 10/22 Ruth's birthday.
2979 21: Payday
2980 Tuesday--weekly meeting with grad students at 10am
2981 Supowit, Shen, Bitner, and Kapoor to attend.
2982 1/13/89 Friday the thirteenth!!
2983 &thu 4pm squash game with Lloyd.
2984 mar 16 Dad's birthday
2985 April 15, 1989 Income tax due.
2986 &* 15 time cards due.
2987
2988If the first line of a diary entry consists only of the date or day name with
2989no trailing blanks or punctuation, then that line is not displayed in the
2990diary window; only the continuation lines is shown. For example, the
2991single diary entry
2992
2993 02/11/1989
2994 Bill Blattner visits Princeton today
2995 2pm Cognitive Studies Committee meeting
2996 2:30-5:30 Lizzie at Lawrenceville for `Group Initiative'
2997 4:00pm Jamie Tappenden
2998 7:30pm Dinner at George and Ed's for Alan Ryan
2999 7:30-10:00pm dance at Stewart Country Day School
3000
3001will appear in the diary window without the date line at the beginning. This
3002facility allows the diary window to look neater, but can cause confusion if
3003used with more than one day's entries displayed.
3004
3005Diary entries can be based on Lisp sexps. For example, the diary entry
3006
3007 %%(diary-block 11 1 1990 11 10 1990) Vacation
3008
390069bc
AS
3009causes the diary entry \"Vacation\" to appear from November 1 through
3010November 10, 1990. Other functions available are `diary-float',
3011`diary-anniversary', `diary-cyclic', `diary-day-of-year',
3012`diary-iso-date', `diary-french-date', `diary-hebrew-date',
3013`diary-islamic-date', `diary-bahai-date', `diary-mayan-date',
93548d2e
DL
3014`diary-chinese-date', `diary-coptic-date', `diary-ethiopic-date',
3015`diary-persian-date', `diary-yahrzeit', `diary-sunrise-sunset',
390069bc
AS
3016`diary-phases-of-moon', `diary-parasha', `diary-omer',
3017`diary-rosh-hodesh', and `diary-sabbath-candles'. See the
3018documentation for the function `list-sexp-diary-entries' for more
3019details.
93548d2e 3020
390069bc
AS
3021Diary entries based on the Hebrew, the Islamic and/or the Baha'i
3022calendar are also possible, but because these are somewhat slow, they
3023are ignored unless you set the `nongregorian-diary-listing-hook' and
3024the `nongregorian-diary-marking-hook' appropriately. See the
3025documentation for these functions for details.
93548d2e
DL
3026
3027Diary files can contain directives to include the contents of other files; for
3028details, see the documentation for the variable `list-diary-entries-hook'.")
3029
9c46b00a
MR
3030(custom-autoload (quote diary-file) "calendar")
3031
93548d2e 3032(defvar diary-nonmarking-symbol "&" "\
c1a055ca 3033Symbol indicating that a diary entry is not to be marked in the calendar.")
93548d2e 3034
9c46b00a
MR
3035(custom-autoload (quote diary-nonmarking-symbol) "calendar")
3036
93548d2e 3037(defvar hebrew-diary-entry-symbol "H" "\
c1a055ca 3038Symbol indicating a diary entry according to the Hebrew calendar.")
93548d2e 3039
9c46b00a
MR
3040(custom-autoload (quote hebrew-diary-entry-symbol) "calendar")
3041
93548d2e 3042(defvar islamic-diary-entry-symbol "I" "\
c1a055ca 3043Symbol indicating a diary entry according to the Islamic calendar.")
93548d2e 3044
9c46b00a
MR
3045(custom-autoload (quote islamic-diary-entry-symbol) "calendar")
3046
390069bc 3047(defvar bahai-diary-entry-symbol "B" "\
c1a055ca 3048Symbol indicating a diary entry according to the Baha'i calendar.")
390069bc
AS
3049
3050(custom-autoload (quote bahai-diary-entry-symbol) "calendar")
3051
93548d2e 3052(defvar diary-include-string "#include" "\
c1a055ca 3053The string indicating inclusion of another file of diary entries.
93548d2e
DL
3054See the documentation for the function `include-other-diary-files'.")
3055
9c46b00a
MR
3056(custom-autoload (quote diary-include-string) "calendar")
3057
93548d2e 3058(defvar sexp-diary-entry-symbol "%%" "\
c1a055ca 3059The string used to indicate a sexp diary entry in `diary-file'.
93548d2e
DL
3060See the documentation for the function `list-sexp-diary-entries'.")
3061
9c46b00a
MR
3062(custom-autoload (quote sexp-diary-entry-symbol) "calendar")
3063
93548d2e 3064(defvar abbreviated-calendar-year t "\
c1a055ca 3065Interpret a two-digit year DD in a diary entry as either 19DD or 20DD.
390069bc
AS
3066For the Gregorian calendar; similarly for the Hebrew, Islamic and
3067Baha'i calendars. If this variable is nil, years must be written in
3068full.")
93548d2e 3069
9c46b00a
MR
3070(custom-autoload (quote abbreviated-calendar-year) "calendar")
3071
93548d2e 3072(defvar european-calendar-style nil "\
c1a055ca 3073Use the European style of dates in the diary and in any displays.
93548d2e 3074If this variable is t, a date 1/2/1990 would be interpreted as February 1,
d1978f48
KH
30751990. The default European date styles (see `european-date-diary-pattern')
3076are
93548d2e
DL
3077
3078 DAY/MONTH
3079 DAY/MONTH/YEAR
3080 DAY MONTHNAME
3081 DAY MONTHNAME YEAR
3082 DAYNAME
3083
d1978f48
KH
3084Names can be capitalized or not, written in full (as specified by the
3085variable `calendar-day-name-array'), or abbreviated (as specified by
390069bc
AS
3086`calendar-day-abbrev-array') with or without a period. To take effect,
3087this variable should be set before the calendar package and its associates
3088are loaded. Otherwise, use one of the functions `european-calendar' or
3089`american-calendar' to force the appropriate update.")
93548d2e 3090
9c46b00a
MR
3091(custom-autoload (quote european-calendar-style) "calendar")
3092
93548d2e 3093(defvar american-date-diary-pattern (quote ((month "/" day "[^/0-9]") (month "/" day "/" year "[^0-9]") (monthname " *" day "[^,0-9]") (monthname " *" day ", *" year "[^0-9]") (dayname "\\W"))) "\
c1a055ca 3094List of pseudo-patterns describing the American patterns of date used.
93548d2e
DL
3095See the documentation of `diary-date-forms' for an explanation.")
3096
9c46b00a
MR
3097(custom-autoload (quote american-date-diary-pattern) "calendar")
3098
7518ed7b 3099(defvar european-date-diary-pattern (quote ((day "/" month "[^/0-9]") (day "/" month "/" year "[^0-9]") (backup day " *" monthname "\\W+\\<\\([^*0-9]\\|\\([0-9]+[:aApP]\\)\\)") (day " *" monthname " *" year "[^0-9]") (dayname "\\W"))) "\
c1a055ca 3100List of pseudo-patterns describing the European patterns of date used.
93548d2e
DL
3101See the documentation of `diary-date-forms' for an explanation.")
3102
9c46b00a
MR
3103(custom-autoload (quote european-date-diary-pattern) "calendar")
3104
93548d2e 3105(defvar european-calendar-display-form (quote ((if dayname (concat dayname ", ")) day " " monthname " " year)) "\
c1a055ca 3106Pseudo-pattern governing the way a date appears in the European style.
c595cc5f 3107See the documentation of `calendar-date-display-form' for an explanation.")
93548d2e 3108
9c46b00a
MR
3109(custom-autoload (quote european-calendar-display-form) "calendar")
3110
93548d2e 3111(defvar american-calendar-display-form (quote ((if dayname (concat dayname ", ")) monthname " " day ", " year)) "\
c1a055ca 3112Pseudo-pattern governing the way a date appears in the American style.
93548d2e
DL
3113See the documentation of `calendar-date-display-form' for an explanation.")
3114
9c46b00a
MR
3115(custom-autoload (quote american-calendar-display-form) "calendar")
3116
93548d2e 3117(defvar print-diary-entries-hook (quote lpr-buffer) "\
c1a055ca 3118List of functions called after a temporary diary buffer is prepared.
93548d2e
DL
3119The buffer shows only the diary entries currently visible in the diary
3120buffer. The default just does the printing. Other uses might include, for
3121example, rearranging the lines into order by day and time, saving the buffer
3122instead of deleting it, or changing the function used to do the printing.")
3123
9c46b00a
MR
3124(custom-autoload (quote print-diary-entries-hook) "calendar")
3125
93548d2e 3126(defvar list-diary-entries-hook nil "\
c1a055ca 3127List of functions called after diary file is culled for relevant entries.
93548d2e
DL
3128It is to be used for diary entries that are not found in the diary file.
3129
3130A function `include-other-diary-files' is provided for use as the value of
3131this hook. This function enables you to use shared diary files together
3132with your own. The files included are specified in the diary file by lines
3133of the form
3134
3135 #include \"filename\"
3136
3137This is recursive; that is, #include directives in files thus included are
3138obeyed. You can change the \"#include\" to some other string by changing
3139the variable `diary-include-string'. When you use `include-other-diary-files'
3140as part of the list-diary-entries-hook, you will probably also want to use the
3141function `mark-included-diary-files' as part of `mark-diary-entries-hook'.
3142
3143For example, you could use
3144
3145 (setq list-diary-entries-hook
3146 '(include-other-diary-files sort-diary-entries))
3147 (setq diary-display-hook 'fancy-diary-display)
3148
3149in your `.emacs' file to cause the fancy diary buffer to be displayed with
3150diary entries from various included files, each day's entries sorted into
3151lexicographic order.")
3152
9c46b00a
MR
3153(custom-autoload (quote list-diary-entries-hook) "calendar")
3154
93548d2e 3155(defvar diary-hook nil "\
c1a055ca 3156List of functions called after the display of the diary.
93548d2e
DL
3157Can be used for appointment notification.")
3158
9c46b00a
MR
3159(custom-autoload (quote diary-hook) "calendar")
3160
93548d2e 3161(defvar diary-display-hook nil "\
c1a055ca 3162List of functions that handle the display of the diary.
93548d2e
DL
3163If nil (the default), `simple-diary-display' is used. Use `ignore' for no
3164diary display.
3165
3166Ordinarily, this just displays the diary buffer (with holidays indicated in
3167the mode line), if there are any relevant entries. At the time these
3168functions are called, the variable `diary-entries-list' is a list, in order
3169by date, of all relevant diary entries in the form of ((MONTH DAY YEAR)
3170STRING), where string is the diary entry for the given date. This can be
3171used, for example, a different buffer for display (perhaps combined with
3172holidays), or produce hard copy output.
3173
3174A function `fancy-diary-display' is provided as an alternative
3175choice for this hook; this function prepares a special noneditable diary
3176buffer with the relevant diary entries that has neat day-by-day arrangement
3177with headings. The fancy diary buffer will show the holidays unless the
3178variable `holidays-in-diary-buffer' is set to nil. Ordinarily, the fancy
3179diary buffer will not show days for which there are no diary entries, even
3180if that day is a holiday; if you want such days to be shown in the fancy
3181diary buffer, set the variable `diary-list-include-blanks' to t.")
3182
9c46b00a
MR
3183(custom-autoload (quote diary-display-hook) "calendar")
3184
93548d2e 3185(defvar nongregorian-diary-listing-hook nil "\
c1a055ca 3186List of functions called for listing diary file and included files.
390069bc
AS
3187As the files are processed for diary entries, these functions are used
3188to cull relevant entries. You can use either or both of
3189`list-hebrew-diary-entries', `list-islamic-diary-entries' and
3190`list-bahai-diary-entries'. The documentation for these functions
93548d2e
DL
3191describes the style of such diary entries.")
3192
9c46b00a
MR
3193(custom-autoload (quote nongregorian-diary-listing-hook) "calendar")
3194
93548d2e 3195(defvar mark-diary-entries-hook nil "\
c1a055ca 3196List of functions called after marking diary entries in the calendar.
93548d2e
DL
3197
3198A function `mark-included-diary-files' is also provided for use as the
b442e70a 3199`mark-diary-entries-hook'; it enables you to use shared diary files together
93548d2e
DL
3200with your own. The files included are specified in the diary file by lines
3201of the form
3202 #include \"filename\"
3203This is recursive; that is, #include directives in files thus included are
3204obeyed. You can change the \"#include\" to some other string by changing the
3205variable `diary-include-string'. When you use `mark-included-diary-files' as
3206part of the mark-diary-entries-hook, you will probably also want to use the
3207function `include-other-diary-files' as part of `list-diary-entries-hook'.")
3208
9c46b00a
MR
3209(custom-autoload (quote mark-diary-entries-hook) "calendar")
3210
93548d2e 3211(defvar nongregorian-diary-marking-hook nil "\
c1a055ca 3212List of functions called for marking diary file and included files.
390069bc
AS
3213As the files are processed for diary entries, these functions are used
3214to cull relevant entries. You can use either or both of
3215`mark-hebrew-diary-entries', `mark-islamic-diary-entries' and
3216`mark-bahai-diary-entries'. The documentation for these functions
93548d2e
DL
3217describes the style of such diary entries.")
3218
9c46b00a
MR
3219(custom-autoload (quote nongregorian-diary-marking-hook) "calendar")
3220
93548d2e 3221(defvar diary-list-include-blanks nil "\
c1a055ca 3222If nil, do not include days with no diary entry in the list of diary entries.
93548d2e
DL
3223Such days will then not be shown in the fancy diary buffer, even if they
3224are holidays.")
3225
9c46b00a
MR
3226(custom-autoload (quote diary-list-include-blanks) "calendar")
3227
93548d2e 3228(defvar holidays-in-diary-buffer t "\
c1a055ca 3229Non-nil means include holidays in the diary display.
93548d2e
DL
3230The holidays appear in the mode line of the diary buffer, or in the
3231fancy diary buffer next to the date. This slows down the diary functions
3232somewhat; setting it to nil makes the diary display faster.")
3233
9c46b00a
MR
3234(custom-autoload (quote holidays-in-diary-buffer) "calendar")
3235
93548d2e
DL
3236(put (quote general-holidays) (quote risky-local-variable) t)
3237
3238(defvar general-holidays (quote ((holiday-fixed 1 1 "New Year's Day") (holiday-float 1 1 3 "Martin Luther King Day") (holiday-fixed 2 2 "Groundhog Day") (holiday-fixed 2 14 "Valentine's Day") (holiday-float 2 1 3 "President's Day") (holiday-fixed 3 17 "St. Patrick's Day") (holiday-fixed 4 1 "April Fools' Day") (holiday-float 5 0 2 "Mother's Day") (holiday-float 5 1 -1 "Memorial Day") (holiday-fixed 6 14 "Flag Day") (holiday-float 6 0 3 "Father's Day") (holiday-fixed 7 4 "Independence Day") (holiday-float 9 1 1 "Labor Day") (holiday-float 10 1 2 "Columbus Day") (holiday-fixed 10 31 "Halloween") (holiday-fixed 11 11 "Veteran's Day") (holiday-float 11 4 4 "Thanksgiving"))) "\
c1a055ca 3239General holidays. Default value is for the United States.
93548d2e
DL
3240See the documentation for `calendar-holidays' for details.")
3241
9c46b00a
MR
3242(custom-autoload (quote general-holidays) "calendar")
3243
93548d2e
DL
3244(put (quote oriental-holidays) (quote risky-local-variable) t)
3245
3246(defvar oriental-holidays (quote ((if (fboundp (quote atan)) (holiday-chinese-new-year)))) "\
c1a055ca 3247Oriental holidays.
93548d2e
DL
3248See the documentation for `calendar-holidays' for details.")
3249
9c46b00a
MR
3250(custom-autoload (quote oriental-holidays) "calendar")
3251
93548d2e
DL
3252(put (quote local-holidays) (quote risky-local-variable) t)
3253
3254(defvar local-holidays nil "\
c1a055ca 3255Local holidays.
93548d2e
DL
3256See the documentation for `calendar-holidays' for details.")
3257
9c46b00a
MR
3258(custom-autoload (quote local-holidays) "calendar")
3259
93548d2e
DL
3260(put (quote other-holidays) (quote risky-local-variable) t)
3261
3262(defvar other-holidays nil "\
c1a055ca 3263User defined holidays.
93548d2e
DL
3264See the documentation for `calendar-holidays' for details.")
3265
9c46b00a
MR
3266(custom-autoload (quote other-holidays) "calendar")
3267
93548d2e
DL
3268(put (quote hebrew-holidays-1) (quote risky-local-variable) t)
3269
3270(defvar hebrew-holidays-1 (quote ((holiday-rosh-hashanah-etc) (if all-hebrew-calendar-holidays (holiday-julian 11 (let* ((m displayed-month) (y displayed-year) (year)) (increment-calendar-month m y -1) (let ((year (extract-calendar-year (calendar-julian-from-absolute (calendar-absolute-from-gregorian (list m 1 y)))))) (if (zerop (% (1+ year) 4)) 22 21))) "\"Tal Umatar\" (evening)")))))
3271
3272(put (quote hebrew-holidays-2) (quote risky-local-variable) t)
3273
3274(defvar hebrew-holidays-2 (quote ((if all-hebrew-calendar-holidays (holiday-hanukkah) (holiday-hebrew 9 25 "Hanukkah")) (if all-hebrew-calendar-holidays (holiday-hebrew 10 (let ((h-year (extract-calendar-year (calendar-hebrew-from-absolute (calendar-absolute-from-gregorian (list displayed-month 28 displayed-year)))))) (if (= (% (calendar-absolute-from-hebrew (list 10 10 h-year)) 7) 6) 11 10)) "Tzom Teveth")) (if all-hebrew-calendar-holidays (holiday-hebrew 11 15 "Tu B'Shevat")))))
3275
3276(put (quote hebrew-holidays-3) (quote risky-local-variable) t)
3277
3278(defvar hebrew-holidays-3 (quote ((if all-hebrew-calendar-holidays (holiday-hebrew 11 (let ((m displayed-month) (y displayed-year)) (increment-calendar-month m y 1) (let* ((h-year (extract-calendar-year (calendar-hebrew-from-absolute (calendar-absolute-from-gregorian (list m (calendar-last-day-of-month m y) y))))) (s-s (calendar-hebrew-from-absolute (if (= (% (calendar-absolute-from-hebrew (list 7 1 h-year)) 7) 6) (calendar-dayname-on-or-before 6 (calendar-absolute-from-hebrew (list 11 17 h-year))) (calendar-dayname-on-or-before 6 (calendar-absolute-from-hebrew (list 11 16 h-year)))))) (day (extract-calendar-day s-s))) day)) "Shabbat Shirah")))))
3279
3280(put (quote hebrew-holidays-4) (quote risky-local-variable) t)
3281
3282(defvar hebrew-holidays-4 (quote ((holiday-passover-etc) (if (and all-hebrew-calendar-holidays (let* ((m displayed-month) (y displayed-year) (year)) (increment-calendar-month m y -1) (let ((year (extract-calendar-year (calendar-julian-from-absolute (calendar-absolute-from-gregorian (list m 1 y)))))) (= 21 (% year 28))))) (holiday-julian 3 26 "Kiddush HaHamah")) (if all-hebrew-calendar-holidays (holiday-tisha-b-av-etc)))))
3283
3284(put (quote hebrew-holidays) (quote risky-local-variable) t)
3285
3286(defvar hebrew-holidays (append hebrew-holidays-1 hebrew-holidays-2 hebrew-holidays-3 hebrew-holidays-4) "\
c1a055ca 3287Jewish holidays.
93548d2e
DL
3288See the documentation for `calendar-holidays' for details.")
3289
9c46b00a
MR
3290(custom-autoload (quote hebrew-holidays) "calendar")
3291
93548d2e
DL
3292(put (quote christian-holidays) (quote risky-local-variable) t)
3293
390069bc 3294(defvar christian-holidays (quote ((if all-christian-calendar-holidays (holiday-fixed 1 6 "Epiphany")) (holiday-easter-etc 0 "Easter Sunday") (holiday-easter-etc -2 "Good Friday") (holiday-easter-etc -46 "Ash Wednesday") (if all-christian-calendar-holidays (holiday-easter-etc -63 "Septuagesima Sunday")) (if all-christian-calendar-holidays (holiday-easter-etc -56 "Sexagesima Sunday")) (if all-christian-calendar-holidays (holiday-easter-etc -49 "Shrove Sunday")) (if all-christian-calendar-holidays (holiday-easter-etc -48 "Shrove Monday")) (if all-christian-calendar-holidays (holiday-easter-etc -47 "Shrove Tuesday")) (if all-christian-calendar-holidays (holiday-easter-etc -14 "Passion Sunday")) (if all-christian-calendar-holidays (holiday-easter-etc -7 "Palm Sunday")) (if all-christian-calendar-holidays (holiday-easter-etc -3 "Maundy Thursday")) (if all-christian-calendar-holidays (holiday-easter-etc 35 "Rogation Sunday")) (if all-christian-calendar-holidays (holiday-easter-etc 39 "Ascension Day")) (if all-christian-calendar-holidays (holiday-easter-etc 49 "Pentecost (Whitsunday)")) (if all-christian-calendar-holidays (holiday-easter-etc 50 "Whitmonday")) (if all-christian-calendar-holidays (holiday-easter-etc 56 "Trinity Sunday")) (if all-christian-calendar-holidays (holiday-easter-etc 60 "Corpus Christi")) (if all-christian-calendar-holidays (holiday-greek-orthodox-easter)) (if all-christian-calendar-holidays (holiday-fixed 8 15 "Assumption")) (if all-christian-calendar-holidays (holiday-advent 0 "Advent")) (holiday-fixed 12 25 "Christmas") (if all-christian-calendar-holidays (holiday-julian 12 25 "Eastern Orthodox Christmas")))) "\
c1a055ca 3295Christian holidays.
93548d2e
DL
3296See the documentation for `calendar-holidays' for details.")
3297
9c46b00a
MR
3298(custom-autoload (quote christian-holidays) "calendar")
3299
93548d2e
DL
3300(put (quote islamic-holidays) (quote risky-local-variable) t)
3301
3302(defvar islamic-holidays (quote ((holiday-islamic 1 1 (format "Islamic New Year %d" (let ((m displayed-month) (y displayed-year)) (increment-calendar-month m y 1) (extract-calendar-year (calendar-islamic-from-absolute (calendar-absolute-from-gregorian (list m (calendar-last-day-of-month m y) y))))))) (if all-islamic-calendar-holidays (holiday-islamic 1 10 "Ashura")) (if all-islamic-calendar-holidays (holiday-islamic 3 12 "Mulad-al-Nabi")) (if all-islamic-calendar-holidays (holiday-islamic 7 26 "Shab-e-Mi'raj")) (if all-islamic-calendar-holidays (holiday-islamic 8 15 "Shab-e-Bara't")) (holiday-islamic 9 1 "Ramadan Begins") (if all-islamic-calendar-holidays (holiday-islamic 9 27 "Shab-e Qadr")) (if all-islamic-calendar-holidays (holiday-islamic 10 1 "Id-al-Fitr")) (if all-islamic-calendar-holidays (holiday-islamic 12 10 "Id-al-Adha")))) "\
c1a055ca 3303Islamic holidays.
93548d2e
DL
3304See the documentation for `calendar-holidays' for details.")
3305
9c46b00a
MR
3306(custom-autoload (quote islamic-holidays) "calendar")
3307
390069bc
AS
3308(put (quote bahai-holidays) (quote risky-local-variable) t)
3309
3310(defvar bahai-holidays (quote ((holiday-fixed 3 21 (format "Baha'i New Year (Naw-Ruz) %d" (- displayed-year (1- 1844)))) (holiday-fixed 4 21 "First Day of Ridvan") (if all-bahai-calendar-holidays (holiday-fixed 4 22 "Second Day of Ridvan")) (if all-bahai-calendar-holidays (holiday-fixed 4 23 "Third Day of Ridvan")) (if all-bahai-calendar-holidays (holiday-fixed 4 24 "Fourth Day of Ridvan")) (if all-bahai-calendar-holidays (holiday-fixed 4 25 "Fifth Day of Ridvan")) (if all-bahai-calendar-holidays (holiday-fixed 4 26 "Sixth Day of Ridvan")) (if all-bahai-calendar-holidays (holiday-fixed 4 27 "Seventh Day of Ridvan")) (if all-bahai-calendar-holidays (holiday-fixed 4 28 "Eighth Day of Ridvan")) (holiday-fixed 4 29 "Ninth Day of Ridvan") (if all-bahai-calendar-holidays (holiday-fixed 4 30 "Tenth Day of Ridvan")) (if all-bahai-calendar-holidays (holiday-fixed 5 1 "Eleventh Day of Ridvan")) (holiday-fixed 5 2 "Twelfth Day of Ridvan") (holiday-fixed 5 23 "Declaration of the Bab") (holiday-fixed 5 29 "Ascension of Baha'u'llah") (holiday-fixed 7 9 "Martyrdom of the Bab") (holiday-fixed 10 20 "Birth of the Bab") (holiday-fixed 11 12 "Birth of Baha'u'llah") (if all-bahai-calendar-holidays (holiday-fixed 11 26 "Day of the Covenant")) (if all-bahai-calendar-holidays (holiday-fixed 11 28 "Ascension of `Abdu'l-Baha")))) "\
c1a055ca 3311Baha'i holidays.
390069bc
AS
3312See the documentation for `calendar-holidays' for details.")
3313
3314(custom-autoload (quote bahai-holidays) "calendar")
3315
93548d2e
DL
3316(put (quote solar-holidays) (quote risky-local-variable) t)
3317
3318(defvar solar-holidays (quote ((if (fboundp (quote atan)) (solar-equinoxes-solstices)) (if (progn (require (quote cal-dst)) t) (funcall (quote holiday-sexp) calendar-daylight-savings-starts (quote (format "Daylight Savings Time Begins %s" (if (fboundp (quote atan)) (solar-time-string (/ calendar-daylight-savings-starts-time (float 60)) calendar-standard-time-zone-name) ""))))) (funcall (quote holiday-sexp) calendar-daylight-savings-ends (quote (format "Daylight Savings Time Ends %s" (if (fboundp (quote atan)) (solar-time-string (/ calendar-daylight-savings-ends-time (float 60)) calendar-daylight-time-zone-name) "")))))) "\
c1a055ca 3319Sun-related holidays.
93548d2e
DL
3320See the documentation for `calendar-holidays' for details.")
3321
9c46b00a
MR
3322(custom-autoload (quote solar-holidays) "calendar")
3323
93548d2e
DL
3324(put (quote calendar-holidays) (quote risky-local-variable) t)
3325
3326(defvar calendar-setup nil "\
390069bc
AS
3327The frame setup of the calendar.
3328The choices are: `one-frame' (calendar and diary together in one separate,
3329dedicated frame); `two-frames' (calendar and diary in separate, dedicated
3330frames); `calendar-only' (calendar in a separate, dedicated frame); with
bf247b6e 3331any other value the current frame is used. Using any of the first
390069bc
AS
3332three options overrides the value of `view-diary-entries-initially'.")
3333
3334(custom-autoload (quote calendar-setup) "calendar")
93548d2e
DL
3335
3336(autoload (quote calendar) "calendar" "\
3337Choose between the one frame, two frame, or basic calendar displays.
ec2bb97f
EZ
3338If called with an optional prefix argument, prompts for month and year.
3339
3340The original function `calendar' has been renamed `calendar-basic-setup'.
c595cc5f
MR
3341See the documentation of that function for more information.
3342
3343\(fn &optional ARG)" t nil)
93548d2e 3344
be65bdd3 3345(defvar calendar-week-start-day 0 "\
c1a055ca 3346The day of the week on which a week in the calendar begins.
be65bdd3
AS
33470 means Sunday (default), 1 means Monday, and so on.
3348
3349If you change this variable directly (without using customize)
3350after starting `calendar', you should call `redraw-calendar' to
3351update the calendar display to reflect the change, otherwise
3352movement commands will not work correctly.")
3353
3354(custom-autoload (quote calendar-week-start-day) "calendar")
3355
93548d2e
DL
3356;;;***
3357\f
390069bc 3358;;;### (autoloads (canlock-verify canlock-insert-header) "canlock"
a5805c9d 3359;;;;;; "gnus/canlock.el" (17279 27122))
390069bc
AS
3360;;; Generated autoloads from gnus/canlock.el
3361
3362(autoload (quote canlock-insert-header) "canlock" "\
3363Insert a Cancel-Key and/or a Cancel-Lock header if possible.
3364
3365\(fn &optional ID-FOR-KEY ID-FOR-LOCK PASSWORD)" nil nil)
3366
3367(autoload (quote canlock-verify) "canlock" "\
3368Verify Cancel-Lock or Cancel-Key in BUFFER.
3369If BUFFER is nil, the current buffer is assumed. Signal an error if
3370it fails.
3371
3372\(fn &optional BUFFER)" t nil)
3373
3374;;;***
3375\f
0ef3cc90 3376;;;### (autoloads (c-guess-basic-syntax) "cc-engine" "progmodes/cc-engine.el"
a5805c9d 3377;;;;;; (17319 2459))
0ef3cc90
LT
3378;;; Generated autoloads from progmodes/cc-engine.el
3379
3380(autoload (quote c-guess-basic-syntax) "cc-engine" "\
3381Return the syntactic context of the current line.
0ef3cc90
LT
3382
3383\(fn)" nil nil)
3384
3385;;;***
3386\f
93548d2e
DL
3387;;;### (autoloads (pike-mode idl-mode java-mode objc-mode c++-mode
3388;;;;;; c-mode c-initialize-cc-mode) "cc-mode" "progmodes/cc-mode.el"
a5805c9d 3389;;;;;; (17307 17625))
93548d2e
DL
3390;;; Generated autoloads from progmodes/cc-mode.el
3391
c595cc5f 3392(autoload (quote c-initialize-cc-mode) "cc-mode" "\
0c867fa7
MS
3393Initialize CC Mode for use in the current buffer.
3394If the optional NEW-STYLE-INIT is nil or left out then all necessary
3395initialization to run CC Mode for the C language is done. Otherwise
d1978f48
KH
3396only some basic setup is done, and a call to `c-init-language-vars' or
3397`c-init-language-vars-for' is necessary too (which gives more
3398control). See \"cc-mode.el\" for more info.
c595cc5f 3399
0c867fa7
MS
3400\(fn &optional NEW-STYLE-INIT)" nil nil)
3401
3402(defvar c-mode-syntax-table nil "\
3403Syntax table used in c-mode buffers.")
3404 (add-to-list 'auto-mode-alist '("\\.\\(cc\\|hh\\)\\'" . c++-mode))
3405 (add-to-list 'auto-mode-alist '("\\.[ch]\\(pp\\|xx\\|\\+\\+\\)\\'" . c++-mode))
3406 (add-to-list 'auto-mode-alist '("\\.\\(CC?\\|HH?\\)\\'" . c++-mode))
3407 (add-to-list 'auto-mode-alist '("\\.[ch]\\'" . c-mode))
3408 (add-to-list 'auto-mode-alist '("\\.y\\(acc\\)?\\'" . c-mode))
3409 (add-to-list 'auto-mode-alist '("\\.lex\\'" . c-mode))
93548d2e
DL
3410
3411(autoload (quote c-mode) "cc-mode" "\
3412Major mode for editing K&R and ANSI C code.
3413To submit a problem report, enter `\\[c-submit-bug-report]' from a
3414c-mode buffer. This automatically sets up a mail buffer with version
3415information already added. You just need to add a description of the
0c867fa7 3416problem, including a reproducible test case, and send the message.
93548d2e
DL
3417
3418To see what version of CC Mode you are running, enter `\\[c-version]'.
3419
0c867fa7
MS
3420The hook `c-mode-common-hook' is run with no args at mode
3421initialization, then `c-mode-hook'.
93548d2e
DL
3422
3423Key bindings:
c595cc5f
MR
3424\\{c-mode-map}
3425
3426\(fn)" t nil)
93548d2e 3427
0c867fa7
MS
3428(defvar c++-mode-syntax-table nil "\
3429Syntax table used in c++-mode buffers.")
3430
93548d2e
DL
3431(autoload (quote c++-mode) "cc-mode" "\
3432Major mode for editing C++ code.
3433To submit a problem report, enter `\\[c-submit-bug-report]' from a
3434c++-mode buffer. This automatically sets up a mail buffer with
3435version information already added. You just need to add a description
3436of the problem, including a reproducible test case, and send the
3437message.
3438
3439To see what version of CC Mode you are running, enter `\\[c-version]'.
3440
0c867fa7
MS
3441The hook `c-mode-common-hook' is run with no args at mode
3442initialization, then `c++-mode-hook'.
93548d2e
DL
3443
3444Key bindings:
c595cc5f
MR
3445\\{c++-mode-map}
3446
3447\(fn)" t nil)
93548d2e 3448
0c867fa7
MS
3449(defvar objc-mode-syntax-table nil "\
3450Syntax table used in objc-mode buffers.")
3451 (add-to-list 'auto-mode-alist '("\\.m\\'" . objc-mode))
3452
93548d2e
DL
3453(autoload (quote objc-mode) "cc-mode" "\
3454Major mode for editing Objective C code.
3455To submit a problem report, enter `\\[c-submit-bug-report]' from an
3456objc-mode buffer. This automatically sets up a mail buffer with
3457version information already added. You just need to add a description
3458of the problem, including a reproducible test case, and send the
3459message.
3460
3461To see what version of CC Mode you are running, enter `\\[c-version]'.
3462
0c867fa7
MS
3463The hook `c-mode-common-hook' is run with no args at mode
3464initialization, then `objc-mode-hook'.
93548d2e
DL
3465
3466Key bindings:
c595cc5f
MR
3467\\{objc-mode-map}
3468
3469\(fn)" t nil)
93548d2e 3470
0c867fa7
MS
3471(defvar java-mode-syntax-table nil "\
3472Syntax table used in java-mode buffers.")
3473 (add-to-list 'auto-mode-alist '("\\.java\\'" . java-mode))
3474
93548d2e
DL
3475(autoload (quote java-mode) "cc-mode" "\
3476Major mode for editing Java code.
3477To submit a problem report, enter `\\[c-submit-bug-report]' from a
3478java-mode buffer. This automatically sets up a mail buffer with
3479version information already added. You just need to add a description
0c867fa7 3480of the problem, including a reproducible test case, and send the
93548d2e
DL
3481message.
3482
3483To see what version of CC Mode you are running, enter `\\[c-version]'.
3484
0c867fa7
MS
3485The hook `c-mode-common-hook' is run with no args at mode
3486initialization, then `java-mode-hook'.
93548d2e
DL
3487
3488Key bindings:
c595cc5f
MR
3489\\{java-mode-map}
3490
3491\(fn)" t nil)
93548d2e 3492
0c867fa7
MS
3493(defvar idl-mode-syntax-table nil "\
3494Syntax table used in idl-mode buffers.")
3495 (add-to-list 'auto-mode-alist '("\\.idl\\'" . idl-mode))
3496
93548d2e 3497(autoload (quote idl-mode) "cc-mode" "\
0c867fa7 3498Major mode for editing CORBA's IDL, PSDL and CIDL code.
93548d2e
DL
3499To submit a problem report, enter `\\[c-submit-bug-report]' from an
3500idl-mode buffer. This automatically sets up a mail buffer with
3501version information already added. You just need to add a description
3502of the problem, including a reproducible test case, and send the
3503message.
3504
3505To see what version of CC Mode you are running, enter `\\[c-version]'.
3506
0c867fa7
MS
3507The hook `c-mode-common-hook' is run with no args at mode
3508initialization, then `idl-mode-hook'.
93548d2e
DL
3509
3510Key bindings:
c595cc5f
MR
3511\\{idl-mode-map}
3512
3513\(fn)" t nil)
93548d2e 3514
0c867fa7
MS
3515(defvar pike-mode-syntax-table nil "\
3516Syntax table used in pike-mode buffers.")
3517 (add-to-list 'auto-mode-alist '("\\.\\(u?lpc\\|pike\\|pmod\\(.in\\)?\\)\\'" . pike-mode))
3518 (add-to-list 'interpreter-mode-alist '("pike" . pike-mode))
3519
93548d2e
DL
3520(autoload (quote pike-mode) "cc-mode" "\
3521Major mode for editing Pike code.
ec2c2383
CW
3522To submit a problem report, enter `\\[c-submit-bug-report]' from a
3523pike-mode buffer. This automatically sets up a mail buffer with
93548d2e
DL
3524version information already added. You just need to add a description
3525of the problem, including a reproducible test case, and send the
3526message.
3527
3528To see what version of CC Mode you are running, enter `\\[c-version]'.
3529
0c867fa7
MS
3530The hook `c-mode-common-hook' is run with no args at mode
3531initialization, then `pike-mode-hook'.
93548d2e
DL
3532
3533Key bindings:
c595cc5f
MR
3534\\{pike-mode-map}
3535
3536\(fn)" t nil)
0c867fa7
MS
3537 (add-to-list 'auto-mode-alist '("\\.awk\\'" . awk-mode))
3538 (add-to-list 'interpreter-mode-alist '("awk" . awk-mode))
3539 (add-to-list 'interpreter-mode-alist '("mawk" . awk-mode))
3540 (add-to-list 'interpreter-mode-alist '("nawk" . awk-mode))
3541 (add-to-list 'interpreter-mode-alist '("gawk" . awk-mode))
390069bc 3542 (autoload 'awk-mode "cc-mode" "Major mode for editing AWK code." t)
93548d2e
DL
3543
3544;;;***
3545\f
3546;;;### (autoloads (c-set-offset c-add-style c-set-style) "cc-styles"
a5805c9d 3547;;;;;; "progmodes/cc-styles.el" (17307 17625))
93548d2e
DL
3548;;; Generated autoloads from progmodes/cc-styles.el
3549
3550(autoload (quote c-set-style) "cc-styles" "\
c1a055ca
EZ
3551Set the current buffer to use the style STYLENAME.
3552STYLENAME, a string, must be an existing CC Mode style - These are contained
3553in the variable `c-style-alist'.
3554
3555The variable `c-indentation-style' will get set to STYLENAME.
3556
3557\"Setting the style\" is done by setting CC Mode's \"style variables\" to the
3558values indicated by the pertinent entry in `c-style-alist'. Other variables
3559might get set too.
3560
3561If DONT-OVERRIDE is neither nil nor t, style variables whose default values
3562have been set (more precisely, whose default values are not the symbol
3563`set-from-style') will not be changed. This avoids overriding global settings
3564done in ~/.emacs. It is useful to call c-set-style from a mode hook in this
3565way.
3566
3567If DONT-OVERRIDE is t, style variables that already have values (i.e., whose
3568values are not the symbol `set-from-style') will not be overridden. CC Mode
3569calls c-set-style internally in this way whilst initializing a buffer; if
3570cc-set-style is called like this from anywhere else, it will usually behave as
3571a null operation.
c595cc5f
MR
3572
3573\(fn STYLENAME &optional DONT-OVERRIDE)" t nil)
93548d2e
DL
3574
3575(autoload (quote c-add-style) "cc-styles" "\
3576Adds a style to `c-style-alist', or updates an existing one.
0c867fa7
MS
3577STYLE is a string identifying the style to add or update. DESCRIPTION
3578is an association list describing the style and must be of the form:
93548d2e
DL
3579
3580 ([BASESTYLE] (VARIABLE . VALUE) [(VARIABLE . VALUE) ...])
3581
3582See the variable `c-style-alist' for the semantics of BASESTYLE,
3583VARIABLE and VALUE. This function also sets the current style to
c595cc5f
MR
3584STYLE using `c-set-style' if the optional SET-P flag is non-nil.
3585
0c867fa7 3586\(fn STYLE DESCRIPTION &optional SET-P)" t nil)
93548d2e
DL
3587
3588(autoload (quote c-set-offset) "cc-styles" "\
3589Change the value of a syntactic element symbol in `c-offsets-alist'.
3590SYMBOL is the syntactic element symbol to change and OFFSET is the new
5ec14d3c 3591offset for that syntactic element. The optional argument is not used
c595cc5f
MR
3592and exists only for compatibility reasons.
3593
3594\(fn SYMBOL OFFSET &optional IGNORED)" t nil)
93548d2e
DL
3595
3596;;;***
3597\f
a5805c9d
KL
3598;;;### (autoloads nil "cc-subword" "progmodes/cc-subword.el" (17307
3599;;;;;; 17623))
c1a055ca
EZ
3600;;; Generated autoloads from progmodes/cc-subword.el
3601 (autoload 'c-subword-mode "cc-subword" "Mode enabling subword movement and editing keys." t)
3602
3603;;;***
3604\f
93548d2e
DL
3605;;;### (autoloads (ccl-execute-with-args check-ccl-program define-ccl-program
3606;;;;;; declare-ccl-program ccl-dump ccl-compile) "ccl" "international/ccl.el"
a5805c9d 3607;;;;;; (17279 27079))
93548d2e
DL
3608;;; Generated autoloads from international/ccl.el
3609
3610(autoload (quote ccl-compile) "ccl" "\
c595cc5f
MR
3611Return the compiled code of CCL-PROGRAM as a vector of integers.
3612
3613\(fn CCL-PROGRAM)" nil nil)
93548d2e
DL
3614
3615(autoload (quote ccl-dump) "ccl" "\
c595cc5f
MR
3616Disassemble compiled CCL-CODE.
3617
3618\(fn CCL-CODE)" nil nil)
93548d2e
DL
3619
3620(autoload (quote declare-ccl-program) "ccl" "\
3621Declare NAME as a name of CCL program.
3622
3623This macro exists for backward compatibility. In the old version of
3624Emacs, to compile a CCL program which calls another CCL program not
3625yet defined, it must be declared as a CCL program in advance. But,
3626now CCL program names are resolved not at compile time but before
3627execution.
3628
c595cc5f
MR
3629Optional arg VECTOR is a compiled CCL code of the CCL program.
3630
3631\(fn NAME &optional VECTOR)" nil (quote macro))
93548d2e
DL
3632
3633(autoload (quote define-ccl-program) "ccl" "\
3634Set NAME the compiled code of CCL-PROGRAM.
54baed30 3635
2550055a 3636CCL-PROGRAM has this form:
54baed30
GM
3637 (BUFFER_MAGNIFICATION
3638 CCL_MAIN_CODE
3639 [ CCL_EOF_CODE ])
3640
3641BUFFER_MAGNIFICATION is an integer value specifying the approximate
3642output buffer magnification size compared with the bytes of input data
be65bdd3
AS
3643text. It is assured that the actual output buffer has 256 bytes
3644more than the size calculated by BUFFER_MAGNIFICATION.
3645If the value is zero, the CCL program can't execute `read' and
54baed30
GM
3646`write' commands.
3647
3648CCL_MAIN_CODE and CCL_EOF_CODE are CCL program codes. CCL_MAIN_CODE
3649executed at first. If there's no more input data when `read' command
3650is executed in CCL_MAIN_CODE, CCL_EOF_CODE is executed. If
3651CCL_MAIN_CODE is terminated, CCL_EOF_CODE is not executed.
3652
3653Here's the syntax of CCL program code in BNF notation. The lines
3654starting by two semicolons (and optional leading spaces) describe the
3655semantics.
3656
3657CCL_MAIN_CODE := CCL_BLOCK
3658
3659CCL_EOF_CODE := CCL_BLOCK
3660
3661CCL_BLOCK := STATEMENT | (STATEMENT [STATEMENT ...])
3662
3663STATEMENT :=
3664 SET | IF | BRANCH | LOOP | REPEAT | BREAK | READ | WRITE | CALL
87bb8d21 3665 | TRANSLATE | MAP | LOOKUP | END
54baed30
GM
3666
3667SET := (REG = EXPRESSION)
3668 | (REG ASSIGNMENT_OPERATOR EXPRESSION)
3669 ;; The following form is the same as (r0 = integer).
3670 | integer
3671
3672EXPRESSION := ARG | (EXPRESSION OPERATOR ARG)
3673
09938b67 3674;; Evaluate EXPRESSION. If the result is nonzero, execute
54baed30
GM
3675;; CCL_BLOCK_0. Otherwise, execute CCL_BLOCK_1.
3676IF := (if EXPRESSION CCL_BLOCK_0 CCL_BLOCK_1)
3677
3678;; Evaluate EXPRESSION. Provided that the result is N, execute
3679;; CCL_BLOCK_N.
3680BRANCH := (branch EXPRESSION CCL_BLOCK_0 [CCL_BLOCK_1 ...])
3681
3682;; Execute STATEMENTs until (break) or (end) is executed.
3683LOOP := (loop STATEMENT [STATEMENT ...])
3684
3685;; Terminate the most inner loop.
3686BREAK := (break)
3687
3688REPEAT :=
3689 ;; Jump to the head of the most inner loop.
3690 (repeat)
3691 ;; Same as: ((write [REG | integer | string])
3692 ;; (repeat))
3693 | (write-repeat [REG | integer | string])
3694 ;; Same as: ((write REG [ARRAY])
3695 ;; (read REG)
3696 ;; (repeat))
3697 | (write-read-repeat REG [ARRAY])
3698 ;; Same as: ((write integer)
3699 ;; (read REG)
3700 ;; (repeat))
3701 | (write-read-repeat REG integer)
3702
3703READ := ;; Set REG_0 to a byte read from the input text, set REG_1
3704 ;; to the next byte read, and so on.
3705 (read REG_0 [REG_1 ...])
3706 ;; Same as: ((read REG)
3707 ;; (if (REG OPERATOR ARG) CCL_BLOCK_0 CCL_BLOCK_1))
3708 | (read-if (REG OPERATOR ARG) CCL_BLOCK_0 CCL_BLOCK_1)
3709 ;; Same as: ((read REG)
3710 ;; (branch REG CCL_BLOCK_0 [CCL_BLOCK_1 ...]))
3711 | (read-branch REG CCL_BLOCK_0 [CCL_BLOCK_1 ...])
3712 ;; Read a character from the input text while parsing
3713 ;; multibyte representation, set REG_0 to the charset ID of
3714 ;; the character, set REG_1 to the code point of the
3715 ;; character. If the dimension of charset is two, set REG_1
2550055a 3716 ;; to ((CODE0 << 7) | CODE1), where CODE0 is the first code
54baed30
GM
3717 ;; point and CODE1 is the second code point.
3718 | (read-multibyte-character REG_0 REG_1)
3719
3720WRITE :=
3721 ;; Write REG_0, REG_1, ... to the output buffer. If REG_N is
3722 ;; a multibyte character, write the corresponding multibyte
3723 ;; representation.
3724 (write REG_0 [REG_1 ...])
3725 ;; Same as: ((r7 = EXPRESSION)
3726 ;; (write r7))
3727 | (write EXPRESSION)
3728 ;; Write the value of `integer' to the output buffer. If it
3729 ;; is a multibyte character, write the corresponding multibyte
3730 ;; representation.
3731 | (write integer)
3732 ;; Write the byte sequence of `string' as is to the output
3733 ;; buffer.
3734 | (write string)
3735 ;; Same as: (write string)
3736 | string
3737 ;; Provided that the value of REG is N, write Nth element of
3738 ;; ARRAY to the output buffer. If it is a multibyte
3739 ;; character, write the corresponding multibyte
3740 ;; representation.
3741 | (write REG ARRAY)
3742 ;; Write a multibyte representation of a character whose
3743 ;; charset ID is REG_0 and code point is REG_1. If the
3744 ;; dimension of the charset is two, REG_1 should be ((CODE0 <<
2550055a 3745 ;; 7) | CODE1), where CODE0 is the first code point and CODE1
54baed30
GM
3746 ;; is the second code point of the character.
3747 | (write-multibyte-character REG_0 REG_1)
3748
3749;; Call CCL program whose name is ccl-program-name.
3750CALL := (call ccl-program-name)
3751
3752;; Terminate the CCL program.
3753END := (end)
3754
3755;; CCL registers that can contain any integer value. As r7 is also
3756;; used by CCL interpreter, its value is changed unexpectedly.
3757REG := r0 | r1 | r2 | r3 | r4 | r5 | r6 | r7
3758
3759ARG := REG | integer
3760
3761OPERATOR :=
3762 ;; Normal arithmethic operators (same meaning as C code).
3763 + | - | * | / | %
3764
3765 ;; Bitwize operators (same meaning as C code)
3766 | & | `|' | ^
3767
3768 ;; Shifting operators (same meaning as C code)
3769 | << | >>
3770
3771 ;; (REG = ARG_0 <8 ARG_1) means:
3772 ;; (REG = ((ARG_0 << 8) | ARG_1))
3773 | <8
3774
3775 ;; (REG = ARG_0 >8 ARG_1) means:
3776 ;; ((REG = (ARG_0 >> 8))
3777 ;; (r7 = (ARG_0 & 255)))
3778 | >8
3779
3780 ;; (REG = ARG_0 // ARG_1) means:
3781 ;; ((REG = (ARG_0 / ARG_1))
3782 ;; (r7 = (ARG_0 % ARG_1)))
3783 | //
3784
3785 ;; Normal comparing operators (same meaning as C code)
3786 | < | > | == | <= | >= | !=
3787
3788 ;; If ARG_0 and ARG_1 are higher and lower byte of Shift-JIS
3789 ;; code, and CHAR is the corresponding JISX0208 character,
3790 ;; (REG = ARG_0 de-sjis ARG_1) means:
3791 ;; ((REG = CODE0)
3792 ;; (r7 = CODE1))
3793 ;; where CODE0 is the first code point of CHAR, CODE1 is the
3794 ;; second code point of CHAR.
3795 | de-sjis
3796
3797 ;; If ARG_0 and ARG_1 are the first and second code point of
3798 ;; JISX0208 character CHAR, and SJIS is the correponding
3799 ;; Shift-JIS code,
3800 ;; (REG = ARG_0 en-sjis ARG_1) means:
3801 ;; ((REG = HIGH)
3802 ;; (r7 = LOW))
3803 ;; where HIGH is the higher byte of SJIS, LOW is the lower
3804 ;; byte of SJIS.
3805 | en-sjis
3806
3807ASSIGNMENT_OPERATOR :=
3808 ;; Same meaning as C code
3809 += | -= | *= | /= | %= | &= | `|=' | ^= | <<= | >>=
3810
3811 ;; (REG <8= ARG) is the same as:
3812 ;; ((REG <<= 8)
3813 ;; (REG |= ARG))
c595cc5f 3814 | <8=
54baed30
GM
3815
3816 ;; (REG >8= ARG) is the same as:
3817 ;; ((r7 = (REG & 255))
3818 ;; (REG >>= 8))
3819
3820 ;; (REG //= ARG) is the same as:
3821 ;; ((r7 = (REG % ARG))
3822 ;; (REG /= ARG))
3823 | //=
3824
3825ARRAY := `[' integer ... `]'
3826
3827
3828TRANSLATE :=
3829 (translate-character REG(table) REG(charset) REG(codepoint))
3830 | (translate-character SYMBOL REG(charset) REG(codepoint))
2a55cd3a 3831 ;; SYMBOL must refer to a table defined by `define-translation-table'.
87bb8d21
MR
3832LOOKUP :=
3833 (lookup-character SYMBOL REG(charset) REG(codepoint))
3834 | (lookup-integer SYMBOL REG(integer))
27a99a7c 3835 ;; SYMBOL refers to a table defined by `define-translation-hash-table'.
54baed30
GM
3836MAP :=
3837 (iterate-multiple-map REG REG MAP-IDs)
3838 | (map-multiple REG REG (MAP-SET))
3839 | (map-single REG REG MAP-ID)
3840MAP-IDs := MAP-ID ...
3841MAP-SET := MAP-IDs | (MAP-IDs) MAP-SET
3842MAP-ID := integer
c595cc5f
MR
3843
3844\(fn NAME CCL-PROGRAM &optional DOC)" nil (quote macro))
93548d2e
DL
3845
3846(autoload (quote check-ccl-program) "ccl" "\
3847Check validity of CCL-PROGRAM.
3848If CCL-PROGRAM is a symbol denoting a CCL program, return
3849CCL-PROGRAM, else return nil.
3850If CCL-PROGRAM is a vector and optional arg NAME (symbol) is supplied,
c595cc5f
MR
3851register CCL-PROGRAM by name NAME, and return NAME.
3852
3853\(fn CCL-PROGRAM &optional NAME)" nil (quote macro))
93548d2e
DL
3854
3855(autoload (quote ccl-execute-with-args) "ccl" "\
3856Execute CCL-PROGRAM with registers initialized by the remaining args.
54baed30
GM
3857The return value is a vector of resulting CCL registers.
3858
c595cc5f
MR
3859See the documentation of `define-ccl-program' for the detail of CCL program.
3860
3861\(fn CCL-PROG &rest ARGS)" nil nil)
93548d2e
DL
3862
3863;;;***
3864\f
92e9233f 3865;;;### (autoloads (cfengine-mode) "cfengine" "progmodes/cfengine.el"
a5805c9d 3866;;;;;; (17279 27123))
92e9233f
MR
3867;;; Generated autoloads from progmodes/cfengine.el
3868
3869(autoload (quote cfengine-mode) "cfengine" "\
3870Major mode for editing cfengine input.
3871There are no special keybindings by default.
3872
3873Action blocks are treated as defuns, i.e. \\[beginning-of-defun] moves
3874to the action header.
3875
3876\(fn)" t nil)
3877
3878;;;***
3879\f
93548d2e
DL
3880;;;### (autoloads (checkdoc-minor-mode checkdoc-ispell-defun checkdoc-ispell-comments
3881;;;;;; checkdoc-ispell-continue checkdoc-ispell-start checkdoc-ispell-message-text
3882;;;;;; checkdoc-ispell-message-interactive checkdoc-ispell-interactive
3883;;;;;; checkdoc-ispell-current-buffer checkdoc-ispell checkdoc-defun
3884;;;;;; checkdoc-eval-defun checkdoc-message-text checkdoc-rogue-spaces
b5c5b319 3885;;;;;; checkdoc-comments checkdoc-continue checkdoc-start checkdoc-current-buffer
93548d2e
DL
3886;;;;;; checkdoc-eval-current-buffer checkdoc-message-interactive
3887;;;;;; checkdoc-interactive checkdoc) "checkdoc" "emacs-lisp/checkdoc.el"
a5805c9d 3888;;;;;; (17279 27171))
93548d2e
DL
3889;;; Generated autoloads from emacs-lisp/checkdoc.el
3890
3891(autoload (quote checkdoc) "checkdoc" "\
87bb8d21
MR
3892Interactively check the entire buffer for style errors.
3893The current status of the check will be displayed in a buffer which
c595cc5f
MR
3894the users will view as each check is completed.
3895
3896\(fn)" t nil)
93548d2e
DL
3897
3898(autoload (quote checkdoc-interactive) "checkdoc" "\
3899Interactively check the current buffer for doc string errors.
3900Prefix argument START-HERE will start the checking from the current
3901point, otherwise the check starts at the beginning of the current
3902buffer. Allows navigation forward and backwards through document
3903errors. Does not check for comment or space warnings.
3904Optional argument SHOWSTATUS indicates that we should update the
c595cc5f
MR
3905checkdoc status window instead of the usual behavior.
3906
3907\(fn &optional START-HERE SHOWSTATUS)" t nil)
93548d2e
DL
3908
3909(autoload (quote checkdoc-message-interactive) "checkdoc" "\
3910Interactively check the current buffer for message string errors.
3911Prefix argument START-HERE will start the checking from the current
3912point, otherwise the check starts at the beginning of the current
3913buffer. Allows navigation forward and backwards through document
3914errors. Does not check for comment or space warnings.
3915Optional argument SHOWSTATUS indicates that we should update the
c595cc5f
MR
3916checkdoc status window instead of the usual behavior.
3917
3918\(fn &optional START-HERE SHOWSTATUS)" t nil)
93548d2e
DL
3919
3920(autoload (quote checkdoc-eval-current-buffer) "checkdoc" "\
3921Evaluate and check documentation for the current buffer.
3922Evaluation is done first because good documentation for something that
3923doesn't work is just not useful. Comments, doc strings, and rogue
c595cc5f
MR
3924spacing are all verified.
3925
3926\(fn)" t nil)
93548d2e
DL
3927
3928(autoload (quote checkdoc-current-buffer) "checkdoc" "\
3929Check current buffer for document, comment, error style, and rogue spaces.
3930With a prefix argument (in Lisp, the argument TAKE-NOTES),
3931store all errors found in a warnings buffer,
c595cc5f
MR
3932otherwise stop after the first error.
3933
3934\(fn &optional TAKE-NOTES)" t nil)
93548d2e
DL
3935
3936(autoload (quote checkdoc-start) "checkdoc" "\
3937Start scanning the current buffer for documentation string style errors.
3938Only documentation strings are checked.
3939Use `checkdoc-continue' to continue checking if an error cannot be fixed.
3940Prefix argument TAKE-NOTES means to collect all the warning messages into
c595cc5f
MR
3941a separate buffer.
3942
3943\(fn &optional TAKE-NOTES)" t nil)
93548d2e
DL
3944
3945(autoload (quote checkdoc-continue) "checkdoc" "\
3946Find the next doc string in the current buffer which has a style error.
3947Prefix argument TAKE-NOTES means to continue through the whole buffer and
3948save warnings in a separate buffer. Second optional argument START-POINT
c595cc5f
MR
3949is the starting location. If this is nil, `point-min' is used instead.
3950
3951\(fn &optional TAKE-NOTES)" t nil)
93548d2e 3952
b5c5b319
GM
3953(autoload (quote checkdoc-comments) "checkdoc" "\
3954Find missing comment sections in the current Emacs Lisp file.
3955Prefix argument TAKE-NOTES non-nil means to save warnings in a
3956separate buffer. Otherwise print a message. This returns the error
c595cc5f
MR
3957if there is one.
3958
3959\(fn &optional TAKE-NOTES)" t nil)
b5c5b319 3960
93548d2e
DL
3961(autoload (quote checkdoc-rogue-spaces) "checkdoc" "\
3962Find extra spaces at the end of lines in the current file.
3963Prefix argument TAKE-NOTES non-nil means to save warnings in a
3964separate buffer. Otherwise print a message. This returns the error
3965if there is one.
c595cc5f
MR
3966Optional argument INTERACT permits more interactive fixing.
3967
3968\(fn &optional TAKE-NOTES INTERACT)" t nil)
93548d2e
DL
3969
3970(autoload (quote checkdoc-message-text) "checkdoc" "\
3971Scan the buffer for occurrences of the error function, and verify text.
c595cc5f
MR
3972Optional argument TAKE-NOTES causes all errors to be logged.
3973
3974\(fn &optional TAKE-NOTES)" t nil)
93548d2e
DL
3975
3976(autoload (quote checkdoc-eval-defun) "checkdoc" "\
3977Evaluate the current form with `eval-defun' and check its documentation.
3978Evaluation is done first so the form will be read before the
3979documentation is checked. If there is a documentation error, then the display
c595cc5f
MR
3980of what was evaluated will be overwritten by the diagnostic message.
3981
3982\(fn)" t nil)
93548d2e
DL
3983
3984(autoload (quote checkdoc-defun) "checkdoc" "\
3985Examine the doc string of the function or variable under point.
3986Call `error' if the doc string has problems. If NO-ERROR is
3987non-nil, then do not call error, but call `message' instead.
3988If the doc string passes the test, then check the function for rogue white
c595cc5f
MR
3989space at the end of each line.
3990
3991\(fn &optional NO-ERROR)" t nil)
93548d2e
DL
3992
3993(autoload (quote checkdoc-ispell) "checkdoc" "\
3994Check the style and spelling of everything interactively.
3995Calls `checkdoc' with spell-checking turned on.
c595cc5f
MR
3996Prefix argument TAKE-NOTES is the same as for `checkdoc'
3997
3998\(fn &optional TAKE-NOTES)" t nil)
93548d2e
DL
3999
4000(autoload (quote checkdoc-ispell-current-buffer) "checkdoc" "\
4001Check the style and spelling of the current buffer.
4002Calls `checkdoc-current-buffer' with spell-checking turned on.
c595cc5f
MR
4003Prefix argument TAKE-NOTES is the same as for `checkdoc-current-buffer'
4004
4005\(fn &optional TAKE-NOTES)" t nil)
93548d2e
DL
4006
4007(autoload (quote checkdoc-ispell-interactive) "checkdoc" "\
4008Check the style and spelling of the current buffer interactively.
4009Calls `checkdoc-interactive' with spell-checking turned on.
c595cc5f
MR
4010Prefix argument TAKE-NOTES is the same as for `checkdoc-interactive'
4011
4012\(fn &optional TAKE-NOTES)" t nil)
93548d2e
DL
4013
4014(autoload (quote checkdoc-ispell-message-interactive) "checkdoc" "\
4015Check the style and spelling of message text interactively.
4016Calls `checkdoc-message-interactive' with spell-checking turned on.
c595cc5f
MR
4017Prefix argument TAKE-NOTES is the same as for `checkdoc-message-interactive'
4018
4019\(fn &optional TAKE-NOTES)" t nil)
93548d2e
DL
4020
4021(autoload (quote checkdoc-ispell-message-text) "checkdoc" "\
4022Check the style and spelling of message text interactively.
4023Calls `checkdoc-message-text' with spell-checking turned on.
c595cc5f
MR
4024Prefix argument TAKE-NOTES is the same as for `checkdoc-message-text'
4025
4026\(fn &optional TAKE-NOTES)" t nil)
93548d2e
DL
4027
4028(autoload (quote checkdoc-ispell-start) "checkdoc" "\
4029Check the style and spelling of the current buffer.
4030Calls `checkdoc-start' with spell-checking turned on.
c595cc5f
MR
4031Prefix argument TAKE-NOTES is the same as for `checkdoc-start'
4032
4033\(fn &optional TAKE-NOTES)" t nil)
93548d2e
DL
4034
4035(autoload (quote checkdoc-ispell-continue) "checkdoc" "\
4036Check the style and spelling of the current buffer after point.
4037Calls `checkdoc-continue' with spell-checking turned on.
c595cc5f
MR
4038Prefix argument TAKE-NOTES is the same as for `checkdoc-continue'
4039
4040\(fn &optional TAKE-NOTES)" t nil)
93548d2e
DL
4041
4042(autoload (quote checkdoc-ispell-comments) "checkdoc" "\
4043Check the style and spelling of the current buffer's comments.
4044Calls `checkdoc-comments' with spell-checking turned on.
c595cc5f
MR
4045Prefix argument TAKE-NOTES is the same as for `checkdoc-comments'
4046
4047\(fn &optional TAKE-NOTES)" t nil)
93548d2e
DL
4048
4049(autoload (quote checkdoc-ispell-defun) "checkdoc" "\
4050Check the style and spelling of the current defun with Ispell.
4051Calls `checkdoc-defun' with spell-checking turned on.
c595cc5f
MR
4052Prefix argument TAKE-NOTES is the same as for `checkdoc-defun'
4053
4054\(fn &optional TAKE-NOTES)" t nil)
93548d2e
DL
4055
4056(autoload (quote checkdoc-minor-mode) "checkdoc" "\
4057Toggle Checkdoc minor mode, a mode for checking Lisp doc strings.
4058With prefix ARG, turn Checkdoc minor mode on iff ARG is positive.
4059
4060In Checkdoc minor mode, the usual bindings for `eval-defun' which is
390069bc 4061bound to \\<checkdoc-minor-mode-map>\\[checkdoc-eval-defun] and `checkdoc-eval-current-buffer' are overridden to include
93548d2e
DL
4062checking of documentation strings.
4063
c595cc5f
MR
4064\\{checkdoc-minor-mode-map}
4065
4066\(fn &optional ARG)" t nil)
93548d2e
DL
4067
4068;;;***
4069\f
4070;;;### (autoloads (encode-hz-buffer encode-hz-region decode-hz-buffer
a5805c9d
KL
4071;;;;;; decode-hz-region) "china-util" "language/china-util.el" (17279
4072;;;;;; 27080))
93548d2e
DL
4073;;; Generated autoloads from language/china-util.el
4074
93548d2e
DL
4075(autoload (quote decode-hz-region) "china-util" "\
4076Decode HZ/ZW encoded text in the current region.
c595cc5f
MR
4077Return the length of resulting text.
4078
4079\(fn BEG END)" t nil)
93548d2e
DL
4080
4081(autoload (quote decode-hz-buffer) "china-util" "\
c595cc5f
MR
4082Decode HZ/ZW encoded text in the current buffer.
4083
4084\(fn)" t nil)
93548d2e
DL
4085
4086(autoload (quote encode-hz-region) "china-util" "\
4087Encode the text in the current region to HZ.
c595cc5f
MR
4088Return the length of resulting text.
4089
4090\(fn BEG END)" t nil)
93548d2e
DL
4091
4092(autoload (quote encode-hz-buffer) "china-util" "\
c595cc5f
MR
4093Encode the text in the current buffer to HZ.
4094
4095\(fn)" t nil)
93548d2e
DL
4096
4097;;;***
4098\f
0a352cd7 4099;;;### (autoloads (command-history list-command-history repeat-matching-complex-command)
a5805c9d 4100;;;;;; "chistory" "chistory.el" (17279 27122))
93548d2e
DL
4101;;; Generated autoloads from chistory.el
4102
4103(autoload (quote repeat-matching-complex-command) "chistory" "\
4104Edit and re-evaluate complex command with name matching PATTERN.
4105Matching occurrences are displayed, most recent first, until you select
4106a form for evaluation. If PATTERN is empty (or nil), every form in the
4107command history is offered. The form is placed in the minibuffer for
c595cc5f
MR
4108editing and the result is evaluated.
4109
4110\(fn &optional PATTERN)" t nil)
93548d2e
DL
4111
4112(autoload (quote list-command-history) "chistory" "\
4113List history of commands typed to minibuffer.
4114The number of commands listed is controlled by `list-command-history-max'.
4115Calls value of `list-command-history-filter' (if non-nil) on each history
4116element to judge if that element should be excluded from the list.
4117
c595cc5f
MR
4118The buffer is left in Command History mode.
4119
4120\(fn)" t nil)
93548d2e 4121
0a352cd7
GM
4122(autoload (quote command-history) "chistory" "\
4123Examine commands from `command-history' in a buffer.
93548d2e
DL
4124The number of commands listed is controlled by `list-command-history-max'.
4125The command history is filtered by `list-command-history-filter' if non-nil.
4126Use \\<command-history-map>\\[command-history-repeat] to repeat the command on the current line.
4127
4128Otherwise much like Emacs-Lisp Mode except that there is no self-insertion
4129and digits provide prefix arguments. Tab does not indent.
4130\\{command-history-map}
0a352cd7
GM
4131
4132This command always recompiles the Command History listing
c595cc5f
MR
4133and runs the normal hook `command-history-hook'.
4134
4135\(fn)" t nil)
93548d2e
DL
4136
4137;;;***
4138\f
a5805c9d 4139;;;### (autoloads nil "cl" "emacs-lisp/cl.el" (17376 5576))
93548d2e
DL
4140;;; Generated autoloads from emacs-lisp/cl.el
4141
4142(defvar custom-print-functions nil "\
4143This is a list of functions that format user objects for printing.
4144Each function is called in turn with three arguments: the object, the
4145stream, and the print level (currently ignored). If it is able to
4146print the object it returns true; otherwise it returns nil and the
4147printer proceeds to the next function on the list.
4148
4149This variable is not used at present, but it is defined in hopes that
4150a future Emacs interpreter will be able to use it.")
4151
4152;;;***
4153\f
4154;;;### (autoloads (common-lisp-indent-function) "cl-indent" "emacs-lisp/cl-indent.el"
a5805c9d 4155;;;;;; (17279 27122))
93548d2e
DL
4156;;; Generated autoloads from emacs-lisp/cl-indent.el
4157
c595cc5f
MR
4158(autoload (quote common-lisp-indent-function) "cl-indent" "\
4159Not documented
4160
4161\(fn INDENT-POINT STATE)" nil nil)
93548d2e
DL
4162
4163;;;***
4164\f
4165;;;### (autoloads (c-macro-expand) "cmacexp" "progmodes/cmacexp.el"
a5805c9d 4166;;;;;; (17279 27172))
93548d2e
DL
4167;;; Generated autoloads from progmodes/cmacexp.el
4168
4169(autoload (quote c-macro-expand) "cmacexp" "\
4170Expand C macros in the region, using the C preprocessor.
4171Normally display output in temp buffer, but
4172prefix arg means replace the region with it.
4173
4174`c-macro-preprocessor' specifies the preprocessor to use.
0ef3cc90
LT
4175Tf the user option `c-macro-prompt-flag' is non-nil
4176prompt for arguments to the preprocessor (e.g. `-DDEBUG -I ./include'),
4177otherwise use `c-macro-cppflags'.
93548d2e
DL
4178
4179Noninteractive args are START, END, SUBST.
c595cc5f
MR
4180For use inside Lisp programs, see also `c-macro-expansion'.
4181
4182\(fn START END SUBST)" t nil)
93548d2e
DL
4183
4184;;;***
4185\f
a5805c9d
KL
4186;;;### (autoloads (run-scheme) "cmuscheme" "cmuscheme.el" (17279
4187;;;;;; 27122))
93548d2e
DL
4188;;; Generated autoloads from cmuscheme.el
4189
4190(autoload (quote run-scheme) "cmuscheme" "\
0ef3cc90 4191Run an inferior Scheme process, input and output via buffer `*scheme*'.
93548d2e
DL
4192If there is a process already running in `*scheme*', switch to that buffer.
4193With argument, allows you to edit the command line (default is value
0ef3cc90
LT
4194of `scheme-program-name').
4195If a file `~/.emacs_SCHEMENAME' exists, it is given as initial input.
4196Note that this may lose due to a timing error if the Scheme processor
4197discards input when it starts up.
4198Runs the hook `inferior-scheme-mode-hook' (after the `comint-mode-hook'
4199is run).
c595cc5f
MR
4200\(Type \\[describe-mode] in the process buffer for a list of commands.)
4201
4202\(fn CMD)" t nil)
93548d2e
DL
4203 (add-hook 'same-window-buffer-names "*scheme*")
4204
4205;;;***
4206\f
4c6bc877 4207;;;### (autoloads (cp-make-coding-system) "code-pages" "international/code-pages.el"
a5805c9d 4208;;;;;; (17357 6508))
4c6bc877
MR
4209;;; Generated autoloads from international/code-pages.el
4210
4211(autoload (quote cp-make-coding-system) "code-pages" "\
4212Make coding system NAME for and 8-bit, extended-ASCII character set.
4213V is a 128-long vector of characters to translate the upper half of
932a6f0f 4214the character set. DOC-STRING and MNEMONIC are used as the
4c6bc877 4215corresponding args of `make-coding-system'. If MNEMONIC isn't given,
c595cc5f 4216?* is used.
932a6f0f 4217Return an updated `non-iso-charset-alist'.
c595cc5f
MR
4218
4219\(fn NAME V &optional DOC-STRING MNEMONIC)" nil (quote macro))
0ef3cc90
LT
4220(autoload-coding-system 'cp437 '(require 'code-pages))
4221(autoload-coding-system 'cp737 '(require 'code-pages))
4222(autoload-coding-system 'cp775 '(require 'code-pages))
4223(autoload-coding-system 'cp850 '(require 'code-pages))
4224(autoload-coding-system 'cp851 '(require 'code-pages))
4225(autoload-coding-system 'cp852 '(require 'code-pages))
4226(autoload-coding-system 'cp855 '(require 'code-pages))
4227(autoload-coding-system 'cp857 '(require 'code-pages))
4228(autoload-coding-system 'cp860 '(require 'code-pages))
4229(autoload-coding-system 'cp861 '(require 'code-pages))
4230(autoload-coding-system 'cp862 '(require 'code-pages))
4231(autoload-coding-system 'cp863 '(require 'code-pages))
4232(autoload-coding-system 'cp864 '(require 'code-pages))
4233(autoload-coding-system 'cp865 '(require 'code-pages))
4234(autoload-coding-system 'cp866 '(require 'code-pages))
4235(autoload-coding-system 'cp869 '(require 'code-pages))
4236(autoload-coding-system 'cp874 '(require 'code-pages))
be65bdd3 4237(autoload-coding-system 'windows-1250 '(require 'code-pages))
c1a055ca 4238(autoload-coding-system 'cp1250 '(require 'code-pages))
be65bdd3 4239(autoload-coding-system 'windows-1253 '(require 'code-pages))
c1a055ca 4240(autoload-coding-system 'cp1253 '(require 'code-pages))
be65bdd3 4241(autoload-coding-system 'windows-1254 '(require 'code-pages))
c1a055ca 4242(autoload-coding-system 'cp1254 '(require 'code-pages))
be65bdd3 4243(autoload-coding-system 'windows-1255 '(require 'code-pages))
c1a055ca 4244(autoload-coding-system 'cp1255 '(require 'code-pages))
be65bdd3 4245(autoload-coding-system 'windows-1256 '(require 'code-pages))
c1a055ca 4246(autoload-coding-system 'cp1256 '(require 'code-pages))
be65bdd3 4247(autoload-coding-system 'windows-1257 '(require 'code-pages))
c1a055ca 4248(autoload-coding-system 'cp1257 '(require 'code-pages))
be65bdd3 4249(autoload-coding-system 'windows-1258 '(require 'code-pages))
c1a055ca 4250(autoload-coding-system 'cp1258 '(require 'code-pages))
0ef3cc90
LT
4251(autoload-coding-system 'next '(require 'code-pages))
4252(autoload-coding-system 'koi8-t '(require 'code-pages))
be65bdd3 4253(autoload-coding-system 'iso-8859-16 '(require 'code-pages))
0ef3cc90 4254(autoload-coding-system 'iso-8859-6 '(require 'code-pages))
be65bdd3
AS
4255(autoload-coding-system 'iso-8859-10 '(require 'code-pages))
4256(autoload-coding-system 'iso-8859-13 '(require 'code-pages))
4257(autoload-coding-system 'georgian-ps '(require 'code-pages))
0ef3cc90
LT
4258(autoload-coding-system 'cp720 '(require 'code-pages))
4259(autoload-coding-system 'cp1125 '(require 'code-pages))
4260(autoload-coding-system 'mik '(require 'code-pages))
92e9233f
MR
4261(autoload-coding-system 'pt154 '(require 'code-pages))
4262(autoload-coding-system 'iso-8859-11 '(require 'code-pages))
4c6bc877
MR
4263
4264;;;***
4265\f
93548d2e
DL
4266;;;### (autoloads (codepage-setup cp-supported-codepages cp-offset-for-codepage
4267;;;;;; cp-language-for-codepage cp-charset-for-codepage cp-make-coding-systems-for-codepage)
a5805c9d 4268;;;;;; "codepage" "international/codepage.el" (17279 27171))
93548d2e
DL
4269;;; Generated autoloads from international/codepage.el
4270
4271(autoload (quote cp-make-coding-systems-for-codepage) "codepage" "\
4272Create a coding system to convert IBM CODEPAGE into charset ISO-NAME
4273whose first character is at offset OFFSET from the beginning of 8-bit
4274ASCII table.
4275
4276The created coding system has the usual 3 subsidiary systems: for Unix-,
4277DOS- and Mac-style EOL conversion. However, unlike built-in coding
4278systems, the Mac-style EOL conversion is currently not supported by the
c595cc5f
MR
4279decoder and encoder created by this function.
4280
4281\(fn CODEPAGE ISO-NAME OFFSET)" nil nil)
93548d2e
DL
4282
4283(autoload (quote cp-charset-for-codepage) "codepage" "\
4284Return the charset for which there is a translation table to DOS CODEPAGE.
c595cc5f
MR
4285CODEPAGE must be the name of a DOS codepage, a string.
4286
4287\(fn CODEPAGE)" nil nil)
93548d2e
DL
4288
4289(autoload (quote cp-language-for-codepage) "codepage" "\
4290Return the name of the MULE language environment for CODEPAGE.
c595cc5f
MR
4291CODEPAGE must be the name of a DOS codepage, a string.
4292
4293\(fn CODEPAGE)" nil nil)
93548d2e
DL
4294
4295(autoload (quote cp-offset-for-codepage) "codepage" "\
4296Return the offset to be used in setting up coding systems for CODEPAGE.
c595cc5f
MR
4297CODEPAGE must be the name of a DOS codepage, a string.
4298
4299\(fn CODEPAGE)" nil nil)
93548d2e
DL
4300
4301(autoload (quote cp-supported-codepages) "codepage" "\
4302Return an alist of supported codepages.
4303
4304Each association in the alist has the form (NNN . CHARSET), where NNN is the
4305codepage number, and CHARSET is the MULE charset which is the closest match
4306for the character set supported by that codepage.
4307
4308A codepage NNN is supported if a variable called `cpNNN-decode-table' exists,
c595cc5f
MR
4309is a vector, and has a charset property.
4310
4311\(fn)" nil nil)
93548d2e
DL
4312
4313(autoload (quote codepage-setup) "codepage" "\
4314Create a coding system cpCODEPAGE to support the IBM codepage CODEPAGE.
4315
4316These coding systems are meant for encoding and decoding 8-bit non-ASCII
4317characters used by the IBM codepages, typically in conjunction with files
c595cc5f
MR
4318read/written by MS-DOS software, or for display on the MS-DOS terminal.
4319
4320\(fn CODEPAGE)" t nil)
93548d2e
DL
4321
4322;;;***
4323\f
cded5ed3
GM
4324;;;### (autoloads (comint-redirect-results-list-from-process comint-redirect-results-list
4325;;;;;; comint-redirect-send-command-to-process comint-redirect-send-command
0ad84a21 4326;;;;;; comint-run make-comint make-comint-in-buffer) "comint" "comint.el"
a5805c9d 4327;;;;;; (17279 27202))
93548d2e
DL
4328;;; Generated autoloads from comint.el
4329
d66d64bc
KL
4330(defvar comint-output-filter-functions (quote (comint-postoutput-scroll-to-bottom comint-watch-for-password-prompt)) "\
4331Functions to call after output is inserted into the buffer.
4332One possible function is `comint-postoutput-scroll-to-bottom'.
4333These functions get one argument, a string containing the text as originally
4334inserted. Note that this might not be the same as the buffer contents between
4335`comint-last-output-start' and the buffer's `process-mark', if other filter
4336functions have already modified the buffer.
4337
4338See also `comint-preoutput-filter-functions'.
4339
4340You can use `add-hook' to add functions to this list
4341either globally or locally.")
4342
0ef3cc90 4343(define-obsolete-variable-alias (quote comint-use-prompt-regexp-instead-of-fields) (quote comint-use-prompt-regexp) "22.1")
d66d64bc 4344
0ad84a21 4345(autoload (quote make-comint-in-buffer) "comint" "\
390069bc 4346Make a Comint process NAME in BUFFER, running PROGRAM.
0ad84a21
MB
4347If BUFFER is nil, it defaults to NAME surrounded by `*'s.
4348PROGRAM should be either a string denoting an executable program to create
4349via `start-process', or a cons pair of the form (HOST . SERVICE) denoting a TCP
4350connection to be opened via `open-network-stream'. If there is already a
d66d64bc 4351running process in that buffer, it is not restarted. Optional fourth arg
0ad84a21
MB
4352STARTFILE is the name of a file to send the contents of to the process.
4353
c595cc5f
MR
4354If PROGRAM is a string, any more args are arguments to PROGRAM.
4355
4356\(fn NAME BUFFER PROGRAM &optional STARTFILE &rest SWITCHES)" nil nil)
0ad84a21 4357
93548d2e 4358(autoload (quote make-comint) "comint" "\
390069bc 4359Make a Comint process NAME in a buffer, running PROGRAM.
93548d2e
DL
4360The name of the buffer is made by surrounding NAME with `*'s.
4361PROGRAM should be either a string denoting an executable program to create
4362via `start-process', or a cons pair of the form (HOST . SERVICE) denoting a TCP
4363connection to be opened via `open-network-stream'. If there is already a
4364running process in that buffer, it is not restarted. Optional third arg
390069bc 4365STARTFILE is the name of a file to send the contents of the process to.
93548d2e 4366
c595cc5f
MR
4367If PROGRAM is a string, any more args are arguments to PROGRAM.
4368
4369\(fn NAME PROGRAM &optional STARTFILE &rest SWITCHES)" nil nil)
93548d2e
DL
4370
4371(autoload (quote comint-run) "comint" "\
390069bc 4372Run PROGRAM in a Comint buffer and switch to it.
93548d2e
DL
4373The buffer name is made by surrounding the file name of PROGRAM with `*'s.
4374The file name is used to make a symbol name, such as `comint-sh-hook', and any
4375hooks on this symbol are run in the buffer.
c595cc5f
MR
4376See `make-comint' and `comint-exec'.
4377
4378\(fn PROGRAM)" t nil)
93548d2e 4379
fbf34973
KL
4380(defvar comint-file-name-prefix "" "\
4381Prefix prepended to absolute file names taken from process input.
4382This is used by Comint's and shell's completion functions, and by shell's
4383directory tracking functions.")
4384
cded5ed3
GM
4385(autoload (quote comint-redirect-send-command) "comint" "\
4386Send COMMAND to process in current buffer, with output to OUTPUT-BUFFER.
390069bc 4387With prefix arg ECHO, echo output in process buffer.
cded5ed3 4388
c595cc5f
MR
4389If NO-DISPLAY is non-nil, do not show the output buffer.
4390
4391\(fn COMMAND OUTPUT-BUFFER ECHO &optional NO-DISPLAY)" t nil)
cded5ed3
GM
4392
4393(autoload (quote comint-redirect-send-command-to-process) "comint" "\
4394Send COMMAND to PROCESS, with output to OUTPUT-BUFFER.
4395With prefix arg, echo output in process buffer.
4396
c595cc5f
MR
4397If NO-DISPLAY is non-nil, do not show the output buffer.
4398
4399\(fn COMMAND OUTPUT-BUFFER PROCESS ECHO &optional NO-DISPLAY)" t nil)
cded5ed3
GM
4400
4401(autoload (quote comint-redirect-results-list) "comint" "\
0ad84a21 4402Send COMMAND to current process.
cded5ed3 4403Return a list of expressions in the output which match REGEXP.
c595cc5f
MR
4404REGEXP-GROUP is the regular expression group in REGEXP to use.
4405
4406\(fn COMMAND REGEXP REGEXP-GROUP)" nil nil)
cded5ed3
GM
4407
4408(autoload (quote comint-redirect-results-list-from-process) "comint" "\
0ad84a21 4409Send COMMAND to PROCESS.
cded5ed3 4410Return a list of expressions in the output which match REGEXP.
c595cc5f
MR
4411REGEXP-GROUP is the regular expression group in REGEXP to use.
4412
4413\(fn PROCESS COMMAND REGEXP REGEXP-GROUP)" nil nil)
cded5ed3 4414
93548d2e
DL
4415;;;***
4416\f
a5805c9d
KL
4417;;;### (autoloads (compare-windows) "compare-w" "compare-w.el" (17308
4418;;;;;; 43144))
93548d2e
DL
4419;;; Generated autoloads from compare-w.el
4420
4421(autoload (quote compare-windows) "compare-w" "\
4422Compare text in current window with text in next window.
4423Compares the text starting at point in each window,
4424moving over text in each one as far as they match.
4425
4426This command pushes the mark in each window
4427at the prior location of point in that window.
4428If both windows display the same buffer,
4429the mark is pushed twice in that buffer:
4430first in the other window, then in the selected window.
4431
92e9233f
MR
4432A prefix arg means reverse the value of variable
4433`compare-ignore-whitespace'. If `compare-ignore-whitespace' is
4434nil, then a prefix arg means ignore changes in whitespace. If
4435`compare-ignore-whitespace' is non-nil, then a prefix arg means
4436don't ignore changes in whitespace. The variable
4437`compare-windows-whitespace' controls how whitespace is skipped.
4438If `compare-ignore-case' is non-nil, changes in case are also
4439ignored.
4440
4441If `compare-windows-sync' is non-nil, then successive calls of
4442this command work in interlaced mode:
4443on first call it advances points to the next difference,
4444on second call it synchronizes points by skipping the difference,
4445on third call it again advances points to the next difference and so on.
c595cc5f
MR
4446
4447\(fn IGNORE-WHITESPACE)" t nil)
93548d2e
DL
4448
4449;;;***
4450\f
390069bc 4451;;;### (autoloads (compilation-next-error-function compilation-minor-mode
fbf34973 4452;;;;;; compilation-shell-minor-mode compilation-mode compilation-start
175a97e4 4453;;;;;; compile compilation-disable-input compile-command compilation-search-path
93548d2e 4454;;;;;; compilation-ask-about-save compilation-window-height compilation-mode-hook)
a5805c9d 4455;;;;;; "compile" "progmodes/compile.el" (17319 1478))
93548d2e
DL
4456;;; Generated autoloads from progmodes/compile.el
4457
4458(defvar compilation-mode-hook nil "\
0ef3cc90 4459*List of hook functions run by `compilation-mode' (see `run-mode-hooks').")
93548d2e 4460
9c46b00a
MR
4461(custom-autoload (quote compilation-mode-hook) "compile")
4462
93548d2e
DL
4463(defvar compilation-window-height nil "\
4464*Number of lines in a compilation window. If nil, use Emacs default.")
4465
9c46b00a
MR
4466(custom-autoload (quote compilation-window-height) "compile")
4467
93548d2e
DL
4468(defvar compilation-process-setup-function nil "\
4469*Function to call to customize the compilation process.
390069bc 4470This function is called immediately before the compilation process is
93548d2e 4471started. It can be used to set any variables or functions that are used
390069bc
AS
4472while processing the output of the compilation process. The function
4473is called with variables `compilation-buffer' and `compilation-window'
4474bound to the compilation buffer and window, respectively.")
93548d2e
DL
4475
4476(defvar compilation-buffer-name-function nil "\
4477Function to compute the name of a compilation buffer.
4478The function receives one argument, the name of the major mode of the
4479compilation buffer. It should return a string.
4480nil means compute the name with `(concat \"*\" (downcase major-mode) \"*\")'.")
4481
4482(defvar compilation-finish-function nil "\
4483Function to call when a compilation process finishes.
4484It is called with two arguments: the compilation buffer, and a string
4485describing how the process finished.")
4486
4487(defvar compilation-finish-functions nil "\
4488Functions to call when a compilation process finishes.
4489Each function is called with two arguments: the compilation buffer,
4490and a string describing how the process finished.")
4491
4492(defvar compilation-ask-about-save t "\
cded5ed3 4493*Non-nil means \\[compile] asks which buffers to save before compiling.
93548d2e
DL
4494Otherwise, it saves all modified buffers without asking.")
4495
9c46b00a
MR
4496(custom-autoload (quote compilation-ask-about-save) "compile")
4497
93548d2e
DL
4498(defvar compilation-search-path (quote (nil)) "\
4499*List of directories to search for source files named in error messages.
4500Elements should be directory names, not file names of directories.
4501nil as an element means to try the default directory.")
4502
9c46b00a
MR
4503(custom-autoload (quote compilation-search-path) "compile")
4504
175a97e4
EZ
4505(defvar compile-command "make -k " "\
4506*Last shell command used to do a compilation; default for next compilation.
4507
4508Sometimes it is useful for files to supply local values for this variable.
4509You might also use mode hooks to specify it in certain modes, like this:
4510
4511 (add-hook 'c-mode-hook
4512 (lambda ()
4513 (unless (or (file-exists-p \"makefile\")
4514 (file-exists-p \"Makefile\"))
4515 (set (make-local-variable 'compile-command)
4516 (concat \"make -k \"
4517 (file-name-sans-extension buffer-file-name))))))")
4518
4519(custom-autoload (quote compile-command) "compile")
4520
4521(defvar compilation-disable-input nil "\
4522*If non-nil, send end-of-file as compilation process input.
4523This only affects platforms that support asynchronous processes (see
4524`start-process'); synchronous compilation processes never accept input.")
4525
4526(custom-autoload (quote compilation-disable-input) "compile")
4527
93548d2e
DL
4528(autoload (quote compile) "compile" "\
4529Compile the program including the current buffer. Default: run `make'.
4530Runs COMMAND, a shell command, in a separate process asynchronously
4531with output going to the buffer `*compilation*'.
4532
390069bc
AS
4533If optional second arg COMINT is t the buffer will be in Comint mode with
4534`compilation-shell-minor-mode'.
4535
93548d2e
DL
4536You can then use the command \\[next-error] to find the next error message
4537and move to the source code that caused it.
4538
4539Interactively, prompts for the command if `compilation-read-command' is
4540non-nil; otherwise uses `compile-command'. With prefix arg, always prompts.
390069bc
AS
4541Additionally, with universal prefix arg, compilation buffer will be in
4542comint mode, i.e. interactive.
93548d2e 4543
0c867fa7
MS
4544To run more than one compilation at once, start one and rename
4545the `*compilation*' buffer to some other name with
4546\\[rename-buffer]. Then start the next one. On most systems,
4547termination of the main compilation process kills its
4548subprocesses.
93548d2e
DL
4549
4550The name used for the buffer is actually whatever is returned by
4551the function in `compilation-buffer-name-function', so you can set that
c595cc5f
MR
4552to a function that generates a unique name.
4553
390069bc 4554\(fn COMMAND &optional COMINT)" t nil)
df2d7e04 4555
fbf34973
KL
4556(autoload (quote compilation-start) "compile" "\
4557Run compilation command COMMAND (low level interface).
4558If COMMAND starts with a cd command, that becomes the `default-directory'.
4559The rest of the arguments are optional; for them, nil means use the default.
4560
4561MODE is the major mode to set in the compilation buffer. Mode
4562may also be t meaning use `compilation-shell-minor-mode' under `comint-mode'.
4563If NAME-FUNCTION is non-nil, call it with one argument (the mode name)
4564to determine the buffer name.
4565
4566If HIGHLIGHT-REGEXP is non-nil, `next-error' will temporarily highlight
4567the matching section of the visited source line; the default is to use the
4568global value of `compilation-highlight-regexp'.
4569
4570Returns the compilation buffer created.
4571
4572\(fn COMMAND &optional MODE NAME-FUNCTION HIGHLIGHT-REGEXP)" nil nil)
4573
93548d2e
DL
4574(autoload (quote compilation-mode) "compile" "\
4575Major mode for compilation log buffers.
4576\\<compilation-mode-map>To visit the source for a line-numbered error,
4577move point to the error message line and type \\[compile-goto-error].
4578To kill the compilation, type \\[kill-compilation].
4579
0ef3cc90 4580Runs `compilation-mode-hook' with `run-mode-hooks' (which see).
c595cc5f 4581
390069bc
AS
4582\\{compilation-mode-map}
4583
c595cc5f 4584\(fn &optional NAME-OF-MODE)" t nil)
93548d2e
DL
4585
4586(autoload (quote compilation-shell-minor-mode) "compile" "\
4587Toggle compilation shell minor mode.
4588With arg, turn compilation mode on if and only if arg is positive.
c595cc5f
MR
4589In this minor mode, all the error-parsing commands of the
4590Compilation major mode are available but bound to keys that don't
4591collide with Shell mode. See `compilation-mode'.
4592Turning the mode on runs the normal hook `compilation-shell-minor-mode-hook'.
4593
4594\(fn &optional ARG)" t nil)
93548d2e
DL
4595
4596(autoload (quote compilation-minor-mode) "compile" "\
4597Toggle compilation minor mode.
4598With arg, turn compilation mode on if and only if arg is positive.
c595cc5f
MR
4599In this minor mode, all the error-parsing commands of the
4600Compilation major mode are available. See `compilation-mode'.
4601Turning the mode on runs the normal hook `compilation-minor-mode-hook'.
4602
4603\(fn &optional ARG)" t nil)
93548d2e 4604
390069bc 4605(autoload (quote compilation-next-error-function) "compile" "\
ac09dc1e
KL
4606Advance to the next error message and visit the file where the error was.
4607This is the value of `next-error-function' in Compilation buffers.
c595cc5f 4608
390069bc 4609\(fn N &optional RESET)" t nil)
93548d2e 4610
d66d64bc
KL
4611(add-to-list (quote auto-mode-alist) (quote ("\\.gcov\\'" . compilation-mode)))
4612
93548d2e
DL
4613;;;***
4614\f
b442e70a 4615;;;### (autoloads (partial-completion-mode) "complete" "complete.el"
a5805c9d 4616;;;;;; (17319 2459))
93548d2e
DL
4617;;; Generated autoloads from complete.el
4618
f75a0f7a 4619(defvar partial-completion-mode nil "\
2a55cd3a 4620Non-nil if Partial-Completion mode is enabled.
bd02b8e0 4621See the command `partial-completion-mode' for a description of this minor-mode.
b442e70a
MB
4622Setting this variable directly does not take effect;
4623use either \\[customize] or the function `partial-completion-mode'.")
f75a0f7a 4624
9c46b00a 4625(custom-autoload (quote partial-completion-mode) "complete")
f75a0f7a 4626
ac09dc1e
KL
4627(put (quote partial-completion-mode) (quote custom-set) (quote custom-set-minor-mode))
4628
93548d2e
DL
4629(autoload (quote partial-completion-mode) "complete" "\
4630Toggle Partial Completion mode.
4631With prefix ARG, turn Partial Completion mode on if ARG is positive.
4632
4633When Partial Completion mode is enabled, TAB (or M-TAB if `PC-meta-flag' is
4634nil) is enhanced so that if some string is divided into words and each word is
4635delimited by a character in `PC-word-delimiters', partial words are completed
b442e70a 4636as much as possible and `*' characters are treated likewise in file names.
93548d2e
DL
4637
4638For example, M-x p-c-m expands to M-x partial-completion-mode since no other
4639command begins with that sequence of characters, and
4640\\[find-file] f_b.c TAB might complete to foo_bar.c if that file existed and no
4641other file in that directory begin with that sequence of characters.
4642
2a55cd3a 4643Unless `PC-disable-includes' is non-nil, the `<...>' sequence is interpreted
93548d2e 4644specially in \\[find-file]. For example,
2a55cd3a 4645\\[find-file] <sys/time.h> RET finds the file `/usr/include/sys/time.h'.
c595cc5f
MR
4646See also the variable `PC-include-file-path'.
4647
c1a055ca
EZ
4648Partial Completion mode extends the meaning of `completion-auto-help' (which
4649see), so that if it is neither nil nor t, Emacs shows the `*Completions*'
4650buffer only on the second attempt to complete. That is, if TAB finds nothing
4651to complete, the first TAB just says \"Next char not unique\" and the
4652second TAB brings up the `*Completions*' buffer.
4653
c595cc5f 4654\(fn &optional ARG)" t nil)
93548d2e
DL
4655
4656;;;***
4657\f
4658;;;### (autoloads (dynamic-completion-mode) "completion" "completion.el"
a5805c9d 4659;;;;;; (17374 21534))
93548d2e
DL
4660;;; Generated autoloads from completion.el
4661
c1a055ca
EZ
4662(defvar dynamic-completion-mode nil "\
4663Non-nil if Dynamic-Completion mode is enabled.
4664See the command `dynamic-completion-mode' for a description of this minor-mode.
4665Setting this variable directly does not take effect;
4666use either \\[customize] or the function `dynamic-completion-mode'.")
4667
4668(custom-autoload (quote dynamic-completion-mode) "completion")
4669
4670(put (quote dynamic-completion-mode) (quote custom-set) (quote custom-set-minor-mode))
4671
93548d2e 4672(autoload (quote dynamic-completion-mode) "completion" "\
c595cc5f
MR
4673Enable dynamic word-completion.
4674
c1a055ca 4675\(fn &optional ARG)" t nil)
93548d2e
DL
4676
4677;;;***
4678\f
5ec14d3c
KH
4679;;;### (autoloads (decompose-composite-char compose-last-chars compose-chars-after
4680;;;;;; find-composition compose-chars decompose-string compose-string
390069bc 4681;;;;;; decompose-region compose-region encode-composition-rule)
a5805c9d 4682;;;;;; "composite" "composite.el" (17327 23539))
5ec14d3c
KH
4683;;; Generated autoloads from composite.el
4684
4685(defconst reference-point-alist (quote ((tl . 0) (tc . 1) (tr . 2) (Bl . 3) (Bc . 4) (Br . 5) (bl . 6) (bc . 7) (br . 8) (cl . 9) (cc . 10) (cr . 11) (top-left . 0) (top-center . 1) (top-right . 2) (base-left . 3) (base-center . 4) (base-right . 5) (bottom-left . 6) (bottom-center . 7) (bottom-right . 8) (center-left . 9) (center-center . 10) (center-right . 11) (ml . 3) (mc . 10) (mr . 5) (mid-left . 3) (mid-center . 10) (mid-right . 5))) "\
4686Alist of symbols vs integer codes of glyph reference points.
4687A glyph reference point symbol is to be used to specify a composition
4688rule in COMPONENTS argument to such functions as `compose-region' and
4689`make-composition'.
4690
4691Meanings of glyph reference point codes are as follows:
4692
4693 0----1----2 <---- ascent 0:tl or top-left
4694 | | 1:tc or top-center
4695 | | 2:tr or top-right
4696 | | 3:Bl or base-left 9:cl or center-left
4697 9 10 11 <---- center 4:Bc or base-center 10:cc or center-center
4698 | | 5:Br or base-right 11:cr or center-right
4699 --3----4----5-- <-- baseline 6:bl or bottom-left
4700 | | 7:bc or bottom-center
4701 6----7----8 <---- descent 8:br or bottom-right
4702
4703Glyph reference point symbols are to be used to specify composition
4704rule of the form (GLOBAL-REF-POINT . NEW-REF-POINT), where
4705GLOBAL-REF-POINT is a reference point in the overall glyphs already
4706composed, and NEW-REF-POINT is a reference point in the new glyph to
4707be added.
4708
4709For instance, if GLOBAL-REF-POINT is `br' (bottom-right) and
e5c8f6f1 4710NEW-REF-POINT is `tc' (top-center), the overall glyph is updated as
5ec14d3c
KH
4711follows (the point `*' corresponds to both reference points):
4712
4713 +-------+--+ <--- new ascent
4714 | | |
4715 | global| |
4716 | glyph | |
4717 -- | | |-- <--- baseline (doesn't change)
4718 +----+--*--+
4719 | | new |
4720 | |glyph|
4721 +----+-----+ <--- new descent
4722")
4723
390069bc
AS
4724(autoload (quote encode-composition-rule) "composite" "\
4725Encode composition rule RULE into an integer value.
4726RULE is a cons of global and new reference point symbols
0ef3cc90 4727\(see `reference-point-alist').
390069bc
AS
4728
4729\(fn RULE)" nil nil)
4730
5ec14d3c
KH
4731(autoload (quote compose-region) "composite" "\
4732Compose characters in the current region.
4733
296d7669
KS
4734Characters are composed relatively, i.e. composed by overstricking or
4735stacking depending on ascent, descent and other properties.
4736
5ec14d3c
KH
4737When called from a program, expects these four arguments.
4738
4739First two arguments START and END are positions (integers or markers)
4740specifying the region.
4741
4742Optional 3rd argument COMPONENTS, if non-nil, is a character or a
296d7669
KS
4743sequence (vector, list, or string) of integers. In this case,
4744characters are composed not relatively but according to COMPONENTS.
5ec14d3c
KH
4745
4746If it is a character, it is an alternate character to display instead
4747of the text in the region.
4748
4749If it is a string, the elements are alternate characters.
4750
4751If it is a vector or list, it is a sequence of alternate characters and
4752composition rules, where (2N)th elements are characters and (2N+1)th
4753elements are composition rules to specify how to compose (2N+2)th
4754elements with previously composed N glyphs.
4755
4756A composition rule is a cons of global and new glyph reference point
4757symbols. See the documentation of `reference-point-alist' for more
4758detail.
4759
4760Optional 4th argument MODIFICATION-FUNC is a function to call to
4761adjust the composition when it gets invalid because of a change of
c595cc5f
MR
4762text in the composition.
4763
4764\(fn START END &optional COMPONENTS MODIFICATION-FUNC)" t nil)
5ec14d3c
KH
4765
4766(autoload (quote decompose-region) "composite" "\
4767Decompose text in the current region.
4768
4769When called from a program, expects two arguments,
c595cc5f
MR
4770positions (integers or markers) specifying the region.
4771
4772\(fn START END)" t nil)
5ec14d3c
KH
4773
4774(autoload (quote compose-string) "composite" "\
4775Compose characters in string STRING.
4776
4777The return value is STRING where `composition' property is put on all
4778the characters in it.
4779
4780Optional 2nd and 3rd arguments START and END specify the range of
0ef3cc90 4781STRING to be composed. They default to the beginning and the end of
5ec14d3c
KH
4782STRING respectively.
4783
4784Optional 4th argument COMPONENTS, if non-nil, is a character or a
4785sequence (vector, list, or string) of integers. See the function
4786`compose-region' for more detail.
4787
4788Optional 5th argument MODIFICATION-FUNC is a function to call to
4789adjust the composition when it gets invalid because of a change of
c595cc5f
MR
4790text in the composition.
4791
4792\(fn STRING &optional START END COMPONENTS MODIFICATION-FUNC)" nil nil)
5ec14d3c
KH
4793
4794(autoload (quote decompose-string) "composite" "\
c595cc5f
MR
4795Return STRING where `composition' property is removed.
4796
4797\(fn STRING)" nil nil)
5ec14d3c
KH
4798
4799(autoload (quote compose-chars) "composite" "\
4800Return a string from arguments in which all characters are composed.
4801For relative composition, arguments are characters.
4802For rule-based composition, Mth (where M is odd) arguments are
4803characters, and Nth (where N is even) arguments are composition rules.
4804A composition rule is a cons of glyph reference points of the form
4805\(GLOBAL-REF-POINT . NEW-REF-POINT). See the documentation of
c595cc5f
MR
4806`reference-point-alist' for more detail.
4807
4808\(fn &rest ARGS)" nil nil)
5ec14d3c
KH
4809
4810(autoload (quote find-composition) "composite" "\
4811Return information about a composition at or nearest to buffer position POS.
4812
4813If the character at POS has `composition' property, the value is a list
4814of FROM, TO, and VALID-P.
4815
4816FROM and TO specify the range of text that has the same `composition'
4817property, VALID-P is non-nil if and only if this composition is valid.
4818
4819If there's no composition at POS, and the optional 2nd argument LIMIT
4820is non-nil, search for a composition toward LIMIT.
4821
4822If no composition is found, return nil.
4823
4824Optional 3rd argument STRING, if non-nil, is a string to look for a
4825composition in; nil means the current buffer.
4826
4827If a valid composition is found and the optional 4th argument DETAIL-P
4828is non-nil, the return value is a list of FROM, TO, COMPONENTS,
4829RELATIVE-P, MOD-FUNC, and WIDTH.
4830
4831COMPONENTS is a vector of integers, the meaning depends on RELATIVE-P.
4832
4833RELATIVE-P is t if the composition method is relative, else nil.
4834
4835If RELATIVE-P is t, COMPONENTS is a vector of characters to be
4836composed. If RELATIVE-P is nil, COMPONENTS is a vector of characters
4837and composition rules as described in `compose-region'.
4838
4839MOD-FUNC is a modification function of the composition.
4840
c595cc5f
MR
4841WIDTH is a number of columns the composition occupies on the screen.
4842
4843\(fn POS &optional LIMIT STRING DETAIL-P)" nil nil)
abb2db1c 4844
5ec14d3c
KH
4845(autoload (quote compose-chars-after) "composite" "\
4846Compose characters in current buffer after position POS.
4847
4848It looks up the char-table `composition-function-table' (which see) by
4849a character after POS. If non-nil value is found, the format of the
4850value should be an alist of PATTERNs vs FUNCs, where PATTERNs are
4851regular expressions and FUNCs are functions. If the text after POS
4852matches one of PATTERNs, call the corresponding FUNC with three
4853arguments POS, TO, and PATTERN, where TO is the end position of text
4854matching PATTERN, and return what FUNC returns. Otherwise, return
4855nil.
4856
4857FUNC is responsible for composing the text properly. The return value
4858is:
4859 nil -- if no characters were composed.
4860 CHARS (integer) -- if CHARS characters were composed.
4861
4862Optional 2nd arg LIMIT, if non-nil, limits the matching of text.
4863
bd02b8e0
GM
4864Optional 3rd arg OBJECT, if non-nil, is a string that contains the
4865text to compose. In that case, POS and LIMIT index to the string.
4866
c595cc5f
MR
4867This function is the default value of `compose-chars-after-function'.
4868
4869\(fn POS &optional LIMIT OBJECT)" nil nil)
5ec14d3c
KH
4870
4871(autoload (quote compose-last-chars) "composite" "\
4872Compose last characters.
ac95a621
GM
4873The argument is a parameterized event of the form
4874 (compose-last-chars N COMPONENTS),
4875where N is the number of characters before point to compose,
4876COMPONENTS, if non-nil, is the same as the argument to `compose-region'
4877\(which see). If it is nil, `compose-chars-after' is called,
0ef3cc90 4878and that function finds a proper rule to compose the target characters.
5ec14d3c
KH
4879This function is intended to be used from input methods.
4880The global keymap binds special event `compose-last-chars' to this
ac95a621 4881function. Input method may generate an event (compose-last-chars N COMPONENTS)
0ef3cc90 4882after a sequence of character events.
c595cc5f
MR
4883
4884\(fn ARGS)" t nil)
5ec14d3c
KH
4885(global-set-key [compose-last-chars] 'compose-last-chars)
4886
4887(autoload (quote decompose-composite-char) "composite" "\
4888Convert CHAR to string.
5ec14d3c
KH
4889
4890If optional 2nd arg TYPE is non-nil, it is `string', `list', or
821b278f 4891`vector'. In this case, CHAR is converted to string, list of CHAR, or
c595cc5f 4892vector of CHAR respectively.
821b278f 4893Optional 3rd arg WITH-COMPOSITION-RULE is ignored.
c595cc5f
MR
4894
4895\(fn CHAR &optional TYPE WITH-COMPOSITION-RULE)" nil nil)
5ec14d3c 4896
87bb8d21
MR
4897(make-obsolete (quote decompose-composite-char) (quote char-to-string) "21.1")
4898
5ec14d3c
KH
4899;;;***
4900\f
390069bc
AS
4901;;;### (autoloads (conf-xdefaults-mode conf-ppd-mode conf-colon-mode
4902;;;;;; conf-space-mode conf-javaprop-mode conf-windows-mode conf-unix-mode
a5805c9d 4903;;;;;; conf-mode) "conf-mode" "textmodes/conf-mode.el" (17279 27198))
390069bc
AS
4904;;; Generated autoloads from textmodes/conf-mode.el
4905
4906(autoload (quote conf-mode) "conf-mode" "\
4907Mode for Unix and Windows Conf files and Java properties.
4908Most conf files know only three kinds of constructs: parameter
4909assignments optionally grouped into sections and comments. Yet
4910there is a great range of variation in the exact syntax of conf
4911files. See below for various wrapper commands that set up the
4912details for some of the most widespread variants.
4913
4914This mode sets up font locking, outline, imenu and it provides
4915alignment support through `conf-align-assignments'. If strings
4916come out wrong, try `conf-quote-normal'.
4917
4918Some files allow continuation lines, either with a backslash at
4919the end of line, or by indenting the next line (further). These
4920constructs cannot currently be recognized.
4921
4922Because of this great variety of nuances, which are often not
4923even clearly specified, please don't expect it to get every file
4924quite right. Patches that clearly identify some special case,
4925without breaking the general ones, are welcome.
4926
4927If instead you start this mode with the generic `conf-mode'
4928command, it will parse the buffer. It will generally well
4929identify the first four cases listed below. If the buffer
4930doesn't have enough contents to decide, this is identical to
4931`conf-windows-mode' on Windows, elsewhere to `conf-unix-mode'.
4932See also `conf-space-mode', `conf-colon-mode', `conf-javaprop-mode',
4933`conf-ppd-mode' and `conf-xdefaults-mode'.
4934
4935\\{conf-mode-map}
4936
59e085e0 4937\(fn)" t nil)
390069bc
AS
4938
4939(autoload (quote conf-unix-mode) "conf-mode" "\
4940Conf Mode starter for Unix style Conf files.
4941Comments start with `#'.
4942For details see `conf-mode'. Example:
4943
175a97e4 4944# Conf mode font-locks this right on Unix and with \\[conf-unix-mode]
390069bc
AS
4945
4946\[Desktop Entry]
4947 Encoding=UTF-8
4948 Name=The GIMP
4949 Name[ca]=El GIMP
4950 Name[cs]=GIMP
4951
4952\(fn)" t nil)
4953
4954(autoload (quote conf-windows-mode) "conf-mode" "\
4955Conf Mode starter for Windows style Conf files.
4956Comments start with `;'.
4957For details see `conf-mode'. Example:
4958
175a97e4 4959; Conf mode font-locks this right on Windows and with \\[conf-windows-mode]
390069bc
AS
4960
4961\[ExtShellFolderViews]
4962Default={5984FFE0-28D4-11CF-AE66-08002B2E1262}
4963{5984FFE0-28D4-11CF-AE66-08002B2E1262}={5984FFE0-28D4-11CF-AE66-08002B2E1262}
4964
4965\[{5984FFE0-28D4-11CF-AE66-08002B2E1262}]
4966PersistMoniker=file://Folder.htt
4967
4968\(fn)" t nil)
4969
4970(autoload (quote conf-javaprop-mode) "conf-mode" "\
4971Conf Mode starter for Java properties files.
4972Comments start with `#' but are also recognized with `//' or
4973between `/*' and `*/'.
4974For details see `conf-mode'. Example:
4975
175a97e4 4976# Conf mode font-locks this right with \\[conf-javaprop-mode] (Java properties)
390069bc
AS
4977// another kind of comment
4978/* yet another */
4979
4980name:value
4981name=value
4982name value
4983x.1 =
4984x.2.y.1.z.1 =
4985x.2.y.1.z.2.zz =
4986
4987\(fn)" t nil)
4988
4989(autoload (quote conf-space-mode) "conf-mode" "\
4990Conf Mode starter for space separated conf files.
4991\"Assignments\" are with ` '. Keywords before the parameters are
4992recognized according to `conf-space-keywords'. Interactively
4993with a prefix ARG of `0' no keywords will be recognized. With
4994any other prefix arg you will be prompted for a regexp to match
59e085e0 4995the keywords.
390069bc
AS
4996
4997For details see `conf-mode'. Example:
4998
175a97e4 4999# Conf mode font-locks this right with \\[conf-space-mode] (space separated)
390069bc
AS
5000
5001image/jpeg jpeg jpg jpe
5002image/png png
5003image/tiff tiff tif
5004
5005# Or with keywords (from a recognized file name):
5006class desktop
5007# Standard multimedia devices
5008add /dev/audio desktop
5009add /dev/mixer desktop
5010
59e085e0 5011\(fn)" t nil)
390069bc
AS
5012
5013(autoload (quote conf-colon-mode) "conf-mode" "\
5014Conf Mode starter for Colon files.
5015\"Assignments\" are with `:'.
5016For details see `conf-mode'. Example:
5017
175a97e4 5018# Conf mode font-locks this right with \\[conf-colon-mode] (colon)
390069bc
AS
5019
5020<Multi_key> <exclam> <exclam> : \"\\241\" exclamdown
5021<Multi_key> <c> <slash> : \"\\242\" cent
5022
59e085e0 5023\(fn)" t nil)
390069bc
AS
5024
5025(autoload (quote conf-ppd-mode) "conf-mode" "\
5026Conf Mode starter for Adobe/CUPS PPD files.
5027Comments start with `*%' and \"assignments\" are with `:'.
5028For details see `conf-mode'. Example:
5029
175a97e4 5030*% Conf mode font-locks this right with \\[conf-ppd-mode] (PPD)
390069bc
AS
5031
5032*DefaultTransfer: Null
5033*Transfer Null.Inverse: \"{ 1 exch sub }\"
5034
5035\(fn)" t nil)
5036
5037(autoload (quote conf-xdefaults-mode) "conf-mode" "\
5038Conf Mode starter for Xdefaults files.
5039Comments start with `!' and \"assignments\" are with `:'.
5040For details see `conf-mode'. Example:
5041
175a97e4 5042! Conf mode font-locks this right with \\[conf-xdefaults-mode] (.Xdefaults)
390069bc
AS
5043
5044*background: gray99
5045*foreground: black
5046
5047\(fn)" t nil)
5048
5049;;;***
5050\f
93548d2e 5051;;;### (autoloads (shuffle-vector cookie-snarf cookie-insert cookie)
a5805c9d 5052;;;;;; "cookie1" "play/cookie1.el" (17279 27123))
93548d2e
DL
5053;;; Generated autoloads from play/cookie1.el
5054
5055(autoload (quote cookie) "cookie1" "\
8d8d8d4e
EZ
5056Return a random phrase from PHRASE-FILE.
5057When the phrase file is read in, display STARTMSG at the beginning
c595cc5f
MR
5058of load, ENDMSG at the end.
5059
5060\(fn PHRASE-FILE STARTMSG ENDMSG)" nil nil)
93548d2e
DL
5061
5062(autoload (quote cookie-insert) "cookie1" "\
8d8d8d4e
EZ
5063Insert random phrases from PHRASE-FILE; COUNT of them.
5064When the phrase file is read in, display STARTMSG at the beginning
c595cc5f
MR
5065of load, ENDMSG at the end.
5066
5067\(fn PHRASE-FILE &optional COUNT STARTMSG ENDMSG)" nil nil)
93548d2e
DL
5068
5069(autoload (quote cookie-snarf) "cookie1" "\
5070Reads in the PHRASE-FILE, returns it as a vector of strings.
5071Emit STARTMSG and ENDMSG before and after. Caches the result; second
c595cc5f
MR
5072and subsequent calls on the same file won't go to disk.
5073
5074\(fn PHRASE-FILE STARTMSG ENDMSG)" nil nil)
93548d2e
DL
5075
5076(autoload (quote shuffle-vector) "cookie1" "\
c595cc5f
MR
5077Randomly permute the elements of VECTOR (all permutations equally likely).
5078
5079\(fn VECTOR)" nil nil)
93548d2e
DL
5080
5081;;;***
5082\f
be65bdd3 5083;;;### (autoloads (copyright copyright-fix-years copyright-update)
a5805c9d 5084;;;;;; "copyright" "emacs-lisp/copyright.el" (17279 27122))
93548d2e
DL
5085;;; Generated autoloads from emacs-lisp/copyright.el
5086
5087(autoload (quote copyright-update) "copyright" "\
33c18c83
RS
5088Update copyright notice at beginning of buffer to indicate the current year.
5089With prefix ARG, replace the years in the notice rather than adding
5090the current year after them. If necessary, and
5091`copyright-current-gpl-version' is set, any copying permissions
c595cc5f 5092following the copyright are updated as well.
27a99a7c
GM
5093If non-nil, INTERACTIVEP tells the function to behave as when it's called
5094interactively.
c595cc5f 5095
27a99a7c 5096\(fn &optional ARG INTERACTIVEP)" t nil)
93548d2e 5097
be65bdd3
AS
5098(autoload (quote copyright-fix-years) "copyright" "\
5099Convert 2 digit years to 4 digit years.
5100Uses heuristic: year >= 50 means 19xx, < 50 means 20xx.
5101
5102\(fn)" t nil)
5103
93548d2e 5104(autoload (quote copyright) "copyright" "\
27a99a7c
GM
5105Insert a copyright by $ORGANIZATION notice at cursor.
5106
5107\(fn &optional STR ARG)" t nil)
93548d2e
DL
5108
5109;;;***
5110\f
5111;;;### (autoloads (cperl-mode) "cperl-mode" "progmodes/cperl-mode.el"
a5805c9d 5112;;;;;; (17279 27203))
93548d2e
DL
5113;;; Generated autoloads from progmodes/cperl-mode.el
5114
5115(autoload (quote cperl-mode) "cperl-mode" "\
5116Major mode for editing Perl code.
5117Expression and list commands understand all C brackets.
5118Tab indents for Perl code.
5119Paragraphs are separated by blank lines only.
5120Delete converts tabs to spaces as it moves back.
5121
5122Various characters in Perl almost always come in pairs: {}, (), [],
5123sometimes <>. When the user types the first, she gets the second as
5124well, with optional special formatting done on {}. (Disabled by
5125default.) You can always quote (with \\[quoted-insert]) the left
5126\"paren\" to avoid the expansion. The processing of < is special,
4c6bc877 5127since most the time you mean \"less\". CPerl mode tries to guess
93548d2e
DL
5128whether you want to type pair <>, and inserts is if it
5129appropriate. You can set `cperl-electric-parens-string' to the string that
5130contains the parenths from the above list you want to be electrical.
5131Electricity of parenths is controlled by `cperl-electric-parens'.
5132You may also set `cperl-electric-parens-mark' to have electric parens
5133look for active mark and \"embrace\" a region if possible.'
5134
5135CPerl mode provides expansion of the Perl control constructs:
5136
0ad84a21 5137 if, else, elsif, unless, while, until, continue, do,
93548d2e
DL
5138 for, foreach, formy and foreachmy.
5139
5140and POD directives (Disabled by default, see `cperl-electric-keywords'.)
5141
5142The user types the keyword immediately followed by a space, which
5143causes the construct to be expanded, and the point is positioned where
5144she is most likely to want to be. eg. when the user types a space
5145following \"if\" the following appears in the buffer: if () { or if ()
5146} { } and the cursor is between the parentheses. The user can then
5147type some boolean expression within the parens. Having done that,
5148typing \\[cperl-linefeed] places you - appropriately indented - on a
5149new line between the braces (if you typed \\[cperl-linefeed] in a POD
0ad84a21 5150directive line, then appropriate number of new lines is inserted).
93548d2e
DL
5151
5152If CPerl decides that you want to insert \"English\" style construct like
5153
5154 bite if angry;
5155
5156it will not do any expansion. See also help on variable
5157`cperl-extra-newline-before-brace'. (Note that one can switch the
5158help message on expansion by setting `cperl-message-electric-keyword'
5159to nil.)
5160
5161\\[cperl-linefeed] is a convenience replacement for typing carriage
5162return. It places you in the next line with proper indentation, or if
5163you type it inside the inline block of control construct, like
5164
5165 foreach (@lines) {print; print}
5166
5167and you are on a boundary of a statement inside braces, it will
5168transform the construct into a multiline and will place you into an
0ad84a21 5169appropriately indented blank line. If you need a usual
d66d64bc 5170`newline-and-indent' behavior, it is on \\[newline-and-indent],
93548d2e
DL
5171see documentation on `cperl-electric-linefeed'.
5172
5173Use \\[cperl-invert-if-unless] to change a construction of the form
5174
5175 if (A) { B }
5176
5177into
5178
5179 B if A;
5180
5181\\{cperl-mode-map}
5182
5183Setting the variable `cperl-font-lock' to t switches on font-lock-mode
5184\(even with older Emacsen), `cperl-electric-lbrace-space' to t switches
5185on electric space between $ and {, `cperl-electric-parens-string' is
5186the string that contains parentheses that should be electric in CPerl
5187\(see also `cperl-electric-parens-mark' and `cperl-electric-parens'),
5188setting `cperl-electric-keywords' enables electric expansion of
5189control structures in CPerl. `cperl-electric-linefeed' governs which
5190one of two linefeed behavior is preferable. You can enable all these
5191options simultaneously (recommended mode of use) by setting
5192`cperl-hairy' to t. In this case you can switch separate options off
5193by setting them to `null'. Note that one may undo the extra
5194whitespace inserted by semis and braces in `auto-newline'-mode by
5195consequent \\[cperl-electric-backspace].
5196
5197If your site has perl5 documentation in info format, you can use commands
5198\\[cperl-info-on-current-command] and \\[cperl-info-on-command] to access it.
5199These keys run commands `cperl-info-on-current-command' and
5200`cperl-info-on-command', which one is which is controlled by variable
0ad84a21 5201`cperl-info-on-command-no-prompt' and `cperl-clobber-lisp-bindings'
93548d2e
DL
5202\(in turn affected by `cperl-hairy').
5203
5204Even if you have no info-format documentation, short one-liner-style
5205help is available on \\[cperl-get-help], and one can run perldoc or
5206man via menu.
5207
5208It is possible to show this help automatically after some idle time.
5209This is regulated by variable `cperl-lazy-help-time'. Default with
5210`cperl-hairy' (if the value of `cperl-lazy-help-time' is nil) is 5
5211secs idle time . It is also possible to switch this on/off from the
5212menu, or via \\[cperl-toggle-autohelp]. Requires `run-with-idle-timer'.
5213
5214Use \\[cperl-lineup] to vertically lineup some construction - put the
5215beginning of the region at the start of construction, and make region
5216span the needed amount of lines.
5217
5218Variables `cperl-pod-here-scan', `cperl-pod-here-fontify',
0c72a1a2 5219`cperl-pod-face', `cperl-pod-head-face' control processing of POD and
93548d2e
DL
5220here-docs sections. With capable Emaxen results of scan are used
5221for indentation too, otherwise they are used for highlighting only.
5222
5223Variables controlling indentation style:
5224 `cperl-tab-always-indent'
5225 Non-nil means TAB in CPerl mode should always reindent the current line,
5226 regardless of where in the line point is when the TAB command is used.
5227 `cperl-indent-left-aligned-comments'
5228 Non-nil means that the comment starting in leftmost column should indent.
5229 `cperl-auto-newline'
5230 Non-nil means automatically newline before and after braces,
5231 and after colons and semicolons, inserted in Perl code. The following
5232 \\[cperl-electric-backspace] will remove the inserted whitespace.
0ad84a21
MB
5233 Insertion after colons requires both this variable and
5234 `cperl-auto-newline-after-colon' set.
93548d2e
DL
5235 `cperl-auto-newline-after-colon'
5236 Non-nil means automatically newline even after colons.
5237 Subject to `cperl-auto-newline' setting.
5238 `cperl-indent-level'
5239 Indentation of Perl statements within surrounding block.
5240 The surrounding block's indentation is the indentation
5241 of the line on which the open-brace appears.
5242 `cperl-continued-statement-offset'
5243 Extra indentation given to a substatement, such as the
5244 then-clause of an if, or body of a while, or just a statement continuation.
5245 `cperl-continued-brace-offset'
5246 Extra indentation given to a brace that starts a substatement.
5247 This is in addition to `cperl-continued-statement-offset'.
5248 `cperl-brace-offset'
5249 Extra indentation for line if it starts with an open brace.
5250 `cperl-brace-imaginary-offset'
5251 An open brace following other text is treated as if it the line started
5252 this far to the right of the actual line indentation.
5253 `cperl-label-offset'
5254 Extra indentation for line that is a label.
5255 `cperl-min-label-indent'
5256 Minimal indentation for line that is a label.
5257
5258Settings for K&R and BSD indentation styles are
5259 `cperl-indent-level' 5 8
5260 `cperl-continued-statement-offset' 5 8
5261 `cperl-brace-offset' -5 -8
5262 `cperl-label-offset' -5 -8
5263
5264CPerl knows several indentation styles, and may bulk set the
5265corresponding variables. Use \\[cperl-set-style] to do this. Use
5266\\[cperl-set-style-back] to restore the memorized preexisting values
5267\(both available from menu).
5268
5269If `cperl-indent-level' is 0, the statement after opening brace in
0ad84a21 5270column 0 is indented on
93548d2e
DL
5271`cperl-brace-offset'+`cperl-continued-statement-offset'.
5272
5273Turning on CPerl mode calls the hooks in the variable `cperl-mode-hook'
5274with no args.
5275
5276DO NOT FORGET to read micro-docs (available from `Perl' menu)
5277or as help on variables `cperl-tips', `cperl-problems',
c595cc5f
MR
5278`cperl-praise', `cperl-speed'.
5279
5280\(fn)" t nil)
93548d2e
DL
5281
5282;;;***
5283\f
5284;;;### (autoloads (cpp-parse-edit cpp-highlight-buffer) "cpp" "progmodes/cpp.el"
a5805c9d 5285;;;;;; (17374 21275))
93548d2e
DL
5286;;; Generated autoloads from progmodes/cpp.el
5287
5288(autoload (quote cpp-highlight-buffer) "cpp" "\
5289Highlight C code according to preprocessor conditionals.
5290This command pops up a buffer which you should edit to specify
5291what kind of highlighting to use, and the criteria for highlighting.
c595cc5f
MR
5292A prefix arg suppresses display of that buffer.
5293
5294\(fn ARG)" t nil)
93548d2e
DL
5295
5296(autoload (quote cpp-parse-edit) "cpp" "\
c595cc5f
MR
5297Edit display information for cpp conditionals.
5298
5299\(fn)" t nil)
93548d2e
DL
5300
5301;;;***
5302\f
5303;;;### (autoloads (crisp-mode crisp-mode) "crisp" "emulation/crisp.el"
a5805c9d 5304;;;;;; (17279 27122))
93548d2e
DL
5305;;; Generated autoloads from emulation/crisp.el
5306
5307(defvar crisp-mode nil "\
5308Track status of CRiSP emulation mode.
5309A value of nil means CRiSP mode is not enabled. A value of t
5310indicates CRiSP mode is enabled.
5311
5312Setting this variable directly does not take effect;
5313use either M-x customize or the function `crisp-mode'.")
5314
9c46b00a 5315(custom-autoload (quote crisp-mode) "crisp")
93548d2e
DL
5316
5317(autoload (quote crisp-mode) "crisp" "\
f75a0f7a 5318Toggle CRiSP/Brief emulation minor mode.
c595cc5f
MR
5319With ARG, turn CRiSP mode on if ARG is positive, off otherwise.
5320
5321\(fn &optional ARG)" t nil)
93548d2e 5322
f75a0f7a
GM
5323(defalias (quote brief-mode) (quote crisp-mode))
5324
93548d2e
DL
5325;;;***
5326\f
612839b6 5327;;;### (autoloads (completing-read-multiple) "crm" "emacs-lisp/crm.el"
a5805c9d 5328;;;;;; (17319 2459))
612839b6
GM
5329;;; Generated autoloads from emacs-lisp/crm.el
5330
5331(autoload (quote completing-read-multiple) "crm" "\
5332Read multiple strings in the minibuffer, with completion.
5333By using this functionality, a user may specify multiple strings at a
5334single prompt, optionally using completion.
5335
5336Multiple strings are specified by separating each of the strings with
5337a prespecified separator character. For example, if the separator
5338character is a comma, the strings 'alice', 'bob', and 'eve' would be
5339specified as 'alice,bob,eve'.
5340
5341The default value for the separator character is the value of
5342`crm-default-separator' (comma). The separator character may be
5343changed by modifying the value of `crm-separator'.
5344
8d8d8d4e 5345Contiguous strings of non-separator-characters are referred to as
612839b6
GM
5346'elements'. In the aforementioned example, the elements are: 'alice',
5347'bob', and 'eve'.
5348
5349Completion is available on a per-element basis. For example, if the
5350contents of the minibuffer are 'alice,bob,eve' and point is between
5351'l' and 'i', pressing TAB operates on the element 'alice'.
5352
5353The return value of this function is a list of the read strings.
5354
5355See the documentation for `completing-read' for details on the arguments:
5356PROMPT, TABLE, PREDICATE, REQUIRE-MATCH, INITIAL-INPUT, HIST, DEF, and
c595cc5f
MR
5357INHERIT-INPUT-METHOD.
5358
5359\(fn PROMPT TABLE &optional PREDICATE REQUIRE-MATCH INITIAL-INPUT HIST DEF INHERIT-INPUT-METHOD)" nil nil)
612839b6
GM
5360
5361;;;***
5362\f
0ef3cc90 5363;;;### (autoloads (cua-selection-mode cua-mode) "cua-base" "emulation/cua-base.el"
a5805c9d 5364;;;;;; (17379 24714))
4c6bc877
MR
5365;;; Generated autoloads from emulation/cua-base.el
5366
5367(defvar cua-mode nil "\
0c72a1a2
MR
5368Non-nil if Cua mode is enabled.
5369See the command `cua-mode' for a description of this minor-mode.
4c6bc877
MR
5370Setting this variable directly does not take effect;
5371use either \\[customize] or the function `cua-mode'.")
5372
9c46b00a 5373(custom-autoload (quote cua-mode) "cua-base")
4c6bc877 5374
ac09dc1e
KL
5375(put (quote cua-mode) (quote custom-set) (quote custom-set-minor-mode))
5376
4c6bc877
MR
5377(autoload (quote cua-mode) "cua-base" "\
5378Toggle CUA key-binding mode.
0ef3cc90
LT
5379When enabled, using shifted movement keys will activate the
5380region (and highlight the region using `transient-mark-mode'),
5381and typed text replaces the active selection.
5382
5383Also when enabled, you can use C-z, C-x, C-c, and C-v to undo,
5384cut, copy, and paste in addition to the normal Emacs bindings.
5385The C-x and C-c keys only do cut and copy when the region is
5386active, so in most cases, they do not conflict with the normal
5387function of these prefix keys.
5388
5389If you really need to perform a command which starts with one of
5390the prefix keys even when the region is active, you have three
5391options:
5392- press the prefix key twice very quickly (within 0.2 seconds),
5393- press the prefix key and the following key within 0.2 seconds, or
5394- use the SHIFT key with the prefix key, i.e. C-S-x or C-S-c.
5395
5396You can customize `cua-enable-cua-keys' to completely disable the
5397CUA bindings, or `cua-prefix-override-inhibit-delay' to change
5398the prefix fallback behavior.
c595cc5f 5399
c1a055ca
EZ
5400CUA mode manages Transient Mark mode internally. Trying to disable
5401Transient Mark mode while CUA mode is enabled does not work; if you
5402only want to highlight the region when it is selected using a
5403shifted movement key, set `cua-highlight-region-shift-only'.
5404
c595cc5f 5405\(fn &optional ARG)" t nil)
0ef3cc90
LT
5406
5407(autoload (quote cua-selection-mode) "cua-base" "\
5408Enable CUA selection mode without the C-z/C-x/C-c/C-v bindings.
5409
5410\(fn ARG)" t nil)
0c72a1a2
MR
5411 (eval-after-load 'CUA-mode
5412 '(error (concat "\n\n"
5413 "CUA-mode is now part of the standard GNU Emacs distribution,\n"
5414 "so you may now enable and customize CUA via the Options menu.\n\n"
d66d64bc
KL
5415 "You have loaded an older version of CUA-mode which does\n"
5416 "not work correctly with this version of GNU Emacs.\n\n"
5417 (if user-init-file (concat
0c72a1a2 5418 "To correct this, remove the loading and customization of the\n"
d66d64bc 5419 "old version from the " user-init-file " file.\n\n")))))
4c6bc877
MR
5420
5421;;;***
5422\f
fbf34973
KL
5423;;;### (autoloads (customize-menu-create custom-menu-create customize-save-customized
5424;;;;;; custom-save-all custom-file customize-browse custom-buffer-create-other-window
e18e407f
KS
5425;;;;;; custom-buffer-create customize-apropos-groups customize-apropos-faces
5426;;;;;; customize-apropos-options customize-apropos customize-saved
0c72a1a2
MR
5427;;;;;; customize-rogue customize-customized customize-face-other-window
5428;;;;;; customize-face customize-changed-options customize-option-other-window
5429;;;;;; customize-option customize-group-other-window customize-group
5430;;;;;; customize-mode customize customize-save-variable customize-set-variable
a5805c9d 5431;;;;;; customize-set-value) "cus-edit" "cus-edit.el" (17374 21544))
93548d2e
DL
5432;;; Generated autoloads from cus-edit.el
5433 (add-hook 'same-window-regexps "\\`\\*Customiz.*\\*\\'")
5434
5435(autoload (quote customize-set-value) "cus-edit" "\
b9d9655c 5436Set VARIABLE to VALUE, and return VALUE. VALUE is a Lisp object.
93548d2e
DL
5437
5438If VARIABLE has a `variable-interactive' property, that is used as if
5439it were the arg to `interactive' (which see) to interactively read the value.
5440
5441If VARIABLE has a `custom-type' property, it must be a widget and the
7518ed7b
GM
5442`:prompt-value' property of that widget will be used for reading the value.
5443
c595cc5f
MR
5444If given a prefix (or a COMMENT argument), also prompt for a comment.
5445
5446\(fn VARIABLE VALUE &optional COMMENT)" t nil)
93548d2e
DL
5447
5448(autoload (quote customize-set-variable) "cus-edit" "\
b9d9655c
MB
5449Set the default for VARIABLE to VALUE, and return VALUE.
5450VALUE is a Lisp object.
93548d2e
DL
5451
5452If VARIABLE has a `custom-set' property, that is used for setting
5453VARIABLE, otherwise `set-default' is used.
5454
5455The `customized-value' property of the VARIABLE will be set to a list
5456with a quoted VALUE as its sole list member.
5457
5458If VARIABLE has a `variable-interactive' property, that is used as if
5459it were the arg to `interactive' (which see) to interactively read the value.
5460
5461If VARIABLE has a `custom-type' property, it must be a widget and the
7518ed7b
GM
5462`:prompt-value' property of that widget will be used for reading the value.
5463
c595cc5f
MR
5464If given a prefix (or a COMMENT argument), also prompt for a comment.
5465
5466\(fn VARIABLE VALUE &optional COMMENT)" t nil)
93548d2e
DL
5467
5468(autoload (quote customize-save-variable) "cus-edit" "\
5469Set the default for VARIABLE to VALUE, and save it for future sessions.
b9d9655c
MB
5470Return VALUE.
5471
93548d2e
DL
5472If VARIABLE has a `custom-set' property, that is used for setting
5473VARIABLE, otherwise `set-default' is used.
5474
5475The `customized-value' property of the VARIABLE will be set to a list
5476with a quoted VALUE as its sole list member.
5477
5478If VARIABLE has a `variable-interactive' property, that is used as if
5479it were the arg to `interactive' (which see) to interactively read the value.
5480
5481If VARIABLE has a `custom-type' property, it must be a widget and the
7518ed7b
GM
5482`:prompt-value' property of that widget will be used for reading the value.
5483
c595cc5f
MR
5484If given a prefix (or a COMMENT argument), also prompt for a comment.
5485
5486\(fn VARIABLE VALUE &optional COMMENT)" t nil)
93548d2e
DL
5487
5488(autoload (quote customize) "cus-edit" "\
5489Select a customization buffer which you can use to set user options.
5490User options are structured into \"groups\".
5491Initially the top-level group `Emacs' and its immediate subgroups
c595cc5f
MR
5492are shown; the contents of those subgroups are initially hidden.
5493
5494\(fn)" t nil)
5495
5496(autoload (quote customize-mode) "cus-edit" "\
5497Customize options related to the current major mode.
5498If a prefix \\[universal-argument] was given (or if the current major mode has no known group),
5499then prompt for the MODE to customize.
5500
5501\(fn MODE)" t nil)
93548d2e
DL
5502
5503(autoload (quote customize-group) "cus-edit" "\
c595cc5f
MR
5504Customize GROUP, which must be a customization group.
5505
5506\(fn GROUP)" t nil)
93548d2e
DL
5507
5508(autoload (quote customize-group-other-window) "cus-edit" "\
c595cc5f
MR
5509Customize GROUP, which must be a customization group.
5510
5511\(fn GROUP)" t nil)
93548d2e
DL
5512
5513(defalias (quote customize-variable) (quote customize-option))
5514
5515(autoload (quote customize-option) "cus-edit" "\
c595cc5f
MR
5516Customize SYMBOL, which must be a user option variable.
5517
5518\(fn SYMBOL)" t nil)
93548d2e 5519
9c46b00a
MR
5520(defalias (quote customize-variable-other-window) (quote customize-option-other-window))
5521
5522(autoload (quote customize-option-other-window) "cus-edit" "\
5523Customize SYMBOL, which must be a user option variable.
5524Show the buffer in another window, but don't select it.
5525
5526\(fn SYMBOL)" t nil)
5527
c1a055ca
EZ
5528(defalias (quote customize-changed) (quote customize-changed-options))
5529
93548d2e 5530(autoload (quote customize-changed-options) "cus-edit" "\
c1a055ca 5531Customize all settings whose meanings have changed in Emacs itself.
93548d2e 5532This includes new user option variables and faces, and new
c1a055ca
EZ
5533customization groups, as well as older options and faces whose meanings
5534or default values have changed since the previous major Emacs release.
93548d2e 5535
c1a055ca
EZ
5536With argument SINCE-VERSION (a string), customize all settings
5537that were added or redefined since that version.
c595cc5f
MR
5538
5539\(fn SINCE-VERSION)" t nil)
93548d2e 5540
93548d2e 5541(autoload (quote customize-face) "cus-edit" "\
390069bc 5542Customize FACE, which should be a face name or nil.
d66d64bc
KL
5543If FACE is nil, customize all faces. If FACE is actually a
5544face-alias, customize the face it is aliased to.
e0f712ba
AC
5545
5546Interactively, when point is on text which has a face specified,
390069bc 5547suggest to customize that face, if it's customizable.
c595cc5f
MR
5548
5549\(fn &optional FACE)" t nil)
93548d2e
DL
5550
5551(autoload (quote customize-face-other-window) "cus-edit" "\
390069bc 5552Show customization buffer for face FACE in other window.
d66d64bc 5553If FACE is actually a face-alias, customize the face it is aliased to.
e0f712ba
AC
5554
5555Interactively, when point is on text which has a face specified,
390069bc 5556suggest to customize that face, if it's customizable.
c595cc5f
MR
5557
5558\(fn &optional FACE)" t nil)
93548d2e
DL
5559
5560(autoload (quote customize-customized) "cus-edit" "\
c595cc5f
MR
5561Customize all user options set since the last save in this session.
5562
5563\(fn)" t nil)
93548d2e 5564
0c72a1a2 5565(autoload (quote customize-rogue) "cus-edit" "\
c1a055ca 5566Customize all user variables modified outside customize.
0c72a1a2
MR
5567
5568\(fn)" t nil)
5569
93548d2e 5570(autoload (quote customize-saved) "cus-edit" "\
c595cc5f
MR
5571Customize all already saved user options.
5572
5573\(fn)" t nil)
93548d2e
DL
5574
5575(autoload (quote customize-apropos) "cus-edit" "\
c1a055ca 5576Customize all loaded options, faces and groups matching REGEXP.
93548d2e
DL
5577If ALL is `options', include only options.
5578If ALL is `faces', include only faces.
5579If ALL is `groups', include only groups.
c1a055ca
EZ
5580If ALL is t (interactively, with prefix arg), include variables
5581that are not customizable options, as well as faces and groups
5582\(but we recommend using `apropos-variable' instead).
c595cc5f
MR
5583
5584\(fn REGEXP &optional ALL)" t nil)
93548d2e
DL
5585
5586(autoload (quote customize-apropos-options) "cus-edit" "\
c1a055ca
EZ
5587Customize all loaded customizable options matching REGEXP.
5588With prefix arg, include variables that are not customizable options
5589\(but we recommend using `apropos-variable' instead).
c595cc5f
MR
5590
5591\(fn REGEXP &optional ARG)" t nil)
93548d2e
DL
5592
5593(autoload (quote customize-apropos-faces) "cus-edit" "\
c1a055ca 5594Customize all loaded faces matching REGEXP.
c595cc5f
MR
5595
5596\(fn REGEXP)" t nil)
93548d2e
DL
5597
5598(autoload (quote customize-apropos-groups) "cus-edit" "\
c1a055ca 5599Customize all loaded groups matching REGEXP.
c595cc5f
MR
5600
5601\(fn REGEXP)" t nil)
93548d2e
DL
5602
5603(autoload (quote custom-buffer-create) "cus-edit" "\
5604Create a buffer containing OPTIONS.
5605Optional NAME is the name of the buffer.
5606OPTIONS should be an alist of the form ((SYMBOL WIDGET)...), where
5607SYMBOL is a customization option, and WIDGET is a widget for editing
c595cc5f
MR
5608that option.
5609
5610\(fn OPTIONS &optional NAME DESCRIPTION)" nil nil)
93548d2e
DL
5611
5612(autoload (quote custom-buffer-create-other-window) "cus-edit" "\
390069bc
AS
5613Create a buffer containing OPTIONS, and display it in another window.
5614The result includes selecting that window.
93548d2e
DL
5615Optional NAME is the name of the buffer.
5616OPTIONS should be an alist of the form ((SYMBOL WIDGET)...), where
5617SYMBOL is a customization option, and WIDGET is a widget for editing
c595cc5f
MR
5618that option.
5619
5620\(fn OPTIONS &optional NAME DESCRIPTION)" nil nil)
93548d2e
DL
5621
5622(autoload (quote customize-browse) "cus-edit" "\
c595cc5f
MR
5623Create a tree browser for the customize hierarchy.
5624
5625\(fn &optional GROUP)" t nil)
93548d2e
DL
5626
5627(defvar custom-file nil "\
5628File used for storing customization information.
5629The default is nil, which means to use your init file
be65bdd3
AS
5630as specified by `user-init-file'. If the value is not nil,
5631it should be an absolute file name.
5632
5633You can set this option through Custom, if you carefully read the
5634last paragraph below. However, usually it is simpler to write
5635something like the following in your init file:
5636
5637\(setq custom-file \"~/.emacs-custom.el\")
5638\(load custom-file)
5639
5640Note that both lines are necessary: the first line tells Custom to
5641save all customizations in this file, but does not load it.
5642
5643When you change this variable outside Custom, look in the
5644previous custom file (usually your init file) for the
5645forms `(custom-set-variables ...)' and `(custom-set-faces ...)',
5646and copy them (whichever ones you find) to the new custom file.
5647This will preserve your existing customizations.
5648
5649If you save this option using Custom, Custom will write all
5650currently saved customizations, including the new one for this
5651option itself, into the file you specify, overwriting any
5652`custom-set-variables' and `custom-set-faces' forms already
5653present in that file. It will not delete any customizations from
5654the old custom file. You should do that manually if that is what you
5655want. You also have to put something like `(load \"CUSTOM-FILE\")
5656in your init file, where CUSTOM-FILE is the actual name of the
5657file. Otherwise, Emacs will not load the file when it starts up,
5658and hence will not set `custom-file' to that file either.")
93548d2e 5659
9c46b00a
MR
5660(custom-autoload (quote custom-file) "cus-edit")
5661
93548d2e 5662(autoload (quote custom-save-all) "cus-edit" "\
c595cc5f
MR
5663Save all customizations in `custom-file'.
5664
5665\(fn)" nil nil)
93548d2e 5666
fbf34973
KL
5667(autoload (quote customize-save-customized) "cus-edit" "\
5668Save all user options which have been set in this session.
5669
5670\(fn)" t nil)
5671
93548d2e
DL
5672(autoload (quote custom-menu-create) "cus-edit" "\
5673Create menu for customization group SYMBOL.
c595cc5f
MR
5674The menu is in a format applicable to `easy-menu-define'.
5675
5676\(fn SYMBOL)" nil nil)
93548d2e
DL
5677
5678(autoload (quote customize-menu-create) "cus-edit" "\
5679Return a customize menu for customization group SYMBOL.
7518ed7b 5680If optional NAME is given, use that as the name of the menu.
93548d2e 5681Otherwise the menu will be named `Customize'.
c595cc5f
MR
5682The format is suitable for use with `easy-menu-define'.
5683
5684\(fn SYMBOL &optional NAME)" nil nil)
93548d2e
DL
5685
5686;;;***
5687\f
0ef3cc90 5688;;;### (autoloads (custom-reset-faces custom-theme-reset-faces custom-set-faces
a5805c9d 5689;;;;;; custom-declare-face) "cus-face" "cus-face.el" (17342 36796))
93548d2e
DL
5690;;; Generated autoloads from cus-face.el
5691
5692(autoload (quote custom-declare-face) "cus-face" "\
c595cc5f
MR
5693Like `defface', but FACE is evaluated as a normal argument.
5694
5695\(fn FACE SPEC DOC &rest ARGS)" nil nil)
93548d2e 5696
d66d64bc
KL
5697(defconst custom-face-attributes (quote ((:family (string :tag "Font Family" :help-echo "Font family or fontset alias name.")) (:width (choice :tag "Width" :help-echo "Font width." :value normal (const :tag "compressed" condensed) (const :tag "condensed" condensed) (const :tag "demiexpanded" semi-expanded) (const :tag "expanded" expanded) (const :tag "extracondensed" extra-condensed) (const :tag "extraexpanded" extra-expanded) (const :tag "medium" normal) (const :tag "narrow" condensed) (const :tag "normal" normal) (const :tag "regular" normal) (const :tag "semicondensed" semi-condensed) (const :tag "semiexpanded" semi-expanded) (const :tag "ultracondensed" ultra-condensed) (const :tag "ultraexpanded" ultra-expanded) (const :tag "wide" extra-expanded))) (:height (choice :tag "Height" :help-echo "Face's font height." :value 1.0 (integer :tag "Height in 1/10 pt") (number :tag "Scale" 1.0))) (:weight (choice :tag "Weight" :help-echo "Font weight." :value normal (const :tag "black" ultra-bold) (const :tag "bold" bold) (const :tag "book" semi-light) (const :tag "demibold" semi-bold) (const :tag "extralight" extra-light) (const :tag "extrabold" extra-bold) (const :tag "heavy" extra-bold) (const :tag "light" light) (const :tag "medium" normal) (const :tag "normal" normal) (const :tag "regular" normal) (const :tag "semibold" semi-bold) (const :tag "semilight" semi-light) (const :tag "ultralight" ultra-light) (const :tag "ultrabold" ultra-bold))) (:slant (choice :tag "Slant" :help-echo "Font slant." :value normal (const :tag "italic" italic) (const :tag "oblique" oblique) (const :tag "normal" normal))) (:underline (choice :tag "Underline" :help-echo "Control text underlining." (const :tag "Off" nil) (const :tag "On" t) (color :tag "Colored"))) (:overline (choice :tag "Overline" :help-echo "Control text overlining." (const :tag "Off" nil) (const :tag "On" t) (color :tag "Colored"))) (:strike-through (choice :tag "Strike-through" :help-echo "Control text strike-through." (const :tag "Off" nil) (const :tag "On" t) (color :tag "Colored"))) (:box (choice :tag "Box around text" :help-echo "Control box around text." (const :tag "Off" nil) (list :tag "Box" :value (:line-width 2 :color "grey75" :style released-button) (const :format "" :value :line-width) (integer :tag "Width") (const :format "" :value :color) (choice :tag "Color" (const :tag "*" nil) color) (const :format "" :value :style) (choice :tag "Style" (const :tag "Raised" released-button) (const :tag "Sunken" pressed-button) (const :tag "None" nil)))) (lambda (real-value) (and real-value (let ((lwidth (or (and (consp real-value) (plist-get real-value :line-width)) (and (integerp real-value) real-value) 1)) (color (or (and (consp real-value) (plist-get real-value :color)) (and (stringp real-value) real-value) nil)) (style (and (consp real-value) (plist-get real-value :style)))) (list :line-width lwidth :color color :style style)))) (lambda (cus-value) (and cus-value (let ((lwidth (plist-get cus-value :line-width)) (color (plist-get cus-value :color)) (style (plist-get cus-value :style))) (cond ((and (null color) (null style)) lwidth) ((and (null lwidth) (null style)) color) (t (nconc (and lwidth (\` (:line-width (\, lwidth)))) (and color (\` (:color (\, color)))) (and style (\` (:style (\, style))))))))))) (:inverse-video (choice :tag "Inverse-video" :help-echo "Control whether text should be in inverse-video." (const :tag "Off" nil) (const :tag "On" t))) (:foreground (color :tag "Foreground" :help-echo "Set foreground color (name or #RRGGBB hex spec).")) (:background (color :tag "Background" :help-echo "Set background color (name or #RRGGBB hex spec).")) (:stipple (choice :tag "Stipple" :help-echo "Background bit-mask" (const :tag "None" nil) (file :tag "File" :help-echo "Name of bitmap file." :must-match t))) (:inherit (repeat :tag "Inherit" :help-echo "List of faces to inherit attributes from." (face :Tag "Face" default)) (lambda (real-value) (cond ((or (null real-value) (eq real-value (quote unspecified))) nil) ((symbolp real-value) (list real-value)) (t real-value))) (lambda (cus-value) (if (and (consp cus-value) (null (cdr cus-value))) (car cus-value) cus-value))))) "\
5698Alist of face attributes.
5699
5700The elements are of the form (KEY TYPE PRE-FILTER POST-FILTER),
5701where KEY is the name of the attribute, TYPE is a widget type for
5702editing the attribute, PRE-FILTER is a function to make the attribute's
5703value suitable for the customization widget, and POST-FILTER is a
5704function to make the customized value suitable for storing. PRE-FILTER
5705and POST-FILTER are optional.
5706
5707The PRE-FILTER should take a single argument, the attribute value as
5708stored, and should return a value for customization (using the
5709customization type TYPE).
5710
5711The POST-FILTER should also take a single argument, the value after
5712being customized, and should return a value suitable for setting the
5713given face attribute.")
5714
93548d2e
DL
5715(autoload (quote custom-set-faces) "cus-face" "\
5716Initialize faces according to user preferences.
9c46b00a 5717This associates the settings with the `user' theme.
93548d2e
DL
5718The arguments should be a list where each entry has the form:
5719
7518ed7b 5720 (FACE SPEC [NOW [COMMENT]])
93548d2e 5721
9c46b00a
MR
5722SPEC is stored as the saved value for FACE, as well as the value for the
5723`user' theme. The `user' theme is one of the default themes known to Emacs.
5724See `custom-known-themes' for more information on the known themes.
5725See `custom-theme-set-faces' for more information on the interplay
5726between themes and faces.
5727See `defface' for the format of SPEC.
5728
93548d2e 5729If NOW is present and non-nil, FACE is created now, according to SPEC.
7518ed7b 5730COMMENT is a string comment about FACE.
93548d2e 5731
9c46b00a
MR
5732\(fn &rest ARGS)" nil nil)
5733
9c46b00a 5734(autoload (quote custom-theme-reset-faces) "cus-face" "\
0ef3cc90
LT
5735Reset the specs in THEME of some faces to their specs in other themes.
5736Each of the arguments ARGS has this form:
9c46b00a 5737
c1a055ca 5738 (FACE IGNORED)
9c46b00a 5739
c1a055ca 5740This means reset FACE. The argument IGNORED is ignored.
9c46b00a
MR
5741
5742\(fn THEME &rest ARGS)" nil nil)
5743
5744(autoload (quote custom-reset-faces) "cus-face" "\
0ef3cc90
LT
5745Reset the specs of some faces to their specs in specified themes.
5746This creates settings in the `user' theme.
5747
5748Each of the arguments ARGS has this form:
9c46b00a 5749
0ef3cc90 5750 (FACE FROM-THEME)
9c46b00a 5751
0ef3cc90 5752This means reset FACE to its value in FROM-THEME.
c595cc5f
MR
5753
5754\(fn &rest ARGS)" nil nil)
93548d2e
DL
5755
5756;;;***
5757\f
0c72a1a2 5758;;;### (autoloads (customize-create-theme) "cus-theme" "cus-theme.el"
a5805c9d 5759;;;;;; (17356 16191))
0c72a1a2
MR
5760;;; Generated autoloads from cus-theme.el
5761
5762(autoload (quote customize-create-theme) "cus-theme" "\
5763Create a custom theme.
5764
5765\(fn)" t nil)
5766
5767;;;***
5768\f
81bf3fa7 5769;;;### (autoloads (cvs-status-mode) "cvs-status" "cvs-status.el"
a5805c9d 5770;;;;;; (17279 27122))
fd0e837b
GM
5771;;; Generated autoloads from cvs-status.el
5772
5773(autoload (quote cvs-status-mode) "cvs-status" "\
0c867fa7
MS
5774Mode used for cvs status output.
5775
5776\(fn)" t nil)
fd0e837b
GM
5777
5778;;;***
5779\f
2936437d 5780;;;### (autoloads (global-cwarn-mode turn-on-cwarn-mode cwarn-mode)
a5805c9d 5781;;;;;; "cwarn" "progmodes/cwarn.el" (17307 17625))
2936437d
GM
5782;;; Generated autoloads from progmodes/cwarn.el
5783
5784(autoload (quote cwarn-mode) "cwarn" "\
54baed30 5785Minor mode that highlights suspicious C and C++ constructions.
2936437d
GM
5786
5787Note, in addition to enabling this minor mode, the major mode must
5788be included in the variable `cwarn-configuration'. By default C and
5789C++ modes are included.
5790
c595cc5f
MR
5791With ARG, turn CWarn mode on if and only if arg is positive.
5792
5793\(fn &optional ARG)" t nil)
2936437d
GM
5794
5795(autoload (quote turn-on-cwarn-mode) "cwarn" "\
5796Turn on CWarn mode.
5797
5798This function is designed to be added to hooks, for example:
c595cc5f
MR
5799 (add-hook 'c-mode-hook 'turn-on-cwarn-mode)
5800
5801\(fn)" nil nil)
2936437d 5802
ec2bb97f
EZ
5803(defvar global-cwarn-mode nil "\
5804Non-nil if Global-Cwarn mode is enabled.
5805See the command `global-cwarn-mode' for a description of this minor-mode.
5806Setting this variable directly does not take effect;
5807use either \\[customize] or the function `global-cwarn-mode'.")
2936437d 5808
9c46b00a 5809(custom-autoload (quote global-cwarn-mode) "cwarn")
ec2bb97f 5810
ac09dc1e
KL
5811(put (quote global-cwarn-mode) (quote custom-set) (quote custom-set-minor-mode))
5812
ec2bb97f
EZ
5813(autoload (quote global-cwarn-mode) "cwarn" "\
5814Toggle Cwarn mode in every buffer.
5815With prefix ARG, turn Global-Cwarn mode on if and only if ARG is positive.
5816Cwarn mode is actually not turned on in every buffer but only in those
c595cc5f
MR
5817in which `turn-on-cwarn-mode-if-enabled' turns it on.
5818
5819\(fn &optional ARG)" t nil)
2936437d
GM
5820
5821;;;***
5822\f
93548d2e 5823;;;### (autoloads (standard-display-cyrillic-translit cyrillic-encode-alternativnyj-char
a1b8d58b 5824;;;;;; cyrillic-encode-koi8-r-char) "cyril-util" "language/cyril-util.el"
a5805c9d 5825;;;;;; (17279 27080))
93548d2e
DL
5826;;; Generated autoloads from language/cyril-util.el
5827
93548d2e 5828(autoload (quote cyrillic-encode-koi8-r-char) "cyril-util" "\
c595cc5f
MR
5829Return KOI8-R external character code of CHAR if appropriate.
5830
5831\(fn CHAR)" nil nil)
93548d2e
DL
5832
5833(autoload (quote cyrillic-encode-alternativnyj-char) "cyril-util" "\
c595cc5f
MR
5834Return ALTERNATIVNYJ external character code of CHAR if appropriate.
5835
5836\(fn CHAR)" nil nil)
93548d2e
DL
5837
5838(autoload (quote standard-display-cyrillic-translit) "cyril-util" "\
5839Display a cyrillic buffer using a transliteration.
5840For readability, the table is slightly
5841different from the one used for the input method `cyrillic-translit'.
5842
5843The argument is a string which specifies which language you are using;
5844that affects the choice of transliterations slightly.
b9d9655c 5845Possible values are listed in `cyrillic-language-alist'.
93548d2e 5846If the argument is t, we use the default cyrillic transliteration.
c595cc5f
MR
5847If the argument is nil, we return the display table to its standard state.
5848
5849\(fn &optional CYRILLIC-LANGUAGE)" t nil)
93548d2e
DL
5850
5851;;;***
5852\f
5853;;;### (autoloads (dabbrev-expand dabbrev-completion) "dabbrev" "dabbrev.el"
a5805c9d 5854;;;;;; (17297 42806))
93548d2e 5855;;; Generated autoloads from dabbrev.el
e3cc553b
AS
5856 (define-key esc-map "/" 'dabbrev-expand)
5857 (define-key esc-map [?\C-/] 'dabbrev-completion)
93548d2e
DL
5858
5859(autoload (quote dabbrev-completion) "dabbrev" "\
5860Completion on current word.
5861Like \\[dabbrev-expand] but finds all expansions in the current buffer
5862and presents suggestions for completion.
5863
5864With a prefix argument, it searches all buffers accepted by the
5865function pointed out by `dabbrev-friend-buffer-function' to find the
5866completions.
5867
5868If the prefix argument is 16 (which comes from C-u C-u),
5869then it searches *all* buffers.
5870
c595cc5f 5871\(fn &optional ARG)" t nil)
93548d2e
DL
5872
5873(autoload (quote dabbrev-expand) "dabbrev" "\
5874Expand previous word \"dynamically\".
5875
5876Expands to the most recent, preceding word for which this is a prefix.
5877If no suitable preceding word is found, words following point are
5878considered. If still no suitable word is found, then look in the
5879buffers accepted by the function pointed out by variable
5880`dabbrev-friend-buffer-function'.
5881
5882A positive prefix argument, N, says to take the Nth backward *distinct*
5883possibility. A negative argument says search forward.
5884
5885If the cursor has not moved from the end of the previous expansion and
5886no argument is given, replace the previously-made expansion
5887with the next possible expansion not yet tried.
5888
5889The variable `dabbrev-backward-only' may be used to limit the
5890direction of search to backward if set non-nil.
5891
c595cc5f
MR
5892See also `dabbrev-abbrev-char-regexp' and \\[dabbrev-completion].
5893
5894\(fn ARG)" t nil)
93548d2e
DL
5895
5896;;;***
5897\f
a5805c9d
KL
5898;;;### (autoloads (dcl-mode) "dcl-mode" "progmodes/dcl-mode.el" (17279
5899;;;;;; 27203))
93548d2e
DL
5900;;; Generated autoloads from progmodes/dcl-mode.el
5901
5902(autoload (quote dcl-mode) "dcl-mode" "\
5903Major mode for editing DCL-files.
5904
5905This mode indents command lines in blocks. (A block is commands between
5906THEN-ELSE-ENDIF and between lines matching dcl-block-begin-regexp and
5907dcl-block-end-regexp.)
5908
5909Labels are indented to a fixed position unless they begin or end a block.
821b278f 5910Whole-line comments (matching dcl-comment-line-regexp) are not indented.
93548d2e
DL
5911Data lines are not indented.
5912
5913Key bindings:
5914
5915\\{dcl-mode-map}
5916Commands not usually bound to keys:
5917
5918\\[dcl-save-nondefault-options] Save changed options
5919\\[dcl-save-all-options] Save all options
5920\\[dcl-save-option] Save any option
5921\\[dcl-save-mode] Save buffer mode
5922
5923Variables controlling indentation style and extra features:
5924
5925 dcl-basic-offset
5926 Extra indentation within blocks.
5927
5928 dcl-continuation-offset
5929 Extra indentation for continued lines.
5930
5931 dcl-margin-offset
5932 Indentation for the first command line in a file or SUBROUTINE.
5933
5934 dcl-margin-label-offset
5935 Indentation for a label.
5936
5937 dcl-comment-line-regexp
821b278f 5938 Lines matching this regexp will not be indented.
93548d2e
DL
5939
5940 dcl-block-begin-regexp
5941 dcl-block-end-regexp
5942 Regexps that match command lines that begin and end, respectively,
5943 a block of commmand lines that will be given extra indentation.
5944 Command lines between THEN-ELSE-ENDIF are always indented; these variables
5945 make it possible to define other places to indent.
5946 Set to nil to disable this feature.
5947
5948 dcl-calc-command-indent-function
5949 Can be set to a function that customizes indentation for command lines.
5950 Two such functions are included in the package:
5951 dcl-calc-command-indent-multiple
5952 dcl-calc-command-indent-hang
5953
5954 dcl-calc-cont-indent-function
5955 Can be set to a function that customizes indentation for continued lines.
5956 One such function is included in the package:
5957 dcl-calc-cont-indent-relative (set by default)
5958
5959 dcl-tab-always-indent
5960 If t, pressing TAB always indents the current line.
821b278f 5961 If nil, pressing TAB indents the current line if point is at the left
93548d2e
DL
5962 margin.
5963
821b278f 5964 dcl-electric-characters
93548d2e
DL
5965 Non-nil causes lines to be indented at once when a label, ELSE or ENDIF is
5966 typed.
5967
5968 dcl-electric-reindent-regexps
5969 Use this variable and function dcl-electric-character to customize
5970 which words trigger electric indentation.
5971
5972 dcl-tempo-comma
5973 dcl-tempo-left-paren
5974 dcl-tempo-right-paren
5975 These variables control the look of expanded templates.
5976
5977 dcl-imenu-generic-expression
5978 Default value for imenu-generic-expression. The default includes
5979 SUBROUTINE labels in the main listing and sub-listings for
821b278f 5980 other labels, CALL, GOTO and GOSUB statements.
93548d2e
DL
5981
5982 dcl-imenu-label-labels
5983 dcl-imenu-label-goto
5984 dcl-imenu-label-gosub
5985 dcl-imenu-label-call
5986 Change the text that is used as sub-listing labels in imenu.
5987
5988Loading this package calls the value of the variable
821b278f
MR
5989`dcl-mode-load-hook' with no args, if that value is non-nil.
5990Turning on DCL mode calls the value of the variable `dcl-mode-hook'
93548d2e
DL
5991with no args, if that value is non-nil.
5992
5993
5994The following example uses the default values for all variables:
5995
821b278f 5996$! This is a comment line that is not indented (it matches
93548d2e
DL
5997$! dcl-comment-line-regexp)
5998$! Next follows the first command line. It is indented dcl-margin-offset.
5999$ i = 1
6000$ ! Other comments are indented like command lines.
6001$ ! A margin label indented dcl-margin-label-offset:
821b278f 6002$ label:
93548d2e
DL
6003$ if i.eq.1
6004$ then
821b278f 6005$ ! Lines between THEN-ELSE and ELSE-ENDIF are
93548d2e
DL
6006$ ! indented dcl-basic-offset
6007$ loop1: ! This matches dcl-block-begin-regexp...
6008$ ! ...so this line is indented dcl-basic-offset
821b278f 6009$ text = \"This \" + - ! is a continued line
93548d2e
DL
6010 \"lined up with the command line\"
6011$ type sys$input
821b278f 6012Data lines are not indented at all.
93548d2e
DL
6013$ endloop1: ! This matches dcl-block-end-regexp
6014$ endif
6015$
c595cc5f 6016
0c72a1a2
MR
6017
6018There is some minimal font-lock support (see vars
6019`dcl-font-lock-defaults' and `dcl-font-lock-keywords').
6020
c595cc5f 6021\(fn)" t nil)
93548d2e
DL
6022
6023;;;***
6024\f
6025;;;### (autoloads (cancel-debug-on-entry debug-on-entry debug) "debug"
a5805c9d 6026;;;;;; "emacs-lisp/debug.el" (17279 27196))
93548d2e
DL
6027;;; Generated autoloads from emacs-lisp/debug.el
6028
6029(setq debugger (quote debug))
6030
6031(autoload (quote debug) "debug" "\
6032Enter debugger. To return, type \\<debugger-mode-map>`\\[debugger-continue]'.
6033Arguments are mainly for use when this is called from the internals
6034of the evaluator.
6035
6036You may call with no args, or you may pass nil as the first arg and
6037any other args you like. In that case, the list of args after the
c595cc5f
MR
6038first will be printed into the backtrace buffer.
6039
6040\(fn &rest DEBUGGER-ARGS)" t nil)
93548d2e
DL
6041
6042(autoload (quote debug-on-entry) "debug" "\
6043Request FUNCTION to invoke debugger each time it is called.
d66d64bc
KL
6044
6045When called interactively, prompt for FUNCTION in the minibuffer.
6046
6047This works by modifying the definition of FUNCTION. If you tell the
6048debugger to continue, FUNCTION's execution proceeds. If FUNCTION is a
6049normal function or a macro written in Lisp, you can also step through
6050its execution. FUNCTION can also be a primitive that is not a special
6051form, in which case stepping is not possible. Break-on-entry for
6052primitive functions only works when that function is called from Lisp.
6053
93548d2e 6054Use \\[cancel-debug-on-entry] to cancel the effect of this command.
c595cc5f
MR
6055Redefining FUNCTION also cancels it.
6056
6057\(fn FUNCTION)" t nil)
93548d2e
DL
6058
6059(autoload (quote cancel-debug-on-entry) "debug" "\
6060Undo effect of \\[debug-on-entry] on FUNCTION.
d66d64bc
KL
6061If FUNCTION is nil, cancel debug-on-entry for all functions.
6062When called interactively, prompt for FUNCTION in the minibuffer.
6063To specify a nil argument interactively, exit with an empty minibuffer.
c595cc5f
MR
6064
6065\(fn &optional FUNCTION)" t nil)
93548d2e
DL
6066
6067;;;***
6068\f
6069;;;### (autoloads (decipher-mode decipher) "decipher" "play/decipher.el"
a5805c9d 6070;;;;;; (17279 27172))
93548d2e
DL
6071;;; Generated autoloads from play/decipher.el
6072
6073(autoload (quote decipher) "decipher" "\
c595cc5f
MR
6074Format a buffer of ciphertext for cryptanalysis and enter Decipher mode.
6075
6076\(fn)" t nil)
93548d2e
DL
6077
6078(autoload (quote decipher-mode) "decipher" "\
6079Major mode for decrypting monoalphabetic substitution ciphers.
6080Lower-case letters enter plaintext.
6081Upper-case letters are commands.
6082
6083The buffer is made read-only so that normal Emacs commands cannot
6084modify it.
6085
6086The most useful commands are:
6087\\<decipher-mode-map>
6088\\[decipher-digram-list] Display a list of all digrams & their frequency
6089\\[decipher-frequency-count] Display the frequency of each ciphertext letter
6090\\[decipher-adjacency-list] Show adjacency list for current letter (lists letters appearing next to it)
6091\\[decipher-make-checkpoint] Save the current cipher alphabet (checkpoint)
c595cc5f
MR
6092\\[decipher-restore-checkpoint] Restore a saved cipher alphabet (checkpoint)
6093
6094\(fn)" t nil)
93548d2e
DL
6095
6096;;;***
6097\f
0ad84a21 6098;;;### (autoloads (delimit-columns-rectangle delimit-columns-region
a5805c9d
KL
6099;;;;;; delimit-columns-customize) "delim-col" "delim-col.el" (17279
6100;;;;;; 27122))
7518ed7b
GM
6101;;; Generated autoloads from delim-col.el
6102
0ad84a21 6103(autoload (quote delimit-columns-customize) "delim-col" "\
c595cc5f
MR
6104Customization of `columns' group.
6105
6106\(fn)" t nil)
0ad84a21 6107
7518ed7b
GM
6108(autoload (quote delimit-columns-region) "delim-col" "\
6109Prettify all columns in a text region.
6110
c595cc5f
MR
6111START and END delimits the text region.
6112
6113\(fn START END)" t nil)
7518ed7b
GM
6114
6115(autoload (quote delimit-columns-rectangle) "delim-col" "\
6116Prettify all columns in a text rectangle.
6117
c595cc5f
MR
6118START and END delimits the corners of text rectangle.
6119
6120\(fn START END)" t nil)
7518ed7b
GM
6121
6122;;;***
6123\f
a5805c9d
KL
6124;;;### (autoloads (delphi-mode) "delphi" "progmodes/delphi.el" (17337
6125;;;;;; 56255))
7518ed7b
GM
6126;;; Generated autoloads from progmodes/delphi.el
6127
6128(autoload (quote delphi-mode) "delphi" "\
6129Major mode for editing Delphi code. \\<delphi-mode-map>
6130\\[delphi-tab] - Indents the current line for Delphi code.
6131\\[delphi-find-unit] - Search for a Delphi source file.
6132\\[delphi-fill-comment] - Fill the current comment.
6133\\[delphi-new-comment-line] - If in a // comment, do a new comment line.
6134
6135M-x indent-region also works for indenting a whole region.
6136
6137Customization:
6138
6139 `delphi-indent-level' (default 3)
6140 Indentation of Delphi statements with respect to containing block.
6141 `delphi-compound-block-indent' (default 0)
6142 Extra indentation for blocks in compound statements.
6143 `delphi-case-label-indent' (default 0)
6144 Extra indentation for case statement labels.
6145 `delphi-tab-always-indents' (default t)
6146 Non-nil means TAB in Delphi mode should always reindent the current line,
6147 regardless of where in the line point is when the TAB command is used.
6148 `delphi-newline-always-indents' (default t)
6149 Non-nil means NEWLINE in Delphi mode should always reindent the current
6150 line, insert a blank line and move to the default indent column of the
6151 blank line.
6152 `delphi-search-path' (default .)
6153 Directories to search when finding external units.
6154 `delphi-verbose' (default nil)
6155 If true then delphi token processing progress is reported to the user.
6156
6157Coloring:
6158
6159 `delphi-comment-face' (default font-lock-comment-face)
6160 Face used to color delphi comments.
6161 `delphi-string-face' (default font-lock-string-face)
6162 Face used to color delphi strings.
6163 `delphi-keyword-face' (default font-lock-keyword-face)
6164 Face used to color delphi keywords.
6165 `delphi-other-face' (default nil)
6166 Face used to color everything else.
6167
6168Turning on Delphi mode calls the value of the variable delphi-mode-hook with
c595cc5f
MR
6169no args, if that value is non-nil.
6170
6171\(fn &optional SKIP-INITIAL-PARSING)" t nil)
7518ed7b
GM
6172
6173;;;***
6174\f
a5805c9d
KL
6175;;;### (autoloads (delete-selection-mode) "delsel" "delsel.el" (17279
6176;;;;;; 27122))
93548d2e
DL
6177;;; Generated autoloads from delsel.el
6178
6179(defalias (quote pending-delete-mode) (quote delete-selection-mode))
6180
b442e70a 6181(defvar delete-selection-mode nil "\
a67b854e 6182Non-nil if Delete-Selection mode is enabled.
bd02b8e0 6183See the command `delete-selection-mode' for a description of this minor-mode.
b442e70a
MB
6184Setting this variable directly does not take effect;
6185use either \\[customize] or the function `delete-selection-mode'.")
6186
9c46b00a 6187(custom-autoload (quote delete-selection-mode) "delsel")
b442e70a 6188
ac09dc1e
KL
6189(put (quote delete-selection-mode) (quote custom-set) (quote custom-set-minor-mode))
6190
93548d2e
DL
6191(autoload (quote delete-selection-mode) "delsel" "\
6192Toggle Delete Selection mode.
6193With prefix ARG, turn Delete Selection mode on if and only if ARG is
6194positive.
6195
6196When Delete Selection mode is enabled, Transient Mark mode is also
6197enabled and typed text replaces the selection if the selection is
6198active. Otherwise, typed text is just inserted at point regardless of
c595cc5f
MR
6199any selection.
6200
6201\(fn &optional ARG)" t nil)
93548d2e 6202
93548d2e
DL
6203;;;***
6204\f
6c083b4c 6205;;;### (autoloads (derived-mode-init-mode-variables define-derived-mode)
a5805c9d 6206;;;;;; "derived" "emacs-lisp/derived.el" (17307 17624))
27a99a7c 6207;;; Generated autoloads from emacs-lisp/derived.el
93548d2e 6208
6c083b4c
GM
6209(autoload (quote define-derived-mode) "derived" "\
6210Create a new mode as a variant of an existing mode.
6211
6212The arguments to this command are as follow:
6213
6214CHILD: the name of the command for the derived mode.
c86350b1
GM
6215PARENT: the name of the command for the parent mode (e.g. `text-mode')
6216 or nil if there is no parent.
6c083b4c
GM
6217NAME: a string which will appear in the status line (e.g. \"Hypertext\")
6218DOCSTRING: an optional documentation string--if you do not supply one,
6219 the function will attempt to invent something useful.
6220BODY: forms to execute just before running the
8d8d8d4e 6221 hooks for the new mode. Do not use `interactive' here.
6c083b4c 6222
c595cc5f
MR
6223BODY can start with a bunch of keyword arguments. The following keyword
6224 arguments are currently understood:
6225:group GROUP
6226 Declare the customization group that corresponds to this mode.
d66d64bc 6227 The command `customize-mode' uses this.
c595cc5f
MR
6228:syntax-table TABLE
6229 Use TABLE instead of the default.
6230 A nil value means to simply use the same syntax-table as the parent.
6231:abbrev-table TABLE
6232 Use TABLE instead of the default.
6233 A nil value means to simply use the same abbrev-table as the parent.
6234
6c083b4c
GM
6235Here is how you could define LaTeX-Thesis mode as a variant of LaTeX mode:
6236
6237 (define-derived-mode LaTeX-thesis-mode LaTeX-mode \"LaTeX-Thesis\")
6238
6239You could then make new key bindings for `LaTeX-thesis-mode-map'
6240without changing regular LaTeX mode. In this example, BODY is empty,
6241and DOCSTRING is generated by default.
6242
6243On a more complicated level, the following command uses `sgml-mode' as
6244the parent, and then sets the variable `case-fold-search' to nil:
6245
6246 (define-derived-mode article-mode sgml-mode \"Article\"
6247 \"Major mode for editing technical articles.\"
6248 (setq case-fold-search nil))
6249
6250Note that if the documentation string had been left out, it would have
c595cc5f
MR
6251been generated automatically, with a reference to the keymap.
6252
e3cc553b
AS
6253The new mode runs the hook constructed by the function
6254`derived-mode-hook-name'.
6255
d66d64bc
KL
6256See Info node `(elisp)Derived Modes' for more details.
6257
c595cc5f 6258\(fn CHILD PARENT NAME &optional DOCSTRING &rest BODY)" nil (quote macro))
6c083b4c 6259
93548d2e 6260(autoload (quote derived-mode-init-mode-variables) "derived" "\
d66d64bc 6261Initialize variables for a new MODE.
93548d2e
DL
6262Right now, if they don't already exist, set up a blank keymap, an
6263empty syntax table, and an empty abbrev table -- these will be merged
c595cc5f
MR
6264the first time the mode is used.
6265
6266\(fn MODE)" nil nil)
93548d2e
DL
6267
6268;;;***
6269\f
4c6bc877 6270;;;### (autoloads (describe-char describe-text-properties) "descr-text"
a5805c9d 6271;;;;;; "descr-text.el" (17331 26860))
4c6bc877
MR
6272;;; Generated autoloads from descr-text.el
6273
6274(autoload (quote describe-text-properties) "descr-text" "\
6275Describe widgets, buttons, overlays and text properties at POS.
6276Interactively, describe them for the character after point.
6277If optional second argument OUTPUT-BUFFER is non-nil,
6278insert the output into that buffer, and don't initialize or clear it
c595cc5f
MR
6279otherwise.
6280
6281\(fn POS &optional OUTPUT-BUFFER)" t nil)
4c6bc877
MR
6282
6283(autoload (quote describe-char) "descr-text" "\
6284Describe the character after POS (interactively, the character after point).
6285The information includes character code, charset and code points in it,
6286syntax, category, how the character is encoded in a file,
6287character composition information (if relevant),
c595cc5f
MR
6288as well as widgets, buttons, overlays, and text properties.
6289
6290\(fn POS)" t nil)
4c6bc877
MR
6291
6292;;;***
6293\f
932a6f0f 6294;;;### (autoloads (desktop-revert desktop-save-in-desktop-dir desktop-change-dir
0ef3cc90 6295;;;;;; desktop-load-default desktop-read desktop-locals-to-save
a5805c9d 6296;;;;;; desktop-save-mode) "desktop" "desktop.el" (17374 21429))
93548d2e
DL
6297;;; Generated autoloads from desktop.el
6298
932a6f0f
AS
6299(defvar desktop-save-mode nil "\
6300Non-nil if Desktop-Save mode is enabled.
d66d64bc 6301See the command `desktop-save-mode' for a description of this minor-mode.")
932a6f0f
AS
6302
6303(custom-autoload (quote desktop-save-mode) "desktop")
6304
ac09dc1e
KL
6305(put (quote desktop-save-mode) (quote custom-set) (quote custom-set-minor-mode))
6306
932a6f0f
AS
6307(autoload (quote desktop-save-mode) "desktop" "\
6308Toggle desktop saving mode.
6309With numeric ARG, turn desktop saving on if ARG is positive, off
6310otherwise. See variable `desktop-save' for a description of when the
6311desktop is saved.
6312
6313\(fn &optional ARG)" t nil)
6314
0ef3cc90
LT
6315(defvar desktop-locals-to-save (quote (desktop-locals-to-save truncate-lines case-fold-search case-replace fill-column overwrite-mode change-log-default-name line-number-mode column-number-mode size-indication-mode buffer-file-coding-system indent-tabs-mode indicate-buffer-boundaries indicate-empty-lines show-trailing-whitespace)) "\
6316List of local variables to save for each buffer.
6317The variables are saved only when they really are local. Conventional minor
6318modes are restored automatically; they should not be listed here.")
6319
6320(custom-autoload (quote desktop-locals-to-save) "desktop")
6321
390069bc
AS
6322(defvar desktop-save-buffer nil "\
6323When non-nil, save buffer status in desktop file.
6324This variable becomes buffer local when set.
6325
0ef3cc90
LT
6326If the value is a function, it is called by `desktop-save' with argument
6327DESKTOP-DIRNAME to obtain auxiliary information to save in the desktop
390069bc
AS
6328file along with the state of the buffer for which it was called.
6329
6330When file names are returned, they should be formatted using the call
6331\"(desktop-file-name FILE-NAME DESKTOP-DIRNAME)\".
6332
0ef3cc90
LT
6333Later, when `desktop-read' evaluates the desktop file, auxiliary information
6334is passed as the argument DESKTOP-BUFFER-MISC to functions in
6335`desktop-buffer-mode-handlers'.")
6336
6337(defvar desktop-buffer-mode-handlers nil "\
6338Alist of major mode specific functions to restore a desktop buffer.
6339Functions listed are called by `desktop-create-buffer' when `desktop-read'
6340evaluates the desktop file. List elements must have the form
6341
6342 (MAJOR-MODE . RESTORE-BUFFER-FUNCTION).
6343
6344Buffers with a major mode not specified here, are restored by the default
6345handler `desktop-restore-file-buffer'.
6346
6347Handlers are called with argument list
6348
6349 (DESKTOP-BUFFER-FILE-NAME DESKTOP-BUFFER-NAME DESKTOP-BUFFER-MISC)
6350
6351Furthermore, they may use the following variables:
6352
6353 desktop-file-version
6354 desktop-buffer-major-mode
6355 desktop-buffer-minor-modes
6356 desktop-buffer-point
6357 desktop-buffer-mark
6358 desktop-buffer-read-only
6359 desktop-buffer-locals
6360
6361If a handler returns a buffer, then the saved mode settings
6362and variable values for that buffer are copied into it.
6363
6364Modules that define a major mode that needs a special handler should contain
6365code like
6366
6367 (defun foo-restore-desktop-buffer
6368 ...
6369 (add-to-list 'desktop-buffer-mode-handlers
6370 '(foo-mode . foo-restore-desktop-buffer))
6371
6372Furthermore the major mode function must be autoloaded.")
6373
fbf34973
KL
6374(put (quote desktop-buffer-mode-handlers) (quote risky-local-variable) t)
6375
0ef3cc90
LT
6376(defvar desktop-minor-mode-handlers nil "\
6377Alist of functions to restore non-standard minor modes.
6378Functions are called by `desktop-create-buffer' to restore minor modes.
6379List elements must have the form
6380
6381 (MINOR-MODE . RESTORE-FUNCTION).
6382
6383Minor modes not specified here, are restored by the standard minor mode
6384function.
6385
6386Handlers are called with argument list
6387
6388 (DESKTOP-BUFFER-LOCALS)
6389
6390Furthermore, they may use the following variables:
6391
6392 desktop-file-version
6393 desktop-buffer-file-name
6394 desktop-buffer-name
6395 desktop-buffer-major-mode
6396 desktop-buffer-minor-modes
6397 desktop-buffer-point
6398 desktop-buffer-mark
6399 desktop-buffer-read-only
6400 desktop-buffer-misc
6401
6402When a handler is called, the buffer has been created and the major mode has
6403been set, but local variables listed in desktop-buffer-locals has not yet been
6404created and set.
6405
6406Modules that define a minor mode that needs a special handler should contain
6407code like
6408
6409 (defun foo-desktop-restore
6410 ...
6411 (add-to-list 'desktop-minor-mode-handlers
6412 '(foo-mode . foo-desktop-restore))
6413
6414Furthermore the minor mode function must be autoloaded.
6415
6416See also `desktop-minor-mode-table'.")
390069bc 6417
fbf34973 6418(put (quote desktop-minor-mode-handlers) (quote risky-local-variable) t)
390069bc 6419
93548d2e 6420(autoload (quote desktop-read) "desktop" "\
932a6f0f
AS
6421Read and process the desktop file in directory DIRNAME.
6422Look for a desktop file in DIRNAME, or if DIRNAME is omitted, look in
6423directories listed in `desktop-path'. If a desktop file is found, it
0ef3cc90 6424is processed and `desktop-after-read-hook' is run. If no desktop file
932a6f0f
AS
6425is found, clear the desktop and run `desktop-no-desktop-file-hook'.
6426This function is a no-op when Emacs is running in batch mode.
6427It returns t if a desktop file was loaded, nil otherwise.
c595cc5f 6428
932a6f0f 6429\(fn &optional DIRNAME)" t nil)
93548d2e
DL
6430
6431(autoload (quote desktop-load-default) "desktop" "\
6432Load the `default' start-up library manually.
932a6f0f 6433Also inhibit further loading of it.
c595cc5f
MR
6434
6435\(fn)" nil nil)
93548d2e 6436
0c72a1a2 6437(autoload (quote desktop-change-dir) "desktop" "\
932a6f0f
AS
6438Change to desktop saved in DIRNAME.
6439Kill the desktop as specified by variables `desktop-save-mode' and
6440`desktop-save', then clear the desktop and load the desktop file in
6441directory DIRNAME.
0c72a1a2 6442
932a6f0f 6443\(fn DIRNAME)" t nil)
0c72a1a2 6444
932a6f0f
AS
6445(autoload (quote desktop-save-in-desktop-dir) "desktop" "\
6446Save the desktop in directory `desktop-dirname'.
0c72a1a2
MR
6447
6448\(fn)" t nil)
6449
6450(autoload (quote desktop-revert) "desktop" "\
6451Revert to the last loaded desktop.
6452
6453\(fn)" t nil)
6454
93548d2e
DL
6455;;;***
6456\f
390069bc
AS
6457;;;### (autoloads (gnus-article-outlook-deuglify-article gnus-outlook-deuglify-article
6458;;;;;; gnus-article-outlook-repair-attribution gnus-article-outlook-unwrap-lines
6459;;;;;; gnus-outlook-display-hook gnus-outlook-deuglify-unwrap-max
6460;;;;;; gnus-outlook-deuglify-unwrap-min) "deuglify" "gnus/deuglify.el"
a5805c9d 6461;;;;;; (17279 27079))
390069bc
AS
6462;;; Generated autoloads from gnus/deuglify.el
6463
6464(defvar gnus-outlook-deuglify-unwrap-min 45 "\
6465Minimum length of the cited line above the (possibly) wrapped line.")
6466
6467(custom-autoload (quote gnus-outlook-deuglify-unwrap-min) "deuglify")
6468
6469(defvar gnus-outlook-deuglify-unwrap-max 95 "\
6470Maximum length of the cited line after unwrapping.")
6471
6472(custom-autoload (quote gnus-outlook-deuglify-unwrap-max) "deuglify")
6473
6474(defvar gnus-outlook-display-hook nil "\
6475A hook called after an deuglified article has been prepared.
6476It is run after `gnus-article-prepare-hook'.")
6477
6478(custom-autoload (quote gnus-outlook-display-hook) "deuglify")
6479
6480(autoload (quote gnus-article-outlook-unwrap-lines) "deuglify" "\
6481Unwrap lines that appear to be wrapped citation lines.
6482You can control what lines will be unwrapped by frobbing
6483`gnus-outlook-deuglify-unwrap-min' and `gnus-outlook-deuglify-unwrap-max',
6484indicating the minimum and maximum length of an unwrapped citation line. If
6485NODISPLAY is non-nil, don't redisplay the article buffer.
6486
6487\(fn &optional NODISPLAY)" t nil)
6488
6489(autoload (quote gnus-article-outlook-repair-attribution) "deuglify" "\
6490Repair a broken attribution line.
6491If NODISPLAY is non-nil, don't redisplay the article buffer.
6492
6493\(fn &optional NODISPLAY)" t nil)
6494
6495(autoload (quote gnus-outlook-deuglify-article) "deuglify" "\
6496Full deuglify of broken Outlook (Express) articles.
6497Treat dumbquotes, unwrap lines, repair attribution and rearrange citation. If
6498NODISPLAY is non-nil, don't redisplay the article buffer.
6499
6500\(fn &optional NODISPLAY)" t nil)
6501
6502(autoload (quote gnus-article-outlook-deuglify-article) "deuglify" "\
6503Deuglify broken Outlook (Express) articles and redisplay.
6504
6505\(fn)" t nil)
6506
6507;;;***
6508\f
6509;;;### (autoloads (devanagari-post-read-conversion devanagari-compose-region)
a5805c9d 6510;;;;;; "devan-util" "language/devan-util.el" (17279 27080))
93548d2e
DL
6511;;; Generated autoloads from language/devan-util.el
6512
8d8d8d4e 6513(defconst devanagari-consonant "[\x51ad5-\x51af9\x51b38-\x51b3f]")
93548d2e 6514
390069bc
AS
6515(autoload (quote devanagari-compose-region) "devan-util" "\
6516Not documented
6517
6518\(fn FROM TO)" t nil)
6519
932a6f0f
AS
6520(autoload (quote devanagari-post-read-conversion) "devan-util" "\
6521Not documented
6522
6523\(fn LEN)" nil nil)
6524
93548d2e
DL
6525;;;***
6526\f
c595cc5f 6527;;;### (autoloads (diary-mode diary-mail-entries diary) "diary-lib"
a5805c9d 6528;;;;;; "calendar/diary-lib.el" (17308 43144))
93548d2e
DL
6529;;; Generated autoloads from calendar/diary-lib.el
6530
6531(autoload (quote diary) "diary-lib" "\
6532Generate the diary window for ARG days starting with the current date.
6533If no argument is provided, the number of days of diary entries is governed
390069bc
AS
6534by the variable `number-of-diary-entries'. A value of ARG less than 1
6535does nothing. This function is suitable for execution in a `.emacs' file.
c595cc5f
MR
6536
6537\(fn &optional ARG)" t nil)
93548d2e
DL
6538
6539(autoload (quote diary-mail-entries) "diary-lib" "\
6540Send a mail message showing diary entries for next NDAYS days.
6541If no prefix argument is given, NDAYS is set to `diary-mail-days'.
0c867fa7 6542Mail is sent to the address specified by `diary-mail-addr'.
93548d2e
DL
6543
6544You can call `diary-mail-entries' every night using an at/cron job.
6545For example, this script will run the program at 2am daily. Since
6546`emacs -batch' does not load your `.emacs' file, you must ensure that
6547all relevant variables are set, as done here.
6548
6549#!/bin/sh
6550# diary-rem.sh -- repeatedly run the Emacs diary-reminder
6551emacs -batch \\
6552-eval \"(setq diary-mail-days 3 \\
0c867fa7 6553 diary-file \\\"/path/to/diary.file\\\" \\
93548d2e
DL
6554 european-calendar-style t \\
6555 diary-mail-addr \\\"user@host.name\\\" )\" \\
55e9efba 6556-l diary-lib -f diary-mail-entries
93548d2e
DL
6557at -f diary-rem.sh 0200 tomorrow
6558
6559You may have to tweak the syntax of the `at' command to suit your
6560system. Alternatively, you can specify a cron entry:
65610 1 * * * diary-rem.sh
c595cc5f
MR
6562to run it every morning at 1am.
6563
6564\(fn &optional NDAYS)" t nil)
6565
6566(autoload (quote diary-mode) "diary-lib" "\
27a99a7c
GM
6567Major mode for editing the diary file.
6568
6569\(fn)" t nil)
93548d2e
DL
6570
6571;;;***
6572\f
6573;;;### (autoloads (diff-backup diff diff-command diff-switches) "diff"
a5805c9d 6574;;;;;; "diff.el" (17279 27171))
93548d2e
DL
6575;;; Generated autoloads from diff.el
6576
6577(defvar diff-switches "-c" "\
390069bc 6578*A string or list of strings specifying switches to be passed to diff.")
93548d2e 6579
9c46b00a
MR
6580(custom-autoload (quote diff-switches) "diff")
6581
93548d2e
DL
6582(defvar diff-command "diff" "\
6583*The command to use to run diff.")
6584
9c46b00a
MR
6585(custom-autoload (quote diff-command) "diff")
6586
93548d2e
DL
6587(autoload (quote diff) "diff" "\
6588Find and display the differences between OLD and NEW files.
6589Interactively the current buffer's file name is the default for NEW
6590and a backup file for NEW is the default for OLD.
c595cc5f 6591If NO-ASYNC is non-nil, call diff synchronously.
390069bc 6592With prefix arg, prompt for diff switches.
c595cc5f
MR
6593
6594\(fn OLD NEW &optional SWITCHES NO-ASYNC)" t nil)
93548d2e
DL
6595
6596(autoload (quote diff-backup) "diff" "\
6597Diff this file with its backup file or vice versa.
6598Uses the latest backup, if there are several numerical backups.
6599If this file is a backup, diff it with its original.
c595cc5f 6600The backup file is the first file given to `diff'.
390069bc 6601With prefix arg, prompt for diff switches.
c595cc5f
MR
6602
6603\(fn FILE &optional SWITCHES)" t nil)
93548d2e
DL
6604
6605;;;***
6606\f
5ec14d3c 6607;;;### (autoloads (diff-minor-mode diff-mode) "diff-mode" "diff-mode.el"
a5805c9d 6608;;;;;; (17279 27185))
64ed733a
PE
6609;;; Generated autoloads from diff-mode.el
6610
6611(autoload (quote diff-mode) "diff-mode" "\
5ec14d3c 6612Major mode for viewing/editing context diffs.
ad648212
GM
6613Supports unified and context diffs as well as (to a lesser extent)
6614normal diffs.
c595cc5f 6615When the buffer is read-only, the ESC prefix is not necessary.
d66d64bc 6616If you edit the buffer manually, diff-mode will try to update the hunk
c595cc5f
MR
6617headers for you on-the-fly.
6618
6619You can also switch between context diff and unified diff with \\[diff-context->unified],
175a97e4 6620or vice versa with \\[diff-unified->context] and you can also reverse the direction of
0c867fa7
MS
6621a diff with \\[diff-reverse-direction].
6622
6623\(fn)" t nil)
64ed733a 6624
5ec14d3c
KH
6625(autoload (quote diff-minor-mode) "diff-mode" "\
6626Minor mode for viewing/editing context diffs.
c595cc5f
MR
6627\\{diff-minor-mode-map}
6628
6629\(fn &optional ARG)" t nil)
64ed733a
PE
6630
6631;;;***
6632\f
0ef3cc90
LT
6633;;;### (autoloads (dired-mode dired-noselect dired-other-frame dired-other-window
6634;;;;;; dired dired-copy-preserve-time dired-dwim-target dired-keep-marker-symlink
6635;;;;;; dired-keep-marker-hardlink dired-keep-marker-copy dired-keep-marker-rename
6636;;;;;; dired-trivial-filenames dired-ls-F-marks-symlinks dired-listing-switches)
a5805c9d 6637;;;;;; "dired" "dired.el" (17374 21275))
93548d2e
DL
6638;;; Generated autoloads from dired.el
6639
6640(defvar dired-listing-switches "-al" "\
0ef3cc90 6641*Switches passed to `ls' for Dired. MUST contain the `l' option.
93548d2e
DL
6642May contain all other options that don't contradict `-l';
6643may contain even `F', `b', `i' and `s'. See also the variable
8d8d8d4e
EZ
6644`dired-ls-F-marks-symlinks' concerning the `F' switch.
6645On systems such as MS-DOS and MS-Windows, which use `ls' emulation in Lisp,
6646some of the `ls' switches are not supported; see the doc string of
0ef3cc90 6647`insert-directory' on `ls-lisp.el' for more details.")
93548d2e 6648
9c46b00a
MR
6649(custom-autoload (quote dired-listing-switches) "dired")
6650
821b278f 6651(defvar dired-chown-program (if (memq system-type (quote (hpux dgux usg-unix-v irix linux gnu/linux cygwin))) "chown" (if (file-exists-p "/usr/sbin/chown") "/usr/sbin/chown" "/etc/chown")) "\
93548d2e
DL
6652Name of chown command (usually `chown' or `/etc/chown').")
6653
6654(defvar dired-ls-F-marks-symlinks nil "\
0ef3cc90 6655*Informs Dired about how `ls -lF' marks symbolic links.
93548d2e
DL
6656Set this to t if `ls' (or whatever program is specified by
6657`insert-directory-program') with `-lF' marks the symbolic link
6658itself with a trailing @ (usually the case under Ultrix).
6659
6660Example: if `ln -s foo bar; ls -F bar' gives `bar -> foo', set it to
6661nil (the default), if it gives `bar@ -> foo', set it to t.
6662
6663Dired checks if there is really a @ appended. Thus, if you have a
6664marking `ls' program on one host and a non-marking on another host, and
6665don't care about symbolic links which really end in a @, you can
6666always set this variable to t.")
6667
9c46b00a
MR
6668(custom-autoload (quote dired-ls-F-marks-symlinks) "dired")
6669
93548d2e
DL
6670(defvar dired-trivial-filenames "^\\.\\.?$\\|^#" "\
6671*Regexp of files to skip when finding first file of a directory.
6672A value of nil means move to the subdir line.
6673A value of t means move to first file.")
6674
9c46b00a
MR
6675(custom-autoload (quote dired-trivial-filenames) "dired")
6676
93548d2e
DL
6677(defvar dired-keep-marker-rename t "\
6678*Controls marking of renamed files.
6679If t, files keep their previous marks when they are renamed.
6680If a character, renamed files (whether previously marked or not)
6681are afterward marked with that character.")
6682
9c46b00a
MR
6683(custom-autoload (quote dired-keep-marker-rename) "dired")
6684
93548d2e
DL
6685(defvar dired-keep-marker-copy 67 "\
6686*Controls marking of copied files.
6687If t, copied files are marked if and as the corresponding original files were.
6688If a character, copied files are unconditionally marked with that character.")
6689
9c46b00a
MR
6690(custom-autoload (quote dired-keep-marker-copy) "dired")
6691
93548d2e
DL
6692(defvar dired-keep-marker-hardlink 72 "\
6693*Controls marking of newly made hard links.
6694If t, they are marked if and as the files linked to were marked.
6695If a character, new links are unconditionally marked with that character.")
6696
9c46b00a
MR
6697(custom-autoload (quote dired-keep-marker-hardlink) "dired")
6698
93548d2e
DL
6699(defvar dired-keep-marker-symlink 89 "\
6700*Controls marking of newly made symbolic links.
6701If t, they are marked if and as the files linked to were marked.
6702If a character, new links are unconditionally marked with that character.")
6703
9c46b00a
MR
6704(custom-autoload (quote dired-keep-marker-symlink) "dired")
6705
93548d2e 6706(defvar dired-dwim-target nil "\
0ef3cc90 6707*If non-nil, Dired tries to guess a default target directory.
93548d2e
DL
6708This means: if there is a dired buffer displayed in the next window,
6709use its current subdir, instead of the current subdir of this dired buffer.
6710
6711The target is used in the prompt for file copy, rename etc.")
6712
9c46b00a
MR
6713(custom-autoload (quote dired-dwim-target) "dired")
6714
93548d2e
DL
6715(defvar dired-copy-preserve-time t "\
6716*If non-nil, Dired preserves the last-modified time in a file copy.
6717\(This works on only some systems.)")
9c46b00a
MR
6718
6719(custom-autoload (quote dired-copy-preserve-time) "dired")
3f146b61
RS
6720
6721(defvar dired-directory nil "\
0ef3cc90 6722The directory name or wildcard spec that this dired directory lists.
3f146b61
RS
6723Local to each dired buffer. May be a list, in which case the car is the
6724directory name and the cdr is the list of files to mention.
6725The directory name must be absolute, but need not be fully expanded.")
93548d2e
DL
6726 (define-key ctl-x-map "d" 'dired)
6727
6728(autoload (quote dired) "dired" "\
6729\"Edit\" directory DIRNAME--delete, rename, print, etc. some files in it.
6730Optional second argument SWITCHES specifies the `ls' options used.
6731\(Interactively, use a prefix argument to be able to specify SWITCHES.)
6732Dired displays a list of files in DIRNAME (which may also have
6733shell wildcards appended to select certain files). If DIRNAME is a cons,
6734its first element is taken as the directory name and the rest as an explicit
6735list of files to make directory entries for.
6736\\<dired-mode-map>You can move around in it with the usual commands.
6737You can flag files for deletion with \\[dired-flag-file-deletion] and then
6738delete them by typing \\[dired-do-flagged-delete].
0ef3cc90 6739Type \\[describe-mode] after entering Dired for more info.
93548d2e 6740
c595cc5f
MR
6741If DIRNAME is already in a dired buffer, that buffer is used without refresh.
6742
6743\(fn DIRNAME &optional SWITCHES)" t nil)
93548d2e
DL
6744 (define-key ctl-x-4-map "d" 'dired-other-window)
6745
6746(autoload (quote dired-other-window) "dired" "\
c595cc5f
MR
6747\"Edit\" directory DIRNAME. Like `dired' but selects in another window.
6748
6749\(fn DIRNAME &optional SWITCHES)" t nil)
93548d2e
DL
6750 (define-key ctl-x-5-map "d" 'dired-other-frame)
6751
6752(autoload (quote dired-other-frame) "dired" "\
c595cc5f
MR
6753\"Edit\" directory DIRNAME. Like `dired' but makes a new frame.
6754
6755\(fn DIRNAME &optional SWITCHES)" t nil)
93548d2e
DL
6756
6757(autoload (quote dired-noselect) "dired" "\
c595cc5f
MR
6758Like `dired' but returns the dired buffer as value, does not select it.
6759
6760\(fn DIR-OR-LIST &optional SWITCHES)" nil nil)
93548d2e 6761
0ef3cc90
LT
6762(autoload (quote dired-mode) "dired" "\
6763Mode for \"editing\" directory listings.
6764In Dired, you are \"editing\" a list of the files in a directory and
6765 (optionally) its subdirectories, in the format of `ls -lR'.
6766 Each directory is a page: use \\[backward-page] and \\[forward-page] to move pagewise.
6767\"Editing\" means that you can run shell commands on files, visit,
6768 compress, load or byte-compile them, change their file attributes
6769 and insert subdirectories into the same buffer. You can \"mark\"
6770 files for later commands or \"flag\" them for deletion, either file
6771 by file or all files matching certain criteria.
6772You can move using the usual cursor motion commands.\\<dired-mode-map>
6773Letters no longer insert themselves. Digits are prefix arguments.
6774Instead, type \\[dired-flag-file-deletion] to flag a file for Deletion.
6775Type \\[dired-mark] to Mark a file or subdirectory for later commands.
6776 Most commands operate on the marked files and use the current file
6777 if no files are marked. Use a numeric prefix argument to operate on
6778 the next ARG (or previous -ARG if ARG<0) files, or just `1'
6779 to operate on the current file only. Prefix arguments override marks.
6780 Mark-using commands display a list of failures afterwards. Type \\[dired-summary]
6781 to see why something went wrong.
6782Type \\[dired-unmark] to Unmark a file or all files of a subdirectory.
6783Type \\[dired-unmark-backward] to back up one line and unflag.
6784Type \\[dired-do-flagged-delete] to eXecute the deletions requested.
6785Type \\[dired-advertised-find-file] to Find the current line's file
6786 (or dired it in another buffer, if it is a directory).
6787Type \\[dired-find-file-other-window] to find file or dired directory in Other window.
6788Type \\[dired-maybe-insert-subdir] to Insert a subdirectory in this buffer.
6789Type \\[dired-do-rename] to Rename a file or move the marked files to another directory.
6790Type \\[dired-do-copy] to Copy files.
6791Type \\[dired-sort-toggle-or-edit] to toggle Sorting by name/date or change the `ls' switches.
6792Type \\[revert-buffer] to read all currently expanded directories aGain.
6793 This retains all marks and hides subdirs again that were hidden before.
6794SPC and DEL can be used to move down and up by lines.
6795
6796If Dired ever gets confused, you can either type \\[revert-buffer] to read the
6797directories again, type \\[dired-do-redisplay] to relist a single or the marked files or a
6798subdirectory, or type \\[dired-build-subdir-alist] to parse the buffer
6799again for the directory tree.
6800
6801Customization variables (rename this buffer and type \\[describe-variable] on each line
6802for more info):
6803
6804 `dired-listing-switches'
6805 `dired-trivial-filenames'
6806 `dired-shrink-to-fit'
6807 `dired-marker-char'
6808 `dired-del-marker'
6809 `dired-keep-marker-rename'
6810 `dired-keep-marker-copy'
6811 `dired-keep-marker-hardlink'
6812 `dired-keep-marker-symlink'
6813
6814Hooks (use \\[describe-variable] to see their documentation):
6815
6816 `dired-before-readin-hook'
6817 `dired-after-readin-hook'
6818 `dired-mode-hook'
6819 `dired-load-hook'
6820
6821Keybindings:
6822\\{dired-mode-map}
6823
6824\(fn &optional DIRNAME SWITCHES)" nil nil)
6825 (put 'dired-find-alternate-file 'disabled t)
390069bc 6826
93548d2e
DL
6827;;;***
6828\f
abb2db1c
GM
6829;;;### (autoloads (dired-show-file-type dired-do-query-replace-regexp
6830;;;;;; dired-do-search dired-hide-all dired-hide-subdir dired-tree-down
6831;;;;;; dired-tree-up dired-kill-subdir dired-mark-subdir-files dired-goto-subdir
b15f3b77
GM
6832;;;;;; dired-prev-subdir dired-insert-subdir dired-maybe-insert-subdir
6833;;;;;; dired-downcase dired-upcase dired-do-symlink-regexp dired-do-hardlink-regexp
5ec14d3c
KH
6834;;;;;; dired-do-copy-regexp dired-do-rename-regexp dired-do-rename
6835;;;;;; dired-do-hardlink dired-do-symlink dired-do-copy dired-create-directory
6836;;;;;; dired-rename-file dired-copy-file dired-relist-file dired-remove-file
6837;;;;;; dired-add-file dired-do-redisplay dired-do-load dired-do-byte-compile
390069bc
AS
6838;;;;;; dired-do-compress dired-query dired-compress-file dired-do-kill-lines
6839;;;;;; dired-run-shell-command dired-do-shell-command dired-clean-directory
6840;;;;;; dired-do-print dired-do-touch dired-do-chown dired-do-chgrp
d66d64bc 6841;;;;;; dired-do-chmod dired-compare-directories dired-backup-diff
a5805c9d 6842;;;;;; dired-diff) "dired-aux" "dired-aux.el" (17357 6510))
93548d2e
DL
6843;;; Generated autoloads from dired-aux.el
6844
6845(autoload (quote dired-diff) "dired-aux" "\
6846Compare file at point with file FILE using `diff'.
b5c5b319
GM
6847FILE defaults to the file at the mark. (That's the mark set by
6848\\[set-mark-command], not by Dired's \\[dired-mark] command.)
93548d2e
DL
6849The prompted-for file is the first file given to `diff'.
6850With prefix arg, prompt for second argument SWITCHES,
c1a055ca 6851which is options for `diff'.
c595cc5f
MR
6852
6853\(fn FILE &optional SWITCHES)" t nil)
93548d2e
DL
6854
6855(autoload (quote dired-backup-diff) "dired-aux" "\
6856Diff this file with its backup file or vice versa.
6857Uses the latest backup, if there are several numerical backups.
6858If this file is a backup, diff it with its original.
6859The backup file is the first file given to `diff'.
c595cc5f
MR
6860With prefix arg, prompt for argument SWITCHES which is options for `diff'.
6861
6862\(fn &optional SWITCHES)" t nil)
93548d2e 6863
d66d64bc
KL
6864(autoload (quote dired-compare-directories) "dired-aux" "\
6865Mark files with different file attributes in two dired buffers.
6866Compare file attributes of files in the current directory
6867with file attributes in directory DIR2 using PREDICATE on pairs of files
6868with the same name. Mark files for which PREDICATE returns non-nil.
6869Mark files with different names if PREDICATE is nil (or interactively
6870with empty input at the predicate prompt).
6871
6872PREDICATE is a Lisp expression that can refer to the following variables:
6873
6874 size1, size2 - file size in bytes
6875 mtime1, mtime2 - last modification time in seconds, as a float
6876 fa1, fa2 - list of file attributes
6877 returned by function `file-attributes'
6878
6879 where 1 refers to attribute of file in the current dired buffer
6880 and 2 to attribute of file in second dired buffer.
6881
6882Examples of PREDICATE:
6883
6884 (> mtime1 mtime2) - mark newer files
6885 (not (= size1 size2)) - mark files with different sizes
6886 (not (string= (nth 8 fa1) (nth 8 fa2))) - mark files with different modes
6887 (not (and (= (nth 2 fa1) (nth 2 fa2)) - mark files with different UID
6888 (= (nth 3 fa1) (nth 3 fa2)))) and GID.
6889
6890\(fn DIR2 PREDICATE)" t nil)
6891
93548d2e
DL
6892(autoload (quote dired-do-chmod) "dired-aux" "\
6893Change the mode of the marked (or next ARG) files.
c595cc5f
MR
6894This calls chmod, thus symbolic modes like `g+w' are allowed.
6895
6896\(fn &optional ARG)" t nil)
93548d2e
DL
6897
6898(autoload (quote dired-do-chgrp) "dired-aux" "\
c595cc5f
MR
6899Change the group of the marked (or next ARG) files.
6900
6901\(fn &optional ARG)" t nil)
93548d2e
DL
6902
6903(autoload (quote dired-do-chown) "dired-aux" "\
c595cc5f
MR
6904Change the owner of the marked (or next ARG) files.
6905
6906\(fn &optional ARG)" t nil)
93548d2e 6907
390069bc
AS
6908(autoload (quote dired-do-touch) "dired-aux" "\
6909Change the timestamp of the marked (or next ARG) files.
6910This calls touch.
6911
6912\(fn &optional ARG)" t nil)
6913
93548d2e
DL
6914(autoload (quote dired-do-print) "dired-aux" "\
6915Print the marked (or next ARG) files.
6916Uses the shell command coming from variables `lpr-command' and
c595cc5f
MR
6917`lpr-switches' as default.
6918
6919\(fn &optional ARG)" t nil)
93548d2e 6920
390069bc
AS
6921(autoload (quote dired-clean-directory) "dired-aux" "\
6922Flag numerical backups for deletion.
6923Spares `dired-kept-versions' latest versions, and `kept-old-versions' oldest.
6924Positive prefix arg KEEP overrides `dired-kept-versions';
6925Negative prefix arg KEEP overrides `kept-old-versions' with KEEP made positive.
6926
6927To clear the flags on these files, you can use \\[dired-flag-backup-files]
6928with a prefix argument.
6929
6930\(fn KEEP)" t nil)
6931
93548d2e
DL
6932(autoload (quote dired-do-shell-command) "dired-aux" "\
6933Run a shell command COMMAND on the marked files.
6934If no files are marked or a specific numeric prefix arg is given,
6935the next ARG files are used. Just \\[universal-argument] means the current file.
6936The prompt mentions the file(s) or the marker, as appropriate.
6937
b9e1c2ff
EZ
6938If there is a `*' in COMMAND, surrounded by whitespace, this runs
6939COMMAND just once with the entire file list substituted there.
6940
6941If there is no `*', but there is a `?' in COMMAND, surrounded by
6942whitespace, this runs COMMAND on each file individually with the
6943file name substituted for `?'.
93548d2e 6944
b9e1c2ff
EZ
6945Otherwise, this runs COMMAND on each file individually with the
6946file name added at the end of COMMAND (separated by a space).
93548d2e 6947
b9e1c2ff
EZ
6948`*' and `?' when not surrounded by whitespace have no special
6949significance for `dired-do-shell-command', and are passed through
6950normally to the shell, but you must confirm first. To pass `*' by
33c18c83
RS
6951itself to the shell as a wildcard, type `*\"\"'.
6952
6953If COMMAND produces output, it goes to a separate buffer.
6954
6955This feature does not try to redisplay Dired buffers afterward, as
6956there's no telling what files COMMAND may have changed.
6957Type \\[dired-do-redisplay] to redisplay the marked files.
6958
6959When COMMAND runs, its working directory is the top-level directory of
6960the Dired buffer, so output files usually are created there instead of
6961in a subdir.
6962
6963In a noninteractive call (from Lisp code), you must specify
c595cc5f
MR
6964the list of file names explicitly with the FILE-LIST argument.
6965
6966\(fn COMMAND &optional ARG FILE-LIST)" t nil)
93548d2e 6967
390069bc
AS
6968(autoload (quote dired-run-shell-command) "dired-aux" "\
6969Not documented
6970
6971\(fn COMMAND)" nil nil)
6972
93548d2e
DL
6973(autoload (quote dired-do-kill-lines) "dired-aux" "\
6974Kill all marked lines (not the files).
6975With a prefix argument, kill that many lines starting with the current line.
390069bc
AS
6976\(A negative argument kills backward.)
6977If you use this command with a prefix argument to kill the line
6978for a file that is a directory, which you have inserted in the
6979Dired buffer as a subdirectory, then it deletes that subdirectory
6980from the buffer as well.
6981To kill an entire subdirectory (without killing its line in the
6982parent directory), go to its directory header line and use this
6983command with a prefix argument (the value does not matter).
c595cc5f
MR
6984
6985\(fn &optional ARG FMT)" t nil)
6986
6987(autoload (quote dired-compress-file) "dired-aux" "\
6988Not documented
93548d2e 6989
c595cc5f 6990\(fn FILE)" nil nil)
93548d2e 6991
390069bc
AS
6992(autoload (quote dired-query) "dired-aux" "\
6993Not documented
6994
6995\(fn QS-VAR QS-PROMPT &rest QS-ARGS)" nil nil)
6996
93548d2e 6997(autoload (quote dired-do-compress) "dired-aux" "\
c595cc5f
MR
6998Compress or uncompress marked (or next ARG) files.
6999
7000\(fn &optional ARG)" t nil)
93548d2e
DL
7001
7002(autoload (quote dired-do-byte-compile) "dired-aux" "\
c595cc5f
MR
7003Byte compile marked (or next ARG) Emacs Lisp files.
7004
7005\(fn &optional ARG)" t nil)
93548d2e
DL
7006
7007(autoload (quote dired-do-load) "dired-aux" "\
c595cc5f
MR
7008Load the marked (or next ARG) Emacs Lisp files.
7009
7010\(fn &optional ARG)" t nil)
93548d2e
DL
7011
7012(autoload (quote dired-do-redisplay) "dired-aux" "\
7013Redisplay all marked (or next ARG) files.
7014If on a subdir line, redisplay that subdirectory. In that case,
c595cc5f 7015a prefix arg lets you edit the `ls' switches used for the new listing.
93548d2e 7016
390069bc
AS
7017Dired remembers switches specified with a prefix arg, so that reverting
7018the buffer will not reset them. However, using `dired-undo' to re-insert
7019or delete subdirectories can bypass this machinery. Hence, you sometimes
7020may have to reset some subdirectory switches after a `dired-undo'.
7021You can reset all subdirectory switches to the default using
7022\\<dired-mode-map>\\[dired-reset-subdir-switches].
7023See Info node `(emacs-xtra)Subdir switches' for more details.
7024
c595cc5f 7025\(fn &optional ARG TEST-FOR-SUBDIR)" t nil)
93548d2e 7026
c595cc5f
MR
7027(autoload (quote dired-add-file) "dired-aux" "\
7028Not documented
93548d2e 7029
c595cc5f 7030\(fn FILENAME &optional MARKER-CHAR)" nil nil)
93548d2e 7031
c595cc5f
MR
7032(autoload (quote dired-remove-file) "dired-aux" "\
7033Not documented
93548d2e 7034
c595cc5f
MR
7035\(fn FILE)" nil nil)
7036
7037(autoload (quote dired-relist-file) "dired-aux" "\
7038Create or update the line for FILE in all Dired buffers it would belong in.
7039
7040\(fn FILE)" nil nil)
7041
7042(autoload (quote dired-copy-file) "dired-aux" "\
7043Not documented
7044
7045\(fn FROM TO OK-FLAG)" nil nil)
7046
7047(autoload (quote dired-rename-file) "dired-aux" "\
7048Not documented
7049
7050\(fn FILE NEWNAME OK-IF-ALREADY-EXISTS)" nil nil)
93548d2e
DL
7051
7052(autoload (quote dired-create-directory) "dired-aux" "\
c595cc5f
MR
7053Create a directory called DIRECTORY.
7054
7055\(fn DIRECTORY)" t nil)
93548d2e
DL
7056
7057(autoload (quote dired-do-copy) "dired-aux" "\
7058Copy all marked (or next ARG) files, or copy the current file.
7059This normally preserves the last-modified date when copying.
7060When operating on just the current file, you specify the new name.
7061When operating on multiple or marked files, you specify a directory,
7062and new copies of these files are made in that directory
b5c5b319
GM
7063with the same names that the files currently have. The default
7064suggested for the target directory depends on the value of
c595cc5f
MR
7065`dired-dwim-target', which see.
7066
7067\(fn &optional ARG)" t nil)
93548d2e
DL
7068
7069(autoload (quote dired-do-symlink) "dired-aux" "\
7070Make symbolic links to current file or all marked (or next ARG) files.
7071When operating on just the current file, you specify the new name.
7072When operating on multiple or marked files, you specify a directory
7073and new symbolic links are made in that directory
b5c5b319
GM
7074with the same names that the files currently have. The default
7075suggested for the target directory depends on the value of
c595cc5f
MR
7076`dired-dwim-target', which see.
7077
7078\(fn &optional ARG)" t nil)
93548d2e
DL
7079
7080(autoload (quote dired-do-hardlink) "dired-aux" "\
7081Add names (hard links) current file or all marked (or next ARG) files.
7082When operating on just the current file, you specify the new name.
7083When operating on multiple or marked files, you specify a directory
7084and new hard links are made in that directory
b5c5b319
GM
7085with the same names that the files currently have. The default
7086suggested for the target directory depends on the value of
c595cc5f
MR
7087`dired-dwim-target', which see.
7088
7089\(fn &optional ARG)" t nil)
93548d2e
DL
7090
7091(autoload (quote dired-do-rename) "dired-aux" "\
7092Rename current file or all marked (or next ARG) files.
7093When renaming just the current file, you specify the new name.
b5c5b319 7094When renaming multiple or marked files, you specify a directory.
c595cc5f 7095This command also renames any buffers that are visiting the files.
b5c5b319 7096The default suggested for the target directory depends on the value
c595cc5f
MR
7097of `dired-dwim-target', which see.
7098
7099\(fn &optional ARG)" t nil)
93548d2e
DL
7100
7101(autoload (quote dired-do-rename-regexp) "dired-aux" "\
b5c5b319
GM
7102Rename selected files whose names match REGEXP to NEWNAME.
7103
7104With non-zero prefix argument ARG, the command operates on the next ARG
7105files. Otherwise, it operates on all the marked files, or the current
7106file if none are marked.
7107
93548d2e
DL
7108As each match is found, the user must type a character saying
7109 what to do with it. For directions, type \\[help-command] at that time.
7110NEWNAME may contain \\=\\<n> or \\& as in `query-replace-regexp'.
7111REGEXP defaults to the last regexp used.
7112
7113With a zero prefix arg, renaming by regexp affects the absolute file name.
c595cc5f
MR
7114Normally, only the non-directory part of the file name is used and changed.
7115
821b278f 7116\(fn REGEXP NEWNAME &optional ARG WHOLE-NAME)" t nil)
93548d2e
DL
7117
7118(autoload (quote dired-do-copy-regexp) "dired-aux" "\
b5c5b319 7119Copy selected files whose names match REGEXP to NEWNAME.
c595cc5f
MR
7120See function `dired-do-rename-regexp' for more info.
7121
821b278f 7122\(fn REGEXP NEWNAME &optional ARG WHOLE-NAME)" t nil)
93548d2e
DL
7123
7124(autoload (quote dired-do-hardlink-regexp) "dired-aux" "\
b5c5b319 7125Hardlink selected files whose names match REGEXP to NEWNAME.
c595cc5f
MR
7126See function `dired-do-rename-regexp' for more info.
7127
821b278f 7128\(fn REGEXP NEWNAME &optional ARG WHOLE-NAME)" t nil)
93548d2e
DL
7129
7130(autoload (quote dired-do-symlink-regexp) "dired-aux" "\
b5c5b319 7131Symlink selected files whose names match REGEXP to NEWNAME.
c595cc5f
MR
7132See function `dired-do-rename-regexp' for more info.
7133
821b278f 7134\(fn REGEXP NEWNAME &optional ARG WHOLE-NAME)" t nil)
93548d2e
DL
7135
7136(autoload (quote dired-upcase) "dired-aux" "\
c595cc5f
MR
7137Rename all marked (or next ARG) files to upper case.
7138
7139\(fn &optional ARG)" t nil)
93548d2e
DL
7140
7141(autoload (quote dired-downcase) "dired-aux" "\
c595cc5f
MR
7142Rename all marked (or next ARG) files to lower case.
7143
7144\(fn &optional ARG)" t nil)
93548d2e
DL
7145
7146(autoload (quote dired-maybe-insert-subdir) "dired-aux" "\
7147Insert this subdirectory into the same dired buffer.
7148If it is already present, just move to it (type \\[dired-do-redisplay] to refresh),
7149 else inserts it at its natural place (as `ls -lR' would have done).
7150With a prefix arg, you may edit the ls switches used for this listing.
7151 You can add `R' to the switches to expand the whole tree starting at
7152 this subdirectory.
c595cc5f
MR
7153This function takes some pains to conform to `ls -lR' output.
7154
390069bc
AS
7155Dired remembers switches specified with a prefix arg, so that reverting
7156the buffer will not reset them. However, using `dired-undo' to re-insert
7157or delete subdirectories can bypass this machinery. Hence, you sometimes
7158may have to reset some subdirectory switches after a `dired-undo'.
7159You can reset all subdirectory switches to the default using
7160\\<dired-mode-map>\\[dired-reset-subdir-switches].
7161See Info node `(emacs-xtra)Subdir switches' for more details.
7162
c595cc5f 7163\(fn DIRNAME &optional SWITCHES NO-ERROR-IF-NOT-DIR-P)" t nil)
93548d2e 7164
5ec14d3c
KH
7165(autoload (quote dired-insert-subdir) "dired-aux" "\
7166Insert this subdirectory into the same dired buffer.
7167If it is already present, overwrites previous entry,
7168 else inserts it at its natural place (as `ls -lR' would have done).
7169With a prefix arg, you may edit the `ls' switches used for this listing.
7170 You can add `R' to the switches to expand the whole tree starting at
7171 this subdirectory.
c595cc5f
MR
7172This function takes some pains to conform to `ls -lR' output.
7173
7174\(fn DIRNAME &optional SWITCHES NO-ERROR-IF-NOT-DIR-P)" t nil)
5ec14d3c 7175
93548d2e
DL
7176(autoload (quote dired-prev-subdir) "dired-aux" "\
7177Go to previous subdirectory, regardless of level.
c595cc5f
MR
7178When called interactively and not on a subdir line, go to this subdir's line.
7179
7180\(fn ARG &optional NO-ERROR-IF-NOT-FOUND NO-SKIP)" t nil)
93548d2e
DL
7181
7182(autoload (quote dired-goto-subdir) "dired-aux" "\
7183Go to end of header line of DIR in this dired buffer.
7184Return value of point on success, otherwise return nil.
c595cc5f
MR
7185The next char is either \\n, or \\r if DIR is hidden.
7186
7187\(fn DIR)" t nil)
93548d2e
DL
7188
7189(autoload (quote dired-mark-subdir-files) "dired-aux" "\
7190Mark all files except `.' and `..' in current subdirectory.
7191If the Dired buffer shows multiple directories, this command
c595cc5f
MR
7192marks the files listed in the subdirectory that point is in.
7193
7194\(fn)" t nil)
93548d2e
DL
7195
7196(autoload (quote dired-kill-subdir) "dired-aux" "\
7197Remove all lines of current subdirectory.
c595cc5f
MR
7198Lower levels are unaffected.
7199
7200\(fn &optional REMEMBER-MARKS)" t nil)
93548d2e
DL
7201
7202(autoload (quote dired-tree-up) "dired-aux" "\
c595cc5f
MR
7203Go up ARG levels in the dired tree.
7204
7205\(fn ARG)" t nil)
93548d2e
DL
7206
7207(autoload (quote dired-tree-down) "dired-aux" "\
c595cc5f
MR
7208Go down in the dired tree.
7209
7210\(fn)" t nil)
93548d2e
DL
7211
7212(autoload (quote dired-hide-subdir) "dired-aux" "\
7213Hide or unhide the current subdirectory and move to next directory.
7214Optional prefix arg is a repeat factor.
c595cc5f
MR
7215Use \\[dired-hide-all] to (un)hide all directories.
7216
7217\(fn ARG)" t nil)
93548d2e
DL
7218
7219(autoload (quote dired-hide-all) "dired-aux" "\
7220Hide all subdirectories, leaving only their header lines.
7221If there is already something hidden, make everything visible again.
c595cc5f
MR
7222Use \\[dired-hide-subdir] to (un)hide a particular subdirectory.
7223
7224\(fn ARG)" t nil)
93548d2e
DL
7225
7226(autoload (quote dired-do-search) "dired-aux" "\
7227Search through all marked files for a match for REGEXP.
7228Stops when a match is found.
c595cc5f
MR
7229To continue searching for next match, use command \\[tags-loop-continue].
7230
7231\(fn REGEXP)" t nil)
93548d2e 7232
b15f3b77 7233(autoload (quote dired-do-query-replace-regexp) "dired-aux" "\
93548d2e
DL
7234Do `query-replace-regexp' of FROM with TO, on all marked files.
7235Third arg DELIMITED (prefix arg) means replace only word-delimited matches.
b9e1c2ff 7236If you exit (\\[keyboard-quit], RET or q), you can resume the query replace
c595cc5f
MR
7237with the command \\[tags-loop-continue].
7238
7239\(fn FROM TO &optional DELIMITED)" t nil)
93548d2e 7240
abb2db1c
GM
7241(autoload (quote dired-show-file-type) "dired-aux" "\
7242Print the type of FILE, according to the `file' command.
7243If FILE is a symbolic link and the optional argument DEREF-SYMLINKS is
c595cc5f
MR
7244true then the type of the file linked to by FILE is printed instead.
7245
7246\(fn FILE &optional DEREF-SYMLINKS)" t nil)
abb2db1c 7247
93548d2e
DL
7248;;;***
7249\f
a5805c9d 7250;;;### (autoloads (dired-jump) "dired-x" "dired-x.el" (17279 27201))
93548d2e
DL
7251;;; Generated autoloads from dired-x.el
7252
7253(autoload (quote dired-jump) "dired-x" "\
7254Jump to dired buffer corresponding to current buffer.
7255If in a file, dired the current directory and move to file's line.
0ef3cc90 7256If in Dired already, pop up a level and goto old directory's line.
93548d2e 7257In case the proper dired file line cannot be found, refresh the dired
c595cc5f
MR
7258buffer and try again.
7259
7260\(fn &optional OTHER-WINDOW)" t nil)
93548d2e
DL
7261
7262;;;***
7263\f
a5805c9d 7264;;;### (autoloads (dirtrack) "dirtrack" "dirtrack.el" (17279 27122))
93548d2e
DL
7265;;; Generated autoloads from dirtrack.el
7266
7267(autoload (quote dirtrack) "dirtrack" "\
7268Determine the current directory by scanning the process output for a prompt.
7269The prompt to look for is the first item in `dirtrack-list'.
7270
7271You can toggle directory tracking by using the function `dirtrack-toggle'.
7272
7273If directory tracking does not seem to be working, you can use the
7274function `dirtrack-debug-toggle' to turn on debugging output.
7275
821b278f 7276You can enable directory tracking by adding this function to
93548d2e 7277`comint-output-filter-functions'.
c595cc5f
MR
7278
7279\(fn INPUT)" nil nil)
93548d2e
DL
7280
7281;;;***
7282\f
a5805c9d
KL
7283;;;### (autoloads (disassemble) "disass" "emacs-lisp/disass.el" (17279
7284;;;;;; 27122))
93548d2e
DL
7285;;; Generated autoloads from emacs-lisp/disass.el
7286
7287(autoload (quote disassemble) "disass" "\
7288Print disassembled code for OBJECT in (optional) BUFFER.
7289OBJECT can be a symbol defined as a function, or a function itself
7290\(a lambda expression or a compiled-function object).
7291If OBJECT is not already compiled, we compile it, but do not
c595cc5f
MR
7292redefine OBJECT if it is a symbol.
7293
7294\(fn OBJECT &optional BUFFER INDENT INTERACTIVE-P)" t nil)
93548d2e
DL
7295
7296;;;***
7297\f
7298;;;### (autoloads (standard-display-european create-glyph standard-display-underline
7299;;;;;; standard-display-graphic standard-display-g1 standard-display-ascii
7300;;;;;; standard-display-default standard-display-8bit describe-current-display-table
7301;;;;;; describe-display-table set-display-table-slot display-table-slot
a5805c9d 7302;;;;;; make-display-table) "disp-table" "disp-table.el" (17307 17624))
93548d2e
DL
7303;;; Generated autoloads from disp-table.el
7304
7305(autoload (quote make-display-table) "disp-table" "\
c595cc5f
MR
7306Return a new, empty display table.
7307
7308\(fn)" nil nil)
93548d2e
DL
7309
7310(autoload (quote display-table-slot) "disp-table" "\
7311Return the value of the extra slot in DISPLAY-TABLE named SLOT.
7312SLOT may be a number from 0 to 5 inclusive, or a slot name (symbol).
7313Valid symbols are `truncation', `wrap', `escape', `control',
c595cc5f
MR
7314`selective-display', and `vertical-border'.
7315
7316\(fn DISPLAY-TABLE SLOT)" nil nil)
93548d2e
DL
7317
7318(autoload (quote set-display-table-slot) "disp-table" "\
7319Set the value of the extra slot in DISPLAY-TABLE named SLOT to VALUE.
7320SLOT may be a number from 0 to 5 inclusive, or a name (symbol).
7321Valid symbols are `truncation', `wrap', `escape', `control',
c595cc5f
MR
7322`selective-display', and `vertical-border'.
7323
7324\(fn DISPLAY-TABLE SLOT VALUE)" nil nil)
93548d2e
DL
7325
7326(autoload (quote describe-display-table) "disp-table" "\
c595cc5f
MR
7327Describe the display table DT in a help buffer.
7328
7329\(fn DT)" nil nil)
93548d2e
DL
7330
7331(autoload (quote describe-current-display-table) "disp-table" "\
c595cc5f
MR
7332Describe the display table in use in the selected window and buffer.
7333
7334\(fn)" t nil)
93548d2e
DL
7335
7336(autoload (quote standard-display-8bit) "disp-table" "\
c595cc5f
MR
7337Display characters in the range L to H literally.
7338
7339\(fn L H)" nil nil)
93548d2e
DL
7340
7341(autoload (quote standard-display-default) "disp-table" "\
c595cc5f
MR
7342Display characters in the range L to H using the default notation.
7343
7344\(fn L H)" nil nil)
93548d2e
DL
7345
7346(autoload (quote standard-display-ascii) "disp-table" "\
c595cc5f
MR
7347Display character C using printable string S.
7348
7349\(fn C S)" nil nil)
93548d2e
DL
7350
7351(autoload (quote standard-display-g1) "disp-table" "\
7352Display character C as character SC in the g1 character set.
7353This function assumes that your terminal uses the SO/SI characters;
c595cc5f
MR
7354it is meaningless for an X frame.
7355
7356\(fn C SC)" nil nil)
93548d2e
DL
7357
7358(autoload (quote standard-display-graphic) "disp-table" "\
7359Display character C as character GC in graphics character set.
7360This function assumes VT100-compatible escapes; it is meaningless for an
c595cc5f
MR
7361X frame.
7362
7363\(fn C GC)" nil nil)
93548d2e
DL
7364
7365(autoload (quote standard-display-underline) "disp-table" "\
c595cc5f
MR
7366Display character C as character UC plus underlining.
7367
7368\(fn C UC)" nil nil)
93548d2e 7369
abb2db1c 7370(autoload (quote create-glyph) "disp-table" "\
c595cc5f
MR
7371Allocate a glyph code to display by sending STRING to the terminal.
7372
7373\(fn STRING)" nil nil)
93548d2e
DL
7374
7375(autoload (quote standard-display-european) "disp-table" "\
7376Semi-obsolete way to toggle display of ISO 8859 European characters.
7377
7378This function is semi-obsolete; if you want to do your editing with
7379unibyte characters, it is better to `set-language-environment' coupled
7380with either the `--unibyte' option or the EMACS_UNIBYTE environment
7381variable, or else customize `enable-multibyte-characters'.
7382
7383With prefix argument, this command enables European character display
7384if arg is positive, disables it otherwise. Otherwise, it toggles
7385European character display.
7386
7387When this mode is enabled, characters in the range of 160 to 255
7388display not as octal escapes, but as accented characters. Codes 146
7389and 160 display as apostrophe and space, even though they are not the
7390ASCII codes for apostrophe and space.
7391
7392Enabling European character display with this command noninteractively
7393from Lisp code also selects Latin-1 as the language environment, and
7394selects unibyte mode for all Emacs buffers (both existing buffers and
7395those created subsequently). This provides increased compatibility
c595cc5f
MR
7396for users who call this function in `.emacs'.
7397
7398\(fn ARG)" nil nil)
93548d2e
DL
7399
7400;;;***
7401\f
7402;;;### (autoloads (dissociated-press) "dissociate" "play/dissociate.el"
a5805c9d 7403;;;;;; (17279 27123))
93548d2e
DL
7404;;; Generated autoloads from play/dissociate.el
7405
7406(autoload (quote dissociated-press) "dissociate" "\
7407Dissociate the text of the current buffer.
7408Output goes in buffer named *Dissociation*,
7409which is redisplayed each time text is added to it.
7410Every so often the user must say whether to continue.
7411If ARG is positive, require ARG chars of continuity.
7412If ARG is negative, require -ARG words of continuity.
c595cc5f
MR
7413Default is 2.
7414
7415\(fn &optional ARG)" t nil)
93548d2e
DL
7416
7417;;;***
7418\f
a5805c9d 7419;;;### (autoloads (dnd-protocol-alist) "dnd" "dnd.el" (17279 27171))
d66d64bc
KL
7420;;; Generated autoloads from dnd.el
7421
7422(defvar dnd-protocol-alist (quote (("^file:///" . dnd-open-local-file) ("^file://" . dnd-open-file) ("^file:" . dnd-open-local-file))) "\
7423The functions to call for different protocols when a drop is made.
7424This variable is used by `dnd-handle-one-url' and `dnd-handle-file-name'.
7425The list contains of (REGEXP . FUNCTION) pairs.
7426The functions shall take two arguments, URL, which is the URL dropped and
7427ACTION which is the action to be performed for the drop (move, copy, link,
7428private or ask).
7429If no match is found here, and the value of `browse-url-browser-function'
7430is a pair of (REGEXP . FUNCTION), those regexps are tried for a match.
7431If no match is found, the URL is inserted as text by calling `dnd-insert-text'.
7432The function shall return the action done (move, copy, link or private)
7433if some action was made, or nil if the URL is ignored.")
7434
7435(custom-autoload (quote dnd-protocol-alist) "dnd")
7436
7437;;;***
7438\f
390069bc 7439;;;### (autoloads (dns-mode-soa-increment-serial dns-mode) "dns-mode"
a5805c9d 7440;;;;;; "textmodes/dns-mode.el" (17279 27123))
390069bc
AS
7441;;; Generated autoloads from textmodes/dns-mode.el
7442
7443(autoload (quote dns-mode) "dns-mode" "\
7444Major mode for viewing and editing DNS master files.
7445This mode is inherited from text mode. It add syntax
7446highlighting, and some commands for handling DNS master files.
7447Its keymap inherits from `text-mode' and it has the same
7448variables for customizing indentation. It has its own abbrev
7449table and its own syntax table.
7450
7451Turning on DNS mode runs `dns-mode-hook'.
7452
7453\(fn)" t nil)
7454
7455(autoload (quote dns-mode-soa-increment-serial) "dns-mode" "\
7456Locate SOA record and increment the serial field.
7457
7458\(fn)" t nil)
7459(add-to-list 'auto-mode-alist '("\\.soa\\'" . dns-mode))
7460
7461;;;***
7462\f
a5805c9d 7463;;;### (autoloads (doctor) "doctor" "play/doctor.el" (17374 21430))
93548d2e
DL
7464;;; Generated autoloads from play/doctor.el
7465
7466(autoload (quote doctor) "doctor" "\
c595cc5f
MR
7467Switch to *doctor* buffer and start giving psychotherapy.
7468
7469\(fn)" t nil)
93548d2e
DL
7470
7471;;;***
7472\f
7518ed7b 7473;;;### (autoloads (double-mode double-mode) "double" "double.el"
a5805c9d 7474;;;;;; (17279 27122))
93548d2e
DL
7475;;; Generated autoloads from double.el
7476
7518ed7b
GM
7477(defvar double-mode nil "\
7478Toggle Double mode.
7479Setting this variable directly does not take effect;
7480use either \\[customize] or the function `double-mode'.")
7481
9c46b00a 7482(custom-autoload (quote double-mode) "double")
7518ed7b 7483
93548d2e
DL
7484(autoload (quote double-mode) "double" "\
7485Toggle Double mode.
7486With prefix arg, turn Double mode on iff arg is positive.
7487
7488When Double mode is on, some keys will insert different strings
c595cc5f
MR
7489when pressed twice. See variable `double-map' for details.
7490
7491\(fn ARG)" t nil)
93548d2e
DL
7492
7493;;;***
7494\f
a5805c9d 7495;;;### (autoloads (dunnet) "dunnet" "play/dunnet.el" (17279 27123))
93548d2e
DL
7496;;; Generated autoloads from play/dunnet.el
7497
7498(autoload (quote dunnet) "dunnet" "\
c595cc5f
MR
7499Switch to *dungeon* buffer and start game.
7500
7501\(fn)" t nil)
93548d2e
DL
7502
7503;;;***
7504\f
7505;;;### (autoloads (gnus-earcon-display) "earcon" "gnus/earcon.el"
a5805c9d 7506;;;;;; (17279 27122))
93548d2e
DL
7507;;; Generated autoloads from gnus/earcon.el
7508
7509(autoload (quote gnus-earcon-display) "earcon" "\
c595cc5f
MR
7510Play sounds in message buffers.
7511
7512\(fn)" t nil)
93548d2e
DL
7513
7514;;;***
7515\f
6c083b4c 7516;;;### (autoloads (easy-mmode-defsyntax easy-mmode-defmap easy-mmode-define-keymap
d66d64bc 7517;;;;;; define-global-minor-mode define-minor-mode) "easy-mmode"
a5805c9d 7518;;;;;; "emacs-lisp/easy-mmode.el" (17307 17624))
93548d2e
DL
7519;;; Generated autoloads from emacs-lisp/easy-mmode.el
7520
cded5ed3
GM
7521(defalias (quote easy-mmode-define-minor-mode) (quote define-minor-mode))
7522
7523(autoload (quote define-minor-mode) "easy-mmode" "\
93548d2e 7524Define a new minor mode MODE.
f75a0f7a 7525This function defines the associated control variable MODE, keymap MODE-map,
d66d64bc 7526and toggle command MODE.
93548d2e
DL
7527
7528DOC is the documentation for the mode toggle command.
cded5ed3 7529Optional INIT-VALUE is the initial value of the mode's variable.
f75a0f7a 7530Optional LIGHTER is displayed in the modeline when the mode is on.
93548d2e 7531Optional KEYMAP is the default (defvar) keymap bound to the mode keymap.
f75a0f7a 7532 If it is a list, it is passed to `easy-mmode-define-keymap'
bd02b8e0
GM
7533 in order to build a valid keymap. It's generally better to use
7534 a separate MODE-map variable than to use this argument.
7535The above three arguments can be skipped if keyword arguments are
7536used (see below).
7537
cded5ed3 7538BODY contains code that will be executed each time the mode is (dis)activated.
d66d64bc
KL
7539 It will be executed after any toggling but before running the hook variable
7540 `mode-HOOK'.
7541 Before the actual body code, you can write keyword arguments (alternating
7542 keywords and values). These following keyword arguments are supported (other
7543 keywords will be passed to `defcustom' if the minor mode is global):
c595cc5f 7544:group GROUP Custom group name to use in all generated `defcustom' forms.
d66d64bc
KL
7545 Defaults to MODE without the possible trailing \"-mode\".
7546 Don't use this default group name unless you have written a
7547 `defgroup' to define that group properly.
c595cc5f 7548:global GLOBAL If non-nil specifies that the minor mode is not meant to be
d66d64bc 7549 buffer-local, so don't make the variable MODE buffer-local.
c595cc5f
MR
7550 By default, the mode is buffer-local.
7551:init-value VAL Same as the INIT-VALUE argument.
7552:lighter SPEC Same as the LIGHTER argument.
27a99a7c 7553:keymap MAP Same as the KEYMAP argument.
c595cc5f
MR
7554:require SYM Same as in `defcustom'.
7555
7556For example, you could write
7557 (define-minor-mode foo-mode \"If enabled, foo on you!\"
0c72a1a2 7558 :lighter \" Foo\" :require 'foo :global t :group 'hassle :version \"27.5\"
c595cc5f
MR
7559 ...BODY CODE...)
7560
7561\(fn MODE DOC &optional INIT-VALUE LIGHTER KEYMAP &rest BODY)" nil (quote macro))
f75a0f7a 7562
d66d64bc
KL
7563(defalias (quote easy-mmode-define-global-mode) (quote define-global-minor-mode))
7564
7565(autoload (quote define-global-minor-mode) "easy-mmode" "\
bd02b8e0 7566Make GLOBAL-MODE out of the buffer-local minor MODE.
f75a0f7a
GM
7567TURN-ON is a function that will be called with no args in every buffer
7568 and that should try to turn MODE on if applicable for that buffer.
59e085e0
KL
7569KEYS is a list of CL-style keyword arguments. As the minor mode
7570 defined by this function is always global, any :global keyword is
7571 ignored. Other keywords have the same meaning as in `define-minor-mode',
7572 which see. In particular, :group specifies the custom group.
7573 The most useful keywords are those that are passed on to the
7574 `defcustom'. It normally makes no sense to pass the :lighter
7575 or :keymap keywords to `define-global-minor-mode', since these
7576 are usually passed to the buffer-local version of the minor mode.
c595cc5f 7577
d66d64bc
KL
7578If MODE's set-up depends on the major mode in effect when it was
7579enabled, then disabling and reenabling MODE should make MODE work
7580correctly with the current major mode. This is important to
7581prevent problems with derived modes, that is, major modes that
7582call another major mode in their body.
7583
c595cc5f 7584\(fn GLOBAL-MODE MODE TURN-ON &rest KEYS)" nil (quote macro))
93548d2e 7585
b442e70a
MB
7586(autoload (quote easy-mmode-define-keymap) "easy-mmode" "\
7587Return a keymap built from bindings BS.
7588BS must be a list of (KEY . BINDING) where
7589KEY and BINDINGS are suitable for `define-key'.
7590Optional NAME is passed to `make-sparse-keymap'.
7591Optional map M can be used to modify an existing map.
c595cc5f
MR
7592ARGS is a list of additional keyword arguments.
7593
7594\(fn BS &optional NAME M ARGS)" nil nil)
b442e70a 7595
c595cc5f
MR
7596(autoload (quote easy-mmode-defmap) "easy-mmode" "\
7597Not documented
7598
7599\(fn M BS DOC &rest ARGS)" nil (quote macro))
fd0e837b 7600
0ad84a21
MB
7601(autoload (quote easy-mmode-defsyntax) "easy-mmode" "\
7602Define variable ST as a syntax-table.
c595cc5f
MR
7603CSS contains a list of syntax specifications of the form (CHAR . SYNTAX).
7604
7605\(fn ST CSS DOC &rest ARGS)" nil (quote macro))
fd0e837b 7606
93548d2e
DL
7607;;;***
7608\f
7609;;;### (autoloads (easy-menu-change easy-menu-create-menu easy-menu-do-define
a5805c9d
KL
7610;;;;;; easy-menu-define) "easymenu" "emacs-lisp/easymenu.el" (17279
7611;;;;;; 27198))
93548d2e
DL
7612;;; Generated autoloads from emacs-lisp/easymenu.el
7613
ac95a621
GM
7614(put (quote easy-menu-define) (quote lisp-indent-function) (quote defun))
7615
93548d2e
DL
7616(autoload (quote easy-menu-define) "easymenu" "\
7617Define a menu bar submenu in maps MAPS, according to MENU.
9c46b00a
MR
7618
7619If SYMBOL is non-nil, store the menu keymap in the value of SYMBOL,
7620and define SYMBOL as a function to pop up the menu, with DOC as its doc string.
7621If SYMBOL is nil, just store the menu keymap into MAPS.
93548d2e
DL
7622
7623The first element of MENU must be a string. It is the menu bar item name.
7624It may be followed by the following keyword argument pairs
7625
7626 :filter FUNCTION
7627
390069bc
AS
7628FUNCTION is a function with one argument, the rest of menu items.
7629It returns the remaining items of the displayed menu.
93548d2e
DL
7630
7631 :visible INCLUDE
7632
7633INCLUDE is an expression; this menu is only visible if this
d66d64bc 7634expression has a non-nil value. `:included' is an alias for `:visible'.
93548d2e
DL
7635
7636 :active ENABLE
7637
7638ENABLE is an expression; the menu is enabled for selection
7639whenever this expression's value is non-nil.
7640
7641The rest of the elements in MENU, are menu items.
7642
7643A menu item is usually a vector of three elements: [NAME CALLBACK ENABLE]
7644
7645NAME is a string--the menu item name.
7646
7647CALLBACK is a command to run when the item is chosen,
7648or a list to evaluate when the item is chosen.
7649
7650ENABLE is an expression; the item is enabled for selection
7651whenever this expression's value is non-nil.
7652
cded5ed3 7653Alternatively, a menu item may have the form:
93548d2e
DL
7654
7655 [ NAME CALLBACK [ KEYWORD ARG ] ... ]
7656
7657Where KEYWORD is one of the symbols defined below.
7658
7659 :keys KEYS
7660
7661KEYS is a string; a complex keyboard equivalent to this menu item.
7662This is normally not needed because keyboard equivalents are usually
7663computed automatically.
7664KEYS is expanded with `substitute-command-keys' before it is used.
7665
7666 :key-sequence KEYS
7667
abb2db1c 7668KEYS is nil, a string or a vector; nil or a keyboard equivalent to this
93548d2e 7669menu item.
abb2db1c 7670This is a hint that will considerably speed up Emacs' first display of
93548d2e
DL
7671a menu. Use `:key-sequence nil' when you know that this menu item has no
7672keyboard equivalent.
7673
7674 :active ENABLE
7675
7676ENABLE is an expression; the item is enabled for selection
7677whenever this expression's value is non-nil.
7678
d66d64bc 7679 :visible INCLUDE
93548d2e
DL
7680
7681INCLUDE is an expression; this item is only visible if this
d66d64bc 7682expression has a non-nil value. `:included' is an alias for `:visible'.
93548d2e 7683
abb2db1c 7684 :suffix FORM
93548d2e 7685
abb2db1c
GM
7686FORM is an expression that will be dynamically evaluated and whose
7687value will be concatenated to the menu entry's NAME.
93548d2e
DL
7688
7689 :style STYLE
cded5ed3 7690
93548d2e 7691STYLE is a symbol describing the type of menu item. The following are
cded5ed3 7692defined:
93548d2e
DL
7693
7694toggle: A checkbox.
7695 Prepend the name with `(*) ' or `( ) ' depending on if selected or not.
7696radio: A radio button.
7697 Prepend the name with `[X] ' or `[ ] ' depending on if selected or not.
abb2db1c 7698button: Surround the name with `[' and `]'. Use this for an item in the
93548d2e
DL
7699 menu bar itself.
7700anything else means an ordinary menu item.
7701
7702 :selected SELECTED
7703
7704SELECTED is an expression; the checkbox or radio button is selected
7705whenever this expression's value is non-nil.
7706
be0dbdab
GM
7707 :help HELP
7708
7709HELP is a string, the help to display for the menu item.
7710
93548d2e
DL
7711A menu item can be a string. Then that string appears in the menu as
7712unselectable text. A string consisting solely of hyphens is displayed
7713as a solid horizontal line.
7714
c595cc5f
MR
7715A menu item can be a list with the same format as MENU. This is a submenu.
7716
7717\(fn SYMBOL MAPS DOC MENU)" nil (quote macro))
7718
7719(autoload (quote easy-menu-do-define) "easymenu" "\
7720Not documented
93548d2e 7721
c595cc5f 7722\(fn SYMBOL MAPS DOC MENU)" nil nil)
93548d2e
DL
7723
7724(autoload (quote easy-menu-create-menu) "easymenu" "\
7725Create a menu called MENU-NAME with items described in MENU-ITEMS.
7726MENU-NAME is a string, the name of the menu. MENU-ITEMS is a list of items
c595cc5f
MR
7727possibly preceded by keyword pairs as described in `easy-menu-define'.
7728
7729\(fn MENU-NAME MENU-ITEMS)" nil nil)
93548d2e
DL
7730
7731(autoload (quote easy-menu-change) "easymenu" "\
7732Change menu found at PATH as item NAME to contain ITEMS.
7518ed7b
GM
7733PATH is a list of strings for locating the menu that
7734should contain a submenu named NAME.
7735ITEMS is a list of menu items, as in `easy-menu-define'.
7736These items entirely replace the previous items in that submenu.
7737
7738If the menu located by PATH has no submenu named NAME, add one.
7739If the optional argument BEFORE is present, add it just before
7740the submenu named BEFORE, otherwise add it at the end of the menu.
93548d2e 7741
6a9e60bc
RF
7742To implement dynamic menus, either call this from
7743`menu-bar-update-hook' or use a menu filter.
c595cc5f
MR
7744
7745\(fn PATH NAME ITEMS &optional BEFORE)" nil nil)
93548d2e
DL
7746
7747;;;***
7748\f
2cb750ba 7749;;;### (autoloads (ebnf-pop-style ebnf-push-style ebnf-reset-style
390069bc
AS
7750;;;;;; ebnf-apply-style ebnf-merge-style ebnf-delete-style ebnf-insert-style
7751;;;;;; ebnf-setup ebnf-syntax-region ebnf-syntax-buffer ebnf-syntax-file
7752;;;;;; ebnf-syntax-directory ebnf-eps-region ebnf-eps-buffer ebnf-eps-file
7753;;;;;; ebnf-eps-directory ebnf-spool-region ebnf-spool-buffer ebnf-spool-file
7754;;;;;; ebnf-spool-directory ebnf-print-region ebnf-print-buffer
7755;;;;;; ebnf-print-file ebnf-print-directory ebnf-customize) "ebnf2ps"
a5805c9d 7756;;;;;; "progmodes/ebnf2ps.el" (17279 27172))
2cb750ba
GM
7757;;; Generated autoloads from progmodes/ebnf2ps.el
7758
7759(autoload (quote ebnf-customize) "ebnf2ps" "\
c595cc5f
MR
7760Customization for ebnf group.
7761
7762\(fn)" t nil)
2cb750ba 7763
390069bc
AS
7764(autoload (quote ebnf-print-directory) "ebnf2ps" "\
7765Generate and print a PostScript syntactic chart image of DIRECTORY.
7766
7767If DIRECTORY is nil, it's used `default-directory'.
7768
7769The files in DIRECTORY that matches `ebnf-file-suffix-regexp' (which see) are
7770processed.
7771
7772See also `ebnf-print-buffer'.
7773
7774\(fn &optional DIRECTORY)" t nil)
7775
7776(autoload (quote ebnf-print-file) "ebnf2ps" "\
7777Generate and print a PostScript syntactic chart image of the file FILE.
7778
7779If optional arg DO-NOT-KILL-BUFFER-WHEN-DONE is non-nil, the buffer isn't
7780killed after process termination.
7781
7782See also `ebnf-print-buffer'.
7783
7784\(fn FILE &optional DO-NOT-KILL-BUFFER-WHEN-DONE)" t nil)
7785
2cb750ba 7786(autoload (quote ebnf-print-buffer) "ebnf2ps" "\
0c72a1a2 7787Generate and print a PostScript syntactic chart image of the buffer.
2cb750ba
GM
7788
7789When called with a numeric prefix argument (C-u), prompts the user for
7790the name of a file to save the PostScript image in, instead of sending
7791it to the printer.
7792
7793More specifically, the FILENAME argument is treated as follows: if it
7794is nil, send the image to the printer. If FILENAME is a string, save
7795the PostScript image in a file with that name. If FILENAME is a
c595cc5f
MR
7796number, prompt the user for the name of the file to save in.
7797
7798\(fn &optional FILENAME)" t nil)
2cb750ba
GM
7799
7800(autoload (quote ebnf-print-region) "ebnf2ps" "\
0c72a1a2 7801Generate and print a PostScript syntactic chart image of the region.
c595cc5f
MR
7802Like `ebnf-print-buffer', but prints just the current region.
7803
7804\(fn FROM TO &optional FILENAME)" t nil)
2cb750ba 7805
390069bc
AS
7806(autoload (quote ebnf-spool-directory) "ebnf2ps" "\
7807Generate and spool a PostScript syntactic chart image of DIRECTORY.
7808
7809If DIRECTORY is nil, it's used `default-directory'.
7810
7811The files in DIRECTORY that matches `ebnf-file-suffix-regexp' (which see) are
7812processed.
7813
7814See also `ebnf-spool-buffer'.
7815
7816\(fn &optional DIRECTORY)" t nil)
7817
7818(autoload (quote ebnf-spool-file) "ebnf2ps" "\
7819Generate and spool a PostScript syntactic chart image of the file FILE.
7820
7821If optional arg DO-NOT-KILL-BUFFER-WHEN-DONE is non-nil, the buffer isn't
7822killed after process termination.
7823
7824See also `ebnf-spool-buffer'.
7825
7826\(fn FILE &optional DO-NOT-KILL-BUFFER-WHEN-DONE)" t nil)
7827
2cb750ba 7828(autoload (quote ebnf-spool-buffer) "ebnf2ps" "\
0c72a1a2 7829Generate and spool a PostScript syntactic chart image of the buffer.
2cb750ba
GM
7830Like `ebnf-print-buffer' except that the PostScript image is saved in a
7831local buffer to be sent to the printer later.
7832
c595cc5f
MR
7833Use the command `ebnf-despool' to send the spooled images to the printer.
7834
7835\(fn)" t nil)
2cb750ba
GM
7836
7837(autoload (quote ebnf-spool-region) "ebnf2ps" "\
0c72a1a2 7838Generate a PostScript syntactic chart image of the region and spool locally.
2cb750ba
GM
7839Like `ebnf-spool-buffer', but spools just the current region.
7840
c595cc5f
MR
7841Use the command `ebnf-despool' to send the spooled images to the printer.
7842
7843\(fn FROM TO)" t nil)
2cb750ba 7844
390069bc
AS
7845(autoload (quote ebnf-eps-directory) "ebnf2ps" "\
7846Generate EPS files from EBNF files in DIRECTORY.
7847
7848If DIRECTORY is nil, it's used `default-directory'.
7849
7850The files in DIRECTORY that matches `ebnf-file-suffix-regexp' (which see) are
7851processed.
7852
7853See also `ebnf-eps-buffer'.
7854
7855\(fn &optional DIRECTORY)" t nil)
7856
7857(autoload (quote ebnf-eps-file) "ebnf2ps" "\
7858Generate an EPS file from EBNF file FILE.
7859
7860If optional arg DO-NOT-KILL-BUFFER-WHEN-DONE is non-nil, the buffer isn't
7861killed after EPS generation.
7862
7863See also `ebnf-eps-buffer'.
7864
7865\(fn FILE &optional DO-NOT-KILL-BUFFER-WHEN-DONE)" t nil)
7866
7867(autoload (quote ebnf-eps-buffer) "ebnf2ps" "\
7868Generate a PostScript syntactic chart image of the buffer in a EPS file.
2cb750ba
GM
7869
7870Indeed, for each production is generated a EPS file.
7871The EPS file name has the following form:
7872
7873 <PREFIX><PRODUCTION>.eps
7874
7875<PREFIX> is given by variable `ebnf-eps-prefix'.
7876 The default value is \"ebnf--\".
7877
7878<PRODUCTION> is the production name.
7879 The production name is mapped to form a valid file name.
7880 For example, the production name \"A/B + C\" is mapped to
7881 \"A_B_+_C\" and the EPS file name used is \"ebnf--A_B_+_C.eps\".
7882
c595cc5f
MR
7883WARNING: It's *NOT* asked any confirmation to override an existing file.
7884
7885\(fn)" t nil)
2cb750ba
GM
7886
7887(autoload (quote ebnf-eps-region) "ebnf2ps" "\
0c72a1a2 7888Generate a PostScript syntactic chart image of the region in a EPS file.
2cb750ba
GM
7889
7890Indeed, for each production is generated a EPS file.
7891The EPS file name has the following form:
7892
7893 <PREFIX><PRODUCTION>.eps
7894
7895<PREFIX> is given by variable `ebnf-eps-prefix'.
7896 The default value is \"ebnf--\".
7897
7898<PRODUCTION> is the production name.
7899 The production name is mapped to form a valid file name.
7900 For example, the production name \"A/B + C\" is mapped to
7901 \"A_B_+_C\" and the EPS file name used is \"ebnf--A_B_+_C.eps\".
7902
c595cc5f
MR
7903WARNING: It's *NOT* asked any confirmation to override an existing file.
7904
7905\(fn FROM TO)" t nil)
2cb750ba
GM
7906
7907(defalias (quote ebnf-despool) (quote ps-despool))
7908
390069bc
AS
7909(autoload (quote ebnf-syntax-directory) "ebnf2ps" "\
7910Does a syntactic analysis of the files in DIRECTORY.
7911
7912If DIRECTORY is nil, it's used `default-directory'.
7913
7914The files in DIRECTORY that matches `ebnf-file-suffix-regexp' (which see) are
7915processed.
7916
7917See also `ebnf-syntax-buffer'.
7918
7919\(fn &optional DIRECTORY)" t nil)
7920
7921(autoload (quote ebnf-syntax-file) "ebnf2ps" "\
7922Does a syntactic analysis of the FILE.
7923
7924If optional arg DO-NOT-KILL-BUFFER-WHEN-DONE is non-nil, the buffer isn't
7925killed after syntax checking.
7926
7927See also `ebnf-syntax-buffer'.
7928
7929\(fn FILE &optional DO-NOT-KILL-BUFFER-WHEN-DONE)" t nil)
7930
2cb750ba 7931(autoload (quote ebnf-syntax-buffer) "ebnf2ps" "\
0c72a1a2 7932Does a syntactic analysis of the current buffer.
c595cc5f
MR
7933
7934\(fn)" t nil)
2cb750ba
GM
7935
7936(autoload (quote ebnf-syntax-region) "ebnf2ps" "\
0c72a1a2 7937Does a syntactic analysis of a region.
c595cc5f
MR
7938
7939\(fn FROM TO)" t nil)
2cb750ba
GM
7940
7941(autoload (quote ebnf-setup) "ebnf2ps" "\
c595cc5f
MR
7942Return the current ebnf2ps setup.
7943
7944\(fn)" nil nil)
2cb750ba
GM
7945
7946(autoload (quote ebnf-insert-style) "ebnf2ps" "\
c595cc5f
MR
7947Insert a new style NAME with inheritance INHERITS and values VALUES.
7948
390069bc
AS
7949See `ebnf-style-database' documentation.
7950
c595cc5f 7951\(fn NAME INHERITS &rest VALUES)" t nil)
2cb750ba 7952
390069bc
AS
7953(autoload (quote ebnf-delete-style) "ebnf2ps" "\
7954Delete style NAME.
7955
7956See `ebnf-style-database' documentation.
7957
7958\(fn NAME)" t nil)
7959
2cb750ba 7960(autoload (quote ebnf-merge-style) "ebnf2ps" "\
c595cc5f
MR
7961Merge values of style NAME with style VALUES.
7962
390069bc
AS
7963See `ebnf-style-database' documentation.
7964
c595cc5f 7965\(fn NAME &rest VALUES)" t nil)
2cb750ba
GM
7966
7967(autoload (quote ebnf-apply-style) "ebnf2ps" "\
390069bc 7968Set STYLE as the current style.
2cb750ba 7969
c595cc5f
MR
7970It returns the old style symbol.
7971
390069bc
AS
7972See `ebnf-style-database' documentation.
7973
c595cc5f 7974\(fn STYLE)" t nil)
2cb750ba
GM
7975
7976(autoload (quote ebnf-reset-style) "ebnf2ps" "\
7977Reset current style.
7978
c595cc5f
MR
7979It returns the old style symbol.
7980
390069bc
AS
7981See `ebnf-style-database' documentation.
7982
c595cc5f 7983\(fn &optional STYLE)" t nil)
2cb750ba
GM
7984
7985(autoload (quote ebnf-push-style) "ebnf2ps" "\
390069bc 7986Push the current style and set STYLE as the current style.
2cb750ba 7987
c595cc5f
MR
7988It returns the old style symbol.
7989
390069bc
AS
7990See `ebnf-style-database' documentation.
7991
c595cc5f 7992\(fn &optional STYLE)" t nil)
2cb750ba
GM
7993
7994(autoload (quote ebnf-pop-style) "ebnf2ps" "\
390069bc 7995Pop a style and set it as the current style.
2cb750ba 7996
c595cc5f
MR
7997It returns the old style symbol.
7998
390069bc
AS
7999See `ebnf-style-database' documentation.
8000
c595cc5f 8001\(fn)" t nil)
2cb750ba
GM
8002
8003;;;***
8004\f
b5c5b319
GM
8005;;;### (autoloads (ebrowse-statistics ebrowse-save-tree-as ebrowse-save-tree
8006;;;;;; ebrowse-electric-position-menu ebrowse-forward-in-position-stack
8007;;;;;; ebrowse-back-in-position-stack ebrowse-tags-search-member-use
932a6f0f
AS
8008;;;;;; ebrowse-tags-query-replace ebrowse-tags-search ebrowse-tags-loop-continue
8009;;;;;; ebrowse-tags-complete-symbol ebrowse-tags-find-definition-other-frame
8010;;;;;; ebrowse-tags-view-definition-other-frame ebrowse-tags-find-declaration-other-frame
8011;;;;;; ebrowse-tags-find-definition-other-window ebrowse-tags-view-definition-other-window
8012;;;;;; ebrowse-tags-find-declaration-other-window ebrowse-tags-find-definition
8013;;;;;; ebrowse-tags-view-definition ebrowse-tags-find-declaration
8014;;;;;; ebrowse-tags-view-declaration ebrowse-member-mode ebrowse-electric-choose-tree
a5805c9d
KL
8015;;;;;; ebrowse-tree-mode) "ebrowse" "progmodes/ebrowse.el" (17322
8016;;;;;; 60506))
be0dbdab
GM
8017;;; Generated autoloads from progmodes/ebrowse.el
8018
8019(autoload (quote ebrowse-tree-mode) "ebrowse" "\
8020Major mode for Ebrowse class tree buffers.
8021Each line corresponds to a class in a class tree.
8022Letters do not insert themselves, they are commands.
8023File operations in the tree buffer work on class tree data structures.
8024E.g.\\[save-buffer] writes the tree to the file it was loaded from.
8025
8026Tree mode key bindings:
c595cc5f
MR
8027\\{ebrowse-tree-mode-map}
8028
8029\(fn)" t nil)
be0dbdab
GM
8030
8031(autoload (quote ebrowse-electric-choose-tree) "ebrowse" "\
c595cc5f
MR
8032Return a buffer containing a tree or nil if no tree found or canceled.
8033
8034\(fn)" t nil)
be0dbdab 8035
932a6f0f
AS
8036(autoload (quote ebrowse-member-mode) "ebrowse" "\
8037Major mode for Ebrowse member buffers.
8038
8039\\{ebrowse-member-mode-map}
8040
8041\(fn)" nil nil)
8042
8043(autoload (quote ebrowse-tags-view-declaration) "ebrowse" "\
8044View declaration of member at point.
8045
8046\(fn)" t nil)
8047
8048(autoload (quote ebrowse-tags-find-declaration) "ebrowse" "\
8049Find declaration of member at point.
8050
8051\(fn)" t nil)
8052
8053(autoload (quote ebrowse-tags-view-definition) "ebrowse" "\
8054View definition of member at point.
8055
8056\(fn)" t nil)
8057
8058(autoload (quote ebrowse-tags-find-definition) "ebrowse" "\
8059Find definition of member at point.
8060
8061\(fn)" t nil)
8062
8063(autoload (quote ebrowse-tags-find-declaration-other-window) "ebrowse" "\
8064Find declaration of member at point in other window.
8065
8066\(fn)" t nil)
8067
8068(autoload (quote ebrowse-tags-view-definition-other-window) "ebrowse" "\
8069View definition of member at point in other window.
8070
8071\(fn)" t nil)
8072
8073(autoload (quote ebrowse-tags-find-definition-other-window) "ebrowse" "\
8074Find definition of member at point in other window.
8075
8076\(fn)" t nil)
8077
8078(autoload (quote ebrowse-tags-find-declaration-other-frame) "ebrowse" "\
8079Find definition of member at point in other frame.
8080
8081\(fn)" t nil)
8082
8083(autoload (quote ebrowse-tags-view-definition-other-frame) "ebrowse" "\
8084View definition of member at point in other frame.
8085
8086\(fn)" t nil)
8087
8088(autoload (quote ebrowse-tags-find-definition-other-frame) "ebrowse" "\
8089Find definition of member at point in other frame.
8090
8091\(fn)" t nil)
8092
abb2db1c
GM
8093(autoload (quote ebrowse-tags-complete-symbol) "ebrowse" "\
8094Perform completion on the C++ symbol preceding point.
c595cc5f 8095A second call of this function without changing point inserts the next match.
abb2db1c 8096A call with prefix PREFIX reads the symbol to insert from the minibuffer with
c595cc5f
MR
8097completion.
8098
8099\(fn PREFIX)" t nil)
be0dbdab
GM
8100
8101(autoload (quote ebrowse-tags-loop-continue) "ebrowse" "\
8102Repeat last operation on files in tree.
8103FIRST-TIME non-nil means this is not a repetition, but the first time.
c595cc5f
MR
8104TREE-BUFFER if indirectly specifies which files to loop over.
8105
8106\(fn &optional FIRST-TIME TREE-BUFFER)" t nil)
be0dbdab 8107
932a6f0f
AS
8108(autoload (quote ebrowse-tags-search) "ebrowse" "\
8109Search for REGEXP in all files in a tree.
8110If marked classes exist, process marked classes, only.
8111If regular expression is nil, repeat last search.
8112
8113\(fn REGEXP)" t nil)
8114
be0dbdab
GM
8115(autoload (quote ebrowse-tags-query-replace) "ebrowse" "\
8116Query replace FROM with TO in all files of a class tree.
c595cc5f
MR
8117With prefix arg, process files of marked classes only.
8118
8119\(fn FROM TO)" t nil)
be0dbdab 8120
b5c5b319
GM
8121(autoload (quote ebrowse-tags-search-member-use) "ebrowse" "\
8122Search for call sites of a member.
8123If FIX-NAME is specified, search uses of that member.
8124Otherwise, read a member name from the minibuffer.
8125Searches in all files mentioned in a class tree for something that
c595cc5f
MR
8126looks like a function call to the member.
8127
8128\(fn &optional FIX-NAME)" t nil)
b5c5b319
GM
8129
8130(autoload (quote ebrowse-back-in-position-stack) "ebrowse" "\
8131Move backward in the position stack.
c595cc5f
MR
8132Prefix arg ARG says how much.
8133
8134\(fn ARG)" t nil)
b5c5b319
GM
8135
8136(autoload (quote ebrowse-forward-in-position-stack) "ebrowse" "\
8137Move forward in the position stack.
c595cc5f
MR
8138Prefix arg ARG says how much.
8139
8140\(fn ARG)" t nil)
b5c5b319
GM
8141
8142(autoload (quote ebrowse-electric-position-menu) "ebrowse" "\
c595cc5f
MR
8143List positions in the position stack in an electric buffer.
8144
8145\(fn)" t nil)
b5c5b319
GM
8146
8147(autoload (quote ebrowse-save-tree) "ebrowse" "\
c595cc5f
MR
8148Save current tree in same file it was loaded from.
8149
8150\(fn)" t nil)
b5c5b319 8151
be0dbdab
GM
8152(autoload (quote ebrowse-save-tree-as) "ebrowse" "\
8153Write the current tree data structure to a file.
8154Read the file name from the minibuffer if interactive.
c595cc5f
MR
8155Otherwise, FILE-NAME specifies the file to save the tree in.
8156
8157\(fn &optional FILE-NAME)" t nil)
be0dbdab 8158
b5c5b319 8159(autoload (quote ebrowse-statistics) "ebrowse" "\
c595cc5f
MR
8160Display statistics for a class tree.
8161
8162\(fn)" t nil)
b5c5b319 8163
be0dbdab
GM
8164;;;***
8165\f
93548d2e 8166;;;### (autoloads (electric-buffer-list) "ebuff-menu" "ebuff-menu.el"
a5805c9d 8167;;;;;; (17322 60322))
93548d2e
DL
8168;;; Generated autoloads from ebuff-menu.el
8169
8170(autoload (quote electric-buffer-list) "ebuff-menu" "\
390069bc 8171Pop up a buffer describing the set of Emacs buffers.
93548d2e
DL
8172Vaguely like ITS lunar select buffer; combining typeoutoid buffer
8173listing with menuoid buffer selection.
8174
8175If the very next character typed is a space then the buffer list
8176window disappears. Otherwise, one may move around in the buffer list
8177window, marking buffers to be selected, saved or deleted.
8178
8179To exit and select a new buffer, type a space when the cursor is on
8180the appropriate line of the buffer-list window. Other commands are
390069bc 8181much like those of `Buffer-menu-mode'.
93548d2e 8182
390069bc 8183Run hooks in `electric-buffer-menu-mode-hook' on entry.
93548d2e 8184
c595cc5f
MR
8185\\{electric-buffer-menu-mode-map}
8186
8187\(fn ARG)" t nil)
93548d2e
DL
8188
8189;;;***
8190\f
8191;;;### (autoloads (Electric-command-history-redo-expression) "echistory"
a5805c9d 8192;;;;;; "echistory.el" (17322 60525))
93548d2e
DL
8193;;; Generated autoloads from echistory.el
8194
8195(autoload (quote Electric-command-history-redo-expression) "echistory" "\
8196Edit current history line in minibuffer and execute result.
c595cc5f
MR
8197With prefix arg NOCONFIRM, execute current line as-is without editing.
8198
8199\(fn &optional NOCONFIRM)" t nil)
93548d2e
DL
8200
8201;;;***
8202\f
c1a055ca
EZ
8203;;;### (autoloads (edebug-all-forms edebug-all-defs edebug-eval-top-level-form
8204;;;;;; def-edebug-spec edebug-all-forms edebug-all-defs) "edebug"
a5805c9d 8205;;;;;; "emacs-lisp/edebug.el" (17331 26267))
93548d2e
DL
8206;;; Generated autoloads from emacs-lisp/edebug.el
8207
8208(defvar edebug-all-defs nil "\
d66d64bc 8209*If non-nil, evaluating defining forms instruments for Edebug.
93548d2e
DL
8210This applies to `eval-defun', `eval-region', `eval-buffer', and
8211`eval-current-buffer'. `eval-region' is also called by
8212`eval-last-sexp', and `eval-print-last-sexp'.
8213
8214You can use the command `edebug-all-defs' to toggle the value of this
8215variable. You may wish to make it local to each buffer with
8216\(make-local-variable 'edebug-all-defs) in your
8217`emacs-lisp-mode-hook'.")
8218
9c46b00a
MR
8219(custom-autoload (quote edebug-all-defs) "edebug")
8220
93548d2e
DL
8221(defvar edebug-all-forms nil "\
8222*Non-nil evaluation of all forms will instrument for Edebug.
8223This doesn't apply to loading or evaluations in the minibuffer.
8224Use the command `edebug-all-forms' to toggle the value of this option.")
8225
9c46b00a
MR
8226(custom-autoload (quote edebug-all-forms) "edebug")
8227
93548d2e 8228(autoload (quote def-edebug-spec) "edebug" "\
0a352cd7 8229Set the `edebug-form-spec' property of SYMBOL according to SPEC.
93548d2e 8230Both SYMBOL and SPEC are unevaluated. The SPEC can be 0, t, a symbol
c595cc5f
MR
8231\(naming a function), or a list.
8232
8233\(fn SYMBOL SPEC)" nil (quote macro))
93548d2e
DL
8234
8235(defalias (quote edebug-defun) (quote edebug-eval-top-level-form))
8236
8237(autoload (quote edebug-eval-top-level-form) "edebug" "\
4c6bc877
MR
8238Evaluate the top level form point is in, stepping through with Edebug.
8239This is like `eval-defun' except that it steps the code for Edebug
8240before evaluating it. It displays the value in the echo area
8241using `eval-expression' (which see).
8242
8243If you do this on a function definition
8244such as a defun or defmacro, it defines the function and instruments
8245its definition for Edebug, so it will do Edebug stepping when called
8246later. It displays `Edebug: FUNCTION' in the echo area to indicate
8247that FUNCTION is now instrumented for Edebug.
8248
8249If the current defun is actually a call to `defvar' or `defcustom',
8250evaluating it this way resets the variable using its initial value
8251expression even if the variable already has some other value.
8252\(Normally `defvar' and `defcustom' do not alter the value if there
c595cc5f
MR
8253already is one.)
8254
8255\(fn)" t nil)
93548d2e 8256
c1a055ca
EZ
8257(autoload (quote edebug-all-defs) "edebug" "\
8258Toggle edebugging of all definitions.
8259
8260\(fn)" t nil)
8261
8262(autoload (quote edebug-all-forms) "edebug" "\
8263Toggle edebugging of all forms.
8264
8265\(fn)" t nil)
8266
93548d2e
DL
8267;;;***
8268\f
8269;;;### (autoloads (ediff-documentation ediff-version ediff-revision
8270;;;;;; ediff-patch-buffer ediff-patch-file run-ediff-from-cvs-buffer
8271;;;;;; ediff-merge-revisions-with-ancestor ediff-merge-revisions
8272;;;;;; ediff-merge-buffers-with-ancestor ediff-merge-buffers ediff-merge-files-with-ancestor
8273;;;;;; ediff-merge-files ediff-regions-linewise ediff-regions-wordwise
8274;;;;;; ediff-windows-linewise ediff-windows-wordwise ediff-merge-directory-revisions-with-ancestor
8275;;;;;; ediff-merge-directory-revisions ediff-merge-directories-with-ancestor
8276;;;;;; ediff-merge-directories ediff-directories3 ediff-directory-revisions
296d7669 8277;;;;;; ediff-directories ediff-buffers3 ediff-buffers ediff-backup
a5805c9d 8278;;;;;; ediff-files3 ediff-files) "ediff" "ediff.el" (17297 42806))
93548d2e
DL
8279;;; Generated autoloads from ediff.el
8280
8281(autoload (quote ediff-files) "ediff" "\
c595cc5f
MR
8282Run Ediff on a pair of files, FILE-A and FILE-B.
8283
8284\(fn FILE-A FILE-B &optional STARTUP-HOOKS)" t nil)
93548d2e
DL
8285
8286(autoload (quote ediff-files3) "ediff" "\
c595cc5f
MR
8287Run Ediff on three files, FILE-A, FILE-B, and FILE-C.
8288
8289\(fn FILE-A FILE-B FILE-C &optional STARTUP-HOOKS)" t nil)
93548d2e
DL
8290
8291(defalias (quote ediff3) (quote ediff-files3))
8292
8293(defalias (quote ediff) (quote ediff-files))
8294
296d7669
KS
8295(autoload (quote ediff-backup) "ediff" "\
8296Run Ediff on FILE and its backup file.
8297Uses the latest backup, if there are several numerical backups.
c595cc5f
MR
8298If this file is a backup, `ediff' it with its original.
8299
8300\(fn FILE)" t nil)
296d7669 8301
93548d2e 8302(autoload (quote ediff-buffers) "ediff" "\
c595cc5f
MR
8303Run Ediff on a pair of buffers, BUFFER-A and BUFFER-B.
8304
8305\(fn BUFFER-A BUFFER-B &optional STARTUP-HOOKS JOB-NAME)" t nil)
93548d2e
DL
8306
8307(defalias (quote ebuffers) (quote ediff-buffers))
8308
8309(autoload (quote ediff-buffers3) "ediff" "\
c595cc5f
MR
8310Run Ediff on three buffers, BUFFER-A, BUFFER-B, and BUFFER-C.
8311
8312\(fn BUFFER-A BUFFER-B BUFFER-C &optional STARTUP-HOOKS JOB-NAME)" t nil)
93548d2e
DL
8313
8314(defalias (quote ebuffers3) (quote ediff-buffers3))
8315
8316(autoload (quote ediff-directories) "ediff" "\
8317Run Ediff on a pair of directories, DIR1 and DIR2, comparing files that have
c595cc5f
MR
8318the same name in both. The third argument, REGEXP, is nil or a regular
8319expression; only file names that match the regexp are considered.
8320
8321\(fn DIR1 DIR2 REGEXP)" t nil)
93548d2e
DL
8322
8323(defalias (quote edirs) (quote ediff-directories))
8324
8325(autoload (quote ediff-directory-revisions) "ediff" "\
8326Run Ediff on a directory, DIR1, comparing its files with their revisions.
8327The second argument, REGEXP, is a regular expression that filters the file
c595cc5f
MR
8328names. Only the files that are under revision control are taken into account.
8329
8330\(fn DIR1 REGEXP)" t nil)
93548d2e
DL
8331
8332(defalias (quote edir-revisions) (quote ediff-directory-revisions))
8333
8334(autoload (quote ediff-directories3) "ediff" "\
8335Run Ediff on three directories, DIR1, DIR2, and DIR3, comparing files that
c595cc5f
MR
8336have the same name in all three. The last argument, REGEXP, is nil or a
8337regular expression; only file names that match the regexp are considered.
8338
8339\(fn DIR1 DIR2 DIR3 REGEXP)" t nil)
93548d2e
DL
8340
8341(defalias (quote edirs3) (quote ediff-directories3))
8342
8343(autoload (quote ediff-merge-directories) "ediff" "\
8344Run Ediff on a pair of directories, DIR1 and DIR2, merging files that have
c595cc5f
MR
8345the same name in both. The third argument, REGEXP, is nil or a regular
8346expression; only file names that match the regexp are considered.
8347
8348\(fn DIR1 DIR2 REGEXP &optional MERGE-AUTOSTORE-DIR)" t nil)
93548d2e
DL
8349
8350(defalias (quote edirs-merge) (quote ediff-merge-directories))
8351
8352(autoload (quote ediff-merge-directories-with-ancestor) "ediff" "\
8353Merge files in directories DIR1 and DIR2 using files in ANCESTOR-DIR as ancestors.
cded5ed3 8354Ediff merges files that have identical names in DIR1, DIR2. If a pair of files
93548d2e 8355in DIR1 and DIR2 doesn't have an ancestor in ANCESTOR-DIR, Ediff will merge
c595cc5f
MR
8356without ancestor. The fourth argument, REGEXP, is nil or a regular expression;
8357only file names that match the regexp are considered.
8358
8359\(fn DIR1 DIR2 ANCESTOR-DIR REGEXP &optional MERGE-AUTOSTORE-DIR)" t nil)
93548d2e
DL
8360
8361(autoload (quote ediff-merge-directory-revisions) "ediff" "\
8362Run Ediff on a directory, DIR1, merging its files with their revisions.
8363The second argument, REGEXP, is a regular expression that filters the file
c595cc5f
MR
8364names. Only the files that are under revision control are taken into account.
8365
8366\(fn DIR1 REGEXP &optional MERGE-AUTOSTORE-DIR)" t nil)
93548d2e
DL
8367
8368(defalias (quote edir-merge-revisions) (quote ediff-merge-directory-revisions))
8369
8370(autoload (quote ediff-merge-directory-revisions-with-ancestor) "ediff" "\
8371Run Ediff on a directory, DIR1, merging its files with their revisions and ancestors.
8372The second argument, REGEXP, is a regular expression that filters the file
c595cc5f
MR
8373names. Only the files that are under revision control are taken into account.
8374
8375\(fn DIR1 REGEXP &optional MERGE-AUTOSTORE-DIR)" t nil)
93548d2e
DL
8376
8377(defalias (quote edir-merge-revisions-with-ancestor) (quote ediff-merge-directory-revisions-with-ancestor))
8378
8379(defalias (quote edirs-merge-with-ancestor) (quote ediff-merge-directories-with-ancestor))
8380
8381(autoload (quote ediff-windows-wordwise) "ediff" "\
8382Compare WIND-A and WIND-B, which are selected by clicking, wordwise.
8383With prefix argument, DUMB-MODE, or on a non-windowing display, works as
8384follows:
8385If WIND-A is nil, use selected window.
c595cc5f
MR
8386If WIND-B is nil, use window next to WIND-A.
8387
8388\(fn DUMB-MODE &optional WIND-A WIND-B STARTUP-HOOKS)" t nil)
93548d2e
DL
8389
8390(autoload (quote ediff-windows-linewise) "ediff" "\
8391Compare WIND-A and WIND-B, which are selected by clicking, linewise.
8392With prefix argument, DUMB-MODE, or on a non-windowing display, works as
8393follows:
8394If WIND-A is nil, use selected window.
c595cc5f
MR
8395If WIND-B is nil, use window next to WIND-A.
8396
8397\(fn DUMB-MODE &optional WIND-A WIND-B STARTUP-HOOKS)" t nil)
93548d2e
DL
8398
8399(autoload (quote ediff-regions-wordwise) "ediff" "\
b9e1c2ff
EZ
8400Run Ediff on a pair of regions in specified buffers.
8401Regions (i.e., point and mark) are assumed to be set in advance except
8402for the second region in the case both regions are from the same buffer.
8403In such a case the user is asked to interactively establish the second
8404region.
93548d2e 8405This function is effective only for relatively small regions, up to 200
c595cc5f
MR
8406lines. For large regions, use `ediff-regions-linewise'.
8407
8408\(fn BUFFER-A BUFFER-B &optional STARTUP-HOOKS)" t nil)
93548d2e
DL
8409
8410(autoload (quote ediff-regions-linewise) "ediff" "\
b9e1c2ff
EZ
8411Run Ediff on a pair of regions in specified buffers.
8412Regions (i.e., point and mark) are assumed to be set in advance except
8413for the second region in the case both regions are from the same buffer.
8414In such a case the user is asked to interactively establish the second
8415region.
93548d2e
DL
8416Each region is enlarged to contain full lines.
8417This function is effective for large regions, over 100-200
c595cc5f
MR
8418lines. For small regions, use `ediff-regions-wordwise'.
8419
8420\(fn BUFFER-A BUFFER-B &optional STARTUP-HOOKS)" t nil)
93548d2e
DL
8421
8422(defalias (quote ediff-merge) (quote ediff-merge-files))
8423
8424(autoload (quote ediff-merge-files) "ediff" "\
c595cc5f
MR
8425Merge two files without ancestor.
8426
8427\(fn FILE-A FILE-B &optional STARTUP-HOOKS MERGE-BUFFER-FILE)" t nil)
93548d2e
DL
8428
8429(autoload (quote ediff-merge-files-with-ancestor) "ediff" "\
c595cc5f
MR
8430Merge two files with ancestor.
8431
8432\(fn FILE-A FILE-B FILE-ANCESTOR &optional STARTUP-HOOKS MERGE-BUFFER-FILE)" t nil)
93548d2e
DL
8433
8434(defalias (quote ediff-merge-with-ancestor) (quote ediff-merge-files-with-ancestor))
8435
8436(autoload (quote ediff-merge-buffers) "ediff" "\
c595cc5f
MR
8437Merge buffers without ancestor.
8438
8439\(fn BUFFER-A BUFFER-B &optional STARTUP-HOOKS JOB-NAME MERGE-BUFFER-FILE)" t nil)
93548d2e
DL
8440
8441(autoload (quote ediff-merge-buffers-with-ancestor) "ediff" "\
c595cc5f
MR
8442Merge buffers with ancestor.
8443
8444\(fn BUFFER-A BUFFER-B BUFFER-ANCESTOR &optional STARTUP-HOOKS JOB-NAME MERGE-BUFFER-FILE)" t nil)
93548d2e
DL
8445
8446(autoload (quote ediff-merge-revisions) "ediff" "\
8447Run Ediff by merging two revisions of a file.
8448The file is the optional FILE argument or the file visited by the current
c595cc5f
MR
8449buffer.
8450
8451\(fn &optional FILE STARTUP-HOOKS MERGE-BUFFER-FILE)" t nil)
93548d2e
DL
8452
8453(autoload (quote ediff-merge-revisions-with-ancestor) "ediff" "\
8454Run Ediff by merging two revisions of a file with a common ancestor.
33c18c83 8455The file is the optional FILE argument or the file visited by the current
c595cc5f
MR
8456buffer.
8457
8458\(fn &optional FILE STARTUP-HOOKS MERGE-BUFFER-FILE)" t nil)
93548d2e
DL
8459
8460(autoload (quote run-ediff-from-cvs-buffer) "ediff" "\
8461Run Ediff-merge on appropriate revisions of the selected file.
cded5ed3 8462First run after `M-x cvs-update'. Then place the cursor on a line describing a
c595cc5f
MR
8463file and then run `run-ediff-from-cvs-buffer'.
8464
8465\(fn POS)" t nil)
93548d2e
DL
8466
8467(autoload (quote ediff-patch-file) "ediff" "\
cded5ed3
GM
8468Run Ediff by patching SOURCE-FILENAME.
8469If optional PATCH-BUF is given, use the patch in that buffer
8470and don't ask the user.
8471If prefix argument, then: if even argument, assume that the patch is in a
c595cc5f
MR
8472buffer. If odd -- assume it is in a file.
8473
8474\(fn &optional ARG PATCH-BUF)" t nil)
93548d2e
DL
8475
8476(autoload (quote ediff-patch-buffer) "ediff" "\
0ef3cc90
LT
8477Run Ediff by patching the buffer specified at prompt.
8478Without the optional prefix ARG, asks if the patch is in some buffer and
8479prompts for the buffer or a file, depending on the answer.
8480With ARG=1, assumes the patch is in a file and prompts for the file.
8481With ARG=2, assumes the patch is in a buffer and prompts for the buffer.
8482PATCH-BUF is an optional argument, which specifies the buffer that contains the
8483patch. If not given, the user is prompted according to the prefix argument.
c595cc5f
MR
8484
8485\(fn &optional ARG PATCH-BUF)" t nil)
93548d2e
DL
8486
8487(defalias (quote epatch) (quote ediff-patch-file))
8488
8489(defalias (quote epatch-buffer) (quote ediff-patch-buffer))
8490
8491(autoload (quote ediff-revision) "ediff" "\
8492Run Ediff by comparing versions of a file.
ac95a621
GM
8493The file is an optional FILE argument or the file entered at the prompt.
8494Default: the file visited by the current buffer.
c595cc5f
MR
8495Uses `vc.el' or `rcs.el' depending on `ediff-version-control-package'.
8496
8497\(fn &optional FILE STARTUP-HOOKS)" t nil)
93548d2e
DL
8498
8499(defalias (quote erevision) (quote ediff-revision))
8500
8501(autoload (quote ediff-version) "ediff" "\
8502Return string describing the version of Ediff.
c595cc5f
MR
8503When called interactively, displays the version.
8504
8505\(fn)" t nil)
93548d2e
DL
8506
8507(autoload (quote ediff-documentation) "ediff" "\
8508Display Ediff's manual.
c595cc5f
MR
8509With optional NODE, goes to that node.
8510
8511\(fn &optional NODE)" t nil)
93548d2e
DL
8512
8513;;;***
8514\f
d054101f 8515;;;### (autoloads (ediff-customize) "ediff-help" "ediff-help.el"
a5805c9d 8516;;;;;; (17279 27122))
d054101f
GM
8517;;; Generated autoloads from ediff-help.el
8518
c595cc5f
MR
8519(autoload (quote ediff-customize) "ediff-help" "\
8520Not documented
8521
8522\(fn)" t nil)
8523
8524;;;***
8525\f
a5805c9d 8526;;;### (autoloads nil "ediff-hook" "ediff-hook.el" (17279 27122))
c595cc5f
MR
8527;;; Generated autoloads from ediff-hook.el
8528
8529(defvar ediff-window-setup-function)
8530 (defmacro ediff-cond-compile-for-xemacs-or-emacs (xemacs-form emacs-form) (if (string-match "XEmacs" emacs-version) xemacs-form emacs-form))
8531
8532(ediff-cond-compile-for-xemacs-or-emacs (defun ediff-xemacs-init-menus nil (if (featurep (quote menubar)) (progn (add-submenu (quote ("Tools")) ediff-menu "OO-Browser...") (add-submenu (quote ("Tools")) ediff-merge-menu "OO-Browser...") (add-submenu (quote ("Tools")) epatch-menu "OO-Browser...") (add-submenu (quote ("Tools")) ediff-misc-menu "OO-Browser...") (add-menu-button (quote ("Tools")) "-------" "OO-Browser...")))) nil)
8533
d66d64bc 8534(ediff-cond-compile-for-xemacs-or-emacs (progn (defvar ediff-menu (quote ("Compare" ["Two Files..." ediff-files t] ["Two Buffers..." ediff-buffers t] ["Three Files..." ediff-files3 t] ["Three Buffers..." ediff-buffers3 t] "---" ["Two Directories..." ediff-directories t] ["Three Directories..." ediff-directories3 t] "---" ["File with Revision..." ediff-revision t] ["Directory Revisions..." ediff-directory-revisions t] "---" ["Windows Word-by-word..." ediff-windows-wordwise t] ["Windows Line-by-line..." ediff-windows-linewise t] "---" ["Regions Word-by-word..." ediff-regions-wordwise t] ["Regions Line-by-line..." ediff-regions-linewise t]))) (defvar ediff-merge-menu (quote ("Merge" ["Files..." ediff-merge-files t] ["Files with Ancestor..." ediff-merge-files-with-ancestor t] ["Buffers..." ediff-merge-buffers t] ["Buffers with Ancestor..." ediff-merge-buffers-with-ancestor t] "---" ["Directories..." ediff-merge-directories t] ["Directories with Ancestor..." ediff-merge-directories-with-ancestor t] "---" ["Revisions..." ediff-merge-revisions t] ["Revisions with Ancestor..." ediff-merge-revisions-with-ancestor t] ["Directory Revisions..." ediff-merge-directory-revisions t] ["Directory Revisions with Ancestor..." ediff-merge-directory-revisions-with-ancestor t]))) (defvar epatch-menu (quote ("Apply Patch" ["To a file..." ediff-patch-file t] ["To a buffer..." ediff-patch-buffer t]))) (defvar ediff-misc-menu (quote ("Ediff Miscellanea" ["Ediff Manual" ediff-documentation t] ["Customize Ediff" ediff-customize t] ["List Ediff Sessions" ediff-show-registry t] ["Use separate frame for Ediff control buffer" ediff-toggle-multiframe :style toggle :selected (if (and (featurep (quote ediff-util)) (boundp (quote ediff-window-setup-function))) (eq ediff-window-setup-function (quote ediff-setup-windows-multiframe)))] ["Use a toolbar with Ediff control buffer" ediff-toggle-use-toolbar :style toggle :selected (if (featurep (quote ediff-tbar)) (ediff-use-toolbar-p))]))) (if (and (featurep (quote menubar)) (not (featurep (quote infodock))) (not (featurep (quote ediff-hook)))) (ediff-xemacs-init-menus))) (if (featurep (quote menu-bar)) (progn (defvar menu-bar-ediff-misc-menu (make-sparse-keymap "Ediff Miscellanea")) (fset (quote menu-bar-ediff-misc-menu) (symbol-value (quote menu-bar-ediff-misc-menu))) (defvar menu-bar-epatch-menu (make-sparse-keymap "Apply Patch")) (fset (quote menu-bar-epatch-menu) (symbol-value (quote menu-bar-epatch-menu))) (defvar menu-bar-ediff-merge-menu (make-sparse-keymap "Merge")) (fset (quote menu-bar-ediff-merge-menu) (symbol-value (quote menu-bar-ediff-merge-menu))) (defvar menu-bar-ediff-menu (make-sparse-keymap "Compare")) (fset (quote menu-bar-ediff-menu) (symbol-value (quote menu-bar-ediff-menu))) (define-key menu-bar-ediff-menu [window] (quote ("This Window and Next Window" . compare-windows))) (define-key menu-bar-ediff-menu [ediff-windows-linewise] (quote ("Windows Line-by-line..." . ediff-windows-linewise))) (define-key menu-bar-ediff-menu [ediff-windows-wordwise] (quote ("Windows Word-by-word..." . ediff-windows-wordwise))) (define-key menu-bar-ediff-menu [separator-ediff-windows] (quote ("--"))) (define-key menu-bar-ediff-menu [ediff-regions-linewise] (quote ("Regions Line-by-line..." . ediff-regions-linewise))) (define-key menu-bar-ediff-menu [ediff-regions-wordwise] (quote ("Regions Word-by-word..." . ediff-regions-wordwise))) (define-key menu-bar-ediff-menu [separator-ediff-regions] (quote ("--"))) (define-key menu-bar-ediff-menu [ediff-dir-revision] (quote ("Directory Revisions..." . ediff-directory-revisions))) (define-key menu-bar-ediff-menu [ediff-revision] (quote ("File with Revision..." . ediff-revision))) (define-key menu-bar-ediff-menu [separator-ediff-directories] (quote ("--"))) (define-key menu-bar-ediff-menu [ediff-directories3] (quote ("Three Directories..." . ediff-directories3))) (define-key menu-bar-ediff-menu [ediff-directories] (quote ("Two Directories..." . ediff-directories))) (define-key menu-bar-ediff-menu [separator-ediff-files] (quote ("--"))) (define-key menu-bar-ediff-menu [ediff-buffers3] (quote ("Three Buffers..." . ediff-buffers3))) (define-key menu-bar-ediff-menu [ediff-files3] (quote ("Three Files..." . ediff-files3))) (define-key menu-bar-ediff-menu [ediff-buffers] (quote ("Two Buffers..." . ediff-buffers))) (define-key menu-bar-ediff-menu [ediff-files] (quote ("Two Files..." . ediff-files))) (define-key menu-bar-ediff-merge-menu [ediff-merge-dir-revisions-with-ancestor] (quote ("Directory Revisions with Ancestor..." . ediff-merge-directory-revisions-with-ancestor))) (define-key menu-bar-ediff-merge-menu [ediff-merge-dir-revisions] (quote ("Directory Revisions..." . ediff-merge-directory-revisions))) (define-key menu-bar-ediff-merge-menu [ediff-merge-revisions-with-ancestor] (quote ("Revisions with Ancestor..." . ediff-merge-revisions-with-ancestor))) (define-key menu-bar-ediff-merge-menu [ediff-merge-revisions] (quote ("Revisions..." . ediff-merge-revisions))) (define-key menu-bar-ediff-merge-menu [separator-ediff-merge] (quote ("--"))) (define-key menu-bar-ediff-merge-menu [ediff-merge-directories-with-ancestor] (quote ("Directories with Ancestor..." . ediff-merge-directories-with-ancestor))) (define-key menu-bar-ediff-merge-menu [ediff-merge-directories] (quote ("Directories..." . ediff-merge-directories))) (define-key menu-bar-ediff-merge-menu [separator-ediff-merge-dirs] (quote ("--"))) (define-key menu-bar-ediff-merge-menu [ediff-merge-buffers-with-ancestor] (quote ("Buffers with Ancestor..." . ediff-merge-buffers-with-ancestor))) (define-key menu-bar-ediff-merge-menu [ediff-merge-buffers] (quote ("Buffers..." . ediff-merge-buffers))) (define-key menu-bar-ediff-merge-menu [ediff-merge-files-with-ancestor] (quote ("Files with Ancestor..." . ediff-merge-files-with-ancestor))) (define-key menu-bar-ediff-merge-menu [ediff-merge-files] (quote ("Files..." . ediff-merge-files))) (define-key menu-bar-epatch-menu [ediff-patch-buffer] (quote ("To a Buffer..." . ediff-patch-buffer))) (define-key menu-bar-epatch-menu [ediff-patch-file] (quote ("To a File..." . ediff-patch-file))) (define-key menu-bar-ediff-misc-menu [emultiframe] (quote ("Toggle use of separate control buffer frame" . ediff-toggle-multiframe))) (define-key menu-bar-ediff-misc-menu [eregistry] (quote ("List Ediff Sessions" . ediff-show-registry))) (define-key menu-bar-ediff-misc-menu [ediff-cust] (quote ("Customize Ediff" . ediff-customize))) (define-key menu-bar-ediff-misc-menu [ediff-doc] (quote ("Ediff Manual" . ediff-documentation))))))
d054101f
GM
8535
8536;;;***
8537\f
93548d2e 8538;;;### (autoloads (ediff-show-registry) "ediff-mult" "ediff-mult.el"
a5805c9d 8539;;;;;; (17376 5576))
93548d2e
DL
8540;;; Generated autoloads from ediff-mult.el
8541
8542(autoload (quote ediff-show-registry) "ediff-mult" "\
c595cc5f
MR
8543Display Ediff's registry.
8544
8545\(fn)" t nil)
93548d2e
DL
8546
8547(defalias (quote eregistry) (quote ediff-show-registry))
8548
8549;;;***
8550\f
8551;;;### (autoloads (ediff-toggle-use-toolbar ediff-toggle-multiframe)
a5805c9d 8552;;;;;; "ediff-util" "ediff-util.el" (17279 27201))
93548d2e
DL
8553;;; Generated autoloads from ediff-util.el
8554
8555(autoload (quote ediff-toggle-multiframe) "ediff-util" "\
8556Switch from multiframe display to single-frame display and back.
8557To change the default, set the variable `ediff-window-setup-function',
c595cc5f
MR
8558which see.
8559
8560\(fn)" t nil)
93548d2e
DL
8561
8562(autoload (quote ediff-toggle-use-toolbar) "ediff-util" "\
8563Enable or disable Ediff toolbar.
8564Works only in versions of Emacs that support toolbars.
c595cc5f
MR
8565To change the default, set the variable `ediff-use-toolbar-p', which see.
8566
8567\(fn)" t nil)
93548d2e
DL
8568
8569;;;***
8570\f
8571;;;### (autoloads (format-kbd-macro read-kbd-macro edit-named-kbd-macro
8572;;;;;; edit-last-kbd-macro edit-kbd-macro) "edmacro" "edmacro.el"
a5805c9d 8573;;;;;; (17279 27194))
93548d2e 8574;;; Generated autoloads from edmacro.el
93548d2e
DL
8575
8576(defvar edmacro-eight-bits nil "\
8577*Non-nil if edit-kbd-macro should leave 8-bit characters intact.
8578Default nil means to write characters above \\177 in octal notation.")
8579
8580(autoload (quote edit-kbd-macro) "edmacro" "\
8581Edit a keyboard macro.
8582At the prompt, type any key sequence which is bound to a keyboard macro.
8583Or, type `C-x e' or RET to edit the last keyboard macro, `C-h l' to edit
8584the last 100 keystrokes as a keyboard macro, or `M-x' to edit a macro by
8585its command name.
c595cc5f
MR
8586With a prefix argument, format the macro in a more concise way.
8587
8588\(fn KEYS &optional PREFIX FINISH-HOOK STORE-HOOK)" t nil)
93548d2e
DL
8589
8590(autoload (quote edit-last-kbd-macro) "edmacro" "\
c595cc5f
MR
8591Edit the most recently defined keyboard macro.
8592
8593\(fn &optional PREFIX)" t nil)
93548d2e
DL
8594
8595(autoload (quote edit-named-kbd-macro) "edmacro" "\
c595cc5f
MR
8596Edit a keyboard macro which has been given a name by `name-last-kbd-macro'.
8597
8598\(fn &optional PREFIX)" t nil)
93548d2e
DL
8599
8600(autoload (quote read-kbd-macro) "edmacro" "\
8601Read the region as a keyboard macro definition.
8602The region is interpreted as spelled-out keystrokes, e.g., \"M-x abc RET\".
8603See documentation for `edmacro-mode' for details.
8604Leading/trailing \"C-x (\" and \"C-x )\" in the text are allowed and ignored.
8605The resulting macro is installed as the \"current\" keyboard macro.
8606
8607In Lisp, may also be called with a single STRING argument in which case
8608the result is returned rather than being installed as the current macro.
8609The result will be a string if possible, otherwise an event vector.
c595cc5f
MR
8610Second argument NEED-VECTOR means to return an event vector always.
8611
8612\(fn START &optional END)" t nil)
93548d2e
DL
8613
8614(autoload (quote format-kbd-macro) "edmacro" "\
8615Return the keyboard macro MACRO as a human-readable string.
8616This string is suitable for passing to `read-kbd-macro'.
8617Second argument VERBOSE means to put one command per line with comments.
8618If VERBOSE is `1', put everything on one line. If VERBOSE is omitted
c595cc5f
MR
8619or nil, use a compact 80-column format.
8620
8621\(fn &optional MACRO VERBOSE)" nil nil)
93548d2e
DL
8622
8623;;;***
8624\f
ac95a621 8625;;;### (autoloads (edt-emulation-on edt-set-scroll-margins) "edt"
a5805c9d 8626;;;;;; "emulation/edt.el" (17279 27122))
93548d2e
DL
8627;;; Generated autoloads from emulation/edt.el
8628
ac95a621
GM
8629(autoload (quote edt-set-scroll-margins) "edt" "\
8630Set scroll margins.
8631Argument TOP is the top margin in number of lines or percent of window.
c595cc5f
MR
8632Argument BOTTOM is the bottom margin in number of lines or percent of window.
8633
8634\(fn TOP BOTTOM)" t nil)
ac95a621 8635
93548d2e 8636(autoload (quote edt-emulation-on) "edt" "\
c595cc5f
MR
8637Turn on EDT Emulation.
8638
8639\(fn)" t nil)
93548d2e
DL
8640
8641;;;***
8642\f
8643;;;### (autoloads (electric-helpify with-electric-help) "ehelp" "ehelp.el"
a5805c9d 8644;;;;;; (17279 27122))
93548d2e
DL
8645;;; Generated autoloads from ehelp.el
8646
8647(autoload (quote with-electric-help) "ehelp" "\
8648Pop up an \"electric\" help buffer.
8649The arguments are THUNK &optional BUFFER NOERASE MINHEIGHT.
8650THUNK is a function of no arguments which is called to initialize the
8651contents of BUFFER. BUFFER defaults to `*Help*'. BUFFER will be
8652erased before THUNK is called unless NOERASE is non-nil. THUNK will
8653be called while BUFFER is current and with `standard-output' bound to
8654the buffer specified by BUFFER.
8655
8656If THUNK returns nil, we display BUFFER starting at the top, and
8657shrink the window to fit. If THUNK returns non-nil, we don't do those things.
8658
8659After THUNK has been called, this function \"electrically\" pops up a window
8660in which BUFFER is displayed and allows the user to scroll through that buffer
8661in electric-help-mode. The window's height will be at least MINHEIGHT if
8662this value is non-nil.
8663
8664If THUNK returns nil, we display BUFFER starting at the top, and
b442e70a
MB
8665shrink the window to fit if `electric-help-shrink-window' is non-nil.
8666If THUNK returns non-nil, we don't do those things.
93548d2e 8667
75dfe990
GM
8668When the user exits (with `electric-help-exit', or otherwise), the help
8669buffer's window disappears (i.e., we use `save-window-excursion'), and
c595cc5f
MR
8670BUFFER is put into `default-major-mode' (or `fundamental-mode') when we exit.
8671
8672\(fn THUNK &optional BUFFER NOERASE MINHEIGHT)" nil nil)
8673
8674(autoload (quote electric-helpify) "ehelp" "\
8675Not documented
93548d2e 8676
c595cc5f 8677\(fn FUN &optional NAME)" nil nil)
93548d2e
DL
8678
8679;;;***
8680\f
8d8d8d4e 8681;;;### (autoloads (turn-on-eldoc-mode eldoc-mode eldoc-minor-mode-string)
a5805c9d 8682;;;;;; "eldoc" "emacs-lisp/eldoc.el" (17279 27171))
93548d2e
DL
8683;;; Generated autoloads from emacs-lisp/eldoc.el
8684
8d8d8d4e 8685(defvar eldoc-minor-mode-string " ElDoc" "\
b9e1c2ff 8686*String to display in mode line when Eldoc Mode is enabled; nil for none.")
8d8d8d4e 8687
9c46b00a
MR
8688(custom-autoload (quote eldoc-minor-mode-string) "eldoc")
8689
8d8d8d4e
EZ
8690(autoload (quote eldoc-mode) "eldoc" "\
8691Toggle ElDoc mode on or off.
d66d64bc
KL
8692In ElDoc mode, the echo area displays information about a
8693function or variable in the text where point is. If point is
8694on a documented variable, it displays the first line of that
8695variable's doc string. Otherwise it displays the argument list
8696of the function called in the expression point is on.
93548d2e 8697
c595cc5f
MR
8698With prefix ARG, turn ElDoc mode on if and only if ARG is positive.
8699
8700\(fn &optional ARG)" t nil)
93548d2e
DL
8701
8702(autoload (quote turn-on-eldoc-mode) "eldoc" "\
c595cc5f
MR
8703Unequivocally turn on eldoc-mode (see variable documentation).
8704
8705\(fn)" t nil)
93548d2e 8706
d66d64bc
KL
8707(defvar eldoc-documentation-function nil "\
8708If non-nil, function to call to return doc string.
8709The function of no args should return a one-line string for displaying
8710doc about a function etc. appropriate to the context around point.
8711It should return nil if there's no doc appropriate for the context.
8712Typically doc is returned if point is on a function-like name or in its
8713arg list.
8714
8715This variable is expected to be made buffer-local by modes (other than
8716Emacs Lisp mode) that support Eldoc.")
8717
93548d2e
DL
8718;;;***
8719\f
a5805c9d
KL
8720;;;### (autoloads (elide-head) "elide-head" "elide-head.el" (17279
8721;;;;;; 27122))
5ec14d3c
KH
8722;;; Generated autoloads from elide-head.el
8723
8724(autoload (quote elide-head) "elide-head" "\
8725Hide header material in buffer according to `elide-head-headers-to-hide'.
8726
8727The header is made invisible with an overlay. With a prefix arg, show
8728an elided material again.
8729
c595cc5f
MR
8730This is suitable as an entry on `find-file-hook' or appropriate mode hooks.
8731
8732\(fn &optional ARG)" t nil)
5ec14d3c
KH
8733
8734;;;***
8735\f
93548d2e 8736;;;### (autoloads (elint-initialize) "elint" "emacs-lisp/elint.el"
a5805c9d 8737;;;;;; (17279 27122))
93548d2e
DL
8738;;; Generated autoloads from emacs-lisp/elint.el
8739
8740(autoload (quote elint-initialize) "elint" "\
c595cc5f
MR
8741Initialize elint.
8742
8743\(fn)" t nil)
93548d2e
DL
8744
8745;;;***
8746\f
f75a0f7a 8747;;;### (autoloads (elp-results elp-instrument-package elp-instrument-list
a5805c9d
KL
8748;;;;;; elp-instrument-function) "elp" "emacs-lisp/elp.el" (17297
8749;;;;;; 42808))
93548d2e
DL
8750;;; Generated autoloads from emacs-lisp/elp.el
8751
8752(autoload (quote elp-instrument-function) "elp" "\
8753Instrument FUNSYM for profiling.
c595cc5f
MR
8754FUNSYM must be a symbol of a defined function.
8755
8756\(fn FUNSYM)" t nil)
93548d2e 8757
93548d2e
DL
8758(autoload (quote elp-instrument-list) "elp" "\
8759Instrument for profiling, all functions in `elp-function-list'.
c595cc5f
MR
8760Use optional LIST if provided instead.
8761
8762\(fn &optional LIST)" t nil)
93548d2e
DL
8763
8764(autoload (quote elp-instrument-package) "elp" "\
8765Instrument for profiling, all functions which start with PREFIX.
8766For example, to instrument all ELP functions, do the following:
8767
c595cc5f
MR
8768 \\[elp-instrument-package] RET elp- RET
8769
8770\(fn PREFIX)" t nil)
93548d2e
DL
8771
8772(autoload (quote elp-results) "elp" "\
8773Display current profiling results.
8774If `elp-reset-after-results' is non-nil, then current profiling
8775information for all instrumented functions are reset after results are
c595cc5f
MR
8776displayed.
8777
8778\(fn)" t nil)
93548d2e 8779
93548d2e
DL
8780;;;***
8781\f
8782;;;### (autoloads (report-emacs-bug) "emacsbug" "mail/emacsbug.el"
a5805c9d 8783;;;;;; (17350 14840))
93548d2e
DL
8784;;; Generated autoloads from mail/emacsbug.el
8785
8786(autoload (quote report-emacs-bug) "emacsbug" "\
8787Report a bug in GNU Emacs.
c595cc5f
MR
8788Prompts for bug subject. Leaves you in a mail buffer.
8789
8790\(fn TOPIC &optional RECENT-KEYS)" t nil)
93548d2e
DL
8791
8792;;;***
8793\f
8794;;;### (autoloads (emerge-merge-directories emerge-revisions-with-ancestor
8795;;;;;; emerge-revisions emerge-files-with-ancestor-remote emerge-files-remote
8796;;;;;; emerge-files-with-ancestor-command emerge-files-command emerge-buffers-with-ancestor
8797;;;;;; emerge-buffers emerge-files-with-ancestor emerge-files) "emerge"
a5805c9d 8798;;;;;; "emerge.el" (17279 27122))
93548d2e
DL
8799;;; Generated autoloads from emerge.el
8800
8801(defvar menu-bar-emerge-menu (make-sparse-keymap "Emerge"))
e3cc553b
AS
8802 (fset 'menu-bar-emerge-menu (symbol-value 'menu-bar-emerge-menu))
8803 (define-key menu-bar-emerge-menu [emerge-merge-directories]
8804 '("Merge Directories..." . emerge-merge-directories))
8805 (define-key menu-bar-emerge-menu [emerge-revisions-with-ancestor]
8806 '("Revisions with Ancestor..." . emerge-revisions-with-ancestor))
8807 (define-key menu-bar-emerge-menu [emerge-revisions]
8808 '("Revisions..." . emerge-revisions))
8809 (define-key menu-bar-emerge-menu [emerge-files-with-ancestor]
8810 '("Files with Ancestor..." . emerge-files-with-ancestor))
8811 (define-key menu-bar-emerge-menu [emerge-files]
8812 '("Files..." . emerge-files))
8813 (define-key menu-bar-emerge-menu [emerge-buffers-with-ancestor]
8814 '("Buffers with Ancestor..." . emerge-buffers-with-ancestor))
8815 (define-key menu-bar-emerge-menu [emerge-buffers]
8816 '("Buffers..." . emerge-buffers))
93548d2e
DL
8817
8818(autoload (quote emerge-files) "emerge" "\
c595cc5f
MR
8819Run Emerge on two files.
8820
8821\(fn ARG FILE-A FILE-B FILE-OUT &optional STARTUP-HOOKS QUIT-HOOKS)" t nil)
93548d2e
DL
8822
8823(autoload (quote emerge-files-with-ancestor) "emerge" "\
c595cc5f
MR
8824Run Emerge on two files, giving another file as the ancestor.
8825
8826\(fn ARG FILE-A FILE-B FILE-ANCESTOR FILE-OUT &optional STARTUP-HOOKS QUIT-HOOKS)" t nil)
93548d2e
DL
8827
8828(autoload (quote emerge-buffers) "emerge" "\
c595cc5f
MR
8829Run Emerge on two buffers.
8830
8831\(fn BUFFER-A BUFFER-B &optional STARTUP-HOOKS QUIT-HOOKS)" t nil)
93548d2e
DL
8832
8833(autoload (quote emerge-buffers-with-ancestor) "emerge" "\
c595cc5f
MR
8834Run Emerge on two buffers, giving another buffer as the ancestor.
8835
8836\(fn BUFFER-A BUFFER-B BUFFER-ANCESTOR &optional STARTUP-HOOKS QUIT-HOOKS)" t nil)
8837
8838(autoload (quote emerge-files-command) "emerge" "\
8839Not documented
8840
8841\(fn)" nil nil)
8842
8843(autoload (quote emerge-files-with-ancestor-command) "emerge" "\
8844Not documented
8845
8846\(fn)" nil nil)
93548d2e 8847
c595cc5f
MR
8848(autoload (quote emerge-files-remote) "emerge" "\
8849Not documented
93548d2e 8850
c595cc5f 8851\(fn FILE-A FILE-B FILE-OUT)" nil nil)
93548d2e 8852
c595cc5f
MR
8853(autoload (quote emerge-files-with-ancestor-remote) "emerge" "\
8854Not documented
93548d2e 8855
c595cc5f 8856\(fn FILE-A FILE-B FILE-ANC FILE-OUT)" nil nil)
93548d2e
DL
8857
8858(autoload (quote emerge-revisions) "emerge" "\
c595cc5f
MR
8859Emerge two RCS revisions of a file.
8860
8861\(fn ARG FILE REVISION-A REVISION-B &optional STARTUP-HOOKS QUIT-HOOKS)" t nil)
93548d2e
DL
8862
8863(autoload (quote emerge-revisions-with-ancestor) "emerge" "\
c595cc5f
MR
8864Emerge two RCS revisions of a file, with another revision as ancestor.
8865
8866\(fn ARG FILE REVISION-A REVISION-B ANCESTOR &optional STARTUP-HOOKS QUIT-HOOKS)" t nil)
93548d2e 8867
c595cc5f
MR
8868(autoload (quote emerge-merge-directories) "emerge" "\
8869Not documented
8870
8871\(fn A-DIR B-DIR ANCESTOR-DIR OUTPUT-DIR)" t nil)
93548d2e
DL
8872
8873;;;***
8874\f
d66d64bc 8875;;;### (autoloads (encoded-kbd-setup-display) "encoded-kb" "international/encoded-kb.el"
a5805c9d 8876;;;;;; (17323 25934))
93548d2e
DL
8877;;; Generated autoloads from international/encoded-kb.el
8878
d66d64bc
KL
8879(autoload (quote encoded-kbd-setup-display) "encoded-kb" "\
8880Set up a `key-translation-map' for `keyboard-coding-system' on DISPLAY.
8d8d8d4e 8881
d66d64bc 8882DISPLAY may be a display id, a frame, or nil for the selected frame's display.
93548d2e 8883
d66d64bc 8884\(fn DISPLAY)" nil nil)
93548d2e
DL
8885
8886;;;***
8887\f
8888;;;### (autoloads (enriched-decode enriched-encode enriched-mode)
a5805c9d 8889;;;;;; "enriched" "textmodes/enriched.el" (17279 27123))
27a99a7c 8890;;; Generated autoloads from textmodes/enriched.el
93548d2e
DL
8891
8892(autoload (quote enriched-mode) "enriched" "\
8893Minor mode for editing text/enriched files.
8894These are files with embedded formatting information in the MIME standard
8895text/enriched format.
390069bc 8896Turning the mode on or off runs `enriched-mode-hook'.
93548d2e 8897
b9e1c2ff 8898More information about Enriched mode is available in the file
8d8d8d4e 8899etc/enriched.doc in the Emacs distribution directory.
93548d2e
DL
8900
8901Commands:
8902
c595cc5f
MR
8903\\{enriched-mode-map}
8904
8905\(fn &optional ARG)" t nil)
8906
8907(autoload (quote enriched-encode) "enriched" "\
8908Not documented
8909
8910\(fn FROM TO ORIG-BUF)" nil nil)
93548d2e 8911
c595cc5f
MR
8912(autoload (quote enriched-decode) "enriched" "\
8913Not documented
93548d2e 8914
c595cc5f 8915\(fn FROM TO)" nil nil)
93548d2e
DL
8916
8917;;;***
8918\f
c1a055ca 8919;;;### (autoloads (erc-select erc-select-read-args) "erc" "erc/erc.el"
a5805c9d 8920;;;;;; (17383 37956))
c1a055ca
EZ
8921;;; Generated autoloads from erc/erc.el
8922
8923(autoload (quote erc-select-read-args) "erc" "\
8924Prompt the user for values of nick, server, port, and password.
8925
8926\(fn)" nil nil)
8927
8928(autoload (quote erc-select) "erc" "\
8929Select connection parameters and run ERC.
8930Non-interactively, it takes keyword arguments
8931 (server (erc-compute-server))
8932 (port (erc-compute-port))
8933 (nick (erc-compute-nick))
8934 password
8935 (full-name (erc-compute-full-name)))
8936
8937That is, if called with
8938 (erc-select :server \"irc.freenode.net\" :full-name \"Harry S Truman\")
8939server and full-name will be set to those values, whereas
8940erc-compute-port, erc-compute-nick and erc-compute-full-name will
8941be invoked for those parameters' values
8942
8943\(fn &key (SERVER (erc-compute-server)) (PORT (erc-compute-port)) (NICK (erc-compute-nick)) PASSWORD (FULL-NAME (erc-compute-full-name)))" t nil)
8944
8945;;;***
8946\f
a5805c9d
KL
8947;;;### (autoloads nil "erc-autoaway" "erc/erc-autoaway.el" (17374
8948;;;;;; 21559))
c1a055ca
EZ
8949;;; Generated autoloads from erc/erc-autoaway.el
8950 (autoload 'erc-autoaway-mode "erc-autoaway")
8951
8952;;;***
8953\f
a5805c9d
KL
8954;;;### (autoloads nil "erc-autojoin" "erc/erc-autojoin.el" (17383
8955;;;;;; 37955))
c1a055ca
EZ
8956;;; Generated autoloads from erc/erc-autojoin.el
8957 (autoload 'erc-autojoin-mode "erc-autojoin" nil t)
8958
8959;;;***
8960\f
a5805c9d 8961;;;### (autoloads nil "erc-button" "erc/erc-button.el" (17374 21559))
c1a055ca
EZ
8962;;; Generated autoloads from erc/erc-button.el
8963 (autoload 'erc-button-mode "erc-button" nil t)
8964
8965;;;***
8966\f
a5805c9d 8967;;;### (autoloads nil "erc-compat" "erc/erc-compat.el" (17374 21559))
c1a055ca
EZ
8968;;; Generated autoloads from erc/erc-compat.el
8969 (autoload 'erc-define-minor-mode "erc-compat")
8970
8971;;;***
8972\f
8973;;;### (autoloads (erc-complete) "erc-complete" "erc/erc-complete.el"
a5805c9d 8974;;;;;; (17383 37956))
c1a055ca
EZ
8975;;; Generated autoloads from erc/erc-complete.el
8976
8977(autoload (quote erc-complete) "erc-complete" "\
8978Complete nick at point.
8979See `erc-try-complete-nick' for more technical info.
8980This function is obsolete, use `erc-pcomplete' instead.
8981
8982\(fn)" t nil)
8983
8984;;;***
8985\f
8986;;;### (autoloads (erc-ctcp-query-DCC pcomplete/erc-mode/DCC erc-cmd-DCC)
a5805c9d 8987;;;;;; "erc-dcc" "erc/erc-dcc.el" (17374 21559))
c1a055ca
EZ
8988;;; Generated autoloads from erc/erc-dcc.el
8989
8990(autoload (quote erc-cmd-DCC) "erc-dcc" "\
8991Parser for /dcc command.
8992This figures out the dcc subcommand and calls the appropriate routine to
8993handle it. The function dispatched should be named \"erc-dcc-do-FOO-command\",
8994where FOO is one of CLOSE, GET, SEND, LIST, CHAT, etc.
8995
8996\(fn CMD &rest ARGS)" nil nil)
8997
8998(autoload (quote pcomplete/erc-mode/DCC) "erc-dcc" "\
8999Provides completion for the /DCC command.
9000
9001\(fn)" nil nil)
9002
9003(defvar erc-ctcp-query-DCC-hook (quote (erc-ctcp-query-DCC)) "\
9004Hook variable for CTCP DCC queries")
9005
9006(autoload (quote erc-ctcp-query-DCC) "erc-dcc" "\
9007The function called when a CTCP DCC request is detected by the client.
9008It examines the DCC subcommand, and calls the appropriate routine for
9009that subcommand.
9010
9011\(fn PROC NICK LOGIN HOST TO QUERY)" nil nil)
9012
9013;;;***
9014\f
9015;;;### (autoloads (erc-ezb-initialize erc-ezb-select-session erc-ezb-select
9016;;;;;; erc-ezb-add-session erc-ezb-end-of-session-list erc-ezb-init-session-list
9017;;;;;; erc-ezb-identify erc-ezb-notice-autodetect erc-ezb-lookup-action
9018;;;;;; erc-ezb-get-login erc-cmd-ezb) "erc-ezbounce" "erc/erc-ezbounce.el"
a5805c9d 9019;;;;;; (17374 21559))
c1a055ca
EZ
9020;;; Generated autoloads from erc/erc-ezbounce.el
9021
9022(autoload (quote erc-cmd-ezb) "erc-ezbounce" "\
9023Send EZB commands to the EZBouncer verbatim.
9024
9025\(fn LINE &optional FORCE)" nil nil)
9026
9027(autoload (quote erc-ezb-get-login) "erc-ezbounce" "\
9028Return an appropriate EZBounce login for SERVER and PORT.
9029Look up entries in `erc-ezb-login-alist'. If the username or password
9030in the alist is `nil', prompt for the appropriate values.
9031
9032\(fn SERVER PORT)" nil nil)
9033
9034(autoload (quote erc-ezb-lookup-action) "erc-ezbounce" "\
9035Not documented
9036
9037\(fn MESSAGE)" nil nil)
9038
9039(autoload (quote erc-ezb-notice-autodetect) "erc-ezbounce" "\
9040React on an EZBounce NOTICE request.
9041
9042\(fn PROC PARSED)" nil nil)
9043
9044(autoload (quote erc-ezb-identify) "erc-ezbounce" "\
9045Identify to the EZBouncer server.
9046
9047\(fn MESSAGE)" nil nil)
9048
9049(autoload (quote erc-ezb-init-session-list) "erc-ezbounce" "\
9050Reset the EZBounce session list to NIL.
9051
9052\(fn MESSAGE)" nil nil)
9053
9054(autoload (quote erc-ezb-end-of-session-list) "erc-ezbounce" "\
9055Indicate the end of the EZBounce session listing.
9056
9057\(fn MESSAGE)" nil nil)
9058
9059(autoload (quote erc-ezb-add-session) "erc-ezbounce" "\
9060Add an EZBounce session to the session list.
9061
9062\(fn MESSAGE)" nil nil)
9063
9064(autoload (quote erc-ezb-select) "erc-ezbounce" "\
9065Select an IRC server to use by EZBounce, in ERC style.
9066
9067\(fn MESSAGE)" nil nil)
9068
9069(autoload (quote erc-ezb-select-session) "erc-ezbounce" "\
9070Select a detached EZBounce session.
9071
9072\(fn)" nil nil)
9073
9074(autoload (quote erc-ezb-initialize) "erc-ezbounce" "\
9075Add EZBouncer convenience functions to ERC.
9076
9077\(fn)" nil nil)
9078
9079;;;***
9080\f
a5805c9d
KL
9081;;;### (autoloads (erc-fill) "erc-fill" "erc/erc-fill.el" (17374
9082;;;;;; 21559))
c1a055ca
EZ
9083;;; Generated autoloads from erc/erc-fill.el
9084 (autoload 'erc-fill-mode "erc-fill" nil t)
9085
9086(autoload (quote erc-fill) "erc-fill" "\
9087Fill a region using the function referenced in `erc-fill-function'.
9088You can put this on `erc-insert-modify-hook' and/or `erc-send-modify-hook'.
9089
9090\(fn)" nil nil)
9091
9092;;;***
9093\f
9094;;;### (autoloads (erc-create-imenu-index) "erc-imenu" "erc/erc-imenu.el"
a5805c9d 9095;;;;;; (17374 21559))
c1a055ca
EZ
9096;;; Generated autoloads from erc/erc-imenu.el
9097
9098(autoload (quote erc-create-imenu-index) "erc-imenu" "\
9099Not documented
9100
9101\(fn)" nil nil)
9102
9103;;;***
9104\f
9105;;;### (autoloads (erc-chanlist erc-cmd-LIST) "erc-list" "erc/erc-list.el"
a5805c9d 9106;;;;;; (17374 21559))
c1a055ca
EZ
9107;;; Generated autoloads from erc/erc-list.el
9108
9109(autoload (quote erc-cmd-LIST) "erc-list" "\
9110Display a buffer containing a list of channels on the current server.
9111Optional argument CHANNEL specifies a single channel to list (instead of every
9112available channel).
9113
9114\(fn &rest CHANNEL)" t nil)
9115
9116(autoload (quote erc-chanlist) "erc-list" "\
9117Show a channel listing of the current server in a special mode.
9118Please note that this function only works with IRC servers which conform
9119to RFC and send the LIST header (#321) at start of list transmission.
9120
9121\(fn &optional CHANNELS)" t nil)
9122
9123;;;***
9124\f
9125;;;### (autoloads (erc-save-buffer-in-logs erc-logging-enabled) "erc-log"
a5805c9d 9126;;;;;; "erc/erc-log.el" (17374 21559))
c1a055ca
EZ
9127;;; Generated autoloads from erc/erc-log.el
9128 (autoload 'erc-log-mode "erc-log" nil t)
9129
9130(autoload (quote erc-logging-enabled) "erc-log" "\
9131Return non-nil if logging is enabled for BUFFER.
9132If BUFFER is nil, the value of `current-buffer' is used.
9133Logging is enabled if `erc-log-channels-directory' is non-nil, the directory
9134is writeable (it will be created as necessary) and
9135`erc-enable-logging' returns a non-nil value.
9136
9137\(fn &optional BUFFER)" nil nil)
9138
9139(autoload (quote erc-save-buffer-in-logs) "erc-log" "\
9140Append BUFFER contents to the log file, if logging is enabled.
9141If BUFFER is not provided, current buffer is used.
9142Logging is enabled if `erc-logging-enabled' returns non-nil.
9143
9144This is normally done on exit, to save the unsaved portion of the
9145buffer, since only the text that runs off the buffer limit is logged
9146automatically.
9147
9148You can save every individual message by putting this function on
9149`erc-insert-post-hook'.
9150
9151\(fn &optional BUFFER)" t nil)
9152
9153;;;***
9154\f
9155;;;### (autoloads (erc-delete-dangerous-host erc-add-dangerous-host
9156;;;;;; erc-delete-keyword erc-add-keyword erc-delete-fool erc-add-fool
9157;;;;;; erc-delete-pal erc-add-pal) "erc-match" "erc/erc-match.el"
a5805c9d 9158;;;;;; (17374 21559))
c1a055ca
EZ
9159;;; Generated autoloads from erc/erc-match.el
9160 (autoload 'erc-match-mode "erc-match")
9161
9162(autoload (quote erc-add-pal) "erc-match" "\
9163Add pal interactively to `erc-pals'.
9164
9165\(fn)" t nil)
9166
9167(autoload (quote erc-delete-pal) "erc-match" "\
9168Delete pal interactively to `erc-pals'.
9169
9170\(fn)" t nil)
9171
9172(autoload (quote erc-add-fool) "erc-match" "\
9173Add fool interactively to `erc-fools'.
9174
9175\(fn)" t nil)
9176
9177(autoload (quote erc-delete-fool) "erc-match" "\
9178Delete fool interactively to `erc-fools'.
9179
9180\(fn)" t nil)
9181
9182(autoload (quote erc-add-keyword) "erc-match" "\
9183Add keyword interactively to `erc-keywords'.
9184
9185\(fn)" t nil)
9186
9187(autoload (quote erc-delete-keyword) "erc-match" "\
9188Delete keyword interactively to `erc-keywords'.
9189
9190\(fn)" t nil)
9191
9192(autoload (quote erc-add-dangerous-host) "erc-match" "\
9193Add dangerous-host interactively to `erc-dangerous-hosts'.
9194
9195\(fn)" t nil)
9196
9197(autoload (quote erc-delete-dangerous-host) "erc-match" "\
9198Delete dangerous-host interactively to `erc-dangerous-hosts'.
9199
9200\(fn)" t nil)
9201
9202;;;***
9203\f
9204;;;### (autoloads (erc-server-select erc-determine-network) "erc-nets"
a5805c9d 9205;;;;;; "erc/erc-nets.el" (17374 21559))
c1a055ca
EZ
9206;;; Generated autoloads from erc/erc-nets.el
9207
9208(autoload (quote erc-determine-network) "erc-nets" "\
9209Return the name of the network or \"Unknown\" as a symbol. Use the
9210server parameter NETWORK if provided, otherwise parse the server name and
9211search for a match in `erc-networks-alist'.
9212
9213\(fn)" nil nil)
9214
9215(autoload (quote erc-server-select) "erc-nets" "\
9216Interactively select a server to connect to using `erc-server-alist'.
9217
9218\(fn)" t nil)
9219
9220;;;***
9221\f
9222;;;### (autoloads (erc-cmd-WHOLEFT) "erc-netsplit" "erc/erc-netsplit.el"
a5805c9d 9223;;;;;; (17374 21559))
c1a055ca
EZ
9224;;; Generated autoloads from erc/erc-netsplit.el
9225 (autoload 'erc-netsplit-mode "erc-netsplit")
9226
9227(autoload (quote erc-cmd-WHOLEFT) "erc-netsplit" "\
9228Show who's gone.
9229
9230\(fn)" nil nil)
9231
9232;;;***
9233\f
9234;;;### (autoloads (erc-nickserv-identify erc-nickserv-identify-mode)
a5805c9d 9235;;;;;; "erc-nickserv" "erc/erc-nickserv.el" (17374 21559))
c1a055ca
EZ
9236;;; Generated autoloads from erc/erc-nickserv.el
9237 (autoload 'erc-services-mode "erc-nickserv" nil t)
9238
9239(autoload (quote erc-nickserv-identify-mode) "erc-nickserv" "\
9240Set up hooks according to which MODE the user has chosen.
9241
9242\(fn MODE)" t nil)
9243
9244(autoload (quote erc-nickserv-identify) "erc-nickserv" "\
9245Send an \"identify <PASSWORD>\" message to NickServ.
9246When called interactively, read the password using `read-passwd'.
9247
9248\(fn PASSWORD)" t nil)
9249
9250;;;***
9251\f
9252;;;### (autoloads (pcomplete/erc-mode/NOTIFY erc-cmd-NOTIFY) "erc-notify"
a5805c9d 9253;;;;;; "erc/erc-notify.el" (17374 21559))
c1a055ca
EZ
9254;;; Generated autoloads from erc/erc-notify.el
9255 (autoload 'erc-notify-mode "erc-notify" nil t)
9256
9257(autoload (quote erc-cmd-NOTIFY) "erc-notify" "\
9258Change `erc-notify-list' or list current notify-list members online.
9259Without args, list the current list of notificated people online,
9260with args, toggle notify status of people.
9261
9262\(fn &rest ARGS)" nil nil)
9263
9264(autoload (quote pcomplete/erc-mode/NOTIFY) "erc-notify" "\
9265Not documented
9266
9267\(fn)" nil nil)
9268
9269;;;***
9270\f
a5805c9d 9271;;;### (autoloads nil "erc-page" "erc/erc-page.el" (17374 21559))
c1a055ca
EZ
9272;;; Generated autoloads from erc/erc-page.el
9273 (autoload 'erc-page-mode "erc-page")
9274
9275;;;***
9276\f
a5805c9d
KL
9277;;;### (autoloads nil "erc-pcomplete" "erc/erc-pcomplete.el" (17374
9278;;;;;; 21559))
c1a055ca
EZ
9279;;; Generated autoloads from erc/erc-pcomplete.el
9280 (autoload 'erc-completion-mode "erc-pcomplete" nil t)
9281
9282;;;***
9283\f
a5805c9d 9284;;;### (autoloads nil "erc-replace" "erc/erc-replace.el" (17374 21559))
c1a055ca
EZ
9285;;; Generated autoloads from erc/erc-replace.el
9286 (autoload 'erc-replace-mode "erc-replace")
9287
9288;;;***
9289\f
a5805c9d 9290;;;### (autoloads nil "erc-ring" "erc/erc-ring.el" (17374 21559))
c1a055ca
EZ
9291;;; Generated autoloads from erc/erc-ring.el
9292 (autoload 'erc-ring-mode "erc-ring" nil t)
9293
9294;;;***
9295\f
a5805c9d 9296;;;### (autoloads nil "erc-sound" "erc/erc-sound.el" (17374 21559))
c1a055ca
EZ
9297;;; Generated autoloads from erc/erc-sound.el
9298 (autoload 'erc-sound-mode "erc-sound")
9299
9300;;;***
9301\f
9302;;;### (autoloads (erc-speedbar-browser) "erc-speedbar" "erc/erc-speedbar.el"
a5805c9d 9303;;;;;; (17374 21565))
c1a055ca
EZ
9304;;; Generated autoloads from erc/erc-speedbar.el
9305
9306(autoload (quote erc-speedbar-browser) "erc-speedbar" "\
9307Initialize speedbar to display an ERC browser.
9308This will add a speedbar major display mode.
9309
9310\(fn)" t nil)
9311
9312;;;***
9313\f
a5805c9d
KL
9314;;;### (autoloads nil "erc-spelling" "erc/erc-spelling.el" (17383
9315;;;;;; 37956))
c1a055ca
EZ
9316;;; Generated autoloads from erc/erc-spelling.el
9317 (autoload 'erc-spelling-mode "erc-spelling" nil t)
9318
9319;;;***
9320\f
a5805c9d 9321;;;### (autoloads nil "erc-stamp" "erc/erc-stamp.el" (17383 37955))
c1a055ca
EZ
9322;;; Generated autoloads from erc/erc-stamp.el
9323 (autoload 'erc-timestamp-mode "erc-stamp" nil t)
9324
9325;;;***
9326\f
a5805c9d 9327;;;### (autoloads nil "erc-track" "erc/erc-track.el" (17374 21559))
c1a055ca
EZ
9328;;; Generated autoloads from erc/erc-track.el
9329 (autoload 'erc-track-mode "erc-track" nil t)
9330 (autoload 'erc-track-when-inactive-mode "erc-track" nil t)
9331
9332;;;***
9333\f
9334;;;### (autoloads (erc-truncate-buffer erc-truncate-buffer-to-size)
a5805c9d 9335;;;;;; "erc-truncate" "erc/erc-truncate.el" (17374 21559))
c1a055ca
EZ
9336;;; Generated autoloads from erc/erc-truncate.el
9337 (autoload 'erc-truncate-mode "erc-truncate" nil t)
9338
9339(autoload (quote erc-truncate-buffer-to-size) "erc-truncate" "\
9340Truncates the buffer to the size SIZE.
9341If BUFFER is not provided, the current buffer is assumed. The deleted
9342region is logged if `erc-logging-enabled' returns non-nil.
9343
9344\(fn SIZE &optional BUFFER)" nil nil)
9345
9346(autoload (quote erc-truncate-buffer) "erc-truncate" "\
9347Truncates the current buffer to `erc-max-buffer-size'.
9348Meant to be used in hooks, like `erc-insert-post-hook'.
9349
9350\(fn)" t nil)
9351
9352;;;***
9353\f
9354;;;### (autoloads (erc-xdcc-add-file) "erc-xdcc" "erc/erc-xdcc.el"
a5805c9d 9355;;;;;; (17374 21559))
c1a055ca
EZ
9356;;; Generated autoloads from erc/erc-xdcc.el
9357
9358(autoload (quote erc-xdcc-add-file) "erc-xdcc" "\
9359Add a file to `erc-xdcc-files'.
9360
9361\(fn FILE)" t nil)
9362
9363;;;***
9364\f
a5805c9d
KL
9365;;;### (autoloads (eshell-mode) "esh-mode" "eshell/esh-mode.el" (17279
9366;;;;;; 27122))
abb2db1c
GM
9367;;; Generated autoloads from eshell/esh-mode.el
9368
9369(autoload (quote eshell-mode) "esh-mode" "\
9370Emacs shell interactive mode.
9371
c595cc5f
MR
9372\\{eshell-mode-map}
9373
9374\(fn)" nil nil)
abb2db1c
GM
9375
9376;;;***
9377\f
a5805c9d
KL
9378;;;### (autoloads (eshell-test) "esh-test" "eshell/esh-test.el" (17279
9379;;;;;; 27122))
abb2db1c
GM
9380;;; Generated autoloads from eshell/esh-test.el
9381
9382(autoload (quote eshell-test) "esh-test" "\
c595cc5f
MR
9383Test Eshell to verify that it works as expected.
9384
9385\(fn &optional ARG)" t nil)
abb2db1c
GM
9386
9387;;;***
9388\f
9389;;;### (autoloads (eshell-report-bug eshell-command-result eshell-command
a5805c9d 9390;;;;;; eshell) "eshell" "eshell/eshell.el" (17279 27122))
abb2db1c
GM
9391;;; Generated autoloads from eshell/eshell.el
9392
9393(autoload (quote eshell) "eshell" "\
9394Create an interactive Eshell buffer.
9395The buffer used for Eshell sessions is determined by the value of
9396`eshell-buffer-name'. If there is already an Eshell session active in
9397that buffer, Emacs will simply switch to it. Otherwise, a new session
296d7669
KS
9398will begin. A numeric prefix arg (as in `C-u 42 M-x eshell RET')
9399switches to the session with that number, creating it if necessary. A
9400nonnumeric prefix arg means to create a new session. Returns the
c595cc5f
MR
9401buffer selected (or created).
9402
9403\(fn &optional ARG)" t nil)
abb2db1c
GM
9404
9405(autoload (quote eshell-command) "eshell" "\
9406Execute the Eshell command string COMMAND.
c595cc5f
MR
9407With prefix ARG, insert output into the current buffer at point.
9408
9409\(fn &optional COMMAND ARG)" t nil)
abb2db1c
GM
9410
9411(autoload (quote eshell-command-result) "eshell" "\
9412Execute the given Eshell COMMAND, and return the result.
9413The result might be any Lisp object.
9414If STATUS-VAR is a symbol, it will be set to the exit status of the
9415command. This is the only way to determine whether the value returned
c595cc5f
MR
9416corresponding to a successful execution.
9417
9418\(fn COMMAND &optional STATUS-VAR)" nil nil)
abb2db1c
GM
9419
9420(autoload (quote eshell-report-bug) "eshell" "\
9421Report a bug in Eshell.
9422Prompts for the TOPIC. Leaves you in a mail buffer.
c595cc5f
MR
9423Please include any configuration details that might be involved.
9424
9425\(fn TOPIC)" t nil)
abb2db1c
GM
9426
9427;;;***
9428\f
93548d2e
DL
9429;;;### (autoloads (complete-tag select-tags-table tags-apropos list-tags
9430;;;;;; tags-query-replace tags-search tags-loop-continue next-file
9431;;;;;; pop-tag-mark find-tag-regexp find-tag-other-frame find-tag-other-window
0c867fa7 9432;;;;;; find-tag find-tag-noselect tags-table-files visit-tags-table-buffer
175a97e4
EZ
9433;;;;;; visit-tags-table tags-table-mode find-tag-default-function
9434;;;;;; find-tag-hook tags-add-tables tags-compression-info-list
9435;;;;;; tags-table-list tags-case-fold-search) "etags" "progmodes/etags.el"
a5805c9d 9436;;;;;; (17279 27189))
93548d2e
DL
9437;;; Generated autoloads from progmodes/etags.el
9438
9439(defvar tags-file-name nil "\
9440*File name of tags table.
9441To switch to a new tags table, setting this variable is sufficient.
9442If you set this variable, do not also set `tags-table-list'.
9443Use the `etags' program to make a tags table file.")
9444 (put 'tags-file-name 'variable-interactive "fVisit tags table: ")
9445
81bf3fa7
GM
9446(defvar tags-case-fold-search (quote default) "\
9447*Whether tags operations should be case-sensitive.
9448A value of t means case-insensitive, a value of nil means case-sensitive.
9449Any other value means use the setting of `case-fold-search'.")
9450
9c46b00a
MR
9451(custom-autoload (quote tags-case-fold-search) "etags")
9452
93548d2e
DL
9453(defvar tags-table-list nil "\
9454*List of file names of tags tables to search.
9455An element that is a directory means the file \"TAGS\" in that directory.
9456To switch to a new list of tags tables, setting this variable is sufficient.
9457If you set this variable, do not also set `tags-file-name'.
9458Use the `etags' program to make a tags table file.")
9459
9c46b00a
MR
9460(custom-autoload (quote tags-table-list) "etags")
9461
f383cd0d
GM
9462(defvar tags-compression-info-list (quote ("" ".Z" ".bz2" ".gz" ".tgz")) "\
9463*List of extensions tried by etags when jka-compr is used.
9464An empty string means search the non-compressed file.
9465These extensions will be tried only if jka-compr was activated
09938b67
GM
9466\(i.e. via customize of `auto-compression-mode' or by calling the function
9467`auto-compression-mode').")
f383cd0d 9468
9c46b00a
MR
9469(custom-autoload (quote tags-compression-info-list) "etags")
9470
93548d2e
DL
9471(defvar tags-add-tables (quote ask-user) "\
9472*Control whether to add a new tags table to the current list.
9473t means do; nil means don't (always start a new list).
9474Any other value means ask the user whether to add a new tags table
9475to the current list (as opposed to starting a new list).")
9476
9c46b00a
MR
9477(custom-autoload (quote tags-add-tables) "etags")
9478
93548d2e
DL
9479(defvar find-tag-hook nil "\
9480*Hook to be run by \\[find-tag] after finding a tag. See `run-hooks'.
9481The value in the buffer in which \\[find-tag] is done is used,
9482not the value in the buffer \\[find-tag] goes to.")
9483
9c46b00a
MR
9484(custom-autoload (quote find-tag-hook) "etags")
9485
93548d2e
DL
9486(defvar find-tag-default-function nil "\
9487*A function of no arguments used by \\[find-tag] to pick a default tag.
9488If nil, and the symbol that is the value of `major-mode'
9489has a `find-tag-default-function' property (see `put'), that is used.
9490Otherwise, `find-tag-default' is used.")
9491
9c46b00a
MR
9492(custom-autoload (quote find-tag-default-function) "etags")
9493
175a97e4
EZ
9494(autoload (quote tags-table-mode) "etags" "\
9495Major mode for tags table file buffers.
9496
9497\(fn)" t nil)
9498
93548d2e
DL
9499(autoload (quote visit-tags-table) "etags" "\
9500Tell tags commands to use tags table file FILE.
9501FILE should be the name of a file created with the `etags' program.
9502A directory name is ok too; it means file TAGS in that directory.
9503
9504Normally \\[visit-tags-table] sets the global value of `tags-file-name'.
9505With a prefix arg, set the buffer-local value instead.
9506When you find a tag with \\[find-tag], the buffer it finds the tag
9507in is given a local value of this variable which is the name of the tags
c595cc5f
MR
9508file the tag was in.
9509
9510\(fn FILE &optional LOCAL)" t nil)
93548d2e 9511
0c867fa7
MS
9512(autoload (quote visit-tags-table-buffer) "etags" "\
9513Select the buffer containing the current tags table.
9514If optional arg is a string, visit that file as a tags table.
9515If optional arg is t, visit the next table in `tags-table-list'.
9516If optional arg is the atom `same', don't look for a new table;
9517 just select the buffer visiting `tags-file-name'.
9518If arg is nil or absent, choose a first buffer from information in
9519 `tags-file-name', `tags-table-list', `tags-table-list-pointer'.
9520Returns t if it visits a tags table, or nil if there are no more in the list.
9521
9522\(fn &optional CONT)" nil nil)
9523
93548d2e
DL
9524(autoload (quote tags-table-files) "etags" "\
9525Return a list of files in the current tags table.
9526Assumes the tags table is the current buffer. The file names are returned
9527as they appeared in the `etags' command that created the table, usually
c595cc5f
MR
9528without directory names.
9529
9530\(fn)" nil nil)
93548d2e
DL
9531
9532(autoload (quote find-tag-noselect) "etags" "\
9533Find tag (in current tags table) whose name contains TAGNAME.
9534Returns the buffer containing the tag's definition and moves its point there,
9535but does not select the buffer.
9536The default for TAGNAME is the expression in the buffer near point.
9537
9538If second arg NEXT-P is t (interactively, with prefix arg), search for
9539another tag that matches the last tagname or regexp used. When there are
9540multiple matches for a tag, more exact matches are found first. If NEXT-P
9541is the atom `-' (interactively, with prefix arg that is a negative number
9542or just \\[negative-argument]), pop back to the previous tag gone to.
9543
9544If third arg REGEXP-P is non-nil, treat TAGNAME as a regexp.
9545
a5e28954 9546A marker representing the point when this command is invoked is pushed
93548d2e
DL
9547onto a ring and may be popped back to with \\[pop-tag-mark].
9548Contrast this with the ring of marks gone to by the command.
9549
c595cc5f
MR
9550See documentation of variable `tags-file-name'.
9551
9552\(fn TAGNAME &optional NEXT-P REGEXP-P)" t nil)
93548d2e
DL
9553
9554(autoload (quote find-tag) "etags" "\
9555Find tag (in current tags table) whose name contains TAGNAME.
9556Select the buffer containing the tag's definition, and move point there.
9557The default for TAGNAME is the expression in the buffer around or before point.
9558
9559If second arg NEXT-P is t (interactively, with prefix arg), search for
9560another tag that matches the last tagname or regexp used. When there are
9561multiple matches for a tag, more exact matches are found first. If NEXT-P
9562is the atom `-' (interactively, with prefix arg that is a negative number
9563or just \\[negative-argument]), pop back to the previous tag gone to.
9564
9565If third arg REGEXP-P is non-nil, treat TAGNAME as a regexp.
9566
a5e28954 9567A marker representing the point when this command is invoked is pushed
93548d2e
DL
9568onto a ring and may be popped back to with \\[pop-tag-mark].
9569Contrast this with the ring of marks gone to by the command.
9570
c595cc5f
MR
9571See documentation of variable `tags-file-name'.
9572
9573\(fn TAGNAME &optional NEXT-P REGEXP-P)" t nil)
93548d2e
DL
9574 (define-key esc-map "." 'find-tag)
9575
9576(autoload (quote find-tag-other-window) "etags" "\
9577Find tag (in current tags table) whose name contains TAGNAME.
9578Select the buffer containing the tag's definition in another window, and
9579move point there. The default for TAGNAME is the expression in the buffer
9580around or before point.
9581
9582If second arg NEXT-P is t (interactively, with prefix arg), search for
9583another tag that matches the last tagname or regexp used. When there are
9584multiple matches for a tag, more exact matches are found first. If NEXT-P
9585is negative (interactively, with prefix arg that is a negative number or
9586just \\[negative-argument]), pop back to the previous tag gone to.
9587
9588If third arg REGEXP-P is non-nil, treat TAGNAME as a regexp.
9589
a5e28954 9590A marker representing the point when this command is invoked is pushed
93548d2e
DL
9591onto a ring and may be popped back to with \\[pop-tag-mark].
9592Contrast this with the ring of marks gone to by the command.
9593
c595cc5f
MR
9594See documentation of variable `tags-file-name'.
9595
9596\(fn TAGNAME &optional NEXT-P REGEXP-P)" t nil)
93548d2e
DL
9597 (define-key ctl-x-4-map "." 'find-tag-other-window)
9598
9599(autoload (quote find-tag-other-frame) "etags" "\
9600Find tag (in current tags table) whose name contains TAGNAME.
9601Select the buffer containing the tag's definition in another frame, and
9602move point there. The default for TAGNAME is the expression in the buffer
9603around or before point.
9604
9605If second arg NEXT-P is t (interactively, with prefix arg), search for
9606another tag that matches the last tagname or regexp used. When there are
9607multiple matches for a tag, more exact matches are found first. If NEXT-P
9608is negative (interactively, with prefix arg that is a negative number or
9609just \\[negative-argument]), pop back to the previous tag gone to.
9610
9611If third arg REGEXP-P is non-nil, treat TAGNAME as a regexp.
9612
a5e28954 9613A marker representing the point when this command is invoked is pushed
93548d2e
DL
9614onto a ring and may be popped back to with \\[pop-tag-mark].
9615Contrast this with the ring of marks gone to by the command.
9616
c595cc5f
MR
9617See documentation of variable `tags-file-name'.
9618
9619\(fn TAGNAME &optional NEXT-P)" t nil)
93548d2e
DL
9620 (define-key ctl-x-5-map "." 'find-tag-other-frame)
9621
9622(autoload (quote find-tag-regexp) "etags" "\
9623Find tag (in current tags table) whose name matches REGEXP.
9624Select the buffer containing the tag's definition and move point there.
9625
9626If second arg NEXT-P is t (interactively, with prefix arg), search for
9627another tag that matches the last tagname or regexp used. When there are
9628multiple matches for a tag, more exact matches are found first. If NEXT-P
9629is negative (interactively, with prefix arg that is a negative number or
9630just \\[negative-argument]), pop back to the previous tag gone to.
9631
9632If third arg OTHER-WINDOW is non-nil, select the buffer in another window.
9633
a5e28954 9634A marker representing the point when this command is invoked is pushed
93548d2e
DL
9635onto a ring and may be popped back to with \\[pop-tag-mark].
9636Contrast this with the ring of marks gone to by the command.
9637
c595cc5f
MR
9638See documentation of variable `tags-file-name'.
9639
9640\(fn REGEXP &optional NEXT-P OTHER-WINDOW)" t nil)
93548d2e
DL
9641 (define-key esc-map [?\C-.] 'find-tag-regexp)
9642 (define-key esc-map "*" 'pop-tag-mark)
9643
9644(autoload (quote pop-tag-mark) "etags" "\
9645Pop back to where \\[find-tag] was last invoked.
9646
9647This is distinct from invoking \\[find-tag] with a negative argument
9648since that pops a stack of markers at which tags were found, not from
c595cc5f
MR
9649where they were found.
9650
9651\(fn)" t nil)
93548d2e
DL
9652
9653(autoload (quote next-file) "etags" "\
9654Select next file among files in current tags table.
9655
9656A first argument of t (prefix arg, if interactive) initializes to the
9657beginning of the list of files in the tags table. If the argument is
9658neither nil nor t, it is evalled to initialize the list of files.
9659
9660Non-nil second argument NOVISIT means use a temporary buffer
9661 to save time and avoid uninteresting warnings.
9662
9663Value is nil if the file was already visited;
c595cc5f
MR
9664if the file was newly read in, the value is the filename.
9665
9666\(fn &optional INITIALIZE NOVISIT)" t nil)
93548d2e
DL
9667
9668(autoload (quote tags-loop-continue) "etags" "\
9669Continue last \\[tags-search] or \\[tags-query-replace] command.
9670Used noninteractively with non-nil argument to begin such a command (the
9671argument is passed to `next-file', which see).
9672
9673Two variables control the processing we do on each file: the value of
9674`tags-loop-scan' is a form to be executed on each file to see if it is
9675interesting (it returns non-nil if so) and `tags-loop-operate' is a form to
9676evaluate to operate on an interesting file. If the latter evaluates to
c595cc5f
MR
9677nil, we exit; otherwise we scan the next file.
9678
9679\(fn &optional FIRST-TIME)" t nil)
93548d2e
DL
9680 (define-key esc-map "," 'tags-loop-continue)
9681
9682(autoload (quote tags-search) "etags" "\
9683Search through all files listed in tags table for match for REGEXP.
9684Stops when a match is found.
9685To continue searching for next match, use command \\[tags-loop-continue].
9686
c595cc5f
MR
9687See documentation of variable `tags-file-name'.
9688
9689\(fn REGEXP &optional FILE-LIST-FORM)" t nil)
93548d2e
DL
9690
9691(autoload (quote tags-query-replace) "etags" "\
b9e1c2ff 9692Do `query-replace-regexp' of FROM with TO on all files listed in tags table.
93548d2e 9693Third arg DELIMITED (prefix arg) means replace only word-delimited matches.
b9e1c2ff 9694If you exit (\\[keyboard-quit], RET or q), you can resume the query replace
93548d2e
DL
9695with the command \\[tags-loop-continue].
9696
c595cc5f
MR
9697See documentation of variable `tags-file-name'.
9698
9699\(fn FROM TO &optional DELIMITED FILE-LIST-FORM START END)" t nil)
93548d2e
DL
9700
9701(autoload (quote list-tags) "etags" "\
9702Display list of tags in file FILE.
9703This searches only the first table in the list, and no included tables.
9704FILE should be as it appeared in the `etags' command, usually without a
c595cc5f
MR
9705directory specification.
9706
9707\(fn FILE &optional NEXT-MATCH)" t nil)
93548d2e
DL
9708
9709(autoload (quote tags-apropos) "etags" "\
c595cc5f
MR
9710Display list of all tags in tags table REGEXP matches.
9711
9712\(fn REGEXP)" t nil)
93548d2e
DL
9713
9714(autoload (quote select-tags-table) "etags" "\
9715Select a tags table file from a menu of those you have already used.
9716The list of tags tables to select from is stored in `tags-table-set-list';
c595cc5f
MR
9717see the doc of that variable if you want to add names to the list.
9718
9719\(fn)" t nil)
93548d2e
DL
9720
9721(autoload (quote complete-tag) "etags" "\
9722Perform tags completion on the text around point.
9723Completes to the set of names listed in the current tags table.
9724The string to complete is chosen in the same way as the default
c595cc5f
MR
9725for \\[find-tag] (which see).
9726
9727\(fn)" t nil)
93548d2e
DL
9728
9729;;;***
9730\f
9731;;;### (autoloads (ethio-write-file ethio-find-file ethio-java-to-fidel-buffer
9732;;;;;; ethio-fidel-to-java-buffer ethio-tex-to-fidel-buffer ethio-fidel-to-tex-buffer
9733;;;;;; ethio-input-special-character ethio-replace-space ethio-modify-vowel
9734;;;;;; ethio-fidel-to-sera-marker ethio-fidel-to-sera-mail ethio-fidel-to-sera-mail-or-marker
9735;;;;;; ethio-fidel-to-sera-buffer ethio-fidel-to-sera-region ethio-sera-to-fidel-marker
9736;;;;;; ethio-sera-to-fidel-mail ethio-sera-to-fidel-mail-or-marker
a1b8d58b 9737;;;;;; ethio-sera-to-fidel-buffer ethio-sera-to-fidel-region setup-ethiopic-environment-internal)
a5805c9d 9738;;;;;; "ethio-util" "language/ethio-util.el" (17327 23539))
93548d2e
DL
9739;;; Generated autoloads from language/ethio-util.el
9740
c595cc5f
MR
9741(autoload (quote setup-ethiopic-environment-internal) "ethio-util" "\
9742Not documented
9743
9744\(fn)" nil nil)
93548d2e
DL
9745
9746(autoload (quote ethio-sera-to-fidel-region) "ethio-util" "\
9747Convert the characters in region from SERA to FIDEL.
9748The variable `ethio-primary-language' specifies the primary language
9749and `ethio-secondary-language' specifies the secondary.
9750
9751If the 3rd parameter SECONDARY is given and non-nil, assume the region
0ef3cc90 9752begins with the secondary language; otherwise with the primary
93548d2e
DL
9753language.
9754
9755If the 4th parameter FORCE is given and non-nil, perform conversion
9756even if the buffer is read-only.
9757
9758See also the descriptions of the variables
9759`ethio-use-colon-for-colon' and
c595cc5f
MR
9760`ethio-use-three-dot-question'.
9761
9762\(fn BEG END &optional SECONDARY FORCE)" t nil)
93548d2e
DL
9763
9764(autoload (quote ethio-sera-to-fidel-buffer) "ethio-util" "\
9765Convert the current buffer from SERA to FIDEL.
9766
9767The variable `ethio-primary-language' specifies the primary
9768language and `ethio-secondary-language' specifies the secondary.
9769
9770If the 1st optional parameter SECONDARY is non-nil, assume the buffer
9771begins with the secondary language; otherwise with the primary
9772language.
9773
9774If the 2nd optional parametr FORCE is non-nil, perform conversion even if the
9775buffer is read-only.
9776
9777See also the descriptions of the variables
9778`ethio-use-colon-for-colon' and
c595cc5f
MR
9779`ethio-use-three-dot-question'.
9780
9781\(fn &optional SECONDARY FORCE)" t nil)
93548d2e
DL
9782
9783(autoload (quote ethio-sera-to-fidel-mail-or-marker) "ethio-util" "\
c1a055ca 9784Execute `ethio-sera-to-fidel-mail' or `ethio-sera-to-fidel-marker' depending on the current major mode.
c595cc5f
MR
9785If in rmail-mode or in mail-mode, execute the former; otherwise latter.
9786
9787\(fn &optional ARG)" t nil)
93548d2e
DL
9788
9789(autoload (quote ethio-sera-to-fidel-mail) "ethio-util" "\
9790Convert SERA to FIDEL to read/write mail and news.
9791
9792If the buffer contains the markers \"<sera>\" and \"</sera>\",
9793convert the segments between them into FIDEL.
9794
9795If invoked interactively and there is no marker, convert the subject field
c595cc5f
MR
9796and the body into FIDEL using `ethio-sera-to-fidel-region'.
9797
9798\(fn &optional ARG)" t nil)
93548d2e
DL
9799
9800(autoload (quote ethio-sera-to-fidel-marker) "ethio-util" "\
9801Convert the regions surrounded by \"<sera>\" and \"</sera>\" from SERA to FIDEL.
9802Assume that each region begins with `ethio-primary-language'.
c595cc5f
MR
9803The markers \"<sera>\" and \"</sera>\" themselves are not deleted.
9804
9805\(fn &optional FORCE)" t nil)
93548d2e
DL
9806
9807(autoload (quote ethio-fidel-to-sera-region) "ethio-util" "\
9808Replace all the FIDEL characters in the region to the SERA format.
9809The variable `ethio-primary-language' specifies the primary
9810language and `ethio-secondary-language' specifies the secondary.
9811
9812If the 3dr parameter SECONDARY is given and non-nil, try to convert
9813the region so that it begins in the secondary language; otherwise with
9814the primary language.
9815
9816If the 4th parameter FORCE is given and non-nil, convert even if the
9817buffer is read-only.
9818
9819See also the descriptions of the variables
9820`ethio-use-colon-for-colon', `ethio-use-three-dot-question',
c595cc5f
MR
9821`ethio-quote-vowel-always' and `ethio-numeric-reduction'.
9822
9823\(fn BEGIN END &optional SECONDARY FORCE)" t nil)
93548d2e
DL
9824
9825(autoload (quote ethio-fidel-to-sera-buffer) "ethio-util" "\
9826Replace all the FIDEL characters in the current buffer to the SERA format.
9827The variable `ethio-primary-language' specifies the primary
9828language and `ethio-secondary-language' specifies the secondary.
9829
9830If the 1st optional parameter SECONDARY is non-nil, try to convert the
9831region so that it begins in the secondary language; otherwise with the
9832primary language.
9833
9834If the 2nd optional parameter FORCE is non-nil, convert even if the
9835buffer is read-only.
9836
9837See also the descriptions of the variables
9838`ethio-use-colon-for-colon', `ethio-use-three-dot-question',
c595cc5f
MR
9839`ethio-quote-vowel-always' and `ethio-numeric-reduction'.
9840
9841\(fn &optional SECONDARY FORCE)" t nil)
93548d2e
DL
9842
9843(autoload (quote ethio-fidel-to-sera-mail-or-marker) "ethio-util" "\
c1a055ca 9844Execute `ethio-fidel-to-sera-mail' or `ethio-fidel-to-sera-marker' depending on the current major mode.
c595cc5f
MR
9845If in rmail-mode or in mail-mode, execute the former; otherwise latter.
9846
9847\(fn &optional ARG)" t nil)
93548d2e
DL
9848
9849(autoload (quote ethio-fidel-to-sera-mail) "ethio-util" "\
9850Convert FIDEL to SERA to read/write mail and news.
9851
9852If the body contains at least one Ethiopic character,
9853 1) insert the string \"<sera>\" at the beginning of the body,
9854 2) insert \"</sera>\" at the end of the body, and
9855 3) convert the body into SERA.
9856
c595cc5f
MR
9857The very same procedure applies to the subject field, too.
9858
9859\(fn)" t nil)
93548d2e
DL
9860
9861(autoload (quote ethio-fidel-to-sera-marker) "ethio-util" "\
9862Convert the regions surrounded by \"<sera>\" and \"</sera>\" from FIDEL to SERA.
c595cc5f
MR
9863The markers \"<sera>\" and \"</sera>\" themselves are not deleted.
9864
9865\(fn &optional FORCE)" t nil)
93548d2e
DL
9866
9867(autoload (quote ethio-modify-vowel) "ethio-util" "\
c595cc5f
MR
9868Modify the vowel of the FIDEL that is under the cursor.
9869
9870\(fn)" t nil)
93548d2e
DL
9871
9872(autoload (quote ethio-replace-space) "ethio-util" "\
9873Replace ASCII spaces with Ethiopic word separators in the region.
9874
9875In the specified region, replace word separators surrounded by two
9876Ethiopic characters, depending on the first parameter CH, which should
9877be 1, 2, or 3.
9878
9879If CH = 1, word separator will be replaced with an ASCII space.
9880If CH = 2, with two ASCII spaces.
9881If CH = 3, with the Ethiopic colon-like word separator.
9882
c595cc5f
MR
9883The second and third parameters BEGIN and END specify the region.
9884
9885\(fn CH BEGIN END)" t nil)
93548d2e
DL
9886
9887(autoload (quote ethio-input-special-character) "ethio-util" "\
c595cc5f
MR
9888Allow the user to input special characters.
9889
9890\(fn ARG)" t nil)
93548d2e
DL
9891
9892(autoload (quote ethio-fidel-to-tex-buffer) "ethio-util" "\
9893Convert each fidel characters in the current buffer into a fidel-tex command.
c595cc5f
MR
9894Each command is always surrounded by braces.
9895
9896\(fn)" t nil)
93548d2e
DL
9897
9898(autoload (quote ethio-tex-to-fidel-buffer) "ethio-util" "\
c595cc5f
MR
9899Convert fidel-tex commands in the current buffer into fidel chars.
9900
9901\(fn)" t nil)
93548d2e
DL
9902
9903(autoload (quote ethio-fidel-to-java-buffer) "ethio-util" "\
9904Convert Ethiopic characters into the Java escape sequences.
9905
9906Each escape sequence is of the form uXXXX, where XXXX is the
9907character's codepoint (in hex) in Unicode.
9908
9909If `ethio-java-save-lowercase' is non-nil, use [0-9a-f].
c595cc5f
MR
9910Otherwise, [0-9A-F].
9911
9912\(fn)" nil nil)
93548d2e
DL
9913
9914(autoload (quote ethio-java-to-fidel-buffer) "ethio-util" "\
c595cc5f
MR
9915Convert the Java escape sequences into corresponding Ethiopic characters.
9916
9917\(fn)" nil nil)
93548d2e
DL
9918
9919(autoload (quote ethio-find-file) "ethio-util" "\
390069bc 9920Transcribe file content into Ethiopic depending on filename suffix.
c595cc5f
MR
9921
9922\(fn)" nil nil)
93548d2e
DL
9923
9924(autoload (quote ethio-write-file) "ethio-util" "\
c595cc5f
MR
9925Transcribe Ethiopic characters in ASCII depending on the file extension.
9926
9927\(fn)" nil nil)
93548d2e
DL
9928
9929;;;***
9930\f
0a352cd7
GM
9931;;;### (autoloads (eudc-load-eudc eudc-query-form eudc-expand-inline
9932;;;;;; eudc-get-phone eudc-get-email eudc-set-server) "eudc" "net/eudc.el"
a5805c9d 9933;;;;;; (17279 27198))
0a352cd7
GM
9934;;; Generated autoloads from net/eudc.el
9935
9936(autoload (quote eudc-set-server) "eudc" "\
9937Set the directory server to SERVER using PROTOCOL.
b9e1c2ff 9938Unless NO-SAVE is non-nil, the server is saved as the default
c595cc5f
MR
9939server for future sessions.
9940
9941\(fn SERVER PROTOCOL &optional NO-SAVE)" t nil)
0a352cd7
GM
9942
9943(autoload (quote eudc-get-email) "eudc" "\
c595cc5f 9944Get the email field of NAME from the directory server.
390069bc 9945If ERROR is non-nil, report an error if there is none.
c595cc5f 9946
390069bc 9947\(fn NAME &optional ERROR)" t nil)
0a352cd7
GM
9948
9949(autoload (quote eudc-get-phone) "eudc" "\
c595cc5f 9950Get the phone field of NAME from the directory server.
390069bc 9951If ERROR is non-nil, report an error if there is none.
c595cc5f 9952
390069bc 9953\(fn NAME &optional ERROR)" t nil)
0a352cd7
GM
9954
9955(autoload (quote eudc-expand-inline) "eudc" "\
9956Query the directory server, and expand the query string before point.
9957The query string consists of the buffer substring from the point back to
b9e1c2ff
EZ
9958the preceding comma, colon or beginning of line.
9959The variable `eudc-inline-query-format' controls how to associate the
0a352cd7 9960individual inline query words with directory attribute names.
b9e1c2ff 9961After querying the server for the given string, the expansion specified by
0a352cd7 9962`eudc-inline-expansion-format' is inserted in the buffer at point.
33c18c83
RS
9963If REPLACE is non-nil, then this expansion replaces the name in the buffer.
9964`eudc-expansion-overwrites-query' being non-nil inverts the meaning of REPLACE.
b9e1c2ff 9965Multiple servers can be tried with the same query until one finds a match,
c595cc5f
MR
9966see `eudc-inline-expansion-servers'
9967
9968\(fn &optional REPLACE)" t nil)
0a352cd7
GM
9969
9970(autoload (quote eudc-query-form) "eudc" "\
9971Display a form to query the directory server.
9972If given a non-nil argument GET-FIELDS-FROM-SERVER, the function first
c595cc5f
MR
9973queries the server for the existing fields and displays a corresponding form.
9974
9975\(fn &optional GET-FIELDS-FROM-SERVER)" t nil)
0a352cd7
GM
9976
9977(autoload (quote eudc-load-eudc) "eudc" "\
9978Load the Emacs Unified Directory Client.
c595cc5f
MR
9979This does nothing except loading eudc by autoload side-effect.
9980
9981\(fn)" t nil)
0a352cd7 9982
b9e1c2ff 9983(cond ((not (string-match "XEmacs" emacs-version)) (defvar eudc-tools-menu (make-sparse-keymap "Directory Search")) (fset (quote eudc-tools-menu) (symbol-value (quote eudc-tools-menu))) (define-key eudc-tools-menu [phone] (quote ("Get Phone" . eudc-get-phone))) (define-key eudc-tools-menu [email] (quote ("Get Email" . eudc-get-email))) (define-key eudc-tools-menu [separator-eudc-email] (quote ("--"))) (define-key eudc-tools-menu [expand-inline] (quote ("Expand Inline Query" . eudc-expand-inline))) (define-key eudc-tools-menu [query] (quote ("Query with Form" . eudc-query-form))) (define-key eudc-tools-menu [separator-eudc-query] (quote ("--"))) (define-key eudc-tools-menu [new] (quote ("New Server" . eudc-set-server))) (define-key eudc-tools-menu [load] (quote ("Load Hotlist of Servers" . eudc-load-eudc)))) (t (let ((menu (quote ("Directory Search" ["Load Hotlist of Servers" eudc-load-eudc t] ["New Server" eudc-set-server t] ["---" nil nil] ["Query with Form" eudc-query-form t] ["Expand Inline Query" eudc-expand-inline t] ["---" nil nil] ["Get Email" eudc-get-email t] ["Get Phone" eudc-get-phone t])))) (if (not (featurep (quote eudc-autoloads))) (if eudc-xemacs-p (if (and (featurep (quote menubar)) (not (featurep (quote infodock)))) (add-submenu (quote ("Tools")) menu)) (require (quote easymenu)) (cond ((fboundp (quote easy-menu-add-item)) (easy-menu-add-item nil (quote ("tools")) (easy-menu-create-menu (car menu) (cdr menu)))) ((fboundp (quote easy-menu-create-keymaps)) (define-key global-map [menu-bar tools eudc] (cons "Directory Search" (easy-menu-create-keymaps "Directory Search" (cdr menu)))))))))))
33a6685b 9984
0a352cd7
GM
9985;;;***
9986\f
9987;;;### (autoloads (eudc-display-jpeg-as-button eudc-display-jpeg-inline
33c18c83 9988;;;;;; eudc-display-sound eudc-display-mail eudc-display-url eudc-display-generic-binary)
a5805c9d 9989;;;;;; "eudc-bob" "net/eudc-bob.el" (17279 27123))
0a352cd7
GM
9990;;; Generated autoloads from net/eudc-bob.el
9991
9992(autoload (quote eudc-display-generic-binary) "eudc-bob" "\
c595cc5f
MR
9993Display a button for unidentified binary DATA.
9994
9995\(fn DATA)" nil nil)
0a352cd7
GM
9996
9997(autoload (quote eudc-display-url) "eudc-bob" "\
c595cc5f
MR
9998Display URL and make it clickable.
9999
10000\(fn URL)" nil nil)
0a352cd7 10001
33c18c83 10002(autoload (quote eudc-display-mail) "eudc-bob" "\
c595cc5f
MR
10003Display e-mail address and make it clickable.
10004
10005\(fn MAIL)" nil nil)
33c18c83 10006
0a352cd7 10007(autoload (quote eudc-display-sound) "eudc-bob" "\
c595cc5f
MR
10008Display a button to play the sound DATA.
10009
10010\(fn DATA)" nil nil)
0a352cd7
GM
10011
10012(autoload (quote eudc-display-jpeg-inline) "eudc-bob" "\
c595cc5f
MR
10013Display the JPEG DATA inline at point if possible.
10014
10015\(fn DATA)" nil nil)
0a352cd7
GM
10016
10017(autoload (quote eudc-display-jpeg-as-button) "eudc-bob" "\
c595cc5f
MR
10018Display a button for the JPEG DATA.
10019
10020\(fn DATA)" nil nil)
0a352cd7
GM
10021
10022;;;***
10023\f
10024;;;### (autoloads (eudc-try-bbdb-insert eudc-insert-record-at-point-into-bbdb)
a5805c9d 10025;;;;;; "eudc-export" "net/eudc-export.el" (17279 27123))
0a352cd7
GM
10026;;; Generated autoloads from net/eudc-export.el
10027
10028(autoload (quote eudc-insert-record-at-point-into-bbdb) "eudc-export" "\
10029Insert record at point into the BBDB database.
c595cc5f
MR
10030This function can only be called from a directory query result buffer.
10031
10032\(fn)" t nil)
0a352cd7
GM
10033
10034(autoload (quote eudc-try-bbdb-insert) "eudc-export" "\
c595cc5f
MR
10035Call `eudc-insert-record-at-point-into-bbdb' if on a record.
10036
10037\(fn)" t nil)
0a352cd7
GM
10038
10039;;;***
10040\f
10041;;;### (autoloads (eudc-edit-hotlist) "eudc-hotlist" "net/eudc-hotlist.el"
a5805c9d 10042;;;;;; (17279 27123))
0a352cd7
GM
10043;;; Generated autoloads from net/eudc-hotlist.el
10044
10045(autoload (quote eudc-edit-hotlist) "eudc-hotlist" "\
c595cc5f
MR
10046Edit the hotlist of directory servers in a specialized buffer.
10047
10048\(fn)" t nil)
0a352cd7
GM
10049
10050;;;***
10051\f
abb2db1c 10052;;;### (autoloads (executable-make-buffer-file-executable-if-script-p
be65bdd3 10053;;;;;; executable-self-display executable-set-magic executable-interpret
d66d64bc 10054;;;;;; executable-command-find-posix-p) "executable" "progmodes/executable.el"
a5805c9d 10055;;;;;; (17279 27123))
93548d2e
DL
10056;;; Generated autoloads from progmodes/executable.el
10057
390069bc
AS
10058(autoload (quote executable-command-find-posix-p) "executable" "\
10059Check if PROGRAM handles arguments Posix-style.
10060If PROGRAM is non-nil, use that instead of \"find\".
10061
10062\(fn &optional PROGRAM)" nil nil)
10063
be65bdd3
AS
10064(autoload (quote executable-interpret) "executable" "\
10065Run script with user-specified args, and collect output in a buffer.
10066While script runs asynchronously, you can use the \\[next-error]
10067command to find the next error. The buffer is also in `comint-mode' and
10068`compilation-shell-minor-mode', so that you can answer any prompts.
10069
10070\(fn COMMAND)" t nil)
10071
93548d2e
DL
10072(autoload (quote executable-set-magic) "executable" "\
10073Set this buffer's interpreter to INTERPRETER with optional ARGUMENT.
10074The variables `executable-magicless-file-regexp', `executable-prefix',
10075`executable-insert', `executable-query' and `executable-chmod' control
10076when and how magic numbers are inserted or replaced and scripts made
c595cc5f
MR
10077executable.
10078
10079\(fn INTERPRETER &optional ARGUMENT NO-QUERY-FLAG INSERT-FLAG)" t nil)
93548d2e
DL
10080
10081(autoload (quote executable-self-display) "executable" "\
10082Turn a text file into a self-displaying Un*x command.
c595cc5f
MR
10083The magic number of such a command displays all lines but itself.
10084
10085\(fn)" t nil)
93548d2e 10086
abb2db1c
GM
10087(autoload (quote executable-make-buffer-file-executable-if-script-p) "executable" "\
10088Make file executable according to umask if not already executable.
10089If file already has any execute bits set at all, do not change existing
c595cc5f
MR
10090file modes.
10091
10092\(fn)" nil nil)
abb2db1c 10093
93548d2e
DL
10094;;;***
10095\f
10096;;;### (autoloads (expand-jump-to-next-slot expand-jump-to-previous-slot
a5805c9d 10097;;;;;; expand-add-abbrevs) "expand" "expand.el" (17279 27122))
93548d2e
DL
10098;;; Generated autoloads from expand.el
10099
10100(autoload (quote expand-add-abbrevs) "expand" "\
10101Add a list of abbrev to abbrev table TABLE.
10102ABBREVS is a list of abbrev definitions; each abbrev description entry
10103has the form (ABBREV EXPANSION ARG).
10104
10105ABBREV is the abbreviation to replace.
10106
10107EXPANSION is the replacement string or a function which will make the
10108expansion. For example you, could use the DMacros or skeleton packages
10109to generate such functions.
10110
10111ARG is an optional argument which can be a number or a list of
10112numbers. If ARG is a number, point is placed ARG chars from the
10113beginning of the expanded text.
10114
10115If ARG is a list of numbers, point is placed according to the first
10116member of the list, but you can visit the other specified positions
10117cyclicaly with the functions `expand-jump-to-previous-slot' and
10118`expand-jump-to-next-slot'.
10119
c595cc5f
MR
10120If ARG is omitted, point is placed at the end of the expanded text.
10121
10122\(fn TABLE ABBREVS)" nil nil)
93548d2e
DL
10123
10124(autoload (quote expand-jump-to-previous-slot) "expand" "\
10125Move the cursor to the previous slot in the last abbrev expansion.
c595cc5f
MR
10126This is used only in conjunction with `expand-add-abbrevs'.
10127
10128\(fn)" t nil)
93548d2e
DL
10129
10130(autoload (quote expand-jump-to-next-slot) "expand" "\
10131Move the cursor to the next slot in the last abbrev expansion.
c595cc5f
MR
10132This is used only in conjunction with `expand-add-abbrevs'.
10133
10134\(fn)" t nil)
93548d2e
DL
10135 (define-key ctl-x-map "ap" 'expand-jump-to-previous-slot)
10136 (define-key ctl-x-map "an" 'expand-jump-to-next-slot)
10137
10138;;;***
10139\f
a5805c9d 10140;;;### (autoloads (f90-mode) "f90" "progmodes/f90.el" (17279 27203))
93548d2e
DL
10141;;; Generated autoloads from progmodes/f90.el
10142
10143(autoload (quote f90-mode) "f90" "\
4c6bc877 10144Major mode for editing Fortran 90,95 code in free format.
0c72a1a2 10145For fixed format code, use `fortran-mode'.
93548d2e 10146
4c6bc877 10147\\[f90-indent-line] indents the current line.
0c72a1a2 10148\\[f90-indent-new-line] indents current line and creates a new indented line.
4c6bc877 10149\\[f90-indent-subprogram] indents the current subprogram.
93548d2e
DL
10150
10151Type `? or `\\[help-command] to display a list of built-in abbrevs for F90 keywords.
10152
10153Key definitions:
10154\\{f90-mode-map}
10155
10156Variables controlling indentation style and extra features:
10157
4c6bc877
MR
10158`f90-do-indent'
10159 Extra indentation within do blocks (default 3).
10160`f90-if-indent'
10161 Extra indentation within if/select case/where/forall blocks (default 3).
10162`f90-type-indent'
10163 Extra indentation within type/interface/block-data blocks (default 3).
10164`f90-program-indent'
10165 Extra indentation within program/module/subroutine/function blocks
10166 (default 2).
10167`f90-continuation-indent'
10168 Extra indentation applied to continuation lines (default 5).
10169`f90-comment-region'
10170 String inserted by function \\[f90-comment-region] at start of each
10171 line in region (default \"!!!$\").
10172`f90-indented-comment-re'
10173 Regexp determining the type of comment to be intended like code
10174 (default \"!\").
10175`f90-directive-comment-re'
10176 Regexp of comment-like directive like \"!HPF\\\\$\", not to be indented
10177 (default \"!hpf\\\\$\").
10178`f90-break-delimiters'
10179 Regexp holding list of delimiters at which lines may be broken
10180 (default \"[-+*/><=,% \\t]\").
10181`f90-break-before-delimiters'
10182 Non-nil causes `f90-do-auto-fill' to break lines before delimiters
10183 (default t).
10184`f90-beginning-ampersand'
10185 Automatic insertion of & at beginning of continuation lines (default t).
10186`f90-smart-end'
10187 From an END statement, check and fill the end using matching block start.
10188 Allowed values are 'blink, 'no-blink, and nil, which determine
10189 whether to blink the matching beginning (default 'blink).
10190`f90-auto-keyword-case'
10191 Automatic change of case of keywords (default nil).
10192 The possibilities are 'downcase-word, 'upcase-word, 'capitalize-word.
10193`f90-leave-line-no'
10194 Do not left-justify line numbers (default nil).
93548d2e
DL
10195
10196Turning on F90 mode calls the value of the variable `f90-mode-hook'
c595cc5f
MR
10197with no args, if that value is non-nil.
10198
10199\(fn)" t nil)
93548d2e
DL
10200
10201;;;***
10202\f
9e0211c9
MR
10203;;;### (autoloads (list-colors-display facemenu-read-color facemenu-remove-special
10204;;;;;; facemenu-remove-all facemenu-remove-face-props facemenu-set-read-only
10205;;;;;; facemenu-set-intangible facemenu-set-invisible facemenu-set-face-from-menu
10206;;;;;; facemenu-set-background facemenu-set-foreground facemenu-set-face)
a5805c9d 10207;;;;;; "facemenu" "facemenu.el" (17307 25810))
93548d2e 10208;;; Generated autoloads from facemenu.el
be65bdd3 10209 (define-key global-map "\M-o" 'facemenu-keymap)
93548d2e
DL
10210 (autoload 'facemenu-keymap "facemenu" "Keymap for face-changing commands." t 'keymap)
10211
10212(defvar facemenu-face-menu (let ((map (make-sparse-keymap "Face"))) (define-key map "o" (cons "Other..." (quote facemenu-set-face))) map) "\
10213Menu keymap for faces.")
10214
10215(defalias (quote facemenu-face-menu) facemenu-face-menu)
10216
10217(defvar facemenu-foreground-menu (let ((map (make-sparse-keymap "Foreground Color"))) (define-key map "o" (cons "Other..." (quote facemenu-set-foreground))) map) "\
10218Menu keymap for foreground colors.")
10219
10220(defalias (quote facemenu-foreground-menu) facemenu-foreground-menu)
10221
10222(defvar facemenu-background-menu (let ((map (make-sparse-keymap "Background Color"))) (define-key map "o" (cons "Other..." (quote facemenu-set-background))) map) "\
abb2db1c 10223Menu keymap for background colors.")
93548d2e
DL
10224
10225(defalias (quote facemenu-background-menu) facemenu-background-menu)
10226
2cb750ba 10227(defvar facemenu-special-menu (let ((map (make-sparse-keymap "Special"))) (define-key map [115] (cons (purecopy "Remove Special") (quote facemenu-remove-special))) (define-key map [116] (cons (purecopy "Intangible") (quote facemenu-set-intangible))) (define-key map [118] (cons (purecopy "Invisible") (quote facemenu-set-invisible))) (define-key map [114] (cons (purecopy "Read-Only") (quote facemenu-set-read-only))) map) "\
93548d2e
DL
10228Menu keymap for non-face text-properties.")
10229
10230(defalias (quote facemenu-special-menu) facemenu-special-menu)
10231
2cb750ba 10232(defvar facemenu-justification-menu (let ((map (make-sparse-keymap "Justification"))) (define-key map [99] (cons (purecopy "Center") (quote set-justification-center))) (define-key map [98] (cons (purecopy "Full") (quote set-justification-full))) (define-key map [114] (cons (purecopy "Right") (quote set-justification-right))) (define-key map [108] (cons (purecopy "Left") (quote set-justification-left))) (define-key map [117] (cons (purecopy "Unfilled") (quote set-justification-none))) map) "\
93548d2e
DL
10233Submenu for text justification commands.")
10234
10235(defalias (quote facemenu-justification-menu) facemenu-justification-menu)
10236
2cb750ba 10237(defvar facemenu-indentation-menu (let ((map (make-sparse-keymap "Indentation"))) (define-key map [decrease-right-margin] (cons (purecopy "Indent Right Less") (quote decrease-right-margin))) (define-key map [increase-right-margin] (cons (purecopy "Indent Right More") (quote increase-right-margin))) (define-key map [decrease-left-margin] (cons (purecopy "Indent Less") (quote decrease-left-margin))) (define-key map [increase-left-margin] (cons (purecopy "Indent More") (quote increase-left-margin))) map) "\
93548d2e
DL
10238Submenu for indentation commands.")
10239
10240(defalias (quote facemenu-indentation-menu) facemenu-indentation-menu)
10241
10242(defvar facemenu-menu nil "\
10243Facemenu top-level menu keymap.")
10244
10245(setq facemenu-menu (make-sparse-keymap "Text Properties"))
10246
38747ec6 10247(let ((map facemenu-menu)) (define-key map [dc] (cons (purecopy "Display Colors") (quote list-colors-display))) (define-key map [df] (cons (purecopy "Display Faces") (quote list-faces-display))) (define-key map [dp] (cons (purecopy "Describe Properties") (quote describe-text-properties))) (define-key map [ra] (cons (purecopy "Remove Text Properties") (quote facemenu-remove-all))) (define-key map [rm] (cons (purecopy "Remove Face Properties") (quote facemenu-remove-face-props))) (define-key map [s1] (list (purecopy "--"))))
93548d2e 10248
2cb750ba 10249(let ((map facemenu-menu)) (define-key map [in] (cons (purecopy "Indentation") (quote facemenu-indentation-menu))) (define-key map [ju] (cons (purecopy "Justification") (quote facemenu-justification-menu))) (define-key map [s2] (list (purecopy "--"))) (define-key map [sp] (cons (purecopy "Special Properties") (quote facemenu-special-menu))) (define-key map [bg] (cons (purecopy "Background Color") (quote facemenu-background-menu))) (define-key map [fg] (cons (purecopy "Foreground Color") (quote facemenu-foreground-menu))) (define-key map [fc] (cons (purecopy "Face") (quote facemenu-face-menu))))
93548d2e
DL
10250
10251(defalias (quote facemenu-menu) facemenu-menu)
10252
10253(autoload (quote facemenu-set-face) "facemenu" "\
10254Add FACE to the region or next character typed.
5682d301 10255This adds FACE to the top of the face list; any faces lower on the list that
93548d2e
DL
10256will not show through at all will be removed.
10257
5682d301 10258Interactively, reads the face name with the minibuffer.
93548d2e 10259
5682d301
SS
10260If the region is active (normally true except in Transient Mark mode)
10261and there is no prefix argument, this command sets the region to the
10262requested face.
93548d2e
DL
10263
10264Otherwise, this command specifies the face for the next character
10265inserted. Moving point or switching buffers before
c595cc5f
MR
10266typing a character to insert cancels the specification.
10267
10268\(fn FACE &optional START END)" t nil)
93548d2e
DL
10269
10270(autoload (quote facemenu-set-foreground) "facemenu" "\
abb2db1c 10271Set the foreground COLOR of the region or next character typed.
8d89e048 10272This command reads the color in the minibuffer.
5682d301
SS
10273
10274If the region is active (normally true except in Transient Mark mode)
10275and there is no prefix argument, this command sets the region to the
10276requested face.
10277
10278Otherwise, this command specifies the face for the next character
10279inserted. Moving point or switching buffers before
c595cc5f
MR
10280typing a character to insert cancels the specification.
10281
10282\(fn COLOR &optional START END)" t nil)
93548d2e
DL
10283
10284(autoload (quote facemenu-set-background) "facemenu" "\
abb2db1c 10285Set the background COLOR of the region or next character typed.
8d89e048 10286This command reads the color in the minibuffer.
5682d301
SS
10287
10288If the region is active (normally true except in Transient Mark mode)
10289and there is no prefix argument, this command sets the region to the
10290requested face.
10291
10292Otherwise, this command specifies the face for the next character
10293inserted. Moving point or switching buffers before
c595cc5f
MR
10294typing a character to insert cancels the specification.
10295
10296\(fn COLOR &optional START END)" t nil)
93548d2e
DL
10297
10298(autoload (quote facemenu-set-face-from-menu) "facemenu" "\
abb2db1c 10299Set the FACE of the region or next character typed.
ac09dc1e
KL
10300This function is designed to be called from a menu; FACE is determined
10301using the event type of the menu entry. If FACE is a symbol whose
10302name starts with \"fg:\" or \"bg:\", then this functions sets the
10303foreground or background to the color specified by the rest of the
10304symbol's name. Any other symbol is considered the name of a face.
93548d2e 10305
5682d301
SS
10306If the region is active (normally true except in Transient Mark mode)
10307and there is no prefix argument, this command sets the region to the
10308requested face.
93548d2e
DL
10309
10310Otherwise, this command specifies the face for the next character
ac09dc1e
KL
10311inserted. Moving point or switching buffers before typing a character
10312to insert cancels the specification.
c595cc5f
MR
10313
10314\(fn FACE START END)" t nil)
93548d2e
DL
10315
10316(autoload (quote facemenu-set-invisible) "facemenu" "\
10317Make the region invisible.
10318This sets the `invisible' text property; it can be undone with
c595cc5f
MR
10319`facemenu-remove-special'.
10320
10321\(fn START END)" t nil)
93548d2e
DL
10322
10323(autoload (quote facemenu-set-intangible) "facemenu" "\
10324Make the region intangible: disallow moving into it.
10325This sets the `intangible' text property; it can be undone with
c595cc5f
MR
10326`facemenu-remove-special'.
10327
10328\(fn START END)" t nil)
93548d2e
DL
10329
10330(autoload (quote facemenu-set-read-only) "facemenu" "\
10331Make the region unmodifiable.
10332This sets the `read-only' text property; it can be undone with
c595cc5f
MR
10333`facemenu-remove-special'.
10334
10335\(fn START END)" t nil)
93548d2e
DL
10336
10337(autoload (quote facemenu-remove-face-props) "facemenu" "\
c595cc5f
MR
10338Remove `face' and `mouse-face' text properties.
10339
10340\(fn START END)" t nil)
93548d2e
DL
10341
10342(autoload (quote facemenu-remove-all) "facemenu" "\
c595cc5f
MR
10343Remove all text properties from the region.
10344
10345\(fn START END)" t nil)
93548d2e
DL
10346
10347(autoload (quote facemenu-remove-special) "facemenu" "\
10348Remove all the \"special\" text properties from the region.
c595cc5f
MR
10349These special properties include `invisible', `intangible' and `read-only'.
10350
10351\(fn START END)" t nil)
93548d2e 10352
93548d2e 10353(autoload (quote facemenu-read-color) "facemenu" "\
c595cc5f
MR
10354Read a color using the minibuffer.
10355
10356\(fn &optional PROMPT)" nil nil)
93548d2e
DL
10357
10358(autoload (quote list-colors-display) "facemenu" "\
10359Display names of defined colors, and show what they look like.
10360If the optional argument LIST is non-nil, it should be a list of
be65bdd3
AS
10361colors to display. Otherwise, this command computes a list of
10362colors that the current display can handle. If the optional
10363argument BUFFER-NAME is nil, it defaults to *Colors*.
c595cc5f 10364
be65bdd3 10365\(fn &optional LIST BUFFER-NAME)" t nil)
93548d2e
DL
10366
10367;;;***
10368\f
10369;;;### (autoloads (turn-on-fast-lock fast-lock-mode) "fast-lock"
a5805c9d 10370;;;;;; "obsolete/fast-lock.el" (17279 27172))
d66d64bc 10371;;; Generated autoloads from obsolete/fast-lock.el
93548d2e
DL
10372
10373(autoload (quote fast-lock-mode) "fast-lock" "\
10374Toggle Fast Lock mode.
10375With arg, turn Fast Lock mode on if and only if arg is positive and the buffer
10376is associated with a file. Enable it automatically in your `~/.emacs' by:
10377
10378 (setq font-lock-support-mode 'fast-lock-mode)
10379
10380If Fast Lock mode is enabled, and the current buffer does not contain any text
10381properties, any associated Font Lock cache is used if its timestamp matches the
10382buffer's file, and its `font-lock-keywords' match those that you are using.
10383
10384Font Lock caches may be saved:
10385- When you save the file's buffer.
10386- When you kill an unmodified file's buffer.
10387- When you exit Emacs, for all unmodified or saved buffers.
10388Depending on the value of `fast-lock-save-events'.
10389See also the commands `fast-lock-read-cache' and `fast-lock-save-cache'.
10390
10391Use \\[font-lock-fontify-buffer] to fontify the buffer if the cache is bad.
10392
10393Various methods of control are provided for the Font Lock cache. In general,
10394see variable `fast-lock-cache-directories' and function `fast-lock-cache-name'.
10395For saving, see variables `fast-lock-minimum-size', `fast-lock-save-events',
c595cc5f
MR
10396`fast-lock-save-others' and `fast-lock-save-faces'.
10397
10398\(fn &optional ARG)" t nil)
93548d2e
DL
10399
10400(autoload (quote turn-on-fast-lock) "fast-lock" "\
c595cc5f
MR
10401Unconditionally turn on Fast Lock mode.
10402
10403\(fn)" nil nil)
93548d2e
DL
10404
10405(when (fboundp (quote add-minor-mode)) (defvar fast-lock-mode nil) (add-minor-mode (quote fast-lock-mode) nil))
10406
10407;;;***
10408\f
10409;;;### (autoloads (feedmail-queue-reminder feedmail-run-the-queue
6c083b4c 10410;;;;;; feedmail-run-the-queue-global-prompt feedmail-run-the-queue-no-prompts
a5805c9d 10411;;;;;; feedmail-send-it) "feedmail" "mail/feedmail.el" (17279 27198))
93548d2e
DL
10412;;; Generated autoloads from mail/feedmail.el
10413
6c083b4c 10414(autoload (quote feedmail-send-it) "feedmail" "\
c7f48c35
GM
10415Send the current mail buffer using the Feedmail package.
10416This is a suitable value for `send-mail-function'. It can be used
c595cc5f
MR
10417with various lower-level mechanisms to provide features such as queueing.
10418
10419\(fn)" nil nil)
6c083b4c 10420
93548d2e 10421(autoload (quote feedmail-run-the-queue-no-prompts) "feedmail" "\
c595cc5f
MR
10422Like feedmail-run-the-queue, but suppress confirmation prompts.
10423
10424\(fn &optional ARG)" t nil)
93548d2e
DL
10425
10426(autoload (quote feedmail-run-the-queue-global-prompt) "feedmail" "\
10427Like feedmail-run-the-queue, but with a global confirmation prompt.
10428This is generally most useful if run non-interactively, since you can
c595cc5f
MR
10429bail out with an appropriate answer to the global confirmation prompt.
10430
10431\(fn &optional ARG)" t nil)
93548d2e
DL
10432
10433(autoload (quote feedmail-run-the-queue) "feedmail" "\
10434Visit each message in the feedmail queue directory and send it out.
10435Return value is a list of three things: number of messages sent, number of
10436messages skipped, and number of non-message things in the queue (commonly
c595cc5f
MR
10437backup file names and the like).
10438
10439\(fn &optional ARG)" t nil)
93548d2e
DL
10440
10441(autoload (quote feedmail-queue-reminder) "feedmail" "\
10442Perform some kind of reminder activity about queued and draft messages.
10443Called with an optional symbol argument which says what kind of event
10444is triggering the reminder activity. The default is 'on-demand, which
10445is what you typically would use if you were putting this in your emacs start-up
10446or mail hook code. Other recognized values for WHAT-EVENT (these are passed
10447internally by feedmail):
10448
10449 after-immediate (a message has just been sent in immediate mode)
10450 after-queue (a message has just been queued)
10451 after-draft (a message has just been placed in the draft directory)
10452 after-run (the queue has just been run, possibly sending messages)
10453
10454WHAT-EVENT is used as a key into the table feedmail-queue-reminder-alist. If
10455the associated value is a function, it is called without arguments and is expected
10456to perform the reminder activity. You can supply your own reminder functions
10457by redefining feedmail-queue-reminder-alist. If you don't want any reminders,
c595cc5f
MR
10458you can set feedmail-queue-reminder-alist to nil.
10459
10460\(fn &optional WHAT-EVENT)" t nil)
93548d2e
DL
10461
10462;;;***
10463\f
ac95a621 10464;;;### (autoloads (ffap-bindings dired-at-point ffap-at-mouse ffap-menu
a5805c9d 10465;;;;;; find-file-at-point ffap-next) "ffap" "ffap.el" (17307 25810))
93548d2e
DL
10466;;; Generated autoloads from ffap.el
10467
10468(autoload (quote ffap-next) "ffap" "\
10469Search buffer for next file or URL, and run ffap.
10470Optional argument BACK says to search backwards.
10471Optional argument WRAP says to try wrapping around if necessary.
10472Interactively: use a single prefix to search backwards,
10473double prefix to wrap forward, triple to wrap backwards.
c595cc5f
MR
10474Actual search is done by `ffap-next-guess'.
10475
10476\(fn &optional BACK WRAP)" t nil)
93548d2e
DL
10477
10478(autoload (quote find-file-at-point) "ffap" "\
10479Find FILENAME, guessing a default from text around point.
10480If `ffap-url-regexp' is not nil, the FILENAME may also be an URL.
10481With a prefix, this command behaves exactly like `ffap-file-finder'.
10482If `ffap-require-prefix' is set, the prefix meaning is reversed.
10483See also the variables `ffap-dired-wildcards', `ffap-newfile-prompt',
10484and the functions `ffap-file-at-point' and `ffap-url-at-point'.
10485
c595cc5f 10486\(fn &optional FILENAME)" t nil)
9e0211c9
MR
10487
10488(defalias (quote ffap) (quote find-file-at-point))
93548d2e
DL
10489
10490(autoload (quote ffap-menu) "ffap" "\
10491Put up a menu of files and urls mentioned in this buffer.
10492Then set mark, jump to choice, and try to fetch it. The menu is
10493cached in `ffap-menu-alist', and rebuilt by `ffap-menu-rescan'.
10494The optional RESCAN argument (a prefix, interactively) forces
c595cc5f
MR
10495a rebuild. Searches with `ffap-menu-regexp'.
10496
10497\(fn &optional RESCAN)" t nil)
93548d2e
DL
10498
10499(autoload (quote ffap-at-mouse) "ffap" "\
10500Find file or url guessed from text around mouse click.
10501Interactively, calls `ffap-at-mouse-fallback' if no guess is found.
10502Return value:
10503 * if a guess string is found, return it (after finding it)
10504 * if the fallback is called, return whatever it returns
c595cc5f
MR
10505 * otherwise, nil
10506
10507\(fn E)" t nil)
93548d2e
DL
10508
10509(autoload (quote dired-at-point) "ffap" "\
c595cc5f
MR
10510Start Dired, defaulting to file at point. See `ffap'.
10511
10512\(fn &optional FILENAME)" t nil)
93548d2e 10513
ac95a621 10514(autoload (quote ffap-bindings) "ffap" "\
c595cc5f
MR
10515Evaluate the forms in variable `ffap-bindings'.
10516
10517\(fn)" t nil)
ac95a621 10518
93548d2e
DL
10519;;;***
10520\f
10521;;;### (autoloads (file-cache-minibuffer-complete) "filecache" "filecache.el"
a5805c9d 10522;;;;;; (17307 25810))
93548d2e
DL
10523;;; Generated autoloads from filecache.el
10524
10525(autoload (quote file-cache-minibuffer-complete) "filecache" "\
10526Complete a filename in the minibuffer using a preloaded cache.
10527Filecache does two kinds of substitution: it completes on names in
10528the cache, and, once it has found a unique name, it cycles through
54baed30
GM
10529the directories that the name is available in. With a prefix argument,
10530the name is considered already unique; only the second substitution
c595cc5f
MR
10531\(directories) is done.
10532
10533\(fn ARG)" t nil)
93548d2e
DL
10534 (define-key minibuffer-local-completion-map [C-tab] 'file-cache-minibuffer-complete)
10535 (define-key minibuffer-local-map [C-tab] 'file-cache-minibuffer-complete)
10536 (define-key minibuffer-local-must-match-map [C-tab] 'file-cache-minibuffer-complete)
10537
10538;;;***
10539\f
a5805c9d
KL
10540;;;### (autoloads (filesets-init) "filesets" "filesets.el" (17307
10541;;;;;; 25810))
d66d64bc
KL
10542;;; Generated autoloads from filesets.el
10543
10544(autoload (quote filesets-init) "filesets" "\
10545Filesets initialization.
10546Set up hooks, load the cache file -- if existing -- and build the menu.
10547
10548\(fn)" nil nil)
10549
10550;;;***
10551\f
93548d2e 10552;;;### (autoloads (find-grep-dired find-name-dired find-dired find-grep-options
390069bc 10553;;;;;; find-ls-subdir-switches find-ls-option) "find-dired" "find-dired.el"
a5805c9d 10554;;;;;; (17307 25810))
93548d2e
DL
10555;;; Generated autoloads from find-dired.el
10556
10557(defvar find-ls-option (if (eq system-type (quote berkeley-unix)) (quote ("-ls" . "-gilsb")) (quote ("-exec ls -ld {} \\;" . "-ld"))) "\
10558*Description of the option to `find' to produce an `ls -l'-type listing.
10559This is a cons of two strings (FIND-OPTION . LS-SWITCHES). FIND-OPTION
10560gives the option (or options) to `find' that produce the desired output.
10561LS-SWITCHES is a list of `ls' switches to tell dired how to parse the output.")
10562
9c46b00a
MR
10563(custom-autoload (quote find-ls-option) "find-dired")
10564
390069bc
AS
10565(defvar find-ls-subdir-switches "-al" "\
10566`ls' switches for inserting subdirectories in `*Find*' buffers.
10567This should contain the \"-l\" switch.
10568Use the \"-F\" or \"-b\" switches if and only if you also use
10569them for `find-ls-option'.")
10570
10571(custom-autoload (quote find-ls-subdir-switches) "find-dired")
10572
93548d2e
DL
10573(defvar find-grep-options (if (or (eq system-type (quote berkeley-unix)) (string-match "solaris2" system-configuration) (string-match "irix" system-configuration)) "-s" "-q") "\
10574*Option to grep to be as silent as possible.
10575On Berkeley systems, this is `-s'; on Posix, and with GNU grep, `-q' does it.
10576On other systems, the closest you can come is to use `-l'.")
10577
9c46b00a
MR
10578(custom-autoload (quote find-grep-options) "find-dired")
10579
93548d2e
DL
10580(autoload (quote find-dired) "find-dired" "\
10581Run `find' and go into Dired mode on a buffer of the output.
10582The command run (after changing into DIR) is
10583
10584 find . \\( ARGS \\) -ls
10585
10586except that the variable `find-ls-option' specifies what to use
c595cc5f
MR
10587as the final argument.
10588
10589\(fn DIR ARGS)" t nil)
93548d2e
DL
10590
10591(autoload (quote find-name-dired) "find-dired" "\
10592Search DIR recursively for files matching the globbing pattern PATTERN,
10593and run dired on those files.
10594PATTERN is a shell wildcard (not an Emacs regexp) and need not be quoted.
10595The command run (after changing into DIR) is
10596
c595cc5f
MR
10597 find . -name 'PATTERN' -ls
10598
10599\(fn DIR PATTERN)" t nil)
93548d2e
DL
10600
10601(autoload (quote find-grep-dired) "find-dired" "\
a5e28954 10602Find files in DIR containing a regexp REGEXP and start Dired on output.
93548d2e
DL
10603The command run (after changing into DIR) is
10604
a5e28954 10605 find . -exec grep -s -e REGEXP {} \\; -ls
93548d2e 10606
c595cc5f
MR
10607Thus ARG can also contain additional grep options.
10608
10609\(fn DIR REGEXP)" t nil)
93548d2e
DL
10610
10611;;;***
10612\f
10613;;;### (autoloads (ff-mouse-find-other-file-other-window ff-mouse-find-other-file
10614;;;;;; ff-find-other-file ff-get-other-file) "find-file" "find-file.el"
a5805c9d 10615;;;;;; (17307 25810))
93548d2e
DL
10616;;; Generated autoloads from find-file.el
10617
932a6f0f
AS
10618(defvar ff-special-constructs (quote (("^#\\s *\\(include\\|import\\)\\s +[<\"]\\(.*\\)[>\"]" lambda nil (setq fname (buffer-substring (match-beginning 2) (match-end 2)))))) "\
10619*A list of regular expressions for `ff-find-file'.
d66d64bc 10620Specifies how to recognize special constructs such as include files
932a6f0f
AS
10621etc. and an associated method for extracting the filename from that
10622construct.")
10623
93548d2e
DL
10624(autoload (quote ff-get-other-file) "find-file" "\
10625Find the header or source file corresponding to this file.
54baed30 10626See also the documentation for `ff-find-other-file'.
93548d2e 10627
c595cc5f
MR
10628If optional IN-OTHER-WINDOW is non-nil, find the file in another window.
10629
10630\(fn &optional IN-OTHER-WINDOW)" t nil)
10631
10632(defalias (quote ff-find-related-file) (quote ff-find-other-file))
93548d2e
DL
10633
10634(autoload (quote ff-find-other-file) "find-file" "\
10635Find the header or source file corresponding to this file.
10636Being on a `#include' line pulls in that file.
10637
10638If optional IN-OTHER-WINDOW is non-nil, find the file in the other window.
10639If optional IGNORE-INCLUDE is non-nil, ignore being on `#include' lines.
10640
10641Variables of interest include:
10642
54baed30
GM
10643 - `ff-case-fold-search'
10644 Non-nil means ignore cases in matches (see `case-fold-search').
93548d2e
DL
10645 If you have extensions in different cases, you will want this to be nil.
10646
54baed30 10647 - `ff-always-in-other-window'
93548d2e 10648 If non-nil, always open the other file in another window, unless an
54baed30 10649 argument is given to `ff-find-other-file'.
93548d2e 10650
54baed30 10651 - `ff-ignore-include'
93548d2e
DL
10652 If non-nil, ignores #include lines.
10653
54baed30 10654 - `ff-always-try-to-create'
93548d2e
DL
10655 If non-nil, always attempt to create the other file if it was not found.
10656
54baed30 10657 - `ff-quiet-mode'
93548d2e
DL
10658 If non-nil, traces which directories are being searched.
10659
54baed30 10660 - `ff-special-constructs'
d66d64bc 10661 A list of regular expressions specifying how to recognize special
54baed30 10662 constructs such as include files etc, and an associated method for
93548d2e
DL
10663 extracting the filename from that construct.
10664
54baed30 10665 - `ff-other-file-alist'
93548d2e
DL
10666 Alist of extensions to find given the current file's extension.
10667
54baed30 10668 - `ff-search-directories'
93548d2e 10669 List of directories searched through with each extension specified in
54baed30 10670 `ff-other-file-alist' that matches this file's extension.
93548d2e 10671
c595cc5f 10672 - `ff-pre-find-hook'
93548d2e
DL
10673 List of functions to be called before the search for the file starts.
10674
c595cc5f 10675 - `ff-pre-load-hook'
93548d2e
DL
10676 List of functions to be called before the other file is loaded.
10677
c595cc5f 10678 - `ff-post-load-hook'
93548d2e
DL
10679 List of functions to be called after the other file is loaded.
10680
c595cc5f 10681 - `ff-not-found-hook'
93548d2e
DL
10682 List of functions to be called if the other file could not be found.
10683
c595cc5f
MR
10684 - `ff-file-created-hook'
10685 List of functions to be called if the other file has been created.
10686
10687\(fn &optional IN-OTHER-WINDOW IGNORE-INCLUDE)" t nil)
93548d2e
DL
10688
10689(autoload (quote ff-mouse-find-other-file) "find-file" "\
c595cc5f
MR
10690Visit the file you click on.
10691
10692\(fn EVENT)" t nil)
93548d2e
DL
10693
10694(autoload (quote ff-mouse-find-other-file-other-window) "find-file" "\
c595cc5f
MR
10695Visit the file you click on in another window.
10696
10697\(fn EVENT)" t nil)
93548d2e
DL
10698
10699;;;***
10700\f
10701;;;### (autoloads (find-function-setup-keys find-variable-at-point
be65bdd3
AS
10702;;;;;; find-function-at-point find-function-on-key find-face-definition
10703;;;;;; find-definition-noselect find-variable-other-frame find-variable-other-window
10704;;;;;; find-variable find-variable-noselect find-function-other-frame
10705;;;;;; find-function-other-window find-function find-function-noselect
10706;;;;;; find-function-search-for-symbol find-library) "find-func"
a5805c9d 10707;;;;;; "emacs-lisp/find-func.el" (17383 37959))
93548d2e
DL
10708;;; Generated autoloads from emacs-lisp/find-func.el
10709
c595cc5f
MR
10710(autoload (quote find-library) "find-func" "\
10711Find the elisp source of LIBRARY.
10712
10713\(fn LIBRARY)" t nil)
10714
2b74dd73 10715(autoload (quote find-function-search-for-symbol) "find-func" "\
be65bdd3
AS
10716Search for SYMBOL's definition of type TYPE in LIBRARY.
10717If TYPE is nil, look for a function definition.
10718Otherwise, TYPE specifies the kind of definition,
10719and it is interpreted via `find-function-regexp-alist'.
10720The search is done in the source for library LIBRARY.
c595cc5f 10721
be65bdd3 10722\(fn SYMBOL TYPE LIBRARY)" nil nil)
2b74dd73 10723
93548d2e
DL
10724(autoload (quote find-function-noselect) "find-func" "\
10725Return a pair (BUFFER . POINT) pointing to the definition of FUNCTION.
10726
c1a055ca 10727Finds the source file containing the definition of FUNCTION
93548d2e
DL
10728in a buffer and the point of the definition. The buffer is
10729not selected.
10730
10731If the file where FUNCTION is defined is not known, then it is
10732searched for in `find-function-source-path' if non nil, otherwise
c595cc5f
MR
10733in `load-path'.
10734
10735\(fn FUNCTION)" nil nil)
93548d2e
DL
10736
10737(autoload (quote find-function) "find-func" "\
10738Find the definition of the FUNCTION near point.
10739
c1a055ca 10740Finds the source file containing the definition of the function
be65bdd3
AS
10741near point (selected by `function-called-at-point') in a buffer and
10742places point before the definition.
10743Set mark before moving, if the buffer already existed.
93548d2e
DL
10744
10745The library where FUNCTION is defined is searched for in
10746`find-function-source-path', if non nil, otherwise in `load-path'.
c595cc5f
MR
10747See also `find-function-recenter-line' and `find-function-after-hook'.
10748
10749\(fn FUNCTION)" t nil)
93548d2e
DL
10750
10751(autoload (quote find-function-other-window) "find-func" "\
10752Find, in another window, the definition of FUNCTION near point.
10753
c595cc5f
MR
10754See `find-function' for more details.
10755
10756\(fn FUNCTION)" t nil)
93548d2e
DL
10757
10758(autoload (quote find-function-other-frame) "find-func" "\
c1a055ca 10759Find, in another frame, the definition of FUNCTION near point.
93548d2e 10760
c595cc5f
MR
10761See `find-function' for more details.
10762
10763\(fn FUNCTION)" t nil)
93548d2e
DL
10764
10765(autoload (quote find-variable-noselect) "find-func" "\
c1a055ca 10766Return a pair `(BUFFER . POINT)' pointing to the definition of VARIABLE.
93548d2e 10767
c1a055ca
EZ
10768Finds the library containing the definition of VARIABLE in a buffer and
10769the point of the definition. The buffer is not selected.
93548d2e 10770
8d8d8d4e 10771The library where VARIABLE is defined is searched for in FILE or
c595cc5f
MR
10772`find-function-source-path', if non nil, otherwise in `load-path'.
10773
10774\(fn VARIABLE &optional FILE)" nil nil)
93548d2e
DL
10775
10776(autoload (quote find-variable) "find-func" "\
10777Find the definition of the VARIABLE near point.
10778
c1a055ca 10779Finds the library containing the definition of the variable
93548d2e 10780near point (selected by `variable-at-point') in a buffer and
be65bdd3
AS
10781places point before the definition.
10782
10783Set mark before moving, if the buffer already existed.
93548d2e
DL
10784
10785The library where VARIABLE is defined is searched for in
10786`find-function-source-path', if non nil, otherwise in `load-path'.
c595cc5f
MR
10787See also `find-function-recenter-line' and `find-function-after-hook'.
10788
10789\(fn VARIABLE)" t nil)
93548d2e
DL
10790
10791(autoload (quote find-variable-other-window) "find-func" "\
10792Find, in another window, the definition of VARIABLE near point.
10793
c595cc5f
MR
10794See `find-variable' for more details.
10795
10796\(fn VARIABLE)" t nil)
93548d2e
DL
10797
10798(autoload (quote find-variable-other-frame) "find-func" "\
c1a055ca 10799Find, in another frame, the definition of VARIABLE near point.
93548d2e 10800
c595cc5f
MR
10801See `find-variable' for more details.
10802
10803\(fn VARIABLE)" t nil)
93548d2e 10804
be65bdd3
AS
10805(autoload (quote find-definition-noselect) "find-func" "\
10806Return a pair `(BUFFER . POINT)' pointing to the definition of SYMBOL.
c1a055ca 10807TYPE says what type of definition: nil for a function, `defvar' for a
99155348 10808variable, `defface' for a face. This function does not switch to the
c1a055ca 10809buffer nor display it.
be65bdd3
AS
10810
10811The library where SYMBOL is defined is searched for in FILE or
10812`find-function-source-path', if non nil, otherwise in `load-path'.
10813
10814\(fn SYMBOL TYPE &optional FILE)" nil nil)
10815
10816(autoload (quote find-face-definition) "find-func" "\
10817Find the definition of FACE. FACE defaults to the name near point.
10818
10819Finds the Emacs Lisp library containing the definition of the face
10820near point (selected by `variable-at-point') in a buffer and
10821places point before the definition.
10822
10823Set mark before moving, if the buffer already existed.
10824
10825The library where FACE is defined is searched for in
10826`find-function-source-path', if non nil, otherwise in `load-path'.
10827See also `find-function-recenter-line' and `find-function-after-hook'.
10828
10829\(fn FACE)" t nil)
10830
93548d2e
DL
10831(autoload (quote find-function-on-key) "find-func" "\
10832Find the function that KEY invokes. KEY is a string.
be65bdd3 10833Set mark before moving, if the buffer already existed.
c595cc5f
MR
10834
10835\(fn KEY)" t nil)
93548d2e
DL
10836
10837(autoload (quote find-function-at-point) "find-func" "\
c595cc5f
MR
10838Find directly the function at point in the other window.
10839
10840\(fn)" t nil)
93548d2e
DL
10841
10842(autoload (quote find-variable-at-point) "find-func" "\
c1a055ca 10843Find directly the variable at point in the other window.
c595cc5f
MR
10844
10845\(fn)" t nil)
93548d2e
DL
10846
10847(autoload (quote find-function-setup-keys) "find-func" "\
c595cc5f
MR
10848Define some key bindings for the find-function family of functions.
10849
10850\(fn)" nil nil)
93548d2e
DL
10851
10852;;;***
10853\f
b5c5b319 10854;;;### (autoloads (find-lisp-find-dired-filter find-lisp-find-dired-subdirectories
a5805c9d 10855;;;;;; find-lisp-find-dired) "find-lisp" "find-lisp.el" (17307 25810))
b5c5b319
GM
10856;;; Generated autoloads from find-lisp.el
10857
10858(autoload (quote find-lisp-find-dired) "find-lisp" "\
c595cc5f
MR
10859Find files in DIR, matching REGEXP.
10860
10861\(fn DIR REGEXP)" t nil)
b5c5b319
GM
10862
10863(autoload (quote find-lisp-find-dired-subdirectories) "find-lisp" "\
c595cc5f
MR
10864Find all subdirectories of DIR.
10865
10866\(fn DIR)" t nil)
b5c5b319
GM
10867
10868(autoload (quote find-lisp-find-dired-filter) "find-lisp" "\
c595cc5f
MR
10869Change the filter on a find-lisp-find-dired buffer to REGEXP.
10870
10871\(fn REGEXP)" t nil)
b5c5b319
GM
10872
10873;;;***
10874\f
c45be9ac 10875;;;### (autoloads (finder-by-keyword finder-commentary finder-list-keywords)
a5805c9d 10876;;;;;; "finder" "finder.el" (17307 25810))
c45be9ac
GM
10877;;; Generated autoloads from finder.el
10878
10879(autoload (quote finder-list-keywords) "finder" "\
c595cc5f
MR
10880Display descriptions of the keywords in the Finder buffer.
10881
10882\(fn)" t nil)
c45be9ac
GM
10883
10884(autoload (quote finder-commentary) "finder" "\
10885Display FILE's commentary section.
c595cc5f
MR
10886FILE should be in a form suitable for passing to `locate-library'.
10887
10888\(fn FILE)" t nil)
c45be9ac
GM
10889
10890(autoload (quote finder-by-keyword) "finder" "\
c595cc5f
MR
10891Find packages matching a given keyword.
10892
10893\(fn)" t nil)
c45be9ac
GM
10894
10895;;;***
10896\f
93548d2e 10897;;;### (autoloads (enable-flow-control-on enable-flow-control) "flow-ctrl"
a5805c9d 10898;;;;;; "flow-ctrl.el" (17323 25263))
93548d2e
DL
10899;;; Generated autoloads from flow-ctrl.el
10900
10901(autoload (quote enable-flow-control) "flow-ctrl" "\
10902Toggle flow control handling.
10903When handling is enabled, user can type C-s as C-\\, and C-q as C-^.
c595cc5f
MR
10904With arg, enable flow control mode if arg is positive, otherwise disable.
10905
10906\(fn &optional ARGUMENT)" t nil)
93548d2e
DL
10907
10908(autoload (quote enable-flow-control-on) "flow-ctrl" "\
10909Enable flow control if using one of a specified set of terminal types.
10910Use `(enable-flow-control-on \"vt100\" \"h19\")' to enable flow control
10911on VT-100 and H19 terminals. When flow control is enabled,
10912you must type C-\\ to get the effect of a C-s, and type C-^
c595cc5f
MR
10913to get the effect of a C-q.
10914
10915\(fn &rest LOSING-TERMINAL-TYPES)" nil nil)
93548d2e
DL
10916
10917;;;***
10918\f
390069bc 10919;;;### (autoloads (fill-flowed fill-flowed-encode) "flow-fill" "gnus/flow-fill.el"
a5805c9d 10920;;;;;; (17279 27198))
390069bc
AS
10921;;; Generated autoloads from gnus/flow-fill.el
10922
10923(autoload (quote fill-flowed-encode) "flow-fill" "\
10924Not documented
10925
10926\(fn &optional BUFFER)" nil nil)
10927
10928(autoload (quote fill-flowed) "flow-fill" "\
10929Not documented
10930
10931\(fn &optional BUFFER)" nil nil)
10932
10933;;;***
10934\f
d66d64bc 10935;;;### (autoloads (flymake-mode-off flymake-mode-on flymake-mode)
a5805c9d 10936;;;;;; "flymake" "progmodes/flymake.el" (17350 14840))
390069bc
AS
10937;;; Generated autoloads from progmodes/flymake.el
10938
d66d64bc
KL
10939(autoload (quote flymake-mode) "flymake" "\
10940Minor mode to do on-the-fly syntax checking.
10941When called interactively, toggles the minor mode.
10942With arg, turn Flymake mode on if and only if arg is positive.
10943
10944\(fn &optional ARG)" t nil)
390069bc
AS
10945
10946(autoload (quote flymake-mode-on) "flymake" "\
10947Turn flymake mode on.
10948
10949\(fn)" nil nil)
10950
10951(autoload (quote flymake-mode-off) "flymake" "\
10952Turn flymake mode off.
10953
10954\(fn)" nil nil)
10955
10956;;;***
10957\f
75dfe990 10958;;;### (autoloads (flyspell-buffer flyspell-region flyspell-mode-off
d66d64bc 10959;;;;;; flyspell-mode flyspell-prog-mode) "flyspell" "textmodes/flyspell.el"
a5805c9d 10960;;;;;; (17374 21550))
93548d2e
DL
10961;;; Generated autoloads from textmodes/flyspell.el
10962
abb2db1c 10963(autoload (quote flyspell-prog-mode) "flyspell" "\
c595cc5f
MR
10964Turn on `flyspell-mode' for comments and strings.
10965
10966\(fn)" t nil)
fbf34973 10967(defvar flyspell-mode nil)
abb2db1c 10968
93548d2e
DL
10969(autoload (quote flyspell-mode) "flyspell" "\
10970Minor mode performing on-the-fly spelling checking.
390069bc 10971This spawns a single Ispell process and checks each word.
93548d2e
DL
10972The default flyspell behavior is to highlight incorrect words.
10973With no argument, this command toggles Flyspell mode.
10974With a prefix argument ARG, turn Flyspell minor mode on iff ARG is positive.
662c9e53 10975
93548d2e
DL
10976Bindings:
10977\\[ispell-word]: correct words (using Ispell).
10978\\[flyspell-auto-correct-word]: automatically correct word.
d66d64bc
KL
10979\\[flyspell-auto-correct-previous-word]: automatically correct the last misspelled word.
10980\\[flyspell-correct-word] (or down-mouse-2): popup correct words.
93548d2e
DL
10981
10982Hooks:
8d8d8d4e 10983This runs `flyspell-mode-hook' after flyspell is entered.
93548d2e
DL
10984
10985Remark:
10986`flyspell-mode' uses `ispell-mode'. Thus all Ispell options are
10987valid. For instance, a personal dictionary can be used by
10988invoking `ispell-change-dictionary'.
10989
10990Consider using the `ispell-parser' to check your text. For instance
10991consider adding:
10992\(add-hook 'tex-mode-hook (function (lambda () (setq ispell-parser 'tex))))
10993in your .emacs file.
10994
8d8d8d4e 10995\\[flyspell-region] checks all words inside a region.
c595cc5f
MR
10996\\[flyspell-buffer] checks the whole buffer.
10997
10998\(fn &optional ARG)" t nil)
93548d2e
DL
10999
11000(autoload (quote flyspell-mode-off) "flyspell" "\
c595cc5f
MR
11001Turn Flyspell mode off.
11002
11003\(fn)" nil nil)
93548d2e 11004
75dfe990 11005(autoload (quote flyspell-region) "flyspell" "\
c595cc5f
MR
11006Flyspell text between BEG and END.
11007
11008\(fn BEG END)" t nil)
75dfe990
GM
11009
11010(autoload (quote flyspell-buffer) "flyspell" "\
c595cc5f
MR
11011Flyspell whole buffer.
11012
11013\(fn)" t nil)
75dfe990 11014
93548d2e
DL
11015;;;***
11016\f
11017;;;### (autoloads (follow-delete-other-windows-and-split follow-mode
11018;;;;;; turn-off-follow-mode turn-on-follow-mode) "follow" "follow.el"
a5805c9d 11019;;;;;; (17307 25810))
93548d2e
DL
11020;;; Generated autoloads from follow.el
11021
11022(autoload (quote turn-on-follow-mode) "follow" "\
c595cc5f
MR
11023Turn on Follow mode. Please see the function `follow-mode'.
11024
11025\(fn)" t nil)
93548d2e
DL
11026
11027(autoload (quote turn-off-follow-mode) "follow" "\
c595cc5f
MR
11028Turn off Follow mode. Please see the function `follow-mode'.
11029
11030\(fn)" t nil)
93548d2e
DL
11031
11032(autoload (quote follow-mode) "follow" "\
11033Minor mode that combines windows into one tall virtual window.
11034
11035The feeling of a \"virtual window\" has been accomplished by the use
11036of two major techniques:
11037
11038* The windows always displays adjacent sections of the buffer.
11039 This means that whenever one window is moved, all the
11040 others will follow. (Hence the name Follow Mode.)
11041
11042* Should the point (cursor) end up outside a window, another
11043 window displaying that point is selected, if possible. This
11044 makes it possible to walk between windows using normal cursor
11045 movement commands.
11046
11047Follow mode comes to its prime when used on a large screen and two
11048side-by-side window are used. The user can, with the help of Follow
11049mode, use two full-height windows as though they would have been
11050one. Imagine yourself editing a large function, or section of text,
11051and being able to use 144 lines instead of the normal 72... (your
11052mileage may vary).
11053
11054To split one large window into two side-by-side windows, the commands
11055`\\[split-window-horizontally]' or `M-x follow-delete-other-windows-and-split' can be used.
11056
11057Only windows displayed in the same frame follow each-other.
11058
11059If the variable `follow-intercept-processes' is non-nil, Follow mode
11060will listen to the output of processes and redisplay accordingly.
11061\(This is the default.)
11062
11063When Follow mode is switched on, the hook `follow-mode-hook'
11064is called. When turned off, `follow-mode-off-hook' is called.
11065
11066Keys specific to Follow mode:
c595cc5f
MR
11067\\{follow-mode-map}
11068
11069\(fn ARG)" t nil)
93548d2e
DL
11070
11071(autoload (quote follow-delete-other-windows-and-split) "follow" "\
11072Create two side by side windows and enter Follow Mode.
11073
11074Execute this command to display as much as possible of the text
11075in the selected window. All other windows, in the current
11076frame, are deleted and the selected window is split in two
11077side-by-side windows. Follow Mode is activated, hence the
11078two windows always will display two successive pages.
11079\(If one window is moved, the other one will follow.)
11080
11081If ARG is positive, the leftmost window is selected. If it negative,
11082the rightmost is selected. If ARG is nil, the leftmost window is
11083selected if the original window is the first one in the frame.
11084
11085To bind this command to a hotkey, place the following line
11086in your `~/.emacs' file, replacing [f7] by your favourite key:
c595cc5f
MR
11087 (global-set-key [f7] 'follow-delete-other-windows-and-split)
11088
11089\(fn &optional ARG)" t nil)
93548d2e
DL
11090
11091;;;***
11092\f
a5805c9d
KL
11093;;;### (autoloads (footnote-mode) "footnote" "mail/footnote.el" (17279
11094;;;;;; 27123))
2936437d
GM
11095;;; Generated autoloads from mail/footnote.el
11096
11097(autoload (quote footnote-mode) "footnote" "\
11098Toggle footnote minor mode.
11099\\<message-mode-map>
11100key binding
11101--- -------
11102
11103\\[Footnote-renumber-footnotes] Footnote-renumber-footnotes
11104\\[Footnote-goto-footnote] Footnote-goto-footnote
11105\\[Footnote-delete-footnote] Footnote-delete-footnote
11106\\[Footnote-cycle-style] Footnote-cycle-style
11107\\[Footnote-back-to-message] Footnote-back-to-message
11108\\[Footnote-add-footnote] Footnote-add-footnote
c595cc5f
MR
11109
11110\(fn &optional ARG)" t nil)
2936437d
GM
11111
11112;;;***
11113\f
93548d2e 11114;;;### (autoloads (forms-find-file-other-window forms-find-file forms-mode)
a5805c9d 11115;;;;;; "forms" "forms.el" (17307 25810))
93548d2e
DL
11116;;; Generated autoloads from forms.el
11117
11118(autoload (quote forms-mode) "forms" "\
11119Major mode to visit files in a field-structured manner using a form.
11120
11121Commands: Equivalent keys in read-only mode:
11122 TAB forms-next-field TAB
821b278f 11123 C-c TAB forms-next-field
93548d2e
DL
11124 C-c < forms-first-record <
11125 C-c > forms-last-record >
11126 C-c ? describe-mode ?
11127 C-c C-k forms-delete-record
11128 C-c C-q forms-toggle-read-only q
11129 C-c C-o forms-insert-record
11130 C-c C-l forms-jump-record l
11131 C-c C-n forms-next-record n
11132 C-c C-p forms-prev-record p
11133 C-c C-r forms-search-reverse r
11134 C-c C-s forms-search-forward s
11135 C-c C-x forms-exit x
c595cc5f
MR
11136
11137\(fn &optional PRIMARY)" t nil)
93548d2e
DL
11138
11139(autoload (quote forms-find-file) "forms" "\
c595cc5f
MR
11140Visit a file in Forms mode.
11141
11142\(fn FN)" t nil)
93548d2e
DL
11143
11144(autoload (quote forms-find-file-other-window) "forms" "\
c595cc5f
MR
11145Visit a file in Forms mode in other window.
11146
11147\(fn FN)" t nil)
93548d2e
DL
11148
11149;;;***
11150\f
11151;;;### (autoloads (fortran-mode fortran-tab-mode-default) "fortran"
a5805c9d 11152;;;;;; "progmodes/fortran.el" (17374 21266))
93548d2e
DL
11153;;; Generated autoloads from progmodes/fortran.el
11154
11155(defvar fortran-tab-mode-default nil "\
11156*Default tabbing/carriage control style for empty files in Fortran mode.
0c72a1a2 11157A non-nil value specifies tab-digit style of continuation control.
93548d2e
DL
11158A value of nil specifies that continuation lines are marked
11159with a character in column 6.")
11160
9c46b00a
MR
11161(custom-autoload (quote fortran-tab-mode-default) "fortran")
11162
93548d2e 11163(autoload (quote fortran-mode) "fortran" "\
0c72a1a2
MR
11164Major mode for editing Fortran code in fixed format.
11165For free format code, use `f90-mode'.
11166
93548d2e 11167\\[fortran-indent-line] indents the current Fortran line correctly.
0c72a1a2 11168Note that DO statements must not share a common CONTINUE.
93548d2e 11169
0c72a1a2 11170Type ;? or ;\\[help-command] to display a list of built-in abbrevs for Fortran keywords.
93548d2e
DL
11171
11172Key definitions:
11173\\{fortran-mode-map}
11174
11175Variables controlling indentation style and extra features:
11176
d66d64bc 11177`fortran-comment-line-start'
0c72a1a2
MR
11178 To use comments starting with `!', set this to the string \"!\".
11179`fortran-do-indent'
11180 Extra indentation within DO blocks (default 3).
11181`fortran-if-indent'
11182 Extra indentation within IF blocks (default 3).
11183`fortran-structure-indent'
11184 Extra indentation within STRUCTURE, UNION, MAP and INTERFACE blocks.
11185 (default 3)
11186`fortran-continuation-indent'
11187 Extra indentation applied to continuation statements (default 5).
11188`fortran-comment-line-extra-indent'
11189 Amount of extra indentation for text in full-line comments (default 0).
11190`fortran-comment-indent-style'
11191 How to indent the text in full-line comments. Allowed values are:
11192 nil don't change the indentation
11193 fixed indent to `fortran-comment-line-extra-indent' beyond the
11194 value of either
11195 `fortran-minimum-statement-indent-fixed' (fixed format) or
11196 `fortran-minimum-statement-indent-tab' (TAB format),
11197 depending on the continuation format in use.
11198 relative indent to `fortran-comment-line-extra-indent' beyond the
93548d2e 11199 indentation for a line of code.
0c72a1a2
MR
11200 (default 'fixed)
11201`fortran-comment-indent-char'
11202 Single-character string to be inserted instead of space for
11203 full-line comment indentation (default \" \").
11204`fortran-minimum-statement-indent-fixed'
11205 Minimum indentation for statements in fixed format mode (default 6).
11206`fortran-minimum-statement-indent-tab'
11207 Minimum indentation for statements in TAB format mode (default 9).
11208`fortran-line-number-indent'
11209 Maximum indentation for line numbers (default 1). A line number will
11210 get less than this much indentation if necessary to avoid reaching
11211 column 5.
11212`fortran-check-all-num-for-matching-do'
11213 Non-nil causes all numbered lines to be treated as possible \"continue\"
11214 statements (default nil).
11215`fortran-blink-matching-if'
11216 Non-nil causes \\[fortran-indent-line] on an ENDIF (or ENDDO) statement
11217 to blink on the matching IF (or DO [WHILE]). (default nil)
11218`fortran-continuation-string'
11219 Single-character string to be inserted in column 5 of a continuation
11220 line (default \"$\").
11221`fortran-comment-region'
11222 String inserted by \\[fortran-comment-region] at start of each line in
11223 the region (default \"c$$$\").
11224`fortran-electric-line-number'
11225 Non-nil causes line number digits to be moved to the correct column
11226 as typed (default t).
11227`fortran-break-before-delimiters'
11228 Non-nil causes lines to be broken before delimiters (default t).
93548d2e
DL
11229
11230Turning on Fortran mode calls the value of the variable `fortran-mode-hook'
c595cc5f
MR
11231with no args, if that value is non-nil.
11232
11233\(fn)" t nil)
93548d2e
DL
11234
11235;;;***
11236\f
b5c5b319 11237;;;### (autoloads (fortune fortune-to-signature fortune-compile fortune-from-region
a5805c9d 11238;;;;;; fortune-add-fortune) "fortune" "play/fortune.el" (17279 27123))
b5c5b319
GM
11239;;; Generated autoloads from play/fortune.el
11240
11241(autoload (quote fortune-add-fortune) "fortune" "\
11242Add STRING to a fortune file FILE.
11243
11244Interactively, if called with a prefix argument,
c595cc5f
MR
11245read the file name to use. Otherwise use the value of `fortune-file'.
11246
11247\(fn STRING FILE)" t nil)
b5c5b319
GM
11248
11249(autoload (quote fortune-from-region) "fortune" "\
11250Append the current region to a local fortune-like data file.
11251
11252Interactively, if called with a prefix argument,
c595cc5f
MR
11253read the file name to use. Otherwise use the value of `fortune-file'.
11254
11255\(fn BEG END FILE)" t nil)
b5c5b319
GM
11256
11257(autoload (quote fortune-compile) "fortune" "\
11258Compile fortune file.
11259
11260If called with a prefix asks for the FILE to compile, otherwise uses
c595cc5f
MR
11261the value of `fortune-file'. This currently cannot handle directories.
11262
11263\(fn &optional FILE)" t nil)
b5c5b319
GM
11264
11265(autoload (quote fortune-to-signature) "fortune" "\
11266Create signature from output of the fortune program.
11267
11268If called with a prefix asks for the FILE to choose the fortune from,
11269otherwise uses the value of `fortune-file'. If you want to have fortune
11270choose from a set of files in a directory, call interactively with prefix
c595cc5f
MR
11271and choose the directory as the fortune-file.
11272
11273\(fn &optional FILE)" t nil)
b5c5b319
GM
11274
11275(autoload (quote fortune) "fortune" "\
11276Display a fortune cookie.
11277
11278If called with a prefix asks for the FILE to choose the fortune from,
11279otherwise uses the value of `fortune-file'. If you want to have fortune
11280choose from a set of files in a directory, call interactively with prefix
c595cc5f
MR
11281and choose the directory as the fortune-file.
11282
11283\(fn &optional FILE)" t nil)
b5c5b319
GM
11284
11285;;;***
11286\f
0ef3cc90 11287;;;### (autoloads (set-fringe-style fringe-mode fringe-mode) "fringe"
a5805c9d 11288;;;;;; "fringe.el" (17307 25810))
4c6bc877
MR
11289;;; Generated autoloads from fringe.el
11290
0c72a1a2
MR
11291(defvar fringe-mode nil "\
11292*Specify appearance of fringes on all frames.
11293This variable can be nil (the default) meaning the fringes should have
11294the default width (8 pixels), it can be an integer value specifying
11295the width of both left and right fringe (where 0 means no fringe), or
11296a cons cell where car indicates width of left fringe and cdr indicates
11297width of right fringe (where again 0 can be used to indicate no
11298fringe).
11299To set this variable in a Lisp program, use `set-fringe-mode' to make
11300it take real effect.
11301Setting the variable with a customization buffer also takes effect.
11302If you only want to modify the appearance of the fringe in one frame,
0ef3cc90 11303you can use the interactive function `set-fringe-style'.")
0c72a1a2
MR
11304
11305(custom-autoload (quote fringe-mode) "fringe")
11306
4c6bc877 11307(autoload (quote fringe-mode) "fringe" "\
92e9233f
MR
11308Set the default appearance of fringes on all frames.
11309
11310When called interactively, query the user for MODE. Valid values
11311for MODE include `none', `default', `left-only', `right-only',
11312`minimal' and `half'.
11313
11314When used in a Lisp program, MODE can be a cons cell where the
11315integer in car specifies the left fringe width and the integer in
11316cdr specifies the right fringe width. MODE can also be a single
11317integer that specifies both the left and the right fringe width.
11318If a fringe width specification is nil, that means to use the
11319default width (8 pixels). This command may round up the left and
11320right width specifications to ensure that their sum is a multiple
11321of the character width of a frame. It never rounds up a fringe
11322width of 0.
11323
11324Fringe widths set by `set-window-fringes' override the default
11325fringe widths set by this command. This command applies to all
11326frames that exist and frames to be created in the future. If you
11327want to set the default appearance of fringes on the selected
11328frame only, see the command `set-fringe-style'.
c595cc5f
MR
11329
11330\(fn &optional MODE)" t nil)
4c6bc877
MR
11331
11332(autoload (quote set-fringe-style) "fringe" "\
92e9233f
MR
11333Set the default appearance of fringes on the selected frame.
11334
11335When called interactively, query the user for MODE. Valid values
11336for MODE include `none', `default', `left-only', `right-only',
11337`minimal' and `half'.
11338
11339When used in a Lisp program, MODE can be a cons cell where the
11340integer in car specifies the left fringe width and the integer in
11341cdr specifies the right fringe width. MODE can also be a single
11342integer that specifies both the left and the right fringe width.
11343If a fringe width specification is nil, that means to use the
11344default width (8 pixels). This command may round up the left and
11345right width specifications to ensure that their sum is a multiple
11346of the character width of a frame. It never rounds up a fringe
11347width of 0.
11348
11349Fringe widths set by `set-window-fringes' override the default
11350fringe widths set by this command. If you want to set the
11351default appearance of fringes on all frames, see the command
11352`fringe-mode'.
c595cc5f
MR
11353
11354\(fn &optional MODE)" t nil)
4c6bc877
MR
11355
11356;;;***
11357\f
0ef3cc90 11358;;;### (autoloads (gdb-enable-debug-log gdba) "gdb-ui" "progmodes/gdb-ui.el"
a5805c9d 11359;;;;;; (17331 26860))
390069bc 11360;;; Generated autoloads from progmodes/gdb-ui.el
ac42d7b9
KG
11361
11362(autoload (quote gdba) "gdb-ui" "\
11254e5e 11363Run gdb on program FILE in buffer *gud-FILE*.
ac42d7b9
KG
11364The directory containing FILE becomes the initial working directory
11365and source-file directory for your debugger.
11366
390069bc 11367If `gdb-many-windows' is nil (the default value) then gdb just
0ef3cc90 11368pops up the GUD buffer unless `gdb-show-main' is t. In this case
390069bc
AS
11369it starts with two windows: one displaying the GUD buffer and the
11370other with the source file with the main routine of the inferior.
11371
11372If `gdb-many-windows' is t, regardless of the value of
11373`gdb-show-main', the layout below will appear unless
11374`gdb-use-inferior-io-buffer' is nil when the source buffer
11375occupies the full width of the frame. Keybindings are given in
11376relevant buffer.
11377
11378Watch expressions appear in the speedbar/slowbar.
11379
11380The following commands help control operation :
11381
11382`gdb-many-windows' - Toggle the number of windows gdb uses.
11383`gdb-restore-windows' - To restore the window layout.
11384
11385See Info node `(emacs)GDB Graphical Interface' for a more
11386detailed description of this mode.
11387
ac42d7b9 11388
175a97e4
EZ
11389+--------------------------------------------------------------+
11390| GDB Toolbar |
11391+-------------------------------+------------------------------+
11392| GUD buffer (I/O of GDB) | Locals buffer |
11393| | |
11394| | |
11395| | |
11396+-------------------------------+------------------------------+
11397| Source buffer | I/O buffer (of inferior) |
11398| | (comint-mode) |
11399| | |
11400| | |
11401| | |
11402| | |
11403| | |
11404| | |
11405+-------------------------------+------------------------------+
11406| Stack buffer | Breakpoints buffer |
11407| RET gdb-frames-select | SPC gdb-toggle-breakpoint |
11408| | RET gdb-goto-breakpoint |
11409| | d gdb-delete-breakpoint |
11410+-------------------------------+------------------------------+
ac42d7b9 11411
ac42d7b9
KG
11412\(fn COMMAND-LINE)" t nil)
11413
0ef3cc90
LT
11414(defvar gdb-enable-debug-log nil "\
11415Non-nil means record the process input and output in `gdb-debug-log'.")
11416
11417(custom-autoload (quote gdb-enable-debug-log) "gdb-ui")
11418
ac42d7b9
KG
11419;;;***
11420\f
d66d64bc 11421;;;### (autoloads (generic-make-keywords-list generic-mode generic-mode-internal
a5805c9d
KL
11422;;;;;; define-generic-mode) "generic" "emacs-lisp/generic.el" (17279
11423;;;;;; 27122))
d66d64bc 11424;;; Generated autoloads from emacs-lisp/generic.el
93548d2e 11425
be65bdd3
AS
11426(defvar generic-mode-list nil "\
11427A list of mode names for `generic-mode'.
11428Do not add entries to this list directly; use `define-generic-mode'
11429instead (which see).")
11430
93548d2e 11431(autoload (quote define-generic-mode) "generic" "\
be65bdd3 11432Create a new generic mode MODE.
93548d2e 11433
d66d64bc
KL
11434MODE is the name of the command for the generic mode; don't quote it.
11435The optional DOCSTRING is the documentation for the mode command. If
11436you do not supply it, `define-generic-mode' uses a default
11437documentation string instead.
93548d2e 11438
d66d64bc
KL
11439COMMENT-LIST is a list in which each element is either a character, a
11440string of one or two characters, or a cons cell. A character or a
11441string is set up in the mode's syntax table as a \"comment starter\".
11442If the entry is a cons cell, the `car' is set up as a \"comment
11443starter\" and the `cdr' as a \"comment ender\". (Use nil for the
11444latter if you want comments to end at the end of the line.) Note that
11445the syntax table has limitations about what comment starters and
11446enders are actually possible.
93548d2e 11447
be65bdd3
AS
11448KEYWORD-LIST is a list of keywords to highlight with
11449`font-lock-keyword-face'. Each keyword should be a string.
93548d2e 11450
d66d64bc
KL
11451FONT-LOCK-LIST is a list of additional expressions to highlight. Each
11452element of this list should have the same form as an element of
be65bdd3 11453`font-lock-keywords'.
93548d2e 11454
be65bdd3 11455AUTO-MODE-LIST is a list of regular expressions to add to
d66d64bc
KL
11456`auto-mode-alist'. These regular expressions are added when Emacs
11457runs the macro expansion.
93548d2e 11458
d66d64bc
KL
11459FUNCTION-LIST is a list of functions to call to do some additional
11460setup. The mode command calls these functions just before it runs the
11461mode hook `MODE-hook'.
93548d2e 11462
c595cc5f
MR
11463See the file generic-x.el for some examples of `define-generic-mode'.
11464
be65bdd3
AS
11465\(fn MODE COMMENT-LIST KEYWORD-LIST FONT-LOCK-LIST AUTO-MODE-LIST FUNCTION-LIST &optional DOCSTRING)" nil (quote macro))
11466
11467(autoload (quote generic-mode-internal) "generic" "\
11468Go into the generic mode MODE.
11469
d66d64bc 11470\(fn MODE COMMENT-LIST KEYWORD-LIST FONT-LOCK-LIST FUNCTION-LIST)" nil nil)
93548d2e
DL
11471
11472(autoload (quote generic-mode) "generic" "\
be65bdd3
AS
11473Enter generic mode MODE.
11474
11475Generic modes provide basic comment and font-lock functionality
11476for \"generic\" files. (Files which are too small to warrant their
11477own mode, but have comment characters, keywords, and the like.)
93548d2e
DL
11478
11479To define a generic-mode, use the function `define-generic-mode'.
c595cc5f
MR
11480Some generic modes are defined in `generic-x.el'.
11481
be65bdd3 11482\(fn MODE)" t nil)
93548d2e 11483
d66d64bc
KL
11484(autoload (quote generic-make-keywords-list) "generic" "\
11485Return a `font-lock-keywords' construct that highlights KEYWORD-LIST.
11486KEYWORD-LIST is a list of keyword strings that should be
11487highlighted with face FACE. This function calculates a regular
11488expression that matches these keywords and concatenates it with
11489PREFIX and SUFFIX. Then it returns a construct based on this
11490regular expression that can be used as an element of
11491`font-lock-keywords'.
11492
11493\(fn KEYWORD-LIST FACE &optional PREFIX SUFFIX)" nil nil)
11494
93548d2e
DL
11495;;;***
11496\f
2cb750ba 11497;;;### (autoloads (glasses-mode) "glasses" "progmodes/glasses.el"
a5805c9d 11498;;;;;; (17337 56256))
2cb750ba
GM
11499;;; Generated autoloads from progmodes/glasses.el
11500
11501(autoload (quote glasses-mode) "glasses" "\
11502Minor mode for making identifiers likeThis readable.
11503When this mode is active, it tries to add virtual separators (like underscores)
c595cc5f
MR
11504at places they belong to.
11505
11506\(fn &optional ARG)" t nil)
2cb750ba
GM
11507
11508;;;***
11509\f
93548d2e 11510;;;### (autoloads (gnus gnus-other-frame gnus-slave gnus-no-server
a5805c9d 11511;;;;;; gnus-slave-no-server) "gnus" "gnus/gnus.el" (17319 2463))
93548d2e
DL
11512;;; Generated autoloads from gnus/gnus.el
11513
11514(autoload (quote gnus-slave-no-server) "gnus" "\
390069bc 11515Read network news as a slave, without connecting to the local server.
c595cc5f
MR
11516
11517\(fn &optional ARG)" t nil)
93548d2e
DL
11518
11519(autoload (quote gnus-no-server) "gnus" "\
11520Read network news.
390069bc
AS
11521If ARG is a positive number, Gnus will use that as the startup
11522level. If ARG is nil, Gnus will be started at level 2. If ARG is
11523non-nil and not a positive number, Gnus will prompt the user for the
11524name of an NNTP server to use.
11525As opposed to `gnus', this command will not connect to the local
11526server.
c595cc5f
MR
11527
11528\(fn &optional ARG SLAVE)" t nil)
93548d2e
DL
11529
11530(autoload (quote gnus-slave) "gnus" "\
c595cc5f
MR
11531Read news as a slave.
11532
11533\(fn &optional ARG)" t nil)
93548d2e
DL
11534
11535(autoload (quote gnus-other-frame) "gnus" "\
c595cc5f 11536Pop up a frame to read news.
390069bc
AS
11537This will call one of the Gnus commands which is specified by the user
11538option `gnus-other-frame-function' (default `gnus') with the argument
11539ARG if Gnus is not running, otherwise just pop up a Gnus frame. The
11540optional second argument DISPLAY should be a standard display string
11541such as \"unix:0\" to specify where to pop up a frame. If DISPLAY is
11542omitted or the function `make-frame-on-display' is not available, the
11543current display is used.
c595cc5f 11544
390069bc 11545\(fn &optional ARG DISPLAY)" t nil)
93548d2e
DL
11546
11547(autoload (quote gnus) "gnus" "\
11548Read network news.
11549If ARG is non-nil and a positive number, Gnus will use that as the
390069bc 11550startup level. If ARG is non-nil and not a positive number, Gnus will
c595cc5f
MR
11551prompt the user for the name of an NNTP server to use.
11552
11553\(fn &optional ARG DONT-CONNECT SLAVE)" t nil)
93548d2e
DL
11554
11555;;;***
11556\f
390069bc
AS
11557;;;### (autoloads (gnus-agent-regenerate gnus-agent-batch gnus-agent-batch-fetch
11558;;;;;; gnus-agent-find-parameter gnus-agent-possibly-alter-active
11559;;;;;; gnus-agent-get-undownloaded-list gnus-agent-delete-group
11560;;;;;; gnus-agent-rename-group gnus-agent-possibly-save-gcc gnus-agentize
11561;;;;;; gnus-slave-unplugged gnus-plugged gnus-unplugged) "gnus-agent"
a5805c9d 11562;;;;;; "gnus/gnus-agent.el" (17319 2463))
93548d2e
DL
11563;;; Generated autoloads from gnus/gnus-agent.el
11564
11565(autoload (quote gnus-unplugged) "gnus-agent" "\
c595cc5f
MR
11566Start Gnus unplugged.
11567
11568\(fn)" t nil)
93548d2e
DL
11569
11570(autoload (quote gnus-plugged) "gnus-agent" "\
c595cc5f
MR
11571Start Gnus plugged.
11572
11573\(fn)" t nil)
93548d2e 11574
390069bc
AS
11575(autoload (quote gnus-slave-unplugged) "gnus-agent" "\
11576Read news as a slave unplugged.
11577
11578\(fn &optional ARG)" t nil)
11579
93548d2e
DL
11580(autoload (quote gnus-agentize) "gnus-agent" "\
11581Allow Gnus to be an offline newsreader.
93548d2e 11582
390069bc
AS
11583The gnus-agentize function is now called internally by gnus when
11584gnus-agent is set. If you wish to avoid calling gnus-agentize,
11585customize gnus-agent to nil.
93548d2e 11586
390069bc
AS
11587This will modify the `gnus-setup-news-hook', and
11588`message-send-mail-real-function' variables, and install the Gnus agent
11589minor mode in all Gnus buffers.
c595cc5f
MR
11590
11591\(fn)" t nil)
93548d2e 11592
390069bc
AS
11593(autoload (quote gnus-agent-possibly-save-gcc) "gnus-agent" "\
11594Save GCC if Gnus is unplugged.
11595
11596\(fn)" nil nil)
11597
11598(autoload (quote gnus-agent-rename-group) "gnus-agent" "\
c1a055ca
EZ
11599Rename fully-qualified OLD-GROUP as NEW-GROUP.
11600Always updates the agent, even when disabled, as the old agent
11601files would corrupt gnus when the agent was next enabled.
11602Depends upon the caller to determine whether group renaming is
11603supported.
390069bc
AS
11604
11605\(fn OLD-GROUP NEW-GROUP)" nil nil)
11606
11607(autoload (quote gnus-agent-delete-group) "gnus-agent" "\
c1a055ca
EZ
11608Delete fully-qualified GROUP.
11609Always updates the agent, even when disabled, as the old agent
11610files would corrupt gnus when the agent was next enabled.
11611Depends upon the caller to determine whether group deletion is
11612supported.
390069bc
AS
11613
11614\(fn GROUP)" nil nil)
11615
11616(autoload (quote gnus-agent-get-undownloaded-list) "gnus-agent" "\
11617Construct list of articles that have not been downloaded.
11618
11619\(fn)" nil nil)
11620
11621(autoload (quote gnus-agent-possibly-alter-active) "gnus-agent" "\
11622Possibly expand a group's active range to include articles
11623downloaded into the agent.
11624
11625\(fn GROUP ACTIVE &optional INFO)" nil nil)
11626
11627(autoload (quote gnus-agent-find-parameter) "gnus-agent" "\
11628Search for GROUPs SYMBOL in the group's parameters, the group's
11629topic parameters, the group's category, or the customizable
11630variables. Returns the first non-nil value found.
11631
11632\(fn GROUP SYMBOL)" nil nil)
11633
93548d2e 11634(autoload (quote gnus-agent-batch-fetch) "gnus-agent" "\
c595cc5f
MR
11635Start Gnus and fetch session.
11636
11637\(fn)" t nil)
93548d2e 11638
c595cc5f 11639(autoload (quote gnus-agent-batch) "gnus-agent" "\
390069bc 11640Start Gnus, send queue and fetch session.
c595cc5f
MR
11641
11642\(fn)" t nil)
93548d2e 11643
390069bc
AS
11644(autoload (quote gnus-agent-regenerate) "gnus-agent" "\
11645Regenerate all agent covered files.
11646If CLEAN, obsolete (ignore).
11647
11648\(fn &optional CLEAN REREAD)" t nil)
11649
93548d2e
DL
11650;;;***
11651\f
b442e70a 11652;;;### (autoloads (gnus-article-prepare-display) "gnus-art" "gnus/gnus-art.el"
a5805c9d 11653;;;;;; (17374 21536))
b442e70a
MB
11654;;; Generated autoloads from gnus/gnus-art.el
11655
11656(autoload (quote gnus-article-prepare-display) "gnus-art" "\
c595cc5f
MR
11657Make the current buffer look like a nice article.
11658
11659\(fn)" nil nil)
b442e70a
MB
11660
11661;;;***
11662\f
93548d2e 11663;;;### (autoloads (gnus-audio-play) "gnus-audio" "gnus/gnus-audio.el"
a5805c9d 11664;;;;;; (17279 27122))
93548d2e
DL
11665;;; Generated autoloads from gnus/gnus-audio.el
11666
11667(autoload (quote gnus-audio-play) "gnus-audio" "\
c595cc5f
MR
11668Play a sound FILE through the speaker.
11669
11670\(fn FILE)" t nil)
93548d2e
DL
11671
11672;;;***
11673\f
390069bc
AS
11674;;;### (autoloads (gnus-cache-delete-group gnus-cache-rename-group
11675;;;;;; gnus-cache-generate-nov-databases gnus-cache-generate-active
a5805c9d
KL
11676;;;;;; gnus-jog-cache) "gnus-cache" "gnus/gnus-cache.el" (17308
11677;;;;;; 43142))
93548d2e
DL
11678;;; Generated autoloads from gnus/gnus-cache.el
11679
11680(autoload (quote gnus-jog-cache) "gnus-cache" "\
11681Go through all groups and put the articles into the cache.
11682
11683Usage:
c595cc5f
MR
11684$ emacs -batch -l ~/.emacs -l gnus -f gnus-jog-cache
11685
11686\(fn)" t nil)
93548d2e
DL
11687
11688(autoload (quote gnus-cache-generate-active) "gnus-cache" "\
c595cc5f
MR
11689Generate the cache active file.
11690
11691\(fn &optional DIRECTORY)" t nil)
93548d2e
DL
11692
11693(autoload (quote gnus-cache-generate-nov-databases) "gnus-cache" "\
c595cc5f
MR
11694Generate NOV files recursively starting in DIR.
11695
11696\(fn DIR)" t nil)
93548d2e 11697
390069bc 11698(autoload (quote gnus-cache-rename-group) "gnus-cache" "\
c1a055ca
EZ
11699Rename OLD-GROUP as NEW-GROUP.
11700Always updates the cache, even when disabled, as the old cache
11701files would corrupt Gnus when the cache was next enabled. It
11702depends on the caller to determine whether group renaming is
11703supported.
390069bc
AS
11704
11705\(fn OLD-GROUP NEW-GROUP)" nil nil)
11706
11707(autoload (quote gnus-cache-delete-group) "gnus-cache" "\
c1a055ca
EZ
11708Delete GROUP from the cache.
11709Always updates the cache, even when disabled, as the old cache
11710files would corrupt gnus when the cache was next enabled.
11711Depends upon the caller to determine whether group deletion is
11712supported.
390069bc
AS
11713
11714\(fn GROUP)" nil nil)
11715
11716;;;***
11717\f
11718;;;### (autoloads (gnus-delay-initialize gnus-delay-send-queue gnus-delay-article)
a5805c9d 11719;;;;;; "gnus-delay" "gnus/gnus-delay.el" (17297 42917))
390069bc
AS
11720;;; Generated autoloads from gnus/gnus-delay.el
11721
390069bc
AS
11722(autoload (quote gnus-delay-article) "gnus-delay" "\
11723Delay this article by some time.
11724DELAY is a string, giving the length of the time. Possible values are:
11725
11726* <digits><units> for <units> in minutes (`m'), hours (`h'), days (`d'),
11727 weeks (`w'), months (`M'), or years (`Y');
11728
11729* YYYY-MM-DD for a specific date. The time of day is given by the
11730 variable `gnus-delay-default-hour', minute and second are zero.
11731
11732* hh:mm for a specific time. Use 24h format. If it is later than this
11733 time, then the deadline is tomorrow, else today.
11734
11735\(fn DELAY)" t nil)
11736
11737(autoload (quote gnus-delay-send-queue) "gnus-delay" "\
11738Send all the delayed messages that are due now.
11739
11740\(fn)" t nil)
11741
11742(autoload (quote gnus-delay-initialize) "gnus-delay" "\
11743Initialize the gnus-delay package.
11744This sets up a key binding in `message-mode' to delay a message.
11745This tells Gnus to look for delayed messages after getting new news.
11746
11747The optional arg NO-KEYMAP is ignored.
11748Checking delayed messages is skipped if optional arg NO-CHECK is non-nil.
11749
11750\(fn &optional NO-KEYMAP NO-CHECK)" nil nil)
11751
11752;;;***
11753\f
11754;;;### (autoloads (turn-on-gnus-dired-mode) "gnus-dired" "gnus/gnus-dired.el"
a5805c9d 11755;;;;;; (17279 27122))
390069bc
AS
11756;;; Generated autoloads from gnus/gnus-dired.el
11757
11758(autoload (quote turn-on-gnus-dired-mode) "gnus-dired" "\
11759Convenience method to turn on gnus-dired-mode.
11760
11761\(fn)" nil nil)
11762
11763;;;***
11764\f
11765;;;### (autoloads (gnus-draft-reminder) "gnus-draft" "gnus/gnus-draft.el"
a5805c9d 11766;;;;;; (17279 27122))
390069bc
AS
11767;;; Generated autoloads from gnus/gnus-draft.el
11768
11769(autoload (quote gnus-draft-reminder) "gnus-draft" "\
11770Reminder user if there are unsent drafts.
11771
11772\(fn)" t nil)
11773
11774;;;***
11775\f
11776;;;### (autoloads (gnus-convert-png-to-face gnus-convert-face-to-png
11777;;;;;; gnus-face-from-file gnus-x-face-from-file gnus-insert-random-x-face-header
a5805c9d
KL
11778;;;;;; gnus-random-x-face) "gnus-fun" "gnus/gnus-fun.el" (17279
11779;;;;;; 27150))
390069bc
AS
11780;;; Generated autoloads from gnus/gnus-fun.el
11781
11782(autoload (quote gnus-random-x-face) "gnus-fun" "\
11783Return X-Face header data chosen randomly from `gnus-x-face-directory'.
11784
11785\(fn)" t nil)
11786
11787(autoload (quote gnus-insert-random-x-face-header) "gnus-fun" "\
11788Insert a random X-Face header from `gnus-x-face-directory'.
11789
11790\(fn)" t nil)
11791
11792(autoload (quote gnus-x-face-from-file) "gnus-fun" "\
11793Insert an X-Face header based on an image file.
11794
11795\(fn FILE)" t nil)
11796
11797(autoload (quote gnus-face-from-file) "gnus-fun" "\
175a97e4 11798Return a Face header based on an image file.
390069bc
AS
11799
11800\(fn FILE)" t nil)
11801
11802(autoload (quote gnus-convert-face-to-png) "gnus-fun" "\
11803Convert FACE (which is base64-encoded) to a PNG.
11804The PNG is returned as a string.
11805
11806\(fn FACE)" nil nil)
11807
11808(autoload (quote gnus-convert-png-to-face) "gnus-fun" "\
11809Convert FILE to a Face.
11810FILE should be a PNG file that's 48x48 and smaller than or equal to
11811726 bytes.
11812
11813\(fn FILE)" nil nil)
11814
93548d2e
DL
11815;;;***
11816\f
11817;;;### (autoloads (gnus-fetch-group-other-frame gnus-fetch-group)
a5805c9d 11818;;;;;; "gnus-group" "gnus/gnus-group.el" (17357 6512))
93548d2e
DL
11819;;; Generated autoloads from gnus/gnus-group.el
11820
11821(autoload (quote gnus-fetch-group) "gnus-group" "\
11822Start Gnus if necessary and enter GROUP.
c595cc5f
MR
11823Returns whether the fetching was successful or not.
11824
390069bc 11825\(fn GROUP &optional ARTICLES)" t nil)
93548d2e
DL
11826
11827(autoload (quote gnus-fetch-group-other-frame) "gnus-group" "\
c595cc5f
MR
11828Pop up a frame and enter GROUP.
11829
11830\(fn GROUP)" t nil)
93548d2e
DL
11831
11832;;;***
11833\f
11834;;;### (autoloads (gnus-batch-score) "gnus-kill" "gnus/gnus-kill.el"
a5805c9d 11835;;;;;; (17279 27122))
93548d2e
DL
11836;;; Generated autoloads from gnus/gnus-kill.el
11837
11838(defalias (quote gnus-batch-kill) (quote gnus-batch-score))
11839
11840(autoload (quote gnus-batch-score) "gnus-kill" "\
11841Run batched scoring.
c595cc5f
MR
11842Usage: emacs -batch -l ~/.emacs -l gnus -f gnus-batch-score
11843
11844\(fn)" t nil)
93548d2e
DL
11845
11846;;;***
11847\f
390069bc
AS
11848;;;### (autoloads (gnus-mailing-list-mode gnus-mailing-list-insinuate
11849;;;;;; turn-on-gnus-mailing-list-mode) "gnus-ml" "gnus/gnus-ml.el"
a5805c9d 11850;;;;;; (17279 27122))
bd02b8e0
GM
11851;;; Generated autoloads from gnus/gnus-ml.el
11852
c595cc5f
MR
11853(autoload (quote turn-on-gnus-mailing-list-mode) "gnus-ml" "\
11854Not documented
11855
11856\(fn)" nil nil)
bd02b8e0 11857
390069bc
AS
11858(autoload (quote gnus-mailing-list-insinuate) "gnus-ml" "\
11859Setup group parameters from List-Post header.
11860If FORCE is non-nil, replace the old ones.
11861
11862\(fn &optional FORCE)" t nil)
11863
bd02b8e0
GM
11864(autoload (quote gnus-mailing-list-mode) "gnus-ml" "\
11865Minor mode for providing mailing-list commands.
11866
c595cc5f
MR
11867\\{gnus-mailing-list-mode-map}
11868
11869\(fn &optional ARG)" t nil)
bd02b8e0
GM
11870
11871;;;***
11872\f
b442e70a
MB
11873;;;### (autoloads (gnus-group-split-fancy gnus-group-split gnus-group-split-update
11874;;;;;; gnus-group-split-setup) "gnus-mlspl" "gnus/gnus-mlspl.el"
a5805c9d 11875;;;;;; (17279 27122))
b442e70a
MB
11876;;; Generated autoloads from gnus/gnus-mlspl.el
11877
11878(autoload (quote gnus-group-split-setup) "gnus-mlspl" "\
11879Set up the split for nnmail-split-fancy.
11880Sets things up so that nnmail-split-fancy is used for mail
11881splitting, and defines the variable nnmail-split-fancy according with
11882group parameters.
11883
11884If AUTO-UPDATE is non-nil (prefix argument accepted, if called
11885interactively), it makes sure nnmail-split-fancy is re-computed before
11886getting new mail, by adding gnus-group-split-update to
6c083b4c
GM
11887nnmail-pre-get-new-mail-hook.
11888
11889A non-nil CATCH-ALL replaces the current value of
11890gnus-group-split-default-catch-all-group. This variable is only used
11891by gnus-group-split-update, and only when its CATCH-ALL argument is
11892nil. This argument may contain any fancy split, that will be added as
11893the last split in a `|' split produced by gnus-group-split-fancy,
11894unless overridden by any group marked as a catch-all group. Typical
11895uses are as simple as the name of a default mail group, but more
11896elaborate fancy splits may also be useful to split mail that doesn't
11897match any of the group-specified splitting rules. See
390069bc 11898`gnus-group-split-fancy' for details.
c595cc5f
MR
11899
11900\(fn &optional AUTO-UPDATE CATCH-ALL)" t nil)
b442e70a
MB
11901
11902(autoload (quote gnus-group-split-update) "gnus-mlspl" "\
390069bc
AS
11903Computes nnmail-split-fancy from group params and CATCH-ALL.
11904It does this by calling by calling (gnus-group-split-fancy nil
11905nil CATCH-ALL).
6c083b4c
GM
11906
11907If CATCH-ALL is nil, gnus-group-split-default-catch-all-group is used
c595cc5f
MR
11908instead. This variable is set by gnus-group-split-setup.
11909
11910\(fn &optional CATCH-ALL)" t nil)
b442e70a
MB
11911
11912(autoload (quote gnus-group-split) "gnus-mlspl" "\
11913Uses information from group parameters in order to split mail.
390069bc 11914See `gnus-group-split-fancy' for more information.
b442e70a 11915
c595cc5f
MR
11916gnus-group-split is a valid value for nnmail-split-methods.
11917
11918\(fn)" nil nil)
b442e70a
MB
11919
11920(autoload (quote gnus-group-split-fancy) "gnus-mlspl" "\
8d8d8d4e
EZ
11921Uses information from group parameters in order to split mail.
11922It can be embedded into `nnmail-split-fancy' lists with the SPLIT
b442e70a
MB
11923
11924\(: gnus-group-split-fancy GROUPS NO-CROSSPOST CATCH-ALL)
11925
11926GROUPS may be a regular expression or a list of group names, that will
ac42d7b9 11927be used to select candidate groups. If it is omitted or nil, all
b442e70a
MB
11928existing groups are considered.
11929
ac42d7b9 11930if NO-CROSSPOST is omitted or nil, a & split will be returned,
b442e70a
MB
11931otherwise, a | split, that does not allow crossposting, will be
11932returned.
11933
b442e70a
MB
11934For each selected group, a SPLIT is composed like this: if SPLIT-SPEC
11935is specified, this split is returned as-is (unless it is nil: in this
11936case, the group is ignored). Otherwise, if TO-ADDRESS, TO-LIST and/or
11937EXTRA-ALIASES are specified, a regexp that matches any of them is
11938constructed (extra-aliases may be a list). Additionally, if
11939SPLIT-REGEXP is specified, the regexp will be extended so that it
11940matches this regexp too, and if SPLIT-EXCLUDE is specified, RESTRICT
11941clauses will be generated.
11942
6c083b4c
GM
11943If CATCH-ALL is nil, no catch-all handling is performed, regardless of
11944catch-all marks in group parameters. Otherwise, if there is no
11945selected group whose SPLIT-REGEXP matches the empty string, nor is
11946there a selected group whose SPLIT-SPEC is 'catch-all, this fancy
11947split (say, a group name) will be appended to the returned SPLIT list,
11948as the last element of a '| SPLIT.
11949
b442e70a
MB
11950For example, given the following group parameters:
11951
11952nnml:mail.bar:
11953\((to-address . \"bar@femail.com\")
11954 (split-regexp . \".*@femail\\\\.com\"))
11955nnml:mail.foo:
11956\((to-list . \"foo@nowhere.gov\")
11957 (extra-aliases \"foo@localhost\" \"foo-redist@home\")
11958 (split-exclude \"bugs-foo\" \"rambling-foo\")
11959 (admin-address . \"foo-request@nowhere.gov\"))
11960nnml:mail.others:
11961\((split-spec . catch-all))
11962
390069bc 11963Calling (gnus-group-split-fancy nil nil \"mail.others\") returns:
b442e70a
MB
11964
11965\(| (& (any \"\\\\(bar@femail\\\\.com\\\\|.*@femail\\\\.com\\\\)\"
11966 \"mail.bar\")
11967 (any \"\\\\(foo@nowhere\\\\.gov\\\\|foo@localhost\\\\|foo-redist@home\\\\)\"
390069bc 11968 - \"bugs-foo\" - \"rambling-foo\" \"mail.foo\"))
c595cc5f
MR
11969 \"mail.others\")
11970
11971\(fn &optional GROUPS NO-CROSSPOST CATCH-ALL)" nil nil)
b442e70a
MB
11972
11973;;;***
11974\f
93548d2e 11975;;;### (autoloads (gnus-change-server) "gnus-move" "gnus/gnus-move.el"
a5805c9d 11976;;;;;; (17279 27122))
93548d2e
DL
11977;;; Generated autoloads from gnus/gnus-move.el
11978
11979(autoload (quote gnus-change-server) "gnus-move" "\
11980Move from FROM-SERVER to TO-SERVER.
c595cc5f
MR
11981Update the .newsrc.eld file to reflect the change of nntp server.
11982
11983\(fn FROM-SERVER TO-SERVER)" t nil)
93548d2e
DL
11984
11985;;;***
11986\f
390069bc 11987;;;### (autoloads (gnus-button-reply gnus-button-mailto gnus-msg-mail)
a5805c9d 11988;;;;;; "gnus-msg" "gnus/gnus-msg.el" (17350 14841))
b442e70a 11989;;; Generated autoloads from gnus/gnus-msg.el
93548d2e 11990
b442e70a
MB
11991(autoload (quote gnus-msg-mail) "gnus-msg" "\
11992Start editing a mail message to be sent.
11993Like `message-mail', but with Gnus paraphernalia, particularly the
c595cc5f
MR
11994Gcc: header for archiving purposes.
11995
390069bc
AS
11996\(fn &optional TO SUBJECT OTHER-HEADERS CONTINUE SWITCH-ACTION YANK-ACTION SEND-ACTIONS)" t nil)
11997
11998(autoload (quote gnus-button-mailto) "gnus-msg" "\
11999Mail to ADDRESS.
12000
12001\(fn ADDRESS)" nil nil)
12002
12003(autoload (quote gnus-button-reply) "gnus-msg" "\
12004Like `message-reply'.
12005
12006\(fn &optional TO-ADDRESS WIDE)" t nil)
ac95a621
GM
12007
12008(define-mail-user-agent (quote gnus-user-agent) (quote gnus-msg-mail) (quote message-send-and-exit) (quote message-kill-buffer) (quote message-send-hook))
93548d2e 12009
93548d2e
DL
12010;;;***
12011\f
390069bc
AS
12012;;;### (autoloads (gnus-treat-newsgroups-picon gnus-treat-mail-picon
12013;;;;;; gnus-treat-from-picon) "gnus-picon" "gnus/gnus-picon.el"
a5805c9d 12014;;;;;; (17279 27122))
390069bc
AS
12015;;; Generated autoloads from gnus/gnus-picon.el
12016
12017(autoload (quote gnus-treat-from-picon) "gnus-picon" "\
12018Display picons in the From header.
12019If picons are already displayed, remove them.
12020
12021\(fn)" t nil)
12022
12023(autoload (quote gnus-treat-mail-picon) "gnus-picon" "\
12024Display picons in the Cc and To headers.
12025If picons are already displayed, remove them.
12026
12027\(fn)" t nil)
12028
12029(autoload (quote gnus-treat-newsgroups-picon) "gnus-picon" "\
12030Display picons in the Newsgroups and Followup-To headers.
12031If picons are already displayed, remove them.
12032
12033\(fn)" t nil)
12034
12035;;;***
12036\f
12037;;;### (autoloads (gnus-add-to-sorted-list gnus-sorted-nunion gnus-sorted-union
12038;;;;;; gnus-sorted-nintersection gnus-sorted-range-intersection
12039;;;;;; gnus-sorted-intersection gnus-intersection gnus-sorted-complement
12040;;;;;; gnus-sorted-ndifference gnus-sorted-difference) "gnus-range"
a5805c9d 12041;;;;;; "gnus/gnus-range.el" (17279 27122))
390069bc
AS
12042;;; Generated autoloads from gnus/gnus-range.el
12043
12044(autoload (quote gnus-sorted-difference) "gnus-range" "\
12045Return a list of elements of LIST1 that do not appear in LIST2.
12046Both lists have to be sorted over <.
12047The tail of LIST1 is not copied.
12048
12049\(fn LIST1 LIST2)" nil nil)
12050
12051(autoload (quote gnus-sorted-ndifference) "gnus-range" "\
12052Return a list of elements of LIST1 that do not appear in LIST2.
12053Both lists have to be sorted over <.
12054LIST1 is modified.
12055
12056\(fn LIST1 LIST2)" nil nil)
12057
12058(autoload (quote gnus-sorted-complement) "gnus-range" "\
12059Return a list of elements that are in LIST1 or LIST2 but not both.
12060Both lists have to be sorted over <.
12061
12062\(fn LIST1 LIST2)" nil nil)
12063
12064(autoload (quote gnus-intersection) "gnus-range" "\
12065Not documented
12066
12067\(fn LIST1 LIST2)" nil nil)
12068
12069(autoload (quote gnus-sorted-intersection) "gnus-range" "\
12070Return intersection of LIST1 and LIST2.
12071LIST1 and LIST2 have to be sorted over <.
12072
12073\(fn LIST1 LIST2)" nil nil)
12074
12075(autoload (quote gnus-sorted-range-intersection) "gnus-range" "\
12076Return intersection of RANGE1 and RANGE2.
12077RANGE1 and RANGE2 have to be sorted over <.
12078
12079\(fn RANGE1 RANGE2)" nil nil)
12080
12081(defalias (quote gnus-set-sorted-intersection) (quote gnus-sorted-nintersection))
12082
12083(autoload (quote gnus-sorted-nintersection) "gnus-range" "\
12084Return intersection of LIST1 and LIST2 by modifying cdr pointers of LIST1.
12085LIST1 and LIST2 have to be sorted over <.
12086
12087\(fn LIST1 LIST2)" nil nil)
12088
12089(autoload (quote gnus-sorted-union) "gnus-range" "\
12090Return union of LIST1 and LIST2.
12091LIST1 and LIST2 have to be sorted over <.
12092
12093\(fn LIST1 LIST2)" nil nil)
12094
12095(autoload (quote gnus-sorted-nunion) "gnus-range" "\
12096Return union of LIST1 and LIST2 by modifying cdr pointers of LIST1.
12097LIST1 and LIST2 have to be sorted over <.
12098
12099\(fn LIST1 LIST2)" nil nil)
12100
12101(autoload (quote gnus-add-to-sorted-list) "gnus-range" "\
12102Add NUM into sorted LIST by side effect.
12103
12104\(fn LIST NUM)" nil nil)
12105
12106;;;***
12107\f
12108;;;### (autoloads (gnus-registry-install-hooks gnus-registry-initialize)
a5805c9d 12109;;;;;; "gnus-registry" "gnus/gnus-registry.el" (17279 27122))
390069bc
AS
12110;;; Generated autoloads from gnus/gnus-registry.el
12111
12112(autoload (quote gnus-registry-initialize) "gnus-registry" "\
12113Not documented
12114
12115\(fn)" t nil)
12116
12117(autoload (quote gnus-registry-install-hooks) "gnus-registry" "\
12118Install the registry hooks.
12119
12120\(fn)" t nil)
12121
12122;;;***
12123\f
12124;;;### (autoloads (gnus-sieve-article-add-rule gnus-sieve-generate
a5805c9d
KL
12125;;;;;; gnus-sieve-update) "gnus-sieve" "gnus/gnus-sieve.el" (17279
12126;;;;;; 27122))
390069bc
AS
12127;;; Generated autoloads from gnus/gnus-sieve.el
12128
12129(autoload (quote gnus-sieve-update) "gnus-sieve" "\
12130Update the Sieve script in gnus-sieve-file, by replacing the region
12131between gnus-sieve-region-start and gnus-sieve-region-end with
12132\(gnus-sieve-script gnus-sieve-select-method gnus-sieve-crosspost), then
12133execute gnus-sieve-update-shell-command.
12134See the documentation for these variables and functions for details.
12135
12136\(fn)" t nil)
0ad84a21 12137
390069bc
AS
12138(autoload (quote gnus-sieve-generate) "gnus-sieve" "\
12139Generate the Sieve script in gnus-sieve-file, by replacing the region
12140between gnus-sieve-region-start and gnus-sieve-region-end with
12141\(gnus-sieve-script gnus-sieve-select-method gnus-sieve-crosspost).
12142See the documentation for these variables and functions for details.
0ad84a21 12143
390069bc
AS
12144\(fn)" t nil)
12145
12146(autoload (quote gnus-sieve-article-add-rule) "gnus-sieve" "\
12147Not documented
c595cc5f 12148
390069bc 12149\(fn)" t nil)
0ad84a21
MB
12150
12151;;;***
12152\f
93548d2e 12153;;;### (autoloads (gnus-batch-brew-soup) "gnus-soup" "gnus/gnus-soup.el"
a5805c9d 12154;;;;;; (17279 27122))
93548d2e
DL
12155;;; Generated autoloads from gnus/gnus-soup.el
12156
12157(autoload (quote gnus-batch-brew-soup) "gnus-soup" "\
12158Brew a SOUP packet from groups mention on the command line.
12159Will use the remaining command line arguments as regular expressions
12160for matching on group names.
12161
12162For instance, if you want to brew on all the nnml groups, as well as
12163groups with \"emacs\" in the name, you could say something like:
12164
12165$ emacs -batch -f gnus-batch-brew-soup ^nnml \".*emacs.*\"
12166
c595cc5f
MR
12167Note -- this function hasn't been implemented yet.
12168
12169\(fn)" t nil)
93548d2e
DL
12170
12171;;;***
12172\f
12173;;;### (autoloads (gnus-update-format) "gnus-spec" "gnus/gnus-spec.el"
a5805c9d 12174;;;;;; (17279 27122))
93548d2e
DL
12175;;; Generated autoloads from gnus/gnus-spec.el
12176
12177(autoload (quote gnus-update-format) "gnus-spec" "\
c595cc5f
MR
12178Update the format specification near point.
12179
12180\(fn VAR)" t nil)
93548d2e
DL
12181
12182;;;***
12183\f
390069bc 12184;;;### (autoloads (gnus-fixup-nnimap-unread-after-getting-new-news
a5805c9d
KL
12185;;;;;; gnus-declare-backend) "gnus-start" "gnus/gnus-start.el" (17357
12186;;;;;; 6512))
93548d2e
DL
12187;;; Generated autoloads from gnus/gnus-start.el
12188
93548d2e 12189(autoload (quote gnus-declare-backend) "gnus-start" "\
390069bc 12190Declare back end NAME with ABILITIES as a Gnus back end.
c595cc5f
MR
12191
12192\(fn NAME &rest ABILITIES)" nil nil)
93548d2e 12193
390069bc
AS
12194(autoload (quote gnus-fixup-nnimap-unread-after-getting-new-news) "gnus-start" "\
12195Not documented
12196
12197\(fn)" nil nil)
12198
93548d2e
DL
12199;;;***
12200\f
12201;;;### (autoloads (gnus-add-configuration) "gnus-win" "gnus/gnus-win.el"
a5805c9d 12202;;;;;; (17279 27122))
93548d2e
DL
12203;;; Generated autoloads from gnus/gnus-win.el
12204
12205(autoload (quote gnus-add-configuration) "gnus-win" "\
c595cc5f
MR
12206Add the window configuration CONF to `gnus-buffer-configuration'.
12207
12208\(fn CONF)" nil nil)
93548d2e
DL
12209
12210;;;***
12211\f
a5805c9d 12212;;;### (autoloads (gomoku) "gomoku" "play/gomoku.el" (17279 27172))
93548d2e
DL
12213;;; Generated autoloads from play/gomoku.el
12214
12215(autoload (quote gomoku) "gomoku" "\
12216Start a Gomoku game between you and Emacs.
8d8d8d4e 12217
93548d2e
DL
12218If a game is in progress, this command allow you to resume it.
12219If optional arguments N and M are given, an N by M board is used.
12220If prefix arg is given for N, M is prompted for.
12221
12222You and Emacs play in turn by marking a free square. You mark it with X
12223and Emacs marks it with O. The winner is the first to get five contiguous
12224marks horizontally, vertically or in diagonal.
12225
12226You play by moving the cursor over the square you choose and hitting
12227\\<gomoku-mode-map>\\[gomoku-human-plays].
8d8d8d4e
EZ
12228
12229This program actually plays a simplified or archaic version of the
12230Gomoku game, and ought to be upgraded to use the full modern rules.
12231
c595cc5f
MR
12232Use \\[describe-mode] for more info.
12233
12234\(fn &optional N M)" t nil)
93548d2e
DL
12235
12236;;;***
12237\f
d66d64bc 12238;;;### (autoloads (goto-address goto-address-at-point) "goto-addr"
a5805c9d 12239;;;;;; "net/goto-addr.el" (17337 56255))
a25bbe00 12240;;; Generated autoloads from net/goto-addr.el
93548d2e 12241
d66d64bc 12242(define-obsolete-function-alias (quote goto-address-at-mouse) (quote goto-address-at-point) "22.1")
93548d2e
DL
12243
12244(autoload (quote goto-address-at-point) "goto-addr" "\
12245Send to the e-mail address or load the URL at point.
12246Send mail to address at point. See documentation for
12247`goto-address-find-address-at-point'. If no address is found
c595cc5f
MR
12248there, then load the URL at or before point.
12249
d66d64bc 12250\(fn &optional EVENT)" t nil)
93548d2e
DL
12251
12252(autoload (quote goto-address) "goto-addr" "\
12253Sets up goto-address functionality in the current buffer.
12254Allows user to use mouse/keyboard command to click to go to a URL
12255or to send e-mail.
c1a055ca
EZ
12256By default, goto-address binds `goto-address-at-point' to mouse-2 and C-c RET
12257only on URLs and e-mail addresses.
93548d2e
DL
12258
12259Also fontifies the buffer appropriately (see `goto-address-fontify-p' and
c595cc5f
MR
12260`goto-address-highlight-p' for more information).
12261
12262\(fn)" t nil)
93548d2e
DL
12263
12264;;;***
12265\f
0ef3cc90 12266;;;### (autoloads (grep-tree grep-find grep-mode grep grep-compute-defaults
390069bc 12267;;;;;; grep-process-setup grep-setup-hook grep-find-command grep-command
a5805c9d 12268;;;;;; grep-window-height) "grep" "progmodes/grep.el" (17279 27123))
390069bc 12269;;; Generated autoloads from progmodes/grep.el
93548d2e 12270
390069bc
AS
12271(defvar grep-window-height nil "\
12272*Number of lines in a grep window. If nil, use `compilation-window-height'.")
c595cc5f 12273
390069bc 12274(custom-autoload (quote grep-window-height) "grep")
93548d2e 12275
390069bc
AS
12276(defvar grep-command nil "\
12277The default grep command for \\[grep].
12278If the grep program used supports an option to always include file names
12279in its output (such as the `-H' option to GNU grep), it's a good idea to
12280include it when specifying `grep-command'.
93548d2e 12281
390069bc
AS
12282The default value of this variable is set up by `grep-compute-defaults';
12283call that function before using this variable in your program.")
c595cc5f 12284
390069bc 12285(custom-autoload (quote grep-command) "grep")
93548d2e 12286
390069bc
AS
12287(defvar grep-find-command nil "\
12288The default find command for \\[grep-find].
12289The default value of this variable is set up by `grep-compute-defaults';
12290call that function before using this variable in your program.")
c595cc5f 12291
390069bc 12292(custom-autoload (quote grep-find-command) "grep")
93548d2e 12293
390069bc
AS
12294(defvar grep-setup-hook nil "\
12295List of hook functions run by `grep-process-setup' (see `run-hooks').")
c595cc5f 12296
390069bc 12297(custom-autoload (quote grep-setup-hook) "grep")
93548d2e 12298
0ef3cc90 12299(defvar grep-regexp-alist (quote (("^\\(.+?\\)\\(:[ ]*\\)\\([0-9]+\\)\\2" 1 3) ("^\\(\\(.+?\\):\\([0-9]+\\):\\).*?\\(\e\\[01;31m\\(?:\e\\[K\\)?\\)\\(.*?\\)\\(\e\\[[0-9]*m\\)" 2 3 ((lambda nil (setq compilation-error-screen-columns nil) (- (match-beginning 4) (match-end 1))) lambda nil (- (match-end 5) (match-end 1) (- (match-end 4) (match-beginning 4)))) nil 1) ("^Binary file \\(.+\\) matches$" 1 nil nil 0 1))) "\
390069bc 12300Regexp used to match grep hits. See `compilation-error-regexp-alist'.")
93548d2e 12301
390069bc
AS
12302(defvar grep-program "grep" "\
12303The default grep program for `grep-command' and `grep-find-command'.
12304This variable's value takes effect when `grep-compute-defaults' is called.")
c595cc5f 12305
390069bc
AS
12306(defvar find-program "find" "\
12307The default find program for `grep-find-command'.
12308This variable's value takes effect when `grep-compute-defaults' is called.")
93548d2e 12309
390069bc
AS
12310(defvar grep-find-use-xargs nil "\
12311Whether \\[grep-find] uses the `xargs' utility by default.
12312
12313If nil, it uses `find -exec'; if `gnu', it uses `find -print0' and `xargs -0';
12314if not nil and not `gnu', it uses `find -print' and `xargs'.
12315
12316This variable's value takes effect when `grep-compute-defaults' is called.")
12317
12318(defvar grep-history nil)
12319
12320(defvar grep-find-history nil)
12321
12322(autoload (quote grep-process-setup) "grep" "\
12323Setup compilation variables and buffer for `grep'.
12324Set up `compilation-exit-message-function' and run `grep-setup-hook'.
12325
12326\(fn)" nil nil)
12327
12328(autoload (quote grep-compute-defaults) "grep" "\
12329Not documented
12330
12331\(fn)" nil nil)
12332
12333(autoload (quote grep) "grep" "\
12334Run grep, with user-specified args, and collect output in a buffer.
12335While grep runs asynchronously, you can use \\[next-error] (M-x next-error),
12336or \\<grep-mode-map>\\[compile-goto-error] in the grep output buffer, to go to the lines
12337where grep found matches.
12338
12339This command uses a special history list for its COMMAND-ARGS, so you can
12340easily repeat a grep command.
12341
12342A prefix argument says to default the argument based upon the current
12343tag the cursor is over, substituting it into the last grep command
12344in the grep command history (or into `grep-command'
12345if that history list is empty).
12346
12347If specified, optional second arg HIGHLIGHT-REGEXP is the regexp to
12348temporarily highlight in visited source lines.
12349
12350\(fn COMMAND-ARGS &optional HIGHLIGHT-REGEXP)" t nil)
12351
0ef3cc90
LT
12352(autoload (quote grep-mode) "grep" "\
12353Sets `grep-last-buffer' and `compilation-window-height'.
12354
12355\(fn)" nil nil)
12356
390069bc
AS
12357(autoload (quote grep-find) "grep" "\
12358Run grep via find, with user-specified args COMMAND-ARGS.
12359Collect output in a buffer.
12360While find runs asynchronously, you can use the \\[next-error] command
12361to find the text that grep hits refer to.
12362
12363This command uses a special history list for its arguments, so you can
12364easily repeat a find command.
12365
12366\(fn COMMAND-ARGS)" t nil)
12367
be65bdd3
AS
12368(defalias (quote find-grep) (quote grep-find))
12369
390069bc
AS
12370(autoload (quote grep-tree) "grep" "\
12371Grep for REGEXP in FILES in directory tree rooted at DIR.
12372Collect output in a buffer.
12373Interactively, prompt separately for each search parameter.
12374With prefix arg, reuse previous REGEXP.
12375The search is limited to file names matching shell pattern FILES.
12376FILES may use abbreviations defined in `grep-tree-files-aliases', e.g.
12377entering `ch' is equivalent to `*.[ch]'.
12378
12379While find runs asynchronously, you can use the \\[next-error] command
12380to find the text that grep hits refer to.
12381
12382This command uses a special history list for its arguments, so you can
12383easily repeat a find command.
12384
12385When used non-interactively, optional arg SUBDIRS limits the search to
12386those sub directories of DIR.
12387
12388\(fn REGEXP FILES DIR &optional SUBDIRS)" t nil)
12389
12390;;;***
12391\f
a5805c9d 12392;;;### (autoloads (gs-load-image) "gs" "gs.el" (17279 27123))
390069bc
AS
12393;;; Generated autoloads from gs.el
12394
12395(autoload (quote gs-load-image) "gs" "\
12396Load a PS image for display on FRAME.
12397SPEC is an image specification, IMG-HEIGHT and IMG-WIDTH are width
12398and height of the image in pixels. WINDOW-AND-PIXMAP-ID is a string of
12399the form \"WINDOW-ID PIXMAP-ID\". Value is non-nil if successful.
12400
12401\(fn FRAME SPEC IMG-WIDTH IMG-HEIGHT WINDOW-AND-PIXMAP-ID PIXEL-COLORS)" nil nil)
12402
12403;;;***
12404\f
0ef3cc90 12405;;;### (autoloads (gud-tooltip-mode gdb-script-mode bashdb jdb pdb
a5805c9d 12406;;;;;; perldb xdb dbx sdb gdb) "gud" "progmodes/gud.el" (17350 14833))
390069bc
AS
12407;;; Generated autoloads from progmodes/gud.el
12408
12409(autoload (quote gdb) "gud" "\
12410Run gdb on program FILE in buffer *gud-FILE*.
12411The directory containing FILE becomes the initial working directory
12412and source-file directory for your debugger.
12413
12414\(fn COMMAND-LINE)" t nil)
12415
12416(autoload (quote sdb) "gud" "\
12417Run sdb on program FILE in buffer *gud-FILE*.
12418The directory containing FILE becomes the initial working directory
12419and source-file directory for your debugger.
12420
12421\(fn COMMAND-LINE)" t nil)
12422
12423(autoload (quote dbx) "gud" "\
12424Run dbx on program FILE in buffer *gud-FILE*.
12425The directory containing FILE becomes the initial working directory
12426and source-file directory for your debugger.
12427
12428\(fn COMMAND-LINE)" t nil)
12429
12430(autoload (quote xdb) "gud" "\
12431Run xdb on program FILE in buffer *gud-FILE*.
12432The directory containing FILE becomes the initial working directory
12433and source-file directory for your debugger.
12434
d66d64bc 12435You can set the variable `gud-xdb-directories' to a list of program source
390069bc
AS
12436directories if your program contains sources from more than one directory.
12437
12438\(fn COMMAND-LINE)" t nil)
12439
12440(autoload (quote perldb) "gud" "\
12441Run perldb on program FILE in buffer *gud-FILE*.
12442The directory containing FILE becomes the initial working directory
12443and source-file directory for your debugger.
c595cc5f
MR
12444
12445\(fn COMMAND-LINE)" t nil)
93548d2e
DL
12446
12447(autoload (quote pdb) "gud" "\
12448Run pdb on program FILE in buffer `*gud-FILE*'.
12449The directory containing FILE becomes the initial working directory
c595cc5f
MR
12450and source-file directory for your debugger.
12451
12452\(fn COMMAND-LINE)" t nil)
93548d2e
DL
12453
12454(autoload (quote jdb) "gud" "\
4c6bc877
MR
12455Run jdb with command line COMMAND-LINE in a buffer.
12456The buffer is named \"*gud*\" if no initial class is given or
12457\"*gud-<initial-class-basename>*\" if there is. If the \"-classpath\"
12458switch is given, omit all whitespace between it and its value.
12459
12460See `gud-jdb-use-classpath' and `gud-jdb-classpath' documentation for
12461information on how jdb accesses source files. Alternatively (if
12462`gud-jdb-use-classpath' is nil), see `gud-jdb-directories' for the
12463original source file access method.
12464
12465For general information about commands available to control jdb from
c595cc5f
MR
12466gud, see `gud-mode'.
12467
ac42d7b9
KG
12468\(fn COMMAND-LINE)" t nil)
12469
12470(autoload (quote bashdb) "gud" "\
12471Run bashdb on program FILE in buffer *gud-FILE*.
12472The directory containing FILE becomes the initial working directory
12473and source-file directory for your debugger.
12474
c595cc5f 12475\(fn COMMAND-LINE)" t nil)
93548d2e
DL
12476 (add-hook 'same-window-regexps "\\*gud-.*\\*\\(\\|<[0-9]+>\\)")
12477
27a99a7c
GM
12478(add-to-list (quote auto-mode-alist) (quote ("/\\.gdbinit" . gdb-script-mode)))
12479
12480(autoload (quote gdb-script-mode) "gud" "\
12481Major mode for editing GDB scripts
12482
12483\(fn)" t nil)
12484
0ef3cc90
LT
12485(defvar gud-tooltip-mode nil "\
12486Non-nil if Gud-Tooltip mode is enabled.
12487See the command `gud-tooltip-mode' for a description of this minor-mode.
12488Setting this variable directly does not take effect;
12489use either \\[customize] or the function `gud-tooltip-mode'.")
12490
12491(custom-autoload (quote gud-tooltip-mode) "gud")
12492
12493(put (quote gud-tooltip-mode) (quote custom-set) (quote custom-set-minor-mode))
12494
12495(autoload (quote gud-tooltip-mode) "gud" "\
12496Toggle the display of GUD tooltips.
12497
12498\(fn &optional ARG)" t nil)
12499
93548d2e
DL
12500;;;***
12501\f
a5805c9d
KL
12502;;;### (autoloads (handwrite) "handwrite" "play/handwrite.el" (17279
12503;;;;;; 27123))
93548d2e
DL
12504;;; Generated autoloads from play/handwrite.el
12505
12506(autoload (quote handwrite) "handwrite" "\
12507Turns the buffer into a \"handwritten\" document.
12508The functions `handwrite-10pt', `handwrite-11pt', `handwrite-12pt'
12509and `handwrite-13pt' set up for various sizes of output.
12510
12511Variables: handwrite-linespace (default 12)
12512 handwrite-fontsize (default 11)
12513 handwrite-numlines (default 60)
c595cc5f
MR
12514 handwrite-pagenumbering (default nil)
12515
12516\(fn)" t nil)
93548d2e
DL
12517
12518;;;***
12519\f
7518ed7b 12520;;;### (autoloads (hanoi-unix-64 hanoi-unix hanoi) "hanoi" "play/hanoi.el"
a5805c9d 12521;;;;;; (17279 27079))
93548d2e
DL
12522;;; Generated autoloads from play/hanoi.el
12523
12524(autoload (quote hanoi) "hanoi" "\
c595cc5f
MR
12525Towers of Hanoi diversion. Use NRINGS rings.
12526
12527\(fn NRINGS)" t nil)
7518ed7b
GM
12528
12529(autoload (quote hanoi-unix) "hanoi" "\
12530Towers of Hanoi, UNIX doomsday version.
12531Displays 32-ring towers that have been progressing at one move per
12532second since 1970-01-01 00:00:00 GMT.
12533
c595cc5f
MR
12534Repent before ring 31 moves.
12535
12536\(fn)" t nil)
7518ed7b
GM
12537
12538(autoload (quote hanoi-unix-64) "hanoi" "\
821b278f 12539Like hanoi-unix, but pretend to have a 64-bit clock.
7518ed7b
GM
12540This is, necessarily (as of emacs 20.3), a crock. When the
12541current-time interface is made s2G-compliant, hanoi.el will need
c595cc5f
MR
12542to be updated.
12543
12544\(fn)" t nil)
93548d2e
DL
12545
12546;;;***
12547\f
390069bc 12548;;;### (autoloads (scan-buf-previous-region scan-buf-next-region
be65bdd3
AS
12549;;;;;; scan-buf-move-to-region help-at-pt-display-when-idle help-at-pt-set-timer
12550;;;;;; help-at-pt-cancel-timer display-local-help help-at-pt-kbd-string
a5805c9d 12551;;;;;; help-at-pt-string) "help-at-pt" "help-at-pt.el" (17279 27123))
390069bc
AS
12552;;; Generated autoloads from help-at-pt.el
12553
12554(autoload (quote help-at-pt-string) "help-at-pt" "\
12555Return the help-echo string at point.
12556Normally, the string produced by the `help-echo' text or overlay
12557property, or nil, is returned.
12558If KBD is non-nil, `kbd-help' is used instead, and any
12559`help-echo' property is ignored. In this case, the return value
12560can also be t, if that is the value of the `kbd-help' property.
12561
12562\(fn &optional KBD)" nil nil)
12563
12564(autoload (quote help-at-pt-kbd-string) "help-at-pt" "\
12565Return the keyboard help string at point.
12566If the `kbd-help' text or overlay property at point produces a
12567string, return it. Otherwise, use the `help-echo' property. If
12568this produces no string either, return nil.
12569
12570\(fn)" nil nil)
12571
12572(autoload (quote display-local-help) "help-at-pt" "\
12573Display local help in the echo area.
12574This displays a short help message, namely the string produced by
12575the `kbd-help' property at point. If `kbd-help' does not produce
12576a string, but the `help-echo' property does, then that string is
12577printed instead.
12578
12579A numeric argument ARG prevents display of a message in case
12580there is no help. While ARG can be used interactively, it is
12581mainly meant for use from Lisp.
12582
12583\(fn &optional ARG)" t nil)
12584
12585(autoload (quote help-at-pt-cancel-timer) "help-at-pt" "\
12586Cancel any timer set by `help-at-pt-set-timer'.
12587This disables `help-at-pt-display-when-idle'.
12588
12589\(fn)" t nil)
12590
12591(autoload (quote help-at-pt-set-timer) "help-at-pt" "\
12592Enable `help-at-pt-display-when-idle'.
12593This is done by setting a timer, if none is currently active.
12594
12595\(fn)" t nil)
12596
be65bdd3
AS
12597(defvar help-at-pt-display-when-idle (quote never) "\
12598*Automatically show local help on point-over.
12599If the value is t, the string obtained from any `kbd-help' or
12600`help-echo' property at point is automatically printed in the
12601echo area, if nothing else is already displayed there, or after a
12602quit. If both `kbd-help' and `help-echo' produce help strings,
12603`kbd-help' is used. If the value is a list, the help only gets
12604printed if there is a text or overlay property at point that is
12605included in this list. Suggested properties are `keymap',
12606`local-map', `button' and `kbd-help'. Any value other than t or
12607a non-empty list disables the feature.
12608
12609This variable only takes effect after a call to
12610`help-at-pt-set-timer'. The help gets printed after Emacs has
12611been idle for `help-at-pt-timer-delay' seconds. You can call
12612`help-at-pt-cancel-timer' to cancel the timer set by, and the
12613effect of, `help-at-pt-set-timer'.
12614
12615When this variable is set through Custom, `help-at-pt-set-timer'
12616is called automatically, unless the value is `never', in which
12617case `help-at-pt-cancel-timer' is called. Specifying an empty
12618list of properties through Custom will set the timer, thus
12619enabling buffer local values. It sets the actual value to nil.
12620Thus, Custom distinguishes between a nil value and other values
12621that disable the feature, which Custom identifies with `never'.
12622The default is `never'.")
12623
12624(custom-autoload (quote help-at-pt-display-when-idle) "help-at-pt")
12625
390069bc
AS
12626(autoload (quote scan-buf-move-to-region) "help-at-pt" "\
12627Go to the start of the next region with non-nil PROP property.
12628Then run HOOK, which should be a quoted symbol that is a normal
12629hook.variable, or an expression evaluating to such a symbol.
12630Adjacent areas with different non-nil PROP properties are
12631considered different regions.
12632
12633With numeric argument ARG, move to the start of the ARGth next
12634such region, then run HOOK. If ARG is negative, move backward.
12635If point is already in a region, then that region does not count
12636toward ARG. If ARG is 0 and point is inside a region, move to
12637the start of that region. If ARG is 0 and point is not in a
12638region, print a message to that effect, but do not move point and
12639do not run HOOK. If there are not enough regions to move over,
12640an error results and the number of available regions is mentioned
12641in the error message. Point is not moved and HOOK is not run.
12642
12643\(fn PROP &optional ARG HOOK)" nil nil)
12644
12645(autoload (quote scan-buf-next-region) "help-at-pt" "\
12646Go to the start of the next region with non-nil help-echo.
12647Print the help found there using `display-local-help'. Adjacent
12648areas with different non-nil help-echo properties are considered
12649different regions.
12650
12651With numeric argument ARG, move to the start of the ARGth next
12652help-echo region. If ARG is negative, move backward. If point
12653is already in a help-echo region, then that region does not count
12654toward ARG. If ARG is 0 and point is inside a help-echo region,
12655move to the start of that region. If ARG is 0 and point is not
12656in such a region, just print a message to that effect. If there
12657are not enough regions to move over, an error results and the
12658number of available regions is mentioned in the error message.
12659
12660A potentially confusing subtlety is that point can be in a
12661help-echo region without any local help being available. This is
12662because `help-echo' can be a function evaluating to nil. This
12663rarely happens in practice.
12664
12665\(fn &optional ARG)" t nil)
12666
12667(autoload (quote scan-buf-previous-region) "help-at-pt" "\
12668Go to the start of the previous region with non-nil help-echo.
12669Print the help found there using `display-local-help'. Adjacent
12670areas with different non-nil help-echo properties are considered
12671different regions. With numeric argument ARG, behaves like
12672`scan-buf-next-region' with argument -ARG..
12673
12674\(fn &optional ARG)" t nil)
12675
12676;;;***
12677\f
4c6bc877 12678;;;### (autoloads (describe-categories describe-syntax describe-variable
59e085e0
KL
12679;;;;;; variable-at-point describe-function-1 describe-simplify-lib-file-name
12680;;;;;; help-C-file-name describe-function help-with-tutorial) "help-fns"
a5805c9d 12681;;;;;; "help-fns.el" (17374 21544))
4c6bc877
MR
12682;;; Generated autoloads from help-fns.el
12683
12684(autoload (quote help-with-tutorial) "help-fns" "\
12685Select the Emacs learn-by-doing tutorial.
12686If there is a tutorial version written in the language
12687of the selected language environment, that version is used.
12688If there's no tutorial in that language, `TUTORIAL' is selected.
c595cc5f
MR
12689With ARG, you are asked to choose which language.
12690
12691\(fn &optional ARG)" t nil)
4c6bc877 12692
4c6bc877 12693(autoload (quote describe-function) "help-fns" "\
c595cc5f
MR
12694Display the full documentation of FUNCTION (a symbol).
12695
12696\(fn FUNCTION)" t nil)
4c6bc877 12697
d66d64bc
KL
12698(autoload (quote help-C-file-name) "help-fns" "\
12699Return the name of the C file where SUBR-OR-VAR is defined.
12700KIND should be `var' for a variable or `subr' for a subroutine.
12701
12702\(fn SUBR-OR-VAR KIND)" nil nil)
12703
59e085e0
KL
12704(autoload (quote describe-simplify-lib-file-name) "help-fns" "\
12705Simplify a library name FILE to a relative name, and make it a source file.
12706
12707\(fn FILE)" nil nil)
12708
c595cc5f
MR
12709(autoload (quote describe-function-1) "help-fns" "\
12710Not documented
12711
12712\(fn FUNCTION)" nil nil)
4c6bc877
MR
12713
12714(autoload (quote variable-at-point) "help-fns" "\
12715Return the bound variable symbol found around point.
c595cc5f 12716Return 0 if there is no such symbol.
be65bdd3 12717If ANY-SYMBOL is non-nil, don't insist the symbol be bound.
c595cc5f 12718
be65bdd3 12719\(fn &optional ANY-SYMBOL)" nil nil)
4c6bc877
MR
12720
12721(autoload (quote describe-variable) "help-fns" "\
12722Display the full documentation of VARIABLE (a symbol).
12723Returns the documentation as a string, also.
d66d64bc
KL
12724If VARIABLE has a buffer-local value in BUFFER or FRAME
12725\(default to the current buffer and current frame),
c595cc5f
MR
12726it is displayed along with the global value.
12727
d66d64bc 12728\(fn VARIABLE &optional BUFFER FRAME)" t nil)
4c6bc877
MR
12729
12730(autoload (quote describe-syntax) "help-fns" "\
12731Describe the syntax specifications in the syntax table of BUFFER.
12732The descriptions are inserted in a help buffer, which is then displayed.
c595cc5f
MR
12733BUFFER defaults to the current buffer.
12734
12735\(fn &optional BUFFER)" t nil)
4c6bc877
MR
12736
12737(autoload (quote describe-categories) "help-fns" "\
12738Describe the category specifications in the current category table.
c595cc5f 12739The descriptions are inserted in a buffer, which is then displayed.
390069bc
AS
12740If BUFFER is non-nil, then describe BUFFER's category table instead.
12741BUFFER should be a buffer or a buffer name.
c595cc5f
MR
12742
12743\(fn &optional BUFFER)" t nil)
4c6bc877
MR
12744
12745;;;***
12746\f
7518ed7b 12747;;;### (autoloads (three-step-help) "help-macro" "help-macro.el"
a5805c9d 12748;;;;;; (17319 2454))
93548d2e
DL
12749;;; Generated autoloads from help-macro.el
12750
12751(defvar three-step-help nil "\
12752*Non-nil means give more info about Help command in three steps.
12753The three steps are simple prompt, prompt with all options,
12754and window listing and describing the options.
12755A value of nil means skip the middle step, so that
12756\\[help-command] \\[help-command] gives the window that lists the options.")
12757
9c46b00a
MR
12758(custom-autoload (quote three-step-help) "help-macro")
12759
93548d2e
DL
12760;;;***
12761\f
4c6bc877
MR
12762;;;### (autoloads (help-xref-on-pp help-insert-xref-button help-xref-button
12763;;;;;; help-make-xrefs help-setup-xref help-mode-finish help-mode-setup
a5805c9d 12764;;;;;; help-mode) "help-mode" "help-mode.el" (17331 26860))
4c6bc877
MR
12765;;; Generated autoloads from help-mode.el
12766
12767(autoload (quote help-mode) "help-mode" "\
12768Major mode for viewing help text and navigating references in it.
12769Entry to this mode runs the normal hook `help-mode-hook'.
12770Commands:
c595cc5f
MR
12771\\{help-mode-map}
12772
12773\(fn)" t nil)
4c6bc877 12774
c595cc5f
MR
12775(autoload (quote help-mode-setup) "help-mode" "\
12776Not documented
4c6bc877 12777
c595cc5f
MR
12778\(fn)" nil nil)
12779
12780(autoload (quote help-mode-finish) "help-mode" "\
12781Not documented
12782
12783\(fn)" nil nil)
4c6bc877
MR
12784
12785(autoload (quote help-setup-xref) "help-mode" "\
12786Invoked from commands using the \"*Help*\" buffer to install some xref info.
12787
12788ITEM is a (FUNCTION . ARGS) pair appropriate for recreating the help
12789buffer after following a reference. INTERACTIVE-P is non-nil if the
12790calling command was invoked interactively. In this case the stack of
12791items for help buffer \"back\" buttons is cleared.
12792
12793This should be called very early, before the output buffer is cleared,
12794because we want to record the \"previous\" position of point so we can
c595cc5f
MR
12795restore it properly when going back.
12796
12797\(fn ITEM INTERACTIVE-P)" nil nil)
4c6bc877
MR
12798
12799(autoload (quote help-make-xrefs) "help-mode" "\
12800Parse and hyperlink documentation cross-references in the given BUFFER.
12801
12802Find cross-reference information in a buffer and activate such cross
12803references for selection with `help-follow'. Cross-references have
12804the canonical form `...' and the type of reference may be
12805disambiguated by the preceding word(s) used in
92e9233f
MR
12806`help-xref-symbol-regexp'. Faces only get cross-referenced if
12807preceded or followed by the word `face'. Variables without
12808variable documentation do not get cross-referenced, unless
12809preceded by the word `variable' or `option'.
4c6bc877
MR
12810
12811If the variable `help-xref-mule-regexp' is non-nil, find also
12812cross-reference information related to multilingual environment
12813\(e.g., coding-systems). This variable is also used to disambiguate
12814the type of reference as the same way as `help-xref-symbol-regexp'.
12815
12816A special reference `back' is made to return back through a stack of
12817help buffers. Variable `help-back-label' specifies the text for
c595cc5f
MR
12818that.
12819
12820\(fn &optional BUFFER)" t nil)
4c6bc877
MR
12821
12822(autoload (quote help-xref-button) "help-mode" "\
12823Make a hyperlink for cross-reference text previously matched.
12824MATCH-NUMBER is the subexpression of interest in the last matched
12825regexp. TYPE is the type of button to use. Any remaining arguments are
12826passed to the button's help-function when it is invoked.
c595cc5f
MR
12827See `help-make-xrefs'.
12828
12829\(fn MATCH-NUMBER TYPE &rest ARGS)" nil nil)
4c6bc877
MR
12830
12831(autoload (quote help-insert-xref-button) "help-mode" "\
12832Insert STRING and make a hyperlink from cross-reference text on it.
12833TYPE is the type of button to use. Any remaining arguments are passed
12834to the button's help-function when it is invoked.
c595cc5f
MR
12835See `help-make-xrefs'.
12836
12837\(fn STRING TYPE &rest ARGS)" nil nil)
4c6bc877
MR
12838
12839(autoload (quote help-xref-on-pp) "help-mode" "\
c595cc5f
MR
12840Add xrefs for symbols in `pp's output between FROM and TO.
12841
12842\(fn FROM TO)" nil nil)
4c6bc877
MR
12843
12844;;;***
12845\f
93548d2e 12846;;;### (autoloads (Helper-help Helper-describe-bindings) "helper"
a5805c9d 12847;;;;;; "emacs-lisp/helper.el" (17279 27122))
93548d2e
DL
12848;;; Generated autoloads from emacs-lisp/helper.el
12849
12850(autoload (quote Helper-describe-bindings) "helper" "\
c595cc5f
MR
12851Describe local key bindings of current mode.
12852
12853\(fn)" t nil)
93548d2e
DL
12854
12855(autoload (quote Helper-help) "helper" "\
c595cc5f
MR
12856Provide help for current mode.
12857
12858\(fn)" t nil)
93548d2e
DL
12859
12860;;;***
12861\f
12862;;;### (autoloads (hexlify-buffer hexl-find-file hexl-mode) "hexl"
a5805c9d 12863;;;;;; "hexl.el" (17279 27123))
93548d2e
DL
12864;;; Generated autoloads from hexl.el
12865
12866(autoload (quote hexl-mode) "hexl" "\
7518ed7b
GM
12867\\<hexl-mode-map>A mode for editing binary files in hex dump format.
12868This is not an ordinary major mode; it alters some aspects
38747ec6 12869of the current mode's behavior, but not all; also, you can exit
7518ed7b 12870Hexl mode and return to the previous mode using `hexl-mode-exit'.
93548d2e
DL
12871
12872This function automatically converts a buffer into the hexl format
12873using the function `hexlify-buffer'.
12874
12875Each line in the buffer has an \"address\" (displayed in hexadecimal)
12876representing the offset into the file that the characters on this line
12877are at and 16 characters from the file (displayed as hexadecimal
12878values grouped every 16 bits) and as their ASCII values.
12879
12880If any of the characters (displayed as ASCII characters) are
12881unprintable (control or meta characters) they will be replaced as
12882periods.
12883
12884If `hexl-mode' is invoked with an argument the buffer is assumed to be
12885in hexl format.
12886
12887A sample format:
12888
12889 HEX ADDR: 0001 0203 0405 0607 0809 0a0b 0c0d 0e0f ASCII-TEXT
12890 -------- ---- ---- ---- ---- ---- ---- ---- ---- ----------------
12891 00000000: 5468 6973 2069 7320 6865 786c 2d6d 6f64 This is hexl-mod
12892 00000010: 652e 2020 4561 6368 206c 696e 6520 7265 e. Each line re
12893 00000020: 7072 6573 656e 7473 2031 3620 6279 7465 presents 16 byte
12894 00000030: 7320 6173 2068 6578 6164 6563 696d 616c s as hexadecimal
12895 00000040: 2041 5343 4949 0a61 6e64 2070 7269 6e74 ASCII.and print
12896 00000050: 6162 6c65 2041 5343 4949 2063 6861 7261 able ASCII chara
12897 00000060: 6374 6572 732e 2020 416e 7920 636f 6e74 cters. Any cont
12898 00000070: 726f 6c20 6f72 206e 6f6e 2d41 5343 4949 rol or non-ASCII
821b278f 12899 00000080: 2063 6861 7261 6374 6572 730a 6172 6520 characters.are
93548d2e
DL
12900 00000090: 6469 7370 6c61 7965 6420 6173 2070 6572 displayed as per
12901 000000a0: 696f 6473 2069 6e20 7468 6520 7072 696e iods in the prin
821b278f 12902 000000b0: 7461 626c 6520 6368 6172 6163 7465 7220 table character
93548d2e
DL
12903 000000c0: 7265 6769 6f6e 2e0a region..
12904
12905Movement is as simple as movement in a normal emacs text buffer. Most
12906cursor movement bindings are the same (ie. Use \\[hexl-backward-char], \\[hexl-forward-char], \\[hexl-next-line], and \\[hexl-previous-line]
12907to move the cursor left, right, down, and up).
12908
12909Advanced cursor movement commands (ala \\[hexl-beginning-of-line], \\[hexl-end-of-line], \\[hexl-beginning-of-buffer], and \\[hexl-end-of-buffer]) are
12910also supported.
12911
12912There are several ways to change text in hexl mode:
12913
12914ASCII characters (character between space (0x20) and tilde (0x7E)) are
12915bound to self-insert so you can simply type the character and it will
12916insert itself (actually overstrike) into the buffer.
12917
12918\\[hexl-quoted-insert] followed by another keystroke allows you to insert the key even if
12919it isn't bound to self-insert. An octal number can be supplied in place
12920of another key to insert the octal number's ASCII representation.
12921
12922\\[hexl-insert-hex-char] will insert a given hexadecimal value (if it is between 0 and 0xFF)
12923into the buffer at the current point.
12924
12925\\[hexl-insert-octal-char] will insert a given octal value (if it is between 0 and 0377)
12926into the buffer at the current point.
12927
12928\\[hexl-insert-decimal-char] will insert a given decimal value (if it is between 0 and 255)
12929into the buffer at the current point.
12930
12931\\[hexl-mode-exit] will exit hexl-mode.
12932
12933Note: saving the file with any of the usual Emacs commands
12934will actually convert it back to binary format while saving.
12935
7518ed7b 12936You can use \\[hexl-find-file] to visit a file in Hexl mode.
93548d2e 12937
c595cc5f
MR
12938\\[describe-bindings] for advanced commands.
12939
12940\(fn &optional ARG)" t nil)
93548d2e
DL
12941
12942(autoload (quote hexl-find-file) "hexl" "\
12943Edit file FILENAME in hexl-mode.
c595cc5f
MR
12944Switch to a buffer visiting file FILENAME, creating one in none exists.
12945
12946\(fn FILENAME)" t nil)
93548d2e
DL
12947
12948(autoload (quote hexlify-buffer) "hexl" "\
12949Convert a binary buffer to hexl format.
c595cc5f
MR
12950This discards the buffer's undo information.
12951
12952\(fn)" t nil)
93548d2e
DL
12953
12954;;;***
12955\f
abb2db1c 12956;;;### (autoloads (hi-lock-write-interactive-patterns hi-lock-unface-buffer
2a55cd3a 12957;;;;;; hi-lock-face-phrase-buffer hi-lock-face-buffer hi-lock-line-face-buffer
c1a055ca 12958;;;;;; global-hi-lock-mode hi-lock-mode) "hi-lock" "hi-lock.el"
a5805c9d 12959;;;;;; (17379 24714))
abb2db1c
GM
12960;;; Generated autoloads from hi-lock.el
12961
abb2db1c
GM
12962(autoload (quote hi-lock-mode) "hi-lock" "\
12963Toggle minor mode for interactively adding font-lock highlighting patterns.
12964
c1a055ca
EZ
12965If ARG positive, turn hi-lock on. Issuing a hi-lock command will also
12966turn hi-lock on. To turn hi-lock on in all buffers use
12967`global-hi-lock-mode' or in your .emacs file (global-hi-lock-mode 1).
12968When hi-lock is turned on, a \"Regexp Highlighting\" submenu is added
12969to the \"Edit\" menu. The commands in the submenu, which can be
12970called interactively, are:
abb2db1c
GM
12971
12972\\[highlight-regexp] REGEXP FACE
12973 Highlight matches of pattern REGEXP in current buffer with FACE.
12974
2a55cd3a
GM
12975\\[highlight-phrase] PHRASE FACE
12976 Highlight matches of phrase PHRASE in current buffer with FACE.
12977 (PHRASE can be any REGEXP, but spaces will be replaced by matches
12978 to whitespace and initial lower-case letters will become case insensitive.)
821b278f 12979
abb2db1c
GM
12980\\[highlight-lines-matching-regexp] REGEXP FACE
12981 Highlight lines containing matches of REGEXP in current buffer with FACE.
12982
12983\\[unhighlight-regexp] REGEXP
12984 Remove highlighting on matches of REGEXP in current buffer.
12985
12986\\[hi-lock-write-interactive-patterns]
c1a055ca 12987 Write active REGEXPs into buffer as comments (if possible). They will
abb2db1c
GM
12988 be read the next time file is loaded or when the \\[hi-lock-find-patterns] command
12989 is issued. The inserted regexps are in the form of font lock keywords.
c1a055ca 12990 (See `font-lock-keywords'.) They may be edited and re-loaded with \\[hi-lock-find-patterns],
abb2db1c
GM
12991 any valid `font-lock-keywords' form is acceptable.
12992
12993\\[hi-lock-find-patterns]
12994 Re-read patterns stored in buffer (in the format produced by \\[hi-lock-write-interactive-patterns]).
12995
12996When hi-lock is started and if the mode is not excluded, the
12997beginning of the buffer is searched for lines of the form:
12998 Hi-lock: FOO
c1a055ca
EZ
12999where FOO is a list of patterns. These are added to the font lock
13000keywords already present. The patterns must start before position
13001\(number of characters into buffer) `hi-lock-file-patterns-range'.
13002Patterns will be read until
abb2db1c 13003 Hi-lock: end
c1a055ca
EZ
13004is found. A mode is excluded if it's in the list `hi-lock-exclude-modes'.
13005
13006\(fn &optional ARG)" t nil)
13007
13008(defvar global-hi-lock-mode nil "\
13009Non-nil if Global-Hi-Lock mode is enabled.
13010See the command `global-hi-lock-mode' for a description of this minor-mode.
13011Setting this variable directly does not take effect;
13012use either \\[customize] or the function `global-hi-lock-mode'.")
13013
13014(custom-autoload (quote global-hi-lock-mode) "hi-lock")
13015
13016(put (quote global-hi-lock-mode) (quote custom-set) (quote custom-set-minor-mode))
13017
13018(autoload (quote global-hi-lock-mode) "hi-lock" "\
13019Toggle Hi-Lock mode in every buffer.
13020With prefix ARG, turn Global-Hi-Lock mode on if and only if ARG is positive.
13021Hi-Lock mode is actually not turned on in every buffer but only in those
13022in which `turn-on-hi-lock-if-enabled' turns it on.
c595cc5f
MR
13023
13024\(fn &optional ARG)" t nil)
abb2db1c
GM
13025
13026(defalias (quote highlight-lines-matching-regexp) (quote hi-lock-line-face-buffer))
13027
13028(autoload (quote hi-lock-line-face-buffer) "hi-lock" "\
2a55cd3a 13029Set face of all lines containing a match of REGEXP to FACE.
abb2db1c
GM
13030
13031Interactively, prompt for REGEXP then FACE. Buffer-local history
13032list maintained for regexps, global history maintained for faces.
13033\\<minibuffer-local-map>Use \\[next-history-element] and \\[previous-history-element] to retrieve next or previous history item.
c1a055ca 13034\(See info node `Minibuffer History'.)
c595cc5f
MR
13035
13036\(fn REGEXP &optional FACE)" t nil)
abb2db1c
GM
13037
13038(defalias (quote highlight-regexp) (quote hi-lock-face-buffer))
13039
13040(autoload (quote hi-lock-face-buffer) "hi-lock" "\
2a55cd3a 13041Set face of each match of REGEXP to FACE.
abb2db1c
GM
13042
13043Interactively, prompt for REGEXP then FACE. Buffer-local history
13044list maintained for regexps, global history maintained for faces.
13045\\<minibuffer-local-map>Use \\[next-history-element] and \\[previous-history-element] to retrieve next or previous history item.
c1a055ca 13046\(See info node `Minibuffer History'.)
c595cc5f
MR
13047
13048\(fn REGEXP &optional FACE)" t nil)
abb2db1c 13049
2a55cd3a
GM
13050(defalias (quote highlight-phrase) (quote hi-lock-face-phrase-buffer))
13051
13052(autoload (quote hi-lock-face-phrase-buffer) "hi-lock" "\
13053Set face of each match of phrase REGEXP to FACE.
13054
13055Whitespace in REGEXP converted to arbitrary whitespace and initial
c595cc5f
MR
13056lower-case letters made case insensitive.
13057
13058\(fn REGEXP &optional FACE)" t nil)
2a55cd3a 13059
abb2db1c
GM
13060(defalias (quote unhighlight-regexp) (quote hi-lock-unface-buffer))
13061
13062(autoload (quote hi-lock-unface-buffer) "hi-lock" "\
2a55cd3a 13063Remove highlighting of each match to REGEXP set by hi-lock.
abb2db1c
GM
13064
13065Interactively, prompt for REGEXP. Buffer-local history of inserted
13066regexp's maintained. Will accept only regexps inserted by hi-lock
2a55cd3a 13067interactive functions. (See `hi-lock-interactive-patterns'.)
abb2db1c 13068\\<minibuffer-local-must-match-map>Use \\[minibuffer-complete] to complete a partially typed regexp.
c595cc5f
MR
13069\(See info node `Minibuffer History'.)
13070
13071\(fn REGEXP)" t nil)
abb2db1c
GM
13072
13073(autoload (quote hi-lock-write-interactive-patterns) "hi-lock" "\
13074Write interactively added patterns, if any, into buffer at point.
13075
13076Interactively added patterns are those normally specified using
13077`highlight-regexp' and `highlight-lines-matching-regexp'; they can
c595cc5f
MR
13078be found in variable `hi-lock-interactive-patterns'.
13079
13080\(fn)" t nil)
abb2db1c
GM
13081
13082;;;***
13083\f
93548d2e 13084;;;### (autoloads (hide-ifdef-lines hide-ifdef-read-only hide-ifdef-initially
a5805c9d 13085;;;;;; hide-ifdef-mode) "hideif" "progmodes/hideif.el" (17279 27123))
93548d2e
DL
13086;;; Generated autoloads from progmodes/hideif.el
13087
13088(autoload (quote hide-ifdef-mode) "hideif" "\
13089Toggle Hide-Ifdef mode. This is a minor mode, albeit a large one.
13090With ARG, turn Hide-Ifdef mode on if arg is positive, off otherwise.
13091In Hide-Ifdef mode, code within #ifdef constructs that the C preprocessor
13092would eliminate may be hidden from view. Several variables affect
13093how the hiding is done:
13094
8d8d8d4e 13095`hide-ifdef-env'
93548d2e
DL
13096 An association list of defined and undefined symbols for the
13097 current buffer. Initially, the global value of `hide-ifdef-env'
13098 is used.
13099
8d8d8d4e 13100`hide-ifdef-define-alist'
821b278f 13101 An association list of defined symbol lists.
93548d2e
DL
13102 Use `hide-ifdef-set-define-alist' to save the current `hide-ifdef-env'
13103 and `hide-ifdef-use-define-alist' to set the current `hide-ifdef-env'
13104 from one of the lists in `hide-ifdef-define-alist'.
13105
8d8d8d4e 13106`hide-ifdef-lines'
93548d2e
DL
13107 Set to non-nil to not show #if, #ifdef, #ifndef, #else, and
13108 #endif lines when hiding.
13109
8d8d8d4e 13110`hide-ifdef-initially'
93548d2e
DL
13111 Indicates whether `hide-ifdefs' should be called when Hide-Ifdef mode
13112 is activated.
13113
8d8d8d4e 13114`hide-ifdef-read-only'
93548d2e
DL
13115 Set to non-nil if you want to make buffers read only while hiding.
13116 After `show-ifdefs', read-only status is restored to previous value.
13117
c595cc5f
MR
13118\\{hide-ifdef-mode-map}
13119
13120\(fn &optional ARG)" t nil)
93548d2e
DL
13121
13122(defvar hide-ifdef-initially nil "\
13123*Non-nil means call `hide-ifdefs' when Hide-Ifdef mode is first activated.")
13124
9c46b00a
MR
13125(custom-autoload (quote hide-ifdef-initially) "hideif")
13126
93548d2e
DL
13127(defvar hide-ifdef-read-only nil "\
13128*Set to non-nil if you want buffer to be read-only while hiding text.")
13129
9c46b00a
MR
13130(custom-autoload (quote hide-ifdef-read-only) "hideif")
13131
93548d2e
DL
13132(defvar hide-ifdef-lines nil "\
13133*Non-nil means hide the #ifX, #else, and #endif lines.")
13134
9c46b00a
MR
13135(custom-autoload (quote hide-ifdef-lines) "hideif")
13136
93548d2e
DL
13137;;;***
13138\f
175a97e4 13139;;;### (autoloads (hs-minor-mode) "hideshow" "progmodes/hideshow.el"
a5805c9d 13140;;;;;; (17279 27169))
93548d2e
DL
13141;;; Generated autoloads from progmodes/hideshow.el
13142
6448a6b3 13143(defvar hs-special-modes-alist (quote ((c-mode "{" "}" "/[*/]" nil hs-c-like-adjust-block-beginning) (c++-mode "{" "}" "/[*/]" nil hs-c-like-adjust-block-beginning) (bibtex-mode ("^@\\S(*\\(\\s(\\)" 1)) (java-mode "{" "}" "/[*/]" nil hs-c-like-adjust-block-beginning))) "\
93548d2e 13144*Alist for initializing the hideshow variables for different modes.
6448a6b3 13145Each element has the form
93548d2e 13146 (MODE START END COMMENT-START FORWARD-SEXP-FUNC ADJUST-BEG-FUNC).
93548d2e 13147
6448a6b3
GM
13148If non-nil, hideshow will use these values as regexps to define blocks
13149and comments, respectively for major mode MODE.
13150
13151START, END and COMMENT-START are regular expressions. A block is
13152defined as text surrounded by START and END.
93548d2e 13153
6448a6b3
GM
13154As a special case, START may be a list of the form (COMPLEX-START
13155MDATA-SELECTOR), where COMPLEX-START is a regexp w/ multiple parts and
13156MDATA-SELECTOR an integer that specifies which sub-match is the proper
e3cc553b
AS
13157place to adjust point, before calling `hs-forward-sexp-func'. Point
13158is adjusted to the beginning of the specified match. For example,
13159see the `hs-special-modes-alist' entry for `bibtex-mode'.
93548d2e 13160
6448a6b3
GM
13161For some major modes, `forward-sexp' does not work properly. In those
13162cases, FORWARD-SEXP-FUNC specifies another function to use instead.
93548d2e 13163
6448a6b3
GM
13164See the documentation for `hs-adjust-block-beginning' to see what is the
13165use of ADJUST-BEG-FUNC.
13166
13167If any of the elements is left nil or omitted, hideshow tries to guess
13168appropriate values. The regexps should not contain leading or trailing
13169whitespace. Case does not matter.")
93548d2e
DL
13170
13171(autoload (quote hs-minor-mode) "hideshow" "\
13172Toggle hideshow minor mode.
13173With ARG, turn hideshow minor mode on if ARG is positive, off otherwise.
13174When hideshow minor mode is on, the menu bar is augmented with hideshow
13175commands and the hideshow commands are enabled.
13176The value '(hs . t) is added to `buffer-invisibility-spec'.
93548d2e
DL
13177
13178The main commands are: `hs-hide-all', `hs-show-all', `hs-hide-block',
b442e70a 13179`hs-show-block', `hs-hide-level' and `hs-toggle-hiding'. There is also
6448a6b3 13180`hs-hide-initial-comment-block' and `hs-mouse-toggle-hiding'.
93548d2e
DL
13181
13182Turning hideshow minor mode off reverts the menu bar and the
13183variables to default values and disables the hideshow commands.
13184
d054101f
GM
13185Lastly, the normal hook `hs-minor-mode-hook' is run using `run-hooks'.
13186
93548d2e 13187Key bindings:
c595cc5f
MR
13188\\{hs-minor-mode-map}
13189
13190\(fn &optional ARG)" t nil)
93548d2e
DL
13191
13192;;;***
13193\f
13194;;;### (autoloads (global-highlight-changes highlight-compare-with-file
390069bc
AS
13195;;;;;; highlight-compare-buffers highlight-changes-rotate-faces
13196;;;;;; highlight-changes-previous-change highlight-changes-next-change
13197;;;;;; highlight-changes-mode highlight-changes-remove-highlight)
a5805c9d 13198;;;;;; "hilit-chg" "hilit-chg.el" (17379 24711))
93548d2e
DL
13199;;; Generated autoloads from hilit-chg.el
13200
13201(autoload (quote highlight-changes-remove-highlight) "hilit-chg" "\
821b278f 13202Remove the change face from the region between BEG and END.
c595cc5f
MR
13203This allows you to manually remove highlighting from uninteresting changes.
13204
13205\(fn BEG END)" t nil)
93548d2e
DL
13206
13207(autoload (quote highlight-changes-mode) "hilit-chg" "\
13208Toggle (or initially set) Highlight Changes mode.
13209
821b278f 13210Without an argument:
54baed30
GM
13211 If Highlight Changes mode is not enabled, then enable it (in either active
13212 or passive state as determined by the variable
13213 `highlight-changes-initial-state'); otherwise, toggle between active
13214 and passive state.
93548d2e 13215
54baed30
GM
13216With an argument ARG:
13217 If ARG is positive, set state to active;
13218 If ARG is zero, set state to passive;
13219 If ARG is negative, disable Highlight Changes mode completely.
93548d2e 13220
54baed30 13221Active state - means changes are shown in a distinctive face.
93548d2e
DL
13222Passive state - means changes are kept and new ones recorded but are
13223 not displayed in a different face.
13224
13225Functions:
13226\\[highlight-changes-next-change] - move point to beginning of next change
821b278f 13227\\[highlight-changes-previous-change] - move to beginning of previous change
93548d2e
DL
13228\\[highlight-compare-with-file] - mark text as changed by comparing this
13229 buffer with the contents of a file
13230\\[highlight-changes-remove-highlight] - remove the change face from the region
821b278f 13231\\[highlight-changes-rotate-faces] - rotate different \"ages\" of changes through
0ef3cc90 13232 various faces
93548d2e 13233
93548d2e 13234Hook variables:
0ef3cc90 13235`highlight-changes-enable-hook' - when enabling Highlight Changes mode
54baed30 13236`highlight-changes-toggle-hook' - when entering active or passive state
0ef3cc90 13237`highlight-changes-disable-hook' - when turning off Highlight Changes mode
c595cc5f
MR
13238
13239\(fn &optional ARG)" t nil)
93548d2e
DL
13240
13241(autoload (quote highlight-changes-next-change) "hilit-chg" "\
c595cc5f
MR
13242Move to the beginning of the next change, if in Highlight Changes mode.
13243
13244\(fn)" t nil)
93548d2e
DL
13245
13246(autoload (quote highlight-changes-previous-change) "hilit-chg" "\
c595cc5f
MR
13247Move to the beginning of the previous change, if in Highlight Changes mode.
13248
13249\(fn)" t nil)
93548d2e
DL
13250
13251(autoload (quote highlight-changes-rotate-faces) "hilit-chg" "\
13252Rotate the faces used by Highlight Changes mode.
13253
54baed30
GM
13254Current changes are displayed in the face described by the first element
13255of `highlight-changes-face-list', one level older changes are shown in
93548d2e
DL
13256face described by the second element, and so on. Very old changes remain
13257shown in the last face in the list.
13258
0ef3cc90
LT
13259You can automatically rotate colors when the buffer is saved by adding
13260this function to `write-file-functions' as a buffer-local value. To do
13261this, eval the following in the buffer to be saved:
54baed30 13262
0ef3cc90 13263 (add-hook 'write-file-functions 'highlight-changes-rotate-faces nil t)
c595cc5f
MR
13264
13265\(fn)" t nil)
93548d2e 13266
390069bc
AS
13267(autoload (quote highlight-compare-buffers) "hilit-chg" "\
13268Compare two buffers and highlight the differences.
13269
13270The default is the current buffer and the one in the next window.
13271
13272If either buffer is modified and is visiting a file, you are prompted
13273to save the file.
13274
0ef3cc90 13275Unless the buffer is unmodified and visiting a file, the buffer is
390069bc
AS
13276written to a temporary file for comparison.
13277
13278If a buffer is read-only, differences will be highlighted but no property
13279changes are made, so \\[highlight-changes-next-change] and
13280\\[highlight-changes-previous-change] will not work.
13281
13282\(fn BUF-A BUF-B)" t nil)
13283
93548d2e
DL
13284(autoload (quote highlight-compare-with-file) "hilit-chg" "\
13285Compare this buffer with a file, and highlight differences.
13286
54baed30
GM
13287If the buffer has a backup filename, it is used as the default when
13288this function is called interactively.
93548d2e 13289
54baed30
GM
13290If the current buffer is visiting the file being compared against, it
13291also will have its differences highlighted. Otherwise, the file is
13292read in temporarily but the buffer is deleted.
93548d2e 13293
54baed30
GM
13294If the buffer is read-only, differences will be highlighted but no property
13295changes are made, so \\[highlight-changes-next-change] and
c595cc5f
MR
13296\\[highlight-changes-previous-change] will not work.
13297
13298\(fn FILE-B)" t nil)
93548d2e
DL
13299
13300(autoload (quote global-highlight-changes) "hilit-chg" "\
13301Turn on or off global Highlight Changes mode.
13302
13303When called interactively:
13304- if no prefix, toggle global Highlight Changes mode on or off
13305- if called with a positive prefix (or just C-u) turn it on in active mode
c1a055ca 13306- if called with a zero prefix turn it on in passive mode
93548d2e
DL
13307- if called with a negative prefix turn it off
13308
13309When called from a program:
13310- if ARG is nil or omitted, turn it off
f19e949b 13311- if ARG is `active', turn it on in active mode
54baed30 13312- if ARG is `passive', turn it on in passive mode
821b278f 13313- otherwise just turn it on
93548d2e
DL
13314
13315When global Highlight Changes mode is enabled, Highlight Changes mode is turned
13316on for future \"suitable\" buffers (and for \"suitable\" existing buffers if
13317variable `highlight-changes-global-changes-existing-buffers' is non-nil).
c595cc5f
MR
13318\"Suitability\" is determined by variable `highlight-changes-global-modes'.
13319
13320\(fn &optional ARG)" t nil)
93548d2e
DL
13321
13322;;;***
13323\f
13324;;;### (autoloads (make-hippie-expand-function hippie-expand hippie-expand-only-buffers
13325;;;;;; hippie-expand-ignore-buffers hippie-expand-max-buffers hippie-expand-no-restriction
13326;;;;;; hippie-expand-dabbrev-as-symbol hippie-expand-dabbrev-skip-space
cded5ed3 13327;;;;;; hippie-expand-verbose hippie-expand-try-functions-list) "hippie-exp"
a5805c9d 13328;;;;;; "hippie-exp.el" (17279 27123))
93548d2e
DL
13329;;; Generated autoloads from hippie-exp.el
13330
13331(defvar hippie-expand-try-functions-list (quote (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)) "\
13332The list of expansion functions tried in order by `hippie-expand'.
13333To change the behavior of `hippie-expand', remove, change the order of,
13334or insert functions in this list.")
13335
9c46b00a
MR
13336(custom-autoload (quote hippie-expand-try-functions-list) "hippie-exp")
13337
93548d2e
DL
13338(defvar hippie-expand-verbose t "\
13339*Non-nil makes `hippie-expand' output which function it is trying.")
13340
9c46b00a
MR
13341(custom-autoload (quote hippie-expand-verbose) "hippie-exp")
13342
93548d2e
DL
13343(defvar hippie-expand-dabbrev-skip-space nil "\
13344*Non-nil means tolerate trailing spaces in the abbreviation to expand.")
13345
9c46b00a
MR
13346(custom-autoload (quote hippie-expand-dabbrev-skip-space) "hippie-exp")
13347
93548d2e
DL
13348(defvar hippie-expand-dabbrev-as-symbol t "\
13349*Non-nil means expand as symbols, i.e. syntax `_' is considered a letter.")
13350
9c46b00a
MR
13351(custom-autoload (quote hippie-expand-dabbrev-as-symbol) "hippie-exp")
13352
93548d2e
DL
13353(defvar hippie-expand-no-restriction t "\
13354*Non-nil means that narrowed buffers are widened during search.")
13355
9c46b00a
MR
13356(custom-autoload (quote hippie-expand-no-restriction) "hippie-exp")
13357
93548d2e
DL
13358(defvar hippie-expand-max-buffers nil "\
13359*The maximum number of buffers (apart from the current) searched.
13360If nil, all buffers are searched.")
13361
9c46b00a
MR
13362(custom-autoload (quote hippie-expand-max-buffers) "hippie-exp")
13363
93548d2e
DL
13364(defvar hippie-expand-ignore-buffers (quote ("^ \\*.*\\*$" dired-mode)) "\
13365*A list specifying which buffers not to search (if not current).
13366Can contain both regexps matching buffer names (as strings) and major modes
13367\(as atoms)")
13368
9c46b00a
MR
13369(custom-autoload (quote hippie-expand-ignore-buffers) "hippie-exp")
13370
93548d2e
DL
13371(defvar hippie-expand-only-buffers nil "\
13372*A list specifying the only buffers to search (in addition to current).
13373Can contain both regexps matching buffer names (as strings) and major modes
8d8d8d4e 13374\(as atoms). If non-nil, this variable overrides the variable
93548d2e
DL
13375`hippie-expand-ignore-buffers'.")
13376
9c46b00a
MR
13377(custom-autoload (quote hippie-expand-only-buffers) "hippie-exp")
13378
93548d2e
DL
13379(autoload (quote hippie-expand) "hippie-exp" "\
13380Try to expand text before point, using multiple methods.
13381The expansion functions in `hippie-expand-try-functions-list' are
13382tried in order, until a possible expansion is found. Repeated
13383application of `hippie-expand' inserts successively possible
821b278f 13384expansions.
93548d2e 13385With a positive numeric argument, jumps directly to the ARG next
821b278f 13386function in this list. With a negative argument or just \\[universal-argument],
c595cc5f
MR
13387undoes the expansion.
13388
13389\(fn ARG)" t nil)
93548d2e
DL
13390
13391(autoload (quote make-hippie-expand-function) "hippie-exp" "\
13392Construct a function similar to `hippie-expand'.
13393Make it use the expansion functions in TRY-LIST. An optional second
c595cc5f
MR
13394argument VERBOSE non-nil makes the function verbose.
13395
13396\(fn TRY-LIST &optional VERBOSE)" nil (quote macro))
93548d2e
DL
13397
13398;;;***
13399\f
a67b854e 13400;;;### (autoloads (global-hl-line-mode hl-line-mode) "hl-line" "hl-line.el"
a5805c9d 13401;;;;;; (17374 21429))
7518ed7b
GM
13402;;; Generated autoloads from hl-line.el
13403
7518ed7b 13404(autoload (quote hl-line-mode) "hl-line" "\
27a99a7c 13405Buffer-local minor mode to highlight the line about point.
7518ed7b 13406With ARG, turn Hl-Line mode on if ARG is positive, off otherwise.
27a99a7c
GM
13407
13408If `hl-line-sticky-flag' is non-nil, Hl-Line mode highlights the
13409line about the buffer's point in all windows. Caveat: the
13410buffer's point might be different from the point of a
13411non-selected window. Hl-Line mode uses the function
13412`hl-line-highlight' on `post-command-hook' in this case.
13413
13414When `hl-line-sticky-flag' is nil, Hl-Line mode highlights the
13415line about point in the selected window only. In this case, it
13416uses the function `hl-line-unhighlight' on `pre-command-hook' in
13417addition to `hl-line-highlight' on `post-command-hook'.
c595cc5f
MR
13418
13419\(fn &optional ARG)" t nil)
7518ed7b 13420
a67b854e
GM
13421(defvar global-hl-line-mode nil "\
13422Non-nil if Global-Hl-Line mode is enabled.
13423See the command `global-hl-line-mode' for a description of this minor-mode.
13424Setting this variable directly does not take effect;
13425use either \\[customize] or the function `global-hl-line-mode'.")
13426
9c46b00a 13427(custom-autoload (quote global-hl-line-mode) "hl-line")
a67b854e 13428
ac09dc1e
KL
13429(put (quote global-hl-line-mode) (quote custom-set) (quote custom-set-minor-mode))
13430
a67b854e 13431(autoload (quote global-hl-line-mode) "hl-line" "\
27a99a7c
GM
13432Global minor mode to highlight the line about point in the current window.
13433With ARG, turn Global-Hl-Line mode on if ARG is positive, off otherwise.
13434
13435Global-Hl-Line mode uses the functions `global-hl-line-unhighlight' and
13436`global-hl-line-highlight' on `pre-command-hook' and `post-command-hook'.
c595cc5f
MR
13437
13438\(fn &optional ARG)" t nil)
a67b854e 13439
7518ed7b
GM
13440;;;***
13441\f
09938b67 13442;;;### (autoloads (list-holidays holidays) "holidays" "calendar/holidays.el"
a5805c9d 13443;;;;;; (17308 43144))
93548d2e
DL
13444;;; Generated autoloads from calendar/holidays.el
13445
09938b67
GM
13446(autoload (quote holidays) "holidays" "\
13447Display the holidays for last month, this month, and next month.
13448If called with an optional prefix argument, prompts for month and year.
13449
c595cc5f
MR
13450This function is suitable for execution in a .emacs file.
13451
13452\(fn &optional ARG)" t nil)
09938b67 13453
93548d2e
DL
13454(autoload (quote list-holidays) "holidays" "\
13455Display holidays for years Y1 to Y2 (inclusive).
13456
13457The optional list of holidays L defaults to `calendar-holidays'. See the
13458documentation for that variable for a description of holiday lists.
13459
c595cc5f
MR
13460The optional LABEL is used to label the buffer created.
13461
13462\(fn Y1 Y2 &optional L LABEL)" t nil)
93548d2e
DL
13463
13464;;;***
13465\f
13466;;;### (autoloads (hscroll-global-mode hscroll-mode turn-on-hscroll)
a5805c9d 13467;;;;;; "hscroll" "obsolete/hscroll.el" (17279 27123))
ac95a621 13468;;; Generated autoloads from obsolete/hscroll.el
93548d2e
DL
13469
13470(autoload (quote turn-on-hscroll) "hscroll" "\
6c083b4c
GM
13471This function is obsolete.
13472Emacs now does hscrolling automatically, if `truncate-lines' is non-nil.
c595cc5f
MR
13473Also see `automatic-hscrolling'.
13474
13475\(fn)" nil nil)
93548d2e
DL
13476
13477(autoload (quote hscroll-mode) "hscroll" "\
6c083b4c
GM
13478This function is obsolete.
13479Emacs now does hscrolling automatically, if `truncate-lines' is non-nil.
c595cc5f
MR
13480Also see `automatic-hscrolling'.
13481
13482\(fn &optional ARG)" t nil)
93548d2e
DL
13483
13484(autoload (quote hscroll-global-mode) "hscroll" "\
6c083b4c
GM
13485This function is obsolete.
13486Emacs now does hscrolling automatically, if `truncate-lines' is non-nil.
c595cc5f
MR
13487Also see `automatic-hscrolling'.
13488
13489\(fn &optional ARG)" t nil)
93548d2e
DL
13490
13491;;;***
13492\f
a5805c9d
KL
13493;;;### (autoloads (html2text) "html2text" "gnus/html2text.el" (17279
13494;;;;;; 27122))
390069bc
AS
13495;;; Generated autoloads from gnus/html2text.el
13496
13497(autoload (quote html2text) "html2text" "\
13498Convert HTML to plain text in the current buffer.
13499
13500\(fn)" t nil)
13501
13502;;;***
13503\f
4c6bc877 13504;;;### (autoloads (ibuffer-do-occur ibuffer-mark-dired-buffers ibuffer-mark-read-only-buffers
c1a055ca
EZ
13505;;;;;; ibuffer-mark-special-buffers ibuffer-mark-old-buffers ibuffer-mark-compressed-file-buffers
13506;;;;;; ibuffer-mark-help-buffers ibuffer-mark-dissociated-buffers
13507;;;;;; ibuffer-mark-unsaved-buffers ibuffer-mark-modified-buffers
13508;;;;;; ibuffer-mark-by-mode ibuffer-mark-by-file-name-regexp ibuffer-mark-by-mode-regexp
13509;;;;;; ibuffer-mark-by-name-regexp ibuffer-copy-filename-as-kill
4c6bc877
MR
13510;;;;;; ibuffer-diff-with-file ibuffer-jump-to-buffer ibuffer-do-kill-lines
13511;;;;;; ibuffer-backwards-next-marked ibuffer-forward-next-marked
13512;;;;;; ibuffer-add-to-tmp-show ibuffer-add-to-tmp-hide ibuffer-bs-show
13513;;;;;; ibuffer-invert-sorting ibuffer-toggle-sorting-mode ibuffer-switch-to-saved-filters
13514;;;;;; ibuffer-add-saved-filters ibuffer-delete-saved-filters ibuffer-save-filters
13515;;;;;; ibuffer-or-filter ibuffer-negate-filter ibuffer-exchange-filters
13516;;;;;; ibuffer-decompose-filter ibuffer-pop-filter ibuffer-filter-disable
13517;;;;;; ibuffer-switch-to-saved-filter-groups ibuffer-delete-saved-filter-groups
13518;;;;;; ibuffer-save-filter-groups ibuffer-yank-filter-group ibuffer-yank
13519;;;;;; ibuffer-kill-line ibuffer-kill-filter-group ibuffer-jump-to-filter-group
13520;;;;;; ibuffer-clear-filter-groups ibuffer-decompose-filter-group
13521;;;;;; ibuffer-pop-filter-group ibuffer-set-filter-groups-by-mode
13522;;;;;; ibuffer-filters-to-filter-group ibuffer-included-in-filters-p
13523;;;;;; ibuffer-backward-filter-group ibuffer-forward-filter-group
13524;;;;;; ibuffer-toggle-filter-group ibuffer-mouse-toggle-filter-group
13525;;;;;; ibuffer-interactive-filter-by-mode ibuffer-mouse-filter-by-mode
a5805c9d 13526;;;;;; ibuffer-auto-mode) "ibuf-ext" "ibuf-ext.el" (17379 30025))
4c6bc877
MR
13527;;; Generated autoloads from ibuf-ext.el
13528
13529(autoload (quote ibuffer-auto-mode) "ibuf-ext" "\
13530Toggle use of Ibuffer's auto-update facility.
c595cc5f
MR
13531With numeric ARG, enable auto-update if and only if ARG is positive.
13532
13533\(fn &optional ARG)" t nil)
4c6bc877
MR
13534
13535(autoload (quote ibuffer-mouse-filter-by-mode) "ibuf-ext" "\
c595cc5f
MR
13536Enable or disable filtering by the major mode chosen via mouse.
13537
13538\(fn EVENT)" t nil)
4c6bc877
MR
13539
13540(autoload (quote ibuffer-interactive-filter-by-mode) "ibuf-ext" "\
c595cc5f
MR
13541Enable or disable filtering by the major mode at point.
13542
13543\(fn EVENT-OR-POINT)" t nil)
4c6bc877
MR
13544
13545(autoload (quote ibuffer-mouse-toggle-filter-group) "ibuf-ext" "\
c595cc5f
MR
13546Toggle the display status of the filter group chosen with the mouse.
13547
13548\(fn EVENT)" t nil)
4c6bc877
MR
13549
13550(autoload (quote ibuffer-toggle-filter-group) "ibuf-ext" "\
c595cc5f
MR
13551Toggle the display status of the filter group on this line.
13552
13553\(fn)" t nil)
4c6bc877
MR
13554
13555(autoload (quote ibuffer-forward-filter-group) "ibuf-ext" "\
c595cc5f
MR
13556Move point forwards by COUNT filtering groups.
13557
13558\(fn &optional COUNT)" t nil)
4c6bc877
MR
13559
13560(autoload (quote ibuffer-backward-filter-group) "ibuf-ext" "\
c595cc5f
MR
13561Move point backwards by COUNT filtering groups.
13562
13563\(fn &optional COUNT)" t nil)
175a97e4
EZ
13564 (autoload 'ibuffer-do-shell-command-pipe "ibuf-ext")
13565 (autoload 'ibuffer-do-shell-command-pipe-replace "ibuf-ext")
13566 (autoload 'ibuffer-do-shell-command-file "ibuf-ext")
13567 (autoload 'ibuffer-do-eval "ibuf-ext")
13568 (autoload 'ibuffer-do-view-and-eval "ibuf-ext")
13569 (autoload 'ibuffer-do-rename-uniquely "ibuf-ext")
13570 (autoload 'ibuffer-do-revert "ibuf-ext")
13571 (autoload 'ibuffer-do-replace-regexp "ibuf-ext")
13572 (autoload 'ibuffer-do-query-replace "ibuf-ext")
13573 (autoload 'ibuffer-do-query-replace-regexp "ibuf-ext")
13574 (autoload 'ibuffer-do-print "ibuf-ext")
4c6bc877 13575
c595cc5f
MR
13576(autoload (quote ibuffer-included-in-filters-p) "ibuf-ext" "\
13577Not documented
13578
13579\(fn BUF FILTERS)" nil nil)
4c6bc877
MR
13580
13581(autoload (quote ibuffer-filters-to-filter-group) "ibuf-ext" "\
c595cc5f
MR
13582Make the current filters into a filtering group.
13583
13584\(fn NAME)" t nil)
4c6bc877
MR
13585
13586(autoload (quote ibuffer-set-filter-groups-by-mode) "ibuf-ext" "\
c595cc5f
MR
13587Set the current filter groups to filter by mode.
13588
13589\(fn)" t nil)
4c6bc877
MR
13590
13591(autoload (quote ibuffer-pop-filter-group) "ibuf-ext" "\
c595cc5f
MR
13592Remove the first filter group.
13593
13594\(fn)" t nil)
4c6bc877
MR
13595
13596(autoload (quote ibuffer-decompose-filter-group) "ibuf-ext" "\
c595cc5f
MR
13597Decompose the filter group GROUP into active filters.
13598
13599\(fn GROUP)" t nil)
4c6bc877
MR
13600
13601(autoload (quote ibuffer-clear-filter-groups) "ibuf-ext" "\
c595cc5f
MR
13602Remove all filter groups.
13603
13604\(fn)" t nil)
4c6bc877
MR
13605
13606(autoload (quote ibuffer-jump-to-filter-group) "ibuf-ext" "\
c595cc5f
MR
13607Move point to the filter group whose name is NAME.
13608
13609\(fn NAME)" t nil)
4c6bc877
MR
13610
13611(autoload (quote ibuffer-kill-filter-group) "ibuf-ext" "\
13612Kill the filter group named NAME.
c595cc5f
MR
13613The group will be added to `ibuffer-filter-group-kill-ring'.
13614
13615\(fn NAME)" t nil)
4c6bc877
MR
13616
13617(autoload (quote ibuffer-kill-line) "ibuf-ext" "\
13618Kill the filter group at point.
c595cc5f
MR
13619See also `ibuffer-kill-filter-group'.
13620
390069bc 13621\(fn &optional ARG INTERACTIVE-P)" t nil)
4c6bc877
MR
13622
13623(autoload (quote ibuffer-yank) "ibuf-ext" "\
c595cc5f
MR
13624Yank the last killed filter group before group at point.
13625
13626\(fn)" t nil)
4c6bc877
MR
13627
13628(autoload (quote ibuffer-yank-filter-group) "ibuf-ext" "\
c595cc5f
MR
13629Yank the last killed filter group before group named NAME.
13630
13631\(fn NAME)" t nil)
4c6bc877
MR
13632
13633(autoload (quote ibuffer-save-filter-groups) "ibuf-ext" "\
13634Save all active filter groups GROUPS as NAME.
13635They are added to `ibuffer-saved-filter-groups'. Interactively,
c595cc5f
MR
13636prompt for NAME, and use the current filters.
13637
13638\(fn NAME GROUPS)" t nil)
4c6bc877
MR
13639
13640(autoload (quote ibuffer-delete-saved-filter-groups) "ibuf-ext" "\
13641Delete saved filter groups with NAME.
c595cc5f
MR
13642They are removed from `ibuffer-saved-filter-groups'.
13643
13644\(fn NAME)" t nil)
4c6bc877
MR
13645
13646(autoload (quote ibuffer-switch-to-saved-filter-groups) "ibuf-ext" "\
13647Set this buffer's filter groups to saved version with NAME.
13648The value from `ibuffer-saved-filters' is used.
13649If prefix argument ADD is non-nil, then add the saved filters instead
c595cc5f
MR
13650of replacing the current filters.
13651
13652\(fn NAME)" t nil)
4c6bc877
MR
13653
13654(autoload (quote ibuffer-filter-disable) "ibuf-ext" "\
c595cc5f
MR
13655Disable all filters currently in effect in this buffer.
13656
13657\(fn)" t nil)
4c6bc877
MR
13658
13659(autoload (quote ibuffer-pop-filter) "ibuf-ext" "\
c595cc5f
MR
13660Remove the top filter in this buffer.
13661
13662\(fn)" t nil)
4c6bc877
MR
13663
13664(autoload (quote ibuffer-decompose-filter) "ibuf-ext" "\
13665Separate the top compound filter (OR, NOT, or SAVED) in this buffer.
13666
13667This means that the topmost filter on the filtering stack, which must
13668be a complex filter like (OR [name: foo] [mode: bar-mode]), will be
c595cc5f
MR
13669turned into two separate filters [name: foo] and [mode: bar-mode].
13670
13671\(fn)" t nil)
4c6bc877
MR
13672
13673(autoload (quote ibuffer-exchange-filters) "ibuf-ext" "\
c595cc5f
MR
13674Exchange the top two filters on the stack in this buffer.
13675
13676\(fn)" t nil)
4c6bc877
MR
13677
13678(autoload (quote ibuffer-negate-filter) "ibuf-ext" "\
c595cc5f
MR
13679Negate the sense of the top filter in the current buffer.
13680
13681\(fn)" t nil)
4c6bc877
MR
13682
13683(autoload (quote ibuffer-or-filter) "ibuf-ext" "\
13684Replace the top two filters in this buffer with their logical OR.
13685If optional argument REVERSE is non-nil, instead break the top OR
c595cc5f
MR
13686filter into parts.
13687
13688\(fn &optional REVERSE)" t nil)
4c6bc877
MR
13689
13690(autoload (quote ibuffer-save-filters) "ibuf-ext" "\
13691Save FILTERS in this buffer with name NAME in `ibuffer-saved-filters'.
c595cc5f
MR
13692Interactively, prompt for NAME, and use the current filters.
13693
13694\(fn NAME FILTERS)" t nil)
4c6bc877
MR
13695
13696(autoload (quote ibuffer-delete-saved-filters) "ibuf-ext" "\
c595cc5f
MR
13697Delete saved filters with NAME from `ibuffer-saved-filters'.
13698
13699\(fn NAME)" t nil)
4c6bc877
MR
13700
13701(autoload (quote ibuffer-add-saved-filters) "ibuf-ext" "\
c595cc5f
MR
13702Add saved filters from `ibuffer-saved-filters' to this buffer's filters.
13703
13704\(fn NAME)" t nil)
4c6bc877
MR
13705
13706(autoload (quote ibuffer-switch-to-saved-filters) "ibuf-ext" "\
13707Set this buffer's filters to filters with NAME from `ibuffer-saved-filters'.
13708If prefix argument ADD is non-nil, then add the saved filters instead
c595cc5f
MR
13709of replacing the current filters.
13710
13711\(fn NAME)" t nil)
175a97e4
EZ
13712 (autoload 'ibuffer-filter-by-mode "ibuf-ext")
13713 (autoload 'ibuffer-filter-by-used-mode "ibuf-ext")
13714 (autoload 'ibuffer-filter-by-name "ibuf-ext")
13715 (autoload 'ibuffer-filter-by-filename "ibuf-ext")
13716 (autoload 'ibuffer-filter-by-size-gt "ibuf-ext")
13717 (autoload 'ibuffer-filter-by-size-lt "ibuf-ext")
13718 (autoload 'ibuffer-filter-by-content "ibuf-ext")
13719 (autoload 'ibuffer-filter-by-predicate "ibuf-ext")
4c6bc877
MR
13720
13721(autoload (quote ibuffer-toggle-sorting-mode) "ibuf-ext" "\
13722Toggle the current sorting mode.
13723Default sorting modes are:
13724 Recency - the last time the buffer was viewed
13725 Name - the name of the buffer
13726 Major Mode - the name of the major mode of the buffer
c595cc5f
MR
13727 Size - the size of the buffer
13728
13729\(fn)" t nil)
4c6bc877
MR
13730
13731(autoload (quote ibuffer-invert-sorting) "ibuf-ext" "\
c595cc5f
MR
13732Toggle whether or not sorting is in reverse order.
13733
13734\(fn)" t nil)
175a97e4
EZ
13735 (autoload 'ibuffer-do-sort-by-major-mode "ibuf-ext")
13736 (autoload 'ibuffer-do-sort-by-mode-name "ibuf-ext")
13737 (autoload 'ibuffer-do-sort-by-alphabetic "ibuf-ext")
13738 (autoload 'ibuffer-do-sort-by-size "ibuf-ext")
4c6bc877
MR
13739
13740(autoload (quote ibuffer-bs-show) "ibuf-ext" "\
c595cc5f
MR
13741Emulate `bs-show' from the bs.el package.
13742
13743\(fn)" t nil)
4c6bc877
MR
13744
13745(autoload (quote ibuffer-add-to-tmp-hide) "ibuf-ext" "\
13746Add REGEXP to `ibuffer-tmp-hide-regexps'.
13747This means that buffers whose name matches REGEXP will not be shown
0c72a1a2 13748for this Ibuffer session.
c595cc5f
MR
13749
13750\(fn REGEXP)" t nil)
4c6bc877
MR
13751
13752(autoload (quote ibuffer-add-to-tmp-show) "ibuf-ext" "\
13753Add REGEXP to `ibuffer-tmp-show-regexps'.
13754This means that buffers whose name matches REGEXP will always be shown
0c72a1a2 13755for this Ibuffer session.
c595cc5f
MR
13756
13757\(fn REGEXP)" t nil)
4c6bc877
MR
13758
13759(autoload (quote ibuffer-forward-next-marked) "ibuf-ext" "\
13760Move forward by COUNT marked buffers (default 1).
13761
13762If MARK is non-nil, it should be a character denoting the type of mark
13763to move by. The default is `ibuffer-marked-char'.
13764
13765If DIRECTION is non-nil, it should be an integer; negative integers
c595cc5f
MR
13766mean move backwards, non-negative integers mean move forwards.
13767
13768\(fn &optional COUNT MARK DIRECTION)" t nil)
4c6bc877
MR
13769
13770(autoload (quote ibuffer-backwards-next-marked) "ibuf-ext" "\
13771Move backwards by COUNT marked buffers (default 1).
13772
13773If MARK is non-nil, it should be a character denoting the type of mark
c595cc5f
MR
13774to move by. The default is `ibuffer-marked-char'.
13775
13776\(fn &optional COUNT MARK)" t nil)
4c6bc877
MR
13777
13778(autoload (quote ibuffer-do-kill-lines) "ibuf-ext" "\
c595cc5f
MR
13779Hide all of the currently marked lines.
13780
13781\(fn)" t nil)
4c6bc877
MR
13782
13783(autoload (quote ibuffer-jump-to-buffer) "ibuf-ext" "\
c595cc5f
MR
13784Move point to the buffer whose name is NAME.
13785
390069bc
AS
13786If called interactively, prompt for a buffer name and go to the
13787corresponding line in the Ibuffer buffer. If said buffer is in a
13788hidden group filter, open it.
13789
13790If `ibuffer-jump-offer-only-visible-buffers' is non-nil, only offer
13791visible buffers in the completion list. Calling the command with
13792a prefix argument reverses the meaning of that variable.
13793
c595cc5f 13794\(fn NAME)" t nil)
4c6bc877
MR
13795
13796(autoload (quote ibuffer-diff-with-file) "ibuf-ext" "\
13797View the differences between this buffer and its associated file.
c595cc5f
MR
13798This requires the external program \"diff\" to be in your `exec-path'.
13799
13800\(fn)" t nil)
4c6bc877
MR
13801
13802(autoload (quote ibuffer-copy-filename-as-kill) "ibuf-ext" "\
13803Copy filenames of marked buffers into the kill ring.
821b278f 13804
4c6bc877
MR
13805The names are separated by a space.
13806If a buffer has no filename, it is ignored.
4c6bc877 13807
821b278f
MR
13808With no prefix arg, use the filename sans its directory of each marked file.
13809With a zero prefix arg, use the complete filename of each marked file.
13810With \\[universal-argument], use the filename of each marked file relative
13811to `ibuffer-default-directory' iff non-nil, otherwise `default-directory'.
4c6bc877 13812
821b278f 13813You can then feed the file name(s) to other commands with \\[yank].
c595cc5f
MR
13814
13815\(fn &optional ARG)" t nil)
4c6bc877
MR
13816
13817(autoload (quote ibuffer-mark-by-name-regexp) "ibuf-ext" "\
c595cc5f
MR
13818Mark all buffers whose name matches REGEXP.
13819
13820\(fn REGEXP)" t nil)
4c6bc877
MR
13821
13822(autoload (quote ibuffer-mark-by-mode-regexp) "ibuf-ext" "\
c595cc5f
MR
13823Mark all buffers whose major mode matches REGEXP.
13824
13825\(fn REGEXP)" t nil)
4c6bc877
MR
13826
13827(autoload (quote ibuffer-mark-by-file-name-regexp) "ibuf-ext" "\
c595cc5f
MR
13828Mark all buffers whose file name matches REGEXP.
13829
13830\(fn REGEXP)" t nil)
4c6bc877
MR
13831
13832(autoload (quote ibuffer-mark-by-mode) "ibuf-ext" "\
c595cc5f
MR
13833Mark all buffers whose major mode equals MODE.
13834
13835\(fn MODE)" t nil)
4c6bc877
MR
13836
13837(autoload (quote ibuffer-mark-modified-buffers) "ibuf-ext" "\
c595cc5f
MR
13838Mark all modified buffers.
13839
13840\(fn)" t nil)
4c6bc877
MR
13841
13842(autoload (quote ibuffer-mark-unsaved-buffers) "ibuf-ext" "\
c595cc5f
MR
13843Mark all modified buffers that have an associated file.
13844
13845\(fn)" t nil)
4c6bc877
MR
13846
13847(autoload (quote ibuffer-mark-dissociated-buffers) "ibuf-ext" "\
c595cc5f
MR
13848Mark all buffers whose associated file does not exist.
13849
13850\(fn)" t nil)
4c6bc877
MR
13851
13852(autoload (quote ibuffer-mark-help-buffers) "ibuf-ext" "\
c595cc5f
MR
13853Mark buffers like *Help*, *Apropos*, *Info*.
13854
13855\(fn)" t nil)
4c6bc877 13856
c1a055ca
EZ
13857(autoload (quote ibuffer-mark-compressed-file-buffers) "ibuf-ext" "\
13858Mark buffers whose associated file is compressed.
13859
13860\(fn)" t nil)
13861
4c6bc877 13862(autoload (quote ibuffer-mark-old-buffers) "ibuf-ext" "\
c595cc5f
MR
13863Mark buffers which have not been viewed in `ibuffer-old-time' days.
13864
13865\(fn)" t nil)
4c6bc877
MR
13866
13867(autoload (quote ibuffer-mark-special-buffers) "ibuf-ext" "\
c595cc5f
MR
13868Mark all buffers whose name begins and ends with '*'.
13869
13870\(fn)" t nil)
4c6bc877
MR
13871
13872(autoload (quote ibuffer-mark-read-only-buffers) "ibuf-ext" "\
c595cc5f
MR
13873Mark all read-only buffers.
13874
13875\(fn)" t nil)
4c6bc877
MR
13876
13877(autoload (quote ibuffer-mark-dired-buffers) "ibuf-ext" "\
c595cc5f
MR
13878Mark all `dired' buffers.
13879
13880\(fn)" t nil)
4c6bc877
MR
13881
13882(autoload (quote ibuffer-do-occur) "ibuf-ext" "\
13883View lines which match REGEXP in all marked buffers.
13884Optional argument NLINES says how many lines of context to display: it
c595cc5f
MR
13885defaults to one.
13886
13887\(fn REGEXP &optional NLINES)" t nil)
4c6bc877
MR
13888
13889;;;***
13890\f
13891;;;### (autoloads (define-ibuffer-filter define-ibuffer-op define-ibuffer-sorter
a5805c9d
KL
13892;;;;;; define-ibuffer-column) "ibuf-macs" "ibuf-macs.el" (17279
13893;;;;;; 27171))
4c6bc877
MR
13894;;; Generated autoloads from ibuf-macs.el
13895
13896(autoload (quote define-ibuffer-column) "ibuf-macs" "\
13897Define a column SYMBOL for use with `ibuffer-formats'.
13898
13899BODY will be called with `buffer' bound to the buffer object, and
13900`mark' bound to the current mark on the buffer. The original ibuffer
13901buffer will be bound to `ibuffer-buf'.
13902
13903If NAME is given, it will be used as a title for the column.
13904Otherwise, the title will default to a capitalized version of the
13905SYMBOL's name. PROPS is a plist of additional properties to add to
13906the text, such as `mouse-face'. And SUMMARIZER, if given, is a
13907function which will be passed a list of all the strings in its column;
13908it should return a string to display at the bottom.
13909
13910Note that this macro expands into a `defun' for a function named
13911ibuffer-make-column-NAME. If INLINE is non-nil, then the form will be
13912inlined into the compiled format versions. This means that if you
13913change its definition, you should explicitly call
c595cc5f
MR
13914`ibuffer-recompile-formats'.
13915
390069bc 13916\(fn SYMBOL (&key NAME INLINE PROPS SUMMARIZER) &rest BODY)" nil (quote macro))
4c6bc877
MR
13917
13918(autoload (quote define-ibuffer-sorter) "ibuf-macs" "\
13919Define a method of sorting named NAME.
13920DOCUMENTATION is the documentation of the function, which will be called
13921`ibuffer-do-sort-by-NAME'.
13922DESCRIPTION is a short string describing the sorting method.
13923
13924For sorting, the forms in BODY will be evaluated with `a' bound to one
13925buffer object, and `b' bound to another. BODY should return a non-nil
c595cc5f
MR
13926value if and only if `a' is \"less than\" `b'.
13927
390069bc 13928\(fn NAME DOCUMENTATION (&key DESCRIPTION) &rest BODY)" nil (quote macro))
4c6bc877
MR
13929
13930(autoload (quote define-ibuffer-op) "ibuf-macs" "\
13931Generate a function which operates on a buffer.
13932OP becomes the name of the function; if it doesn't begin with
13933`ibuffer-do-', then that is prepended to it.
13934When an operation is performed, this function will be called once for
13935each marked buffer, with that buffer current.
13936
13937ARGS becomes the formal parameters of the function.
13938DOCUMENTATION becomes the docstring of the function.
13939INTERACTIVE becomes the interactive specification of the function.
13940MARK describes which type of mark (:deletion, or nil) this operation
13941uses. :deletion means the function operates on buffers marked for
13942deletion, otherwise it acts on normally marked buffers.
13943MODIFIER-P describes how the function modifies buffers. This is used
13944to set the modification flag of the Ibuffer buffer itself. Valid
13945values are:
13946 nil - the function never modifiers buffers
13947 t - the function it always modifies buffers
13948 :maybe - attempt to discover this information by comparing the
13949 buffer's modification flag.
13950DANGEROUS is a boolean which should be set if the user should be
13951prompted before performing this operation.
13952OPSTRING is a string which will be displayed to the user after the
13953operation is complete, in the form:
13954 \"Operation complete; OPSTRING x buffers\"
13955ACTIVE-OPSTRING is a string which will be displayed to the user in a
13956confirmation message, in the form:
13957 \"Really ACTIVE-OPSTRING x buffers?\"
13958COMPLEX means this function is special; see the source code of this
c595cc5f
MR
13959macro for exactly what it does.
13960
390069bc 13961\(fn OP ARGS DOCUMENTATION (&key INTERACTIVE MARK MODIFIER-P DANGEROUS OPSTRING ACTIVE-OPSTRING COMPLEX) &rest BODY)" nil (quote macro))
4c6bc877
MR
13962
13963(autoload (quote define-ibuffer-filter) "ibuf-macs" "\
13964Define a filter named NAME.
13965DOCUMENTATION is the documentation of the function.
13966READER is a form which should read a qualifier from the user.
13967DESCRIPTION is a short string describing the filter.
13968
13969BODY should contain forms which will be evaluated to test whether or
13970not a particular buffer should be displayed or not. The forms in BODY
13971will be evaluated with BUF bound to the buffer object, and QUALIFIER
c595cc5f
MR
13972bound to the current value of the filter.
13973
390069bc 13974\(fn NAME DOCUMENTATION (&key READER DESCRIPTION) &rest BODY)" nil (quote macro))
4c6bc877
MR
13975
13976;;;***
13977\f
13978;;;### (autoloads (ibuffer ibuffer-other-window ibuffer-list-buffers)
a5805c9d 13979;;;;;; "ibuffer" "ibuffer.el" (17379 30025))
4c6bc877
MR
13980;;; Generated autoloads from ibuffer.el
13981
13982(autoload (quote ibuffer-list-buffers) "ibuffer" "\
13983Display a list of buffers, in another window.
13984If optional argument FILES-ONLY is non-nil, then add a filter for
c595cc5f
MR
13985buffers which are visiting a file.
13986
13987\(fn &optional FILES-ONLY)" t nil)
4c6bc877
MR
13988
13989(autoload (quote ibuffer-other-window) "ibuffer" "\
13990Like `ibuffer', but displayed in another window by default.
13991If optional argument FILES-ONLY is non-nil, then add a filter for
c595cc5f
MR
13992buffers which are visiting a file.
13993
13994\(fn &optional FILES-ONLY)" t nil)
4c6bc877
MR
13995
13996(autoload (quote ibuffer) "ibuffer" "\
0ef3cc90 13997Begin using Ibuffer to edit a list of buffers.
4c6bc877
MR
13998Type 'h' after entering ibuffer for more information.
13999
0ef3cc90
LT
14000All arguments are optional.
14001OTHER-WINDOW-P says to use another window.
14002NAME specifies the name of the buffer (defaults to \"*Ibuffer*\").
14003QUALIFIERS is an initial set of filtering qualifiers to use;
14004 see `ibuffer-filtering-qualifiers'.
14005NOSELECT means don't select the Ibuffer buffer.
14006SHRINK means shrink the buffer to minimal size. The special
14007 value `onewindow' means always use another window.
14008FILTER-GROUPS is an initial set of filtering groups to use;
14009 see `ibuffer-filter-groups'.
14010FORMATS is the value to use for `ibuffer-formats'.
14011 If specified, then the variable `ibuffer-formats' will have
14012 that value locally in this buffer.
c595cc5f
MR
14013
14014\(fn &optional OTHER-WINDOW-P NAME QUALIFIERS NOSELECT SHRINK FILTER-GROUPS FORMATS)" t nil)
4c6bc877
MR
14015
14016;;;***
14017\f
be65bdd3
AS
14018;;;### (autoloads (icalendar-import-buffer icalendar-import-file
14019;;;;;; icalendar-export-region icalendar-export-file) "icalendar"
a5805c9d 14020;;;;;; "calendar/icalendar.el" (17279 27196))
be65bdd3
AS
14021;;; Generated autoloads from calendar/icalendar.el
14022
14023(autoload (quote icalendar-export-file) "icalendar" "\
14024Export diary file to iCalendar format.
14025All diary entries in the file DIARY-FILENAME are converted to iCalendar
14026format. The result is appended to the file ICAL-FILENAME.
14027
14028\(fn DIARY-FILENAME ICAL-FILENAME)" t nil)
14029
14030(autoload (quote icalendar-export-region) "icalendar" "\
14031Export region in diary file to iCalendar format.
14032All diary entries in the region from MIN to MAX in the current buffer are
14033converted to iCalendar format. The result is appended to the file
14034ICAL-FILENAME.
14035This function attempts to return t if something goes wrong. In this
14036case an error string which describes all the errors and problems is
14037written into the buffer `*icalendar-errors*'.
14038
14039\(fn MIN MAX ICAL-FILENAME)" t nil)
14040
14041(autoload (quote icalendar-import-file) "icalendar" "\
175a97e4 14042Import an iCalendar file and append to a diary file.
be65bdd3
AS
14043Argument ICAL-FILENAME output iCalendar file.
14044Argument DIARY-FILENAME input `diary-file'.
14045Optional argument NON-MARKING determines whether events are created as
14046non-marking or not.
14047
14048\(fn ICAL-FILENAME DIARY-FILENAME &optional NON-MARKING)" t nil)
14049
14050(autoload (quote icalendar-import-buffer) "icalendar" "\
14051Extract iCalendar events from current buffer.
14052
14053This function searches the current buffer for the first iCalendar
14054object, reads it and adds all VEVENT elements to the diary
14055DIARY-FILE.
14056
14057It will ask for each appointment whether to add it to the diary
14058when DO-NOT-ASK is non-nil. When called interactively,
14059DO-NOT-ASK is set to t, so that you are asked fore each event.
14060
14061NON-MARKING determines whether diary events are created as
14062non-marking.
14063
14064Return code t means that importing worked well, return code nil
14065means that an error has occured. Error messages will be in the
14066buffer `*icalendar-errors*'.
14067
14068\(fn &optional DIARY-FILE DO-NOT-ASK NON-MARKING)" t nil)
14069
14070;;;***
14071\f
a5805c9d
KL
14072;;;### (autoloads (icomplete-mode) "icomplete" "icomplete.el" (17279
14073;;;;;; 27123))
93548d2e
DL
14074;;; Generated autoloads from icomplete.el
14075
be65bdd3
AS
14076(defvar icomplete-mode nil "\
14077Non-nil if Icomplete mode is enabled.
14078See the command `icomplete-mode' for a description of this minor-mode.
14079Setting this variable directly does not take effect;
14080use either \\[customize] or the function `icomplete-mode'.")
14081
14082(custom-autoload (quote icomplete-mode) "icomplete")
14083
ac09dc1e
KL
14084(put (quote icomplete-mode) (quote custom-set) (quote custom-set-minor-mode))
14085
93548d2e 14086(autoload (quote icomplete-mode) "icomplete" "\
f383cd0d 14087Toggle incremental minibuffer completion for this Emacs session.
c595cc5f
MR
14088With a numeric argument, turn Icomplete mode on iff ARG is positive.
14089
14090\(fn &optional ARG)" t nil)
93548d2e 14091
93548d2e
DL
14092;;;***
14093\f
a5805c9d 14094;;;### (autoloads (icon-mode) "icon" "progmodes/icon.el" (17279 27203))
93548d2e
DL
14095;;; Generated autoloads from progmodes/icon.el
14096
14097(autoload (quote icon-mode) "icon" "\
14098Major mode for editing Icon code.
14099Expression and list commands understand all Icon brackets.
14100Tab indents for Icon code.
14101Paragraphs are separated by blank lines only.
14102Delete converts tabs to spaces as it moves back.
14103\\{icon-mode-map}
14104Variables controlling indentation style:
14105 icon-tab-always-indent
14106 Non-nil means TAB in Icon mode should always reindent the current line,
14107 regardless of where in the line point is when the TAB command is used.
14108 icon-auto-newline
14109 Non-nil means automatically newline before and after braces
14110 inserted in Icon code.
14111 icon-indent-level
14112 Indentation of Icon statements within surrounding block.
14113 The surrounding block's indentation is the indentation
14114 of the line on which the open-brace appears.
14115 icon-continued-statement-offset
14116 Extra indentation given to a substatement, such as the
14117 then-clause of an if or body of a while.
14118 icon-continued-brace-offset
14119 Extra indentation given to a brace that starts a substatement.
14120 This is in addition to `icon-continued-statement-offset'.
14121 icon-brace-offset
14122 Extra indentation for line if it starts with an open brace.
14123 icon-brace-imaginary-offset
14124 An open brace following other text is treated as if it were
14125 this far to the right of the start of its line.
14126
14127Turning on Icon mode calls the value of the variable `icon-mode-hook'
c595cc5f
MR
14128with no args, if that value is non-nil.
14129
14130\(fn)" t nil)
93548d2e
DL
14131
14132;;;***
14133\f
0a352cd7 14134;;;### (autoloads (idlwave-shell) "idlw-shell" "progmodes/idlw-shell.el"
a5805c9d 14135;;;;;; (17307 17625))
0a352cd7
GM
14136;;; Generated autoloads from progmodes/idlw-shell.el
14137
14138(autoload (quote idlwave-shell) "idlw-shell" "\
14139Run an inferior IDL, with I/O through buffer `(idlwave-shell-buffer)'.
14140If buffer exists but shell process is not running, start new IDL.
14141If buffer exists and shell process is running, just switch to the buffer.
14142
14143When called with a prefix ARG, or when `idlwave-shell-use-dedicated-frame'
14144is non-nil, the shell buffer and the source buffers will be in
14145separate frames.
14146
87bb8d21
MR
14147The command to run comes from variable `idlwave-shell-explicit-file-name',
14148with options taken from `idlwave-shell-command-line-options'.
0a352cd7
GM
14149
14150The buffer is put in `idlwave-shell-mode', providing commands for sending
14151input and controlling the IDL job. See help on `idlwave-shell-mode'.
14152See also the variable `idlwave-shell-prompt-pattern'.
14153
c595cc5f
MR
14154\(Type \\[describe-mode] in the shell buffer for a list of commands.)
14155
14156\(fn &optional ARG QUICK)" t nil)
0a352cd7
GM
14157
14158;;;***
14159\f
6448a6b3 14160;;;### (autoloads (idlwave-mode) "idlwave" "progmodes/idlwave.el"
a5805c9d 14161;;;;;; (17279 27203))
6448a6b3
GM
14162;;; Generated autoloads from progmodes/idlwave.el
14163
14164(autoload (quote idlwave-mode) "idlwave" "\
ac09dc1e 14165Major mode for editing IDL source files (version 5.7_22).
6448a6b3
GM
14166
14167The main features of this mode are
14168
141691. Indentation and Formatting
14170 --------------------------
14171 Like other Emacs programming modes, C-j inserts a newline and indents.
14172 TAB is used for explicit indentation of the current line.
14173
87bb8d21
MR
14174 To start a continuation line, use \\[idlwave-split-line]. This
14175 function can also be used in the middle of a line to split the line
14176 at that point. When used inside a long constant string, the string
14177 is split at that point with the `+' concatenation operator.
6448a6b3
GM
14178
14179 Comments are indented as follows:
14180
14181 `;;;' Indentation remains unchanged.
14182 `;;' Indent like the surrounding code
14183 `;' Indent to a minimum column.
14184
14185 The indentation of comments starting in column 0 is never changed.
14186
87bb8d21
MR
14187 Use \\[idlwave-fill-paragraph] to refill a paragraph inside a
14188 comment. The indentation of the second line of the paragraph
14189 relative to the first will be retained. Use
14190 \\[idlwave-auto-fill-mode] to toggle auto-fill mode for these
14191 comments. When the variable `idlwave-fill-comment-line-only' is
390069bc 14192 nil, code can also be auto-filled and auto-indented.
6448a6b3
GM
14193
14194 To convert pre-existing IDL code to your formatting style, mark the
87bb8d21
MR
14195 entire buffer with \\[mark-whole-buffer] and execute
14196 \\[idlwave-expand-region-abbrevs]. Then mark the entire buffer
14197 again followed by \\[indent-region] (`indent-region').
6448a6b3
GM
14198
141992. Routine Info
14200 ------------
87bb8d21
MR
14201 IDLWAVE displays information about the calling sequence and the
14202 accepted keyword parameters of a procedure or function with
14203 \\[idlwave-routine-info]. \\[idlwave-find-module] jumps to the
14204 source file of a module. These commands know about system
14205 routines, all routines in idlwave-mode buffers and (when the
14206 idlwave-shell is active) about all modules currently compiled under
390069bc
AS
14207 this shell. It also makes use of pre-compiled or custom-scanned
14208 user and library catalogs many popular libraries ship with by
14209 default. Use \\[idlwave-update-routine-info] to update this
abb2db1c
GM
14210 information, which is also used for completion (see item 4).
14211
142123. Online IDL Help
14213 ---------------
14214 \\[idlwave-context-help] displays the IDL documentation relevant
390069bc
AS
14215 for the system variable, keyword, or routine at point. A single
14216 key stroke gets you directly to the right place in the docs. The
14217 HTML help files package must be installed for this to work -- check
14218 the IDLWAVE webpage for the correct package for your version. See
14219 the manual to configure where and how the HTML help is displayed.
6448a6b3 14220
abb2db1c 142214. Completion
6448a6b3 14222 ----------
abb2db1c 14223 \\[idlwave-complete] completes the names of procedures, functions
390069bc
AS
14224 class names, keyword parameters, system variables and tags, class
14225 tags, structure tags, filenames and much more. It is context
14226 sensitive and figures out what is expected at point. Lower case
14227 strings are completed in lower case, other strings in mixed or
14228 upper case.
6448a6b3 14229
abb2db1c 142305. Code Templates and Abbreviations
6448a6b3
GM
14231 --------------------------------
14232 Many Abbreviations are predefined to expand to code fragments and templates.
14233 The abbreviations start generally with a `\\`. Some examples
14234
14235 \\pr PROCEDURE template
14236 \\fu FUNCTION template
14237 \\c CASE statement template
ac95a621 14238 \\sw SWITCH statement template
6448a6b3
GM
14239 \\f FOR loop template
14240 \\r REPEAT Loop template
14241 \\w WHILE loop template
14242 \\i IF statement template
14243 \\elif IF-ELSE statement template
14244 \\b BEGIN
d66d64bc 14245
390069bc
AS
14246 For a full list, use \\[idlwave-list-abbrevs]. Some templates also
14247 have direct keybindings - see the list of keybindings below.
c595cc5f 14248
390069bc
AS
14249 \\[idlwave-doc-header] inserts a documentation header at the
14250 beginning of the current program unit (pro, function or main).
14251 Change log entries can be added to the current program unit with
14252 \\[idlwave-doc-modification].
6448a6b3 14253
abb2db1c 142546. Automatic Case Conversion
6448a6b3
GM
14255 -------------------------
14256 The case of reserved words and some abbrevs is controlled by
14257 `idlwave-reserved-word-upcase' and `idlwave-abbrev-change-case'.
14258
abb2db1c 142597. Automatic END completion
6448a6b3
GM
14260 ------------------------
14261 If the variable `idlwave-expand-generic-end' is non-nil, each END typed
14262 will be converted to the specific version, like ENDIF, ENDFOR, etc.
14263
abb2db1c 142648. Hooks
6448a6b3
GM
14265 -----
14266 Loading idlwave.el runs `idlwave-load-hook'.
14267 Turning on `idlwave-mode' runs `idlwave-mode-hook'.
14268
abb2db1c 142699. Documentation and Customization
6448a6b3 14270 -------------------------------
87bb8d21
MR
14271 Info documentation for this package is available. Use
14272 \\[idlwave-info] to display (complain to your sysadmin if that does
14273 not work). For Postscript, PDF, and HTML versions of the
14274 documentation, check IDLWAVE's homepage at `http://idlwave.org'.
6448a6b3
GM
14275 IDLWAVE has customize support - see the group `idlwave'.
14276
abb2db1c 1427710.Keybindings
6448a6b3
GM
14278 -----------
14279 Here is a list of all keybindings of this mode.
14280 If some of the key bindings below show with ??, use \\[describe-key]
14281 followed by the key sequence to see what the key sequence does.
14282
c595cc5f
MR
14283\\{idlwave-mode-map}
14284
14285\(fn)" t nil)
390069bc 14286(add-to-list 'auto-mode-alist '("\\.[Pp][Rr][Oo]\\'" . idlwave-mode))
6448a6b3
GM
14287
14288;;;***
14289\f
390069bc
AS
14290;;;### (autoloads (ido-completing-read ido-read-directory-name ido-read-file-name
14291;;;;;; ido-read-buffer ido-dired ido-insert-file ido-write-file
14292;;;;;; ido-find-file-other-frame ido-display-file ido-find-file-read-only-other-frame
14293;;;;;; ido-find-file-read-only-other-window ido-find-file-read-only
14294;;;;;; ido-find-alternate-file ido-find-file-other-window ido-find-file
14295;;;;;; ido-find-file-in-dir ido-switch-buffer-other-frame ido-insert-buffer
14296;;;;;; ido-kill-buffer ido-display-buffer ido-switch-buffer-other-window
a5805c9d
KL
14297;;;;;; ido-switch-buffer ido-mode ido-mode) "ido" "ido.el" (17308
14298;;;;;; 43140))
4c6bc877
MR
14299;;; Generated autoloads from ido.el
14300
14301(defvar ido-mode nil "\
14302Determines for which functional group (buffer and files) ido behavior
d66d64bc 14303should be enabled. The following values are possible:
821b278f
MR
14304- `buffer': Turn only on ido buffer behavior (switching, killing,
14305 displaying...)
14306- `file': Turn only on ido file behavior (finding, writing, inserting...)
14307- `both': Turn on ido buffer and file behavior.
14308- `nil': Turn off any ido switching.
4c6bc877
MR
14309
14310Setting this variable directly does not take effect;
14311use either \\[customize] or the function `ido-mode'.")
14312
9c46b00a 14313(custom-autoload (quote ido-mode) "ido")
4c6bc877
MR
14314
14315(autoload (quote ido-mode) "ido" "\
14316Toggle ido speed-ups on or off.
14317With ARG, turn ido speed-up on if arg is positive, off otherwise.
0c72a1a2
MR
14318Turning on ido-mode will remap (via a minor-mode keymap) the default
14319keybindings for the `find-file' and `switch-to-buffer' families of
14320commands to the ido versions of these functions.
14321However, if ARG arg equals 'files, remap only commands for files, or
14322if it equals 'buffers, remap only commands for buffer switching.
c595cc5f
MR
14323This function also adds a hook to the minibuffer.
14324
0c72a1a2 14325\(fn &optional ARG)" t nil)
4c6bc877 14326
4c6bc877
MR
14327(autoload (quote ido-switch-buffer) "ido" "\
14328Switch to another buffer.
14329The buffer is displayed according to `ido-default-buffer-method' -- the
14330default is to show it in the same window, unless it is already visible
14331in another frame.
14332
14333As you type in a string, all of the buffers matching the string are
14334displayed if substring-matching is used (default). Look at
d66d64bc
KL
14335`ido-enable-prefix' and `ido-toggle-prefix'. When you have found the
14336buffer you want, it can then be selected. As you type, most keys have
c1a055ca 14337their normal keybindings, except for the following: \\<ido-buffer-completion-map>
4c6bc877
MR
14338
14339RET Select the buffer at the front of the list of matches. If the
14340list is empty, possibly prompt to create new buffer.
14341
14342\\[ido-select-text] Select the current prompt as the buffer.
14343If no buffer is found, prompt for a new one.
14344
14345\\[ido-next-match] Put the first element at the end of the list.
14346\\[ido-prev-match] Put the last element at the start of the list.
821b278f 14347\\[ido-complete] Complete a common suffix to the current string that
4c6bc877
MR
14348matches all buffers. If there is only one match, select that buffer.
14349If there is no common suffix, show a list of all matching buffers
14350in a separate window.
14351\\[ido-edit-input] Edit input string.
14352\\[ido-fallback-command] Fallback to non-ido version of current command.
14353\\[ido-toggle-regexp] Toggle regexp searching.
14354\\[ido-toggle-prefix] Toggle between substring and prefix matching.
14355\\[ido-toggle-case] Toggle case-sensitive searching of buffer names.
14356\\[ido-completion-help] Show list of matching buffers in separate window.
14357\\[ido-enter-find-file] Drop into ido-find-file.
14358\\[ido-kill-buffer-at-head] Kill buffer at head of buffer list.
c595cc5f
MR
14359\\[ido-toggle-ignore] Toggle ignoring buffers listed in `ido-ignore-buffers'.
14360
14361\(fn)" t nil)
4c6bc877
MR
14362
14363(autoload (quote ido-switch-buffer-other-window) "ido" "\
14364Switch to another buffer and show it in another window.
14365The buffer name is selected interactively by typing a substring.
c595cc5f
MR
14366For details of keybindings, do `\\[describe-function] ido'.
14367
14368\(fn)" t nil)
4c6bc877
MR
14369
14370(autoload (quote ido-display-buffer) "ido" "\
14371Display a buffer in another window but don't select it.
14372The buffer name is selected interactively by typing a substring.
c595cc5f
MR
14373For details of keybindings, do `\\[describe-function] ido'.
14374
14375\(fn)" t nil)
4c6bc877
MR
14376
14377(autoload (quote ido-kill-buffer) "ido" "\
14378Kill a buffer.
14379The buffer name is selected interactively by typing a substring.
c595cc5f
MR
14380For details of keybindings, do `\\[describe-function] ido'.
14381
14382\(fn)" t nil)
4c6bc877
MR
14383
14384(autoload (quote ido-insert-buffer) "ido" "\
14385Insert contents of a buffer in current buffer after point.
14386The buffer name is selected interactively by typing a substring.
c595cc5f
MR
14387For details of keybindings, do `\\[describe-function] ido'.
14388
14389\(fn)" t nil)
4c6bc877
MR
14390
14391(autoload (quote ido-switch-buffer-other-frame) "ido" "\
14392Switch to another buffer and show it in another frame.
14393The buffer name is selected interactively by typing a substring.
c595cc5f
MR
14394For details of keybindings, do `\\[describe-function] ido'.
14395
14396\(fn)" t nil)
4c6bc877
MR
14397
14398(autoload (quote ido-find-file-in-dir) "ido" "\
c595cc5f
MR
14399Switch to another file starting from DIR.
14400
14401\(fn DIR)" t nil)
4c6bc877
MR
14402
14403(autoload (quote ido-find-file) "ido" "\
14404Edit file with name obtained via minibuffer.
14405The file is displayed according to `ido-default-file-method' -- the
14406default is to show it in the same window, unless it is already
14407visible in another frame.
14408
d66d64bc
KL
14409The file name is selected interactively by typing a substring. As you
14410type in a string, all of the filenames matching the string are displayed
14411if substring-matching is used (default). Look at `ido-enable-prefix' and
14412`ido-toggle-prefix'. When you have found the filename you want, it can
14413then be selected. As you type, most keys have their normal keybindings,
c1a055ca 14414except for the following: \\<ido-file-completion-map>
4c6bc877
MR
14415
14416RET Select the file at the front of the list of matches. If the
14417list is empty, possibly prompt to create new file.
14418
14419\\[ido-select-text] Select the current prompt as the buffer or file.
14420If no buffer or file is found, prompt for a new one.
14421
14422\\[ido-next-match] Put the first element at the end of the list.
14423\\[ido-prev-match] Put the last element at the start of the list.
821b278f 14424\\[ido-complete] Complete a common suffix to the current string that
4c6bc877
MR
14425matches all files. If there is only one match, select that file.
14426If there is no common suffix, show a list of all matching files
14427in a separate window.
821b278f 14428\\[ido-edit-input] Edit input string (including directory).
4c6bc877
MR
14429\\[ido-prev-work-directory] or \\[ido-next-work-directory] go to previous/next directory in work directory history.
14430\\[ido-merge-work-directories] search for file in the work directory history.
14431\\[ido-forget-work-directory] removes current directory from the work directory history.
14432\\[ido-prev-work-file] or \\[ido-next-work-file] cycle through the work file history.
c1a055ca 14433\\[ido-wide-find-file-or-pop-dir] and \\[ido-wide-find-dir-or-delete-dir] prompts and uses find to locate files or directories.
4c6bc877
MR
14434\\[ido-make-directory] prompts for a directory to create in current directory.
14435\\[ido-fallback-command] Fallback to non-ido version of current command.
14436\\[ido-toggle-regexp] Toggle regexp searching.
14437\\[ido-toggle-prefix] Toggle between substring and prefix matching.
14438\\[ido-toggle-case] Toggle case-sensitive searching of file names.
14439\\[ido-toggle-vc] Toggle version control for this file.
14440\\[ido-toggle-literal] Toggle literal reading of this file.
14441\\[ido-completion-help] Show list of matching files in separate window.
c595cc5f
MR
14442\\[ido-toggle-ignore] Toggle ignoring files listed in `ido-ignore-files'.
14443
14444\(fn)" t nil)
4c6bc877
MR
14445
14446(autoload (quote ido-find-file-other-window) "ido" "\
14447Switch to another file and show it in another window.
14448The file name is selected interactively by typing a substring.
c595cc5f
MR
14449For details of keybindings, do `\\[describe-function] ido-find-file'.
14450
14451\(fn)" t nil)
4c6bc877
MR
14452
14453(autoload (quote ido-find-alternate-file) "ido" "\
14454Switch to another file and show it in another window.
14455The file name is selected interactively by typing a substring.
c595cc5f
MR
14456For details of keybindings, do `\\[describe-function] ido-find-file'.
14457
14458\(fn)" t nil)
4c6bc877
MR
14459
14460(autoload (quote ido-find-file-read-only) "ido" "\
14461Edit file read-only with name obtained via minibuffer.
14462The file name is selected interactively by typing a substring.
c595cc5f
MR
14463For details of keybindings, do `\\[describe-function] ido-find-file'.
14464
14465\(fn)" t nil)
4c6bc877
MR
14466
14467(autoload (quote ido-find-file-read-only-other-window) "ido" "\
14468Edit file read-only in other window with name obtained via minibuffer.
14469The file name is selected interactively by typing a substring.
c595cc5f
MR
14470For details of keybindings, do `\\[describe-function] ido-find-file'.
14471
14472\(fn)" t nil)
4c6bc877
MR
14473
14474(autoload (quote ido-find-file-read-only-other-frame) "ido" "\
14475Edit file read-only in other frame with name obtained via minibuffer.
14476The file name is selected interactively by typing a substring.
c595cc5f
MR
14477For details of keybindings, do `\\[describe-function] ido-find-file'.
14478
14479\(fn)" t nil)
4c6bc877
MR
14480
14481(autoload (quote ido-display-file) "ido" "\
14482Display a file in another window but don't select it.
14483The file name is selected interactively by typing a substring.
c595cc5f
MR
14484For details of keybindings, do `\\[describe-function] ido-find-file'.
14485
14486\(fn)" t nil)
4c6bc877
MR
14487
14488(autoload (quote ido-find-file-other-frame) "ido" "\
14489Switch to another file and show it in another frame.
14490The file name is selected interactively by typing a substring.
c595cc5f
MR
14491For details of keybindings, do `\\[describe-function] ido-find-file'.
14492
14493\(fn)" t nil)
4c6bc877
MR
14494
14495(autoload (quote ido-write-file) "ido" "\
14496Write current buffer to a file.
14497The file name is selected interactively by typing a substring.
c595cc5f
MR
14498For details of keybindings, do `\\[describe-function] ido-find-file'.
14499
14500\(fn)" t nil)
4c6bc877
MR
14501
14502(autoload (quote ido-insert-file) "ido" "\
14503Insert contents of file in current buffer.
14504The file name is selected interactively by typing a substring.
c595cc5f
MR
14505For details of keybindings, do `\\[describe-function] ido-find-file'.
14506
14507\(fn)" t nil)
4c6bc877
MR
14508
14509(autoload (quote ido-dired) "ido" "\
14510Call dired the ido way.
14511The directory is selected interactively by typing a substring.
c595cc5f
MR
14512For details of keybindings, do `\\[describe-function] ido-find-file'.
14513
14514\(fn)" t nil)
4c6bc877 14515
390069bc
AS
14516(autoload (quote ido-read-buffer) "ido" "\
14517Ido replacement for the built-in `read-buffer'.
14518Return the name of a buffer selected.
14519PROMPT is the prompt to give to the user. DEFAULT if given is the default
14520buffer to be selected, which will go to the front of the list.
d66d64bc 14521If REQUIRE-MATCH is non-nil, an existing buffer must be selected.
390069bc
AS
14522
14523\(fn PROMPT &optional DEFAULT REQUIRE-MATCH)" nil nil)
14524
4c6bc877 14525(autoload (quote ido-read-file-name) "ido" "\
390069bc 14526Ido replacement for the built-in `read-file-name'.
4c6bc877 14527Read file name, prompting with PROMPT and completing in directory DIR.
c595cc5f
MR
14528See `read-file-name' for additional parameters.
14529
14530\(fn PROMPT &optional DIR DEFAULT-FILENAME MUSTMATCH INITIAL PREDICATE)" nil nil)
4c6bc877
MR
14531
14532(autoload (quote ido-read-directory-name) "ido" "\
390069bc 14533Ido replacement for the built-in `read-directory-name'.
4c6bc877 14534Read directory name, prompting with PROMPT and completing in directory DIR.
390069bc 14535See `read-directory-name' for additional parameters.
c595cc5f
MR
14536
14537\(fn PROMPT &optional DIR DEFAULT-DIRNAME MUSTMATCH INITIAL)" nil nil)
4c6bc877 14538
390069bc
AS
14539(autoload (quote ido-completing-read) "ido" "\
14540Ido replacement for the built-in `completing-read'.
14541Read a string in the minibuffer with ido-style completion.
14542PROMPT is a string to prompt with; normally it ends in a colon and a space.
14543CHOICES is a list of strings which are the possible completions.
14544PREDICATE is currently ignored; it is included to be compatible
14545 with `completing-read'.
14546If REQUIRE-MATCH is non-nil, the user is not allowed to exit unless
14547 the input is (or completes to) an element of CHOICES or is null.
14548 If the input is null, `ido-completing-read' returns DEF, or an empty
14549 string if DEF is nil, regardless of the value of REQUIRE-MATCH.
14550If INITIAL-INPUT is non-nil, insert it in the minibuffer initially,
14551 with point positioned at the end.
14552HIST, if non-nil, specifies a history list.
14553DEF, if non-nil, is the default value.
14554
14555\(fn PROMPT CHOICES &optional PREDICATE REQUIRE-MATCH INITIAL-INPUT HIST DEF)" nil nil)
14556
4c6bc877
MR
14557;;;***
14558\f
a5805c9d 14559;;;### (autoloads (ielm) "ielm" "ielm.el" (17279 27123))
93548d2e
DL
14560;;; Generated autoloads from ielm.el
14561 (add-hook 'same-window-buffer-names "*ielm*")
14562
14563(autoload (quote ielm) "ielm" "\
14564Interactively evaluate Emacs Lisp expressions.
c595cc5f
MR
14565Switches to the buffer `*ielm*', or creates it if it does not exist.
14566
14567\(fn)" t nil)
93548d2e
DL
14568
14569;;;***
14570\f
390069bc 14571;;;### (autoloads (iimage-mode turn-on-iimage-mode) "iimage" "iimage.el"
a5805c9d 14572;;;;;; (17279 27123))
390069bc
AS
14573;;; Generated autoloads from iimage.el
14574
14575(autoload (quote turn-on-iimage-mode) "iimage" "\
14576Unconditionally turn on iimage mode.
14577
14578\(fn)" t nil)
14579
14580(autoload (quote iimage-mode) "iimage" "\
14581Toggle inline image minor mode.
14582
14583\(fn &optional ARG)" t nil)
14584
14585;;;***
14586\f
be65bdd3
AS
14587;;;### (autoloads (defimage find-image remove-images insert-sliced-image
14588;;;;;; insert-image put-image create-image image-type-available-p
175a97e4 14589;;;;;; image-type-from-file-name image-type-from-file-header image-type-from-buffer
a5805c9d 14590;;;;;; image-type-from-data) "image" "image.el" (17279 27196))
93548d2e
DL
14591;;; Generated autoloads from image.el
14592
0a352cd7
GM
14593(autoload (quote image-type-from-data) "image" "\
14594Determine the image type from image data DATA.
14595Value is a symbol specifying the image type or nil if type cannot
c595cc5f
MR
14596be determined.
14597
14598\(fn DATA)" nil nil)
0a352cd7 14599
175a97e4
EZ
14600(autoload (quote image-type-from-buffer) "image" "\
14601Determine the image type from data in the current buffer.
14602Value is a symbol specifying the image type or nil if type cannot
14603be determined.
14604
14605\(fn)" nil nil)
14606
93548d2e
DL
14607(autoload (quote image-type-from-file-header) "image" "\
14608Determine the type of image file FILE from its first few bytes.
14609Value is a symbol specifying the image type, or nil if type cannot
c595cc5f
MR
14610be determined.
14611
14612\(fn FILE)" nil nil)
93548d2e 14613
175a97e4
EZ
14614(autoload (quote image-type-from-file-name) "image" "\
14615Determine the type of image file FILE from its name.
14616Value is a symbol specifying the image type, or nil if type cannot
14617be determined.
14618
14619\(fn FILE)" nil nil)
14620
93548d2e 14621(autoload (quote image-type-available-p) "image" "\
d66d64bc 14622Return non-nil if image type TYPE is available.
c595cc5f
MR
14623Image types are symbols like `xbm' or `jpeg'.
14624
14625\(fn TYPE)" nil nil)
93548d2e
DL
14626
14627(autoload (quote create-image) "image" "\
0a352cd7
GM
14628Create an image.
14629FILE-OR-DATA is an image file name or image data.
93548d2e 14630Optional TYPE is a symbol describing the image type. If TYPE is omitted
0a352cd7
GM
14631or nil, try to determine the image type from its first few bytes
14632of image data. If that doesn't work, and FILE-OR-DATA is a file name,
ac95a621 14633use its file extension as image type.
0a352cd7 14634Optional DATA-P non-nil means FILE-OR-DATA is a string containing image data.
93548d2e 14635Optional PROPS are additional image attributes to assign to the image,
b442e70a 14636like, e.g. `:mask MASK'.
c595cc5f
MR
14637Value is the image created, or nil if images of type TYPE are not supported.
14638
175a97e4
EZ
14639Images should not be larger than specified by `max-image-size'.
14640
c595cc5f 14641\(fn FILE-OR-DATA &optional TYPE DATA-P &rest PROPS)" nil nil)
93548d2e
DL
14642
14643(autoload (quote put-image) "image" "\
7518ed7b 14644Put image IMAGE in front of POS in the current buffer.
93548d2e 14645IMAGE must be an image created with `create-image' or `defimage'.
7518ed7b
GM
14646IMAGE is displayed by putting an overlay into the current buffer with a
14647`before-string' STRING that has a `display' property whose value is the
f75a0f7a 14648image. STRING is defaulted if you omit it.
93548d2e 14649POS may be an integer or marker.
93548d2e
DL
14650AREA is where to display the image. AREA nil or omitted means
14651display it in the text area, a value of `left-margin' means
14652display it in the left marginal area, a value of `right-margin'
c595cc5f
MR
14653means display it in the right marginal area.
14654
14655\(fn IMAGE POS &optional STRING AREA)" nil nil)
93548d2e
DL
14656
14657(autoload (quote insert-image) "image" "\
14658Insert IMAGE into current buffer at point.
7518ed7b 14659IMAGE is displayed by inserting STRING into the current buffer
f75a0f7a
GM
14660with a `display' property whose value is the image. STRING is
14661defaulted if you omit it.
93548d2e
DL
14662AREA is where to display the image. AREA nil or omitted means
14663display it in the text area, a value of `left-margin' means
14664display it in the left marginal area, a value of `right-margin'
c595cc5f 14665means display it in the right marginal area.
390069bc
AS
14666SLICE specifies slice of IMAGE to insert. SLICE nil or omitted
14667means insert whole image. SLICE is a list (X Y WIDTH HEIGHT)
14668specifying the X and Y positions and WIDTH and HEIGHT of image area
14669to insert. A float value 0.0 - 1.0 means relative to the width or
14670height of the image; integer values are taken as pixel values.
c595cc5f 14671
390069bc 14672\(fn IMAGE &optional STRING AREA SLICE)" nil nil)
93548d2e 14673
be65bdd3
AS
14674(autoload (quote insert-sliced-image) "image" "\
14675Insert IMAGE into current buffer at point.
14676IMAGE is displayed by inserting STRING into the current buffer
14677with a `display' property whose value is the image. STRING is
14678defaulted if you omit it.
14679AREA is where to display the image. AREA nil or omitted means
14680display it in the text area, a value of `left-margin' means
14681display it in the left marginal area, a value of `right-margin'
14682means display it in the right marginal area.
14683The image is automatically split into ROW x COLS slices.
14684
14685\(fn IMAGE &optional STRING AREA ROWS COLS)" nil nil)
14686
93548d2e
DL
14687(autoload (quote remove-images) "image" "\
14688Remove images between START and END in BUFFER.
14689Remove only images that were put in BUFFER with calls to `put-image'.
c595cc5f
MR
14690BUFFER nil or omitted means use the current buffer.
14691
14692\(fn START END &optional BUFFER)" nil nil)
93548d2e 14693
7464346d
GM
14694(autoload (quote find-image) "image" "\
14695Find an image, choosing one of a list of image specifications.
14696
f75a0f7a 14697SPECS is a list of image specifications.
7464346d
GM
14698
14699Each image specification in SPECS is a property list. The contents of
14700a specification are image type dependent. All specifications must at
14701least contain the properties `:type TYPE' and either `:file FILE' or
14702`:data DATA', where TYPE is a symbol specifying the image type,
14703e.g. `xbm', FILE is the file to load the image from, and DATA is a
f75a0f7a
GM
14704string containing the actual image data. The specification whose TYPE
14705is supported, and FILE exists, is used to construct the image
14706specification to be returned. Return nil if no specification is
14707satisfied.
14708
175a97e4
EZ
14709The image is looked for in `image-load-path'.
14710
14711Image files should not be larger than specified by `max-image-size'.
c595cc5f
MR
14712
14713\(fn SPECS)" nil nil)
7464346d 14714
93548d2e
DL
14715(autoload (quote defimage) "image" "\
14716Define SYMBOL as an image.
14717
14718SPECS is a list of image specifications. DOC is an optional
14719documentation string.
14720
14721Each image specification in SPECS is a property list. The contents of
14722a specification are image type dependent. All specifications must at
0a352cd7
GM
14723least contain the properties `:type TYPE' and either `:file FILE' or
14724`:data DATA', where TYPE is a symbol specifying the image type,
14725e.g. `xbm', FILE is the file to load the image from, and DATA is a
14726string containing the actual image data. The first image
14727specification whose TYPE is supported, and FILE exists, is used to
14728define SYMBOL.
93548d2e
DL
14729
14730Example:
14731
14732 (defimage test-image ((:type xpm :file \"~/test1.xpm\")
c595cc5f
MR
14733 (:type xbm :file \"~/test1.xbm\")))
14734
14735\(fn SYMBOL SPECS &optional DOC)" nil (quote macro))
93548d2e
DL
14736
14737;;;***
14738\f
0ad84a21
MB
14739;;;### (autoloads (auto-image-file-mode insert-image-file image-file-name-regexp
14740;;;;;; image-file-name-regexps image-file-name-extensions) "image-file"
a5805c9d 14741;;;;;; "image-file.el" (17279 27123))
b442e70a
MB
14742;;; Generated autoloads from image-file.el
14743
8d8d8d4e 14744(defvar image-file-name-extensions (quote ("png" "jpeg" "jpg" "gif" "tiff" "tif" "xbm" "xpm" "pbm" "pgm" "ppm" "pnm")) "\
0ad84a21
MB
14745*A list of image-file filename extensions.
14746Filenames having one of these extensions are considered image files,
14747in addition to those matching `image-file-name-regexps'.
14748
14749See `auto-image-file-mode'; if `auto-image-file-mode' is enabled,
14750setting this variable directly does not take effect unless
8d8d8d4e
EZ
14751`auto-image-file-mode' is re-enabled; this happens automatically when
14752the variable is set using \\[customize].")
0ad84a21 14753
9c46b00a
MR
14754(custom-autoload (quote image-file-name-extensions) "image-file")
14755
0ad84a21
MB
14756(defvar image-file-name-regexps nil "\
14757*List of regexps matching image-file filenames.
14758Filenames matching one of these regexps are considered image files,
14759in addition to those with an extension in `image-file-name-extensions'.
14760
14761See function `auto-image-file-mode'; if `auto-image-file-mode' is
14762enabled, setting this variable directly does not take effect unless
8d8d8d4e
EZ
14763`auto-image-file-mode' is re-enabled; this happens automatically when
14764the variable is set using \\[customize].")
0ad84a21 14765
9c46b00a
MR
14766(custom-autoload (quote image-file-name-regexps) "image-file")
14767
b442e70a 14768(autoload (quote image-file-name-regexp) "image-file" "\
c595cc5f
MR
14769Return a regular expression matching image-file filenames.
14770
14771\(fn)" nil nil)
0ad84a21
MB
14772
14773(autoload (quote insert-image-file) "image-file" "\
14774Insert the image file FILE into the current buffer.
14775Optional arguments VISIT, BEG, END, and REPLACE are interpreted as for
c595cc5f
MR
14776the command `insert-file-contents'.
14777
14778\(fn FILE &optional VISIT BEG END REPLACE)" nil nil)
b442e70a
MB
14779
14780(defvar auto-image-file-mode nil "\
2a55cd3a 14781Non-nil if Auto-Image-File mode is enabled.
bd02b8e0 14782See the command `auto-image-file-mode' for a description of this minor-mode.
b442e70a
MB
14783Setting this variable directly does not take effect;
14784use either \\[customize] or the function `auto-image-file-mode'.")
14785
9c46b00a 14786(custom-autoload (quote auto-image-file-mode) "image-file")
b442e70a 14787
ac09dc1e
KL
14788(put (quote auto-image-file-mode) (quote custom-set) (quote custom-set-minor-mode))
14789
b442e70a
MB
14790(autoload (quote auto-image-file-mode) "image-file" "\
14791Toggle visiting of image files as images.
14792With prefix argument ARG, turn on if positive, otherwise off.
14793Returns non-nil if the new state is enabled.
14794
14795Image files are those whose name has an extension in
14796`image-file-name-extensions', or matches a regexp in
c595cc5f
MR
14797`image-file-name-regexps'.
14798
14799\(fn &optional ARG)" t nil)
b442e70a 14800
b442e70a
MB
14801;;;***
14802\f
d66d64bc 14803;;;### (autoloads (image-mode-maybe image-minor-mode image-mode)
a5805c9d 14804;;;;;; "image-mode" "image-mode.el" (17376 5576))
be65bdd3 14805;;; Generated autoloads from image-mode.el
d66d64bc
KL
14806 (push '("\\.jpe?g\\'" . image-mode) auto-mode-alist)
14807 (push '("\\.png\\'" . image-mode) auto-mode-alist)
14808 (push '("\\.gif\\'" . image-mode) auto-mode-alist)
14809 (push '("\\.tiff?\\'" . image-mode) auto-mode-alist)
14810 (push '("\\.p[bpgn]m\\'" . image-mode) auto-mode-alist)
14811 (push '("\\.x[bp]m\\'" . image-mode-maybe) auto-mode-alist)
be65bdd3
AS
14812
14813(autoload (quote image-mode) "image-mode" "\
14814Major mode for image files.
14815You can use \\<image-mode-map>\\[image-toggle-display]
14816to toggle between display as an image and display as text.
14817
14818\(fn)" t nil)
14819
d66d64bc
KL
14820(autoload (quote image-minor-mode) "image-mode" "\
14821Toggle Image minor mode.
14822With arg, turn Image minor mode on if arg is positive, off otherwise.
14823See the command `image-mode' for more information on this mode.
14824
14825\(fn &optional ARG)" t nil)
14826
14827(autoload (quote image-mode-maybe) "image-mode" "\
14828Set major or minor mode for image files.
14829Set Image major mode only when there are no other major modes
14830associated with a filename in `auto-mode-alist'. When an image
14831filename matches another major mode in `auto-mode-alist' then
14832set that major mode and Image minor mode.
14833
14834See commands `image-mode' and `image-minor-mode' for more
14835information on these modes.
14836
14837\(fn)" t nil)
14838
be65bdd3
AS
14839;;;***
14840\f
93548d2e 14841;;;### (autoloads (imenu imenu-add-menubar-index imenu-add-to-menubar
a5805c9d 14842;;;;;; imenu-sort-function) "imenu" "imenu.el" (17279 27123))
93548d2e
DL
14843;;; Generated autoloads from imenu.el
14844
14845(defvar imenu-sort-function nil "\
14846*The function to use for sorting the index mouse-menu.
14847
14848Affects only the mouse index menu.
14849
14850Set this to nil if you don't want any sorting (faster).
14851The items in the menu are then presented in the order they were found
14852in the buffer.
14853
14854Set it to `imenu--sort-by-name' if you want alphabetic sorting.
14855
14856The function should take two arguments and return t if the first
14857element should come before the second. The arguments are cons cells;
14858\(NAME . POSITION). Look at `imenu--sort-by-name' for an example.")
14859
9c46b00a
MR
14860(custom-autoload (quote imenu-sort-function) "imenu")
14861
93548d2e
DL
14862(defvar imenu-generic-expression nil "\
14863The regex pattern to use for creating a buffer index.
14864
d66d64bc
KL
14865If non-nil this pattern is passed to `imenu--generic-function' to
14866create a buffer index. Look there for the documentation of this
14867pattern's structure.
93548d2e 14868
8d8d8d4e 14869For example, see the value of `fortran-imenu-generic-expression' used by
2a55cd3a
GM
14870`fortran-mode' with `imenu-syntax-alist' set locally to give the
14871characters which normally have \"symbol\" syntax \"word\" syntax
14872during matching.")
93548d2e
DL
14873
14874(make-variable-buffer-local (quote imenu-generic-expression))
14875
14876(defvar imenu-create-index-function (quote imenu-default-create-index-function) "\
14877The function to use for creating a buffer index.
14878
14879It should be a function that takes no arguments and returns an index
14880of the current buffer as an alist.
14881
14882Simple elements in the alist look like (INDEX-NAME . INDEX-POSITION).
14883Special elements look like (INDEX-NAME INDEX-POSITION FUNCTION ARGUMENTS...).
14884A nested sub-alist element looks like (INDEX-NAME SUB-ALIST).
14885The function `imenu--subalist-p' tests an element and returns t
14886if it is a sub-alist.
14887
390069bc 14888This function is called within a `save-excursion'.")
93548d2e
DL
14889
14890(make-variable-buffer-local (quote imenu-create-index-function))
14891
14892(defvar imenu-prev-index-position-function (quote beginning-of-defun) "\
14893Function for finding the next index position.
14894
14895If `imenu-create-index-function' is set to
14896`imenu-default-create-index-function', then you must set this variable
14897to a function that will find the next index, looking backwards in the
14898file.
14899
14900The function should leave point at the place to be connected to the
390069bc 14901index and it should return nil when it doesn't find another index.")
93548d2e
DL
14902
14903(make-variable-buffer-local (quote imenu-prev-index-position-function))
14904
14905(defvar imenu-extract-index-name-function nil "\
14906Function for extracting the index item name, given a position.
14907
14908This function is called after `imenu-prev-index-position-function'
14909finds a position for an index item, with point at that position.
390069bc 14910It should return the name for that index item.")
93548d2e
DL
14911
14912(make-variable-buffer-local (quote imenu-extract-index-name-function))
14913
7518ed7b
GM
14914(defvar imenu-name-lookup-function nil "\
14915Function to compare string with index item.
14916
14917This function will be called with two strings, and should return
14918non-nil if they match.
14919
14920If nil, comparison is done with `string='.
14921Set this to some other function for more advanced comparisons,
14922such as \"begins with\" or \"name matches and number of
390069bc 14923arguments match\".")
7518ed7b
GM
14924
14925(make-variable-buffer-local (quote imenu-name-lookup-function))
14926
93548d2e
DL
14927(defvar imenu-default-goto-function (quote imenu-default-goto-function) "\
14928The default function called when selecting an Imenu item.
14929The function in this variable is called when selecting a normal index-item.")
14930
14931(make-variable-buffer-local (quote imenu-default-goto-function))
14932
efaa080b
GM
14933(make-variable-buffer-local (quote imenu-syntax-alist))
14934
93548d2e
DL
14935(make-variable-buffer-local (quote imenu-case-fold-search))
14936
14937(autoload (quote imenu-add-to-menubar) "imenu" "\
14938Add an `imenu' entry to the menu bar for the current buffer.
14939NAME is a string used to name the menu bar item.
c595cc5f
MR
14940See the command `imenu' for more information.
14941
14942\(fn NAME)" t nil)
93548d2e
DL
14943
14944(autoload (quote imenu-add-menubar-index) "imenu" "\
14945Add an Imenu \"Index\" entry on the menu bar for the current buffer.
14946
c595cc5f
MR
14947A trivial interface to `imenu-add-to-menubar' suitable for use in a hook.
14948
14949\(fn)" t nil)
93548d2e
DL
14950
14951(autoload (quote imenu) "imenu" "\
14952Jump to a place in the buffer chosen using a buffer menu or mouse menu.
14953INDEX-ITEM specifies the position. See `imenu-choose-buffer-index'
c595cc5f
MR
14954for more information.
14955
14956\(fn INDEX-ITEM)" t nil)
93548d2e
DL
14957
14958;;;***
14959\f
4c6bc877
MR
14960;;;### (autoloads (indian-char-glyph indian-glyph-char in-is13194-pre-write-conversion
14961;;;;;; in-is13194-post-read-conversion indian-compose-string indian-compose-region)
a5805c9d 14962;;;;;; "ind-util" "language/ind-util.el" (17342 36796))
4c6bc877
MR
14963;;; Generated autoloads from language/ind-util.el
14964
14965(autoload (quote indian-compose-region) "ind-util" "\
c1a055ca 14966Compose the region according to `composition-function-table'.
c595cc5f
MR
14967
14968\(fn FROM TO)" t nil)
14969
14970(autoload (quote indian-compose-string) "ind-util" "\
14971Not documented
14972
14973\(fn STRING)" nil nil)
4c6bc877 14974
c595cc5f
MR
14975(autoload (quote in-is13194-post-read-conversion) "ind-util" "\
14976Not documented
4c6bc877 14977
c595cc5f 14978\(fn LEN)" nil nil)
4c6bc877 14979
c595cc5f
MR
14980(autoload (quote in-is13194-pre-write-conversion) "ind-util" "\
14981Not documented
14982
14983\(fn FROM TO)" nil nil)
4c6bc877
MR
14984
14985(autoload (quote indian-glyph-char) "ind-util" "\
14986Return character of charset `indian-glyph' made from glyph index INDEX.
14987The variable `indian-default-script' specifies the script of the glyph.
14988Optional argument SCRIPT, if non-nil, overrides `indian-default-script'.
c595cc5f
MR
14989See also the function `indian-char-glyph'.
14990
14991\(fn INDEX &optional SCRIPT)" nil nil)
4c6bc877
MR
14992
14993(autoload (quote indian-char-glyph) "ind-util" "\
14994Return information about the glyph code for CHAR of `indian-glyph' charset.
14995The value is (INDEX . SCRIPT), where INDEX is the glyph index
14996in the font that Indian script name SCRIPT specifies.
c595cc5f
MR
14997See also the function `indian-glyph-char'.
14998
14999\(fn CHAR)" nil nil)
4c6bc877
MR
15000
15001;;;***
15002\f
d66d64bc
KL
15003;;;### (autoloads (inferior-lisp inferior-lisp-prompt inferior-lisp-load-command
15004;;;;;; inferior-lisp-program inferior-lisp-filter-regexp) "inf-lisp"
a5805c9d 15005;;;;;; "progmodes/inf-lisp.el" (17279 27123))
7518ed7b 15006;;; Generated autoloads from progmodes/inf-lisp.el
93548d2e
DL
15007
15008(defvar inferior-lisp-filter-regexp "\\`\\s *\\(:\\(\\w\\|\\s_\\)\\)?\\s *\\'" "\
15009*What not to save on inferior Lisp's input history.
15010Input matching this regexp is not saved on the input history in Inferior Lisp
0ad84a21 15011mode. Default is whitespace followed by 0 or 1 single-letter colon-keyword
93548d2e
DL
15012\(as in :a, :c, etc.)")
15013
d66d64bc
KL
15014(custom-autoload (quote inferior-lisp-filter-regexp) "inf-lisp")
15015
93548d2e 15016(defvar inferior-lisp-program "lisp" "\
d66d64bc
KL
15017*Program name for invoking an inferior Lisp in Inferior Lisp mode.")
15018
15019(custom-autoload (quote inferior-lisp-program) "inf-lisp")
93548d2e
DL
15020
15021(defvar inferior-lisp-load-command "(load \"%s\")\n" "\
15022*Format-string for building a Lisp expression to load a file.
15023This format string should use `%s' to substitute a file name
15024and should result in a Lisp expression that will command the inferior Lisp
15025to load that file. The default works acceptably on most Lisps.
15026The string \"(progn (load \\\"%s\\\" :verbose nil :print t) (values))\\n\"
15027produces cosmetically superior output for this application,
15028but it works only in Common Lisp.")
15029
d66d64bc
KL
15030(custom-autoload (quote inferior-lisp-load-command) "inf-lisp")
15031
93548d2e 15032(defvar inferior-lisp-prompt "^[^> \n]*>+:? *" "\
d66d64bc 15033Regexp to recognize prompts in the Inferior Lisp mode.
93548d2e 15034Defaults to \"^[^> \\n]*>+:? *\", which works pretty good for Lucid, kcl,
0ad84a21 15035and franz. This variable is used to initialize `comint-prompt-regexp' in the
93548d2e
DL
15036Inferior Lisp buffer.
15037
54baed30 15038This variable is only used if the variable
d66d64bc 15039`comint-use-prompt-regexp' is non-nil.
54baed30 15040
93548d2e
DL
15041More precise choices:
15042Lucid Common Lisp: \"^\\\\(>\\\\|\\\\(->\\\\)+\\\\) *\"
15043franz: \"^\\\\(->\\\\|<[0-9]*>:\\\\) *\"
15044kcl: \"^>+ *\"
15045
d66d64bc
KL
15046This is a fine thing to set in your .emacs file or through Custom.")
15047
15048(custom-autoload (quote inferior-lisp-prompt) "inf-lisp")
93548d2e
DL
15049
15050(defvar inferior-lisp-mode-hook (quote nil) "\
15051*Hook for customising Inferior Lisp mode.")
15052
15053(autoload (quote inferior-lisp) "inf-lisp" "\
15054Run an inferior Lisp process, input and output via buffer `*inferior-lisp*'.
15055If there is a process already running in `*inferior-lisp*', just switch
15056to that buffer.
15057With argument, allows you to edit the command line (default is value
15058of `inferior-lisp-program'). Runs the hooks from
15059`inferior-lisp-mode-hook' (after the `comint-mode-hook' is run).
c595cc5f
MR
15060\(Type \\[describe-mode] in the process buffer for a list of commands.)
15061
15062\(fn CMD)" t nil)
93548d2e
DL
15063 (add-hook 'same-window-buffer-names "*inferior-lisp*")
15064
15065(defalias (quote run-lisp) (quote inferior-lisp))
15066
15067;;;***
15068\f
0ef3cc90
LT
15069;;;### (autoloads (Info-speedbar-browser Info-goto-emacs-key-command-node
15070;;;;;; Info-goto-emacs-command-node Info-mode info-apropos Info-index
c1a055ca 15071;;;;;; Info-directory Info-on-current-buffer info-standalone info-emacs-manual
a5805c9d 15072;;;;;; info info-other-window) "info" "info.el" (17383 37904))
93548d2e
DL
15073;;; Generated autoloads from info.el
15074
15075(autoload (quote info-other-window) "info" "\
c595cc5f
MR
15076Like `info' but show the Info buffer in another window.
15077
c1a055ca 15078\(fn &optional FILE-OR-NODE)" t nil)
390069bc
AS
15079 (add-hook 'same-window-regexps "\\*info\\*\\(\\|<[0-9]+>\\)")
15080 (put 'info 'info-file "emacs")
93548d2e
DL
15081
15082(autoload (quote info) "info" "\
15083Enter Info, the documentation browser.
c1a055ca 15084Optional argument FILE-OR-NODE specifies the file to examine;
93548d2e 15085the default is the top-level directory of Info.
c1a055ca 15086Called from a program, FILE-OR-NODE may specify an Info node of the form
7518ed7b 15087`(FILENAME)NODENAME'.
390069bc
AS
15088Optional argument BUFFER specifies the Info buffer name;
15089the default buffer name is *info*. If BUFFER exists,
15090just switch to BUFFER. Otherwise, create a new buffer
15091with the top-level Info directory.
93548d2e 15092
390069bc
AS
15093In interactive use, a non-numeric prefix argument directs
15094this command to read a file name from the minibuffer.
15095A numeric prefix argument selects an Info buffer with the prefix number
15096appended to the Info buffer name.
93548d2e
DL
15097
15098The search path for Info files is in the variable `Info-directory-list'.
f75a0f7a 15099The top-level Info directory is made by combining all the files named `dir'
c595cc5f
MR
15100in all the directories in that path.
15101
c1a055ca 15102\(fn &optional FILE-OR-NODE BUFFER)" t nil)
93548d2e 15103
c595cc5f
MR
15104(autoload (quote info-emacs-manual) "info" "\
15105Display the Emacs manual in Info mode.
15106
15107\(fn)" t nil)
38747ec6 15108
93548d2e
DL
15109(autoload (quote info-standalone) "info" "\
15110Run Emacs as a standalone Info reader.
15111Usage: emacs -f info-standalone [filename]
c595cc5f
MR
15112In standalone mode, \\<Info-mode-map>\\[Info-exit] exits Emacs itself.
15113
15114\(fn)" nil nil)
93548d2e 15115
c1a055ca
EZ
15116(autoload (quote Info-on-current-buffer) "info" "\
15117Use Info mode to browse the current Info buffer.
15118With a prefix arg, this queries for the node name to visit first;
15119otherwise, that defaults to `Top'.
15120
15121\(fn &optional NODENAME)" t nil)
15122
612839b6 15123(autoload (quote Info-directory) "info" "\
c595cc5f
MR
15124Go to the Info directory node.
15125
15126\(fn)" t nil)
612839b6 15127
27a99a7c 15128(autoload (quote Info-index) "info" "\
99155348 15129Look up a string TOPIC in the index for this manual and go to that entry.
27a99a7c
GM
15130If there are no exact matches to the specified topic, this chooses
15131the first match which is a case-insensitive substring of a topic.
390069bc 15132Use the \\<Info-mode-map>\\[Info-index-next] command to see the other matches.
99155348 15133Give an empty topic name to go to the Index node itself.
27a99a7c
GM
15134
15135\(fn TOPIC)" t nil)
15136
390069bc
AS
15137(autoload (quote info-apropos) "info" "\
15138Grovel indices of all known Info files on your system for STRING.
15139Build a menu of the possible matches.
15140
15141\(fn STRING)" t nil)
0ef3cc90
LT
15142
15143(autoload (quote Info-mode) "info" "\
15144Info mode provides commands for browsing through the Info documentation tree.
15145Documentation in Info is divided into \"nodes\", each of which discusses
15146one topic and contains references to other nodes which discuss related
15147topics. Info has commands to follow the references and show you other nodes.
15148
15149\\<Info-mode-map>\\[Info-help] Invoke the Info tutorial.
15150\\[Info-exit] Quit Info: reselect previously selected buffer.
15151
15152Selecting other nodes:
15153\\[Info-mouse-follow-nearest-node]
15154 Follow a node reference you click on.
15155 This works with menu items, cross references, and
15156 the \"next\", \"previous\" and \"up\", depending on where you click.
15157\\[Info-follow-nearest-node] Follow a node reference near point, like \\[Info-mouse-follow-nearest-node].
15158\\[Info-next] Move to the \"next\" node of this node.
15159\\[Info-prev] Move to the \"previous\" node of this node.
15160\\[Info-up] Move \"up\" from this node.
15161\\[Info-menu] Pick menu item specified by name (or abbreviation).
15162 Picking a menu item causes another node to be selected.
15163\\[Info-directory] Go to the Info directory node.
175a97e4
EZ
15164\\[Info-top-node] Go to the Top node of this file.
15165\\[Info-final-node] Go to the final node in this file.
15166\\[Info-backward-node] Go backward one node, considering all nodes as forming one sequence.
15167\\[Info-forward-node] Go forward one node, considering all nodes as forming one sequence.
15168\\[Info-next-reference] Move cursor to next cross-reference or menu item.
15169\\[Info-prev-reference] Move cursor to previous cross-reference or menu item.
0ef3cc90
LT
15170\\[Info-follow-reference] Follow a cross reference. Reads name of reference.
15171\\[Info-history-back] Move back in history to the last node you were at.
15172\\[Info-history-forward] Move forward in history to the node you returned from after using \\[Info-history-back].
15173\\[Info-history] Go to menu of visited nodes.
15174\\[Info-toc] Go to table of contents of the current Info file.
0ef3cc90
LT
15175
15176Moving within a node:
15177\\[Info-scroll-up] Normally, scroll forward a full screen.
15178 Once you scroll far enough in a node that its menu appears on the
15179 screen but after point, the next scroll moves into its first
15180 subnode. When after all menu items (or if there is no menu),
15181 move up to the parent node.
15182\\[Info-scroll-down] Normally, scroll backward. If the beginning of the buffer is
15183 already visible, try to go to the previous menu entry, or up
15184 if there is none.
15185\\[beginning-of-buffer] Go to beginning of node.
15186
15187Advanced commands:
0ef3cc90
LT
15188\\[Info-search] Search through this Info file for specified regexp,
15189 and select the node in which the next occurrence is found.
15190\\[Info-search-case-sensitively] Search through this Info file for specified regexp case-sensitively.
15191\\[Info-search-next] Search for another occurrence of regexp
15192 from a previous \\<Info-mode-map>\\[Info-search] command.
99155348 15193\\[Info-index] Look up a topic in this manual's Index and move to that index entry.
175a97e4
EZ
15194\\[Info-index-next] (comma) Move to the next match from a previous \\<Info-mode-map>\\[Info-index] command.
15195\\[info-apropos] Look for a string in the indices of all manuals.
15196\\[Info-goto-node] Move to node specified by name.
15197 You may include a filename as well, as (FILENAME)NODENAME.
151981 .. 9 Pick first ... ninth item in node's menu.
15199 Every third `*' is highlighted to help pick the right number.
15200\\[Info-copy-current-node-name] Put name of current Info node in the kill ring.
15201\\[clone-buffer] Select a new cloned Info buffer in another window.
15202\\[universal-argument] \\[info] Move to new Info file with completion.
15203\\[universal-argument] N \\[info] Select Info buffer with prefix number in the name *info*<N>.
0ef3cc90
LT
15204
15205\(fn)" nil nil)
390069bc
AS
15206 (put 'Info-goto-emacs-command-node 'info-file "emacs")
15207
93548d2e
DL
15208(autoload (quote Info-goto-emacs-command-node) "info" "\
15209Go to the Info node in the Emacs manual for command COMMAND.
ac95a621 15210The command is found by looking up in Emacs manual's indices
93548d2e 15211or in another manual found via COMMAND's `info-file' property or
390069bc
AS
15212the variable `Info-file-list-for-emacs'.
15213COMMAND must be a symbol or string.
c595cc5f
MR
15214
15215\(fn COMMAND)" t nil)
390069bc 15216 (put 'Info-goto-emacs-key-command-node 'info-file "emacs")
93548d2e
DL
15217
15218(autoload (quote Info-goto-emacs-key-command-node) "info" "\
ac95a621
GM
15219Go to the node in the Emacs manual which describes the command bound to KEY.
15220KEY is a string.
abb2db1c 15221Interactively, if the binding is `execute-extended-command', a command is read.
ac95a621 15222The command is found by looking up in Emacs manual's indices
93548d2e 15223or in another manual found via COMMAND's `info-file' property or
c595cc5f
MR
15224the variable `Info-file-list-for-emacs'.
15225
15226\(fn KEY)" t nil)
93548d2e
DL
15227
15228(autoload (quote Info-speedbar-browser) "info" "\
0ef3cc90 15229Initialize speedbar to display an Info node browser.
c595cc5f
MR
15230This will add a speedbar major display mode.
15231
15232\(fn)" t nil)
93548d2e
DL
15233
15234;;;***
15235\f
15236;;;### (autoloads (info-complete-file info-complete-symbol info-lookup-file
15237;;;;;; info-lookup-symbol info-lookup-reset) "info-look" "info-look.el"
a5805c9d 15238;;;;;; (17279 27123))
93548d2e
DL
15239;;; Generated autoloads from info-look.el
15240
15241(autoload (quote info-lookup-reset) "info-look" "\
15242Throw away all cached data.
15243This command is useful if the user wants to start at the beginning without
15244quitting Emacs, for example, after some Info documents were updated on the
c595cc5f
MR
15245system.
15246
15247\(fn)" t nil)
390069bc 15248 (put 'info-lookup-symbol 'info-file "emacs")
93548d2e
DL
15249
15250(autoload (quote info-lookup-symbol) "info-look" "\
15251Display the definition of SYMBOL, as found in the relevant manual.
15252When this command is called interactively, it reads SYMBOL from the minibuffer.
15253In the minibuffer, use M-n to yank the default argument value
15254into the minibuffer so you can edit it.
7518ed7b
GM
15255The default symbol is the one found at point.
15256
c595cc5f
MR
15257With prefix arg a query for the symbol help mode is offered.
15258
15259\(fn SYMBOL &optional MODE)" t nil)
390069bc 15260 (put 'info-lookup-file 'info-file "emacs")
93548d2e
DL
15261
15262(autoload (quote info-lookup-file) "info-look" "\
15263Display the documentation of a file.
15264When this command is called interactively, it reads FILE from the minibuffer.
15265In the minibuffer, use M-n to yank the default file name
15266into the minibuffer so you can edit it.
7518ed7b
GM
15267The default file name is the one found at point.
15268
c595cc5f
MR
15269With prefix arg a query for the file help mode is offered.
15270
15271\(fn FILE &optional MODE)" t nil)
93548d2e
DL
15272
15273(autoload (quote info-complete-symbol) "info-look" "\
c595cc5f
MR
15274Perform completion on symbol preceding point.
15275
15276\(fn &optional MODE)" t nil)
93548d2e
DL
15277
15278(autoload (quote info-complete-file) "info-look" "\
c595cc5f
MR
15279Perform completion on file preceding point.
15280
15281\(fn &optional MODE)" t nil)
93548d2e
DL
15282
15283;;;***
15284\f
390069bc 15285;;;### (autoloads (info-xref-check-all-custom info-xref-check-all
a5805c9d 15286;;;;;; info-xref-check) "info-xref" "info-xref.el" (17279 27123))
0c72a1a2
MR
15287;;; Generated autoloads from info-xref.el
15288
15289(autoload (quote info-xref-check) "info-xref" "\
15290Check external references in FILENAME, an info document.
15291
15292\(fn FILENAME)" t nil)
15293
15294(autoload (quote info-xref-check-all) "info-xref" "\
15295Check external references in all info documents in the usual path.
15296The usual path is `Info-directory-list' and `Info-additional-directory-list'.
15297
15298\(fn)" t nil)
15299
390069bc
AS
15300(autoload (quote info-xref-check-all-custom) "info-xref" "\
15301Check info references in all customize groups and variables.
15302`custom-manual' and `info-link' entries in the `custom-links' list are checked.
15303
15304`custom-load' autoloads for all symbols are loaded in order to get all the
15305link information. This will be a lot of lisp packages loaded, and can take
15306quite a while.
15307
15308\(fn)" t nil)
15309
0c72a1a2
MR
15310;;;***
15311\f
93548d2e 15312;;;### (autoloads (batch-info-validate Info-validate Info-split Info-tagify)
a5805c9d 15313;;;;;; "informat" "informat.el" (17279 27123))
93548d2e
DL
15314;;; Generated autoloads from informat.el
15315
15316(autoload (quote Info-tagify) "informat" "\
c595cc5f
MR
15317Create or update Info file tag table in current buffer or in a region.
15318
15319\(fn &optional INPUT-BUFFER-NAME)" t nil)
93548d2e
DL
15320
15321(autoload (quote Info-split) "informat" "\
15322Split an info file into an indirect file plus bounded-size subfiles.
15323Each subfile will be up to 50,000 characters plus one node.
15324
15325To use this command, first visit a large Info file that has a tag
15326table. The buffer is modified into a (small) indirect info file which
15327should be saved in place of the original visited file.
15328
15329The subfiles are written in the same directory the original file is
15330in, with names generated by appending `-' and a number to the original
15331file name. The indirect file still functions as an Info file, but it
c595cc5f
MR
15332contains just the tag table and a directory of subfiles.
15333
15334\(fn)" t nil)
93548d2e
DL
15335
15336(autoload (quote Info-validate) "informat" "\
15337Check current buffer for validity as an Info file.
c595cc5f
MR
15338Check that every node pointer points to an existing node.
15339
15340\(fn)" t nil)
93548d2e
DL
15341
15342(autoload (quote batch-info-validate) "informat" "\
15343Runs `Info-validate' on the files remaining on the command line.
15344Must be used only with -batch, and kills Emacs on completion.
15345Each file will be processed even if an error occurred previously.
c595cc5f
MR
15346For example, invoke \"emacs -batch -f batch-info-validate $info/ ~/*.info\"
15347
15348\(fn)" nil nil)
93548d2e
DL
15349
15350;;;***
15351\f
15352;;;### (autoloads (isearch-process-search-multibyte-characters isearch-toggle-input-method
15353;;;;;; isearch-toggle-specified-input-method) "isearch-x" "international/isearch-x.el"
a5805c9d 15354;;;;;; (17279 27123))
93548d2e
DL
15355;;; Generated autoloads from international/isearch-x.el
15356
15357(autoload (quote isearch-toggle-specified-input-method) "isearch-x" "\
c595cc5f
MR
15358Select an input method and turn it on in interactive search.
15359
15360\(fn)" t nil)
93548d2e
DL
15361
15362(autoload (quote isearch-toggle-input-method) "isearch-x" "\
c595cc5f
MR
15363Toggle input method in interactive search.
15364
15365\(fn)" t nil)
15366
15367(autoload (quote isearch-process-search-multibyte-characters) "isearch-x" "\
15368Not documented
93548d2e 15369
c595cc5f 15370\(fn LAST-CHAR)" nil nil)
93548d2e
DL
15371
15372;;;***
15373\f
a5805c9d
KL
15374;;;### (autoloads (isearchb-activate) "isearchb" "isearchb.el" (17279
15375;;;;;; 27123))
390069bc
AS
15376;;; Generated autoloads from isearchb.el
15377
15378(autoload (quote isearchb-activate) "isearchb" "\
15379Active isearchb mode for subsequent alphanumeric keystrokes.
15380Executing this command again will terminate the search; or, if
15381the search has not yet begun, will toggle to the last buffer
15382accessed via isearchb.
15383
15384\(fn)" t nil)
15385
15386;;;***
15387\f
d66d64bc 15388;;;### (autoloads (iso-accents-mode) "iso-acc" "obsolete/iso-acc.el"
a5805c9d 15389;;;;;; (17279 27123))
d66d64bc 15390;;; Generated autoloads from obsolete/iso-acc.el
93548d2e
DL
15391
15392(autoload (quote iso-accents-mode) "iso-acc" "\
15393Toggle ISO Accents mode, in which accents modify the following letter.
15394This permits easy insertion of accented characters according to ISO-8859-1.
15395When Iso-accents mode is enabled, accent character keys
15396\(`, ', \", ^, / and ~) do not self-insert; instead, they modify the following
15397letter key so that it inserts an ISO accented letter.
15398
15399You can customize ISO Accents mode to a particular language
15400with the command `iso-accents-customize'.
15401
15402Special combinations: ~c gives a c with cedilla,
15403~d gives an Icelandic eth (d with dash).
15404~t gives an Icelandic thorn.
15405\"s gives German sharp s.
15406/a gives a with ring.
15407/e gives an a-e ligature.
15408~< and ~> give guillemots.
15409~! gives an inverted exclamation mark.
15410~? gives an inverted question mark.
15411
821b278f 15412With an argument, a positive argument enables ISO Accents mode,
c595cc5f
MR
15413and a negative argument disables it.
15414
15415\(fn &optional ARG)" t nil)
93548d2e
DL
15416
15417;;;***
15418\f
15419;;;### (autoloads (iso-cvt-define-menu iso-cvt-write-only iso-cvt-read-only
be0dbdab
GM
15420;;;;;; iso-sgml2iso iso-iso2sgml iso-iso2duden iso-iso2gtex iso-gtex2iso
15421;;;;;; iso-tex2iso iso-iso2tex iso-german iso-spanish) "iso-cvt"
a5805c9d 15422;;;;;; "international/iso-cvt.el" (17279 27079))
93548d2e
DL
15423;;; Generated autoloads from international/iso-cvt.el
15424
15425(autoload (quote iso-spanish) "iso-cvt" "\
15426Translate net conventions for Spanish to ISO 8859-1.
15427The region between FROM and TO is translated using the table TRANS-TAB.
c595cc5f
MR
15428Optional arg BUFFER is ignored (for use in `format-alist').
15429
15430\(fn FROM TO &optional BUFFER)" t nil)
93548d2e
DL
15431
15432(autoload (quote iso-german) "iso-cvt" "\
15433Translate net conventions for German to ISO 8859-1.
15434The region between FROM and TO is translated using the table TRANS-TAB.
c595cc5f
MR
15435Optional arg BUFFER is ignored (for use in `format-alist').
15436
15437\(fn FROM TO &optional BUFFER)" t nil)
93548d2e
DL
15438
15439(autoload (quote iso-iso2tex) "iso-cvt" "\
15440Translate ISO 8859-1 characters to TeX sequences.
15441The region between FROM and TO is translated using the table TRANS-TAB.
c595cc5f
MR
15442Optional arg BUFFER is ignored (for use in `format-alist').
15443
15444\(fn FROM TO &optional BUFFER)" t nil)
93548d2e
DL
15445
15446(autoload (quote iso-tex2iso) "iso-cvt" "\
15447Translate TeX sequences to ISO 8859-1 characters.
15448The region between FROM and TO is translated using the table TRANS-TAB.
c595cc5f
MR
15449Optional arg BUFFER is ignored (for use in `format-alist').
15450
15451\(fn FROM TO &optional BUFFER)" t nil)
93548d2e
DL
15452
15453(autoload (quote iso-gtex2iso) "iso-cvt" "\
15454Translate German TeX sequences to ISO 8859-1 characters.
15455The region between FROM and TO is translated using the table TRANS-TAB.
c595cc5f
MR
15456Optional arg BUFFER is ignored (for use in `format-alist').
15457
15458\(fn FROM TO &optional BUFFER)" t nil)
93548d2e
DL
15459
15460(autoload (quote iso-iso2gtex) "iso-cvt" "\
15461Translate ISO 8859-1 characters to German TeX sequences.
15462The region between FROM and TO is translated using the table TRANS-TAB.
c595cc5f
MR
15463Optional arg BUFFER is ignored (for use in `format-alist').
15464
15465\(fn FROM TO &optional BUFFER)" t nil)
93548d2e
DL
15466
15467(autoload (quote iso-iso2duden) "iso-cvt" "\
15468Translate ISO 8859-1 characters to German TeX sequences.
15469The region between FROM and TO is translated using the table TRANS-TAB.
c595cc5f
MR
15470Optional arg BUFFER is ignored (for use in `format-alist').
15471
15472\(fn FROM TO &optional BUFFER)" t nil)
93548d2e 15473
be0dbdab
GM
15474(autoload (quote iso-iso2sgml) "iso-cvt" "\
15475Translate ISO 8859-1 characters in the region to SGML entities.
15476The entities used are from \"ISO 8879:1986//ENTITIES Added Latin 1//EN\".
c595cc5f
MR
15477Optional arg BUFFER is ignored (for use in `format-alist').
15478
15479\(fn FROM TO &optional BUFFER)" t nil)
be0dbdab
GM
15480
15481(autoload (quote iso-sgml2iso) "iso-cvt" "\
15482Translate SGML entities in the region to ISO 8859-1 characters.
15483The entities used are from \"ISO 8879:1986//ENTITIES Added Latin 1//EN\".
c595cc5f
MR
15484Optional arg BUFFER is ignored (for use in `format-alist').
15485
15486\(fn FROM TO &optional BUFFER)" t nil)
be0dbdab 15487
93548d2e 15488(autoload (quote iso-cvt-read-only) "iso-cvt" "\
c595cc5f
MR
15489Warn that format is read-only.
15490
15491\(fn)" t nil)
93548d2e
DL
15492
15493(autoload (quote iso-cvt-write-only) "iso-cvt" "\
c595cc5f
MR
15494Warn that format is write-only.
15495
15496\(fn)" t nil)
93548d2e
DL
15497
15498(autoload (quote iso-cvt-define-menu) "iso-cvt" "\
390069bc 15499Add submenus to the File menu, to convert to and from various formats.
c595cc5f
MR
15500
15501\(fn)" t nil)
93548d2e
DL
15502
15503;;;***
15504\f
15505;;;### (autoloads nil "iso-transl" "international/iso-transl.el"
a5805c9d 15506;;;;;; (17279 27115))
93548d2e 15507;;; Generated autoloads from international/iso-transl.el
ac09dc1e
KL
15508 (or key-translation-map (setq key-translation-map (make-sparse-keymap)))
15509 (define-key key-translation-map "\C-x8" 'iso-transl-ctl-x-8-map)
93548d2e
DL
15510 (autoload 'iso-transl-ctl-x-8-map "iso-transl" "Keymap for C-x 8 prefix." t 'keymap)
15511
15512;;;***
15513\f
abb2db1c 15514;;;### (autoloads (ispell-message ispell-minor-mode ispell ispell-complete-word-interior-frag
93548d2e
DL
15515;;;;;; ispell-complete-word ispell-continue ispell-buffer ispell-comments-and-strings
15516;;;;;; ispell-region ispell-change-dictionary ispell-kill-ispell
be65bdd3
AS
15517;;;;;; ispell-help ispell-pdict-save ispell-word ispell-local-dictionary-alist
15518;;;;;; ispell-personal-dictionary) "ispell" "textmodes/ispell.el"
a5805c9d 15519;;;;;; (17374 21550))
7518ed7b 15520;;; Generated autoloads from textmodes/ispell.el
93548d2e
DL
15521
15522(defvar ispell-personal-dictionary nil "\
15523*File name of your personal spelling dictionary, or nil.
15524If nil, the default personal dictionary, \"~/.ispell_DICTNAME\" is used,
15525where DICTNAME is the name of your default dictionary.")
15526
9c46b00a
MR
15527(custom-autoload (quote ispell-personal-dictionary) "ispell")
15528
93548d2e 15529(defvar ispell-local-dictionary-alist nil "\
be65bdd3
AS
15530*List of local or customized dictionary definitions.
15531These can override the values in `ispell-dictionary-alist'.
27a99a7c 15532
be65bdd3
AS
15533To make permanent changes to your dictionary definitions, you
15534will need to make your changes in this variable, save, and then
15535re-start emacs.")
93548d2e 15536
9c46b00a
MR
15537(custom-autoload (quote ispell-local-dictionary-alist) "ispell")
15538
27a99a7c 15539(setq ispell-dictionary-alist-1 (quote ((nil "[A-Za-z]" "[^A-Za-z]" "[']" nil ("-B") nil iso-8859-1) ("american" "[A-Za-z]" "[^A-Za-z]" "[']" nil ("-B") nil iso-8859-1) ("brasileiro" "[A-Z\301\311\315\323\332\300\310\314\322\331\303\325\307\334\302\312\324a-z\341\351\355\363\372\340\350\354\362\371\343\365\347\374\342\352\364]" "[^A-Z\301\311\315\323\332\300\310\314\322\331\303\325\307\334\302\312\324a-z\341\351\355\363\372\340\350\354\362\371\343\365\347\374\342\352\364]" "[']" nil nil nil iso-8859-1) ("british" "[A-Za-z]" "[^A-Za-z]" "[']" nil ("-B") nil iso-8859-1) ("castellano" "[A-Z\301\311\315\321\323\332\334a-z\341\351\355\361\363\372\374]" "[^A-Z\301\311\315\321\323\332\334a-z\341\351\355\361\363\372\374]" "[-]" nil ("-B") "~tex" iso-8859-1) ("castellano8" "[A-Z\301\311\315\321\323\332\334a-z\341\351\355\361\363\372\374]" "[^A-Z\301\311\315\321\323\332\334a-z\341\351\355\361\363\372\374]" "[-]" nil ("-B" "-d" "castellano") "~latin1" iso-8859-1))))
93548d2e 15540
27a99a7c 15541(setq ispell-dictionary-alist-2 (quote (("czech" "[A-Za-z\301\311\314\315\323\332\331\335\256\251\310\330\317\253\322\341\351\354\355\363\372\371\375\276\271\350\370\357\273\362]" "[^A-Za-z\301\311\314\315\323\332\331\335\256\251\310\330\317\253\322\341\351\354\355\363\372\371\375\276\271\350\370\357\273\362]" "" nil ("-B") nil iso-8859-2) ("dansk" "[A-Z\306\330\305a-z\346\370\345]" "[^A-Z\306\330\305a-z\346\370\345]" "[']" nil ("-C") nil iso-8859-1) ("deutsch" "[a-zA-Z\"]" "[^a-zA-Z\"]" "[']" t ("-C") "~tex" iso-8859-1) ("deutsch8" "[a-zA-Z\304\326\334\344\366\337\374]" "[^a-zA-Z\304\326\334\344\366\337\374]" "[']" t ("-C" "-d" "deutsch") "~latin1" iso-8859-1) ("english" "[A-Za-z]" "[^A-Za-z]" "[']" nil ("-B") nil iso-8859-1))))
93548d2e 15542
59e085e0 15543(setq ispell-dictionary-alist-3 (quote (("esperanto" "[A-Za-z\246\254\266\274\306\330\335\336\346\370\375\376]" "[^A-Za-z\246\254\266\274\306\330\335\336\346\370\375\376]" "[-']" t ("-C") "~latin3" iso-8859-1) ("esperanto-tex" "[A-Za-z^\\]" "[^A-Za-z^\\]" "[-'`\"]" t ("-C" "-d" "esperanto") "~tex" iso-8859-1) ("francais7" "[A-Za-z]" "[^A-Za-z]" "[`'^---]" t nil nil iso-8859-1) ("francais" "[A-Za-z\300\302\306\307\310\311\312\313\316\317\324\331\333\334\340\342\347\350\351\352\353\356\357\364\371\373\374]" "[^A-Za-z\300\302\306\307\310\311\312\313\316\317\324\331\333\334\340\342\347\350\351\352\353\356\357\364\371\373\374]" "[-'.@]" t nil "~list" iso-8859-1) ("francais-tex" "[A-Za-z\300\302\306\307\310\311\312\313\316\317\324\331\333\334\340\342\347\350\351\352\353\356\357\364\371\373\374\\]" "[^A-Za-z\300\302\306\307\310\311\312\313\316\317\324\331\333\334\340\342\347\350\351\352\353\356\357\364\371\373\374\\]" "[-'^`\".@]" t nil "~tex" iso-8859-1))))
93548d2e 15544
59e085e0 15545(setq ispell-dictionary-alist-4 (quote (("german" "[a-zA-Z\"]" "[^a-zA-Z\"]" "[']" t ("-C") "~tex" iso-8859-1) ("german8" "[a-zA-Z\304\326\334\344\366\337\374]" "[^a-zA-Z\304\326\334\344\366\337\374]" "[']" t ("-C" "-d" "german") "~latin1" iso-8859-1) ("italiano" "[A-Z\300\301\310\311\314\315\322\323\331\332a-z\340\341\350\351\354\355\363\371\372]" "[^A-Z\300\301\310\311\314\315\322\323\331\332a-z\340\341\350\351\354\355\363\371\372]" "[-.]" nil ("-B" "-d" "italian") "~tex" iso-8859-1) ("nederlands" "[A-Za-z\300\301\302\303\304\305\307\310\311\312\313\314\315\316\317\322\323\324\325\326\331\332\333\334\340\341\342\343\344\345\347\350\351\352\353\354\355\356\357\361\362\363\364\365\366\371\372\373\374]" "[^A-Za-z\300\301\302\303\304\305\307\310\311\312\313\314\315\316\317\322\323\324\325\326\331\332\333\334\340\341\342\343\344\345\347\350\351\352\353\354\355\356\357\361\362\363\364\365\366\371\372\373\374]" "[']" t ("-C") nil iso-8859-1) ("nederlands8" "[A-Za-z\300\301\302\303\304\305\307\310\311\312\313\314\315\316\317\322\323\324\325\326\331\332\333\334\340\341\342\343\344\345\347\350\351\352\353\354\355\356\357\361\362\363\364\365\366\371\372\373\374]" "[^A-Za-z\300\301\302\303\304\305\307\310\311\312\313\314\315\316\317\322\323\324\325\326\331\332\333\334\340\341\342\343\344\345\347\350\351\352\353\354\355\356\357\361\362\363\364\365\366\371\372\373\374]" "[']" t ("-C") nil iso-8859-1))))
93548d2e 15546
59e085e0 15547(setq ispell-dictionary-alist-5 (quote (("norsk" "[A-Za-z\305\306\307\310\311\322\324\330\345\346\347\350\351\362\364\370]" "[^A-Za-z\305\306\307\310\311\322\324\330\345\346\347\350\351\362\364\370]" "[\"]" nil nil "~list" iso-8859-1) ("norsk7-tex" "[A-Za-z{}\\'^`]" "[^A-Za-z{}\\'^`]" "[\"]" nil ("-d" "norsk") "~plaintex" iso-8859-1) ("polish" "[A-Za-z\241\243\246\254\257\261\263\266\274\277\306\312\321\323\346\352\361\363]" "[^A-Za-z\241\243\246\254\257\261\263\266\274\277\306\312\321\323\346\352\361\363]" "." nil nil nil iso-8859-2) ("portugues" "[a-zA-Z\301\302\311\323\340\341\342\351\352\355\363\343\372]" "[^a-zA-Z\301\302\311\323\340\341\342\351\352\355\363\343\372]" "[']" t ("-C") "~latin1" iso-8859-1))))
93548d2e 15548
d66d64bc 15549(setq ispell-dictionary-alist-6 (quote (("russian" "[\341\342\367\347\344\345\263\366\372\351\352\353\354\355\356\357\360\362\363\364\365\346\350\343\376\373\375\370\371\377\374\340\361\301\302\327\307\304\305\243\326\332\311\312\313\314\315\316\317\320\322\323\324\325\306\310\303\336\333\335\330\331\337\334\300\321]" "[^\341\342\367\347\344\345\263\366\372\351\352\353\354\355\356\357\360\362\363\364\365\346\350\343\376\373\375\370\371\377\374\340\361\301\302\327\307\304\305\243\326\332\311\312\313\314\315\316\317\320\322\323\324\325\306\310\303\336\333\335\330\331\337\334\300\321]" "" nil nil nil koi8-r) ("russianw" "[\300\301\302\303\304\305\250\306\307\310\311\312\313\314\315\316\317\320\321\322\323\324\325\326\327\330\331\334\333\332\335\336\337\340\341\342\343\344\345\270\346\347\350\351\352\353\354\355\356\357\360\361\362\363\364\365\366\367\370\371\374\373\372\375\376\377]" "[^\300\301\302\303\304\305\250\306\307\310\311\312\313\314\315\316\317\320\321\322\323\324\325\326\327\330\331\334\333\332\335\336\337\340\341\342\343\344\345\270\346\347\350\351\352\353\354\355\356\357\360\361\362\363\364\365\366\367\370\371\374\373\372\375\376\377]" "" nil nil nil windows-1251) ("slovak" "[A-Za-z\301\304\311\315\323\332\324\300\305\245\335\256\251\310\317\253\322\341\344\351\355\363\372\364\340\345\265\375\276\271\350\357\273\362]" "[^A-Za-z\301\304\311\315\323\332\324\300\305\245\335\256\251\310\317\253\322\341\344\351\355\363\372\364\340\345\265\375\276\271\350\357\273\362]" "" nil ("-B") nil iso-8859-2) ("slovenian" "[A-Za-z\301\304\311\315\323\332\324\300\305\245\335\256\251\310\317\253\322\341\344\351\355\363\372\364\340\345\265\375\276\271\350\357\273\362]" "[^A-Za-z\301\304\311\315\323\332\324\300\305\245\335\256\251\310\317\253\322\341\344\351\355\363\372\364\340\345\265\375\276\271\350\357\273\362]" "" nil ("-B" "-d" "slovenian") nil iso-8859-2) ("svenska" "[A-Za-z\345\344\366\351\340\374\350\346\370\347\305\304\326\311\300\334\310\306\330\307]" "[^A-Za-z\345\344\366\351\340\374\350\346\370\347\305\304\326\311\300\334\310\306\330\307]" "[']" nil ("-C") "~list" iso-8859-1))))
93548d2e 15550
be65bdd3 15551(defvar ispell-dictionary-alist (append ispell-dictionary-alist-1 ispell-dictionary-alist-2 ispell-dictionary-alist-3 ispell-dictionary-alist-4 ispell-dictionary-alist-5 ispell-dictionary-alist-6) "\
93548d2e
DL
15552An alist of dictionaries and their associated parameters.
15553
15554Each element of this list is also a list:
15555
15556\(DICTIONARY-NAME CASECHARS NOT-CASECHARS OTHERCHARS MANY-OTHERCHARS-P
15557 ISPELL-ARGS EXTENDED-CHARACTER-MODE CHARACTER-SET)
15558
15559DICTIONARY-NAME is a possible string value of variable `ispell-dictionary',
15560nil means the default dictionary.
15561
15562CASECHARS is a regular expression of valid characters that comprise a
15563word.
15564
15565NOT-CASECHARS is the opposite regexp of CASECHARS.
15566
15567OTHERCHARS is a regexp of characters in the NOT-CASECHARS set but which can be
15568used to construct words in some special way. If OTHERCHARS characters follow
15569and precede characters from CASECHARS, they are parsed as part of a word,
15570otherwise they become word-breaks. As an example in English, assume the
15571regular expression \"[']\" for OTHERCHARS. Then \"they're\" and
15572\"Steven's\" are parsed as single words including the \"'\" character, but
15573\"Stevens'\" does not include the quote character as part of the word.
15574If you want OTHERCHARS to be empty, use the empty string.
15575Hint: regexp syntax requires the hyphen to be declared first here.
15576
be65bdd3
AS
15577CASECHAS, NOT-CASECHARS, and OTHERCHARS must be a unibyte string
15578containing bytes of CHARACTER-SET. In addition, if they contain
15579a non-ASCII byte, the regular expression must be a single
15580`character set' construct that doesn't specify a character range
15581for non-ASCII bytes.
15582
93548d2e
DL
15583MANY-OTHERCHARS-P is non-nil when multiple OTHERCHARS are allowed in a word.
15584Otherwise only a single OTHERCHARS character is allowed to be part of any
15585single word.
15586
15587ISPELL-ARGS is a list of additional arguments passed to the ispell
15588subprocess.
15589
15590EXTENDED-CHARACTER-MODE should be used when dictionaries are used which
15591have been configured in an Ispell affix file. (For example, umlauts
15592can be encoded as \\\"a, a\\\", \"a, ...) Defaults are ~tex and ~nroff
15593in English. This has the same effect as the command-line `-T' option.
15594The buffer Major Mode controls Ispell's parsing in tex or nroff mode,
15595but the dictionary can control the extended character mode.
15596Both defaults can be overruled in a buffer-local fashion. See
15597`ispell-parsing-keyword' for details on this.
15598
15599CHARACTER-SET used for languages with multibyte characters.
15600
15601Note that the CASECHARS and OTHERCHARS slots of the alist should
15602contain the same character set as casechars and otherchars in the
15603LANGUAGE.aff file (e.g., english.aff).")
15604
15605(defvar ispell-menu-map nil "\
15606Key map for ispell menu.")
15607
15608(defvar ispell-menu-xemacs nil "\
15609Spelling menu for XEmacs.
15610If nil when package is loaded, a standard menu will be set,
15611and added as a submenu of the \"Edit\" menu.")
15612
27a99a7c 15613(defvar ispell-menu-map-needed (and (not ispell-menu-map) (not (featurep (quote xemacs))) (quote reload)))
93548d2e 15614
0ef3cc90 15615(if ispell-menu-map-needed (progn (setq ispell-menu-map (make-sparse-keymap "Spell")) (define-key ispell-menu-map [ispell-change-dictionary] (quote (menu-item "Change Dictionary..." ispell-change-dictionary :help "Supply explicit dictionary file name"))) (define-key ispell-menu-map [ispell-kill-ispell] (quote (menu-item "Kill Process" ispell-kill-ispell :enable (and (boundp (quote ispell-process)) ispell-process (eq (ispell-process-status) (quote run))) :help "Terminate Ispell subprocess"))) (define-key ispell-menu-map [ispell-pdict-save] (quote (menu-item "Save Dictionary" (lambda nil (interactive) (ispell-pdict-save t t)) :help "Save personal dictionary"))) (define-key ispell-menu-map [ispell-customize] (quote (menu-item "Customize..." (lambda nil (interactive) (customize-group (quote ispell))) :help "Customize spell checking options"))) (define-key ispell-menu-map [ispell-help] (quote (menu-item "Help" (lambda nil (interactive) (describe-function (quote ispell-help))) :help "Show standard Ispell keybindings and commands"))) (define-key ispell-menu-map [flyspell-mode] (quote (menu-item "Automatic spell checking (Flyspell)" flyspell-mode :help "Check spelling while you edit the text" :button (:toggle bound-and-true-p flyspell-mode)))) (define-key ispell-menu-map [ispell-complete-word] (quote (menu-item "Complete Word" ispell-complete-word :help "Complete word at cursor using dictionary"))) (define-key ispell-menu-map [ispell-complete-word-interior-frag] (quote (menu-item "Complete Word Fragment" ispell-complete-word-interior-frag :help "Complete word fragment at cursor")))))
93548d2e 15616
df2d7e04 15617(if ispell-menu-map-needed (progn (define-key ispell-menu-map [ispell-continue] (quote (menu-item "Continue Spell-Checking" ispell-continue :enable (and (boundp (quote ispell-region-end)) (marker-position ispell-region-end) (equal (marker-buffer ispell-region-end) (current-buffer))) :help "Continue spell checking last region"))) (define-key ispell-menu-map [ispell-word] (quote (menu-item "Spell-Check Word" ispell-word :help "Spell-check word at cursor"))) (define-key ispell-menu-map [ispell-comments-and-strings] (quote (menu-item "Spell-Check Comments" ispell-comments-and-strings :help "Spell-check only comments and strings")))))
93548d2e 15618
df2d7e04 15619(if ispell-menu-map-needed (progn (define-key ispell-menu-map [ispell-region] (quote (menu-item "Spell-Check Region" ispell-region :enable mark-active :help "Spell-check text in marked region"))) (define-key ispell-menu-map [ispell-message] (quote (menu-item "Spell-Check Message" ispell-message :help "Skip headers and included message text"))) (define-key ispell-menu-map [ispell-buffer] (quote (menu-item "Spell-Check Buffer" ispell-buffer :help "Check spelling of selected buffer"))) (fset (quote ispell-menu-map) (symbol-value (quote ispell-menu-map)))))
93548d2e 15620
27a99a7c 15621(defvar ispell-skip-region-alist (quote ((ispell-words-keyword forward-line) (ispell-dictionary-keyword forward-line) (ispell-pdict-keyword forward-line) (ispell-parsing-keyword forward-line) ("^---*BEGIN PGP [A-Z ]*--*" . "^---*END PGP [A-Z ]*--*") ("^begin [0-9][0-9][0-9] [^ ]+$" . "\nend\n") ("^%!PS-Adobe-[123].0" . "\n%%EOF\n") ("^---* \\(Start of \\)?[Ff]orwarded [Mm]essage" . "^---* End of [Ff]orwarded [Mm]essage") ("\\(--+\\|\\(/\\w\\|\\(\\(\\w\\|[-_]\\)+[.:@]\\)\\)\\(\\w\\|[-_]\\)*\\([.:/@]+\\(\\w\\|[-_~=?&]\\)+\\)+\\)"))) "\
93548d2e
DL
15622Alist expressing beginning and end of regions not to spell check.
15623The alist key must be a regular expression.
15624Valid forms include:
15625 (KEY) - just skip the key.
15626 (KEY . REGEXP) - skip to the end of REGEXP. REGEXP may be string or symbol.
15627 (KEY REGEXP) - skip to end of REGEXP. REGEXP must be a string.
15628 (KEY FUNCTION ARGS) - FUNCTION called with ARGS returns end of region.")
15629
54baed30 15630(defvar ispell-tex-skip-alists (quote ((("\\\\addcontentsline" ispell-tex-arg-end 2) ("\\\\add\\(tocontents\\|vspace\\)" ispell-tex-arg-end) ("\\\\\\([aA]lph\\|arabic\\)" ispell-tex-arg-end) ("\\\\bibliographystyle" ispell-tex-arg-end) ("\\\\makebox" ispell-tex-arg-end 0) ("\\\\e?psfig" ispell-tex-arg-end) ("\\\\document\\(class\\|style\\)" . "\\\\begin[ \n]*{[ \n]*document[ \n]*}")) (("\\(figure\\|table\\)\\*?" ispell-tex-arg-end 0) ("list" ispell-tex-arg-end 2) ("program" . "\\\\end[ \n]*{[ \n]*program[ \n]*}") ("verbatim\\*?" . "\\\\end[ \n]*{[ \n]*verbatim\\*?[ \n]*}")))) "\
93548d2e
DL
15631*Lists of regions to be skipped in TeX mode.
15632First list is used raw.
15633Second list has key placed inside \\begin{}.
15634
15635Delete or add any regions you want to be automatically selected
15636for skipping in latex mode.")
15637
27a99a7c
GM
15638(defvar ispell-html-skip-alists (quote (("<[cC][oO][dD][eE]\\>[^>]*>" "</[cC][oO][dD][eE]*>") ("<[sS][cC][rR][iI][pP][tT]\\>[^>]*>" "</[sS][cC][rR][iI][pP][tT]>") ("<[aA][pP][pP][lL][eE][tT]\\>[^>]*>" "</[aA][pP][pP][lL][eE][tT]>") ("<[vV][eE][rR][bB]\\>[^>]*>" "<[vV][eE][rR][bB]\\>[^>]*>") ("<[tT][tT]/" "/") ("<[^ \n>]" ">") ("&[^ \n;]" "[; \n]"))) "\
15639*Lists of start and end keys to skip in HTML buffers.
15640Same format as `ispell-skip-region-alist'
15641Note - substrings of other matches must come last
390069bc 15642 (e.g. \"<[tT][tT]/\" and \"<[^ \\t\\n>]\").")
e3cc553b 15643 (define-key esc-map "$" 'ispell-word)
93548d2e
DL
15644
15645(autoload (quote ispell-word) "ispell" "\
15646Check spelling of word under or before the cursor.
15647If the word is not found in dictionary, display possible corrections
15648in a window allowing you to choose one.
15649
15650If optional argument FOLLOWING is non-nil or if `ispell-following-word'
15651is non-nil when called interactively, then the following word
15652\(rather than preceding) is checked when the cursor is not over a word.
15653When the optional argument QUIETLY is non-nil or `ispell-quietly' is non-nil
15654when called interactively, non-corrective messages are suppressed.
15655
15656With a prefix argument (or if CONTINUE is non-nil),
15657resume interrupted spell-checking of a buffer or region.
15658
be65bdd3
AS
15659Word syntax is controlled by the definition of the chosen dictionary,
15660which is in `ispell-local-dictionary-alist' or `ispell-dictionary-alist'.
93548d2e
DL
15661
15662This will check or reload the dictionary. Use \\[ispell-change-dictionary]
0a352cd7
GM
15663or \\[ispell-region] to update the Ispell process.
15664
15665return values:
27a99a7c 15666nil word is correct or spelling is accepted.
0a352cd7
GM
156670 word is inserted into buffer-local definitions.
15668\"word\" word corrected from word list.
15669\(\"word\" arg) word is hand entered.
c595cc5f
MR
15670quit spell session exited.
15671
15672\(fn &optional FOLLOWING QUIETLY CONTINUE)" t nil)
93548d2e 15673
b5c5b319
GM
15674(autoload (quote ispell-pdict-save) "ispell" "\
15675Check to see if the personal dictionary has been modified.
c595cc5f
MR
15676If so, ask if it needs to be saved.
15677
15678\(fn &optional NO-QUERY FORCE-SAVE)" t nil)
b5c5b319 15679
93548d2e
DL
15680(autoload (quote ispell-help) "ispell" "\
15681Display a list of the options available when a misspelling is encountered.
15682
15683Selections are:
15684
15685DIGIT: Replace the word with a digit offered in the *Choices* buffer.
15686SPC: Accept word this time.
15687`i': Accept word and insert into private dictionary.
15688`a': Accept word for this session.
15689`A': Accept word and place in `buffer-local dictionary'.
15690`r': Replace word with typed-in value. Rechecked.
15691`R': Replace word with typed-in value. Query-replaced in buffer. Rechecked.
15692`?': Show these commands.
15693`x': Exit spelling buffer. Move cursor to original point.
15694`X': Exit spelling buffer. Leaves cursor at the current point, and permits
15695 the aborted check to be completed later.
15696`q': Quit spelling session (Kills ispell process).
15697`l': Look up typed-in replacement in alternate dictionary. Wildcards okay.
15698`u': Like `i', but the word is lower-cased first.
15699`m': Place typed-in value in personal dictionary, then recheck current word.
15700`C-l': redraws screen
15701`C-r': recursive edit
c595cc5f
MR
15702`C-z': suspend emacs or iconify frame
15703
15704\(fn)" nil nil)
93548d2e
DL
15705
15706(autoload (quote ispell-kill-ispell) "ispell" "\
15707Kill current Ispell process (so that you may start a fresh one).
c595cc5f
MR
15708With NO-ERROR, just return non-nil if there was no Ispell running.
15709
15710\(fn &optional NO-ERROR)" t nil)
93548d2e
DL
15711
15712(autoload (quote ispell-change-dictionary) "ispell" "\
be65bdd3
AS
15713Change to dictionary DICT for Ispell.
15714With a prefix arg, set it \"globally\", for all buffers.
15715Without a prefix arg, set it \"locally\", just for this buffer.
93548d2e
DL
15716
15717By just answering RET you can find out what the current dictionary is.
15718
c595cc5f 15719\(fn DICT &optional ARG)" t nil)
93548d2e
DL
15720
15721(autoload (quote ispell-region) "ispell" "\
15722Interactively check a region for spelling errors.
0a352cd7 15723Return nil if spell session is quit,
c595cc5f
MR
15724 otherwise returns shift offset amount for last line processed.
15725
15726\(fn REG-START REG-END &optional RECHECKP SHIFT)" t nil)
93548d2e
DL
15727
15728(autoload (quote ispell-comments-and-strings) "ispell" "\
c595cc5f
MR
15729Check comments and strings in the current buffer for spelling errors.
15730
15731\(fn)" t nil)
93548d2e
DL
15732
15733(autoload (quote ispell-buffer) "ispell" "\
c595cc5f
MR
15734Check the current buffer for spelling errors interactively.
15735
15736\(fn)" t nil)
93548d2e
DL
15737
15738(autoload (quote ispell-continue) "ispell" "\
c595cc5f
MR
15739Continue a halted spelling session beginning with the current word.
15740
15741\(fn)" t nil)
93548d2e
DL
15742
15743(autoload (quote ispell-complete-word) "ispell" "\
8d8d8d4e 15744Try to complete the word before or under point (see `lookup-words').
93548d2e
DL
15745If optional INTERIOR-FRAG is non-nil then the word may be a character
15746sequence inside of a word.
15747
c595cc5f
MR
15748Standard ispell choices are then available.
15749
15750\(fn &optional INTERIOR-FRAG)" t nil)
93548d2e
DL
15751
15752(autoload (quote ispell-complete-word-interior-frag) "ispell" "\
c595cc5f
MR
15753Completes word matching character sequence inside a word.
15754
15755\(fn)" t nil)
93548d2e 15756
abb2db1c
GM
15757(autoload (quote ispell) "ispell" "\
15758Interactively check a region or buffer for spelling errors.
54baed30 15759If `transient-mark-mode' is on, and a region is active, spell-check
ac95a621
GM
15760that region. Otherwise spell-check the buffer.
15761
15762Ispell dictionaries are not distributed with Emacs. If you are
15763looking for a dictionary, please see the distribution of the GNU ispell
15764program, or do an Internet search; there are various dictionaries
c595cc5f
MR
15765available on the net.
15766
15767\(fn)" t nil)
abb2db1c 15768
93548d2e
DL
15769(autoload (quote ispell-minor-mode) "ispell" "\
15770Toggle Ispell minor mode.
15771With prefix arg, turn Ispell minor mode on iff arg is positive.
54baed30 15772
93548d2e
DL
15773In Ispell minor mode, pressing SPC or RET
15774warns you if the previous word is incorrectly spelled.
15775
15776All the buffer-local variables and dictionaries are ignored -- to read
c595cc5f
MR
15777them into the running ispell process, type \\[ispell-word] SPC.
15778
15779\(fn &optional ARG)" t nil)
93548d2e
DL
15780
15781(autoload (quote ispell-message) "ispell" "\
15782Check the spelling of a mail message or news post.
15783Don't check spelling of message headers except the Subject field.
15784Don't check included messages.
15785
15786To abort spell checking of a message region and send the message anyway,
15787use the `x' command. (Any subsequent regions will be checked.)
15788The `X' command aborts the message send so that you can edit the buffer.
15789
15790To spell-check whenever a message is sent, include the appropriate lines
15791in your .emacs file:
15792 (add-hook 'message-send-hook 'ispell-message) ;; GNUS 5
15793 (add-hook 'news-inews-hook 'ispell-message) ;; GNUS 4
15794 (add-hook 'mail-send-hook 'ispell-message)
15795 (add-hook 'mh-before-send-letter-hook 'ispell-message)
15796
15797You can bind this to the key C-c i in GNUS or mail by adding to
15798`news-reply-mode-hook' or `mail-mode-hook' the following lambda expression:
c595cc5f
MR
15799 (function (lambda () (local-set-key \"\\C-ci\" 'ispell-message)))
15800
15801\(fn)" t nil)
93548d2e
DL
15802
15803;;;***
15804\f
a5805c9d
KL
15805;;;### (autoloads (iswitchb-mode) "iswitchb" "iswitchb.el" (17356
15806;;;;;; 16193))
93548d2e
DL
15807;;; Generated autoloads from iswitchb.el
15808
8d8d8d4e
EZ
15809(defvar iswitchb-mode nil "\
15810Non-nil if Iswitchb mode is enabled.
15811See the command `iswitchb-mode' for a description of this minor-mode.
15812Setting this variable directly does not take effect;
15813use either \\[customize] or the function `iswitchb-mode'.")
15814
9c46b00a 15815(custom-autoload (quote iswitchb-mode) "iswitchb")
8d8d8d4e 15816
ac09dc1e
KL
15817(put (quote iswitchb-mode) (quote custom-set) (quote custom-set-minor-mode))
15818
b442e70a
MB
15819(autoload (quote iswitchb-mode) "iswitchb" "\
15820Toggle Iswitchb global minor mode.
15821With arg, turn Iswitchb mode on if and only iff ARG is positive.
15822This mode enables switching between buffers using substrings. See
c595cc5f
MR
15823`iswitchb' for details.
15824
15825\(fn &optional ARG)" t nil)
b442e70a 15826
93548d2e
DL
15827;;;***
15828\f
15829;;;### (autoloads (read-hiragana-string japanese-zenkaku-region japanese-hankaku-region
15830;;;;;; japanese-hiragana-region japanese-katakana-region japanese-zenkaku
a1b8d58b 15831;;;;;; japanese-hankaku japanese-hiragana japanese-katakana setup-japanese-environment-internal)
a5805c9d 15832;;;;;; "japan-util" "language/japan-util.el" (17279 27080))
93548d2e
DL
15833;;; Generated autoloads from language/japan-util.el
15834
c595cc5f
MR
15835(autoload (quote setup-japanese-environment-internal) "japan-util" "\
15836Not documented
15837
15838\(fn)" nil nil)
93548d2e
DL
15839
15840(autoload (quote japanese-katakana) "japan-util" "\
15841Convert argument to Katakana and return that.
15842The argument may be a character or string. The result has the same type.
15843The argument object is not altered--the value is a copy.
15844Optional argument HANKAKU t means to convert to `hankaku' Katakana
15845 (`japanese-jisx0201-kana'), in which case return value
15846 may be a string even if OBJ is a character if two Katakanas are
c595cc5f
MR
15847 necessary to represent OBJ.
15848
15849\(fn OBJ &optional HANKAKU)" nil nil)
93548d2e
DL
15850
15851(autoload (quote japanese-hiragana) "japan-util" "\
15852Convert argument to Hiragana and return that.
15853The argument may be a character or string. The result has the same type.
c595cc5f
MR
15854The argument object is not altered--the value is a copy.
15855
15856\(fn OBJ)" nil nil)
93548d2e
DL
15857
15858(autoload (quote japanese-hankaku) "japan-util" "\
15859Convert argument to `hankaku' and return that.
15860The argument may be a character or string. The result has the same type.
15861The argument object is not altered--the value is a copy.
c595cc5f
MR
15862Optional argument ASCII-ONLY non-nil means to return only ASCII character.
15863
15864\(fn OBJ &optional ASCII-ONLY)" nil nil)
93548d2e
DL
15865
15866(autoload (quote japanese-zenkaku) "japan-util" "\
15867Convert argument to `zenkaku' and return that.
15868The argument may be a character or string. The result has the same type.
c595cc5f
MR
15869The argument object is not altered--the value is a copy.
15870
15871\(fn OBJ)" nil nil)
93548d2e
DL
15872
15873(autoload (quote japanese-katakana-region) "japan-util" "\
15874Convert Japanese `hiragana' chars in the region to `katakana' chars.
15875Optional argument HANKAKU t means to convert to `hankaku katakana' character
c595cc5f
MR
15876of which charset is `japanese-jisx0201-kana'.
15877
15878\(fn FROM TO &optional HANKAKU)" t nil)
93548d2e
DL
15879
15880(autoload (quote japanese-hiragana-region) "japan-util" "\
c595cc5f
MR
15881Convert Japanese `katakana' chars in the region to `hiragana' chars.
15882
15883\(fn FROM TO)" t nil)
93548d2e
DL
15884
15885(autoload (quote japanese-hankaku-region) "japan-util" "\
15886Convert Japanese `zenkaku' chars in the region to `hankaku' chars.
15887`Zenkaku' chars belong to `japanese-jisx0208'
15888`Hankaku' chars belong to `ascii' or `japanese-jisx0201-kana'.
c595cc5f
MR
15889Optional argument ASCII-ONLY non-nil means to convert only to ASCII char.
15890
15891\(fn FROM TO &optional ASCII-ONLY)" t nil)
93548d2e
DL
15892
15893(autoload (quote japanese-zenkaku-region) "japan-util" "\
15894Convert hankaku' chars in the region to Japanese `zenkaku' chars.
15895`Zenkaku' chars belong to `japanese-jisx0208'
15896`Hankaku' chars belong to `ascii' or `japanese-jisx0201-kana'.
c595cc5f
MR
15897Optional argument KATAKANA-ONLY non-nil means to convert only KATAKANA char.
15898
15899\(fn FROM TO &optional KATAKANA-ONLY)" t nil)
93548d2e
DL
15900
15901(autoload (quote read-hiragana-string) "japan-util" "\
15902Read a Hiragana string from the minibuffer, prompting with string PROMPT.
c595cc5f
MR
15903If non-nil, second arg INITIAL-INPUT is a string to insert before reading.
15904
15905\(fn PROMPT &optional INITIAL-INPUT)" nil nil)
93548d2e
DL
15906
15907;;;***
15908\f
d66d64bc 15909;;;### (autoloads (jka-compr-uninstall jka-compr-handler) "jka-compr"
a5805c9d 15910;;;;;; "jka-compr.el" (17279 27201))
93548d2e 15911;;; Generated autoloads from jka-compr.el
7518ed7b 15912
d66d64bc
KL
15913(defvar jka-compr-inhibit nil "\
15914Non-nil means inhibit automatic uncompression temporarily.
15915Lisp programs can bind this to t to do that.
15916It is not recommended to set this variable permanently to anything but nil.")
7518ed7b 15917
d66d64bc
KL
15918(autoload (quote jka-compr-handler) "jka-compr" "\
15919Not documented
c595cc5f 15920
d66d64bc 15921\(fn OPERATION &rest ARGS)" nil nil)
93548d2e 15922
d66d64bc
KL
15923(autoload (quote jka-compr-uninstall) "jka-compr" "\
15924Uninstall jka-compr.
15925This removes the entries in `file-name-handler-alist' and `auto-mode-alist'
15926and `inhibit-first-line-modes-suffixes' that were added
15927by `jka-compr-installed'.
c595cc5f 15928
d66d64bc 15929\(fn)" nil nil)
0ad84a21 15930
93548d2e
DL
15931;;;***
15932\f
4c6bc877
MR
15933;;;### (autoloads (keypad-setup keypad-numlock-shifted-setup keypad-shifted-setup
15934;;;;;; keypad-numlock-setup keypad-setup) "keypad" "emulation/keypad.el"
a5805c9d 15935;;;;;; (17279 27122))
4c6bc877
MR
15936;;; Generated autoloads from emulation/keypad.el
15937
15938(defvar keypad-setup nil "\
15939Specifies the keypad setup for unshifted keypad keys when NumLock is off.
15940When selecting the plain numeric keypad setup, the character returned by the
15941decimal key must be specified.")
15942
9c46b00a 15943(custom-autoload (quote keypad-setup) "keypad")
4c6bc877
MR
15944
15945(defvar keypad-numlock-setup nil "\
15946Specifies the keypad setup for unshifted keypad keys when NumLock is on.
15947When selecting the plain numeric keypad setup, the character returned by the
15948decimal key must be specified.")
15949
9c46b00a 15950(custom-autoload (quote keypad-numlock-setup) "keypad")
4c6bc877
MR
15951
15952(defvar keypad-shifted-setup nil "\
15953Specifies the keypad setup for shifted keypad keys when NumLock is off.
15954When selecting the plain numeric keypad setup, the character returned by the
15955decimal key must be specified.")
15956
9c46b00a 15957(custom-autoload (quote keypad-shifted-setup) "keypad")
4c6bc877
MR
15958
15959(defvar keypad-numlock-shifted-setup nil "\
15960Specifies the keypad setup for shifted keypad keys when NumLock is off.
15961When selecting the plain numeric keypad setup, the character returned by the
15962decimal key must be specified.")
15963
9c46b00a 15964(custom-autoload (quote keypad-numlock-shifted-setup) "keypad")
4c6bc877
MR
15965
15966(autoload (quote keypad-setup) "keypad" "\
15967Set keypad bindings in function-key-map according to SETUP.
15968If optional second argument NUMLOCK is non-nil, the NumLock On bindings
15969are changed. Otherwise, the NumLock Off bindings are changed.
15970If optional third argument SHIFT is non-nil, the shifted keypad
15971keys are bound.
15972
15973 Setup Binding
15974 -------------------------------------------------------------
15975 'prefix Command prefix argument, i.e. M-0 .. M-9 and M--
15976 'S-cursor Bind shifted keypad keys to the shifted cursor movement keys.
15977 'cursor Bind keypad keys to the cursor movement keys.
15978 'numeric Plain numeric keypad, i.e. 0 .. 9 and . (or DECIMAL arg)
c595cc5f
MR
15979 'none Removes all bindings for keypad keys in function-key-map;
15980 this enables any user-defined bindings for the keypad keys
15981 in the global and local keymaps.
4c6bc877
MR
15982
15983If SETUP is 'numeric and the optional fourth argument DECIMAL is non-nil,
c595cc5f
MR
15984the decimal key on the keypad is mapped to DECIMAL instead of `.'
15985
15986\(fn SETUP &optional NUMLOCK SHIFT DECIMAL)" nil nil)
4c6bc877
MR
15987
15988;;;***
15989\f
93548d2e 15990;;;### (autoloads (kinsoku) "kinsoku" "international/kinsoku.el"
a5805c9d 15991;;;;;; (17307 17630))
93548d2e
DL
15992;;; Generated autoloads from international/kinsoku.el
15993
15994(autoload (quote kinsoku) "kinsoku" "\
15995Go to a line breaking position near point by doing `kinsoku' processing.
15996LINEBEG is a buffer position we can't break a line before.
15997
15998`Kinsoku' processing is to prohibit specific characters to be placed
15999at beginning of line or at end of line. Characters not to be placed
16000at beginning and end of line have character category `>' and `<'
16001respectively. This restriction is dissolved by making a line longer or
16002shorter.
16003
16004`Kinsoku' is a Japanese word which originally means ordering to stay
16005in one place, and is used for the text processing described above in
c595cc5f
MR
16006the context of text formatting.
16007
16008\(fn LINEBEG)" nil nil)
93548d2e
DL
16009
16010;;;***
16011\f
a5805c9d
KL
16012;;;### (autoloads (kkc-region) "kkc" "international/kkc.el" (17279
16013;;;;;; 27079))
93548d2e
DL
16014;;; Generated autoloads from international/kkc.el
16015
abb2db1c
GM
16016(defvar kkc-after-update-conversion-functions nil "\
16017Functions to run after a conversion is selected in `japanese' input method.
16018With this input method, a user can select a proper conversion from
16019candidate list. Each time he changes the selection, functions in this
16020list are called with two arguments; starting and ending buffer
16021positions that contains the current selection.")
16022
93548d2e
DL
16023(autoload (quote kkc-region) "kkc" "\
16024Convert Kana string in the current region to Kanji-Kana mixed string.
16025Users can select a desirable conversion interactively.
16026When called from a program, expects two arguments,
16027positions FROM and TO (integers or markers) specifying the target region.
16028When it returns, the point is at the tail of the selected conversion,
c595cc5f
MR
16029and the return value is the length of the conversion.
16030
16031\(fn FROM TO)" t nil)
93548d2e
DL
16032
16033;;;***
16034\f
f19e949b
KS
16035;;;### (autoloads (kmacro-end-call-mouse kmacro-end-and-call-macro
16036;;;;;; kmacro-end-or-call-macro kmacro-start-macro-or-insert-counter
16037;;;;;; kmacro-call-macro kmacro-end-macro kmacro-start-macro) "kmacro"
a5805c9d 16038;;;;;; "kmacro.el" (17279 27123))
4c6bc877
MR
16039;;; Generated autoloads from kmacro.el
16040 (global-set-key "\C-x(" 'kmacro-start-macro)
16041 (global-set-key "\C-x)" 'kmacro-end-macro)
f19e949b 16042 (global-set-key "\C-xe" 'kmacro-end-and-call-macro)
4c6bc877
MR
16043 (global-set-key [f3] 'kmacro-start-macro-or-insert-counter)
16044 (global-set-key [f4] 'kmacro-end-or-call-macro)
16045 (global-set-key "\C-x\C-k" 'kmacro-keymap)
16046 (autoload 'kmacro-keymap "kmacro" "Keymap for keyboard macro commands." t 'keymap)
16047
16048(autoload (quote kmacro-start-macro) "kmacro" "\
16049Record subsequent keyboard input, defining a keyboard macro.
16050The commands are recorded even as they are executed.
16051Use \\[kmacro-end-macro] to finish recording and make the macro available.
c595cc5f 16052Use \\[kmacro-end-and-call-macro] to execute the macro.
390069bc
AS
16053
16054Non-nil arg (prefix arg) means append to last macro defined.
4c6bc877
MR
16055
16056With \\[universal-argument] prefix, append to last keyboard macro
16057defined. Depending on `kmacro-execute-before-append', this may begin
16058by re-executing the last macro as if you typed it again.
16059
16060Otherwise, it sets `kmacro-counter' to ARG or 0 if missing before
16061defining the macro.
16062
16063Use \\[kmacro-insert-counter] to insert (and increment) the macro counter.
16064The counter value can be set or modified via \\[kmacro-set-counter] and \\[kmacro-add-counter].
c595cc5f
MR
16065The format of the counter can be modified via \\[kmacro-set-format].
16066
390069bc
AS
16067Use \\[kmacro-name-last-macro] to give it a permanent name.
16068Use \\[kmacro-bind-to-key] to bind it to a key sequence.
16069
c595cc5f 16070\(fn ARG)" t nil)
4c6bc877
MR
16071
16072(autoload (quote kmacro-end-macro) "kmacro" "\
16073Finish defining a keyboard macro.
16074The definition was started by \\[kmacro-start-macro].
16075The macro is now available for use via \\[kmacro-call-macro],
390069bc 16076or it can be given a name with \\[kmacro-name-last-macro] and then invoked
4c6bc877
MR
16077under that name.
16078
16079With numeric arg, repeat macro now that many times,
16080counting the definition just completed as the first repetition.
c595cc5f
MR
16081An argument of zero means repeat until error.
16082
16083\(fn ARG)" t nil)
4c6bc877
MR
16084
16085(autoload (quote kmacro-call-macro) "kmacro" "\
16086Call the last keyboard macro that you defined with \\[kmacro-start-macro].
16087A prefix argument serves as a repeat count. Zero means repeat until error.
16088
16089When you call the macro, you can call the macro again by repeating
16090just the last key in the key sequence that you used to call this
16091command. See `kmacro-call-repeat-key' and `kmacro-call-repeat-with-arg'
d66d64bc 16092for details on how to adjust or disable this behavior.
4c6bc877
MR
16093
16094To make a macro permanent so you can call it even after defining
390069bc 16095others, use \\[kmacro-name-last-macro].
c595cc5f
MR
16096
16097\(fn ARG &optional NO-REPEAT END-MACRO)" t nil)
4c6bc877
MR
16098
16099(autoload (quote kmacro-start-macro-or-insert-counter) "kmacro" "\
16100Record subsequent keyboard input, defining a keyboard macro.
16101The commands are recorded even as they are executed.
16102
16103Sets the `kmacro-counter' to ARG (or 0 if no prefix arg) before defining the
16104macro.
16105
16106With \\[universal-argument], appends to current keyboard macro (keeping
16107the current value of `kmacro-counter').
16108
16109When defining/executing macro, inserts macro counter and increments
16110the counter with ARG or 1 if missing. With \\[universal-argument],
16111inserts previous kmacro-counter (but do not modify counter).
16112
16113The macro counter can be modified via \\[kmacro-set-counter] and \\[kmacro-add-counter].
c595cc5f
MR
16114The format of the counter can be modified via \\[kmacro-set-format].
16115
16116\(fn ARG)" t nil)
4c6bc877
MR
16117
16118(autoload (quote kmacro-end-or-call-macro) "kmacro" "\
16119End kbd macro if currently being defined; else call last kbd macro.
16120With numeric prefix ARG, repeat macro that many times.
c595cc5f
MR
16121With \\[universal-argument], call second macro in macro ring.
16122
16123\(fn ARG &optional NO-REPEAT)" t nil)
4c6bc877 16124
f19e949b
KS
16125(autoload (quote kmacro-end-and-call-macro) "kmacro" "\
16126Call last keyboard macro, ending it first if currently being defined.
c595cc5f 16127With numeric prefix ARG, repeat macro that many times.
0c72a1a2
MR
16128Zero argument means repeat until there is an error.
16129
16130To give a macro a permanent name, so you can call it
390069bc 16131even after defining other macros, use \\[kmacro-name-last-macro].
c595cc5f
MR
16132
16133\(fn ARG &optional NO-REPEAT)" t nil)
f19e949b 16134
4c6bc877
MR
16135(autoload (quote kmacro-end-call-mouse) "kmacro" "\
16136Move point to the position clicked with the mouse and call last kbd macro.
c595cc5f
MR
16137If kbd macro currently being defined end it before activating it.
16138
16139\(fn EVENT)" t nil)
4c6bc877
MR
16140
16141;;;***
16142\f
92e9233f
MR
16143;;;### (autoloads (kannada-post-read-conversion kannada-compose-string
16144;;;;;; kannada-compose-region) "knd-util" "language/knd-util.el"
a5805c9d 16145;;;;;; (17279 27080))
92e9233f
MR
16146;;; Generated autoloads from language/knd-util.el
16147
16148(defconst kannada-consonant "[\x51f75-\x51fb9]")
16149
16150(autoload (quote kannada-compose-region) "knd-util" "\
16151Not documented
16152
16153\(fn FROM TO)" t nil)
16154
16155(autoload (quote kannada-compose-string) "knd-util" "\
16156Not documented
16157
16158\(fn STRING)" nil nil)
16159
16160(autoload (quote kannada-post-read-conversion) "knd-util" "\
16161Not documented
16162
16163\(fn LEN)" nil nil)
16164
16165;;;***
16166\f
a1b8d58b 16167;;;### (autoloads (setup-korean-environment-internal) "korea-util"
a5805c9d 16168;;;;;; "language/korea-util.el" (17279 27080))
93548d2e
DL
16169;;; Generated autoloads from language/korea-util.el
16170
7518ed7b 16171(defvar default-korean-keyboard (if (string-match "3" (or (getenv "HANGUL_KEYBOARD_TYPE") "")) "3" "") "\
93548d2e
DL
16172*The kind of Korean keyboard for Korean input method.
16173\"\" for 2, \"3\" for 3.")
16174
c595cc5f
MR
16175(autoload (quote setup-korean-environment-internal) "korea-util" "\
16176Not documented
16177
16178\(fn)" nil nil)
93548d2e
DL
16179
16180;;;***
16181\f
16182;;;### (autoloads (lm lm-test-run) "landmark" "play/landmark.el"
a5805c9d 16183;;;;;; (17279 27172))
93548d2e
DL
16184;;; Generated autoloads from play/landmark.el
16185
16186(defalias (quote landmark-repeat) (quote lm-test-run))
16187
16188(autoload (quote lm-test-run) "landmark" "\
c595cc5f
MR
16189Run 100 Lm games, each time saving the weights from the previous game.
16190
16191\(fn)" t nil)
93548d2e
DL
16192
16193(defalias (quote landmark) (quote lm))
16194
16195(autoload (quote lm) "landmark" "\
16196Start or resume an Lm game.
16197If a game is in progress, this command allows you to resume it.
16198Here is the relation between prefix args and game options:
16199
16200prefix arg | robot is auto-started | weights are saved from last game
16201---------------------------------------------------------------------
16202none / 1 | yes | no
16203 2 | yes | yes
16204 3 | no | yes
16205 4 | no | no
16206
16207You start by moving to a square and typing \\[lm-start-robot],
16208if you did not use a prefix arg to ask for automatic start.
c595cc5f
MR
16209Use \\[describe-mode] for more info.
16210
16211\(fn PARG)" t nil)
93548d2e
DL
16212
16213;;;***
16214\f
8d8d8d4e
EZ
16215;;;### (autoloads (lao-compose-region lao-composition-function lao-post-read-conversion
16216;;;;;; lao-transcribe-roman-to-lao-string lao-transcribe-single-roman-syllable-to-lao
a5805c9d
KL
16217;;;;;; lao-compose-string) "lao-util" "language/lao-util.el" (17279
16218;;;;;; 27080))
93548d2e
DL
16219;;; Generated autoloads from language/lao-util.el
16220
c595cc5f
MR
16221(autoload (quote lao-compose-string) "lao-util" "\
16222Not documented
16223
16224\(fn STR)" nil nil)
5ec14d3c
KH
16225
16226(autoload (quote lao-transcribe-single-roman-syllable-to-lao) "lao-util" "\
16227Transcribe a Romanized Lao syllable in the region FROM and TO to Lao string.
16228Only the first syllable is transcribed.
16229The value has the form: (START END LAO-STRING), where
16230START and END are the beggining and end positions of the Roman Lao syllable,
16231LAO-STRING is the Lao character transcription of it.
16232
16233Optional 3rd arg STR, if non-nil, is a string to search for Roman Lao
c595cc5f
MR
16234syllable. In that case, FROM and TO are indexes to STR.
16235
16236\(fn FROM TO &optional STR)" nil nil)
5ec14d3c
KH
16237
16238(autoload (quote lao-transcribe-roman-to-lao-string) "lao-util" "\
c595cc5f
MR
16239Transcribe Romanized Lao string STR to Lao character string.
16240
16241\(fn STR)" nil nil)
16242
16243(autoload (quote lao-post-read-conversion) "lao-util" "\
16244Not documented
5ec14d3c 16245
c595cc5f 16246\(fn LEN)" nil nil)
8d8d8d4e 16247
5ec14d3c
KH
16248(autoload (quote lao-composition-function) "lao-util" "\
16249Compose Lao text in the region FROM and TO.
16250The text matches the regular expression PATTERN.
16251Optional 4th argument STRING, if non-nil, is a string containing text
16252to compose.
16253
c595cc5f 16254The return value is number of composed characters.
5ec14d3c 16255
c595cc5f
MR
16256\(fn FROM TO PATTERN &optional STRING)" nil nil)
16257
16258(autoload (quote lao-compose-region) "lao-util" "\
16259Not documented
16260
16261\(fn FROM TO)" t nil)
a1b8d58b 16262
93548d2e
DL
16263;;;***
16264\f
d66d64bc
KL
16265;;;### (autoloads (latexenc-find-file-coding-system latexenc-coding-system-to-inputenc
16266;;;;;; latexenc-inputenc-to-coding-system latex-inputenc-coding-alist)
a5805c9d 16267;;;;;; "latexenc" "international/latexenc.el" (17374 21550))
d66d64bc
KL
16268;;; Generated autoloads from international/latexenc.el
16269
16270(defvar latex-inputenc-coding-alist (quote (("ansinew" . windows-1252) ("applemac" . mac-roman) ("ascii" . us-ascii) ("cp1250" . windows-1250) ("cp1252" . windows-1252) ("cp1257" . cp1257) ("cp437de" . cp437) ("cp437" . cp437) ("cp850" . cp850) ("cp852" . cp852) ("cp865" . cp865) ("latin1" . iso-8859-1) ("latin2" . iso-8859-2) ("latin3" . iso-8859-3) ("latin4" . iso-8859-4) ("latin5" . iso-8859-5) ("latin9" . iso-8859-15) ("next" . next) ("utf8" . utf-8) ("utf8x" . utf-8))) "\
c1a055ca
EZ
16271Mapping from LaTeX encodings in \"inputenc.sty\" to Emacs coding systems.
16272LaTeX encodings are specified with \"\\usepackage[encoding]{inputenc}\".
d66d64bc
KL
16273Used by the function `latexenc-find-file-coding-system'.")
16274
16275(custom-autoload (quote latex-inputenc-coding-alist) "latexenc")
16276
16277(autoload (quote latexenc-inputenc-to-coding-system) "latexenc" "\
16278Return the corresponding coding-system for the specified input encoding.
16279Return nil if no matching coding system can be found.
16280
16281\(fn INPUTENC)" nil nil)
16282
16283(autoload (quote latexenc-coding-system-to-inputenc) "latexenc" "\
16284Return the corresponding input encoding for the specified coding system.
16285Return nil if no matching input encoding can be found.
16286
16287\(fn CS)" nil nil)
16288
16289(autoload (quote latexenc-find-file-coding-system) "latexenc" "\
16290Determine the coding system of a LaTeX file if it uses \"inputenc.sty\".
16291The mapping from LaTeX's \"inputenc.sty\" encoding names to Emacs
16292coding system names is determined from `latex-inputenc-coding-alist'.
16293
16294\(fn ARG-LIST)" nil nil)
16295
16296;;;***
16297\f
8d8d8d4e 16298;;;### (autoloads (latin1-display-ucs-per-lynx latin1-display latin1-display)
a5805c9d 16299;;;;;; "latin1-disp" "international/latin1-disp.el" (17279 27079))
b442e70a
MB
16300;;; Generated autoloads from international/latin1-disp.el
16301
16302(defvar latin1-display nil "\
16303Set up Latin-1/ASCII display for ISO8859 character sets.
16304This is done for each character set in the list `latin1-display-sets',
16305if no font is available to display it. Characters are displayed using
16306the corresponding Latin-1 characters where they match. Otherwise
16307ASCII sequences are used, mostly following the Latin prefix input
16308methods. Some different ASCII sequences are used if
16309`latin1-display-mnemonic' is non-nil.
16310
8d8d8d4e
EZ
16311This option also treats some characters in the `mule-unicode-...'
16312charsets if you don't have a Unicode font with which to display them.
16313
b442e70a 16314Setting this variable directly does not take effect;
92e9233f 16315use either \\[customize] or the function `latin1-display'.")
b442e70a 16316
9c46b00a 16317(custom-autoload (quote latin1-display) "latin1-disp")
b442e70a
MB
16318
16319(autoload (quote latin1-display) "latin1-disp" "\
16320Set up Latin-1/ASCII display for the arguments character SETS.
16321See option `latin1-display' for the method. The members of the list
16322must be in `latin1-display-sets'. With no arguments, reset the
8d8d8d4e
EZ
16323display for all of `latin1-display-sets'. See also
16324`latin1-display-setup'. As well as iso-8859 characters, this treats
16325some characters in the `mule-unicode-...' charsets if you don't have
c595cc5f
MR
16326a Unicode font with which to display them.
16327
16328\(fn &rest SETS)" nil nil)
8d8d8d4e
EZ
16329
16330(defvar latin1-display-ucs-per-lynx nil "\
16331Set up Latin-1/ASCII display for Unicode characters.
92e9233f 16332This uses the transliterations of the Lynx browser. The display isn't
8d8d8d4e
EZ
16333changed if the display can render Unicode characters.
16334
16335Setting this variable directly does not take effect;
92e9233f 16336use either \\[customize] or the function `latin1-display'.")
8d8d8d4e 16337
9c46b00a 16338(custom-autoload (quote latin1-display-ucs-per-lynx) "latin1-disp")
b442e70a
MB
16339
16340;;;***
16341\f
93548d2e 16342;;;### (autoloads (turn-on-lazy-lock lazy-lock-mode) "lazy-lock"
a5805c9d 16343;;;;;; "obsolete/lazy-lock.el" (17279 27123))
d66d64bc 16344;;; Generated autoloads from obsolete/lazy-lock.el
93548d2e
DL
16345
16346(autoload (quote lazy-lock-mode) "lazy-lock" "\
16347Toggle Lazy Lock mode.
16348With arg, turn Lazy Lock mode on if and only if arg is positive. Enable it
16349automatically in your `~/.emacs' by:
16350
16351 (setq font-lock-support-mode 'lazy-lock-mode)
16352
662c9e53
EZ
16353For a newer font-lock support mode with similar functionality, see
16354`jit-lock-mode'. Eventually, Lazy Lock mode will be deprecated in
16355JIT Lock's favor.
16356
93548d2e
DL
16357When Lazy Lock mode is enabled, fontification can be lazy in a number of ways:
16358
16359- Demand-driven buffer fontification if `lazy-lock-minimum-size' is non-nil.
16360 This means initial fontification does not occur if the buffer is greater than
16361 `lazy-lock-minimum-size' characters in length. Instead, fontification occurs
16362 when necessary, such as when scrolling through the buffer would otherwise
16363 reveal unfontified areas. This is useful if buffer fontification is too slow
16364 for large buffers.
16365
16366- Deferred scroll fontification if `lazy-lock-defer-on-scrolling' is non-nil.
16367 This means demand-driven fontification does not occur as you scroll.
16368 Instead, fontification is deferred until after `lazy-lock-defer-time' seconds
16369 of Emacs idle time, while Emacs remains idle. This is useful if
16370 fontification is too slow to keep up with scrolling.
16371
16372- Deferred on-the-fly fontification if `lazy-lock-defer-on-the-fly' is non-nil.
16373 This means on-the-fly fontification does not occur as you type. Instead,
16374 fontification is deferred until after `lazy-lock-defer-time' seconds of Emacs
16375 idle time, while Emacs remains idle. This is useful if fontification is too
16376 slow to keep up with your typing.
16377
16378- Deferred context fontification if `lazy-lock-defer-contextually' is non-nil.
16379 This means fontification updates the buffer corresponding to true syntactic
16380 context, after `lazy-lock-defer-time' seconds of Emacs idle time, while Emacs
16381 remains idle. Otherwise, fontification occurs on modified lines only, and
16382 subsequent lines can remain fontified corresponding to previous syntactic
16383 contexts. This is useful where strings or comments span lines.
16384
16385- Stealthy buffer fontification if `lazy-lock-stealth-time' is non-nil.
16386 This means remaining unfontified areas of buffers are fontified if Emacs has
16387 been idle for `lazy-lock-stealth-time' seconds, while Emacs remains idle.
16388 This is useful if any buffer has any deferred fontification.
16389
d66d64bc 16390Basic Font Lock mode on-the-fly fontification behavior fontifies modified
93548d2e
DL
16391lines only. Thus, if `lazy-lock-defer-contextually' is non-nil, Lazy Lock mode
16392on-the-fly fontification may fontify differently, albeit correctly. In any
16393event, to refontify some lines you can use \\[font-lock-fontify-block].
16394
16395Stealth fontification only occurs while the system remains unloaded.
16396If the system load rises above `lazy-lock-stealth-load' percent, stealth
16397fontification is suspended. Stealth fontification intensity is controlled via
16398the variable `lazy-lock-stealth-nice' and `lazy-lock-stealth-lines', and
c595cc5f
MR
16399verbosity is controlled via the variable `lazy-lock-stealth-verbose'.
16400
16401\(fn &optional ARG)" t nil)
93548d2e
DL
16402
16403(autoload (quote turn-on-lazy-lock) "lazy-lock" "\
c595cc5f
MR
16404Unconditionally turn on Lazy Lock mode.
16405
16406\(fn)" nil nil)
93548d2e
DL
16407
16408;;;***
16409\f
932a6f0f 16410;;;### (autoloads (ld-script-mode) "ld-script" "progmodes/ld-script.el"
a5805c9d 16411;;;;;; (17356 16192))
932a6f0f
AS
16412;;; Generated autoloads from progmodes/ld-script.el
16413
c1a055ca
EZ
16414(add-to-list (quote auto-mode-alist) (quote ("\\.ld[si]?\\>" . ld-script-mode)))
16415
16416(add-to-list (quote auto-mode-alist) (quote ("\\.x[bdsru]?[cn]?\\'" . ld-script-mode)))
932a6f0f
AS
16417
16418(autoload (quote ld-script-mode) "ld-script" "\
16419A major mode to edit GNU ld script files
16420
16421\(fn)" t nil)
16422
16423;;;***
16424\f
93548d2e 16425;;;### (autoloads (ledit-from-lisp-mode ledit-mode) "ledit" "ledit.el"
a5805c9d 16426;;;;;; (17279 27123))
93548d2e
DL
16427;;; Generated autoloads from ledit.el
16428
16429(defconst ledit-save-files t "\
16430*Non-nil means Ledit should save files before transferring to Lisp.")
16431
16432(defconst ledit-go-to-lisp-string "%?lisp" "\
16433*Shell commands to execute to resume Lisp job.")
16434
16435(defconst ledit-go-to-liszt-string "%?liszt" "\
16436*Shell commands to execute to resume Lisp compiler job.")
16437
16438(autoload (quote ledit-mode) "ledit" "\
16439\\<ledit-mode-map>Major mode for editing text and stuffing it to a Lisp job.
16440Like Lisp mode, plus these special commands:
16441 \\[ledit-save-defun] -- record defun at or after point
16442 for later transmission to Lisp job.
16443 \\[ledit-save-region] -- record region for later transmission to Lisp job.
16444 \\[ledit-go-to-lisp] -- transfer to Lisp job and transmit saved text.
16445 \\[ledit-go-to-liszt] -- transfer to Liszt (Lisp compiler) job
16446 and transmit saved text.
16447\\{ledit-mode-map}
16448To make Lisp mode automatically change to Ledit mode,
c595cc5f
MR
16449do (setq lisp-mode-hook 'ledit-from-lisp-mode)
16450
16451\(fn)" t nil)
93548d2e 16452
c595cc5f
MR
16453(autoload (quote ledit-from-lisp-mode) "ledit" "\
16454Not documented
16455
16456\(fn)" nil nil)
93548d2e
DL
16457
16458;;;***
16459\f
a5805c9d 16460;;;### (autoloads (life) "life" "play/life.el" (17279 27123))
93548d2e
DL
16461;;; Generated autoloads from play/life.el
16462
16463(autoload (quote life) "life" "\
16464Run Conway's Life simulation.
16465The starting pattern is randomly selected. Prefix arg (optional first
16466arg non-nil from a program) is the number of seconds to sleep between
c595cc5f
MR
16467generations (this defaults to 1).
16468
16469\(fn &optional SLEEPTIME)" t nil)
93548d2e
DL
16470
16471;;;***
16472\f
a5805c9d
KL
16473;;;### (autoloads (unload-feature) "loadhist" "loadhist.el" (17279
16474;;;;;; 27189))
93548d2e
DL
16475;;; Generated autoloads from loadhist.el
16476
16477(autoload (quote unload-feature) "loadhist" "\
16478Unload the library that provided FEATURE, restoring all its autoloads.
f75a0f7a 16479If the feature is required by any other loaded code, and prefix arg FORCE
c595cc5f
MR
16480is nil, raise an error.
16481
390069bc
AS
16482This function tries to undo modifications made by the package to
16483hooks. Packages may define a hook FEATURE-unload-hook that is called
16484instead of the normal heuristics for doing this. Such a hook should
16485undo all the relevant global state changes that may have been made by
16486loading the package or executing functions in it. It has access to
16487the package's feature list (before anything is unbound) in the
16488variable `unload-hook-features-list' and could remove features from it
16489in the event that the package has done something normally-ill-advised,
16490such as redefining an Emacs function.
16491
c595cc5f 16492\(fn FEATURE &optional FORCE)" t nil)
93548d2e
DL
16493
16494;;;***
16495\f
390069bc 16496;;;### (autoloads (locate-with-filter locate locate-ls-subdir-switches)
a5805c9d 16497;;;;;; "locate" "locate.el" (17337 56254))
93548d2e
DL
16498;;; Generated autoloads from locate.el
16499
390069bc
AS
16500(defvar locate-ls-subdir-switches "-al" "\
16501`ls' switches for inserting subdirectories in `*Locate*' buffers.
16502This should contain the \"-l\" switch, but not the \"-F\" or \"-b\" switches.")
16503
16504(custom-autoload (quote locate-ls-subdir-switches) "locate")
16505
93548d2e 16506(autoload (quote locate) "locate" "\
64ed733a 16507Run the program `locate', putting results in `*Locate*' buffer.
c595cc5f
MR
16508With prefix arg, prompt for the locate command to run.
16509
16510\(fn SEARCH-STRING &optional FILTER)" t nil)
93548d2e
DL
16511
16512(autoload (quote locate-with-filter) "locate" "\
cded5ed3
GM
16513Run the locate command with a filter.
16514
16515The filter is a regular expression. Only results matching the filter are
c595cc5f
MR
16516shown; this is often useful to constrain a big search.
16517
16518\(fn SEARCH-STRING FILTER)" t nil)
93548d2e
DL
16519
16520;;;***
16521\f
a5805c9d 16522;;;### (autoloads (log-edit) "log-edit" "log-edit.el" (17297 42808))
fd0e837b
GM
16523;;; Generated autoloads from log-edit.el
16524
16525(autoload (quote log-edit) "log-edit" "\
16526Setup a buffer to enter a log message.
bd02b8e0 16527\\<log-edit-mode-map>The buffer will be put in `log-edit-mode'.
fd0e837b
GM
16528If SETUP is non-nil, the buffer is then erased and `log-edit-hook' is run.
16529Mark and point will be set around the entire contents of the
16530buffer so that it is easy to kill the contents of the buffer with \\[kill-region].
16531Once you're done editing the message, pressing \\[log-edit-done] will call
ac95a621
GM
16532`log-edit-done' which will end up calling CALLBACK to do the actual commit.
16533LISTFUN if non-nil is a function of no arguments returning the list of files
16534 that are concerned by the current operation (using relative names).
16535If BUFFER is non-nil `log-edit' will jump to that buffer, use it to edit the
16536 log message and go back to the current buffer when done. Otherwise, it
c595cc5f
MR
16537 uses the current buffer.
16538
16539\(fn CALLBACK &optional SETUP LISTFUN BUFFER &rest IGNORE)" nil nil)
fd0e837b
GM
16540
16541;;;***
16542\f
a5805c9d
KL
16543;;;### (autoloads (log-view-mode) "log-view" "log-view.el" (17374
16544;;;;;; 21531))
fd0e837b
GM
16545;;; Generated autoloads from log-view.el
16546
16547(autoload (quote log-view-mode) "log-view" "\
27a99a7c
GM
16548Major mode for browsing CVS log output.
16549
16550\(fn)" t nil)
fd0e837b
GM
16551
16552;;;***
16553\f
a5805c9d
KL
16554;;;### (autoloads (longlines-mode) "longlines" "longlines.el" (17327
16555;;;;;; 23539))
d66d64bc
KL
16556;;; Generated autoloads from longlines.el
16557
16558(autoload (quote longlines-mode) "longlines" "\
16559Toggle Long Lines mode.
16560In Long Lines mode, long lines are wrapped if they extend beyond
16561`fill-column'. The soft newlines used for line wrapping will not
16562show up when the text is yanked or saved to disk.
16563
16564If the variable `longlines-auto-wrap' is non-nil, lines are automatically
16565wrapped whenever the buffer is changed. You can always call
16566`fill-paragraph' to fill individual paragraphs.
16567
16568If the variable `longlines-show-hard-newlines' is non-nil, hard newlines
16569are indicated with a symbol.
16570
16571\(fn &optional ARG)" t nil)
16572
16573;;;***
16574\f
93548d2e 16575;;;### (autoloads (print-region lpr-region print-buffer lpr-buffer
a5805c9d
KL
16576;;;;;; lpr-command lpr-switches printer-name) "lpr" "lpr.el" (17279
16577;;;;;; 27123))
93548d2e
DL
16578;;; Generated autoloads from lpr.el
16579
efaa080b
GM
16580(defvar lpr-windows-system (memq system-type (quote (emx win32 w32 mswindows ms-dos windows-nt))))
16581
16582(defvar lpr-lp-system (memq system-type (quote (usg-unix-v dgux hpux irix))))
16583
16584(defvar printer-name (and lpr-windows-system "PRN") "\
93548d2e
DL
16585*The name of a local printer to which data is sent for printing.
16586\(Note that PostScript files are sent to `ps-printer-name', which see.)
16587
16588On Unix-like systems, a string value should be a name understood by
16589lpr's -P option; otherwise the value should be nil.
16590
16591On MS-DOS and MS-Windows systems, a string value is taken as the name of
16592a printer device or port, provided `lpr-command' is set to \"\".
16593Typical non-default settings would be \"LPT1\" to \"LPT3\" for parallel
16594printers, or \"COM1\" to \"COM4\" or \"AUX\" for serial printers, or
16595\"//hostname/printer\" for a shared network printer. You can also set
16596it to the name of a file, in which case the output gets appended to that
16597file. If you want to discard the printed output, set this to \"NUL\".")
16598
9c46b00a
MR
16599(custom-autoload (quote printer-name) "lpr")
16600
93548d2e
DL
16601(defvar lpr-switches nil "\
16602*List of strings to pass as extra options for the printer program.
16603It is recommended to set `printer-name' instead of including an explicit
16604switch on this list.
16605See `lpr-command'.")
16606
9c46b00a
MR
16607(custom-autoload (quote lpr-switches) "lpr")
16608
efaa080b 16609(defvar lpr-command (cond (lpr-windows-system "") (lpr-lp-system "lp") (t "lpr")) "\
93548d2e
DL
16610*Name of program for printing a file.
16611
16612On MS-DOS and MS-Windows systems, if the value is an empty string then
16613Emacs will write directly to the printer port named by `printer-name'.
16614The programs `print' and `nprint' (the standard print programs on
16615Windows NT and Novell Netware respectively) are handled specially, using
16616`printer-name' as the destination for output; any other program is
16617treated like `lpr' except that an explicit filename is given as the last
16618argument.")
16619
9c46b00a
MR
16620(custom-autoload (quote lpr-command) "lpr")
16621
93548d2e 16622(autoload (quote lpr-buffer) "lpr" "\
6448a6b3
GM
16623Print buffer contents without pagination or page headers.
16624See the variables `lpr-switches' and `lpr-command'
c595cc5f
MR
16625for customization of the printer command.
16626
16627\(fn)" t nil)
93548d2e
DL
16628
16629(autoload (quote print-buffer) "lpr" "\
cded5ed3 16630Paginate and print buffer contents.
cded5ed3 16631
6448a6b3
GM
16632The variable `lpr-headers-switches' controls how to paginate.
16633If it is nil (the default), we run the `pr' program (or whatever program
16634`lpr-page-header-program' specifies) to paginate.
16635`lpr-page-header-switches' specifies the switches for that program.
16636
16637Otherwise, the switches in `lpr-headers-switches' are used
16638in the print command itself; we expect them to request pagination.
821b278f 16639
6448a6b3 16640See the variables `lpr-switches' and `lpr-command'
c595cc5f
MR
16641for further customization of the printer command.
16642
16643\(fn)" t nil)
93548d2e
DL
16644
16645(autoload (quote lpr-region) "lpr" "\
6448a6b3
GM
16646Print region contents without pagination or page headers.
16647See the variables `lpr-switches' and `lpr-command'
c595cc5f
MR
16648for customization of the printer command.
16649
16650\(fn START END)" t nil)
93548d2e
DL
16651
16652(autoload (quote print-region) "lpr" "\
6448a6b3
GM
16653Paginate and print the region contents.
16654
16655The variable `lpr-headers-switches' controls how to paginate.
16656If it is nil (the default), we run the `pr' program (or whatever program
16657`lpr-page-header-program' specifies) to paginate.
16658`lpr-page-header-switches' specifies the switches for that program.
16659
16660Otherwise, the switches in `lpr-headers-switches' are used
16661in the print command itself; we expect them to request pagination.
821b278f 16662
6448a6b3 16663See the variables `lpr-switches' and `lpr-command'
c595cc5f 16664for further customization of the printer command.
93548d2e 16665
c595cc5f 16666\(fn START END)" t nil)
93548d2e
DL
16667
16668;;;***
16669\f
821b278f 16670;;;### (autoloads (ls-lisp-support-shell-wildcards) "ls-lisp" "ls-lisp.el"
a5805c9d 16671;;;;;; (17297 42802))
821b278f
MR
16672;;; Generated autoloads from ls-lisp.el
16673
16674(defvar ls-lisp-support-shell-wildcards t "\
16675*Non-nil means ls-lisp treats file patterns as shell wildcards.
16676Otherwise they are treated as Emacs regexps (for backward compatibility).")
16677
16678(custom-autoload (quote ls-lisp-support-shell-wildcards) "ls-lisp")
16679
16680;;;***
16681\f
a5805c9d
KL
16682;;;### (autoloads (phases-of-moon) "lunar" "calendar/lunar.el" (17308
16683;;;;;; 43144))
93548d2e
DL
16684;;; Generated autoloads from calendar/lunar.el
16685
16686(autoload (quote phases-of-moon) "lunar" "\
16687Display the quarters of the moon for last month, this month, and next month.
16688If called with an optional prefix argument, prompts for month and year.
16689
c595cc5f
MR
16690This function is suitable for execution in a .emacs file.
16691
16692\(fn &optional ARG)" t nil)
93548d2e
DL
16693
16694;;;***
16695\f
a5805c9d
KL
16696;;;### (autoloads (m4-mode) "m4-mode" "progmodes/m4-mode.el" (17279
16697;;;;;; 27203))
93548d2e
DL
16698;;; Generated autoloads from progmodes/m4-mode.el
16699
16700(autoload (quote m4-mode) "m4-mode" "\
16701A major mode to edit m4 macro files.
16702\\{m4-mode-map}
c595cc5f
MR
16703
16704\(fn)" t nil)
93548d2e
DL
16705
16706;;;***
16707\f
390069bc 16708;;;### (autoloads (macroexpand-all) "macroexp" "emacs-lisp/macroexp.el"
a5805c9d 16709;;;;;; (17279 27122))
390069bc
AS
16710;;; Generated autoloads from emacs-lisp/macroexp.el
16711
16712(autoload (quote macroexpand-all) "macroexp" "\
16713Return result of expanding macros at all levels in FORM.
16714If no macros are expanded, FORM is returned unchanged.
16715The second optional arg ENVIRONMENT specifies an environment of macro
16716definitions to shadow the loaded ones for use in file byte-compilation.
16717
16718\(fn FORM &optional ENVIRONMENT)" nil nil)
16719
16720;;;***
16721\f
93548d2e 16722;;;### (autoloads (apply-macro-to-region-lines kbd-macro-query insert-kbd-macro
a5805c9d 16723;;;;;; name-last-kbd-macro) "macros" "macros.el" (17279 27123))
93548d2e
DL
16724;;; Generated autoloads from macros.el
16725
16726(autoload (quote name-last-kbd-macro) "macros" "\
16727Assign a name to the last keyboard macro defined.
16728Argument SYMBOL is the name to define.
16729The symbol's function definition becomes the keyboard macro string.
c595cc5f
MR
16730Such a \"function\" cannot be called from Lisp, but it is a valid editor command.
16731
16732\(fn SYMBOL)" t nil)
93548d2e
DL
16733
16734(autoload (quote insert-kbd-macro) "macros" "\
16735Insert in buffer the definition of kbd macro NAME, as Lisp code.
16736Optional second arg KEYS means also record the keys it is on
16737\(this is the prefix argument, when calling interactively).
16738
16739This Lisp code will, when executed, define the kbd macro with the same
16740definition it has now. If you say to record the keys, the Lisp code
16741will also rebind those keys to the macro. Only global key bindings
16742are recorded since executing this Lisp code always makes global
16743bindings.
16744
16745To save a kbd macro, visit a file of Lisp code such as your `~/.emacs',
c595cc5f
MR
16746use this command, and then save the file.
16747
16748\(fn MACRONAME &optional KEYS)" t nil)
93548d2e
DL
16749
16750(autoload (quote kbd-macro-query) "macros" "\
16751Query user during kbd macro execution.
16752 With prefix argument, enters recursive edit, reading keyboard
16753commands even within a kbd macro. You can give different commands
16754each time the macro executes.
16755 Without prefix argument, asks whether to continue running the macro.
16756Your options are: \\<query-replace-map>
16757\\[act] Finish this iteration normally and continue with the next.
16758\\[skip] Skip the rest of this iteration, and start the next.
16759\\[exit] Stop the macro entirely right now.
16760\\[recenter] Redisplay the screen, then ask again.
c595cc5f
MR
16761\\[edit] Enter recursive edit; ask again when you exit from that.
16762
16763\(fn FLAG)" t nil)
93548d2e
DL
16764
16765(autoload (quote apply-macro-to-region-lines) "macros" "\
390069bc
AS
16766Apply last keyboard macro to all lines in the region.
16767For each line that begins in the region, move to the beginning of
16768the line, and run the last keyboard macro.
93548d2e
DL
16769
16770When called from lisp, this function takes two arguments TOP and
16771BOTTOM, describing the current region. TOP must be before BOTTOM.
16772The optional third argument MACRO specifies a keyboard macro to
16773execute.
16774
16775This is useful for quoting or unquoting included text, adding and
16776removing comments, or producing tables where the entries are regular.
16777
16778For example, in Usenet articles, sections of text quoted from another
16779author are indented, or have each line start with `>'. To quote a
16780section of text, define a keyboard macro which inserts `>', put point
16781and mark at opposite ends of the quoted section, and use
16782`\\[apply-macro-to-region-lines]' to mark the entire section.
16783
16784Suppose you wanted to build a keyword table in C where each entry
16785looked like this:
16786
821b278f 16787 { \"foo\", foo_data, foo_function },
93548d2e
DL
16788 { \"bar\", bar_data, bar_function },
16789 { \"baz\", baz_data, baz_function },
16790
16791You could enter the names in this format:
16792
16793 foo
16794 bar
16795 baz
16796
16797and write a macro to massage a word into a table entry:
16798
16799 \\C-x (
16800 \\M-d { \"\\C-y\", \\C-y_data, \\C-y_function },
16801 \\C-x )
16802
16803and then select the region of un-tablified names and use
16804`\\[apply-macro-to-region-lines]' to build the table from the names.
c595cc5f
MR
16805
16806\(fn TOP BOTTOM &optional MACRO)" t nil)
93548d2e
DL
16807 (define-key ctl-x-map "q" 'kbd-macro-query)
16808
16809;;;***
16810\f
16811;;;### (autoloads (what-domain mail-extract-address-components) "mail-extr"
a5805c9d 16812;;;;;; "mail/mail-extr.el" (17308 43144))
93548d2e
DL
16813;;; Generated autoloads from mail/mail-extr.el
16814
16815(autoload (quote mail-extract-address-components) "mail-extr" "\
16816Given an RFC-822 address ADDRESS, extract full name and canonical address.
c1a055ca
EZ
16817Returns a list of the form (FULL-NAME CANONICAL-ADDRESS). If no
16818name can be extracted, FULL-NAME will be nil. Also see
16819`mail-extr-ignore-single-names' and
16820`mail-extr-ignore-realname-equals-mailbox-name'.
93548d2e
DL
16821
16822If the optional argument ALL is non-nil, then ADDRESS can contain zero
16823or more recipients, separated by commas, and we return a list of
16824the form ((FULL-NAME CANONICAL-ADDRESS) ...) with one element for
16825each recipient. If ALL is nil, then if ADDRESS contains more than
16826one recipients, all but the first is ignored.
16827
f383cd0d 16828ADDRESS may be a string or a buffer. If it is a buffer, the visible
c595cc5f
MR
16829\(narrowed) portion of the buffer will be interpreted as the address.
16830\(This feature exists so that the clever caller might be able to avoid
16831consing a string.)
16832
16833\(fn ADDRESS &optional ALL)" nil nil)
93548d2e
DL
16834
16835(autoload (quote what-domain) "mail-extr" "\
c595cc5f
MR
16836Convert mail domain DOMAIN to the country it corresponds to.
16837
16838\(fn DOMAIN)" t nil)
93548d2e
DL
16839
16840;;;***
16841\f
16842;;;### (autoloads (mail-hist-put-headers-into-history mail-hist-keep-history
16843;;;;;; mail-hist-enable mail-hist-define-keys) "mail-hist" "mail/mail-hist.el"
a5805c9d 16844;;;;;; (17279 27123))
93548d2e
DL
16845;;; Generated autoloads from mail/mail-hist.el
16846
16847(autoload (quote mail-hist-define-keys) "mail-hist" "\
c595cc5f 16848Define keys for accessing mail header history. For use in hooks.
93548d2e 16849
c595cc5f
MR
16850\(fn)" nil nil)
16851
16852(autoload (quote mail-hist-enable) "mail-hist" "\
16853Not documented
16854
16855\(fn)" nil nil)
93548d2e
DL
16856
16857(defvar mail-hist-keep-history t "\
16858*Non-nil means keep a history for headers and text of outgoing mail.")
16859
9c46b00a
MR
16860(custom-autoload (quote mail-hist-keep-history) "mail-hist")
16861
93548d2e 16862(autoload (quote mail-hist-put-headers-into-history) "mail-hist" "\
821b278f 16863Put headers and contents of this message into mail header history.
93548d2e
DL
16864Each header has its own independent history, as does the body of the
16865message.
16866
c595cc5f
MR
16867This function normally would be called when the message is sent.
16868
16869\(fn)" nil nil)
93548d2e
DL
16870
16871;;;***
16872\f
7518ed7b
GM
16873;;;### (autoloads (mail-fetch-field mail-unquote-printable-region
16874;;;;;; mail-unquote-printable mail-quote-printable mail-file-babyl-p
a5805c9d
KL
16875;;;;;; mail-use-rfc822) "mail-utils" "mail/mail-utils.el" (17279
16876;;;;;; 27123))
93548d2e
DL
16877;;; Generated autoloads from mail/mail-utils.el
16878
16879(defvar mail-use-rfc822 nil "\
16880*If non-nil, use a full, hairy RFC822 parser on mail addresses.
16881Otherwise, (the default) use a smaller, somewhat faster, and
16882often correct parser.")
16883
9c46b00a
MR
16884(custom-autoload (quote mail-use-rfc822) "mail-utils")
16885
c595cc5f
MR
16886(autoload (quote mail-file-babyl-p) "mail-utils" "\
16887Not documented
16888
16889\(fn FILE)" nil nil)
93548d2e 16890
7518ed7b
GM
16891(autoload (quote mail-quote-printable) "mail-utils" "\
16892Convert a string to the \"quoted printable\" Q encoding.
16893If the optional argument WRAPPER is non-nil,
c595cc5f
MR
16894we add the wrapper characters =?ISO-8859-1?Q?....?=.
16895
16896\(fn STRING &optional WRAPPER)" nil nil)
7518ed7b
GM
16897
16898(autoload (quote mail-unquote-printable) "mail-utils" "\
16899Undo the \"quoted printable\" encoding.
16900If the optional argument WRAPPER is non-nil,
c595cc5f
MR
16901we expect to find and remove the wrapper characters =?ISO-8859-1?Q?....?=.
16902
16903\(fn STRING &optional WRAPPER)" nil nil)
7518ed7b
GM
16904
16905(autoload (quote mail-unquote-printable-region) "mail-utils" "\
16906Undo the \"quoted printable\" encoding in buffer from BEG to END.
16907If the optional argument WRAPPER is non-nil,
c595cc5f 16908we expect to find and remove the wrapper characters =?ISO-8859-1?Q?....?=.
390069bc
AS
16909If NOERROR is non-nil, return t if successful.
16910If UNIBYTE is non-nil, insert converted characters as unibyte.
16911That is useful if you are going to character code decoding afterward,
16912as Rmail does.
c595cc5f 16913
390069bc 16914\(fn BEG END &optional WRAPPER NOERROR UNIBYTE)" t nil)
7518ed7b 16915
93548d2e
DL
16916(autoload (quote mail-fetch-field) "mail-utils" "\
16917Return the value of the header field whose type is FIELD-NAME.
16918The buffer is expected to be narrowed to just the header of the message.
16919If second arg LAST is non-nil, use the last field of type FIELD-NAME.
16920If third arg ALL is non-nil, concatenate all such fields with commas between.
c595cc5f
MR
16921If 4th arg LIST is non-nil, return a list of all such fields.
16922
16923\(fn FIELD-NAME &optional LAST ALL LIST)" nil nil)
93548d2e
DL
16924
16925;;;***
16926\f
16927;;;### (autoloads (define-mail-abbrev build-mail-abbrevs mail-abbrevs-setup)
a5805c9d 16928;;;;;; "mailabbrev" "mail/mailabbrev.el" (17279 27185))
93548d2e
DL
16929;;; Generated autoloads from mail/mailabbrev.el
16930
16931(autoload (quote mail-abbrevs-setup) "mailabbrev" "\
c595cc5f
MR
16932Initialize use of the `mailabbrev' package.
16933
16934\(fn)" nil nil)
93548d2e
DL
16935
16936(autoload (quote build-mail-abbrevs) "mailabbrev" "\
16937Read mail aliases from personal mail alias file and set `mail-abbrevs'.
c595cc5f
MR
16938By default this is the file specified by `mail-personal-alias-file'.
16939
16940\(fn &optional FILE RECURSIVEP)" nil nil)
93548d2e
DL
16941
16942(autoload (quote define-mail-abbrev) "mailabbrev" "\
16943Define NAME as a mail alias abbrev that translates to DEFINITION.
c595cc5f
MR
16944If DEFINITION contains multiple addresses, separate them with commas.
16945
16946\(fn NAME DEFINITION &optional FROM-MAILRC-FILE)" t nil)
93548d2e
DL
16947
16948;;;***
16949\f
16950;;;### (autoloads (mail-complete define-mail-alias expand-mail-aliases
a5805c9d
KL
16951;;;;;; mail-complete-style) "mailalias" "mail/mailalias.el" (17279
16952;;;;;; 27123))
93548d2e
DL
16953;;; Generated autoloads from mail/mailalias.el
16954
16955(defvar mail-complete-style (quote angles) "\
16956*Specifies how \\[mail-complete] formats the full name when it completes.
16957If `nil', they contain just the return address like:
16958 king@grassland.com
16959If `parens', they look like:
16960 king@grassland.com (Elvis Parsley)
16961If `angles', they look like:
16962 Elvis Parsley <king@grassland.com>")
16963
9c46b00a
MR
16964(custom-autoload (quote mail-complete-style) "mailalias")
16965
93548d2e
DL
16966(autoload (quote expand-mail-aliases) "mailalias" "\
16967Expand all mail aliases in suitable header fields found between BEG and END.
16968If interactive, expand in header fields.
16969Suitable header fields are `To', `From', `CC' and `BCC', `Reply-to', and
16970their `Resent-' variants.
16971
16972Optional second arg EXCLUDE may be a regular expression defining text to be
c595cc5f
MR
16973removed from alias expansions.
16974
16975\(fn BEG END &optional EXCLUDE)" t nil)
93548d2e
DL
16976
16977(autoload (quote define-mail-alias) "mailalias" "\
16978Define NAME as a mail alias that translates to DEFINITION.
16979This means that sending a message to NAME will actually send to DEFINITION.
16980
16981Normally, the addresses in DEFINITION must be separated by commas.
821b278f 16982If FROM-MAILRC-FILE is non-nil, then addresses in DEFINITION
93548d2e 16983can be separated by spaces; an address can contain spaces
c595cc5f
MR
16984if it is quoted with double-quotes.
16985
16986\(fn NAME DEFINITION &optional FROM-MAILRC-FILE)" t nil)
93548d2e
DL
16987
16988(autoload (quote mail-complete) "mailalias" "\
16989Perform completion on header field or word preceding point.
16990Completable headers are according to `mail-complete-alist'. If none matches
c595cc5f
MR
16991current header, calls `mail-complete-function' and passes prefix arg if any.
16992
16993\(fn ARG)" t nil)
93548d2e
DL
16994
16995;;;***
16996\f
175a97e4 16997;;;### (autoloads (mailclient-send-it) "mailclient" "mail/mailclient.el"
a5805c9d 16998;;;;;; (17379 24714))
175a97e4
EZ
16999;;; Generated autoloads from mail/mailclient.el
17000
17001(autoload (quote mailclient-send-it) "mailclient" "\
17002Pass current buffer on to the system's mail client.
17003Suitable value for `send-mail-function'.
17004The mail client is taken to be the handler of mailto URLs.
17005
17006\(fn)" nil nil)
17007
17008;;;***
17009\f
c1a055ca
EZ
17010;;;### (autoloads (makefile-imake-mode makefile-bsdmake-mode makefile-makepp-mode
17011;;;;;; makefile-gmake-mode makefile-automake-mode makefile-mode)
a5805c9d 17012;;;;;; "make-mode" "progmodes/make-mode.el" (17374 21244))
93548d2e
DL
17013;;; Generated autoloads from progmodes/make-mode.el
17014
17015(autoload (quote makefile-mode) "make-mode" "\
d66d64bc
KL
17016Major mode for editing standard Makefiles.
17017
17018If you are editing a file for a different make, try one of the
17019variants `makefile-automake-mode', `makefile-gmake-mode',
c1a055ca
EZ
17020`makefile-makepp-mode', `makefile-bsdmake-mode' or,
17021`makefile-imake-mode'All but the
d66d64bc
KL
17022last should be correctly chosen based on the file name, except if
17023it is *.mk. This function ends by invoking the function(s)
17024`makefile-mode-hook'.
17025
17026It is strongly recommended to use `font-lock-mode', because that
17027provides additional parsing information. This is used for
17028example to see that a rule action `echo foo: bar' is a not rule
17029dependency, despite the colon.
93548d2e
DL
17030
17031\\{makefile-mode-map}
17032
17033In the browser, use the following keys:
17034
17035\\{makefile-browser-map}
17036
17037Makefile mode can be configured by modifying the following variables:
17038
8d8d8d4e 17039`makefile-browser-buffer-name':
93548d2e
DL
17040 Name of the macro- and target browser buffer.
17041
8d8d8d4e 17042`makefile-target-colon':
93548d2e
DL
17043 The string that gets appended to all target names
17044 inserted by `makefile-insert-target'.
17045 \":\" or \"::\" are quite common values.
17046
8d8d8d4e 17047`makefile-macro-assign':
93548d2e
DL
17048 The string that gets appended to all macro names
17049 inserted by `makefile-insert-macro'.
17050 The normal value should be \" = \", since this is what
cded5ed3 17051 standard make expects. However, newer makes such as dmake
93548d2e
DL
17052 allow a larger variety of different macro assignments, so you
17053 might prefer to use \" += \" or \" := \" .
17054
8d8d8d4e 17055`makefile-tab-after-target-colon':
93548d2e
DL
17056 If you want a TAB (instead of a space) to be appended after the
17057 target colon, then set this to a non-nil value.
17058
8d8d8d4e 17059`makefile-browser-leftmost-column':
93548d2e
DL
17060 Number of blanks to the left of the browser selection mark.
17061
8d8d8d4e 17062`makefile-browser-cursor-column':
93548d2e
DL
17063 Column in which the cursor is positioned when it moves
17064 up or down in the browser.
17065
8d8d8d4e 17066`makefile-browser-selected-mark':
93548d2e
DL
17067 String used to mark selected entries in the browser.
17068
8d8d8d4e 17069`makefile-browser-unselected-mark':
93548d2e
DL
17070 String used to mark unselected entries in the browser.
17071
8d8d8d4e 17072`makefile-browser-auto-advance-after-selection-p':
93548d2e
DL
17073 If this variable is set to a non-nil value the cursor
17074 will automagically advance to the next line after an item
17075 has been selected in the browser.
17076
8d8d8d4e 17077`makefile-pickup-everything-picks-up-filenames-p':
93548d2e
DL
17078 If this variable is set to a non-nil value then
17079 `makefile-pickup-everything' also picks up filenames as targets
17080 (i.e. it calls `makefile-pickup-filenames-as-targets'), otherwise
17081 filenames are omitted.
17082
c595cc5f 17083`makefile-cleanup-continuations':
cded5ed3 17084 If this variable is set to a non-nil value then Makefile mode
93548d2e
DL
17085 will assure that no line in the file ends with a backslash
17086 (the continuation character) followed by any whitespace.
17087 This is done by silently removing the trailing whitespace, leaving
17088 the backslash itself intact.
cded5ed3 17089 IMPORTANT: Please note that enabling this option causes Makefile mode
93548d2e
DL
17090 to MODIFY A FILE WITHOUT YOUR CONFIRMATION when \"it seems necessary\".
17091
8d8d8d4e 17092`makefile-browser-hook':
93548d2e
DL
17093 A function or list of functions to be called just before the
17094 browser is entered. This is executed in the makefile buffer.
17095
8d8d8d4e 17096`makefile-special-targets-list':
93548d2e
DL
17097 List of special targets. You will be offered to complete
17098 on one of those in the minibuffer whenever you enter a `.'.
c595cc5f
MR
17099 at the beginning of a line in Makefile mode.
17100
17101\(fn)" t nil)
93548d2e 17102
d66d64bc
KL
17103(autoload (quote makefile-automake-mode) "make-mode" "\
17104An adapted `makefile-mode' that knows about automake.
17105
17106\(fn)" t nil)
17107
17108(autoload (quote makefile-gmake-mode) "make-mode" "\
17109An adapted `makefile-mode' that knows about gmake.
17110
17111\(fn)" t nil)
17112
17113(autoload (quote makefile-makepp-mode) "make-mode" "\
17114An adapted `makefile-mode' that knows about makepp.
17115
17116\(fn)" t nil)
17117
17118(autoload (quote makefile-bsdmake-mode) "make-mode" "\
17119An adapted `makefile-mode' that knows about BSD make.
17120
17121\(fn)" t nil)
17122
c1a055ca
EZ
17123(autoload (quote makefile-imake-mode) "make-mode" "\
17124An adapted `makefile-mode' that knows about imake.
17125
17126\(fn)" t nil)
17127
93548d2e
DL
17128;;;***
17129\f
a5805c9d
KL
17130;;;### (autoloads (make-command-summary) "makesum" "makesum.el" (17279
17131;;;;;; 27123))
93548d2e
DL
17132;;; Generated autoloads from makesum.el
17133
17134(autoload (quote make-command-summary) "makesum" "\
17135Make a summary of current key bindings in the buffer *Summary*.
c595cc5f
MR
17136Previous contents of that buffer are killed first.
17137
17138\(fn)" t nil)
93548d2e
DL
17139
17140;;;***
17141\f
a5805c9d 17142;;;### (autoloads (man-follow man) "man" "man.el" (17357 6510))
93548d2e
DL
17143;;; Generated autoloads from man.el
17144
17145(defalias (quote manual-entry) (quote man))
17146
17147(autoload (quote man) "man" "\
17148Get a Un*x manual page and put it in a buffer.
17149This command is the top-level command in the man package. It runs a Un*x
17150command to retrieve and clean a manpage in the background and places the
17151results in a Man mode (manpage browsing) buffer. See variable
17152`Man-notify-method' for what happens when the buffer is ready.
abb2db1c
GM
17153If a buffer already exists for this man page, it will display immediately.
17154
17155To specify a man page from a certain section, type SUBJECT(SECTION) or
a67b854e
GM
17156SECTION SUBJECT when prompted for a manual entry. To see manpages from
17157all sections related to a subject, put something appropriate into the
c595cc5f
MR
17158`Man-switches' variable, which see.
17159
17160\(fn MAN-ARGS)" t nil)
93548d2e
DL
17161
17162(autoload (quote man-follow) "man" "\
c595cc5f
MR
17163Get a Un*x manual page of the item under point and put it in a buffer.
17164
17165\(fn MAN-ARGS)" t nil)
93548d2e
DL
17166
17167;;;***
17168\f
a5805c9d 17169;;;### (autoloads (master-mode) "master" "master.el" (17279 27123))
4c6bc877
MR
17170;;; Generated autoloads from master.el
17171
17172(autoload (quote master-mode) "master" "\
17173Toggle Master mode.
17174With no argument, this command toggles the mode.
17175Non-null prefix argument turns on the mode.
17176Null prefix argument turns off the mode.
17177
17178When Master mode is enabled, you can scroll the slave buffer using the
17179following commands:
17180
17181\\{master-mode-map}
17182
17183The slave buffer is stored in the buffer-local variable `master-of'.
17184You can set this variable using `master-set-slave'. You can show
c595cc5f
MR
17185yourself the value of `master-of' by calling `master-show-slave'.
17186
17187\(fn &optional ARG)" t nil)
4c6bc877
MR
17188
17189;;;***
17190\f
a5805c9d
KL
17191;;;### (autoloads (menu-bar-mode) "menu-bar" "menu-bar.el" (17331
17192;;;;;; 26267))
0c72a1a2
MR
17193;;; Generated autoloads from menu-bar.el
17194
17195(put (quote menu-bar-mode) (quote standard-value) (quote (t)))
17196
17197(defvar menu-bar-mode nil "\
17198Non-nil if Menu-Bar mode is enabled.
17199See the command `menu-bar-mode' for a description of this minor-mode.
17200Setting this variable directly does not take effect;
17201use either \\[customize] or the function `menu-bar-mode'.")
17202
17203(custom-autoload (quote menu-bar-mode) "menu-bar")
17204
ac09dc1e
KL
17205(put (quote menu-bar-mode) (quote custom-set) (quote custom-set-minor-mode))
17206
0c72a1a2
MR
17207(autoload (quote menu-bar-mode) "menu-bar" "\
17208Toggle display of a menu bar on each frame.
17209This command applies to all frames that exist and frames to be
17210created in the future.
17211With a numeric argument, if the argument is positive,
17212turn on menu bars; otherwise, turn off menu bars.
17213
17214\(fn &optional ARG)" t nil)
17215
17216;;;***
17217\f
93548d2e
DL
17218;;;### (autoloads (unbold-region bold-region message-news-other-frame
17219;;;;;; message-news-other-window message-mail-other-frame message-mail-other-window
8d8d8d4e
EZ
17220;;;;;; message-bounce message-resend message-insinuate-rmail message-forward-rmail-make-body
17221;;;;;; message-forward-make-body message-forward message-recover
93548d2e 17222;;;;;; message-supersede message-cancel-news message-followup message-wide-reply
175a97e4
EZ
17223;;;;;; message-reply message-news message-mail message-mode message-signature-insert-empty-line
17224;;;;;; message-signature-file message-signature message-indent-citation-function
17225;;;;;; message-cite-function message-yank-prefix message-citation-line-function
17226;;;;;; message-send-mail-function message-user-organization-file
17227;;;;;; message-signature-separator message-from-style) "message"
a5805c9d 17228;;;;;; "gnus/message.el" (17379 24711))
93548d2e
DL
17229;;; Generated autoloads from gnus/message.el
17230
17231(defvar message-from-style (quote default) "\
17232*Specifies how \"From\" headers look.
17233
ac95a621 17234If nil, they contain just the return address like:
93548d2e
DL
17235 king@grassland.com
17236If `parens', they look like:
17237 king@grassland.com (Elvis Parsley)
17238If `angles', they look like:
17239 Elvis Parsley <king@grassland.com>
17240
17241Otherwise, most addresses look like `angles', but they look like
17242`parens' if `angles' would need quoting and `parens' would not.")
17243
9c46b00a
MR
17244(custom-autoload (quote message-from-style) "message")
17245
390069bc
AS
17246(defvar message-signature-separator "^-- *$" "\
17247Regexp matching the signature separator.")
17248
17249(custom-autoload (quote message-signature-separator) "message")
9c46b00a 17250
93548d2e
DL
17251(defvar message-user-organization-file "/usr/lib/news/organization" "\
17252*Local news organization file.")
17253
9c46b00a
MR
17254(custom-autoload (quote message-user-organization-file) "message")
17255
93548d2e
DL
17256(defvar message-send-mail-function (quote message-send-mail-with-sendmail) "\
17257Function to call to send the current buffer as mail.
17258The headers should be delimited by a line whose contents match the
17259variable `mail-header-separator'.
17260
b442e70a 17261Valid values include `message-send-mail-with-sendmail' (the default),
ac95a621 17262`message-send-mail-with-mh', `message-send-mail-with-qmail',
390069bc 17263`message-smtpmail-send-it', `smtpmail-send-it' and `feedmail-send-it'.
ac95a621
GM
17264
17265See also `send-mail-function'.")
93548d2e 17266
9c46b00a
MR
17267(custom-autoload (quote message-send-mail-function) "message")
17268
93548d2e 17269(defvar message-citation-line-function (quote message-insert-citation-line) "\
390069bc
AS
17270*Function called to insert the \"Whomever writes:\" line.
17271
17272Note that Gnus provides a feature where the reader can click on
17273`writes:' to hide the cited text. If you change this line too much,
17274people who read your message will have to change their Gnus
17275configuration. See the variable `gnus-cite-attribution-suffix'.")
93548d2e 17276
9c46b00a
MR
17277(custom-autoload (quote message-citation-line-function) "message")
17278
93548d2e 17279(defvar message-yank-prefix "> " "\
390069bc
AS
17280*Prefix inserted on the lines of yanked messages.
17281Fix `message-cite-prefix-regexp' if it is set to an abnormal value.
17282See also `message-yank-cited-prefix'.")
93548d2e 17283
9c46b00a
MR
17284(custom-autoload (quote message-yank-prefix) "message")
17285
93548d2e
DL
17286(defvar message-cite-function (quote message-cite-original) "\
17287*Function for citing an original message.
17288Predefined functions include `message-cite-original' and
17289`message-cite-original-without-signature'.
17290Note that `message-cite-original' uses `mail-citation-hook' if that is non-nil.")
17291
9c46b00a
MR
17292(custom-autoload (quote message-cite-function) "message")
17293
93548d2e
DL
17294(defvar message-indent-citation-function (quote message-indent-citation) "\
17295*Function for modifying a citation just inserted in the mail buffer.
17296This can also be a list of functions. Each function can find the
17297citation between (point) and (mark t). And each function should leave
17298point and mark around the citation text as modified.")
17299
9c46b00a
MR
17300(custom-autoload (quote message-indent-citation-function) "message")
17301
93548d2e
DL
17302(defvar message-signature t "\
17303*String to be inserted at the end of the message buffer.
17304If t, the `message-signature-file' file will be inserted instead.
17305If a function, the result from the function will be used instead.
17306If a form, the result from the form will be used instead.")
17307
9c46b00a
MR
17308(custom-autoload (quote message-signature) "message")
17309
93548d2e 17310(defvar message-signature-file "~/.signature" "\
2a55cd3a
GM
17311*Name of file containing the text inserted at end of message buffer.
17312Ignored if the named file doesn't exist.
17313If nil, don't insert a signature.")
93548d2e 17314
9c46b00a
MR
17315(custom-autoload (quote message-signature-file) "message")
17316
390069bc
AS
17317(defvar message-signature-insert-empty-line t "\
17318*If non-nil, insert an empty line before the signature separator.")
17319
17320(custom-autoload (quote message-signature-insert-empty-line) "message")
17321
b442e70a 17322(define-mail-user-agent (quote message-user-agent) (quote message-mail) (quote message-send-and-exit) (quote message-kill-buffer) (quote message-send-hook))
93548d2e
DL
17323
17324(autoload (quote message-mode) "message" "\
17325Major mode for editing mail and news to be sent.
ac95a621
GM
17326Like Text Mode but with these additional commands:\\<message-mode-map>
17327C-c C-s `message-send' (send the message) C-c C-c `message-send-and-exit'
17328C-c C-d Postpone sending the message C-c C-k Kill the message
93548d2e
DL
17329C-c C-f move to a header field (and create it if there isn't):
17330 C-c C-f C-t move to To C-c C-f C-s move to Subject
17331 C-c C-f C-c move to Cc C-c C-f C-b move to Bcc
17332 C-c C-f C-w move to Fcc C-c C-f C-r move to Reply-To
17333 C-c C-f C-u move to Summary C-c C-f C-n move to Newsgroups
17334 C-c C-f C-k move to Keywords C-c C-f C-d move to Distribution
390069bc 17335 C-c C-f C-o move to From (\"Originator\")
93548d2e 17336 C-c C-f C-f move to Followup-To
390069bc
AS
17337 C-c C-f C-m move to Mail-Followup-To
17338 C-c C-f C-i cycle through Importance values
17339 C-c C-f s change subject and append \"(was: <Old Subject>)\"
17340 C-c C-f x crossposting with FollowUp-To header and note in body
17341 C-c C-f t replace To: header with contents of Cc: or Bcc:
17342 C-c C-f a Insert X-No-Archive: header and a note in the body
ac95a621 17343C-c C-t `message-insert-to' (add a To header to a news followup)
390069bc 17344C-c C-l `message-to-list-only' (removes all but list address in to/cc)
ac95a621
GM
17345C-c C-n `message-insert-newsgroups' (add a Newsgroup header to a news reply)
17346C-c C-b `message-goto-body' (move to beginning of message text).
17347C-c C-i `message-goto-signature' (move to the beginning of the signature).
17348C-c C-w `message-insert-signature' (insert `message-signature-file' file).
17349C-c C-y `message-yank-original' (insert current message, if any).
17350C-c C-q `message-fill-yanked-message' (fill what was yanked).
17351C-c C-e `message-elide-region' (elide the text between point and mark).
17352C-c C-v `message-delete-not-region' (remove the text outside the region).
17353C-c C-z `message-kill-to-signature' (kill the text up to the signature).
17354C-c C-r `message-caesar-buffer-body' (rot13 the message body).
17355C-c C-a `mml-attach-file' (attach a file as MIME).
390069bc
AS
17356C-c C-u `message-insert-or-toggle-importance' (insert or cycle importance).
17357C-c M-n `message-insert-disposition-notification-to' (request receipt).
17358C-c M-m `message-mark-inserted-region' (mark region with enclosing tags).
17359C-c M-f `message-mark-insert-file' (insert file marked with enclosing tags).
c595cc5f
MR
17360M-RET `message-newline-and-reformat' (break the line and reformat).
17361
17362\(fn)" t nil)
93548d2e
DL
17363
17364(autoload (quote message-mail) "message" "\
17365Start editing a mail message to be sent.
c595cc5f
MR
17366OTHER-HEADERS is an alist of header/value pairs.
17367
17368\(fn &optional TO SUBJECT OTHER-HEADERS CONTINUE SWITCH-FUNCTION YANK-ACTION SEND-ACTIONS)" t nil)
93548d2e
DL
17369
17370(autoload (quote message-news) "message" "\
c595cc5f
MR
17371Start editing a news article to be sent.
17372
17373\(fn &optional NEWSGROUPS SUBJECT)" t nil)
93548d2e
DL
17374
17375(autoload (quote message-reply) "message" "\
c595cc5f
MR
17376Start editing a reply to the article in the current buffer.
17377
17378\(fn &optional TO-ADDRESS WIDE)" t nil)
93548d2e
DL
17379
17380(autoload (quote message-wide-reply) "message" "\
c595cc5f
MR
17381Make a \"wide\" reply to the message in the current buffer.
17382
17383\(fn &optional TO-ADDRESS)" t nil)
93548d2e
DL
17384
17385(autoload (quote message-followup) "message" "\
17386Follow up to the message in the current buffer.
c595cc5f
MR
17387If TO-NEWSGROUPS, use that as the new Newsgroups line.
17388
17389\(fn &optional TO-NEWSGROUPS)" t nil)
93548d2e
DL
17390
17391(autoload (quote message-cancel-news) "message" "\
b442e70a 17392Cancel an article you posted.
c595cc5f
MR
17393If ARG, allow editing of the cancellation message.
17394
17395\(fn &optional ARG)" t nil)
93548d2e
DL
17396
17397(autoload (quote message-supersede) "message" "\
17398Start composing a message to supersede the current message.
17399This is done simply by taking the old article and adding a Supersedes
c595cc5f
MR
17400header line with the old Message-ID.
17401
17402\(fn)" t nil)
93548d2e
DL
17403
17404(autoload (quote message-recover) "message" "\
c595cc5f
MR
17405Reread contents of current buffer from its last auto-save file.
17406
17407\(fn)" t nil)
93548d2e
DL
17408
17409(autoload (quote message-forward) "message" "\
17410Forward the current message via mail.
b442e70a 17411Optional NEWS will use news to forward instead of mail.
c595cc5f 17412Optional DIGEST will use digest to forward.
93548d2e 17413
c595cc5f 17414\(fn &optional NEWS DIGEST)" t nil)
8d8d8d4e 17415
c595cc5f
MR
17416(autoload (quote message-forward-make-body) "message" "\
17417Not documented
17418
17419\(fn FORWARD-BUFFER &optional DIGEST)" nil nil)
17420
17421(autoload (quote message-forward-rmail-make-body) "message" "\
17422Not documented
17423
17424\(fn FORWARD-BUFFER)" nil nil)
8d8d8d4e
EZ
17425
17426(autoload (quote message-insinuate-rmail) "message" "\
390069bc 17427Let RMAIL use message to forward.
c595cc5f
MR
17428
17429\(fn)" t nil)
8d8d8d4e 17430
93548d2e 17431(autoload (quote message-resend) "message" "\
c595cc5f
MR
17432Resend the current article to ADDRESS.
17433
17434\(fn ADDRESS)" t nil)
93548d2e
DL
17435
17436(autoload (quote message-bounce) "message" "\
17437Re-mail the current message.
b442e70a 17438This only makes sense if the current message is a bounce message that
93548d2e 17439contains some mail you have written which has been bounced back to
c595cc5f
MR
17440you.
17441
17442\(fn)" t nil)
93548d2e
DL
17443
17444(autoload (quote message-mail-other-window) "message" "\
c595cc5f
MR
17445Like `message-mail' command, but display mail buffer in another window.
17446
17447\(fn &optional TO SUBJECT)" t nil)
93548d2e
DL
17448
17449(autoload (quote message-mail-other-frame) "message" "\
c595cc5f
MR
17450Like `message-mail' command, but display mail buffer in another frame.
17451
17452\(fn &optional TO SUBJECT)" t nil)
93548d2e
DL
17453
17454(autoload (quote message-news-other-window) "message" "\
c595cc5f
MR
17455Start editing a news article to be sent.
17456
17457\(fn &optional NEWSGROUPS SUBJECT)" t nil)
93548d2e
DL
17458
17459(autoload (quote message-news-other-frame) "message" "\
c595cc5f
MR
17460Start editing a news article to be sent.
17461
17462\(fn &optional NEWSGROUPS SUBJECT)" t nil)
93548d2e
DL
17463
17464(autoload (quote bold-region) "message" "\
17465Bold all nonblank characters in the region.
17466Works by overstriking characters.
17467Called from program, takes two arguments START and END
c595cc5f
MR
17468which specify the range to operate on.
17469
17470\(fn START END)" t nil)
93548d2e
DL
17471
17472(autoload (quote unbold-region) "message" "\
17473Remove all boldness (overstruck characters) in the region.
17474Called from program, takes two arguments START and END
c595cc5f
MR
17475which specify the range to operate on.
17476
17477\(fn START END)" t nil)
93548d2e
DL
17478
17479;;;***
17480\f
17481;;;### (autoloads (metapost-mode metafont-mode) "meta-mode" "progmodes/meta-mode.el"
a5805c9d 17482;;;;;; (17279 27203))
93548d2e
DL
17483;;; Generated autoloads from progmodes/meta-mode.el
17484
17485(autoload (quote metafont-mode) "meta-mode" "\
17486Major mode for editing Metafont sources.
17487Special commands:
17488\\{meta-mode-map}
17489
17490Turning on Metafont mode calls the value of the variables
c595cc5f
MR
17491`meta-common-mode-hook' and `metafont-mode-hook'.
17492
17493\(fn)" t nil)
93548d2e
DL
17494
17495(autoload (quote metapost-mode) "meta-mode" "\
17496Major mode for editing MetaPost sources.
17497Special commands:
17498\\{meta-mode-map}
17499
17500Turning on MetaPost mode calls the value of the variable
c595cc5f
MR
17501`meta-common-mode-hook' and `metafont-mode-hook'.
17502
17503\(fn)" t nil)
93548d2e
DL
17504
17505;;;***
17506\f
17507;;;### (autoloads (metamail-region metamail-buffer metamail-interpret-body
17508;;;;;; metamail-interpret-header) "metamail" "mail/metamail.el"
a5805c9d 17509;;;;;; (17279 27123))
93548d2e
DL
17510;;; Generated autoloads from mail/metamail.el
17511
17512(autoload (quote metamail-interpret-header) "metamail" "\
17513Interpret a header part of a MIME message in current buffer.
c595cc5f
MR
17514Its body part is not interpreted at all.
17515
17516\(fn)" t nil)
93548d2e
DL
17517
17518(autoload (quote metamail-interpret-body) "metamail" "\
17519Interpret a body part of a MIME message in current buffer.
17520Optional argument VIEWMODE specifies the value of the
17521EMACS_VIEW_MODE environment variable (defaulted to 1).
17522Optional argument NODISPLAY non-nil means buffer is not
17523redisplayed as output is inserted.
c595cc5f
MR
17524Its header part is not interpreted at all.
17525
17526\(fn &optional VIEWMODE NODISPLAY)" t nil)
93548d2e
DL
17527
17528(autoload (quote metamail-buffer) "metamail" "\
17529Process current buffer through `metamail'.
17530Optional argument VIEWMODE specifies the value of the
17531EMACS_VIEW_MODE environment variable (defaulted to 1).
17532Optional argument BUFFER specifies a buffer to be filled (nil
17533means current).
17534Optional argument NODISPLAY non-nil means buffer is not
c595cc5f
MR
17535redisplayed as output is inserted.
17536
17537\(fn &optional VIEWMODE BUFFER NODISPLAY)" t nil)
93548d2e
DL
17538
17539(autoload (quote metamail-region) "metamail" "\
17540Process current region through 'metamail'.
17541Optional argument VIEWMODE specifies the value of the
17542EMACS_VIEW_MODE environment variable (defaulted to 1).
17543Optional argument BUFFER specifies a buffer to be filled (nil
17544means current).
17545Optional argument NODISPLAY non-nil means buffer is not
c595cc5f
MR
17546redisplayed as output is inserted.
17547
17548\(fn BEG END &optional VIEWMODE BUFFER NODISPLAY)" t nil)
93548d2e
DL
17549
17550;;;***
17551\f
c1a055ca
EZ
17552;;;### (autoloads (mh-fully-kill-draft mh-send-letter mh-user-agent-compose
17553;;;;;; mh-smail-batch mh-smail-other-window mh-smail) "mh-comp"
a5805c9d 17554;;;;;; "mh-e/mh-comp.el" (17379 24713))
821b278f 17555;;; Generated autoloads from mh-e/mh-comp.el
93548d2e
DL
17556
17557(autoload (quote mh-smail) "mh-comp" "\
59e085e0
KL
17558Compose a message with the MH mail system.
17559See `mh-send' for more details on composing mail.
17560
17561\(fn)" t nil)
93548d2e 17562
59e085e0
KL
17563(autoload (quote mh-smail-other-window) "mh-comp" "\
17564Compose a message with the MH mail system in other window.
390069bc 17565See `mh-send' for more details on composing mail.
c595cc5f
MR
17566
17567\(fn)" t nil)
93548d2e
DL
17568
17569(autoload (quote mh-smail-batch) "mh-comp" "\
59e085e0
KL
17570Compose a message with the MH mail system.
17571
c1a055ca
EZ
17572This function does not prompt the user for any header fields, and
17573thus is suitable for use by programs that want to create a mail
17574buffer. Users should use \\[mh-smail] to compose mail.
390069bc 17575
c1a055ca
EZ
17576Optional arguments for setting certain fields include TO,
17577SUBJECT, and OTHER-HEADERS. Additional arguments are IGNORED.
17578
17579This function remains for Emacs 21 compatibility. New
17580applications should use `mh-user-agent-compose'.
c595cc5f
MR
17581
17582\(fn &optional TO SUBJECT OTHER-HEADERS &rest IGNORED)" nil nil)
17583
c1a055ca
EZ
17584(define-mail-user-agent (quote mh-e-user-agent) (quote mh-user-agent-compose) (quote mh-send-letter) (quote mh-fully-kill-draft) (quote mh-before-send-letter-hook))
17585
c595cc5f
MR
17586(autoload (quote mh-user-agent-compose) "mh-comp" "\
17587Set up mail composition draft with the MH mail system.
c1a055ca
EZ
17588This is the `mail-user-agent' entry point to MH-E. This function
17589conforms to the contract specified by `define-mail-user-agent'
17590which means that this function should accept the same arguments
17591as `compose-mail'.
c595cc5f
MR
17592
17593The optional arguments TO and SUBJECT specify recipients and the
17594initial Subject field, respectively.
17595
c1a055ca
EZ
17596OTHER-HEADERS is an alist specifying additional header fields.
17597Elements look like (HEADER . VALUE) where both HEADER and VALUE
17598are strings.
c595cc5f 17599
c1a055ca
EZ
17600CONTINUE, SWITCH-FUNCTION, YANK-ACTION and SEND-ACTIONS are
17601ignored.
c595cc5f
MR
17602
17603\(fn &optional TO SUBJECT OTHER-HEADERS CONTINUE SWITCH-FUNCTION YANK-ACTION SEND-ACTIONS)" nil nil)
93548d2e 17604
c1a055ca
EZ
17605(autoload (quote mh-send-letter) "mh-comp" "\
17606Save draft and send message.
c595cc5f 17607
c1a055ca
EZ
17608When you are all through editing a message, you send it with this
17609command. You can give a prefix argument ARG to monitor the first stage
17610of the delivery; this output can be found in a buffer called \"*MH-E
17611Mail Delivery*\".
93548d2e 17612
c1a055ca
EZ
17613The hook `mh-before-send-letter-hook' is run at the beginning of
17614this command. For example, if you want to check your spelling in
17615your message before sending, add the function `ispell-message'.
93548d2e 17616
c1a055ca
EZ
17617In case the MH \"send\" program is installed under a different name,
17618use `mh-send-prog' to tell MH-E the name.
93548d2e 17619
c1a055ca 17620\(fn &optional ARG)" t nil)
93548d2e 17621
c1a055ca
EZ
17622(autoload (quote mh-fully-kill-draft) "mh-comp" "\
17623Quit editing and delete draft message.
93548d2e 17624
c1a055ca
EZ
17625If for some reason you are not happy with the draft, you can use
17626this command to kill the draft buffer and delete the draft
17627message. Use the command \\[kill-buffer] if you don't want to
17628delete the draft message.
0c867fa7
MS
17629
17630\(fn)" t nil)
93548d2e
DL
17631
17632;;;***
17633\f
a5805c9d 17634;;;### (autoloads (mh-version) "mh-e" "mh-e/mh-e.el" (17383 37960))
821b278f 17635;;; Generated autoloads from mh-e/mh-e.el
93548d2e 17636
c1a055ca 17637(put (quote mh-progs) (quote risky-local-variable) t)
93548d2e 17638
c1a055ca 17639(put (quote mh-lib) (quote risky-local-variable) t)
c595cc5f 17640
c1a055ca 17641(put (quote mh-lib-progs) (quote risky-local-variable) t)
c595cc5f
MR
17642
17643(autoload (quote mh-version) "mh-e" "\
ac42d7b9 17644Display version information about MH-E and the MH mail handling system.
93548d2e 17645
c595cc5f 17646\(fn)" t nil)
93548d2e 17647
c1a055ca
EZ
17648;;;***
17649\f
17650;;;### (autoloads (mh-folder-mode mh-nmail mh-rmail) "mh-folder"
a5805c9d 17651;;;;;; "mh-e/mh-folder.el" (17379 24713))
c1a055ca
EZ
17652;;; Generated autoloads from mh-e/mh-folder.el
17653
17654(autoload (quote mh-rmail) "mh-folder" "\
17655Incorporate new mail with MH.
17656Scan an MH folder if ARG is non-nil.
17657
17658This function is an entry point to MH-E, the Emacs interface to
17659the MH mail system.
17660
17661\(fn &optional ARG)" t nil)
17662
17663(autoload (quote mh-nmail) "mh-folder" "\
17664Check for new mail in inbox folder.
17665Scan an MH folder if ARG is non-nil.
17666
17667This function is an entry point to MH-E, the Emacs interface to
17668the MH mail system.
17669
17670\(fn &optional ARG)" t nil)
17671
17672(autoload (quote mh-folder-mode) "mh-folder" "\
0ef3cc90
LT
17673Major MH-E mode for \"editing\" an MH folder scan listing.\\<mh-folder-mode-map>
17674
c1a055ca
EZ
17675You can show the message the cursor is pointing to, and step through
17676the messages. Messages can be marked for deletion or refiling into
17677another folder; these commands are executed all at once with a
17678separate command.
0ef3cc90 17679
c1a055ca
EZ
17680Options that control this mode can be changed with
17681\\[customize-group]; specify the \"mh\" group. In particular, please
17682see the `mh-scan-format-file' option if you wish to modify scan's
17683format.
0ef3cc90
LT
17684
17685When a folder is visited, the hook `mh-folder-mode-hook' is run.
17686
17687Ranges
17688======
c1a055ca
EZ
17689Many commands that operate on individual messages, such as
17690`mh-forward' or `mh-refile-msg' take a RANGE argument. This argument
17691can be used in several ways.
390069bc 17692
c1a055ca
EZ
17693If you provide the prefix argument (\\[universal-argument]) to
17694these commands, then you will be prompted for the message range.
17695This can be any valid MH range which can include messages,
17696sequences, and the abbreviations (described in the mh(1) man
17697page):
0ef3cc90
LT
17698
17699<num1>-<num2>
c1a055ca
EZ
17700 Indicates all messages in the range <num1> to <num2>, inclusive.
17701 The range must be nonempty.
17702
17703<num>:N
17704<num>:+N
17705<num>:-N
17706 Up to N messages beginning with (or ending with) message num. Num
17707 may be any of the predefined symbols: first, prev, cur, next or
17708 last.
17709
17710first:N
17711prev:N
17712next:N
17713last:N
0ef3cc90
LT
17714 The first, previous, next or last messages, if they exist.
17715
c1a055ca 17716all
0ef3cc90
LT
17717 All of the messages.
17718
c1a055ca
EZ
17719For example, a range that shows all of these things is `1 2 3
177205-10 last:5 unseen'.
0ef3cc90 17721
c1a055ca
EZ
17722If the option `transient-mark-mode' is set to t and you set a
17723region in the MH-Folder buffer, then the MH-E command will
17724perform the operation on all messages in that region.
0ef3cc90
LT
17725
17726\\{mh-folder-mode-map}
17727
17728\(fn)" t nil)
390069bc 17729
93548d2e
DL
17730;;;***
17731\f
93548d2e 17732;;;### (autoloads (midnight-delay-set clean-buffer-list) "midnight"
a5805c9d 17733;;;;;; "midnight.el" (17279 27123))
93548d2e
DL
17734;;; Generated autoloads from midnight.el
17735
17736(autoload (quote clean-buffer-list) "midnight" "\
17737Kill old buffers that have not been displayed recently.
17738The relevant variables are `clean-buffer-list-delay-general',
17739`clean-buffer-list-delay-special', `clean-buffer-list-kill-buffer-names',
17740`clean-buffer-list-kill-never-buffer-names',
17741`clean-buffer-list-kill-regexps' and
17742`clean-buffer-list-kill-never-regexps'.
17743While processing buffers, this procedure displays messages containing
17744the current date/time, buffer name, how many seconds ago it was
17745displayed (can be nil if the buffer was never displayed) and its
c595cc5f
MR
17746lifetime, i.e., its \"age\" when it will be purged.
17747
17748\(fn)" t nil)
93548d2e
DL
17749
17750(autoload (quote midnight-delay-set) "midnight" "\
17751Modify `midnight-timer' according to `midnight-delay'.
17752Sets the first argument SYMB (which must be symbol `midnight-delay')
c595cc5f
MR
17753to its second argument TM.
17754
17755\(fn SYMB TM)" nil nil)
93548d2e
DL
17756
17757;;;***
17758\f
ac95a621 17759;;;### (autoloads (minibuffer-electric-default-mode) "minibuf-eldef"
a5805c9d 17760;;;;;; "minibuf-eldef.el" (17279 27123))
ac95a621
GM
17761;;; Generated autoloads from minibuf-eldef.el
17762
17763(defvar minibuffer-electric-default-mode nil "\
20a82009 17764Non-nil if Minibuffer-Electric-Default mode is enabled.
ac95a621
GM
17765See the command `minibuffer-electric-default-mode' for a description of this minor-mode.
17766Setting this variable directly does not take effect;
17767use either \\[customize] or the function `minibuffer-electric-default-mode'.")
17768
9c46b00a 17769(custom-autoload (quote minibuffer-electric-default-mode) "minibuf-eldef")
ac95a621 17770
ac09dc1e
KL
17771(put (quote minibuffer-electric-default-mode) (quote custom-set) (quote custom-set-minor-mode))
17772
ac95a621 17773(autoload (quote minibuffer-electric-default-mode) "minibuf-eldef" "\
8d8d8d4e 17774Toggle Minibuffer Electric Default mode.
ac95a621
GM
17775When active, minibuffer prompts that show a default value only show the
17776default when it's applicable -- that is, when hitting RET would yield
17777the default value. If the user modifies the input such that hitting RET
17778would enter a non-default value, the prompt is modified to remove the
17779default indication.
17780
17781With prefix argument ARG, turn on if positive, otherwise off.
c595cc5f
MR
17782Returns non-nil if the new state is enabled.
17783
17784\(fn &optional ARG)" t nil)
ac95a621
GM
17785
17786;;;***
17787\f
27a99a7c 17788;;;### (autoloads (mixal-mode) "mixal-mode" "progmodes/mixal-mode.el"
a5805c9d 17789;;;;;; (17279 27183))
27a99a7c
GM
17790;;; Generated autoloads from progmodes/mixal-mode.el
17791
17792(autoload (quote mixal-mode) "mixal-mode" "\
17793Major mode for the mixal asm language.
17794\\{mixal-mode-map}
17795
17796\(fn)" t nil)
17797
17798(add-to-list (quote auto-mode-alist) (quote ("\\.mixal\\'" . mixal-mode)))
17799
17800;;;***
17801\f
932a6f0f
AS
17802;;;### (autoloads (malayalam-composition-function malayalam-post-read-conversion
17803;;;;;; malayalam-compose-region) "mlm-util" "language/mlm-util.el"
a5805c9d 17804;;;;;; (17342 36796))
0c72a1a2
MR
17805;;; Generated autoloads from language/mlm-util.el
17806
17807(autoload (quote malayalam-compose-region) "mlm-util" "\
17808Not documented
17809
17810\(fn FROM TO)" t nil)
17811
932a6f0f
AS
17812(autoload (quote malayalam-post-read-conversion) "mlm-util" "\
17813Not documented
17814
17815\(fn LEN)" nil nil)
17816
0c72a1a2
MR
17817(autoload (quote malayalam-composition-function) "mlm-util" "\
17818Compose Malayalam characters in REGION, or STRING if specified.
c1a055ca 17819Assume that the REGION or STRING must fully match the composable
0c72a1a2
MR
17820PATTERN regexp.
17821
17822\(fn FROM TO PATTERN &optional STRING)" nil nil)
17823
17824;;;***
17825\f
390069bc 17826;;;### (autoloads (mm-inline-external-body) "mm-extern" "gnus/mm-extern.el"
a5805c9d 17827;;;;;; (17279 27122))
390069bc
AS
17828;;; Generated autoloads from gnus/mm-extern.el
17829
17830(autoload (quote mm-inline-external-body) "mm-extern" "\
17831Show the external-body part of HANDLE.
17832This function replaces the buffer of HANDLE with a buffer contains
17833the entire message.
17834If NO-DISPLAY is nil, display it. Otherwise, do nothing after replacing.
17835
17836\(fn HANDLE &optional NO-DISPLAY)" nil nil)
17837
17838;;;***
17839\f
b442e70a 17840;;;### (autoloads (mm-inline-partial) "mm-partial" "gnus/mm-partial.el"
a5805c9d 17841;;;;;; (17279 27122))
b442e70a
MB
17842;;; Generated autoloads from gnus/mm-partial.el
17843
17844(autoload (quote mm-inline-partial) "mm-partial" "\
17845Show the partial part of HANDLE.
821b278f 17846This function replaces the buffer of HANDLE with a buffer contains
b442e70a 17847the entire message.
c595cc5f
MR
17848If NO-DISPLAY is nil, display it. Otherwise, do nothing after replacing.
17849
17850\(fn HANDLE &optional NO-DISPLAY)" nil nil)
b442e70a
MB
17851
17852;;;***
17853\f
390069bc 17854;;;### (autoloads (mm-url-insert-file-contents-external mm-url-insert-file-contents)
a5805c9d 17855;;;;;; "mm-url" "gnus/mm-url.el" (17319 1473))
390069bc
AS
17856;;; Generated autoloads from gnus/mm-url.el
17857
17858(autoload (quote mm-url-insert-file-contents) "mm-url" "\
17859Insert file contents of URL.
17860If `mm-url-use-external' is non-nil, use `mm-url-program'.
17861
17862\(fn URL)" nil nil)
17863
17864(autoload (quote mm-url-insert-file-contents-external) "mm-url" "\
17865Insert file contents of URL using `mm-url-program'.
17866
17867\(fn URL)" nil nil)
17868
17869;;;***
17870\f
c1a055ca 17871;;;### (autoloads (mm-uu-dissect-text-parts mm-uu-dissect) "mm-uu"
a5805c9d 17872;;;;;; "gnus/mm-uu.el" (17379 24711))
a67b854e
GM
17873;;; Generated autoloads from gnus/mm-uu.el
17874
17875(autoload (quote mm-uu-dissect) "mm-uu" "\
c595cc5f 17876Dissect the current buffer and return a list of uu handles.
c1a055ca
EZ
17877The optional NOHEADER means there's no header in the buffer.
17878MIME-TYPE specifies a MIME type and parameters, which defaults to the
17879value of `mm-uu-text-plain-type'.
c595cc5f 17880
c1a055ca
EZ
17881\(fn &optional NOHEADER MIME-TYPE)" nil nil)
17882
17883(autoload (quote mm-uu-dissect-text-parts) "mm-uu" "\
17884Dissect text parts and put uu handles into HANDLE.
17885Assume text has been decoded if DECODED is non-nil.
17886
17887\(fn HANDLE &optional DECODED)" nil nil)
a67b854e 17888
390069bc
AS
17889;;;***
17890\f
17891;;;### (autoloads (mml1991-sign mml1991-encrypt) "mml1991" "gnus/mml1991.el"
a5805c9d 17892;;;;;; (17279 27122))
390069bc
AS
17893;;; Generated autoloads from gnus/mml1991.el
17894
17895(autoload (quote mml1991-encrypt) "mml1991" "\
17896Not documented
17897
17898\(fn CONT &optional SIGN)" nil nil)
17899
17900(autoload (quote mml1991-sign) "mml1991" "\
17901Not documented
17902
17903\(fn CONT)" nil nil)
17904
17905;;;***
17906\f
17907;;;### (autoloads (mml2015-self-encrypt mml2015-sign mml2015-encrypt
17908;;;;;; mml2015-verify-test mml2015-verify mml2015-decrypt-test mml2015-decrypt)
a5805c9d 17909;;;;;; "mml2015" "gnus/mml2015.el" (17279 27122))
390069bc
AS
17910;;; Generated autoloads from gnus/mml2015.el
17911
17912(autoload (quote mml2015-decrypt) "mml2015" "\
17913Not documented
17914
17915\(fn HANDLE CTL)" nil nil)
17916
17917(autoload (quote mml2015-decrypt-test) "mml2015" "\
17918Not documented
17919
17920\(fn HANDLE CTL)" nil nil)
17921
17922(autoload (quote mml2015-verify) "mml2015" "\
17923Not documented
17924
17925\(fn HANDLE CTL)" nil nil)
17926
17927(autoload (quote mml2015-verify-test) "mml2015" "\
17928Not documented
17929
17930\(fn HANDLE CTL)" nil nil)
17931
17932(autoload (quote mml2015-encrypt) "mml2015" "\
17933Not documented
17934
17935\(fn CONT &optional SIGN)" nil nil)
17936
17937(autoload (quote mml2015-sign) "mml2015" "\
17938Not documented
17939
17940\(fn CONT)" nil nil)
17941
17942(autoload (quote mml2015-self-encrypt) "mml2015" "\
17943Not documented
c595cc5f
MR
17944
17945\(fn)" nil nil)
a67b854e
GM
17946
17947;;;***
17948\f
93548d2e 17949;;;### (autoloads (modula-2-mode) "modula2" "progmodes/modula2.el"
a5805c9d 17950;;;;;; (17322 60488))
93548d2e
DL
17951;;; Generated autoloads from progmodes/modula2.el
17952
17953(autoload (quote modula-2-mode) "modula2" "\
17954This is a mode intended to support program development in Modula-2.
17955All control constructs of Modula-2 can be reached by typing C-c
17956followed by the first character of the construct.
17957\\<m2-mode-map>
17958 \\[m2-begin] begin \\[m2-case] case
17959 \\[m2-definition] definition \\[m2-else] else
17960 \\[m2-for] for \\[m2-header] header
17961 \\[m2-if] if \\[m2-module] module
17962 \\[m2-loop] loop \\[m2-or] or
17963 \\[m2-procedure] procedure Control-c Control-w with
17964 \\[m2-record] record \\[m2-stdio] stdio
17965 \\[m2-type] type \\[m2-until] until
17966 \\[m2-var] var \\[m2-while] while
17967 \\[m2-export] export \\[m2-import] import
17968 \\[m2-begin-comment] begin-comment \\[m2-end-comment] end-comment
17969 \\[suspend-emacs] suspend Emacs \\[m2-toggle] toggle
17970 \\[m2-compile] compile \\[m2-next-error] next-error
17971 \\[m2-link] link
17972
17973 `m2-indent' controls the number of spaces for each indentation.
17974 `m2-compile-command' holds the command to compile a Modula-2 program.
c595cc5f
MR
17975 `m2-link-command' holds the command to link a Modula-2 program.
17976
17977\(fn)" t nil)
93548d2e
DL
17978
17979;;;***
17980\f
0ad84a21 17981;;;### (autoloads (unmorse-region morse-region) "morse" "play/morse.el"
a5805c9d 17982;;;;;; (17279 27123))
0ad84a21
MB
17983;;; Generated autoloads from play/morse.el
17984
17985(autoload (quote morse-region) "morse" "\
c595cc5f
MR
17986Convert all text in a given region to morse code.
17987
17988\(fn BEG END)" t nil)
0ad84a21
MB
17989
17990(autoload (quote unmorse-region) "morse" "\
c595cc5f
MR
17991Convert morse coded text in region to ordinary ASCII text.
17992
17993\(fn BEG END)" t nil)
0ad84a21
MB
17994
17995;;;***
17996\f
a5805c9d
KL
17997;;;### (autoloads (mouse-sel-mode) "mouse-sel" "mouse-sel.el" (17279
17998;;;;;; 27123))
93548d2e
DL
17999;;; Generated autoloads from mouse-sel.el
18000
87bb8d21
MR
18001(defvar mouse-sel-mode nil "\
18002Non-nil if Mouse-Sel mode is enabled.
18003See the command `mouse-sel-mode' for a description of this minor-mode.
18004Setting this variable directly does not take effect;
18005use either \\[customize] or the function `mouse-sel-mode'.")
18006
9c46b00a 18007(custom-autoload (quote mouse-sel-mode) "mouse-sel")
87bb8d21 18008
ac09dc1e
KL
18009(put (quote mouse-sel-mode) (quote custom-set) (quote custom-set-minor-mode))
18010
93548d2e
DL
18011(autoload (quote mouse-sel-mode) "mouse-sel" "\
18012Toggle Mouse Sel mode.
18013With prefix ARG, turn Mouse Sel mode on if and only if ARG is positive.
18014Returns the new status of Mouse Sel mode (non-nil means on).
18015
18016When Mouse Sel mode is enabled, mouse selection is enhanced in various ways:
18017
18018- Clicking mouse-1 starts (cancels) selection, dragging extends it.
18019
18020- Clicking or dragging mouse-3 extends the selection as well.
18021
18022- Double-clicking on word constituents selects words.
18023Double-clicking on symbol constituents selects symbols.
18024Double-clicking on quotes or parentheses selects sexps.
18025Double-clicking on whitespace selects whitespace.
18026Triple-clicking selects lines.
18027Quad-clicking selects paragraphs.
18028
18029- Selecting sets the region & X primary selection, but does NOT affect
87bb8d21 18030the `kill-ring', nor do the kill-ring functions change the X selection.
54baed30 18031Because the mouse handlers set the primary selection directly,
87bb8d21
MR
18032mouse-sel sets the variables `interprogram-cut-function' and
18033`interprogram-paste-function' to nil.
93548d2e
DL
18034
18035- Clicking mouse-2 inserts the contents of the primary selection at
a67b854e 18036the mouse position (or point, if `mouse-yank-at-point' is non-nil).
93548d2e
DL
18037
18038- Pressing mouse-2 while selecting or extending copies selection
18039to the kill ring. Pressing mouse-1 or mouse-3 kills it.
18040
18041- Double-clicking mouse-3 also kills selection.
18042
18043- M-mouse-1, M-mouse-2 & M-mouse-3 work similarly to mouse-1, mouse-2
18044& mouse-3, but operate on the X secondary selection rather than the
c595cc5f
MR
18045primary selection and region.
18046
18047\(fn &optional ARG)" t nil)
93548d2e
DL
18048
18049;;;***
18050\f
a5805c9d 18051;;;### (autoloads (mpuz) "mpuz" "play/mpuz.el" (17279 27172))
93548d2e
DL
18052;;; Generated autoloads from play/mpuz.el
18053
18054(autoload (quote mpuz) "mpuz" "\
c595cc5f
MR
18055Multiplication puzzle with GNU Emacs.
18056
18057\(fn)" t nil)
93548d2e
DL
18058
18059;;;***
18060\f
a5805c9d 18061;;;### (autoloads (msb-mode) "msb" "msb.el" (17279 27150))
93548d2e
DL
18062;;; Generated autoloads from msb.el
18063
18064(defvar msb-mode nil "\
efaa080b 18065Non-nil if Msb mode is enabled.
bd02b8e0 18066See the command `msb-mode' for a description of this minor-mode.
93548d2e
DL
18067Setting this variable directly does not take effect;
18068use either \\[customize] or the function `msb-mode'.")
18069
9c46b00a 18070(custom-autoload (quote msb-mode) "msb")
93548d2e 18071
ac09dc1e
KL
18072(put (quote msb-mode) (quote custom-set) (quote custom-set-minor-mode))
18073
93548d2e
DL
18074(autoload (quote msb-mode) "msb" "\
18075Toggle Msb mode.
18076With arg, turn Msb mode on if and only if arg is positive.
18077This mode overrides the binding(s) of `mouse-buffer-menu' to provide a
c595cc5f
MR
18078different buffer menu using the function `msb'.
18079
18080\(fn &optional ARG)" t nil)
93548d2e
DL
18081
18082;;;***
18083\f
b9d9655c
MB
18084;;;### (autoloads (mule-diag list-input-methods list-fontsets describe-fontset
18085;;;;;; describe-font list-coding-categories list-coding-systems
18086;;;;;; describe-current-coding-system describe-current-coding-system-briefly
38747ec6
KS
18087;;;;;; describe-coding-system describe-character-set list-charset-chars
18088;;;;;; read-charset list-character-sets) "mule-diag" "international/mule-diag.el"
a5805c9d 18089;;;;;; (17279 27171))
93548d2e
DL
18090;;; Generated autoloads from international/mule-diag.el
18091
d1978f48
KH
18092(defvar non-iso-charset-alist (\` ((mac-roman (ascii latin-iso8859-1 mule-unicode-2500-33ff mule-unicode-0100-24ff mule-unicode-e000-ffff) mac-roman-decoder ((0 255))) (viscii (ascii vietnamese-viscii-lower vietnamese-viscii-upper) viet-viscii-nonascii-translation-table ((0 255))) (vietnamese-tcvn (ascii vietnamese-viscii-lower vietnamese-viscii-upper) viet-tcvn-nonascii-translation-table ((0 255))) (koi8-r (ascii cyrillic-iso8859-5) cyrillic-koi8-r-nonascii-translation-table ((32 255))) (alternativnyj (ascii cyrillic-iso8859-5) cyrillic-alternativnyj-nonascii-translation-table ((32 255))) (koi8-u (ascii cyrillic-iso8859-5 mule-unicode-0100-24ff) cyrillic-koi8-u-nonascii-translation-table ((32 255))) (big5 (ascii chinese-big5-1 chinese-big5-2) decode-big5-char ((32 127) ((161 254) 64 126 161 254))) (sjis (ascii katakana-jisx0201 japanese-jisx0208) decode-sjis-char ((32 127 161 223) ((129 159 224 239) 64 126 128 252))))) "\
18093Alist of charset names vs the corresponding information.
18094This is mis-named for historical reasons. The charsets are actually
18095non-built-in ones. They correspond to Emacs coding systems, not Emacs
18096charsets, i.e. what Emacs can read (or write) by mapping to (or
18097from) Emacs internal charsets that typically correspond to a limited
18098set of ISO charsets.
18099
18100Each element has the following format:
18101 (CHARSET CHARSET-LIST TRANSLATION-METHOD [ CODE-RANGE ])
18102
18103CHARSET is the name (symbol) of the charset.
18104
18105CHARSET-LIST is a list of Emacs charsets into which characters of
18106CHARSET are mapped.
18107
18108TRANSLATION-METHOD is a translation table (symbol) to translate a
18109character code of CHARSET to the corresponding Emacs character
18110code. It can also be a function to call with one argument, a
18111character code in CHARSET.
18112
18113CODE-RANGE specifies the valid code ranges of CHARSET.
18114It is a list of RANGEs, where each RANGE is of the form:
18115 (FROM1 TO1 FROM2 TO2 ...)
18116or
18117 ((FROM1-1 TO1-1 FROM1-2 TO1-2 ...) . (FROM2-1 TO2-1 FROM2-2 TO2-2 ...))
18118In the first form, valid codes are between FROM1 and TO1, or FROM2 and
18119TO2, or...
18120The second form is used for 2-byte codes. The car part is the ranges
18121of the first byte, and the cdr part is the ranges of the second byte.")
18122
93548d2e
DL
18123(autoload (quote list-character-sets) "mule-diag" "\
18124Display a list of all character sets.
18125
b9d9655c
MB
18126The ID-NUM column contains a charset identification number for
18127internal Emacs use.
d054101f 18128
b9d9655c
MB
18129The MULTIBYTE-FORM column contains the format of the buffer and string
18130multibyte sequence of characters in the charset using one to four
18131hexadecimal digits.
d054101f
GM
18132 `xx' stands for any byte in the range 0..127.
18133 `XX' stands for any byte in the range 160..255.
18134
b9d9655c
MB
18135The D column contains the dimension of this character set. The CH
18136column contains the number of characters in a block of this character
18137set. The FINAL-CHAR column contains an ISO-2022 <final-char> to use
18138for designating this character set in ISO-2022-based coding systems.
93548d2e
DL
18139
18140With prefix arg, the output format gets more cryptic,
c595cc5f
MR
18141but still shows the full information.
18142
18143\(fn ARG)" t nil)
93548d2e 18144
d054101f
GM
18145(autoload (quote read-charset) "mule-diag" "\
18146Read a character set from the minibuffer, prompting with string PROMPT.
b9d9655c 18147It must be an Emacs character set listed in the variable `charset-list'
d054101f
GM
18148or a non-ISO character set listed in the variable
18149`non-iso-charset-alist'.
18150
18151Optional arguments are DEFAULT-VALUE and INITIAL-INPUT.
18152DEFAULT-VALUE, if non-nil, is the default value.
18153INITIAL-INPUT, if non-nil, is a string inserted in the minibuffer initially.
18154See the documentation of the function `completing-read' for the
c595cc5f
MR
18155detailed meanings of these arguments.
18156
18157\(fn PROMPT &optional DEFAULT-VALUE INITIAL-INPUT)" nil nil)
d054101f
GM
18158
18159(autoload (quote list-charset-chars) "mule-diag" "\
b9d9655c
MB
18160Display a list of characters in the specified character set.
18161This can list both Emacs `official' (ISO standard) charsets and the
18162characters encoded by various Emacs coding systems which correspond to
c595cc5f
MR
18163PC `codepages' and other coded character sets. See `non-iso-charset-alist'.
18164
18165\(fn CHARSET)" t nil)
d054101f 18166
54baed30 18167(autoload (quote describe-character-set) "mule-diag" "\
c595cc5f
MR
18168Display information about built-in character set CHARSET.
18169
18170\(fn CHARSET)" t nil)
54baed30 18171
93548d2e 18172(autoload (quote describe-coding-system) "mule-diag" "\
c595cc5f
MR
18173Display information about CODING-SYSTEM.
18174
18175\(fn CODING-SYSTEM)" t nil)
93548d2e
DL
18176
18177(autoload (quote describe-current-coding-system-briefly) "mule-diag" "\
18178Display coding systems currently used in a brief format in echo area.
18179
18180The format is \"F[..],K[..],T[..],P>[..],P<[..], default F[..],P<[..],P<[..]\",
18181where mnemonics of the following coding systems come in this order
b9d9655c 18182in place of `..':
54baed30
GM
18183 `buffer-file-coding-system' (of the current buffer)
18184 eol-type of `buffer-file-coding-system' (of the current buffer)
93548d2e 18185 Value returned by `keyboard-coding-system'
54baed30
GM
18186 eol-type of `keyboard-coding-system'
18187 Value returned by `terminal-coding-system'.
18188 eol-type of `terminal-coding-system'
93548d2e 18189 `process-coding-system' for read (of the current buffer, if any)
54baed30 18190 eol-type of `process-coding-system' for read (of the current buffer, if any)
93548d2e 18191 `process-coding-system' for write (of the current buffer, if any)
54baed30 18192 eol-type of `process-coding-system' for write (of the current buffer, if any)
93548d2e 18193 `default-buffer-file-coding-system'
54baed30 18194 eol-type of `default-buffer-file-coding-system'
93548d2e 18195 `default-process-coding-system' for read
54baed30 18196 eol-type of `default-process-coding-system' for read
93548d2e 18197 `default-process-coding-system' for write
c595cc5f
MR
18198 eol-type of `default-process-coding-system'
18199
18200\(fn)" t nil)
93548d2e
DL
18201
18202(autoload (quote describe-current-coding-system) "mule-diag" "\
c595cc5f
MR
18203Display coding systems currently used, in detail.
18204
18205\(fn)" t nil)
93548d2e
DL
18206
18207(autoload (quote list-coding-systems) "mule-diag" "\
18208Display a list of all coding systems.
18209This shows the mnemonic letter, name, and description of each coding system.
18210
18211With prefix arg, the output format gets more cryptic,
c595cc5f
MR
18212but still contains full information about each coding system.
18213
18214\(fn &optional ARG)" t nil)
93548d2e 18215
cded5ed3 18216(autoload (quote list-coding-categories) "mule-diag" "\
c595cc5f
MR
18217Display a list of all coding categories.
18218
18219\(fn)" nil nil)
cded5ed3 18220
93548d2e 18221(autoload (quote describe-font) "mule-diag" "\
c595cc5f
MR
18222Display information about fonts which partially match FONTNAME.
18223
18224\(fn FONTNAME)" t nil)
93548d2e
DL
18225
18226(autoload (quote describe-fontset) "mule-diag" "\
b9d9655c 18227Display information about FONTSET.
c595cc5f
MR
18228This shows which font is used for which character(s).
18229
18230\(fn FONTSET)" t nil)
93548d2e
DL
18231
18232(autoload (quote list-fontsets) "mule-diag" "\
18233Display a list of all fontsets.
18234This shows the name, size, and style of each fontset.
b9d9655c 18235With prefix arg, also list the fonts contained in each fontset;
c595cc5f
MR
18236see the function `describe-fontset' for the format of the list.
18237
18238\(fn ARG)" t nil)
93548d2e
DL
18239
18240(autoload (quote list-input-methods) "mule-diag" "\
c595cc5f
MR
18241Display information about all input methods.
18242
18243\(fn)" t nil)
93548d2e
DL
18244
18245(autoload (quote mule-diag) "mule-diag" "\
18246Display diagnosis of the multilingual environment (Mule).
18247
18248This shows various information related to the current multilingual
18249environment, including lists of input methods, coding systems,
18250character sets, and fontsets (if Emacs is running under a window
c595cc5f
MR
18251system which uses fontsets).
18252
18253\(fn)" t nil)
93548d2e 18254
93548d2e
DL
18255;;;***
18256\f
932a6f0f 18257;;;### (autoloads (char-displayable-p detect-coding-with-language-environment
952cb084 18258;;;;;; detect-coding-with-priority coding-system-translation-table-for-encode
93548d2e 18259;;;;;; coding-system-translation-table-for-decode coding-system-pre-write-conversion
c595cc5f
MR
18260;;;;;; coding-system-post-read-conversion lookup-nested-alist set-nested-alist
18261;;;;;; truncate-string-to-width store-substring string-to-sequence)
a5805c9d 18262;;;;;; "mule-util" "international/mule-util.el" (17279 27079))
93548d2e
DL
18263;;; Generated autoloads from international/mule-util.el
18264
18265(autoload (quote string-to-sequence) "mule-util" "\
18266Convert STRING to a sequence of TYPE which contains characters in STRING.
c595cc5f
MR
18267TYPE should be `list' or `vector'.
18268
18269\(fn STRING TYPE)" nil nil)
93548d2e 18270
bf247b6e 18271(make-obsolete (quote string-to-sequence) "use `string-to-list' or `string-to-vector'." "22.1")
87bb8d21 18272
be0dbdab 18273(defsubst string-to-list (string) "\
8d8d8d4e 18274Return a list of characters in STRING." (append string nil))
93548d2e 18275
be0dbdab 18276(defsubst string-to-vector (string) "\
8d8d8d4e 18277Return a vector of characters in STRING." (vconcat string))
93548d2e
DL
18278
18279(autoload (quote store-substring) "mule-util" "\
c595cc5f
MR
18280Embed OBJ (string or character) at index IDX of STRING.
18281
18282\(fn STRING IDX OBJ)" nil nil)
93548d2e
DL
18283
18284(autoload (quote truncate-string-to-width) "mule-util" "\
18285Truncate string STR to end at column END-COLUMN.
df2d7e04
CW
18286The optional 3rd arg START-COLUMN, if non-nil, specifies the starting
18287column; that means to return the characters occupying columns
18288START-COLUMN ... END-COLUMN of STR. Both END-COLUMN and START-COLUMN
18289are specified in terms of character display width in the current
18290buffer; see also `char-width'.
18291
18292The optional 4th arg PADDING, if non-nil, specifies a padding
18293character (which should have a display width of 1) to add at the end
18294of the result if STR doesn't reach column END-COLUMN, or if END-COLUMN
18295comes in the middle of a character in STR. PADDING is also added at
18296the beginning of the result if column START-COLUMN appears in the
18297middle of a character in STR.
93548d2e
DL
18298
18299If PADDING is nil, no padding is added in these cases, so
df2d7e04
CW
18300the resulting string may be narrower than END-COLUMN.
18301
18302If ELLIPSIS is non-nil, it should be a string which will replace the
18303end of STR (including any padding) if it extends beyond END-COLUMN,
18304unless the display width of STR is equal to or less than the display
18305width of ELLIPSIS. If it is non-nil and not a string, then ELLIPSIS
c595cc5f
MR
18306defaults to \"...\".
18307
18308\(fn STR END-COLUMN &optional START-COLUMN PADDING ELLIPSIS)" nil nil)
93548d2e 18309
be0dbdab
GM
18310(defsubst nested-alist-p (obj) "\
18311Return t if OBJ is a nested alist.
18312
18313Nested alist is a list of the form (ENTRY . BRANCHES), where ENTRY is
18314any Lisp object, and BRANCHES is a list of cons cells of the form
18315\(KEY-ELEMENT . NESTED-ALIST).
18316
18317You can use a nested alist to store any Lisp object (ENTRY) for a key
18318sequence KEYSEQ, where KEYSEQ is a sequence of KEY-ELEMENT. KEYSEQ
18319can be a string, a vector, or a list." (and obj (listp obj) (listp (cdr obj))))
93548d2e
DL
18320
18321(autoload (quote set-nested-alist) "mule-util" "\
18322Set ENTRY for KEYSEQ in a nested alist ALIST.
18323Optional 4th arg LEN non-nil means the first LEN elements in KEYSEQ
18324 is considered.
18325Optional argument BRANCHES if non-nil is branches for a keyseq
18326longer than KEYSEQ.
c595cc5f
MR
18327See the documentation of `nested-alist-p' for more detail.
18328
18329\(fn KEYSEQ ENTRY ALIST &optional LEN BRANCHES)" nil nil)
93548d2e
DL
18330
18331(autoload (quote lookup-nested-alist) "mule-util" "\
18332Look up key sequence KEYSEQ in nested alist ALIST. Return the definition.
18333Optional 1st argument LEN specifies the length of KEYSEQ.
18334Optional 2nd argument START specifies index of the starting key.
18335The returned value is normally a nested alist of which
18336car part is the entry for KEYSEQ.
18337If ALIST is not deep enough for KEYSEQ, return number which is
18338 how many key elements at the front of KEYSEQ it takes
18339 to reach a leaf in ALIST.
18340Optional 3rd argument NIL-FOR-TOO-LONG non-nil means return nil
c595cc5f 18341 even if ALIST is not deep enough.
93548d2e 18342
c595cc5f 18343\(fn KEYSEQ ALIST &optional LEN START NIL-FOR-TOO-LONG)" nil nil)
93548d2e
DL
18344
18345(autoload (quote coding-system-post-read-conversion) "mule-util" "\
c595cc5f
MR
18346Return the value of CODING-SYSTEM's `post-read-conversion' property.
18347
18348\(fn CODING-SYSTEM)" nil nil)
93548d2e
DL
18349
18350(autoload (quote coding-system-pre-write-conversion) "mule-util" "\
c595cc5f
MR
18351Return the value of CODING-SYSTEM's `pre-write-conversion' property.
18352
18353\(fn CODING-SYSTEM)" nil nil)
93548d2e
DL
18354
18355(autoload (quote coding-system-translation-table-for-decode) "mule-util" "\
c595cc5f
MR
18356Return the value of CODING-SYSTEM's `translation-table-for-decode' property.
18357
18358\(fn CODING-SYSTEM)" nil nil)
93548d2e
DL
18359
18360(autoload (quote coding-system-translation-table-for-encode) "mule-util" "\
c595cc5f
MR
18361Return the value of CODING-SYSTEM's `translation-table-for-encode' property.
18362
18363\(fn CODING-SYSTEM)" nil nil)
93548d2e 18364
93548d2e
DL
18365(autoload (quote detect-coding-with-priority) "mule-util" "\
18366Detect a coding system of the text between FROM and TO with PRIORITY-LIST.
18367PRIORITY-LIST is an alist of coding categories vs the corresponding
c595cc5f
MR
18368coding systems ordered by priority.
18369
18370\(fn FROM TO PRIORITY-LIST)" nil (quote macro))
93548d2e
DL
18371
18372(autoload (quote detect-coding-with-language-environment) "mule-util" "\
18373Detect a coding system of the text between FROM and TO with LANG-ENV.
18374The detection takes into account the coding system priorities for the
c595cc5f
MR
18375language environment LANG-ENV.
18376
18377\(fn FROM TO LANG-ENV)" nil nil)
93548d2e 18378
932a6f0f
AS
18379(autoload (quote char-displayable-p) "mule-util" "\
18380Return non-nil if we should be able to display CHAR.
18381On a multi-font display, the test is only whether there is an
18382appropriate font from the selected frame's fontset to display CHAR's
18383charset in general. Since fonts may be specified on a per-character
18384basis, this may not be accurate.
18385
18386\(fn CHAR)" nil nil)
18387
93548d2e
DL
18388;;;***
18389\f
0ad84a21 18390;;;### (autoloads (mwheel-install mouse-wheel-mode) "mwheel" "mwheel.el"
a5805c9d 18391;;;;;; (17279 27123))
cded5ed3
GM
18392;;; Generated autoloads from mwheel.el
18393
0ad84a21 18394(defvar mouse-wheel-mode nil "\
09938b67 18395Non-nil if Mouse-Wheel mode is enabled.
bd02b8e0 18396See the command `mouse-wheel-mode' for a description of this minor-mode.
0ad84a21
MB
18397Setting this variable directly does not take effect;
18398use either \\[customize] or the function `mouse-wheel-mode'.")
18399
9c46b00a 18400(custom-autoload (quote mouse-wheel-mode) "mwheel")
0ad84a21 18401
ac09dc1e
KL
18402(put (quote mouse-wheel-mode) (quote custom-set) (quote custom-set-minor-mode))
18403
0ad84a21
MB
18404(autoload (quote mouse-wheel-mode) "mwheel" "\
18405Toggle mouse wheel support.
18406With prefix argument ARG, turn on if positive, otherwise off.
c595cc5f
MR
18407Returns non-nil if the new state is enabled.
18408
18409\(fn &optional ARG)" t nil)
0ad84a21 18410
cded5ed3 18411(autoload (quote mwheel-install) "mwheel" "\
c595cc5f
MR
18412Enable mouse wheel support.
18413
18414\(fn &optional UNINSTALL)" nil nil)
cded5ed3
GM
18415
18416;;;***
18417\f
93548d2e 18418;;;### (autoloads (network-connection network-connection-to-service
0ef3cc90 18419;;;;;; whois-reverse-lookup whois finger ftp run-dig dns-lookup-host
0c72a1a2 18420;;;;;; nslookup nslookup-host route arp netstat ipconfig ping traceroute)
a5805c9d 18421;;;;;; "net-utils" "net/net-utils.el" (17279 27123))
a25bbe00 18422;;; Generated autoloads from net/net-utils.el
93548d2e
DL
18423
18424(autoload (quote traceroute) "net-utils" "\
c595cc5f
MR
18425Run traceroute program for TARGET.
18426
18427\(fn TARGET)" t nil)
93548d2e
DL
18428
18429(autoload (quote ping) "net-utils" "\
18430Ping HOST.
0ad84a21 18431If your system's ping continues until interrupted, you can try setting
c595cc5f
MR
18432`ping-program-options'.
18433
18434\(fn HOST)" t nil)
93548d2e
DL
18435
18436(autoload (quote ipconfig) "net-utils" "\
c595cc5f
MR
18437Run ipconfig program.
18438
18439\(fn)" t nil)
93548d2e
DL
18440
18441(defalias (quote ifconfig) (quote ipconfig))
18442
18443(autoload (quote netstat) "net-utils" "\
c595cc5f
MR
18444Run netstat program.
18445
18446\(fn)" t nil)
93548d2e
DL
18447
18448(autoload (quote arp) "net-utils" "\
c595cc5f
MR
18449Run the arp program.
18450
18451\(fn)" t nil)
93548d2e
DL
18452
18453(autoload (quote route) "net-utils" "\
c595cc5f
MR
18454Run the route program.
18455
18456\(fn)" t nil)
93548d2e
DL
18457
18458(autoload (quote nslookup-host) "net-utils" "\
c595cc5f
MR
18459Lookup the DNS information for HOST.
18460
18461\(fn HOST)" t nil)
93548d2e
DL
18462
18463(autoload (quote nslookup) "net-utils" "\
c595cc5f
MR
18464Run nslookup program.
18465
18466\(fn)" t nil)
93548d2e 18467
0c72a1a2
MR
18468(autoload (quote dns-lookup-host) "net-utils" "\
18469Lookup the DNS information for HOST (name or IP address).
18470
18471\(fn HOST)" t nil)
18472
0ef3cc90 18473(autoload (quote run-dig) "net-utils" "\
c595cc5f
MR
18474Run dig program.
18475
18476\(fn HOST)" t nil)
64ed733a 18477
93548d2e 18478(autoload (quote ftp) "net-utils" "\
c595cc5f
MR
18479Run ftp program.
18480
18481\(fn HOST)" t nil)
93548d2e
DL
18482
18483(autoload (quote finger) "net-utils" "\
c595cc5f
MR
18484Finger USER on HOST.
18485
18486\(fn USER HOST)" t nil)
93548d2e
DL
18487
18488(autoload (quote whois) "net-utils" "\
18489Send SEARCH-STRING to server defined by the `whois-server-name' variable.
18490If `whois-guess-server' is non-nil, then try to deduce the correct server
c595cc5f 18491from SEARCH-STRING. With argument, prompt for whois server.
93548d2e 18492
c595cc5f
MR
18493\(fn ARG SEARCH-STRING)" t nil)
18494
18495(autoload (quote whois-reverse-lookup) "net-utils" "\
18496Not documented
18497
18498\(fn)" t nil)
93548d2e
DL
18499
18500(autoload (quote network-connection-to-service) "net-utils" "\
c595cc5f
MR
18501Open a network connection to SERVICE on HOST.
18502
18503\(fn HOST SERVICE)" t nil)
93548d2e
DL
18504
18505(autoload (quote network-connection) "net-utils" "\
c595cc5f
MR
18506Open a network connection to HOST on PORT.
18507
18508\(fn HOST PORT)" t nil)
93548d2e
DL
18509
18510;;;***
18511\f
390069bc
AS
18512;;;### (autoloads (comment-indent-new-line comment-auto-fill-only-comments
18513;;;;;; comment-dwim comment-or-uncomment-region comment-region uncomment-region
18514;;;;;; comment-kill comment-set-column comment-indent comment-indent-default
18515;;;;;; comment-normalize-vars comment-multi-line comment-padding
18516;;;;;; comment-style comment-column) "newcomment" "newcomment.el"
a5805c9d 18517;;;;;; (17383 37889))
f75a0f7a
GM
18518;;; Generated autoloads from newcomment.el
18519
18520(defalias (quote indent-for-comment) (quote comment-indent))
18521
18522(defalias (quote set-comment-column) (quote comment-set-column))
18523
18524(defalias (quote kill-comment) (quote comment-kill))
18525
18526(defalias (quote indent-new-comment-line) (quote comment-indent-new-line))
18527
0c72a1a2
MR
18528(defvar comment-use-syntax (quote undecided) "\
18529Non-nil if syntax-tables can be used instead of regexps.
18530Can also be `undecided' which means that a somewhat expensive test will
18531be used to try to determine whether syntax-tables should be trusted
18532to understand comments or not in the given buffer.
18533Major modes should set this variable.")
18534
f75a0f7a 18535(defvar comment-column 32 "\
c1a055ca 18536Column to indent right-margin comments to.
f75a0f7a 18537Each mode establishes a different default value for this variable; you
ec2bb97f
EZ
18538can set the value for a particular mode using that mode's hook.
18539Comments might be indented to a value smaller than this in order
9e0211c9 18540not to go beyond `comment-fill-column'.")
f75a0f7a 18541
9c46b00a
MR
18542(custom-autoload (quote comment-column) "newcomment")
18543
f75a0f7a
GM
18544(defvar comment-start nil "\
18545*String to insert to start a new comment, or nil if no comment syntax.")
18546
18547(defvar comment-start-skip nil "\
18548*Regexp to match the start of a comment plus everything up to its body.
18549If there are any \\(...\\) pairs, the comment delimiter text is held to begin
18550at the place matched by the close of the first pair.")
18551
18552(defvar comment-end-skip nil "\
18553Regexp to match the end of a comment plus everything up to its body.")
18554
18555(defvar comment-end "" "\
18556*String to insert to end a new comment.
18557Should be an empty string if comments are terminated by end-of-line.")
18558
0ad84a21 18559(defvar comment-indent-function (quote comment-indent-default) "\
f75a0f7a
GM
18560Function to compute desired indentation for a comment.
18561This function is called with no args with point at the beginning of
0ad84a21
MB
18562the comment's starting delimiter and should return either the desired
18563column indentation or nil.
18564If nil is returned, indentation is delegated to `indent-according-to-mode'.")
f75a0f7a 18565
390069bc
AS
18566(defvar comment-insert-comment-function nil "\
18567Function to insert a comment when a line doesn't contain one.
18568The function has no args.
18569
18570Applicable at least in modes for languages like fixed-format Fortran where
18571comments always start in column zero.")
18572
f75a0f7a 18573(defvar comment-style (quote plain) "\
c1a055ca 18574Style to be used for `comment-region'.
f75a0f7a
GM
18575See `comment-styles' for a list of available styles.")
18576
9c46b00a
MR
18577(custom-autoload (quote comment-style) "newcomment")
18578
f75a0f7a
GM
18579(defvar comment-padding " " "\
18580Padding string that `comment-region' puts between comment chars and text.
18581Can also be an integer which will be automatically turned into a string
18582of the corresponding number of spaces.
18583
18584Extra spacing between the comment characters and the comment text
18585makes the comment easier to read. Default is 1. nil means 0.")
18586
9c46b00a
MR
18587(custom-autoload (quote comment-padding) "newcomment")
18588
f75a0f7a 18589(defvar comment-multi-line nil "\
c1a055ca 18590Non-nil means `comment-indent-new-line' continues comments.
390069bc
AS
18591That is, it inserts no new terminator or starter.
18592This affects `auto-fill-mode', which is the main reason to
18593customize this variable.
18594
18595It also affects \\[indent-new-comment-line]. However, if you want this
18596behavior for explicit filling, you might as well use \\[newline-and-indent].")
f75a0f7a 18597
9c46b00a
MR
18598(custom-autoload (quote comment-multi-line) "newcomment")
18599
c595cc5f 18600(autoload (quote comment-normalize-vars) "newcomment" "\
0c72a1a2
MR
18601Check and setup the variables needed by other commenting functions.
18602Functions autoloaded from newcomment.el, being entry points, should call
18603this function before any other, so the rest of the code can assume that
18604the variables are properly set.
c595cc5f
MR
18605
18606\(fn &optional NOERROR)" nil nil)
5682d301 18607
0ad84a21 18608(autoload (quote comment-indent-default) "newcomment" "\
c595cc5f
MR
18609Default for `comment-indent-function'.
18610
18611\(fn)" nil nil)
0ad84a21 18612
f75a0f7a 18613(autoload (quote comment-indent) "newcomment" "\
390069bc 18614Indent this line's comment to `comment-column', or insert an empty comment.
c595cc5f
MR
18615If CONTINUE is non-nil, use the `comment-continue' markers if any.
18616
18617\(fn &optional CONTINUE)" t nil)
f75a0f7a
GM
18618
18619(autoload (quote comment-set-column) "newcomment" "\
18620Set the comment column based on point.
18621With no ARG, set the comment column to the current column.
18622With just minus as arg, kill any comment on this line.
18623With any other arg, set comment column to indentation of the previous comment
c595cc5f
MR
18624 and then align or create a comment on this line at that column.
18625
18626\(fn ARG)" t nil)
f75a0f7a
GM
18627
18628(autoload (quote comment-kill) "newcomment" "\
18629Kill the comment on this line, if any.
c595cc5f
MR
18630With prefix ARG, kill comments on that many lines starting with this one.
18631
18632\(fn ARG)" t nil)
f75a0f7a
GM
18633
18634(autoload (quote uncomment-region) "newcomment" "\
c595cc5f 18635Uncomment each line in the BEG .. END region.
f75a0f7a 18636The numeric prefix ARG can specify a number of chars to remove from the
c595cc5f
MR
18637comment markers.
18638
18639\(fn BEG END &optional ARG)" t nil)
f75a0f7a
GM
18640
18641(autoload (quote comment-region) "newcomment" "\
18642Comment or uncomment each line in the region.
f19e949b 18643With just \\[universal-argument] prefix arg, uncomment each line in region BEG .. END.
390069bc 18644Numeric prefix ARG means use ARG comment characters.
f75a0f7a
GM
18645If ARG is negative, delete that many comment characters instead.
18646By default, comments start at the left margin, are terminated on each line,
18647even for syntax in which newline does not end the comment and blank lines
18648do not get comments. This can be changed with `comment-style'.
18649
18650The strings used as comment starts are built from
c595cc5f
MR
18651`comment-start' without trailing spaces and `comment-padding'.
18652
18653\(fn BEG END &optional ARG)" t nil)
f75a0f7a 18654
9e0211c9
MR
18655(autoload (quote comment-or-uncomment-region) "newcomment" "\
18656Call `comment-region', unless the region only consists of comments,
18657in which case call `uncomment-region'. If a prefix arg is given, it
c595cc5f
MR
18658is passed on to the respective function.
18659
18660\(fn BEG END &optional ARG)" t nil)
9e0211c9 18661
f75a0f7a
GM
18662(autoload (quote comment-dwim) "newcomment" "\
18663Call the comment command you want (Do What I Mean).
18664If the region is active and `transient-mark-mode' is on, call
ac95a621 18665 `comment-region' (unless it only consists of comments, in which
f75a0f7a
GM
18666 case it calls `uncomment-region').
18667Else, if the current line is empty, insert a comment and indent it.
18668Else if a prefix ARG is specified, call `comment-kill'.
c595cc5f 18669Else, call `comment-indent'.
c1a055ca 18670You can configure `comment-style' to change the way regions are commented.
c595cc5f
MR
18671
18672\(fn ARG)" t nil)
f75a0f7a 18673
390069bc
AS
18674(defvar comment-auto-fill-only-comments nil "\
18675Non-nil means to only auto-fill inside comments.
18676This has no effect in modes that do not define a comment syntax.")
18677
18678(custom-autoload (quote comment-auto-fill-only-comments) "newcomment")
18679
f75a0f7a
GM
18680(autoload (quote comment-indent-new-line) "newcomment" "\
18681Break line at point and indent, continuing comment if within one.
18682This indents the body of the continued comment
18683under the previous comment line.
18684
18685This command is intended for styles where you write a comment per line,
18686starting a new comment (and terminating it if necessary) on each line.
18687If you want to continue one comment across several lines, use \\[newline-and-indent].
18688
18689If a fill column is specified, it overrides the use of the comment column
18690or comment indentation.
18691
18692The inserted newline is marked hard if variable `use-hard-newlines' is true,
c595cc5f
MR
18693unless optional argument SOFT is non-nil.
18694
18695\(fn &optional SOFT)" t nil)
f75a0f7a
GM
18696
18697;;;***
18698\f
c1a055ca
EZ
18699;;;### (autoloads (newsticker-show-news newsticker-start-ticker newsticker-start
18700;;;;;; newsticker-ticker-running-p newsticker-running-p) "newsticker"
a5805c9d 18701;;;;;; "net/newsticker.el" (17379 30025))
175a97e4
EZ
18702;;; Generated autoloads from net/newsticker.el
18703
c1a055ca
EZ
18704(autoload (quote newsticker-running-p) "newsticker" "\
18705Check whether newsticker is running.
18706Return t if newsticker is running, nil otherwise. Newsticker is
18707considered to be running if the newsticker timer list is not empty.
18708
18709\(fn)" nil nil)
18710
18711(autoload (quote newsticker-ticker-running-p) "newsticker" "\
18712Check whether newsticker's actual ticker is running.
18713Return t if ticker is running, nil otherwise. Newsticker is
18714considered to be running if the newsticker timer list is not
18715empty.
18716
18717\(fn)" nil nil)
18718
175a97e4
EZ
18719(autoload (quote newsticker-start) "newsticker" "\
18720Start the newsticker.
18721Start the timers for display and retrieval. If the newsticker, i.e. the
18722timers, are running already a warning message is printed unless
18723DO-NOT-COMPLAIN-IF-RUNNING is not nil.
18724Run `newsticker-start-hook' if newsticker was not running already.
18725
18726\(fn &optional DO-NOT-COMPLAIN-IF-RUNNING)" t nil)
18727
59e085e0
KL
18728(autoload (quote newsticker-start-ticker) "newsticker" "\
18729Start newsticker's ticker (but not the news retrieval).
18730Start display timer for the actual ticker if wanted and not
18731running already.
18732
18733\(fn)" t nil)
18734
175a97e4
EZ
18735(autoload (quote newsticker-show-news) "newsticker" "\
18736Switch to newsticker buffer. You may want to bind this to a key.
18737
18738\(fn)" t nil)
18739
18740;;;***
18741\f
390069bc 18742;;;### (autoloads (nndiary-generate-nov-databases) "nndiary" "gnus/nndiary.el"
a5805c9d 18743;;;;;; (17279 27122))
390069bc
AS
18744;;; Generated autoloads from gnus/nndiary.el
18745
18746(autoload (quote nndiary-generate-nov-databases) "nndiary" "\
18747Generate NOV databases in all nndiary directories.
18748
18749\(fn &optional SERVER)" t nil)
18750
18751;;;***
18752\f
a5805c9d
KL
18753;;;### (autoloads (nndoc-add-type) "nndoc" "gnus/nndoc.el" (17279
18754;;;;;; 27122))
93548d2e
DL
18755;;; Generated autoloads from gnus/nndoc.el
18756
18757(autoload (quote nndoc-add-type) "nndoc" "\
18758Add document DEFINITION to the list of nndoc document definitions.
18759If POSITION is nil or `last', the definition will be added
18760as the last checked definition, if t or `first', add as the
18761first definition, and if any other symbol, add after that
c595cc5f
MR
18762symbol in the alist.
18763
18764\(fn DEFINITION &optional POSITION)" nil nil)
93548d2e
DL
18765
18766;;;***
18767\f
18768;;;### (autoloads (nnfolder-generate-active-file) "nnfolder" "gnus/nnfolder.el"
a5805c9d 18769;;;;;; (17279 27122))
93548d2e
DL
18770;;; Generated autoloads from gnus/nnfolder.el
18771
18772(autoload (quote nnfolder-generate-active-file) "nnfolder" "\
b442e70a 18773Look for mbox folders in the nnfolder directory and make them into groups.
c595cc5f
MR
18774This command does not work if you use short group names.
18775
18776\(fn)" t nil)
93548d2e
DL
18777
18778;;;***
18779\f
18780;;;### (autoloads (nnkiboze-generate-groups) "nnkiboze" "gnus/nnkiboze.el"
a5805c9d 18781;;;;;; (17279 27122))
93548d2e
DL
18782;;; Generated autoloads from gnus/nnkiboze.el
18783
18784(autoload (quote nnkiboze-generate-groups) "nnkiboze" "\
18785\"Usage: emacs -batch -l nnkiboze -f nnkiboze-generate-groups\".
c595cc5f
MR
18786Finds out what articles are to be part of the nnkiboze groups.
18787
18788\(fn)" t nil)
93548d2e
DL
18789
18790;;;***
18791\f
18792;;;### (autoloads (nnml-generate-nov-databases) "nnml" "gnus/nnml.el"
a5805c9d 18793;;;;;; (17279 27122))
93548d2e
DL
18794;;; Generated autoloads from gnus/nnml.el
18795
18796(autoload (quote nnml-generate-nov-databases) "nnml" "\
c595cc5f
MR
18797Generate NOV databases in all nnml directories.
18798
390069bc 18799\(fn &optional SERVER)" t nil)
93548d2e
DL
18800
18801;;;***
18802\f
18803;;;### (autoloads (nnsoup-revert-variables nnsoup-set-variables nnsoup-pack-replies)
a5805c9d 18804;;;;;; "nnsoup" "gnus/nnsoup.el" (17279 27122))
93548d2e
DL
18805;;; Generated autoloads from gnus/nnsoup.el
18806
18807(autoload (quote nnsoup-pack-replies) "nnsoup" "\
c595cc5f
MR
18808Make an outbound package of SOUP replies.
18809
18810\(fn)" t nil)
93548d2e
DL
18811
18812(autoload (quote nnsoup-set-variables) "nnsoup" "\
c595cc5f
MR
18813Use the SOUP methods for posting news and mailing mail.
18814
18815\(fn)" t nil)
93548d2e
DL
18816
18817(autoload (quote nnsoup-revert-variables) "nnsoup" "\
c595cc5f
MR
18818Revert posting and mailing methods to the standard Emacs methods.
18819
18820\(fn)" t nil)
93548d2e
DL
18821
18822;;;***
18823\f
390069bc 18824;;;### (autoloads (disable-command enable-command disabled-command-function)
a5805c9d 18825;;;;;; "novice" "novice.el" (17279 27123))
93548d2e
DL
18826;;; Generated autoloads from novice.el
18827
390069bc 18828(defvar disabled-command-function (quote disabled-command-function) "\
93548d2e
DL
18829Function to call to handle disabled commands.
18830If nil, the feature is disabled, i.e., all commands work normally.")
18831
0ef3cc90 18832(define-obsolete-variable-alias (quote disabled-command-hook) (quote disabled-command-function) "22.1")
be65bdd3 18833
390069bc 18834(autoload (quote disabled-command-function) "novice" "\
c595cc5f
MR
18835Not documented
18836
18837\(fn &rest IGNORE)" nil nil)
93548d2e
DL
18838
18839(autoload (quote enable-command) "novice" "\
18840Allow COMMAND to be executed without special confirmation from now on.
390069bc
AS
18841COMMAND must be a symbol.
18842This command alters the user's .emacs file so that this will apply
c595cc5f
MR
18843to future sessions.
18844
18845\(fn COMMAND)" t nil)
93548d2e
DL
18846
18847(autoload (quote disable-command) "novice" "\
18848Require special confirmation to execute COMMAND from now on.
390069bc
AS
18849COMMAND must be a symbol.
18850This command alters the user's .emacs file so that this will apply
c595cc5f
MR
18851to future sessions.
18852
18853\(fn COMMAND)" t nil)
93548d2e
DL
18854
18855;;;***
18856\f
18857;;;### (autoloads (nroff-mode) "nroff-mode" "textmodes/nroff-mode.el"
a5805c9d 18858;;;;;; (17383 37890))
93548d2e
DL
18859;;; Generated autoloads from textmodes/nroff-mode.el
18860
18861(autoload (quote nroff-mode) "nroff-mode" "\
18862Major mode for editing text intended for nroff to format.
18863\\{nroff-mode-map}
18864Turning on Nroff mode runs `text-mode-hook', then `nroff-mode-hook'.
18865Also, try `nroff-electric-mode', for automatically inserting
0c867fa7
MS
18866closing requests for requests that are used in matched pairs.
18867
18868\(fn)" t nil)
93548d2e
DL
18869
18870;;;***
18871\f
18872;;;### (autoloads (octave-help) "octave-hlp" "progmodes/octave-hlp.el"
a5805c9d 18873;;;;;; (17279 27123))
93548d2e
DL
18874;;; Generated autoloads from progmodes/octave-hlp.el
18875
18876(autoload (quote octave-help) "octave-hlp" "\
18877Get help on Octave symbols from the Octave info files.
18878Look up KEY in the function, operator and variable indices of the files
18879specified by `octave-help-files'.
c595cc5f
MR
18880If KEY is not a string, prompt for it with completion.
18881
18882\(fn KEY)" t nil)
93548d2e
DL
18883
18884;;;***
18885\f
18886;;;### (autoloads (inferior-octave) "octave-inf" "progmodes/octave-inf.el"
a5805c9d 18887;;;;;; (17297 42806))
93548d2e
DL
18888;;; Generated autoloads from progmodes/octave-inf.el
18889
18890(autoload (quote inferior-octave) "octave-inf" "\
18891Run an inferior Octave process, I/O via `inferior-octave-buffer'.
18892This buffer is put in Inferior Octave mode. See `inferior-octave-mode'.
18893
18894Unless ARG is non-nil, switches to this buffer.
18895
18896The elements of the list `inferior-octave-startup-args' are sent as
18897command line arguments to the inferior Octave process on startup.
18898
18899Additional commands to be executed on startup can be provided either in
18900the file specified by `inferior-octave-startup-file' or by the default
c595cc5f
MR
18901startup file, `~/.emacs-octave'.
18902
18903\(fn &optional ARG)" t nil)
93548d2e
DL
18904
18905(defalias (quote run-octave) (quote inferior-octave))
18906
18907;;;***
18908\f
18909;;;### (autoloads (octave-mode) "octave-mod" "progmodes/octave-mod.el"
a5805c9d 18910;;;;;; (17308 43144))
93548d2e
DL
18911;;; Generated autoloads from progmodes/octave-mod.el
18912
18913(autoload (quote octave-mode) "octave-mod" "\
18914Major mode for editing Octave code.
18915
18916This mode makes it easier to write Octave code by helping with
18917indentation, doing some of the typing for you (with Abbrev mode) and by
18918showing keywords, comments, strings, etc. in different faces (with
18919Font Lock mode on terminals that support it).
18920
18921Octave itself is a high-level language, primarily intended for numerical
18922computations. It provides a convenient command line interface for
18923solving linear and nonlinear problems numerically. Function definitions
18924can also be stored in files, and it can be used in a batch mode (which
18925is why you need this mode!).
18926
18927The latest released version of Octave is always available via anonymous
18928ftp from bevo.che.wisc.edu in the directory `/pub/octave'. Complete
18929source and binaries for several popular systems are available.
18930
18931Type \\[list-abbrevs] to display the built-in abbrevs for Octave keywords.
18932
18933Keybindings
18934===========
18935
18936\\{octave-mode-map}
18937
18938Variables you can use to customize Octave mode
18939==============================================
18940
18941octave-auto-indent
18942 Non-nil means indent current line after a semicolon or space.
18943 Default is nil.
18944
18945octave-auto-newline
18946 Non-nil means auto-insert a newline and indent after a semicolon.
18947 Default is nil.
18948
18949octave-blink-matching-block
18950 Non-nil means show matching begin of block when inserting a space,
18951 newline or semicolon after an else or end keyword. Default is t.
18952
18953octave-block-offset
18954 Extra indentation applied to statements in block structures.
18955 Default is 2.
18956
18957octave-continuation-offset
18958 Extra indentation applied to Octave continuation lines.
18959 Default is 4.
18960
18961octave-continuation-string
18962 String used for Octave continuation lines.
18963 Default is a backslash.
18964
18965octave-mode-startup-message
8d8d8d4e 18966 nil means do not display the Octave mode startup message.
93548d2e
DL
18967 Default is t.
18968
18969octave-send-echo-input
18970 Non-nil means always display `inferior-octave-buffer' after sending a
18971 command to the inferior Octave process.
18972
18973octave-send-line-auto-forward
18974 Non-nil means always go to the next unsent line of Octave code after
18975 sending a line to the inferior Octave process.
18976
18977octave-send-echo-input
18978 Non-nil means echo input sent to the inferior Octave process.
18979
18980Turning on Octave mode runs the hook `octave-mode-hook'.
18981
18982To begin using this mode for all `.m' files that you edit, add the
18983following lines to your `.emacs' file:
18984
18985 (autoload 'octave-mode \"octave-mod\" nil t)
18986 (setq auto-mode-alist
18987 (cons '(\"\\\\.m$\" . octave-mode) auto-mode-alist))
18988
18989To automatically turn on the abbrev, auto-fill and font-lock features,
18990add the following lines to your `.emacs' file as well:
18991
18992 (add-hook 'octave-mode-hook
18993 (lambda ()
18994 (abbrev-mode 1)
18995 (auto-fill-mode 1)
18996 (if (eq window-system 'x)
18997 (font-lock-mode 1))))
18998
18999To submit a problem report, enter \\[octave-submit-bug-report] from an Octave mode buffer.
19000This automatically sets up a mail buffer with version information
19001already added. You just need to add a description of the problem,
c595cc5f
MR
19002including a reproducible test case and send the message.
19003
19004\(fn)" t nil)
93548d2e
DL
19005
19006;;;***
19007\f
27a99a7c 19008;;;### (autoloads (edit-options list-options) "options" "obsolete/options.el"
a5805c9d 19009;;;;;; (17279 27123))
27a99a7c 19010;;; Generated autoloads from obsolete/options.el
93548d2e
DL
19011
19012(autoload (quote list-options) "options" "\
0ad84a21 19013Display a list of Emacs user options, with values and documentation.
c595cc5f
MR
19014It is now better to use Customize instead.
19015
19016\(fn)" t nil)
93548d2e
DL
19017
19018(autoload (quote edit-options) "options" "\
19019Edit a list of Emacs user option values.
19020Selects a buffer containing such a list,
19021in which there are commands to set the option values.
19022Type \\[describe-mode] in that buffer for a list of commands.
19023
c595cc5f
MR
19024The Custom feature is intended to make this obsolete.
19025
19026\(fn)" t nil)
93548d2e
DL
19027
19028;;;***
19029\f
175a97e4
EZ
19030;;;### (autoloads (org-export-icalendar-combine-agenda-files org-export-icalendar-all-agenda-files
19031;;;;;; orgtbl-mode turn-on-orgtbl org-remember-handler org-remember-annotation
c1a055ca
EZ
19032;;;;;; org-store-link org-tags-view org-diary org-todo-list org-agenda-list
19033;;;;;; org-agenda org-agenda-mode org-mode) "org" "textmodes/org.el"
a5805c9d 19034;;;;;; (17374 21578))
390069bc
AS
19035;;; Generated autoloads from textmodes/org.el
19036
19037(autoload (quote org-mode) "org" "\
d66d64bc 19038Outline-based notes management and organizer, alias
c1a055ca 19039\"Carsten's outline-mode for keeping track of everything.\"
390069bc
AS
19040
19041Org-mode develops organizational tasks around a NOTES file which
19042contains information about projects as plain text. Org-mode is
19043implemented on top of outline-mode, which is ideal to keep the content
19044of large files well structured. It supports ToDo items, deadlines and
19045time stamps, which magically appear in the diary listing of the Emacs
19046calendar. Tables are easily created with a built-in table editor.
19047Plain text URL-like links connect to websites, emails (VM), Usenet
19048messages (Gnus), BBDB entries, and any files related to the project.
19049For printing and sharing of notes, an Org-mode file (or a part of it)
d66d64bc 19050can be exported as a structured ASCII or HTML file.
390069bc 19051
be65bdd3 19052The following commands are available:
390069bc
AS
19053
19054\\{org-mode-map}
19055
d66d64bc 19056\(fn)" t nil)
390069bc
AS
19057
19058(autoload (quote org-agenda-mode) "org" "\
19059Mode for time-sorted view on action items in Org-mode files.
19060
be65bdd3
AS
19061The following commands are available:
19062
19063\\{org-agenda-mode-map}
19064
390069bc
AS
19065\(fn)" t nil)
19066
19067(autoload (quote org-agenda) "org" "\
c1a055ca
EZ
19068Dispatch agenda commands to collect entries to the agenda buffer.
19069Prompts for a character to select a command. Any prefix arg will be passed
19070on to the selected command. The default selections are:
19071
19072a Call `org-agenda' to display the agenda for the current day or week.
19073t Call `org-todo-list' to display the global todo list.
19074T Call `org-todo-list' to display the global todo list, select only
19075 entries with a specific TODO keyword (the user gets a prompt).
19076m Call `org-tags-view' to display headlines with tags matching
19077 a condition (the user is prompted for the condition).
19078M Like `m', but select only TODO entries, no ordinary headlines.
19079
19080More commands can be added by configuring the variable
19081`org-agenda-custom-commands'. In particular, specific tags and TODO keyword
19082searches can be pre-defined in this way.
19083
19084If the current buffer is in Org-mode and visiting a file, you can also
19085first press `1' to indicate that the agenda should be temporarily (until the
19086next use of \\[org-agenda]) restricted to the current file.
19087
19088\(fn ARG)" t nil)
19089
19090(autoload (quote org-agenda-list) "org" "\
390069bc
AS
19091Produce a weekly view from all files in variable `org-agenda-files'.
19092The view will be for the current week, but from the overview buffer you
19093will be able to go to other weeks.
d66d64bc 19094With one \\[universal-argument] prefix argument INCLUDE-ALL, all unfinished TODO items will
390069bc 19095also be shown, under the current date.
c1a055ca
EZ
19096With two \\[universal-argument] prefix argument INCLUDE-ALL, all TODO entries marked DONE
19097on the days are also shown. See the variable `org-log-done' for how
19098to turn on logging.
390069bc
AS
19099START-DAY defaults to TODAY, or to the most recent match for the weekday
19100given in `org-agenda-start-on-weekday'.
19101NDAYS defaults to `org-agenda-ndays'.
19102
c1a055ca
EZ
19103\(fn &optional INCLUDE-ALL START-DAY NDAYS KEEP-MODES)" t nil)
19104
19105(autoload (quote org-todo-list) "org" "\
19106Show all TODO entries from all agenda file in a single list.
19107The prefix arg can be used to select a specific TODO keyword and limit
19108the list to these. When using \\[universal-argument], you will be prompted
19109for a keyword. A numeric prefix directly selects the Nth keyword in
19110`org-todo-keywords'.
19111
19112\(fn ARG &optional KEEP-MODES)" t nil)
390069bc
AS
19113
19114(autoload (quote org-diary) "org" "\
d66d64bc
KL
19115Return diary information from org-files.
19116This function can be used in a \"sexp\" diary entry in the Emacs calendar.
390069bc
AS
19117It accesses org files and extracts information from those files to be
19118listed in the diary. The function accepts arguments specifying what
19119items should be listed. The following arguments are allowed:
19120
19121 :timestamp List the headlines of items containing a date stamp or
ac09dc1e
KL
19122 date range matching the selected date. Deadlines will
19123 also be listed, on the expiration day.
390069bc
AS
19124
19125 :deadline List any deadlines past due, or due within
ac09dc1e
KL
19126 `org-deadline-warning-days'. The listing occurs only
19127 in the diary for *today*, not at any other date. If
19128 an entry is marked DONE, it is no longer listed.
390069bc
AS
19129
19130 :scheduled List all items which are scheduled for the given date.
ac09dc1e
KL
19131 The diary for *today* also contains items which were
19132 scheduled earlier and are not yet marked DONE.
390069bc
AS
19133
19134 :todo List all TODO items from the org-file. This may be a
ac09dc1e
KL
19135 long list - so this is not turned on by default.
19136 Like deadlines, these entries only show up in the
19137 diary for *today*, not at any other date.
390069bc
AS
19138
19139The call in the diary file should look like this:
19140
19141 &%%(org-diary) ~/path/to/some/orgfile.org
19142
19143Use a separate line for each org file to check. Or, if you omit the file name,
19144all files listed in `org-agenda-files' will be checked automatically:
19145
19146 &%%(org-diary)
19147
19148If you don't give any arguments (as in the example above), the default
19149arguments (:deadline :scheduled :timestamp) are used. So the example above may
19150also be written as
19151
19152 &%%(org-diary :deadline :timestamp :scheduled)
19153
19154The function expects the lisp variables `entry' and `date' to be provided
19155by the caller, because this is how the calendar works. Don't use this
19156function from a program - use `org-agenda-get-day-entries' instead.
19157
19158\(fn &rest ARGS)" nil nil)
19159
c1a055ca
EZ
19160(autoload (quote org-tags-view) "org" "\
19161Show all headlines for all `org-agenda-files' matching a TAGS criterion.
19162The prefix arg TODO-ONLY limits the search to TODO entries.
19163
19164\(fn &optional TODO-ONLY MATCH KEEP-MODES)" t nil)
19165
390069bc
AS
19166(autoload (quote org-store-link) "org" "\
19167\\<org-mode-map>Store an org-link to the current location.
19168This link can later be inserted into an org-buffer with
19169\\[org-insert-link].
19170For some link types, a prefix arg is interpreted:
19171For links to usenet articles, arg negates `org-usenet-links-prefer-google'.
c1a055ca 19172For file links, arg negates `org-context-in-file-links'.
390069bc
AS
19173
19174\(fn ARG)" t nil)
19175
19176(autoload (quote org-remember-annotation) "org" "\
19177Return a link to the current location as an annotation for remember.el.
19178If you are using Org-mode files as target for data storage with
19179remember.el, then the annotations should include a link compatible with the
19180conventions in Org-mode. This function returns such a link.
19181
19182\(fn)" nil nil)
19183
19184(autoload (quote org-remember-handler) "org" "\
19185Store stuff from remember.el into an org file.
19186First prompts for an org file. If the user just presses return, the value
19187of `org-default-notes-file' is used.
19188Then the command offers the headings tree of the selected file in order to
19189file the text at a specific location.
19190You can either immediately press RET to get the note appended to the
c1a055ca 19191file, or you can use vertical cursor motion and visibility cycling (TAB) to
390069bc
AS
19192find a better place. Then press RET or <left> or <right> in insert the note.
19193
19194Key Cursor position Note gets inserted
19195-----------------------------------------------------------------------------
19196RET buffer-start as level 2 heading at end of file
19197RET on headline as sublevel of the heading at cursor
19198RET no heading at cursor position, level taken from context.
ac09dc1e 19199 Or use prefix arg to specify level manually.
390069bc
AS
19200<left> on headline as same level, before current heading
19201<right> on headline as same level, after current heading
19202
19203So the fastest way to store the note is to press RET RET to append it to
19204the default file. This way your current train of thought is not
19205interrupted, in accordance with the principles of remember.el. But with
19206little extra effort, you can push it directly to the correct location.
19207
19208Before being stored away, the function ensures that the text has a
19209headline, i.e. a first line that starts with a \"*\". If not, a headline
19210is constructed from the current date and some additional data.
19211
19212If the variable `org-adapt-indentation' is non-nil, the entire text is
19213also indented so that it starts in the same column as the headline
19214\(i.e. after the stars).
19215
19216See also the variable `org-reverse-note-order'.
19217
19218\(fn)" nil nil)
19219
be65bdd3 19220(autoload (quote turn-on-orgtbl) "org" "\
d66d64bc 19221Unconditionally turn on `orgtbl-mode'.
be65bdd3
AS
19222
19223\(fn)" nil nil)
19224
19225(autoload (quote orgtbl-mode) "org" "\
d66d64bc 19226The `org-mode' table editor as a minor mode for use in other modes.
be65bdd3
AS
19227
19228\(fn &optional ARG)" t nil)
19229
175a97e4
EZ
19230(autoload (quote org-export-icalendar-all-agenda-files) "org" "\
19231Export all files in `org-agenda-files' to iCalendar .ics files.
19232Each iCalendar file will be located in the same directory as the Org-mode
19233file, but with extension `.ics'.
19234
19235\(fn)" t nil)
19236
19237(autoload (quote org-export-icalendar-combine-agenda-files) "org" "\
19238Export all files in `org-agenda-files' to a single combined iCalendar file.
19239The file is stored under the name `org-combined-agenda-icalendar-file'.
19240
19241\(fn)" t nil)
19242
390069bc
AS
19243;;;***
19244\f
27a99a7c 19245;;;### (autoloads (outline-minor-mode outline-mode) "outline" "outline.el"
a5805c9d 19246;;;;;; (17374 21284))
27a99a7c 19247;;; Generated autoloads from outline.el
93548d2e
DL
19248
19249(autoload (quote outline-mode) "outline" "\
19250Set major mode for editing outlines with selective display.
19251Headings are lines which start with asterisks: one for major headings,
19252two for subheadings, etc. Lines not starting with asterisks are body lines.
19253
19254Body text or subheadings under a heading can be made temporarily
19255invisible, or visible again. Invisible lines are attached to the end
19256of the heading, so they move with it, if the line is killed and yanked
19257back. A heading with text hidden under it is marked with an ellipsis (...).
19258
19259Commands:\\<outline-mode-map>
19260\\[outline-next-visible-heading] outline-next-visible-heading move by visible headings
19261\\[outline-previous-visible-heading] outline-previous-visible-heading
19262\\[outline-forward-same-level] outline-forward-same-level similar but skip subheadings
19263\\[outline-backward-same-level] outline-backward-same-level
19264\\[outline-up-heading] outline-up-heading move from subheading to heading
19265
19266\\[hide-body] make all text invisible (not headings).
19267\\[show-all] make everything in buffer visible.
ac42d7b9 19268\\[hide-sublevels] make only the first N levels of headers visible.
93548d2e
DL
19269
19270The remaining commands are used when point is on a heading line.
19271They apply to some of the body or subheadings of that heading.
19272\\[hide-subtree] hide-subtree make body and subheadings invisible.
19273\\[show-subtree] show-subtree make body and subheadings visible.
19274\\[show-children] show-children make direct subheadings visible.
19275 No effect on body, or subheadings 2 or more levels down.
19276 With arg N, affects subheadings N levels down.
19277\\[hide-entry] make immediately following body invisible.
19278\\[show-entry] make it visible.
19279\\[hide-leaves] make body under heading and under its subheadings invisible.
19280 The subheadings remain visible.
19281\\[show-branches] make all subheadings at all levels visible.
19282
19283The variable `outline-regexp' can be changed to control what is a heading.
19284A line is a heading if `outline-regexp' matches something at the
19285beginning of the line. The longer the match, the deeper the level.
19286
19287Turning on outline mode calls the value of `text-mode-hook' and then of
27a99a7c
GM
19288`outline-mode-hook', if they are non-nil.
19289
19290\(fn)" t nil)
93548d2e
DL
19291
19292(autoload (quote outline-minor-mode) "outline" "\
19293Toggle Outline minor mode.
19294With arg, turn Outline minor mode on if arg is positive, off otherwise.
c595cc5f
MR
19295See the command `outline-mode' for more information on this mode.
19296
19297\(fn &optional ARG)" t nil)
93548d2e
DL
19298
19299;;;***
19300\f
a5805c9d 19301;;;### (autoloads (show-paren-mode) "paren" "paren.el" (17337 56255))
93548d2e
DL
19302;;; Generated autoloads from paren.el
19303
7518ed7b 19304(defvar show-paren-mode nil "\
358a9f50 19305Non-nil if Show-Paren mode is enabled.
bd02b8e0 19306See the command `show-paren-mode' for a description of this minor-mode.
7518ed7b
GM
19307Setting this variable directly does not take effect;
19308use either \\[customize] or the function `show-paren-mode'.")
19309
9c46b00a 19310(custom-autoload (quote show-paren-mode) "paren")
7518ed7b 19311
ac09dc1e
KL
19312(put (quote show-paren-mode) (quote custom-set) (quote custom-set-minor-mode))
19313
93548d2e
DL
19314(autoload (quote show-paren-mode) "paren" "\
19315Toggle Show Paren mode.
19316With prefix ARG, turn Show Paren mode on if and only if ARG is positive.
19317Returns the new status of Show Paren mode (non-nil means on).
19318
19319When Show Paren mode is enabled, any matching parenthesis is highlighted
c595cc5f
MR
19320in `show-paren-style' after `show-paren-delay' seconds of Emacs idle time.
19321
19322\(fn &optional ARG)" t nil)
93548d2e
DL
19323
19324;;;***
19325\f
932a6f0f 19326;;;### (autoloads (parse-time-string) "parse-time" "calendar/parse-time.el"
a5805c9d 19327;;;;;; (17308 43144))
932a6f0f
AS
19328;;; Generated autoloads from calendar/parse-time.el
19329
19330(autoload (quote parse-time-string) "parse-time" "\
19331Parse the time-string STRING into (SEC MIN HOUR DAY MON YEAR DOW DST TZ).
19332The values are identical to those of `decode-time', but any values that are
19333unknown are returned as nil.
19334
19335\(fn STRING)" nil nil)
19336
19337;;;***
19338\f
a5805c9d
KL
19339;;;### (autoloads (pascal-mode) "pascal" "progmodes/pascal.el" (17279
19340;;;;;; 27203))
93548d2e
DL
19341;;; Generated autoloads from progmodes/pascal.el
19342
19343(autoload (quote pascal-mode) "pascal" "\
19344Major mode for editing Pascal code. \\<pascal-mode-map>
19345TAB indents for Pascal code. Delete converts tabs to spaces as it moves back.
19346
19347\\[pascal-complete-word] completes the word around current point with respect to position in code
19348\\[pascal-show-completions] shows all possible completions at this point.
19349
19350Other useful functions are:
19351
19352\\[pascal-mark-defun] - Mark function.
19353\\[pascal-insert-block] - insert begin ... end;
19354\\[pascal-star-comment] - insert (* ... *)
19355\\[pascal-comment-area] - Put marked area in a comment, fixing nested comments.
19356\\[pascal-uncomment-area] - Uncomment an area commented with \\[pascal-comment-area].
19357\\[pascal-beg-of-defun] - Move to beginning of current function.
19358\\[pascal-end-of-defun] - Move to end of current function.
19359\\[pascal-goto-defun] - Goto function prompted for in the minibuffer.
175a97e4 19360\\[pascal-outline-mode] - Enter `pascal-outline-mode'.
93548d2e
DL
19361
19362Variables controlling indentation/edit style:
19363
19364 pascal-indent-level (default 3)
19365 Indentation of Pascal statements with respect to containing block.
19366 pascal-case-indent (default 2)
19367 Indentation for case statements.
19368 pascal-auto-newline (default nil)
19369 Non-nil means automatically newline after semicolons and the punctuation
19370 mark after an end.
19371 pascal-indent-nested-functions (default t)
19372 Non-nil means nested functions are indented.
19373 pascal-tab-always-indent (default t)
19374 Non-nil means TAB in Pascal mode should always reindent the current line,
19375 regardless of where in the line point is when the TAB command is used.
19376 pascal-auto-endcomments (default t)
19377 Non-nil means a comment { ... } is set after the ends which ends cases and
19378 functions. The name of the function or case will be set between the braces.
19379 pascal-auto-lineup (default t)
19380 List of contexts where auto lineup of :'s or ='s should be done.
19381
19382See also the user variables pascal-type-keywords, pascal-start-keywords and
19383pascal-separator-keywords.
19384
19385Turning on Pascal mode calls the value of the variable pascal-mode-hook with
c595cc5f
MR
19386no args, if that value is non-nil.
19387
19388\(fn)" t nil)
93548d2e
DL
19389
19390;;;***
19391\f
19392;;;### (autoloads (pc-bindings-mode) "pc-mode" "emulation/pc-mode.el"
a5805c9d 19393;;;;;; (17279 27122))
93548d2e
DL
19394;;; Generated autoloads from emulation/pc-mode.el
19395
19396(autoload (quote pc-bindings-mode) "pc-mode" "\
19397Set up certain key bindings for PC compatibility.
19398The keys affected are:
19399Delete (and its variants) delete forward instead of backward.
19400C-Backspace kills backward a word (as C-Delete normally would).
19401M-Backspace does undo.
19402Home and End move to beginning and end of line
19403C-Home and C-End move to beginning and end of buffer.
c595cc5f
MR
19404C-Escape does list-buffers.
19405
19406\(fn)" t nil)
93548d2e
DL
19407
19408;;;***
19409\f
19410;;;### (autoloads (pc-selection-mode pc-selection-mode) "pc-select"
a5805c9d 19411;;;;;; "emulation/pc-select.el" (17279 27122))
93548d2e
DL
19412;;; Generated autoloads from emulation/pc-select.el
19413
662c9e53
EZ
19414(defvar pc-selection-mode nil "\
19415Non-nil if Pc-Selection mode is enabled.
19416See the command `pc-selection-mode' for a description of this minor-mode.
19417Setting this variable directly does not take effect;
19418use either \\[customize] or the function `pc-selection-mode'.")
19419
9c46b00a 19420(custom-autoload (quote pc-selection-mode) "pc-select")
662c9e53 19421
ac09dc1e
KL
19422(put (quote pc-selection-mode) (quote custom-set) (quote custom-set-minor-mode))
19423
93548d2e 19424(autoload (quote pc-selection-mode) "pc-select" "\
d66d64bc 19425Change mark behavior to emulate Motif, MAC or MS-Windows cut and paste style.
93548d2e
DL
19426
19427This mode enables Delete Selection mode and Transient Mark mode.
19428
19429The arrow keys (and others) are bound to new functions
19430which modify the status of the mark.
19431
19432The ordinary arrow keys disable the mark.
19433The shift-arrow keys move, leaving the mark behind.
19434
19435C-LEFT and C-RIGHT move back or forward one word, disabling the mark.
19436S-C-LEFT and S-C-RIGHT move back or forward one word, leaving the mark behind.
19437
19438M-LEFT and M-RIGHT move back or forward one word or sexp, disabling the mark.
19439S-M-LEFT and S-M-RIGHT move back or forward one word or sexp, leaving the mark
8d8d8d4e
EZ
19440behind. To control whether these keys move word-wise or sexp-wise set the
19441variable `pc-select-meta-moves-sexps' after loading pc-select.el but before
390069bc 19442turning PC Selection mode on.
93548d2e
DL
19443
19444C-DOWN and C-UP move back or forward a paragraph, disabling the mark.
19445S-C-DOWN and S-C-UP move back or forward a paragraph, leaving the mark behind.
19446
19447HOME moves to beginning of line, disabling the mark.
19448S-HOME moves to beginning of line, leaving the mark behind.
19449With Ctrl or Meta, these keys move to beginning of buffer instead.
19450
19451END moves to end of line, disabling the mark.
19452S-END moves to end of line, leaving the mark behind.
19453With Ctrl or Meta, these keys move to end of buffer instead.
19454
19455PRIOR or PAGE-UP scrolls and disables the mark.
19456S-PRIOR or S-PAGE-UP scrolls and leaves the mark behind.
19457
19458S-DELETE kills the region (`kill-region').
19459S-INSERT yanks text from the kill ring (`yank').
19460C-INSERT copies the region into the kill ring (`copy-region-as-kill').
19461
19462In addition, certain other PC bindings are imitated (to avoid this, set
8d8d8d4e 19463the variable `pc-select-selection-keys-only' to t after loading pc-select.el
390069bc 19464but before calling PC Selection mode):
93548d2e 19465
662c9e53
EZ
19466 F6 other-window
19467 DELETE delete-char
19468 C-DELETE kill-line
19469 M-DELETE kill-word
19470 C-M-DELETE kill-sexp
19471 C-BACKSPACE backward-kill-word
c595cc5f
MR
19472 M-BACKSPACE undo
19473
19474\(fn &optional ARG)" t nil)
93548d2e
DL
19475
19476(defvar pc-selection-mode nil "\
19477Toggle PC Selection mode.
d66d64bc 19478Change mark behavior to emulate Motif, MAC or MS-Windows cut and paste style,
93548d2e
DL
19479and cursor movement commands.
19480This mode enables Delete Selection mode and Transient Mark mode.
390069bc
AS
19481Setting this variable directly does not take effect;
19482you must modify it using \\[customize] or \\[pc-selection-mode].")
93548d2e 19483
9c46b00a 19484(custom-autoload (quote pc-selection-mode) "pc-select")
93548d2e
DL
19485
19486;;;***
19487\f
a5805c9d
KL
19488;;;### (autoloads (pcomplete/cvs) "pcmpl-cvs" "pcmpl-cvs.el" (17279
19489;;;;;; 27123))
abb2db1c
GM
19490;;; Generated autoloads from pcmpl-cvs.el
19491
19492(autoload (quote pcomplete/cvs) "pcmpl-cvs" "\
c595cc5f
MR
19493Completion rules for the `cvs' command.
19494
19495\(fn)" nil nil)
abb2db1c
GM
19496
19497;;;***
19498\f
19499;;;### (autoloads (pcomplete/tar pcomplete/make pcomplete/bzip2 pcomplete/gzip)
a5805c9d 19500;;;;;; "pcmpl-gnu" "pcmpl-gnu.el" (17279 27123))
abb2db1c
GM
19501;;; Generated autoloads from pcmpl-gnu.el
19502
19503(autoload (quote pcomplete/gzip) "pcmpl-gnu" "\
c595cc5f
MR
19504Completion for `gzip'.
19505
19506\(fn)" nil nil)
abb2db1c
GM
19507
19508(autoload (quote pcomplete/bzip2) "pcmpl-gnu" "\
c595cc5f
MR
19509Completion for `bzip2'.
19510
19511\(fn)" nil nil)
abb2db1c
GM
19512
19513(autoload (quote pcomplete/make) "pcmpl-gnu" "\
c595cc5f
MR
19514Completion for GNU `make'.
19515
19516\(fn)" nil nil)
abb2db1c
GM
19517
19518(autoload (quote pcomplete/tar) "pcmpl-gnu" "\
c595cc5f
MR
19519Completion for the GNU tar utility.
19520
19521\(fn)" nil nil)
abb2db1c
GM
19522
19523(defalias (quote pcomplete/gdb) (quote pcomplete/xargs))
19524
19525;;;***
19526\f
19527;;;### (autoloads (pcomplete/mount pcomplete/umount pcomplete/kill)
a5805c9d 19528;;;;;; "pcmpl-linux" "pcmpl-linux.el" (17279 27123))
abb2db1c
GM
19529;;; Generated autoloads from pcmpl-linux.el
19530
19531(autoload (quote pcomplete/kill) "pcmpl-linux" "\
c595cc5f
MR
19532Completion for GNU/Linux `kill', using /proc filesystem.
19533
19534\(fn)" nil nil)
abb2db1c
GM
19535
19536(autoload (quote pcomplete/umount) "pcmpl-linux" "\
c595cc5f
MR
19537Completion for GNU/Linux `umount'.
19538
19539\(fn)" nil nil)
abb2db1c
GM
19540
19541(autoload (quote pcomplete/mount) "pcmpl-linux" "\
c595cc5f
MR
19542Completion for GNU/Linux `mount'.
19543
19544\(fn)" nil nil)
abb2db1c
GM
19545
19546;;;***
19547\f
a5805c9d
KL
19548;;;### (autoloads (pcomplete/rpm) "pcmpl-rpm" "pcmpl-rpm.el" (17279
19549;;;;;; 27123))
abb2db1c
GM
19550;;; Generated autoloads from pcmpl-rpm.el
19551
19552(autoload (quote pcomplete/rpm) "pcmpl-rpm" "\
19553Completion for RedHat's `rpm' command.
19554These rules were taken from the output of `rpm --help' on a RedHat 6.1
19555system. They follow my interpretation of what followed, but since I'm
19556not a major rpm user/builder, please send me any corrections you find.
c595cc5f
MR
19557You can use \\[eshell-report-bug] to do so.
19558
19559\(fn)" nil nil)
abb2db1c
GM
19560
19561;;;***
19562\f
19563;;;### (autoloads (pcomplete/chgrp pcomplete/chown pcomplete/which
19564;;;;;; pcomplete/xargs pcomplete/rm pcomplete/rmdir pcomplete/cd)
a5805c9d 19565;;;;;; "pcmpl-unix" "pcmpl-unix.el" (17279 27123))
abb2db1c
GM
19566;;; Generated autoloads from pcmpl-unix.el
19567
19568(autoload (quote pcomplete/cd) "pcmpl-unix" "\
c595cc5f
MR
19569Completion for `cd'.
19570
19571\(fn)" nil nil)
abb2db1c
GM
19572
19573(defalias (quote pcomplete/pushd) (quote pcomplete/cd))
19574
19575(autoload (quote pcomplete/rmdir) "pcmpl-unix" "\
c595cc5f
MR
19576Completion for `rmdir'.
19577
19578\(fn)" nil nil)
abb2db1c
GM
19579
19580(autoload (quote pcomplete/rm) "pcmpl-unix" "\
c595cc5f
MR
19581Completion for `rm'.
19582
19583\(fn)" nil nil)
abb2db1c
GM
19584
19585(autoload (quote pcomplete/xargs) "pcmpl-unix" "\
c595cc5f
MR
19586Completion for `xargs'.
19587
19588\(fn)" nil nil)
abb2db1c
GM
19589
19590(defalias (quote pcomplete/time) (quote pcomplete/xargs))
19591
19592(autoload (quote pcomplete/which) "pcmpl-unix" "\
c595cc5f
MR
19593Completion for `which'.
19594
19595\(fn)" nil nil)
abb2db1c
GM
19596
19597(autoload (quote pcomplete/chown) "pcmpl-unix" "\
c595cc5f
MR
19598Completion for the `chown' command.
19599
19600\(fn)" nil nil)
abb2db1c
GM
19601
19602(autoload (quote pcomplete/chgrp) "pcmpl-unix" "\
c595cc5f
MR
19603Completion for the `chgrp' command.
19604
19605\(fn)" nil nil)
abb2db1c
GM
19606
19607;;;***
19608\f
19609;;;### (autoloads (pcomplete-shell-setup pcomplete-comint-setup pcomplete-list
19610;;;;;; pcomplete-help pcomplete-expand pcomplete-continue pcomplete-expand-and-complete
a5805c9d
KL
19611;;;;;; pcomplete-reverse pcomplete) "pcomplete" "pcomplete.el" (17279
19612;;;;;; 27172))
abb2db1c
GM
19613;;; Generated autoloads from pcomplete.el
19614
19615(autoload (quote pcomplete) "pcomplete" "\
19616Support extensible programmable completion.
19617To use this function, just bind the TAB key to it, or add it to your
c595cc5f
MR
19618completion functions list (it should occur fairly early in the list).
19619
390069bc 19620\(fn &optional INTERACTIVELY)" t nil)
abb2db1c
GM
19621
19622(autoload (quote pcomplete-reverse) "pcomplete" "\
c595cc5f
MR
19623If cycling completion is in use, cycle backwards.
19624
19625\(fn)" t nil)
abb2db1c
GM
19626
19627(autoload (quote pcomplete-expand-and-complete) "pcomplete" "\
19628Expand the textual value of the current argument.
c595cc5f
MR
19629This will modify the current buffer.
19630
19631\(fn)" t nil)
abb2db1c
GM
19632
19633(autoload (quote pcomplete-continue) "pcomplete" "\
c595cc5f
MR
19634Complete without reference to any cycling completions.
19635
19636\(fn)" t nil)
abb2db1c
GM
19637
19638(autoload (quote pcomplete-expand) "pcomplete" "\
19639Expand the textual value of the current argument.
c595cc5f
MR
19640This will modify the current buffer.
19641
19642\(fn)" t nil)
abb2db1c
GM
19643
19644(autoload (quote pcomplete-help) "pcomplete" "\
c595cc5f
MR
19645Display any help information relative to the current argument.
19646
19647\(fn)" t nil)
abb2db1c
GM
19648
19649(autoload (quote pcomplete-list) "pcomplete" "\
c595cc5f
MR
19650Show the list of possible completions for the current argument.
19651
19652\(fn)" t nil)
abb2db1c
GM
19653
19654(autoload (quote pcomplete-comint-setup) "pcomplete" "\
19655Setup a comint buffer to use pcomplete.
19656COMPLETEF-SYM should be the symbol where the
390069bc
AS
19657dynamic-complete-functions are kept. For comint mode itself,
19658this is `comint-dynamic-complete-functions'.
c595cc5f
MR
19659
19660\(fn COMPLETEF-SYM)" nil nil)
abb2db1c
GM
19661
19662(autoload (quote pcomplete-shell-setup) "pcomplete" "\
c595cc5f
MR
19663Setup shell-mode to use pcomplete.
19664
19665\(fn)" nil nil)
abb2db1c
GM
19666
19667;;;***
19668\f
19669;;;### (autoloads (cvs-dired-use-hook cvs-dired-action cvs-status
19670;;;;;; cvs-update cvs-examine cvs-quickdir cvs-checkout) "pcvs"
a5805c9d 19671;;;;;; "pcvs.el" (17308 43140))
fd0e837b
GM
19672;;; Generated autoloads from pcvs.el
19673
19674(autoload (quote cvs-checkout) "pcvs" "\
19675Run a 'cvs checkout MODULES' in DIR.
19676Feed the output to a *cvs* buffer, display it in the current window,
19677and run `cvs-mode' on it.
19678
c595cc5f
MR
19679With a prefix argument, prompt for cvs FLAGS to use.
19680
d66d64bc 19681\(fn MODULES DIR FLAGS &optional ROOT)" t nil)
fd0e837b 19682
abb2db1c
GM
19683(autoload (quote cvs-quickdir) "pcvs" "\
19684Open a *cvs* buffer on DIR without running cvs.
19685With a prefix argument, prompt for a directory to use.
19686A prefix arg >8 (ex: \\[universal-argument] \\[universal-argument]),
19687 prevents reuse of an existing *cvs* buffer.
19688Optional argument NOSHOW if non-nil means not to display the buffer.
c595cc5f
MR
19689FLAGS is ignored.
19690
19691\(fn DIR &optional FLAGS NOSHOW)" t nil)
abb2db1c 19692
fd0e837b
GM
19693(autoload (quote cvs-examine) "pcvs" "\
19694Run a `cvs -n update' in the specified DIRECTORY.
19695That is, check what needs to be done, but don't change the disc.
19696Feed the output to a *cvs* buffer and run `cvs-mode' on it.
19697With a prefix argument, prompt for a directory and cvs FLAGS to use.
19698A prefix arg >8 (ex: \\[universal-argument] \\[universal-argument]),
19699 prevents reuse of an existing *cvs* buffer.
c595cc5f
MR
19700Optional argument NOSHOW if non-nil means not to display the buffer.
19701
19702\(fn DIRECTORY FLAGS &optional NOSHOW)" t nil)
fd0e837b
GM
19703
19704(autoload (quote cvs-update) "pcvs" "\
19705Run a `cvs update' in the current working DIRECTORY.
19706Feed the output to a *cvs* buffer and run `cvs-mode' on it.
c595cc5f 19707With a \\[universal-argument] prefix argument, prompt for a directory to use.
fd0e837b 19708A prefix arg >8 (ex: \\[universal-argument] \\[universal-argument]),
c595cc5f
MR
19709 prevents reuse of an existing *cvs* buffer.
19710The prefix is also passed to `cvs-flags-query' to select the FLAGS
19711 passed to cvs.
19712
19713\(fn DIRECTORY FLAGS)" t nil)
fd0e837b
GM
19714
19715(autoload (quote cvs-status) "pcvs" "\
19716Run a `cvs status' in the current working DIRECTORY.
19717Feed the output to a *cvs* buffer and run `cvs-mode' on it.
19718With a prefix argument, prompt for a directory and cvs FLAGS to use.
19719A prefix arg >8 (ex: \\[universal-argument] \\[universal-argument]),
19720 prevents reuse of an existing *cvs* buffer.
c595cc5f
MR
19721Optional argument NOSHOW if non-nil means not to display the buffer.
19722
19723\(fn DIRECTORY FLAGS &optional NOSHOW)" t nil)
fd0e837b
GM
19724
19725(add-to-list (quote completion-ignored-extensions) "CVS/")
19726
0ad84a21 19727(defvar cvs-dired-action (quote cvs-quickdir) "\
abb2db1c
GM
19728The action to be performed when opening a CVS directory.
19729Sensible values are `cvs-examine', `cvs-status' and `cvs-quickdir'.")
19730
9c46b00a
MR
19731(custom-autoload (quote cvs-dired-action) "pcvs")
19732
fd0e837b
GM
19733(defvar cvs-dired-use-hook (quote (4)) "\
19734Whether or not opening a CVS directory should run PCL-CVS.
8d8d8d4e 19735nil means never do it.
fd0e837b
GM
19736ALWAYS means to always do it unless a prefix argument is given to the
19737 command that prompted the opening of the directory.
19738Anything else means to do it only if the prefix arg is equal to this value.")
19739
9c46b00a
MR
19740(custom-autoload (quote cvs-dired-use-hook) "pcvs")
19741
abb2db1c
GM
19742(defun cvs-dired-noselect (dir) "\
19743Run `cvs-examine' if DIR is a CVS administrative directory.
19744The exact behavior is determined also by `cvs-dired-use-hook'." (when (stringp dir) (setq dir (directory-file-name dir)) (when (and (string= "CVS" (file-name-nondirectory dir)) (file-readable-p (expand-file-name "Entries" dir)) cvs-dired-use-hook (if (eq cvs-dired-use-hook (quote always)) (not current-prefix-arg) (equal current-prefix-arg cvs-dired-use-hook))) (save-excursion (funcall cvs-dired-action (file-name-directory dir) t t)))))
fd0e837b
GM
19745
19746;;;***
19747\f
a5805c9d 19748;;;### (autoloads nil "pcvs-defs" "pcvs-defs.el" (17279 27169))
81bf3fa7
GM
19749;;; Generated autoloads from pcvs-defs.el
19750
27a99a7c 19751(defvar cvs-global-menu (let ((m (make-sparse-keymap "PCL-CVS"))) (define-key m [status] (quote (menu-item "Directory Status" cvs-status :help "A more verbose status of a workarea"))) (define-key m [checkout] (quote (menu-item "Checkout Module" cvs-checkout :help "Check out a module from the repository"))) (define-key m [update] (quote (menu-item "Update Directory" cvs-update :help "Fetch updates from the repository"))) (define-key m [examine] (quote (menu-item "Examine Directory" cvs-examine :help "Examine the current state of a workarea"))) (fset (quote cvs-global-menu) m)))
81bf3fa7
GM
19752
19753;;;***
19754\f
93548d2e 19755;;;### (autoloads (perl-mode) "perl-mode" "progmodes/perl-mode.el"
a5805c9d 19756;;;;;; (17279 27203))
93548d2e
DL
19757;;; Generated autoloads from progmodes/perl-mode.el
19758
19759(autoload (quote perl-mode) "perl-mode" "\
19760Major mode for editing Perl code.
19761Expression and list commands understand all Perl brackets.
19762Tab indents for Perl code.
19763Comments are delimited with # ... \\n.
19764Paragraphs are separated by blank lines only.
19765Delete converts tabs to spaces as it moves back.
19766\\{perl-mode-map}
19767Variables controlling indentation style:
4c6bc877 19768 `perl-tab-always-indent'
93548d2e
DL
19769 Non-nil means TAB in Perl mode should always indent the current line,
19770 regardless of where in the line point is when the TAB command is used.
4c6bc877 19771 `perl-tab-to-comment'
93548d2e 19772 Non-nil means that for lines which don't need indenting, TAB will
821b278f 19773 either delete an empty comment, indent an existing comment, move
93548d2e 19774 to end-of-line, or if at end-of-line already, create a new comment.
4c6bc877 19775 `perl-nochange'
93548d2e 19776 Lines starting with this regular expression are not auto-indented.
4c6bc877 19777 `perl-indent-level'
93548d2e
DL
19778 Indentation of Perl statements within surrounding block.
19779 The surrounding block's indentation is the indentation
19780 of the line on which the open-brace appears.
4c6bc877 19781 `perl-continued-statement-offset'
93548d2e
DL
19782 Extra indentation given to a substatement, such as the
19783 then-clause of an if or body of a while.
4c6bc877 19784 `perl-continued-brace-offset'
93548d2e
DL
19785 Extra indentation given to a brace that starts a substatement.
19786 This is in addition to `perl-continued-statement-offset'.
4c6bc877 19787 `perl-brace-offset'
93548d2e 19788 Extra indentation for line if it starts with an open brace.
4c6bc877 19789 `perl-brace-imaginary-offset'
93548d2e
DL
19790 An open brace following other text is treated as if it were
19791 this far to the right of the start of its line.
4c6bc877 19792 `perl-label-offset'
93548d2e 19793 Extra indentation for line that is a label.
4c6bc877
MR
19794 `perl-indent-continued-arguments'
19795 Offset of argument lines relative to usual indentation.
93548d2e
DL
19796
19797Various indentation styles: K&R BSD BLK GNU LW
19798 perl-indent-level 5 8 0 2 4
19799 perl-continued-statement-offset 5 8 4 2 4
19800 perl-continued-brace-offset 0 0 0 0 -4
19801 perl-brace-offset -5 -8 0 0 0
19802 perl-brace-imaginary-offset 0 0 4 0 0
19803 perl-label-offset -5 -8 -2 -2 -2
19804
c595cc5f
MR
19805Turning on Perl mode runs the normal hook `perl-mode-hook'.
19806
19807\(fn)" t nil)
93548d2e
DL
19808
19809;;;***
19810\f
390069bc
AS
19811;;;### (autoloads (pgg-snarf-keys pgg-snarf-keys-region pgg-insert-key
19812;;;;;; pgg-verify pgg-verify-region pgg-sign pgg-sign-region pgg-decrypt
59e085e0 19813;;;;;; pgg-decrypt-region pgg-encrypt pgg-encrypt-symmetric pgg-encrypt-symmetric-region
a5805c9d 19814;;;;;; pgg-encrypt-region) "pgg" "pgg.el" (17279 27198))
175a97e4 19815;;; Generated autoloads from pgg.el
390069bc
AS
19816
19817(autoload (quote pgg-encrypt-region) "pgg" "\
19818Encrypt the current region between START and END for RCPTS.
59e085e0 19819
390069bc
AS
19820If optional argument SIGN is non-nil, do a combined sign and encrypt.
19821
59e085e0
KL
19822If optional PASSPHRASE is not specified, it will be obtained from the
19823passphrase cache or user.
19824
19825\(fn START END RCPTS &optional SIGN PASSPHRASE)" t nil)
19826
19827(autoload (quote pgg-encrypt-symmetric-region) "pgg" "\
19828Encrypt the current region between START and END symmetric with passphrase.
19829
19830If optional PASSPHRASE is not specified, it will be obtained from the
19831cache or user.
19832
19833\(fn START END &optional PASSPHRASE)" t nil)
19834
19835(autoload (quote pgg-encrypt-symmetric) "pgg" "\
19836Encrypt the current buffer using a symmetric, rather than key-pair, cipher.
19837
19838If optional arguments START and END are specified, only encrypt within
19839the region.
19840
19841If optional PASSPHRASE is not specified, it will be obtained from the
19842passphrase cache or user.
19843
19844\(fn &optional START END PASSPHRASE)" t nil)
390069bc
AS
19845
19846(autoload (quote pgg-encrypt) "pgg" "\
19847Encrypt the current buffer for RCPTS.
59e085e0 19848
390069bc 19849If optional argument SIGN is non-nil, do a combined sign and encrypt.
59e085e0 19850
390069bc
AS
19851If optional arguments START and END are specified, only encrypt within
19852the region.
19853
59e085e0
KL
19854If optional PASSPHRASE is not specified, it will be obtained from the
19855passphrase cache or user.
19856
19857\(fn RCPTS &optional SIGN START END PASSPHRASE)" t nil)
390069bc
AS
19858
19859(autoload (quote pgg-decrypt-region) "pgg" "\
19860Decrypt the current region between START and END.
19861
59e085e0
KL
19862If optional PASSPHRASE is not specified, it will be obtained from the
19863passphrase cache or user.
19864
19865\(fn START END &optional PASSPHRASE)" t nil)
390069bc
AS
19866
19867(autoload (quote pgg-decrypt) "pgg" "\
19868Decrypt the current buffer.
59e085e0 19869
390069bc
AS
19870If optional arguments START and END are specified, only decrypt within
19871the region.
19872
59e085e0
KL
19873If optional PASSPHRASE is not specified, it will be obtained from the
19874passphrase cache or user.
19875
19876\(fn &optional START END PASSPHRASE)" t nil)
390069bc
AS
19877
19878(autoload (quote pgg-sign-region) "pgg" "\
19879Make the signature from text between START and END.
59e085e0 19880
390069bc
AS
19881If the optional 3rd argument CLEARTEXT is non-nil, it does not create
19882a detached signature.
59e085e0 19883
390069bc
AS
19884If this function is called interactively, CLEARTEXT is enabled
19885and the the output is displayed.
19886
59e085e0
KL
19887If optional PASSPHRASE is not specified, it will be obtained from the
19888passphrase cache or user.
19889
19890\(fn START END &optional CLEARTEXT PASSPHRASE)" t nil)
390069bc
AS
19891
19892(autoload (quote pgg-sign) "pgg" "\
19893Sign the current buffer.
59e085e0 19894
390069bc
AS
19895If the optional argument CLEARTEXT is non-nil, it does not create a
19896detached signature.
59e085e0 19897
390069bc
AS
19898If optional arguments START and END are specified, only sign data
19899within the region.
59e085e0 19900
390069bc
AS
19901If this function is called interactively, CLEARTEXT is enabled
19902and the the output is displayed.
19903
59e085e0
KL
19904If optional PASSPHRASE is not specified, it will be obtained from the
19905passphrase cache or user.
19906
19907\(fn &optional CLEARTEXT START END PASSPHRASE)" t nil)
390069bc
AS
19908
19909(autoload (quote pgg-verify-region) "pgg" "\
19910Verify the current region between START and END.
19911If the optional 3rd argument SIGNATURE is non-nil, it is treated as
19912the detached signature of the current region.
19913
19914If the optional 4th argument FETCH is non-nil, we attempt to fetch the
19915signer's public key from `pgg-default-keyserver-address'.
19916
19917\(fn START END &optional SIGNATURE FETCH)" t nil)
19918
19919(autoload (quote pgg-verify) "pgg" "\
19920Verify the current buffer.
19921If the optional argument SIGNATURE is non-nil, it is treated as
19922the detached signature of the current region.
19923If the optional argument FETCH is non-nil, we attempt to fetch the
19924signer's public key from `pgg-default-keyserver-address'.
19925If optional arguments START and END are specified, only verify data
19926within the region.
19927
19928\(fn &optional SIGNATURE FETCH START END)" t nil)
19929
19930(autoload (quote pgg-insert-key) "pgg" "\
19931Insert the ASCII armored public key.
19932
19933\(fn)" t nil)
19934
19935(autoload (quote pgg-snarf-keys-region) "pgg" "\
19936Import public keys in the current region between START and END.
19937
19938\(fn START END)" t nil)
19939
19940(autoload (quote pgg-snarf-keys) "pgg" "\
19941Import public keys in the current buffer.
19942
19943\(fn)" t nil)
19944
19945;;;***
19946\f
59e085e0 19947;;;### (autoloads (pgg-gpg-symmetric-key-p) "pgg-gpg" "pgg-gpg.el"
a5805c9d 19948;;;;;; (17279 27198))
59e085e0
KL
19949;;; Generated autoloads from pgg-gpg.el
19950
19951(autoload (quote pgg-gpg-symmetric-key-p) "pgg-gpg" "\
19952True if decoded armor MESSAGE-KEYS has symmetric encryption indicator.
19953
19954\(fn MESSAGE-KEYS)" nil nil)
19955
19956;;;***
19957\f
93548d2e 19958;;;### (autoloads (picture-mode) "picture" "textmodes/picture.el"
a5805c9d 19959;;;;;; (17327 23539))
93548d2e
DL
19960;;; Generated autoloads from textmodes/picture.el
19961
19962(autoload (quote picture-mode) "picture" "\
19963Switch to Picture mode, in which a quarter-plane screen model is used.
c1a055ca 19964\\<picture-mode-map>
93548d2e
DL
19965Printing characters replace instead of inserting themselves with motion
19966afterwards settable by these commands:
c1a055ca
EZ
19967
19968 Move left after insertion: \\[picture-movement-left]
19969 Move right after insertion: \\[picture-movement-right]
19970 Move up after insertion: \\[picture-movement-up]
19971 Move down after insertion: \\[picture-movement-down]
19972
19973 Move northwest (nw) after insertion: \\[picture-movement-nw]
19974 Move northeast (ne) after insertion: \\[picture-movement-ne]
19975 Move southwest (sw) after insertion: \\[picture-movement-sw]
19976 Move southeast (se) after insertion: \\[picture-movement-se]
19977
19978 Move westnorthwest (wnw) after insertion: C-u \\[picture-movement-nw]
19979 Move eastnortheast (ene) after insertion: C-u \\[picture-movement-ne]
19980 Move westsouthwest (wsw) after insertion: C-u \\[picture-movement-sw]
19981 Move eastsoutheast (ese) after insertion: C-u \\[picture-movement-se]
19982
93548d2e
DL
19983The current direction is displayed in the mode line. The initial
19984direction is right. Whitespace is inserted and tabs are changed to
19985spaces when required by movement. You can move around in the buffer
19986with these commands:
c1a055ca
EZ
19987
19988 Move vertically to SAME column in previous line: \\[picture-move-down]
19989 Move vertically to SAME column in next line: \\[picture-move-up]
19990 Move to column following last
19991 non-whitespace character: \\[picture-end-of-line]
19992 Move right, inserting spaces if required: \\[picture-forward-column]
19993 Move left changing tabs to spaces if required: \\[picture-backward-column]
19994 Move in direction of current picture motion: \\[picture-motion]
19995 Move opposite to current picture motion: \\[picture-motion-reverse]
19996 Move to beginning of next line: \\[next-line]
19997
93548d2e 19998You can edit tabular text with these commands:
c1a055ca
EZ
19999
20000 Move to column beneath (or at) next interesting
20001 character (see variable `picture-tab-chars'): \\[picture-tab-search]
20002 Move to next stop in tab stop list: \\[picture-tab]
20003 Set tab stops according to context of this line: \\[picture-set-tab-stops]
20004 (With ARG, resets tab stops to default value.)
20005 Change the tab stop list: \\[edit-tab-stops]
20006
93548d2e 20007You can manipulate text with these commands:
c1a055ca
EZ
20008 Clear ARG columns after point without moving: \\[picture-clear-column]
20009 Delete char at point: \\[delete-char]
20010 Clear ARG columns backward: \\[picture-backward-clear-column]
20011 Clear ARG lines, advancing over them: \\[picture-clear-line]
20012 (the cleared text is saved in the kill ring)
20013 Open blank line(s) beneath current line: \\[picture-open-line]
20014
93548d2e 20015You can manipulate rectangles with these commands:
c1a055ca
EZ
20016 Clear a rectangle and save it: \\[picture-clear-rectangle]
20017 Clear a rectangle, saving in a named register: \\[picture-clear-rectangle-to-register]
20018 Insert currently saved rectangle at point: \\[picture-yank-rectangle]
20019 Insert rectangle from named register: \\[picture-yank-rectangle-from-register]
20020 Draw a rectangular box around mark and point: \\[picture-draw-rectangle]
20021 Copies a rectangle to a register: \\[copy-rectangle-to-register]
20022 Undo effects of rectangle overlay commands: \\[advertised-undo]
20023
20024You can return to the previous mode with \\[picture-mode-exit], which
20025also strips trailing whitespace from every line. Stripping is suppressed
20026by supplying an argument.
93548d2e 20027
5682d301 20028Entry to this mode calls the value of `picture-mode-hook' if non-nil.
93548d2e
DL
20029
20030Note that Picture mode commands will work outside of Picture mode, but
c595cc5f
MR
20031they are not defaultly assigned to keys.
20032
20033\(fn)" t nil)
93548d2e
DL
20034
20035(defalias (quote edit-picture) (quote picture-mode))
20036
20037;;;***
20038\f
4c6bc877 20039;;;### (autoloads (po-find-file-coding-system) "po" "textmodes/po.el"
a5805c9d 20040;;;;;; (17279 27123))
4c6bc877
MR
20041;;; Generated autoloads from textmodes/po.el
20042
20043(autoload (quote po-find-file-coding-system) "po" "\
c595cc5f
MR
20044Return a (DECODING . ENCODING) pair, according to PO file's charset.
20045Called through `file-coding-system-alist', before the file is visited for real.
20046
20047\(fn ARG-LIST)" nil nil)
4c6bc877
MR
20048
20049;;;***
20050\f
a5805c9d 20051;;;### (autoloads (pong) "pong" "play/pong.el" (17279 27123))
0a352cd7
GM
20052;;; Generated autoloads from play/pong.el
20053
20054(autoload (quote pong) "pong" "\
20055Play pong and waste time.
20056This is an implementation of the classical game pong.
20057Move left and right bats and try to bounce the ball to your opponent.
20058
54baed30 20059pong-mode keybindings:\\<pong-mode-map>
0a352cd7 20060
c595cc5f
MR
20061\\{pong-mode-map}
20062
20063\(fn)" t nil)
0a352cd7
GM
20064
20065;;;***
20066\f
390069bc 20067;;;### (autoloads (pp-eval-last-sexp pp-eval-expression pp pp-buffer
a5805c9d 20068;;;;;; pp-to-string) "pp" "emacs-lisp/pp.el" (17279 27122))
93548d2e
DL
20069;;; Generated autoloads from emacs-lisp/pp.el
20070
735688c2
EZ
20071(autoload (quote pp-to-string) "pp" "\
20072Return a string containing the pretty-printed representation of OBJECT.
20073OBJECT can be any Lisp object. Quoting characters are used as needed
c595cc5f
MR
20074to make output that `read' can handle, whenever this is possible.
20075
20076\(fn OBJECT)" nil nil)
735688c2 20077
390069bc
AS
20078(autoload (quote pp-buffer) "pp" "\
20079Prettify the current buffer with printed representation of a Lisp object.
20080
20081\(fn)" nil nil)
20082
93548d2e
DL
20083(autoload (quote pp) "pp" "\
20084Output the pretty-printed representation of OBJECT, any Lisp object.
20085Quoting characters are printed as needed to make output that `read'
20086can handle, whenever this is possible.
c595cc5f
MR
20087Output stream is STREAM, or value of `standard-output' (which see).
20088
20089\(fn OBJECT &optional STREAM)" nil nil)
93548d2e
DL
20090
20091(autoload (quote pp-eval-expression) "pp" "\
20092Evaluate EXPRESSION and pretty-print value into a new display buffer.
20093If the pretty-printed value fits on one line, the message line is used
20094instead. The value is also consed onto the front of the list
c595cc5f
MR
20095in the variable `values'.
20096
20097\(fn EXPRESSION)" t nil)
93548d2e
DL
20098
20099(autoload (quote pp-eval-last-sexp) "pp" "\
20100Run `pp-eval-expression' on sexp before point (which see).
20101With argument, pretty-print output into current buffer.
c595cc5f
MR
20102Ignores leading comment characters.
20103
20104\(fn ARG)" t nil)
93548d2e
DL
20105
20106;;;***
20107\f
0c72a1a2
MR
20108;;;### (autoloads (pr-txt-fast-fire pr-ps-fast-fire pr-show-lpr-setup
20109;;;;;; pr-show-pr-setup pr-show-ps-setup pr-ps-utility pr-txt-name
20110;;;;;; pr-ps-name pr-help lpr-customize pr-customize pr-toggle-mode
20111;;;;;; pr-toggle-region pr-toggle-lock pr-toggle-header-frame pr-toggle-header
20112;;;;;; pr-toggle-zebra pr-toggle-line pr-toggle-upside-down pr-toggle-landscape
20113;;;;;; pr-toggle-tumble pr-toggle-duplex pr-toggle-spool pr-toggle-faces
20114;;;;;; pr-toggle-ghostscript pr-toggle-file-landscape pr-toggle-file-tumble
20115;;;;;; pr-toggle-file-duplex pr-ps-file-up-ps-print pr-ps-file-ps-print
20116;;;;;; pr-ps-file-print pr-ps-file-using-ghostscript pr-ps-file-up-preview
20117;;;;;; pr-ps-file-preview pr-despool-ps-print pr-despool-print pr-despool-using-ghostscript
20118;;;;;; pr-despool-preview pr-txt-mode pr-txt-region pr-txt-buffer
20119;;;;;; pr-txt-directory pr-printify-region pr-printify-buffer pr-printify-directory
20120;;;;;; pr-ps-mode-ps-print pr-ps-mode-print pr-ps-mode-using-ghostscript
20121;;;;;; pr-ps-mode-preview pr-ps-region-ps-print pr-ps-region-print
20122;;;;;; pr-ps-region-using-ghostscript pr-ps-region-preview pr-ps-buffer-ps-print
20123;;;;;; pr-ps-buffer-print pr-ps-buffer-using-ghostscript pr-ps-buffer-preview
20124;;;;;; pr-ps-directory-ps-print pr-ps-directory-print pr-ps-directory-using-ghostscript
20125;;;;;; pr-ps-directory-preview pr-interface) "printing" "printing.el"
a5805c9d 20126;;;;;; (17279 27201))
0c72a1a2
MR
20127;;; Generated autoloads from printing.el
20128
20129(autoload (quote pr-interface) "printing" "\
20130Activate the printing interface buffer.
20131
390069bc 20132If BUFFER is nil, the current buffer is used for printing.
0c72a1a2 20133
390069bc 20134For more information, type \\[pr-interface-help].
0c72a1a2
MR
20135
20136\(fn &optional BUFFER)" t nil)
20137
20138(autoload (quote pr-ps-directory-preview) "printing" "\
20139Preview directory using ghostview.
20140
20141Interactively, the command prompts for N-UP printing number, a directory, a
20142file name regexp for matching and, when you use a prefix argument (C-u), the
20143command prompts the user for a file name, and saves the PostScript image in
20144that file instead of saving it in a temporary file.
20145
20146Noninteractively, if N-UP is nil, prompts for N-UP printing number. If DIR is
20147nil, prompts for DIRectory. If FILE-REGEXP is nil, prompts for
20148FILE(name)-REGEXP. The argument FILENAME is treated as follows: if it's nil,
20149save the image in a temporary file. If FILENAME is a string, save the
20150PostScript image in a file with that name. If FILENAME is t, prompts for a
20151file name.
20152
20153See also documentation for `pr-list-directory'.
20154
20155\(fn N-UP DIR FILE-REGEXP &optional FILENAME)" t nil)
20156
20157(autoload (quote pr-ps-directory-using-ghostscript) "printing" "\
20158Print directory using PostScript through ghostscript.
20159
20160Interactively, the command prompts for N-UP printing number, a directory, a
20161file name regexp for matching and, when you use a prefix argument (C-u), the
20162command prompts the user for a file name, and saves the PostScript image in
20163that file instead of saving it in a temporary file.
20164
20165Noninteractively, if N-UP is nil, prompts for N-UP printing number. If DIR is
20166nil, prompts for DIRectory. If FILE-REGEXP is nil, prompts for
20167FILE(name)-REGEXP. The argument FILENAME is treated as follows: if it's nil,
20168save the image in a temporary file. If FILENAME is a string, save the
20169PostScript image in a file with that name. If FILENAME is t, prompts for a
20170file name.
20171
20172See also documentation for `pr-list-directory'.
20173
20174\(fn N-UP DIR FILE-REGEXP &optional FILENAME)" t nil)
20175
20176(autoload (quote pr-ps-directory-print) "printing" "\
20177Print directory using PostScript printer.
20178
20179Interactively, the command prompts for N-UP printing number, a directory, a
20180file name regexp for matching and, when you use a prefix argument (C-u), the
20181command prompts the user for a file name, and saves the PostScript image in
20182that file instead of saving it in a temporary file.
20183
20184Noninteractively, if N-UP is nil, prompts for N-UP printing number. If DIR is
20185nil, prompts for DIRectory. If FILE-REGEXP is nil, prompts for
20186FILE(name)-REGEXP. The argument FILENAME is treated as follows: if it's nil,
20187save the image in a temporary file. If FILENAME is a string, save the
20188PostScript image in a file with that name. If FILENAME is t, prompts for a
20189file name.
20190
20191See also documentation for `pr-list-directory'.
20192
20193\(fn N-UP DIR FILE-REGEXP &optional FILENAME)" t nil)
20194
20195(autoload (quote pr-ps-directory-ps-print) "printing" "\
20196Print directory using PostScript printer or through ghostscript.
20197
20198It depends on `pr-print-using-ghostscript'.
20199
20200Interactively, the command prompts for N-UP printing number, a directory, a
20201file name regexp for matching and, when you use a prefix argument (C-u), the
20202command prompts the user for a file name, and saves the PostScript image in
20203that file instead of saving it in a temporary file.
20204
20205Noninteractively, if N-UP is nil, prompts for N-UP printing number. If DIR is
20206nil, prompts for DIRectory. If FILE-REGEXP is nil, prompts for
20207FILE(name)-REGEXP. The argument FILENAME is treated as follows: if it's nil,
20208save the image in a temporary file. If FILENAME is a string, save the
20209PostScript image in a file with that name. If FILENAME is t, prompts for a
20210file name.
20211
20212See also documentation for `pr-list-directory'.
20213
20214\(fn N-UP DIR FILE-REGEXP &optional FILENAME)" t nil)
20215
20216(autoload (quote pr-ps-buffer-preview) "printing" "\
20217Preview buffer using ghostview.
20218
20219Interactively, the command prompts for N-UP printing number and, when you use a
20220prefix argument (C-u), the command prompts the user for a file name, and saves
20221the PostScript image in that file instead of saving it in a temporary file.
20222
20223Noninteractively, if N-UP is nil, prompts for N-UP printing number. The
20224argument FILENAME is treated as follows: if it's nil, save the image in a
20225temporary file. If FILENAME is a string, save the PostScript image in a file
20226with that name. If FILENAME is t, prompts for a file name.
20227
20228\(fn N-UP &optional FILENAME)" t nil)
20229
20230(autoload (quote pr-ps-buffer-using-ghostscript) "printing" "\
20231Print buffer using PostScript through ghostscript.
20232
20233Interactively, the command prompts for N-UP printing number and, when you use a
20234prefix argument (C-u), the command prompts the user for a file name, and saves
20235the PostScript image in that file instead of sending it to the printer.
20236
20237Noninteractively, if N-UP is nil, prompts for N-UP printing number. The
20238argument FILENAME is treated as follows: if it's nil, send the image to the
20239printer. If FILENAME is a string, save the PostScript image in a file with
20240that name. If FILENAME is t, prompts for a file name.
20241
20242\(fn N-UP &optional FILENAME)" t nil)
20243
20244(autoload (quote pr-ps-buffer-print) "printing" "\
20245Print buffer using PostScript printer.
20246
20247Interactively, the command prompts for N-UP printing number and, when you use a
20248prefix argument (C-u), the command prompts the user for a file name, and saves
20249the PostScript image in that file instead of sending it to the printer.
20250
20251Noninteractively, if N-UP is nil, prompts for N-UP printing number. The
20252argument FILENAME is treated as follows: if it's nil, send the image to the
20253printer. If FILENAME is a string, save the PostScript image in a file with
20254that name. If FILENAME is t, prompts for a file name.
20255
20256\(fn N-UP &optional FILENAME)" t nil)
20257
20258(autoload (quote pr-ps-buffer-ps-print) "printing" "\
20259Print buffer using PostScript printer or through ghostscript.
20260
20261It depends on `pr-print-using-ghostscript'.
20262
20263Interactively, the command prompts for N-UP printing number and, when you use a
20264prefix argument (C-u), the command prompts the user for a file name, and saves
20265the PostScript image in that file instead of sending it to the printer.
20266
20267Noninteractively, if N-UP is nil, prompts for N-UP printing number. The
20268argument FILENAME is treated as follows: if it's nil, send the image to the
20269printer. If FILENAME is a string, save the PostScript image in a file with
20270that name. If FILENAME is t, prompts for a file name.
20271
20272\(fn N-UP &optional FILENAME)" t nil)
20273
20274(autoload (quote pr-ps-region-preview) "printing" "\
20275Preview region using ghostview.
20276
20277See also `pr-ps-buffer-preview'.
20278
20279\(fn N-UP &optional FILENAME)" t nil)
20280
20281(autoload (quote pr-ps-region-using-ghostscript) "printing" "\
20282Print region using PostScript through ghostscript.
20283
20284See also `pr-ps-buffer-using-ghostscript'.
20285
20286\(fn N-UP &optional FILENAME)" t nil)
20287
20288(autoload (quote pr-ps-region-print) "printing" "\
20289Print region using PostScript printer.
20290
20291See also `pr-ps-buffer-print'.
20292
20293\(fn N-UP &optional FILENAME)" t nil)
20294
20295(autoload (quote pr-ps-region-ps-print) "printing" "\
20296Print region using PostScript printer or through ghostscript.
20297
20298See also `pr-ps-buffer-ps-print'.
20299
20300\(fn N-UP &optional FILENAME)" t nil)
20301
20302(autoload (quote pr-ps-mode-preview) "printing" "\
20303Preview major mode using ghostview.
20304
20305See also `pr-ps-buffer-preview'.
20306
20307\(fn N-UP &optional FILENAME)" t nil)
20308
20309(autoload (quote pr-ps-mode-using-ghostscript) "printing" "\
20310Print major mode using PostScript through ghostscript.
20311
20312See also `pr-ps-buffer-using-ghostscript'.
20313
20314\(fn N-UP &optional FILENAME)" t nil)
20315
20316(autoload (quote pr-ps-mode-print) "printing" "\
20317Print major mode using PostScript printer.
20318
20319See also `pr-ps-buffer-print'.
20320
20321\(fn N-UP &optional FILENAME)" t nil)
20322
20323(autoload (quote pr-ps-mode-ps-print) "printing" "\
20324Print major mode using PostScript or through ghostscript.
20325
20326See also `pr-ps-buffer-ps-print'.
20327
20328\(fn N-UP &optional FILENAME)" t nil)
20329
20330(autoload (quote pr-printify-directory) "printing" "\
20331Replace nonprinting characters in directory with printable representations.
20332The printable representations use ^ (for ASCII control characters) or hex.
20333The characters tab, linefeed, space, return and formfeed are not affected.
20334
20335Interactively, the command prompts for a directory and a file name regexp for
20336matching.
20337
20338Noninteractively, if DIR is nil, prompts for DIRectory. If FILE-REGEXP is nil,
20339prompts for FILE(name)-REGEXP.
20340
20341See also documentation for `pr-list-directory'.
20342
20343\(fn &optional DIR FILE-REGEXP)" t nil)
20344
20345(autoload (quote pr-printify-buffer) "printing" "\
20346Replace nonprinting characters in buffer with printable representations.
20347The printable representations use ^ (for ASCII control characters) or hex.
20348The characters tab, linefeed, space, return and formfeed are not affected.
20349
20350\(fn)" t nil)
20351
20352(autoload (quote pr-printify-region) "printing" "\
20353Replace nonprinting characters in region with printable representations.
20354The printable representations use ^ (for ASCII control characters) or hex.
20355The characters tab, linefeed, space, return and formfeed are not affected.
20356
20357\(fn)" t nil)
20358
20359(autoload (quote pr-txt-directory) "printing" "\
20360Print directory using text printer.
20361
20362Interactively, the command prompts for a directory and a file name regexp for
20363matching.
20364
20365Noninteractively, if DIR is nil, prompts for DIRectory. If FILE-REGEXP is nil,
20366prompts for FILE(name)-REGEXP.
20367
20368See also documentation for `pr-list-directory'.
20369
20370\(fn &optional DIR FILE-REGEXP)" t nil)
20371
20372(autoload (quote pr-txt-buffer) "printing" "\
20373Print buffer using text printer.
20374
20375\(fn)" t nil)
20376
20377(autoload (quote pr-txt-region) "printing" "\
20378Print region using text printer.
20379
20380\(fn)" t nil)
20381
20382(autoload (quote pr-txt-mode) "printing" "\
20383Print major mode using text printer.
20384
20385\(fn)" t nil)
20386
20387(autoload (quote pr-despool-preview) "printing" "\
20388Preview spooled PostScript.
20389
20390Interactively, when you use a prefix argument (C-u), the command prompts the
20391user for a file name, and saves the spooled PostScript image in that file
20392instead of saving it in a temporary file.
20393
20394Noninteractively, the argument FILENAME is treated as follows: if it is nil,
20395save the image in a temporary file. If FILENAME is a string, save the
20396PostScript image in a file with that name.
20397
20398\(fn &optional FILENAME)" t nil)
20399
20400(autoload (quote pr-despool-using-ghostscript) "printing" "\
20401Print spooled PostScript using ghostscript.
20402
20403Interactively, when you use a prefix argument (C-u), the command prompts the
20404user for a file name, and saves the spooled PostScript image in that file
20405instead of sending it to the printer.
20406
20407Noninteractively, the argument FILENAME is treated as follows: if it is nil,
20408send the image to the printer. If FILENAME is a string, save the PostScript
20409image in a file with that name.
20410
20411\(fn &optional FILENAME)" t nil)
20412
20413(autoload (quote pr-despool-print) "printing" "\
20414Send the spooled PostScript to the printer.
20415
20416Interactively, when you use a prefix argument (C-u), the command prompts the
20417user for a file name, and saves the spooled PostScript image in that file
20418instead of sending it to the printer.
20419
20420Noninteractively, the argument FILENAME is treated as follows: if it is nil,
20421send the image to the printer. If FILENAME is a string, save the PostScript
20422image in a file with that name.
20423
20424\(fn &optional FILENAME)" t nil)
20425
20426(autoload (quote pr-despool-ps-print) "printing" "\
20427Send the spooled PostScript to the printer or use ghostscript to print it.
20428
20429Interactively, when you use a prefix argument (C-u), the command prompts the
20430user for a file name, and saves the spooled PostScript image in that file
20431instead of sending it to the printer.
20432
20433Noninteractively, the argument FILENAME is treated as follows: if it is nil,
20434send the image to the printer. If FILENAME is a string, save the PostScript
20435image in a file with that name.
20436
20437\(fn &optional FILENAME)" t nil)
20438
20439(autoload (quote pr-ps-file-preview) "printing" "\
20440Preview PostScript file FILENAME.
20441
20442\(fn FILENAME)" t nil)
20443
20444(autoload (quote pr-ps-file-up-preview) "printing" "\
20445Preview PostScript file FILENAME.
20446
20447\(fn N-UP IFILENAME &optional OFILENAME)" t nil)
20448
20449(autoload (quote pr-ps-file-using-ghostscript) "printing" "\
20450Print PostScript file FILENAME using ghostscript.
20451
20452\(fn FILENAME)" t nil)
20453
20454(autoload (quote pr-ps-file-print) "printing" "\
20455Print PostScript file FILENAME.
20456
20457\(fn FILENAME)" t nil)
20458
20459(autoload (quote pr-ps-file-ps-print) "printing" "\
20460Send PostScript file FILENAME to printer or use ghostscript to print it.
20461
20462\(fn FILENAME)" t nil)
20463
20464(autoload (quote pr-ps-file-up-ps-print) "printing" "\
20465Process a PostScript file IFILENAME and send it to printer.
20466
20467Interactively, the command prompts for N-UP printing number, for an input
20468PostScript file IFILENAME and, when you use a prefix argument (C-u), the
20469command prompts the user for an output PostScript file name OFILENAME, and
20470saves the PostScript image in that file instead of sending it to the printer.
20471
20472Noninteractively, if N-UP is nil, prompts for N-UP printing number. The
20473argument IFILENAME is treated as follows: if it's t, prompts for an input
20474PostScript file name; otherwise, it *must* be a string that it's an input
20475PostScript file name. The argument OFILENAME is treated as follows: if it's
20476nil, send the image to the printer. If OFILENAME is a string, save the
20477PostScript image in a file with that name. If OFILENAME is t, prompts for a
20478file name.
20479
20480\(fn N-UP IFILENAME &optional OFILENAME)" t nil)
20481
20482(autoload (quote pr-toggle-file-duplex) "printing" "\
20483Toggle duplex for PostScript file.
20484
20485\(fn)" t nil)
20486
20487(autoload (quote pr-toggle-file-tumble) "printing" "\
20488Toggle tumble for PostScript file.
20489
20490If tumble is off, produces a printing suitable for binding on the left or
20491right.
20492If tumble is on, produces a printing suitable for binding at the top or
20493bottom.
20494
20495\(fn)" t nil)
20496
20497(autoload (quote pr-toggle-file-landscape) "printing" "\
20498Toggle landscape for PostScript file.
20499
20500\(fn)" t nil)
20501
20502(autoload (quote pr-toggle-ghostscript) "printing" "\
20503Toggle printing using ghostscript.
20504
20505\(fn)" t nil)
20506
20507(autoload (quote pr-toggle-faces) "printing" "\
20508Toggle printing with faces.
20509
20510\(fn)" t nil)
20511
20512(autoload (quote pr-toggle-spool) "printing" "\
20513Toggle spooling.
20514
20515\(fn)" t nil)
20516
20517(autoload (quote pr-toggle-duplex) "printing" "\
20518Toggle duplex.
20519
20520\(fn)" t nil)
20521
20522(autoload (quote pr-toggle-tumble) "printing" "\
20523Toggle tumble.
20524
20525If tumble is off, produces a printing suitable for binding on the left or
20526right.
20527If tumble is on, produces a printing suitable for binding at the top or
20528bottom.
20529
20530\(fn)" t nil)
20531
20532(autoload (quote pr-toggle-landscape) "printing" "\
20533Toggle landscape.
20534
20535\(fn)" t nil)
20536
20537(autoload (quote pr-toggle-upside-down) "printing" "\
20538Toggle upside-down.
20539
20540\(fn)" t nil)
20541
20542(autoload (quote pr-toggle-line) "printing" "\
20543Toggle line number.
20544
20545\(fn)" t nil)
20546
20547(autoload (quote pr-toggle-zebra) "printing" "\
20548Toggle zebra stripes.
20549
20550\(fn)" t nil)
20551
20552(autoload (quote pr-toggle-header) "printing" "\
20553Toggle printing header.
20554
20555\(fn)" t nil)
20556
20557(autoload (quote pr-toggle-header-frame) "printing" "\
20558Toggle printing header frame.
20559
20560\(fn)" t nil)
20561
20562(autoload (quote pr-toggle-lock) "printing" "\
20563Toggle menu lock.
20564
20565\(fn)" t nil)
20566
20567(autoload (quote pr-toggle-region) "printing" "\
20568Toggle auto region.
20569
20570\(fn)" t nil)
20571
20572(autoload (quote pr-toggle-mode) "printing" "\
20573Toggle auto mode.
20574
20575\(fn)" t nil)
20576
20577(autoload (quote pr-customize) "printing" "\
390069bc 20578Customization of the `printing' group.
0c72a1a2
MR
20579
20580\(fn &rest IGNORE)" t nil)
20581
20582(autoload (quote lpr-customize) "printing" "\
390069bc 20583Customization of the `lpr' group.
0c72a1a2
MR
20584
20585\(fn &rest IGNORE)" t nil)
20586
20587(autoload (quote pr-help) "printing" "\
390069bc 20588Help for the printing package.
0c72a1a2
MR
20589
20590\(fn &rest IGNORE)" t nil)
20591
20592(autoload (quote pr-ps-name) "printing" "\
390069bc 20593Interactively select a PostScript printer.
0c72a1a2
MR
20594
20595\(fn)" t nil)
20596
20597(autoload (quote pr-txt-name) "printing" "\
390069bc 20598Interactively select a text printer.
0c72a1a2
MR
20599
20600\(fn)" t nil)
20601
20602(autoload (quote pr-ps-utility) "printing" "\
390069bc 20603Interactively select a PostScript utility.
0c72a1a2
MR
20604
20605\(fn)" t nil)
20606
20607(autoload (quote pr-show-ps-setup) "printing" "\
20608Show current ps-print settings.
20609
20610\(fn &rest IGNORE)" t nil)
20611
20612(autoload (quote pr-show-pr-setup) "printing" "\
20613Show current printing settings.
20614
20615\(fn &rest IGNORE)" t nil)
20616
20617(autoload (quote pr-show-lpr-setup) "printing" "\
20618Show current lpr settings.
20619
20620\(fn &rest IGNORE)" t nil)
20621
20622(autoload (quote pr-ps-fast-fire) "printing" "\
20623Fast fire function for PostScript printing.
20624
20625If a region is active, the region will be printed instead of the whole buffer.
20626Also if the current major-mode is defined in `pr-mode-alist', the settings in
20627`pr-mode-alist' will be used, that is, the current buffer or region will be
20628printed using `pr-ps-mode-ps-print'.
20629
20630
20631Interactively, you have the following situations:
20632
20633 M-x pr-ps-fast-fire RET
20634 The command prompts the user for a N-UP value and printing will
20635 immediatelly be done using the current active printer.
20636
20637 C-u M-x pr-ps-fast-fire RET
20638 C-u 0 M-x pr-ps-fast-fire RET
20639 The command prompts the user for a N-UP value and also for a current
20640 PostScript printer, then printing will immediatelly be done using the new
20641 current active printer.
20642
20643 C-u 1 M-x pr-ps-fast-fire RET
20644 The command prompts the user for a N-UP value and also for a file name,
20645 and saves the PostScript image in that file instead of sending it to the
20646 printer.
20647
20648 C-u 2 M-x pr-ps-fast-fire RET
20649 The command prompts the user for a N-UP value, then for a current
20650 PostScript printer and, finally, for a file name. Then change the active
20651 printer to that choosen by user and saves the PostScript image in
20652 that file instead of sending it to the printer.
20653
20654
20655Noninteractively, the argument N-UP should be a positive integer greater than
20656zero and the argument SELECT is treated as follows:
20657
20658 If it's nil, send the image to the printer.
20659
20660 If it's a list or an integer lesser or equal to zero, the command prompts
20661 the user for a current PostScript printer, then printing will immediatelly
20662 be done using the new current active printer.
20663
20664 If it's an integer equal to 1, the command prompts the user for a file name
20665 and saves the PostScript image in that file instead of sending it to the
20666 printer.
20667
20668 If it's an integer greater or equal to 2, the command prompts the user for a
20669 current PostScript printer and for a file name. Then change the active
20670 printer to that choosen by user and saves the PostScript image in that file
20671 instead of sending it to the printer.
20672
20673 If it's a symbol which it's defined in `pr-ps-printer-alist', it's the new
20674 active printer and printing will immediatelly be done using the new active
20675 printer.
20676
20677 Otherwise, send the image to the printer.
20678
20679
20680Note that this command always behaves as if `pr-auto-region' and `pr-auto-mode'
20681are both set to t.
20682
20683\(fn N-UP &optional SELECT)" t nil)
20684
20685(autoload (quote pr-txt-fast-fire) "printing" "\
20686Fast fire function for text printing.
20687
20688If a region is active, the region will be printed instead of the whole buffer.
20689Also if the current major-mode is defined in `pr-mode-alist', the settings in
20690`pr-mode-alist' will be used, that is, the current buffer or region will be
20691printed using `pr-txt-mode'.
20692
20693Interactively, when you use a prefix argument (C-u), the command prompts the
20694user for a new active text printer.
20695
20696Noninteractively, the argument SELECT-PRINTER is treated as follows:
20697
20698 If it's nil, the printing is sent to the current active text printer.
20699
20700 If it's a symbol which it's defined in `pr-txt-printer-alist', it's the new
20701 active printer and printing will immediatelly be done using the new active
20702 printer.
20703
20704 If it's non-nil, the command prompts the user for a new active text printer.
20705
20706Note that this command always behaves as if `pr-auto-region' and `pr-auto-mode'
20707are both set to t.
20708
20709\(fn &optional SELECT-PRINTER)" t nil)
20710
20711;;;***
20712\f
93548d2e 20713;;;### (autoloads (run-prolog prolog-mode) "prolog" "progmodes/prolog.el"
a5805c9d 20714;;;;;; (17279 27203))
93548d2e
DL
20715;;; Generated autoloads from progmodes/prolog.el
20716
20717(autoload (quote prolog-mode) "prolog" "\
20718Major mode for editing Prolog code for Prologs.
20719Blank lines and `%%...' separate paragraphs. `%'s start comments.
20720Commands:
20721\\{prolog-mode-map}
20722Entry to this mode calls the value of `prolog-mode-hook'
c595cc5f
MR
20723if that value is non-nil.
20724
20725\(fn)" t nil)
93548d2e
DL
20726
20727(autoload (quote run-prolog) "prolog" "\
c595cc5f
MR
20728Run an inferior Prolog process, input and output via buffer *prolog*.
20729
20730\(fn)" t nil)
93548d2e
DL
20731
20732;;;***
20733\f
a5805c9d 20734;;;### (autoloads nil "ps-bdf" "ps-bdf.el" (17327 23539))
93548d2e
DL
20735;;; Generated autoloads from ps-bdf.el
20736
0c867fa7 20737(defvar bdf-directory-list (if (memq system-type (quote (ms-dos windows-nt))) (list (expand-file-name "fonts/bdf" installation-directory)) (quote ("/usr/local/share/emacs/fonts/bdf"))) "\
93548d2e
DL
20738*List of directories to search for `BDF' font files.
20739The default value is '(\"/usr/local/share/emacs/fonts/bdf\").")
20740
20741;;;***
20742\f
a5805c9d
KL
20743;;;### (autoloads (ps-mode) "ps-mode" "progmodes/ps-mode.el" (17279
20744;;;;;; 27203))
7518ed7b 20745;;; Generated autoloads from progmodes/ps-mode.el
27a99a7c
GM
20746
20747(autoload (quote ps-mode) "ps-mode" "\
20748Major mode for editing PostScript with GNU Emacs.
20749
20750Entry to this mode calls `ps-mode-hook'.
20751
20752The following variables hold user options, and can
20753be set through the `customize' command:
20754
20755 `ps-mode-auto-indent'
20756 `ps-mode-tab'
20757 `ps-mode-paper-size'
20758 `ps-mode-print-function'
20759 `ps-run-prompt'
20760 `ps-run-font-lock-keywords-2'
20761 `ps-run-x'
20762 `ps-run-dumb'
20763 `ps-run-init'
20764 `ps-run-error-line-numbers'
20765 `ps-run-tmp-dir'
20766
20767Type \\[describe-variable] for documentation on these options.
20768
20769
20770\\{ps-mode-map}
20771
20772
20773When starting an interactive PostScript process with \\[ps-run-start],
20774a second window will be displayed, and `ps-run-mode-hook' will be called.
20775The keymap for this second window is:
20776
20777\\{ps-run-mode-map}
20778
20779
20780When Ghostscript encounters an error it displays an error message
20781with a file position. Clicking mouse-2 on this number will bring
20782point to the corresponding spot in the PostScript window, if input
20783to the interpreter was sent from that window.
20784Typing \\<ps-run-mode-map>\\[ps-run-goto-error] when the cursor is at the number has the same effect.
20785
20786\(fn)" t nil)
7518ed7b
GM
20787
20788;;;***
20789\f
be65bdd3
AS
20790;;;### (autoloads (ps-mule-begin-page ps-mule-begin-job ps-mule-encode-header-string
20791;;;;;; ps-mule-initialize ps-mule-plot-composition ps-mule-plot-string
20792;;;;;; ps-mule-set-ascii-font ps-mule-prepare-ascii-font ps-multibyte-buffer)
a5805c9d 20793;;;;;; "ps-mule" "ps-mule.el" (17279 27172))
93548d2e
DL
20794;;; Generated autoloads from ps-mule.el
20795
6ddb893f
KH
20796(defvar ps-multibyte-buffer nil "\
20797*Specifies the multi-byte buffer handling.
20798
20799Valid values are:
20800
20801 nil This is the value to use the default settings which
20802 is by default for printing buffer with only ASCII
20803 and Latin characters. The default setting can be
20804 changed by setting the variable
20805 `ps-mule-font-info-database-default' differently.
20806 The initial value of this variable is
20807 `ps-mule-font-info-database-latin' (see
20808 documentation).
20809
20810 `non-latin-printer' This is the value to use when you have a Japanese
20811 or Korean PostScript printer and want to print
20812 buffer with ASCII, Latin-1, Japanese (JISX0208 and
20813 JISX0201-Kana) and Korean characters. At present,
20814 it was not tested the Korean characters printing.
20815 If you have a korean PostScript printer, please,
20816 test it.
20817
20818 `bdf-font' This is the value to use when you want to print
20819 buffer with BDF fonts. BDF fonts include both latin
20820 and non-latin fonts. BDF (Bitmap Distribution
20821 Format) is a format used for distributing X's font
20822 source file. BDF fonts are included in
f383cd0d 20823 `intlfonts-1.2' which is a collection of X11 fonts
6ddb893f
KH
20824 for all characters supported by Emacs. In order to
20825 use this value, be sure to have installed
f383cd0d 20826 `intlfonts-1.2' and set the variable
6ddb893f
KH
20827 `bdf-directory-list' appropriately (see ps-bdf.el for
20828 documentation of this variable).
20829
20830 `bdf-font-except-latin' This is like `bdf-font' except that it is used
20831 PostScript default fonts to print ASCII and Latin-1
20832 characters. This is convenient when you want or
20833 need to use both latin and non-latin characters on
20834 the same buffer. See `ps-font-family',
20835 `ps-header-font-family' and `ps-font-info-database'.
20836
20837Any other value is treated as nil.")
20838
9c46b00a
MR
20839(custom-autoload (quote ps-multibyte-buffer) "ps-mule")
20840
93548d2e
DL
20841(autoload (quote ps-mule-prepare-ascii-font) "ps-mule" "\
20842Setup special ASCII font for STRING.
c595cc5f
MR
20843STRING should contain only ASCII characters.
20844
20845\(fn STRING)" nil nil)
93548d2e 20846
c595cc5f
MR
20847(autoload (quote ps-mule-set-ascii-font) "ps-mule" "\
20848Not documented
20849
20850\(fn)" nil nil)
93548d2e
DL
20851
20852(autoload (quote ps-mule-plot-string) "ps-mule" "\
f383cd0d 20853Generate PostScript code for plotting characters in the region FROM and TO.
93548d2e
DL
20854
20855It is assumed that all characters in this region belong to the same charset.
20856
20857Optional argument BG-COLOR specifies background color.
20858
20859Returns the value:
20860
20861 (ENDPOS . RUN-WIDTH)
20862
20863Where ENDPOS is the end position of the sequence and RUN-WIDTH is the width of
c595cc5f
MR
20864the sequence.
20865
20866\(fn FROM TO &optional BG-COLOR)" nil nil)
93548d2e 20867
5ec14d3c 20868(autoload (quote ps-mule-plot-composition) "ps-mule" "\
f383cd0d 20869Generate PostScript code for plotting composition in the region FROM and TO.
5ec14d3c
KH
20870
20871It is assumed that all characters in this region belong to the same
20872composition.
20873
20874Optional argument BG-COLOR specifies background color.
20875
20876Returns the value:
20877
20878 (ENDPOS . RUN-WIDTH)
20879
20880Where ENDPOS is the end position of the sequence and RUN-WIDTH is the width of
c595cc5f
MR
20881the sequence.
20882
20883\(fn FROM TO &optional BG-COLOR)" nil nil)
5ec14d3c 20884
93548d2e 20885(autoload (quote ps-mule-initialize) "ps-mule" "\
c595cc5f
MR
20886Initialize global data for printing multi-byte characters.
20887
20888\(fn)" nil nil)
93548d2e 20889
f383cd0d
GM
20890(autoload (quote ps-mule-encode-header-string) "ps-mule" "\
20891Generate PostScript code for ploting STRING by font FONTTAG.
c595cc5f
MR
20892FONTTAG should be a string \"/h0\" or \"/h1\".
20893
20894\(fn STRING FONTTAG)" nil nil)
f383cd0d 20895
93548d2e
DL
20896(autoload (quote ps-mule-begin-job) "ps-mule" "\
20897Start printing job for multi-byte chars between FROM and TO.
c595cc5f
MR
20898This checks if all multi-byte characters in the region are printable or not.
20899
20900\(fn FROM TO)" nil nil)
20901
20902(autoload (quote ps-mule-begin-page) "ps-mule" "\
20903Not documented
93548d2e 20904
c595cc5f 20905\(fn)" nil nil)
93548d2e
DL
20906
20907;;;***
20908\f
20909;;;### (autoloads (ps-extend-face ps-extend-face-list ps-setup ps-nb-pages-region
20910;;;;;; ps-nb-pages-buffer ps-line-lengths ps-despool ps-spool-region-with-faces
20911;;;;;; ps-spool-region ps-spool-buffer-with-faces ps-spool-buffer
20912;;;;;; ps-print-region-with-faces ps-print-region ps-print-buffer-with-faces
c595cc5f 20913;;;;;; ps-print-buffer ps-print-customize ps-print-color-p ps-paper-type
a5805c9d
KL
20914;;;;;; ps-page-dimensions-database) "ps-print" "ps-print.el" (17279
20915;;;;;; 27172))
93548d2e
DL
20916;;; Generated autoloads from ps-print.el
20917
c595cc5f
MR
20918(defvar ps-page-dimensions-database (list (list (quote a4) (/ (* 72 21.0) 2.54) (/ (* 72 29.7) 2.54) "A4") (list (quote a3) (/ (* 72 29.7) 2.54) (/ (* 72 42.0) 2.54) "A3") (list (quote letter) (* 72 8.5) (* 72 11.0) "Letter") (list (quote legal) (* 72 8.5) (* 72 14.0) "Legal") (list (quote letter-small) (* 72 7.68) (* 72 10.16) "LetterSmall") (list (quote tabloid) (* 72 11.0) (* 72 17.0) "Tabloid") (list (quote ledger) (* 72 17.0) (* 72 11.0) "Ledger") (list (quote statement) (* 72 5.5) (* 72 8.5) "Statement") (list (quote executive) (* 72 7.5) (* 72 10.0) "Executive") (list (quote a4small) (* 72 7.47) (* 72 10.85) "A4Small") (list (quote b4) (* 72 10.125) (* 72 14.33) "B4") (list (quote b5) (* 72 7.16) (* 72 10.125) "B5")) "\
20919*List associating a symbolic paper type to its width, height and doc media.
20920See `ps-paper-type'.")
20921
9c46b00a
MR
20922(custom-autoload (quote ps-page-dimensions-database) "ps-print")
20923
93548d2e 20924(defvar ps-paper-type (quote letter) "\
4efd38a1 20925*Specify the size of paper to format for.
93548d2e
DL
20926Should be one of the paper types defined in `ps-page-dimensions-database', for
20927example `letter', `legal' or `a4'.")
20928
9c46b00a
MR
20929(custom-autoload (quote ps-paper-type) "ps-print")
20930
c595cc5f
MR
20931(defvar ps-print-color-p (or (fboundp (quote x-color-values)) (fboundp (quote color-instance-rgb-components))) "\
20932*Specify how buffer's text color is printed.
20933
20934Valid values are:
20935
20936 nil Do not print colors.
20937
20938 t Print colors.
20939
20940 black-white Print colors on black/white printer.
20941 See also `ps-black-white-faces'.
20942
20943Any other value is treated as t.")
20944
9c46b00a
MR
20945(custom-autoload (quote ps-print-color-p) "ps-print")
20946
0a352cd7 20947(autoload (quote ps-print-customize) "ps-print" "\
c595cc5f
MR
20948Customization of ps-print group.
20949
20950\(fn)" t nil)
0a352cd7 20951
93548d2e
DL
20952(autoload (quote ps-print-buffer) "ps-print" "\
20953Generate and print a PostScript image of the buffer.
20954
c595cc5f 20955Interactively, when you use a prefix argument (\\[universal-argument]), the command prompts the
b5c5b319
GM
20956user for a file name, and saves the PostScript image in that file instead of
20957sending it to the printer.
93548d2e 20958
b5c5b319
GM
20959Noninteractively, the argument FILENAME is treated as follows: if it is nil,
20960send the image to the printer. If FILENAME is a string, save the PostScript
c595cc5f
MR
20961image in a file with that name.
20962
20963\(fn &optional FILENAME)" t nil)
93548d2e
DL
20964
20965(autoload (quote ps-print-buffer-with-faces) "ps-print" "\
20966Generate and print a PostScript image of the buffer.
b5c5b319
GM
20967Like `ps-print-buffer', but includes font, color, and underline information in
20968the generated image. This command works only if you are using a window system,
c595cc5f
MR
20969so it has a way to determine color values.
20970
20971\(fn &optional FILENAME)" t nil)
93548d2e
DL
20972
20973(autoload (quote ps-print-region) "ps-print" "\
20974Generate and print a PostScript image of the region.
c595cc5f
MR
20975Like `ps-print-buffer', but prints just the current region.
20976
20977\(fn FROM TO &optional FILENAME)" t nil)
93548d2e
DL
20978
20979(autoload (quote ps-print-region-with-faces) "ps-print" "\
20980Generate and print a PostScript image of the region.
b5c5b319
GM
20981Like `ps-print-region', but includes font, color, and underline information in
20982the generated image. This command works only if you are using a window system,
c595cc5f
MR
20983so it has a way to determine color values.
20984
20985\(fn FROM TO &optional FILENAME)" t nil)
93548d2e
DL
20986
20987(autoload (quote ps-spool-buffer) "ps-print" "\
20988Generate and spool a PostScript image of the buffer.
b5c5b319
GM
20989Like `ps-print-buffer' except that the PostScript image is saved in a local
20990buffer to be sent to the printer later.
93548d2e 20991
c595cc5f
MR
20992Use the command `ps-despool' to send the spooled images to the printer.
20993
20994\(fn)" t nil)
93548d2e
DL
20995
20996(autoload (quote ps-spool-buffer-with-faces) "ps-print" "\
20997Generate and spool a PostScript image of the buffer.
b5c5b319
GM
20998Like `ps-spool-buffer', but includes font, color, and underline information in
20999the generated image. This command works only if you are using a window system,
21000so it has a way to determine color values.
93548d2e 21001
c595cc5f
MR
21002Use the command `ps-despool' to send the spooled images to the printer.
21003
21004\(fn)" t nil)
93548d2e
DL
21005
21006(autoload (quote ps-spool-region) "ps-print" "\
21007Generate a PostScript image of the region and spool locally.
21008Like `ps-spool-buffer', but spools just the current region.
21009
c595cc5f
MR
21010Use the command `ps-despool' to send the spooled images to the printer.
21011
21012\(fn FROM TO)" t nil)
93548d2e
DL
21013
21014(autoload (quote ps-spool-region-with-faces) "ps-print" "\
21015Generate a PostScript image of the region and spool locally.
b5c5b319
GM
21016Like `ps-spool-region', but includes font, color, and underline information in
21017the generated image. This command works only if you are using a window system,
21018so it has a way to determine color values.
93548d2e 21019
c595cc5f
MR
21020Use the command `ps-despool' to send the spooled images to the printer.
21021
21022\(fn FROM TO)" t nil)
93548d2e
DL
21023
21024(autoload (quote ps-despool) "ps-print" "\
21025Send the spooled PostScript to the printer.
21026
c595cc5f 21027Interactively, when you use a prefix argument (\\[universal-argument]), the command prompts the
b5c5b319
GM
21028user for a file name, and saves the spooled PostScript image in that file
21029instead of sending it to the printer.
93548d2e 21030
b5c5b319
GM
21031Noninteractively, the argument FILENAME is treated as follows: if it is nil,
21032send the image to the printer. If FILENAME is a string, save the PostScript
c595cc5f
MR
21033image in a file with that name.
21034
21035\(fn &optional FILENAME)" t nil)
93548d2e
DL
21036
21037(autoload (quote ps-line-lengths) "ps-print" "\
c595cc5f
MR
21038Display the correspondence between a line length and a font size.
21039Done using the current ps-print setup.
93548d2e 21040Try: pr -t file | awk '{printf \"%3d %s
c595cc5f
MR
21041\", length($0), $0}' | sort -r | head
21042
21043\(fn)" t nil)
93548d2e
DL
21044
21045(autoload (quote ps-nb-pages-buffer) "ps-print" "\
21046Display number of pages to print this buffer, for various font heights.
c595cc5f
MR
21047The table depends on the current ps-print setup.
21048
21049\(fn NB-LINES)" t nil)
93548d2e
DL
21050
21051(autoload (quote ps-nb-pages-region) "ps-print" "\
21052Display number of pages to print the region, for various font heights.
c595cc5f
MR
21053The table depends on the current ps-print setup.
21054
21055\(fn NB-LINES)" t nil)
93548d2e
DL
21056
21057(autoload (quote ps-setup) "ps-print" "\
c595cc5f
MR
21058Return the current PostScript-generation setup.
21059
21060\(fn)" nil nil)
93548d2e
DL
21061
21062(autoload (quote ps-extend-face-list) "ps-print" "\
ad648212 21063Extend face in ALIST-SYM.
93548d2e
DL
21064
21065If optional MERGE-P is non-nil, extensions in FACE-EXTENSION-LIST are merged
ad648212
GM
21066with face extension in ALIST-SYM; otherwise, overrides.
21067
0ef3cc90 21068If optional ALIST-SYM is nil, `ps-print-face-extension-alist' is used;
ad648212 21069otherwise, it should be an alist symbol.
93548d2e 21070
0ef3cc90 21071The elements in FACE-EXTENSION-LIST are like those for `ps-extend-face'.
93548d2e 21072
c595cc5f
MR
21073See `ps-extend-face' for documentation.
21074
21075\(fn FACE-EXTENSION-LIST &optional MERGE-P ALIST-SYM)" nil nil)
93548d2e
DL
21076
21077(autoload (quote ps-extend-face) "ps-print" "\
ad648212 21078Extend face in ALIST-SYM.
93548d2e
DL
21079
21080If optional MERGE-P is non-nil, extensions in FACE-EXTENSION list are merged
ad648212
GM
21081with face extensions in ALIST-SYM; otherwise, overrides.
21082
0ef3cc90 21083If optional ALIST-SYM is nil, `ps-print-face-extension-alist' is used;
ad648212 21084otherwise, it should be an alist symbol.
93548d2e
DL
21085
21086The elements of FACE-EXTENSION list have the form:
21087
21088 (FACE-NAME FOREGROUND BACKGROUND EXTENSION...)
21089
21090FACE-NAME is a face name symbol.
21091
21092FOREGROUND and BACKGROUND may be nil or a string that denotes the
21093foreground and background colors respectively.
21094
21095EXTENSION is one of the following symbols:
21096 bold - use bold font.
21097 italic - use italic font.
21098 underline - put a line under text.
21099 strikeout - like underline, but the line is in middle of text.
21100 overline - like underline, but the line is over the text.
21101 shadow - text will have a shadow.
21102 box - text will be surrounded by a box.
21103 outline - print characters as hollow outlines.
21104
c595cc5f
MR
21105If EXTENSION is any other symbol, it is ignored.
21106
21107\(fn FACE-EXTENSION &optional MERGE-P ALIST-SYM)" nil nil)
93548d2e
DL
21108
21109;;;***
21110\f
390069bc 21111;;;### (autoloads (jython-mode python-mode run-python) "python" "progmodes/python.el"
a5805c9d 21112;;;;;; (17374 21423))
390069bc
AS
21113;;; Generated autoloads from progmodes/python.el
21114
21115(add-to-list (quote interpreter-mode-alist) (quote ("jython" . jython-mode)))
21116
21117(add-to-list (quote interpreter-mode-alist) (quote ("python" . python-mode)))
21118
21119(add-to-list (quote auto-mode-alist) (quote ("\\.py\\'" . python-mode)))
21120
21121(autoload (quote run-python) "python" "\
21122Run an inferior Python process, input and output via buffer *Python*.
21123CMD is the Python command to run. NOSHOW non-nil means don't show the
21124buffer automatically.
21125If there is a process already running in `*Python*', switch to
21126that buffer. Interactively, a prefix arg allows you to edit the initial
21127command line (default is `python-command'); `-i' etc. args will be added
21128to this as appropriate. Runs the hook `inferior-python-mode-hook'
21129\(after the `comint-mode-hook' is run).
21130\(Type \\[describe-mode] in the process buffer for a list of commands.)
21131
21132\(fn &optional CMD NOSHOW)" t nil)
21133
21134(autoload (quote python-mode) "python" "\
21135Major mode for editing Python files.
21136Turns on Font Lock mode unconditionally since it is required for correct
21137parsing of the source.
21138See also `jython-mode', which is actually invoked if the buffer appears to
21139contain Jython code. See also `run-python' and associated Python mode
21140commands for running Python under Emacs.
21141
21142The Emacs commands which work with `defun's, e.g. \\[beginning-of-defun], deal
21143with nested `def' and `class' blocks. They take the innermost one as
21144current without distinguishing method and class definitions. Used multiple
21145times, they move over others at the same indentation level until they reach
21146the end of definitions at that level, when they move up a level.
21147\\<python-mode-map>
21148Colon is electric: it outdents the line if appropriate, e.g. for
21149an else statement. \\[python-backspace] at the beginning of an indented statement
21150deletes a level of indentation to close the current block; otherwise it
21151deletes a charcter backward. TAB indents the current line relative to
21152the preceding code. Successive TABs, with no intervening command, cycle
21153through the possibilities for indentation on the basis of enclosing blocks.
21154
21155\\[fill-paragraph] fills comments and multiline strings appropriately, but has no
21156effect outside them.
21157
21158Supports Eldoc mode (only for functions, using a Python process),
21159Info-Look and Imenu. In Outline minor mode, `class' and `def'
21160lines count as headers.
21161
21162\\{python-mode-map}
21163
21164\(fn)" t nil)
21165
21166(autoload (quote jython-mode) "python" "\
21167Major mode for editing Jython files.
21168Like `python-mode', but sets up parameters for Jython subprocesses.
21169Runs `jython-mode-hook' after `python-mode-hook'.
21170
21171\(fn)" t nil)
21172
21173;;;***
21174\f
21175;;;### (autoloads (quoted-printable-decode-region) "qp" "gnus/qp.el"
a5805c9d 21176;;;;;; (17279 27122))
390069bc
AS
21177;;; Generated autoloads from gnus/qp.el
21178
21179(autoload (quote quoted-printable-decode-region) "qp" "\
21180Decode quoted-printable in the region between FROM and TO, per RFC 2045.
21181If CODING-SYSTEM is non-nil, decode bytes into characters with that
21182coding-system.
21183
21184Interactively, you can supply the CODING-SYSTEM argument
21185with \\[universal-coding-system-argument].
21186
21187The CODING-SYSTEM argument is a historical hangover and is deprecated.
21188QP encodes raw bytes and should be decoded into raw bytes. Decoding
21189them into characters should be done separately.
21190
21191\(fn FROM TO &optional CODING-SYSTEM)" t nil)
21192
21193;;;***
21194\f
93548d2e 21195;;;### (autoloads (quail-update-leim-list-file quail-defrule-internal
54baed30 21196;;;;;; quail-defrule quail-install-decode-map quail-install-map
b442e70a 21197;;;;;; quail-define-rules quail-show-keyboard-layout quail-set-keyboard-layout
f383cd0d 21198;;;;;; quail-define-package quail-use-package quail-title) "quail"
a5805c9d 21199;;;;;; "international/quail.el" (17279 27196))
93548d2e
DL
21200;;; Generated autoloads from international/quail.el
21201
f383cd0d 21202(autoload (quote quail-title) "quail" "\
c595cc5f
MR
21203Return the title of the current Quail package.
21204
21205\(fn)" nil nil)
f383cd0d 21206
93548d2e
DL
21207(autoload (quote quail-use-package) "quail" "\
21208Start using Quail package PACKAGE-NAME.
ad648212
GM
21209The remaining arguments are libraries to be loaded before using the package.
21210
21211This activates input method defined by PACKAGE-NAME by running
c595cc5f
MR
21212`quail-activate', which see.
21213
21214\(fn PACKAGE-NAME &rest LIBRARIES)" nil nil)
93548d2e
DL
21215
21216(autoload (quote quail-define-package) "quail" "\
21217Define NAME as a new Quail package for input LANGUAGE.
21218TITLE is a string to be displayed at mode-line to indicate this package.
21219Optional arguments are GUIDANCE, DOCSTRING, TRANSLATION-KEYS,
21220 FORGET-LAST-SELECTION, DETERMINISTIC, KBD-TRANSLATE, SHOW-LAYOUT,
21221 CREATE-DECODE-MAP, MAXIMUM-SHORTEST, OVERLAY-PLIST,
21222 UPDATE-TRANSLATION-FUNCTION, CONVERSION-KEYS and SIMPLE.
21223
21224GUIDANCE specifies how a guidance string is shown in echo area.
21225If it is t, list of all possible translations for the current key is shown
21226 with the currently selected translation being highlighted.
21227If it is an alist, the element has the form (CHAR . STRING). Each character
21228 in the current key is searched in the list and the corresponding string is
21229 shown.
21230If it is nil, the current key is shown.
21231
b442e70a
MB
21232DOCSTRING is the documentation string of this package. The command
21233`describe-input-method' shows this string while replacing the form
21234\\=\\<VAR> in the string by the value of VAR. That value should be a
21235string. For instance, the form \\=\\<quail-translation-docstring> is
21236replaced by a description about how to select a translation from a
21237list of candidates.
93548d2e
DL
21238
21239TRANSLATION-KEYS specifies additional key bindings used while translation
21240region is active. It is an alist of single key character vs. corresponding
21241command to be called.
21242
21243FORGET-LAST-SELECTION non-nil means a selected translation is not kept
21244for the future to translate the same key. If this flag is nil, a
21245translation selected for a key is remembered so that it can be the
21246first candidate when the same key is entered later.
21247
21248DETERMINISTIC non-nil means the first candidate of translation is
21249selected automatically without allowing users to select another
21250translation for a key. In this case, unselected translations are of
21251no use for an interactive use of Quail but can be used by some other
21252programs. If this flag is non-nil, FORGET-LAST-SELECTION is also set
21253to t.
21254
21255KBD-TRANSLATE non-nil means input characters are translated from a
21256user's keyboard layout to the standard keyboard layout. See the
21257documentation of `quail-keyboard-layout' and
21258`quail-keyboard-layout-standard' for more detail.
21259
21260SHOW-LAYOUT non-nil means the `quail-help' command should show
21261the user's keyboard layout visually with translated characters.
21262If KBD-TRANSLATE is set, it is desirable to set also this flag unless
21263this package defines no translations for single character keys.
21264
21265CREATE-DECODE-MAP non-nil means decode map is also created. A decode
21266map is an alist of translations and corresponding original keys.
21267Although this map is not used by Quail itself, it can be used by some
21268other programs. For instance, Vietnamese supporting needs this map to
21269convert Vietnamese text to VIQR format which uses only ASCII
21270characters to represent Vietnamese characters.
21271
21272MAXIMUM-SHORTEST non-nil means break key sequence to get maximum
21273length of the shortest sequence. When we don't have a translation of
21274key \"..ABCD\" but have translations of \"..AB\" and \"CD..\", break
21275the key at \"..AB\" and start translation of \"CD..\". Hangul
21276packages, for instance, use this facility. If this flag is nil, we
21277break the key just at \"..ABC\" and start translation of \"D..\".
21278
21279OVERLAY-PLIST if non-nil is a property list put on an overlay which
21280covers Quail translation region.
21281
21282UPDATE-TRANSLATION-FUNCTION if non-nil is a function to call to update
21283the current translation region according to a new translation data. By
21284default, a translated text or a user's key sequence (if no translation
21285for it) is inserted.
21286
21287CONVERSION-KEYS specifies additional key bindings used while
21288conversion region is active. It is an alist of single key character
21289vs. corresponding command to be called.
21290
21291If SIMPLE is non-nil, then we do not alter the meanings of
21292commands such as C-f, C-b, C-n, C-p and TAB; they are treated as
c595cc5f
MR
21293non-Quail commands.
21294
21295\(fn NAME LANGUAGE TITLE &optional GUIDANCE DOCSTRING TRANSLATION-KEYS FORGET-LAST-SELECTION DETERMINISTIC KBD-TRANSLATE SHOW-LAYOUT CREATE-DECODE-MAP MAXIMUM-SHORTEST OVERLAY-PLIST UPDATE-TRANSLATION-FUNCTION CONVERSION-KEYS SIMPLE)" nil nil)
93548d2e
DL
21296
21297(autoload (quote quail-set-keyboard-layout) "quail" "\
21298Set the current keyboard layout to the same as keyboard KBD-TYPE.
21299
21300Since some Quail packages depends on a physical layout of keys (not
21301characters generated by them), those are created by assuming the
21302standard layout defined in `quail-keyboard-layout-standard'. This
21303function tells Quail system the layout of your keyboard so that what
c595cc5f
MR
21304you type is correctly handled.
21305
21306\(fn KBD-TYPE)" t nil)
93548d2e 21307
b442e70a
MB
21308(autoload (quote quail-show-keyboard-layout) "quail" "\
21309Show the physical layout of the keyboard type KEYBOARD-TYPE.
21310
21311The variable `quail-keyboard-layout-type' holds the currently selected
c595cc5f
MR
21312keyboard type.
21313
21314\(fn &optional KEYBOARD-TYPE)" t nil)
b442e70a 21315
93548d2e
DL
21316(autoload (quote quail-define-rules) "quail" "\
21317Define translation rules of the current Quail package.
21318Each argument is a list of KEY and TRANSLATION.
21319KEY is a string meaning a sequence of keystrokes to be translated.
21320TRANSLATION is a character, a string, a vector, a Quail map, or a function.
21321If it is a character, it is the sole translation of KEY.
21322If it is a string, each character is a candidate for the translation.
21323If it is a vector, each element (string or character) is a candidate
21324 for the translation.
21325In these cases, a key specific Quail map is generated and assigned to KEY.
21326
21327If TRANSLATION is a Quail map or a function symbol which returns a Quail map,
54baed30
GM
21328 it is used to handle KEY.
21329
21330The first argument may be an alist of annotations for the following
21331rules. Each element has the form (ANNOTATION . VALUE), where
21332ANNOTATION is a symbol indicating the annotation type. Currently
21333the following annotation types are supported.
21334
21335 append -- the value non-nil means that the following rules should
21336 be appended to the rules of the current Quail package.
21337
21338 face -- the value is a face to use for displaying TRANSLATIONs in
21339 candidate list.
21340
21341 advice -- the value is a function to call after one of RULES is
21342 selected. The function is called with one argument, the
21343 selected TRANSLATION string, after the TRANSLATION is
21344 inserted.
21345
21346 no-decode-map --- the value non-nil means that decoding map is not
c595cc5f
MR
21347 generated for the following translations.
21348
21349\(fn &rest RULES)" nil (quote macro))
93548d2e
DL
21350
21351(autoload (quote quail-install-map) "quail" "\
21352Install the Quail map MAP in the current Quail package.
5ec14d3c
KH
21353
21354Optional 2nd arg NAME, if non-nil, is a name of Quail package for
21355which to install MAP.
21356
c595cc5f
MR
21357The installed map can be referred by the function `quail-map'.
21358
21359\(fn MAP &optional NAME)" nil nil)
93548d2e 21360
54baed30
GM
21361(autoload (quote quail-install-decode-map) "quail" "\
21362Install the Quail decode map DECODE-MAP in the current Quail package.
21363
21364Optional 2nd arg NAME, if non-nil, is a name of Quail package for
21365which to install MAP.
21366
c595cc5f
MR
21367The installed decode map can be referred by the function `quail-decode-map'.
21368
21369\(fn DECODE-MAP &optional NAME)" nil nil)
54baed30 21370
93548d2e
DL
21371(autoload (quote quail-defrule) "quail" "\
21372Add one translation rule, KEY to TRANSLATION, in the current Quail package.
21373KEY is a string meaning a sequence of keystrokes to be translated.
21374TRANSLATION is a character, a string, a vector, a Quail map,
21375 a function, or a cons.
21376It it is a character, it is the sole translation of KEY.
21377If it is a string, each character is a candidate for the translation.
21378If it is a vector, each element (string or character) is a candidate
21379 for the translation.
21380If it is a cons, the car is one of the above and the cdr is a function
21381 to call when translating KEY (the return value is assigned to the
21382 variable `quail-current-data'). If the cdr part is not a function,
21383 the value itself is assigned to `quail-current-data'.
21384In these cases, a key specific Quail map is generated and assigned to KEY.
21385
21386If TRANSLATION is a Quail map or a function symbol which returns a Quail map,
21387 it is used to handle KEY.
21388
21389Optional 3rd argument NAME, if specified, says which Quail package
21390to define this translation rule in. The default is to define it in the
21391current Quail package.
21392
21393Optional 4th argument APPEND, if non-nil, appends TRANSLATION
c595cc5f
MR
21394to the current translations for KEY instead of replacing them.
21395
21396\(fn KEY TRANSLATION &optional NAME APPEND)" nil nil)
93548d2e
DL
21397
21398(autoload (quote quail-defrule-internal) "quail" "\
54baed30
GM
21399Define KEY as TRANS in a Quail map MAP.
21400
21401If Optional 4th arg APPEND is non-nil, TRANS is appended to the
21402current translations for KEY instead of replacing them.
21403
21404Optional 5th arg DECODE-MAP is a Quail decode map.
21405
21406Optional 6th arg PROPS is a property list annotating TRANS. See the
c595cc5f
MR
21407function `quail-define-rules' for the detail.
21408
21409\(fn KEY TRANS MAP &optional APPEND DECODE-MAP PROPS)" nil nil)
93548d2e
DL
21410
21411(autoload (quote quail-update-leim-list-file) "quail" "\
21412Update entries for Quail packages in `LEIM' list file in directory DIRNAME.
21413DIRNAME is a directory containing Emacs input methods;
21414normally, it should specify the `leim' subdirectory
21415of the Emacs source tree.
21416
21417It searches for Quail packages under `quail' subdirectory of DIRNAME,
21418and update the file \"leim-list.el\" in DIRNAME.
21419
21420When called from a program, the remaining arguments are additional
21421directory names to search for Quail packages under `quail' subdirectory
c595cc5f
MR
21422of each directory.
21423
21424\(fn DIRNAME &rest DIRNAMES)" t nil)
93548d2e
DL
21425
21426;;;***
21427\f
21428;;;### (autoloads (quickurl-list quickurl-list-mode quickurl-edit-urls
21429;;;;;; quickurl-browse-url-ask quickurl-browse-url quickurl-add-url
a5805c9d
KL
21430;;;;;; quickurl-ask quickurl) "quickurl" "net/quickurl.el" (17279
21431;;;;;; 27123))
a25bbe00 21432;;; Generated autoloads from net/quickurl.el
93548d2e
DL
21433
21434(defconst quickurl-reread-hook-postfix "\n;; Local Variables:\n;; eval: (progn (require 'quickurl) (add-hook 'local-write-file-hooks (lambda () (quickurl-read) nil)))\n;; End:\n" "\
21435Example `quickurl-postfix' text that adds a local variable to the
21436`quickurl-url-file' so that if you edit it by hand it will ensure that
21437`quickurl-urls' is updated with the new URL list.
21438
21439To make use of this do something like:
21440
21441 (setq quickurl-postfix quickurl-reread-hook-postfix)
21442
21443in your ~/.emacs (after loading/requiring quickurl).")
21444
b442e70a
MB
21445(autoload (quote quickurl) "quickurl" "\
21446Insert an URL based on LOOKUP.
21447
21448If not supplied LOOKUP is taken to be the word at point in the current
21449buffer, this default action can be modifed via
c595cc5f
MR
21450`quickurl-grab-lookup-function'.
21451
390069bc 21452\(fn &optional LOOKUP)" t nil)
93548d2e
DL
21453
21454(autoload (quote quickurl-ask) "quickurl" "\
c595cc5f
MR
21455Insert an URL, with `completing-read' prompt, based on LOOKUP.
21456
21457\(fn LOOKUP)" t nil)
93548d2e
DL
21458
21459(autoload (quote quickurl-add-url) "quickurl" "\
21460Allow the user to interactively add a new URL associated with WORD.
21461
21462See `quickurl-grab-url' for details on how the default word/url combination
c595cc5f
MR
21463is decided.
21464
21465\(fn WORD URL COMMENT)" t nil)
93548d2e 21466
b442e70a
MB
21467(autoload (quote quickurl-browse-url) "quickurl" "\
21468Browse the URL associated with LOOKUP.
21469
21470If not supplied LOOKUP is taken to be the word at point in the
21471current buffer, this default action can be modifed via
c595cc5f
MR
21472`quickurl-grab-lookup-function'.
21473
390069bc 21474\(fn &optional LOOKUP)" t nil)
93548d2e
DL
21475
21476(autoload (quote quickurl-browse-url-ask) "quickurl" "\
c595cc5f
MR
21477Browse the URL, with `completing-read' prompt, associated with LOOKUP.
21478
21479\(fn LOOKUP)" t nil)
93548d2e
DL
21480
21481(autoload (quote quickurl-edit-urls) "quickurl" "\
c595cc5f
MR
21482Pull `quickurl-url-file' into a buffer for hand editing.
21483
21484\(fn)" t nil)
93548d2e
DL
21485
21486(autoload (quote quickurl-list-mode) "quickurl" "\
21487A mode for browsing the quickurl URL list.
21488
21489The key bindings for `quickurl-list-mode' are:
21490
c595cc5f
MR
21491\\{quickurl-list-mode-map}
21492
21493\(fn)" t nil)
93548d2e
DL
21494
21495(autoload (quote quickurl-list) "quickurl" "\
c595cc5f
MR
21496Display `quickurl-list' as a formatted list using `quickurl-list-mode'.
21497
21498\(fn)" t nil)
93548d2e
DL
21499
21500;;;***
21501\f
a5805c9d 21502;;;### (autoloads (rcirc) "rcirc" "net/rcirc.el" (17379 30025))
175a97e4
EZ
21503;;; Generated autoloads from net/rcirc.el
21504
21505(autoload (quote rcirc) "rcirc" "\
21506Connect to IRC.
21507
21508If any of the the optional SERVER, PORT, NICK or CHANNELS are not
21509supplied, they are taken from the variables `rcirc-server',
59e085e0 21510`rcirc-port', `rcirc-nick', and `rcirc-startup-channels-alist',
175a97e4
EZ
21511respectively.
21512
21513\(fn &optional SERVER PORT NICK CHANNELS)" t nil)
21514
21515(defalias (quote irc) (quote rcirc))
21516
21517;;;***
21518\f
a5805c9d
KL
21519;;;### (autoloads (remote-compile) "rcompile" "net/rcompile.el" (17279
21520;;;;;; 27172))
a25bbe00 21521;;; Generated autoloads from net/rcompile.el
93548d2e
DL
21522
21523(autoload (quote remote-compile) "rcompile" "\
33c18c83 21524Compile the current buffer's directory on HOST. Log in as USER.
c595cc5f
MR
21525See \\[compile].
21526
21527\(fn HOST USER COMMAND)" t nil)
93548d2e
DL
21528
21529;;;***
21530\f
0ef3cc90 21531;;;### (autoloads (re-builder) "re-builder" "emacs-lisp/re-builder.el"
a5805c9d 21532;;;;;; (17279 27122))
d1221ea9
GM
21533;;; Generated autoloads from emacs-lisp/re-builder.el
21534
0ef3cc90 21535(defalias (quote regexp-builder) (quote re-builder))
be65bdd3 21536
d1221ea9 21537(autoload (quote re-builder) "re-builder" "\
be65bdd3 21538Construct a regexp interactively.
c595cc5f
MR
21539
21540\(fn)" t nil)
d1221ea9
GM
21541
21542;;;***
21543\f
a5805c9d 21544;;;### (autoloads (recentf-mode) "recentf" "recentf.el" (17319 2458))
7518ed7b
GM
21545;;; Generated autoloads from recentf.el
21546
0ad84a21 21547(defvar recentf-mode nil "\
2a55cd3a 21548Non-nil if Recentf mode is enabled.
bd02b8e0 21549See the command `recentf-mode' for a description of this minor-mode.
0ad84a21
MB
21550Setting this variable directly does not take effect;
21551use either \\[customize] or the function `recentf-mode'.")
21552
9c46b00a 21553(custom-autoload (quote recentf-mode) "recentf")
0ad84a21 21554
ac09dc1e
KL
21555(put (quote recentf-mode) (quote custom-set) (quote custom-set-minor-mode))
21556
abb2db1c
GM
21557(autoload (quote recentf-mode) "recentf" "\
21558Toggle recentf mode.
0ad84a21
MB
21559With prefix argument ARG, turn on if positive, otherwise off.
21560Returns non-nil if the new state is enabled.
abb2db1c 21561
0c72a1a2
MR
21562When recentf mode is enabled, it maintains a menu for visiting files
21563that were operated on recently.
c595cc5f 21564
175a97e4
EZ
21565\\{recentf-mode-map}
21566
c595cc5f 21567\(fn &optional ARG)" t nil)
abb2db1c 21568
7518ed7b
GM
21569;;;***
21570\f
b5c5b319 21571;;;### (autoloads (clear-rectangle string-insert-rectangle string-rectangle
fd0e837b
GM
21572;;;;;; delete-whitespace-rectangle open-rectangle insert-rectangle
21573;;;;;; yank-rectangle kill-rectangle extract-rectangle delete-extract-rectangle
a5805c9d
KL
21574;;;;;; delete-rectangle move-to-column-force) "rect" "rect.el" (17279
21575;;;;;; 27172))
93548d2e
DL
21576;;; Generated autoloads from rect.el
21577
21578(autoload (quote move-to-column-force) "rect" "\
8d8d8d4e 21579If COLUMN is within a multi-column character, replace it by spaces and tab.
7518ed7b 21580As for `move-to-column', passing anything but nil or t in FLAG will move to
c595cc5f
MR
21581the desired column only if the line is long enough.
21582
21583\(fn COLUMN &optional FLAG)" nil nil)
93548d2e 21584
87bb8d21
MR
21585(make-obsolete (quote move-to-column-force) (quote move-to-column) "21.2")
21586
93548d2e 21587(autoload (quote delete-rectangle) "rect" "\
7518ed7b
GM
21588Delete (don't save) text in the region-rectangle.
21589The same range of columns is deleted in each line starting with the
21590line where the region begins and ending with the line where the region
21591ends.
21592
21593When called from a program the rectangle's corners are START and END.
21594With a prefix (or a FILL) argument, also fill lines where nothing has
c595cc5f
MR
21595to be deleted.
21596
21597\(fn START END &optional FILL)" t nil)
93548d2e
DL
21598
21599(autoload (quote delete-extract-rectangle) "rect" "\
7518ed7b
GM
21600Delete the contents of the rectangle with corners at START and END.
21601Return it as a list of strings, one for each line of the rectangle.
21602
21603When called from a program the rectangle's corners are START and END.
21604With an optional FILL argument, also fill lines where nothing has to be
c595cc5f
MR
21605deleted.
21606
21607\(fn START END &optional FILL)" nil nil)
93548d2e
DL
21608
21609(autoload (quote extract-rectangle) "rect" "\
7518ed7b 21610Return the contents of the rectangle with corners at START and END.
c595cc5f
MR
21611Return it as a list of strings, one for each line of the rectangle.
21612
21613\(fn START END)" nil nil)
93548d2e
DL
21614
21615(autoload (quote kill-rectangle) "rect" "\
7518ed7b
GM
21616Delete the region-rectangle and save it as the last killed one.
21617
21618When called from a program the rectangle's corners are START and END.
21619You might prefer to use `delete-extract-rectangle' from a program.
21620
21621With a prefix (or a FILL) argument, also fill lines where nothing has to be
c595cc5f
MR
21622deleted.
21623
21624\(fn START END &optional FILL)" t nil)
93548d2e
DL
21625
21626(autoload (quote yank-rectangle) "rect" "\
c595cc5f
MR
21627Yank the last killed rectangle with upper left corner at point.
21628
21629\(fn)" t nil)
93548d2e
DL
21630
21631(autoload (quote insert-rectangle) "rect" "\
21632Insert text of RECTANGLE with upper left corner at point.
21633RECTANGLE's first line is inserted at point, its second
21634line is inserted at a point vertically under point, etc.
21635RECTANGLE should be a list of strings.
21636After this command, the mark is at the upper left corner
c595cc5f
MR
21637and point is at the lower right corner.
21638
21639\(fn RECTANGLE)" nil nil)
93548d2e
DL
21640
21641(autoload (quote open-rectangle) "rect" "\
7518ed7b
GM
21642Blank out the region-rectangle, shifting text right.
21643
93548d2e 21644The text previously in the region is not overwritten by the blanks,
7518ed7b
GM
21645but instead winds up to the right of the rectangle.
21646
21647When called from a program the rectangle's corners are START and END.
21648With a prefix (or a FILL) argument, fill with blanks even if there is no text
c595cc5f
MR
21649on the right side of the rectangle.
21650
21651\(fn START END &optional FILL)" t nil)
9e0211c9
MR
21652
21653(defalias (quote close-rectangle) (quote delete-whitespace-rectangle))
93548d2e
DL
21654
21655(autoload (quote delete-whitespace-rectangle) "rect" "\
21656Delete all whitespace following a specified column in each line.
21657The left edge of the rectangle specifies the position in each line
21658at which whitespace deletion should begin. On each line in the
7518ed7b
GM
21659rectangle, all continuous whitespace starting at that column is deleted.
21660
21661When called from a program the rectangle's corners are START and END.
c595cc5f
MR
21662With a prefix (or a FILL) argument, also fill too short lines.
21663
21664\(fn START END &optional FILL)" t nil)
93548d2e
DL
21665
21666(autoload (quote string-rectangle) "rect" "\
b5c5b319
GM
21667Replace rectangle contents with STRING on each line.
21668The length of STRING need not be the same as the rectangle width.
93548d2e 21669
c595cc5f
MR
21670Called from a program, takes three args; START, END and STRING.
21671
21672\(fn START END STRING)" t nil)
b5c5b319 21673
ec2bb97f
EZ
21674(defalias (quote replace-rectangle) (quote string-rectangle))
21675
b5c5b319
GM
21676(autoload (quote string-insert-rectangle) "rect" "\
21677Insert STRING on each line of region-rectangle, shifting text right.
21678
21679When called from a program, the rectangle's corners are START and END.
7518ed7b 21680The left edge of the rectangle specifies the column for insertion.
c595cc5f
MR
21681This command does not delete or overwrite any existing text.
21682
21683\(fn START END STRING)" t nil)
93548d2e
DL
21684
21685(autoload (quote clear-rectangle) "rect" "\
7518ed7b
GM
21686Blank out the region-rectangle.
21687The text previously in the region is overwritten with blanks.
21688
21689When called from a program the rectangle's corners are START and END.
21690With a prefix (or a FILL) argument, also fill with blanks the parts of the
c595cc5f
MR
21691rectangle which were empty.
21692
21693\(fn START END &optional FILL)" t nil)
93548d2e
DL
21694
21695;;;***
21696\f
a5805c9d
KL
21697;;;### (autoloads (refill-mode) "refill" "textmodes/refill.el" (17279
21698;;;;;; 27123))
0ad84a21
MB
21699;;; Generated autoloads from textmodes/refill.el
21700
21701(autoload (quote refill-mode) "refill" "\
21702Toggle Refill minor mode.
21703With prefix arg, turn Refill mode on iff arg is positive.
21704
21705When Refill mode is on, the current paragraph will be formatted when
21706changes are made within it. Self-inserting characters only cause
c595cc5f
MR
21707refilling if they would cause auto-filling.
21708
21709\(fn &optional ARG)" t nil)
0ad84a21
MB
21710
21711;;;***
21712\f
932a6f0f 21713;;;### (autoloads (reftex-reset-scanning-information reftex-mode
a5805c9d 21714;;;;;; turn-on-reftex) "reftex" "textmodes/reftex.el" (17279 27201))
93548d2e
DL
21715;;; Generated autoloads from textmodes/reftex.el
21716
21717(autoload (quote turn-on-reftex) "reftex" "\
c595cc5f
MR
21718Turn on RefTeX mode.
21719
21720\(fn)" nil nil)
93548d2e
DL
21721
21722(autoload (quote reftex-mode) "reftex" "\
21723Minor mode with distinct support for \\label, \\ref and \\cite in LaTeX.
21724
7518ed7b
GM
21725\\<reftex-mode-map>A Table of Contents of the entire (multifile) document with browsing
21726capabilities is available with `\\[reftex-toc]'.
21727
93548d2e
DL
21728Labels can be created with `\\[reftex-label]' and referenced with `\\[reftex-reference]'.
21729When referencing, you get a menu with all labels of a given type and
21730context of the label definition. The selected label is inserted as a
21731\\ref macro.
21732
21733Citations can be made with `\\[reftex-citation]' which will use a regular expression
21734to pull out a *formatted* list of articles from your BibTeX
21735database. The selected citation is inserted as a \\cite macro.
21736
7518ed7b
GM
21737Index entries can be made with `\\[reftex-index-selection-or-word]' which indexes the word at point
21738or the current selection. More general index entries are created with
21739`\\[reftex-index]'. `\\[reftex-display-index]' displays the compiled index.
93548d2e
DL
21740
21741Most command have help available on the fly. This help is accessed by
21742pressing `?' to any prompt mentioning this feature.
21743
21744Extensive documentation about RefTeX is available in Info format.
21745You can view this information with `\\[reftex-info]'.
21746
21747\\{reftex-mode-map}
21748Under X, these and other functions will also be available as `Ref' menu
21749on the menu bar.
21750
c595cc5f
MR
21751------------------------------------------------------------------------------
21752
21753\(fn &optional ARG)" t nil)
93548d2e 21754
932a6f0f
AS
21755(autoload (quote reftex-reset-scanning-information) "reftex" "\
21756Reset the symbols containing information from buffer scanning.
21757This enforces rescanning the buffer on next use.
0c867fa7
MS
21758
21759\(fn)" nil nil)
21760
7518ed7b
GM
21761;;;***
21762\f
21763;;;### (autoloads (reftex-citation) "reftex-cite" "textmodes/reftex-cite.el"
a5805c9d 21764;;;;;; (17279 27172))
7518ed7b
GM
21765;;; Generated autoloads from textmodes/reftex-cite.el
21766
21767(autoload (quote reftex-citation) "reftex-cite" "\
93548d2e
DL
21768Make a citation using BibTeX database files.
21769After prompting for a regular expression, scans the buffers with
21770bibtex entries (taken from the \\bibliography command) and offers the
38747ec6 21771matching entries for selection. The selected entry is formatted according
93548d2e
DL
21772to `reftex-cite-format' and inserted into the buffer.
21773
21774If NO-INSERT is non-nil, nothing is inserted, only the selected key returned.
21775
be65bdd3 21776FORMAT-KEY can be used to pre-select a citation format.
2936437d 21777
be65bdd3
AS
21778When called with a `C-u' prefix, prompt for optional arguments in
21779cite macros. When called with a numeric prefix, make that many
21780citations. When called with point inside the braces of a `\\cite'
21781command, it will add another key, ignoring the value of
21782`reftex-cite-format'.
93548d2e
DL
21783
21784The regular expression uses an expanded syntax: && is interpreted as `and'.
21785Thus, `aaaa&&bbb' matches entries which contain both `aaaa' and `bbb'.
21786While entering the regexp, completion on knows citation keys is possible.
c595cc5f
MR
21787`=' is a good regular expression to match all entries in all files.
21788
21789\(fn &optional NO-INSERT FORMAT-KEY)" t nil)
93548d2e
DL
21790
21791;;;***
21792\f
be65bdd3 21793;;;### (autoloads (reftex-isearch-minor-mode) "reftex-global" "textmodes/reftex-global.el"
a5805c9d 21794;;;;;; (17279 27172))
be65bdd3
AS
21795;;; Generated autoloads from textmodes/reftex-global.el
21796
be65bdd3
AS
21797(autoload (quote reftex-isearch-minor-mode) "reftex-global" "\
21798When on, isearch searches the whole document, not only the current file.
21799This minor mode allows isearch to search through all the files of
21800the current TeX document.
21801
21802With no argument, this command toggles
21803`reftex-isearch-minor-mode'. With a prefix argument ARG, turn
21804`reftex-isearch-minor-mode' on iff ARG is positive.
21805
21806\(fn &optional ARG)" t nil)
21807
21808;;;***
21809\f
2936437d 21810;;;### (autoloads (reftex-index-phrases-mode) "reftex-index" "textmodes/reftex-index.el"
a5805c9d 21811;;;;;; (17279 27172))
2936437d
GM
21812;;; Generated autoloads from textmodes/reftex-index.el
21813
21814(autoload (quote reftex-index-phrases-mode) "reftex-index" "\
21815Major mode for managing the Index phrases of a LaTeX document.
21816This buffer was created with RefTeX.
21817
21818To insert new phrases, use
21819 - `C-c \\' in the LaTeX document to copy selection or word
21820 - `\\[reftex-index-new-phrase]' in the phrases buffer.
21821
21822To index phrases use one of:
21823
21824\\[reftex-index-this-phrase] index current phrase
21825\\[reftex-index-next-phrase] index next phrase (or N with prefix arg)
21826\\[reftex-index-all-phrases] index all phrases
21827\\[reftex-index-remaining-phrases] index current and following phrases
21828\\[reftex-index-region-phrases] index the phrases in the region
21829
21830You can sort the phrases in this buffer with \\[reftex-index-sort-phrases].
21831To display information about the phrase at point, use \\[reftex-index-phrases-info].
21832
21833For more information see the RefTeX User Manual.
21834
21835Here are all local bindings.
21836
c595cc5f
MR
21837\\{reftex-index-phrases-map}
21838
21839\(fn)" t nil)
2936437d
GM
21840
21841;;;***
21842\f
0c867fa7 21843;;;### (autoloads (reftex-all-document-files) "reftex-parse" "textmodes/reftex-parse.el"
a5805c9d 21844;;;;;; (17279 27172))
0c867fa7
MS
21845;;; Generated autoloads from textmodes/reftex-parse.el
21846
21847(autoload (quote reftex-all-document-files) "reftex-parse" "\
21848Return a list of all files belonging to the current document.
21849When RELATIVE is non-nil, give file names relative to directory
21850of master file.
21851
21852\(fn &optional RELATIVE)" nil nil)
21853
21854;;;***
21855\f
93548d2e 21856;;;### (autoloads (regexp-opt-depth regexp-opt) "regexp-opt" "emacs-lisp/regexp-opt.el"
a5805c9d 21857;;;;;; (17279 27122))
93548d2e
DL
21858;;; Generated autoloads from emacs-lisp/regexp-opt.el
21859
21860(autoload (quote regexp-opt) "regexp-opt" "\
21861Return a regexp to match a string in STRINGS.
21862Each string should be unique in STRINGS and should not contain any regexps,
21863quoted or not. If optional PAREN is non-nil, ensure that the returned regexp
21864is enclosed by at least one regexp grouping construct.
21865The returned regexp is typically more efficient than the equivalent regexp:
21866
0ad84a21
MB
21867 (let ((open (if PAREN \"\\\\(\" \"\")) (close (if PAREN \"\\\\)\" \"\")))
21868 (concat open (mapconcat 'regexp-quote STRINGS \"\\\\|\") close))
21869
21870If PAREN is `words', then the resulting regexp is additionally surrounded
c595cc5f
MR
21871by \\=\\< and \\>.
21872
21873\(fn STRINGS &optional PAREN)" nil nil)
93548d2e
DL
21874
21875(autoload (quote regexp-opt-depth) "regexp-opt" "\
21876Return the depth of REGEXP.
be65bdd3 21877This means the number of non-shy regexp grouping constructs
d66d64bc 21878\(parenthesized expressions) in REGEXP.
c595cc5f
MR
21879
21880\(fn REGEXP)" nil nil)
93548d2e
DL
21881
21882;;;***
21883\f
a5805c9d 21884;;;### (autoloads (repeat) "repeat" "repeat.el" (17279 27123))
93548d2e
DL
21885;;; Generated autoloads from repeat.el
21886
21887(autoload (quote repeat) "repeat" "\
21888Repeat most recently executed command.
21889With prefix arg, apply new prefix arg to that command; otherwise, use
21890the prefix arg that was used before (if any).
21891This command is like the `.' command in the vi editor.
21892
21893If this command is invoked by a multi-character key sequence, it can then
21894be repeated by repeating the final character of that sequence. This behavior
c595cc5f
MR
21895can be modified by the global variable `repeat-on-final-keystroke'.
21896
21897\(fn REPEAT-ARG)" t nil)
93548d2e
DL
21898
21899;;;***
21900\f
21901;;;### (autoloads (reporter-submit-bug-report) "reporter" "mail/reporter.el"
a5805c9d 21902;;;;;; (17279 27123))
93548d2e
DL
21903;;; Generated autoloads from mail/reporter.el
21904
cded5ed3
GM
21905(autoload (quote reporter-submit-bug-report) "reporter" "\
21906Begin submitting a bug report via email.
21907
21908ADDRESS is the email address for the package's maintainer. PKGNAME is
21909the name of the package (if you want to include version numbers,
21910you must put them into PKGNAME before calling this function).
f75a0f7a
GM
21911Optional PRE-HOOKS and POST-HOOKS are passed to `reporter-dump-state'.
21912Optional SALUTATION is inserted at the top of the mail buffer,
21913and point is left after the salutation.
cded5ed3
GM
21914
21915VARLIST is the list of variables to dump (see `reporter-dump-state'
21916for details). The optional argument PRE-HOOKS and POST-HOOKS are
21917passed to `reporter-dump-state'. Optional argument SALUTATION is text
21918to be inserted at the top of the mail buffer; in that case, point is
21919left after that text.
21920
21921This function prompts for a summary if `reporter-prompt-for-summary-p'
21922is non-nil.
21923
21924This function does not send a message; it uses the given information
8d8d8d4e 21925to initialize a message, which the user can then edit and finally send
cded5ed3 21926\(or decline to send). The variable `mail-user-agent' controls which
c595cc5f
MR
21927mail-sending package is used for editing and sending the message.
21928
21929\(fn ADDRESS PKGNAME VARLIST &optional PRE-HOOKS POST-HOOKS SALUTATION)" nil nil)
93548d2e
DL
21930
21931;;;***
21932\f
21933;;;### (autoloads (reposition-window) "reposition" "reposition.el"
a5805c9d 21934;;;;;; (17279 27123))
93548d2e
DL
21935;;; Generated autoloads from reposition.el
21936
21937(autoload (quote reposition-window) "reposition" "\
21938Make the current definition and/or comment visible.
21939Further invocations move it to the top of the window or toggle the
21940visibility of comments that precede it.
21941 Point is left unchanged unless prefix ARG is supplied.
21942 If the definition is fully onscreen, it is moved to the top of the
21943window. If it is partly offscreen, the window is scrolled to get the
21944definition (or as much as will fit) onscreen, unless point is in a comment
21945which is also partly offscreen, in which case the scrolling attempts to get
21946as much of the comment onscreen as possible.
21947 Initially `reposition-window' attempts to make both the definition and
21948preceding comments visible. Further invocations toggle the visibility of
21949the comment lines.
21950 If ARG is non-nil, point may move in order to make the whole defun
21951visible (if only part could otherwise be made so), to make the defun line
21952visible (if point is in code and it could not be made so, or if only
21953comments, including the first comment line, are visible), or to make the
c595cc5f
MR
21954first comment line visible (if point is in a comment).
21955
21956\(fn &optional ARG)" t nil)
93548d2e
DL
21957 (define-key esc-map "\C-l" 'reposition-window)
21958
21959;;;***
21960\f
a5805c9d
KL
21961;;;### (autoloads (resume-suspend-hook) "resume" "resume.el" (17279
21962;;;;;; 27123))
93548d2e
DL
21963;;; Generated autoloads from resume.el
21964
21965(autoload (quote resume-suspend-hook) "resume" "\
c595cc5f
MR
21966Clear out the file used for transmitting args when Emacs resumes.
21967
21968\(fn)" nil nil)
93548d2e
DL
21969
21970;;;***
21971\f
4c6bc877 21972;;;### (autoloads (global-reveal-mode reveal-mode) "reveal" "reveal.el"
a5805c9d 21973;;;;;; (17356 16046))
4c6bc877
MR
21974;;; Generated autoloads from reveal.el
21975
21976(autoload (quote reveal-mode) "reveal" "\
21977Toggle Reveal mode on or off.
21978Reveal mode renders invisible text around point visible again.
21979
21980Interactively, with no prefix argument, toggle the mode.
21981With universal prefix ARG (or if ARG is nil) turn mode on.
c595cc5f
MR
21982With zero or negative ARG turn mode off.
21983
21984\(fn &optional ARG)" t nil)
4c6bc877
MR
21985
21986(defvar global-reveal-mode nil "\
21987Non-nil if Global-Reveal mode is enabled.
21988See the command `global-reveal-mode' for a description of this minor-mode.
21989Setting this variable directly does not take effect;
21990use either \\[customize] or the function `global-reveal-mode'.")
21991
9c46b00a 21992(custom-autoload (quote global-reveal-mode) "reveal")
4c6bc877 21993
ac09dc1e
KL
21994(put (quote global-reveal-mode) (quote custom-set) (quote custom-set-minor-mode))
21995
4c6bc877
MR
21996(autoload (quote global-reveal-mode) "reveal" "\
21997Toggle Reveal mode in all buffers on or off.
21998Reveal mode renders invisible text around point visible again.
21999
22000Interactively, with no prefix argument, toggle the mode.
22001With universal prefix ARG (or if ARG is nil) turn mode on.
c595cc5f
MR
22002With zero or negative ARG turn mode off.
22003
22004\(fn &optional ARG)" t nil)
4c6bc877
MR
22005
22006;;;***
22007\f
93548d2e 22008;;;### (autoloads (make-ring ring-p) "ring" "emacs-lisp/ring.el"
a5805c9d 22009;;;;;; (17279 27122))
93548d2e
DL
22010;;; Generated autoloads from emacs-lisp/ring.el
22011
22012(autoload (quote ring-p) "ring" "\
0c867fa7 22013Return t if X is a ring; nil otherwise.
c595cc5f
MR
22014
22015\(fn X)" nil nil)
93548d2e
DL
22016
22017(autoload (quote make-ring) "ring" "\
c595cc5f
MR
22018Make a ring that can contain SIZE elements.
22019
22020\(fn SIZE)" nil nil)
93548d2e
DL
22021
22022;;;***
22023\f
a5805c9d 22024;;;### (autoloads (rlogin) "rlogin" "net/rlogin.el" (17279 27123))
a25bbe00 22025;;; Generated autoloads from net/rlogin.el
93548d2e
DL
22026 (add-hook 'same-window-regexps "^\\*rlogin-.*\\*\\(\\|<[0-9]+>\\)")
22027
22028(autoload (quote rlogin) "rlogin" "\
22029Open a network login connection via `rlogin' with args INPUT-ARGS.
22030INPUT-ARGS should start with a host name; it may also contain
22031other arguments for `rlogin'.
22032
22033Input is sent line-at-a-time to the remote connection.
22034
22035Communication with the remote host is recorded in a buffer `*rlogin-HOST*'
22036\(or `*rlogin-USER@HOST*' if the remote username differs).
22037If a prefix argument is given and the buffer `*rlogin-HOST*' already exists,
22038a new buffer with a different connection will be made.
22039
22040When called from a program, if the optional second argument BUFFER is
22041a string or buffer, it specifies the buffer to use.
22042
22043The variable `rlogin-program' contains the name of the actual program to
22044run. It can be a relative or absolute path.
22045
22046The variable `rlogin-explicit-args' is a list of arguments to give to
22047the rlogin when starting. They are added after any arguments given in
22048INPUT-ARGS.
22049
22050If the default value of `rlogin-directory-tracking-mode' is t, then the
22051default directory in that buffer is set to a remote (FTP) file name to
22052access your home directory on the remote machine. Occasionally this causes
22053an error, if you cannot access the home directory on that machine. This
22054error is harmless as long as you don't try to use that default directory.
22055
22056If `rlogin-directory-tracking-mode' is neither t nor nil, then the default
22057directory is initially set up to your (local) home directory.
22058This is useful if the remote machine and your local machine
22059share the same files via NFS. This is the default.
22060
22061If you wish to change directory tracking styles during a session, use the
22062function `rlogin-directory-tracking-mode' rather than simply setting the
c595cc5f
MR
22063variable.
22064
22065\(fn INPUT-ARGS &optional BUFFER)" t nil)
93548d2e
DL
22066
22067;;;***
22068\f
0ef3cc90
LT
22069;;;### (autoloads (rmail-set-remote-password rmail-input rmail-mode
22070;;;;;; rmail rmail-enable-mime rmail-show-message-hook rmail-confirm-expunge
22071;;;;;; rmail-secondary-file-regexp rmail-secondary-file-directory
a1b8d58b
GM
22072;;;;;; rmail-mail-new-frame rmail-primary-inbox-list rmail-delete-after-output
22073;;;;;; rmail-highlight-face rmail-highlighted-headers rmail-retry-ignored-headers
be65bdd3 22074;;;;;; rmail-displayed-headers rmail-ignored-headers rmail-dont-reply-to-names
a5805c9d
KL
22075;;;;;; rmail-movemail-variant-p) "rmail" "mail/rmail.el" (17374
22076;;;;;; 21275))
93548d2e
DL
22077;;; Generated autoloads from mail/rmail.el
22078
be65bdd3
AS
22079(autoload (quote rmail-movemail-variant-p) "rmail" "\
22080Return t if the current movemail variant is any of VARIANTS.
22081Currently known variants are 'emacs and 'mailutils.
22082
22083\(fn &rest VARIANTS)" nil nil)
22084
93548d2e 22085(defvar rmail-dont-reply-to-names nil "\
44d38e8d
SM
22086*A regexp specifying addresses to prune from a reply message.
22087A value of nil means exclude your own email address as an address
93548d2e
DL
22088plus whatever is specified by `rmail-default-dont-reply-to-names'.")
22089
9c46b00a
MR
22090(custom-autoload (quote rmail-dont-reply-to-names) "rmail")
22091
390069bc
AS
22092(defvar rmail-default-dont-reply-to-names "\\`info-" "\
22093A regular expression specifying part of the default value of the
22094variable `rmail-dont-reply-to-names', for when the user does not set
93548d2e 22095`rmail-dont-reply-to-names' explicitly. (The other part of the default
44d38e8d 22096value is the user's email address and name.)
93548d2e
DL
22097It is useful to set this variable in the site customization file.")
22098
fbf34973 22099(defvar rmail-ignored-headers (concat "^via:\\|^mail-from:\\|^origin:\\|^references:\\|^sender:" "\\|^status:\\|^received:\\|^x400-originator:\\|^x400-recipients:" "\\|^x400-received:\\|^x400-mts-identifier:\\|^x400-content-type:" "\\|^\\(resent-\\|\\)message-id:\\|^summary-line:\\|^resent-date:" "\\|^nntp-posting-host:\\|^path:\\|^x-char.*:\\|^x-face:\\|^face:" "\\|^x-mailer:\\|^delivered-to:\\|^lines:" "\\|^content-transfer-encoding:\\|^x-coding-system:" "\\|^return-path:\\|^errors-to:\\|^return-receipt-to:" "\\|^precedence:\\|^list-help:\\|^list-post:\\|^list-subscribe:" "\\|^list-id:\\|^list-unsubscribe:\\|^list-archive:" "\\|^content-length:\\|^nntp-posting-date:\\|^user-agent" "\\|^importance:\\|^envelope-to:\\|^delivery-date\\|^openpgp:" "\\|^mbox-line:\\|^cancel-lock:" "\\|^resent-face:\\|^resent-x.*:\\|^resent-organization:\\|^resent-openpgp:" "\\|^x-.*:") "\
93548d2e 22100*Regexp to match header fields that Rmail should normally hide.
fbf34973 22101\(See also `rmail-nonignored-headers', which overrides this regexp.)
93548d2e
DL
22102This variable is used for reformatting the message header,
22103which normally happens once for each message,
22104when you view the message for the first time in Rmail.
22105To make a change in this variable take effect
22106for a message that you have already viewed,
22107go to that message and type \\[rmail-toggle-header] twice.")
22108
9c46b00a
MR
22109(custom-autoload (quote rmail-ignored-headers) "rmail")
22110
93548d2e
DL
22111(defvar rmail-displayed-headers nil "\
22112*Regexp to match Header fields that Rmail should display.
22113If nil, display all header fields except those matched by
22114`rmail-ignored-headers'.")
22115
9c46b00a
MR
22116(custom-autoload (quote rmail-displayed-headers) "rmail")
22117
f383cd0d 22118(defvar rmail-retry-ignored-headers "^x-authentication-warning:" "\
93548d2e
DL
22119*Headers that should be stripped when retrying a failed message.")
22120
9c46b00a
MR
22121(custom-autoload (quote rmail-retry-ignored-headers) "rmail")
22122
93548d2e
DL
22123(defvar rmail-highlighted-headers "^From:\\|^Subject:" "\
22124*Regexp to match Header fields that Rmail should normally highlight.
22125A value of nil means don't highlight.
22126See also `rmail-highlight-face'.")
22127
9c46b00a
MR
22128(custom-autoload (quote rmail-highlighted-headers) "rmail")
22129
93548d2e
DL
22130(defvar rmail-highlight-face nil "\
22131*Face used by Rmail for highlighting headers.")
22132
9c46b00a
MR
22133(custom-autoload (quote rmail-highlight-face) "rmail")
22134
93548d2e
DL
22135(defvar rmail-delete-after-output nil "\
22136*Non-nil means automatically delete a message that is copied to a file.")
22137
9c46b00a
MR
22138(custom-autoload (quote rmail-delete-after-output) "rmail")
22139
93548d2e
DL
22140(defvar rmail-primary-inbox-list nil "\
22141*List of files which are inboxes for user's primary mail file `~/RMAIL'.
27a99a7c 22142nil means the default, which is (\"/usr/spool/mail/$USER\")
93548d2e
DL
22143\(the name varies depending on the operating system,
22144and the value of the environment variable MAIL overrides it).")
22145
9c46b00a
MR
22146(custom-autoload (quote rmail-primary-inbox-list) "rmail")
22147
93548d2e 22148(defvar rmail-mail-new-frame nil "\
390069bc
AS
22149*Non-nil means Rmail makes a new frame for composing outgoing mail.
22150This is handy if you want to preserve the window configuration of
22151the frame where you have the RMAIL buffer displayed.")
93548d2e 22152
9c46b00a
MR
22153(custom-autoload (quote rmail-mail-new-frame) "rmail")
22154
93548d2e
DL
22155(defvar rmail-secondary-file-directory "~/" "\
22156*Directory for additional secondary Rmail files.")
22157
9c46b00a
MR
22158(custom-autoload (quote rmail-secondary-file-directory) "rmail")
22159
93548d2e
DL
22160(defvar rmail-secondary-file-regexp "\\.xmail$" "\
22161*Regexp for which files are secondary Rmail files.")
22162
9c46b00a
MR
22163(custom-autoload (quote rmail-secondary-file-regexp) "rmail")
22164
6c083b4c 22165(defvar rmail-confirm-expunge (quote y-or-n-p) "\
3b55acc9
GM
22166*Whether and how to ask for confirmation before expunging deleted messages.")
22167
9c46b00a
MR
22168(custom-autoload (quote rmail-confirm-expunge) "rmail")
22169
93548d2e
DL
22170(defvar rmail-mode-hook nil "\
22171List of functions to call when Rmail is invoked.")
22172
22173(defvar rmail-get-new-mail-hook nil "\
22174List of functions to call when Rmail has retrieved new mail.")
22175
22176(defvar rmail-show-message-hook nil "\
22177List of functions to call when Rmail displays a message.")
22178
9c46b00a
MR
22179(custom-autoload (quote rmail-show-message-hook) "rmail")
22180
d054101f
GM
22181(defvar rmail-quit-hook nil "\
22182List of functions to call when quitting out of Rmail.")
22183
93548d2e
DL
22184(defvar rmail-delete-message-hook nil "\
22185List of functions to call when Rmail deletes a message.
22186When the hooks are called, the message has been marked deleted but is
22187still the current message in the Rmail buffer.")
22188
22189(defvar rmail-file-coding-system nil "\
22190Coding system used in RMAIL file.
22191
22192This is set to nil by default.")
22193
22194(defvar rmail-enable-mime nil "\
22195*If non-nil, RMAIL uses MIME feature.
22196If the value is t, RMAIL automatically shows MIME decoded message.
22197If the value is neither t nor nil, RMAIL does not show MIME decoded message
c1a055ca
EZ
22198until a user explicitly requires it.
22199
22200Even if the value is non-nil, you can't use MIME feature
22201if the feature specified by `rmail-mime-feature' is not available
22202in your session.")
93548d2e 22203
9c46b00a
MR
22204(custom-autoload (quote rmail-enable-mime) "rmail")
22205
93548d2e 22206(defvar rmail-show-mime-function nil "\
b5c5b319
GM
22207Function to show MIME decoded message of RMAIL file.
22208This function is called when `rmail-enable-mime' is non-nil.
22209It is called with no argument.")
22210
22211(defvar rmail-insert-mime-forwarded-message-function nil "\
22212Function to insert a message in MIME format so it can be forwarded.
9e0211c9 22213This function is called if `rmail-enable-mime' or
8d8d8d4e 22214`rmail-enable-mime-composing' is non-nil.
b5c5b319
GM
22215It is called with one argument FORWARD-BUFFER, which is a
22216buffer containing the message to forward. The current buffer
22217is the outgoing mail buffer.")
22218
09938b67
GM
22219(defvar rmail-insert-mime-resent-message-function nil "\
22220Function to insert a message in MIME format so it can be resent.
22221This function is called if `rmail-enable-mime' is non-nil.
22222It is called with one argument FORWARD-BUFFER, which is a
22223buffer containing the message to forward. The current buffer
22224is the outgoing mail buffer.")
22225
b5c5b319
GM
22226(defvar rmail-search-mime-message-function nil "\
22227Function to check if a regexp matches a MIME message.
22228This function is called if `rmail-enable-mime' is non-nil.
22229It is called with two arguments MSG and REGEXP, where
22230MSG is the message number, REGEXP is the regular expression.")
22231
22232(defvar rmail-search-mime-header-function nil "\
22233Function to check if a regexp matches a header of MIME message.
22234This function is called if `rmail-enable-mime' is non-nil.
296d7669 22235It is called with three arguments MSG, REGEXP, and LIMIT, where
b5c5b319
GM
22236MSG is the message number,
22237REGEXP is the regular expression,
22238LIMIT is the position specifying the end of header.")
93548d2e
DL
22239
22240(defvar rmail-mime-feature (quote rmail-mime) "\
22241Feature to require to load MIME support in Rmail.
22242When starting Rmail, if `rmail-enable-mime' is non-nil,
c1a055ca
EZ
22243this feature is required with `require'.
22244
22245The default value is `rmail-mime'. This feature is provided by
22246the rmail-mime package available at <http://www.m17n.org/rmail-mime/>.")
93548d2e
DL
22247
22248(defvar rmail-decode-mime-charset t "\
22249*Non-nil means a message is decoded by MIME's charset specification.
22250If this variable is nil, or the message has not MIME specification,
22251the message is decoded as normal way.
22252
22253If the variable `rmail-enable-mime' is non-nil, this variables is
22254ignored, and all the decoding work is done by a feature specified by
22255the variable `rmail-mime-feature'.")
22256
390069bc 22257(defvar rmail-mime-charset-pattern "^content-type:[ ]*text/plain;[ \n]*charset=\"?\\([^ \n\";]+\\)\"?" "\
93548d2e
DL
22258Regexp to match MIME-charset specification in a header of message.
22259The first parenthesized expression should match the MIME-charset name.")
22260
22261(autoload (quote rmail) "rmail" "\
22262Read and edit incoming mail.
22263Moves messages into file named by `rmail-file-name' (a babyl format file)
22264 and edits that file in RMAIL Mode.
22265Type \\[describe-mode] once editing that file, for a list of RMAIL commands.
22266
22267May be called with file name as argument; then performs rmail editing on
22268that file, but does not copy any new mail into the file.
22269Interactively, if you supply a prefix argument, then you
22270have a chance to specify a file name with the minibuffer.
22271
c595cc5f
MR
22272If `rmail-display-summary' is non-nil, make a summary for this RMAIL file.
22273
22274\(fn &optional FILE-NAME-ARG)" t nil)
93548d2e
DL
22275
22276(autoload (quote rmail-mode) "rmail" "\
22277Rmail Mode is used by \\<rmail-mode-map>\\[rmail] for editing Rmail files.
22278All normal editing commands are turned off.
22279Instead, these commands are available:
22280
fbf34973
KL
22281\\[rmail-beginning-of-message] Move point to front of this message.
22282\\[rmail-end-of-message] Move point to bottom of this message.
93548d2e
DL
22283\\[scroll-up] Scroll to next screen of this message.
22284\\[scroll-down] Scroll to previous screen of this message.
22285\\[rmail-next-undeleted-message] Move to Next non-deleted message.
22286\\[rmail-previous-undeleted-message] Move to Previous non-deleted message.
22287\\[rmail-next-message] Move to Next message whether deleted or not.
22288\\[rmail-previous-message] Move to Previous message whether deleted or not.
22289\\[rmail-first-message] Move to the first message in Rmail file.
22290\\[rmail-last-message] Move to the last message in Rmail file.
22291\\[rmail-show-message] Jump to message specified by numeric position in file.
22292\\[rmail-search] Search for string and show message it is found in.
22293\\[rmail-delete-forward] Delete this message, move to next nondeleted.
22294\\[rmail-delete-backward] Delete this message, move to previous nondeleted.
22295\\[rmail-undelete-previous-message] Undelete message. Tries current message, then earlier messages
22296 till a deleted message is found.
22297\\[rmail-edit-current-message] Edit the current message. \\[rmail-cease-edit] to return to Rmail.
22298\\[rmail-expunge] Expunge deleted messages.
22299\\[rmail-expunge-and-save] Expunge and save the file.
22300\\[rmail-quit] Quit Rmail: expunge, save, then switch to another buffer.
22301\\[save-buffer] Save without expunging.
22302\\[rmail-get-new-mail] Move new mail from system spool directory into this file.
22303\\[rmail-mail] Mail a message (same as \\[mail-other-window]).
22304\\[rmail-continue] Continue composing outgoing message started before.
22305\\[rmail-reply] Reply to this message. Like \\[rmail-mail] but initializes some fields.
22306\\[rmail-retry-failure] Send this message again. Used on a mailer failure message.
22307\\[rmail-forward] Forward this message to another user.
22308\\[rmail-output-to-rmail-file] Output this message to an Rmail file (append it).
22309\\[rmail-output] Output this message to a Unix-format mail file (append it).
22310\\[rmail-output-body-to-file] Save message body to a file. Default filename comes from Subject line.
22311\\[rmail-input] Input Rmail file. Run Rmail on that file.
22312\\[rmail-add-label] Add label to message. It will be displayed in the mode line.
22313\\[rmail-kill-label] Kill label. Remove a label from current message.
22314\\[rmail-next-labeled-message] Move to Next message with specified label
22315 (label defaults to last one specified).
22316 Standard labels: filed, unseen, answered, forwarded, deleted.
22317 Any other label is present only if you add it with \\[rmail-add-label].
22318\\[rmail-previous-labeled-message] Move to Previous message with specified label
22319\\[rmail-summary] Show headers buffer, with a one line summary of each message.
22320\\[rmail-summary-by-labels] Summarize only messages with particular label(s).
22321\\[rmail-summary-by-recipients] Summarize only messages with particular recipient(s).
22322\\[rmail-summary-by-regexp] Summarize only messages with particular regexp(s).
22323\\[rmail-summary-by-topic] Summarize only messages with subject line regexp(s).
c595cc5f
MR
22324\\[rmail-toggle-header] Toggle display of complete header.
22325
22326\(fn)" t nil)
93548d2e
DL
22327
22328(autoload (quote rmail-input) "rmail" "\
c595cc5f
MR
22329Run Rmail on file FILENAME.
22330
22331\(fn FILENAME)" t nil)
93548d2e 22332
be65bdd3
AS
22333(autoload (quote rmail-set-remote-password) "rmail" "\
22334Set PASSWORD to be used for retrieving mail from a POP or IMAP server.
c595cc5f
MR
22335
22336\(fn PASSWORD)" t nil)
93548d2e
DL
22337
22338;;;***
22339\f
22340;;;### (autoloads (rmail-edit-current-message) "rmailedit" "mail/rmailedit.el"
a5805c9d 22341;;;;;; (17279 27123))
93548d2e
DL
22342;;; Generated autoloads from mail/rmailedit.el
22343
22344(autoload (quote rmail-edit-current-message) "rmailedit" "\
c595cc5f
MR
22345Edit the contents of this message.
22346
22347\(fn)" t nil)
93548d2e
DL
22348
22349;;;***
22350\f
22351;;;### (autoloads (rmail-next-labeled-message rmail-previous-labeled-message
22352;;;;;; rmail-read-label rmail-kill-label rmail-add-label) "rmailkwd"
a5805c9d 22353;;;;;; "mail/rmailkwd.el" (17279 27123))
93548d2e
DL
22354;;; Generated autoloads from mail/rmailkwd.el
22355
22356(autoload (quote rmail-add-label) "rmailkwd" "\
22357Add LABEL to labels associated with current RMAIL message.
c595cc5f
MR
22358Completion is performed over known labels when reading.
22359
22360\(fn STRING)" t nil)
93548d2e
DL
22361
22362(autoload (quote rmail-kill-label) "rmailkwd" "\
22363Remove LABEL from labels associated with current RMAIL message.
c595cc5f
MR
22364Completion is performed over known labels when reading.
22365
22366\(fn STRING)" t nil)
93548d2e 22367
c595cc5f
MR
22368(autoload (quote rmail-read-label) "rmailkwd" "\
22369Not documented
22370
22371\(fn PROMPT)" nil nil)
93548d2e
DL
22372
22373(autoload (quote rmail-previous-labeled-message) "rmailkwd" "\
22374Show previous message with one of the labels LABELS.
22375LABELS should be a comma-separated list of label names.
22376If LABELS is empty, the last set of labels specified is used.
c595cc5f
MR
22377With prefix argument N moves backward N messages with these labels.
22378
22379\(fn N LABELS)" t nil)
93548d2e
DL
22380
22381(autoload (quote rmail-next-labeled-message) "rmailkwd" "\
22382Show next message with one of the labels LABELS.
22383LABELS should be a comma-separated list of label names.
22384If LABELS is empty, the last set of labels specified is used.
c595cc5f
MR
22385With prefix argument N moves forward N messages with these labels.
22386
22387\(fn N LABELS)" t nil)
93548d2e
DL
22388
22389;;;***
22390\f
22391;;;### (autoloads (set-rmail-inbox-list) "rmailmsc" "mail/rmailmsc.el"
a5805c9d 22392;;;;;; (17279 27123))
93548d2e
DL
22393;;; Generated autoloads from mail/rmailmsc.el
22394
22395(autoload (quote set-rmail-inbox-list) "rmailmsc" "\
22396Set the inbox list of the current RMAIL file to FILE-NAME.
22397You can specify one file name, or several names separated by commas.
c595cc5f
MR
22398If FILE-NAME is empty, remove any existing inbox list.
22399
22400\(fn FILE-NAME)" t nil)
93548d2e
DL
22401
22402;;;***
22403\f
22404;;;### (autoloads (rmail-output-body-to-file rmail-output rmail-fields-not-to-output
22405;;;;;; rmail-output-to-rmail-file rmail-output-file-alist) "rmailout"
a5805c9d 22406;;;;;; "mail/rmailout.el" (17374 21423))
93548d2e
DL
22407;;; Generated autoloads from mail/rmailout.el
22408
22409(defvar rmail-output-file-alist nil "\
22410*Alist matching regexps to suggested output Rmail files.
22411This is a list of elements of the form (REGEXP . NAME-EXP).
22412The suggestion is taken if REGEXP matches anywhere in the message buffer.
22413NAME-EXP may be a string constant giving the file name to use,
22414or more generally it may be any kind of expression that returns
22415a file name as a string.")
22416
9c46b00a
MR
22417(custom-autoload (quote rmail-output-file-alist) "rmailout")
22418
93548d2e
DL
22419(autoload (quote rmail-output-to-rmail-file) "rmailout" "\
22420Append the current message to an Rmail file named FILE-NAME.
22421If the file does not exist, ask if it should be created.
22422If file is being visited, the message is appended to the Emacs
22423buffer visiting that file.
22424If the file exists and is not an Rmail file, the message is
22425appended in inbox format, the same way `rmail-output' does it.
22426
22427The default file name comes from `rmail-default-rmail-file',
22428which is updated to the name you use in this command.
22429
59e085e0 22430A prefix argument COUNT says to output that many consecutive messages,
f75a0f7a
GM
22431starting with the current one. Deleted messages are skipped and don't count.
22432
59e085e0
KL
22433If the optional argument STAY is non-nil, then leave the last filed
22434message up instead of moving forward to the next non-deleted message.
c595cc5f
MR
22435
22436\(fn FILE-NAME &optional COUNT STAY)" t nil)
93548d2e
DL
22437
22438(defvar rmail-fields-not-to-output nil "\
22439*Regexp describing fields to exclude when outputting a message to a file.")
22440
9c46b00a
MR
22441(custom-autoload (quote rmail-fields-not-to-output) "rmailout")
22442
93548d2e
DL
22443(autoload (quote rmail-output) "rmailout" "\
22444Append this message to system-inbox-format mail file named FILE-NAME.
59e085e0 22445A prefix argument COUNT says to output that many consecutive messages,
93548d2e 22446starting with the current one. Deleted messages are skipped and don't count.
59e085e0 22447When called from lisp code, COUNT may be omitted and defaults to 1.
93548d2e
DL
22448
22449If the pruned message header is shown on the current message, then
22450messages will be appended with pruned headers; otherwise, messages
22451will be appended with their original headers.
22452
22453The default file name comes from `rmail-default-file',
22454which is updated to the name you use in this command.
22455
22456The optional third argument NOATTRIBUTE, if non-nil, says not
22457to set the `filed' attribute, and not to display a message.
22458
c595cc5f
MR
22459The optional fourth argument FROM-GNUS is set when called from GNUS.
22460
22461\(fn FILE-NAME &optional COUNT NOATTRIBUTE FROM-GNUS)" t nil)
93548d2e
DL
22462
22463(autoload (quote rmail-output-body-to-file) "rmailout" "\
22464Write this message body to the file FILE-NAME.
c595cc5f
MR
22465FILE-NAME defaults, interactively, from the Subject field of the message.
22466
22467\(fn FILE-NAME)" t nil)
93548d2e
DL
22468
22469;;;***
22470\f
b5c5b319 22471;;;### (autoloads (rmail-sort-by-labels rmail-sort-by-lines rmail-sort-by-correspondent
93548d2e 22472;;;;;; rmail-sort-by-recipient rmail-sort-by-author rmail-sort-by-subject
a5805c9d
KL
22473;;;;;; rmail-sort-by-date) "rmailsort" "mail/rmailsort.el" (17279
22474;;;;;; 27123))
93548d2e
DL
22475;;; Generated autoloads from mail/rmailsort.el
22476
22477(autoload (quote rmail-sort-by-date) "rmailsort" "\
22478Sort messages of current Rmail file by date.
c595cc5f
MR
22479If prefix argument REVERSE is non-nil, sort them in reverse order.
22480
22481\(fn REVERSE)" t nil)
93548d2e
DL
22482
22483(autoload (quote rmail-sort-by-subject) "rmailsort" "\
22484Sort messages of current Rmail file by subject.
c595cc5f
MR
22485If prefix argument REVERSE is non-nil, sort them in reverse order.
22486
22487\(fn REVERSE)" t nil)
93548d2e
DL
22488
22489(autoload (quote rmail-sort-by-author) "rmailsort" "\
22490Sort messages of current Rmail file by author.
c595cc5f
MR
22491If prefix argument REVERSE is non-nil, sort them in reverse order.
22492
22493\(fn REVERSE)" t nil)
93548d2e
DL
22494
22495(autoload (quote rmail-sort-by-recipient) "rmailsort" "\
22496Sort messages of current Rmail file by recipient.
c595cc5f
MR
22497If prefix argument REVERSE is non-nil, sort them in reverse order.
22498
22499\(fn REVERSE)" t nil)
93548d2e
DL
22500
22501(autoload (quote rmail-sort-by-correspondent) "rmailsort" "\
22502Sort messages of current Rmail file by other correspondent.
c595cc5f
MR
22503If prefix argument REVERSE is non-nil, sort them in reverse order.
22504
22505\(fn REVERSE)" t nil)
93548d2e
DL
22506
22507(autoload (quote rmail-sort-by-lines) "rmailsort" "\
22508Sort messages of current Rmail file by number of lines.
c595cc5f
MR
22509If prefix argument REVERSE is non-nil, sort them in reverse order.
22510
22511\(fn REVERSE)" t nil)
93548d2e 22512
b5c5b319 22513(autoload (quote rmail-sort-by-labels) "rmailsort" "\
93548d2e
DL
22514Sort messages of current Rmail file by labels.
22515If prefix argument REVERSE is non-nil, sort them in reverse order.
c595cc5f
MR
22516KEYWORDS is a comma-separated list of labels.
22517
22518\(fn REVERSE LABELS)" t nil)
93548d2e
DL
22519
22520;;;***
22521\f
be0dbdab
GM
22522;;;### (autoloads (rmail-user-mail-address-regexp rmail-summary-line-decoder
22523;;;;;; rmail-summary-by-senders rmail-summary-by-topic rmail-summary-by-regexp
22524;;;;;; rmail-summary-by-recipients rmail-summary-by-labels rmail-summary
22525;;;;;; rmail-summary-line-count-flag rmail-summary-scroll-between-messages)
a5805c9d 22526;;;;;; "rmailsum" "mail/rmailsum.el" (17374 21544))
93548d2e
DL
22527;;; Generated autoloads from mail/rmailsum.el
22528
22529(defvar rmail-summary-scroll-between-messages t "\
22530*Non-nil means Rmail summary scroll commands move between messages.")
22531
9c46b00a
MR
22532(custom-autoload (quote rmail-summary-scroll-between-messages) "rmailsum")
22533
93548d2e 22534(defvar rmail-summary-line-count-flag t "\
0c72a1a2 22535*Non-nil means Rmail summary should show the number of lines in each message.")
93548d2e 22536
9c46b00a
MR
22537(custom-autoload (quote rmail-summary-line-count-flag) "rmailsum")
22538
93548d2e 22539(autoload (quote rmail-summary) "rmailsum" "\
c595cc5f
MR
22540Display a summary of all messages, one line per message.
22541
22542\(fn)" t nil)
93548d2e
DL
22543
22544(autoload (quote rmail-summary-by-labels) "rmailsum" "\
22545Display a summary of all messages with one or more LABELS.
c595cc5f
MR
22546LABELS should be a string containing the desired labels, separated by commas.
22547
22548\(fn LABELS)" t nil)
93548d2e
DL
22549
22550(autoload (quote rmail-summary-by-recipients) "rmailsum" "\
22551Display a summary of all messages with the given RECIPIENTS.
22552Normally checks the To, From and Cc fields of headers;
22553but if PRIMARY-ONLY is non-nil (prefix arg given),
22554 only look in the To and From fields.
c595cc5f
MR
22555RECIPIENTS is a string of regexps separated by commas.
22556
22557\(fn RECIPIENTS &optional PRIMARY-ONLY)" t nil)
93548d2e
DL
22558
22559(autoload (quote rmail-summary-by-regexp) "rmailsum" "\
22560Display a summary of all messages according to regexp REGEXP.
22561If the regular expression is found in the header of the message
22562\(including in the date and other lines, as well as the subject line),
c595cc5f
MR
22563Emacs will list the header line in the RMAIL-summary.
22564
22565\(fn REGEXP)" t nil)
93548d2e
DL
22566
22567(autoload (quote rmail-summary-by-topic) "rmailsum" "\
22568Display a summary of all messages with the given SUBJECT.
22569Normally checks the Subject field of headers;
821b278f 22570but if WHOLE-MESSAGE is non-nil (prefix arg given),
93548d2e 22571 look in the whole message.
c595cc5f
MR
22572SUBJECT is a string of regexps separated by commas.
22573
22574\(fn SUBJECT &optional WHOLE-MESSAGE)" t nil)
93548d2e
DL
22575
22576(autoload (quote rmail-summary-by-senders) "rmailsum" "\
22577Display a summary of all messages with the given SENDERS.
c595cc5f
MR
22578SENDERS is a string of names separated by commas.
22579
22580\(fn SENDERS)" t nil)
93548d2e
DL
22581
22582(defvar rmail-summary-line-decoder (function identity) "\
22583*Function to decode summary-line.
22584
22585By default, `identity' is set.")
22586
9c46b00a
MR
22587(custom-autoload (quote rmail-summary-line-decoder) "rmailsum")
22588
be0dbdab
GM
22589(defvar rmail-user-mail-address-regexp nil "\
22590*Regexp matching user mail addresses.
22591If non-nil, this variable is used to identify the correspondent
22592when receiving new mail. If it matches the address of the sender,
22593the recipient is taken as correspondent of a mail.
22594If nil (default value), your `user-login-name' and `user-mail-address'
22595are used to exclude yourself as correspondent.
22596
22597Usually you don't have to set this variable, except if you collect mails
22598sent by you under different user names.
38747ec6 22599Then it should be a regexp matching your mail addresses.
be0dbdab
GM
22600
22601Setting this variable has an effect only before reading a mail.")
22602
9c46b00a
MR
22603(custom-autoload (quote rmail-user-mail-address-regexp) "rmailsum")
22604
93548d2e
DL
22605;;;***
22606\f
ac95a621 22607;;;### (autoloads (news-post-news) "rnewspost" "obsolete/rnewspost.el"
a5805c9d 22608;;;;;; (17279 27123))
ac95a621 22609;;; Generated autoloads from obsolete/rnewspost.el
93548d2e
DL
22610
22611(autoload (quote news-post-news) "rnewspost" "\
22612Begin editing a new USENET news article to be posted.
22613Type \\[describe-mode] once editing the article to get a list of commands.
c595cc5f
MR
22614If NOQUERY is non-nil, we do not query before doing the work.
22615
22616\(fn &optional NOQUERY)" t nil)
93548d2e
DL
22617
22618;;;***
22619\f
df2d7e04 22620;;;### (autoloads (toggle-rot13-mode rot13-other-window rot13-region
a5805c9d 22621;;;;;; rot13-string rot13) "rot13" "rot13.el" (17279 27123))
93548d2e
DL
22622;;; Generated autoloads from rot13.el
22623
df2d7e04 22624(autoload (quote rot13) "rot13" "\
c595cc5f
MR
22625Return Rot13 encryption of OBJECT, a buffer or string.
22626
22627\(fn OBJECT &optional START END)" nil nil)
df2d7e04
CW
22628
22629(autoload (quote rot13-string) "rot13" "\
c595cc5f
MR
22630Return Rot13 encryption of STRING.
22631
22632\(fn STRING)" nil nil)
df2d7e04
CW
22633
22634(autoload (quote rot13-region) "rot13" "\
c595cc5f
MR
22635Rot13 encrypt the region between START and END in current buffer.
22636
22637\(fn START END)" t nil)
df2d7e04 22638
93548d2e
DL
22639(autoload (quote rot13-other-window) "rot13" "\
22640Display current buffer in rot 13 in another window.
09938b67
GM
22641The text itself is not modified, only the way it is displayed is affected.
22642
22643To terminate the rot13 display, delete that window. As long as that window
22644is not deleted, any buffer displayed in it will become instantly encoded
22645in rot 13.
22646
c595cc5f
MR
22647See also `toggle-rot13-mode'.
22648
22649\(fn)" t nil)
93548d2e
DL
22650
22651(autoload (quote toggle-rot13-mode) "rot13" "\
c595cc5f
MR
22652Toggle the use of rot 13 encoding for the current window.
22653
22654\(fn)" t nil)
93548d2e
DL
22655
22656;;;***
22657\f
22658;;;### (autoloads (resize-minibuffer-mode resize-minibuffer-frame-exactly
22659;;;;;; resize-minibuffer-frame-max-height resize-minibuffer-frame
22660;;;;;; resize-minibuffer-window-exactly resize-minibuffer-window-max-height
a67b854e 22661;;;;;; resize-minibuffer-mode) "rsz-mini" "obsolete/rsz-mini.el"
a5805c9d 22662;;;;;; (17279 27123))
a67b854e 22663;;; Generated autoloads from obsolete/rsz-mini.el
93548d2e
DL
22664
22665(defvar resize-minibuffer-mode nil "\
7518ed7b 22666*This variable is obsolete.")
93548d2e 22667
9c46b00a 22668(custom-autoload (quote resize-minibuffer-mode) "rsz-mini")
93548d2e
DL
22669
22670(defvar resize-minibuffer-window-max-height nil "\
7518ed7b 22671*This variable is obsolete.")
93548d2e 22672
9c46b00a
MR
22673(custom-autoload (quote resize-minibuffer-window-max-height) "rsz-mini")
22674
93548d2e 22675(defvar resize-minibuffer-window-exactly t "\
7518ed7b 22676*This variable is obsolete.")
93548d2e 22677
9c46b00a
MR
22678(custom-autoload (quote resize-minibuffer-window-exactly) "rsz-mini")
22679
93548d2e 22680(defvar resize-minibuffer-frame nil "\
7518ed7b 22681*This variable is obsolete.")
93548d2e 22682
9c46b00a
MR
22683(custom-autoload (quote resize-minibuffer-frame) "rsz-mini")
22684
93548d2e 22685(defvar resize-minibuffer-frame-max-height nil "\
7518ed7b 22686*This variable is obsolete.")
93548d2e 22687
9c46b00a
MR
22688(custom-autoload (quote resize-minibuffer-frame-max-height) "rsz-mini")
22689
93548d2e 22690(defvar resize-minibuffer-frame-exactly t "\
7518ed7b 22691*This variable is obsolete.")
93548d2e 22692
9c46b00a
MR
22693(custom-autoload (quote resize-minibuffer-frame-exactly) "rsz-mini")
22694
93548d2e 22695(autoload (quote resize-minibuffer-mode) "rsz-mini" "\
c595cc5f
MR
22696This function is obsolete.
22697
22698\(fn &optional PREFIX)" t nil)
93548d2e
DL
22699
22700;;;***
22701\f
a5805c9d
KL
22702;;;### (autoloads (ruler-mode) "ruler-mode" "ruler-mode.el" (17279
22703;;;;;; 27123))
4c6bc877
MR
22704;;; Generated autoloads from ruler-mode.el
22705
22706(autoload (quote ruler-mode) "ruler-mode" "\
c595cc5f
MR
22707Display a ruler in the header line if ARG > 0.
22708
22709\(fn &optional ARG)" t nil)
4c6bc877
MR
22710
22711;;;***
22712\f
a5805c9d
KL
22713;;;### (autoloads (rx rx-to-string) "rx" "emacs-lisp/rx.el" (17279
22714;;;;;; 27122))
c86350b1
GM
22715;;; Generated autoloads from emacs-lisp/rx.el
22716
22717(autoload (quote rx-to-string) "rx" "\
22718Parse and produce code for regular expression FORM.
22719FORM is a regular expression in sexp form.
c595cc5f
MR
22720NO-GROUP non-nil means don't put shy groups around the result.
22721
22722\(fn FORM &optional NO-GROUP)" nil nil)
c86350b1
GM
22723
22724(autoload (quote rx) "rx" "\
390069bc
AS
22725Translate regular expressions REGEXPS in sexp form to a regexp string.
22726REGEXPS is a non-empty sequence of forms of the sort listed below.
c86350b1
GM
22727See also `rx-to-string' for how to do such a translation at run-time.
22728
22729The following are valid subforms of regular expressions in sexp
22730notation.
22731
22732STRING
22733 matches string STRING literally.
22734
22735CHAR
22736 matches character CHAR literally.
22737
390069bc 22738`not-newline', `nonl'
c86350b1
GM
22739 matches any character except a newline.
22740 .
22741`anything'
22742 matches any character
22743
390069bc
AS
22744`(any SET ...)'
22745`(in SET ...)'
22746`(char SET ...)'
22747 matches any character in SET .... SET may be a character or string.
c86350b1 22748 Ranges of characters can be specified as `A-Z' in strings.
390069bc 22749 Ranges may also be specified as conses like `(?A . ?Z)'.
c86350b1 22750
390069bc
AS
22751 SET may also be the name of a character class: `digit',
22752 `control', `hex-digit', `blank', `graph', `print', `alnum',
22753 `alpha', `ascii', `nonascii', `lower', `punct', `space', `upper',
22754 `word', or one of their synonyms.
c86350b1 22755
390069bc
AS
22756`(not (any SET ...))'
22757 matches any character not in SET ...
c86350b1 22758
390069bc 22759`line-start', `bol'
c86350b1
GM
22760 matches the empty string, but only at the beginning of a line
22761 in the text being matched
22762
390069bc 22763`line-end', `eol'
c86350b1
GM
22764 is similar to `line-start' but matches only at the end of a line
22765
390069bc 22766`string-start', `bos', `bot'
c86350b1
GM
22767 matches the empty string, but only at the beginning of the
22768 string being matched against.
22769
390069bc 22770`string-end', `eos', `eot'
c86350b1
GM
22771 matches the empty string, but only at the end of the
22772 string being matched against.
22773
22774`buffer-start'
22775 matches the empty string, but only at the beginning of the
390069bc 22776 buffer being matched against. Actually equivalent to `string-start'.
c86350b1
GM
22777
22778`buffer-end'
22779 matches the empty string, but only at the end of the
390069bc 22780 buffer being matched against. Actually equivalent to `string-end'.
c86350b1
GM
22781
22782`point'
22783 matches the empty string, but only at point.
22784
390069bc 22785`word-start', `bow'
c86350b1
GM
22786 matches the empty string, but only at the beginning or end of a
22787 word.
22788
390069bc 22789`word-end', `eow'
c86350b1
GM
22790 matches the empty string, but only at the end of a word.
22791
22792`word-boundary'
22793 matches the empty string, but only at the beginning or end of a
22794 word.
22795
22796`(not word-boundary)'
390069bc 22797`not-word-boundary'
c86350b1
GM
22798 matches the empty string, but not at the beginning or end of a
22799 word.
22800
390069bc 22801`digit', `numeric', `num'
c86350b1
GM
22802 matches 0 through 9.
22803
390069bc 22804`control', `cntrl'
c86350b1
GM
22805 matches ASCII control characters.
22806
390069bc 22807`hex-digit', `hex', `xdigit'
c86350b1
GM
22808 matches 0 through 9, a through f and A through F.
22809
22810`blank'
22811 matches space and tab only.
22812
390069bc 22813`graphic', `graph'
c86350b1
GM
22814 matches graphic characters--everything except ASCII control chars,
22815 space, and DEL.
22816
390069bc 22817`printing', `print'
c86350b1
GM
22818 matches printing characters--everything except ASCII control chars
22819 and DEL.
22820
390069bc 22821`alphanumeric', `alnum'
c86350b1
GM
22822 matches letters and digits. (But at present, for multibyte characters,
22823 it matches anything that has word syntax.)
22824
390069bc 22825`letter', `alphabetic', `alpha'
c86350b1
GM
22826 matches letters. (But at present, for multibyte characters,
22827 it matches anything that has word syntax.)
22828
22829`ascii'
22830 matches ASCII (unibyte) characters.
22831
22832`nonascii'
22833 matches non-ASCII (multibyte) characters.
22834
390069bc 22835`lower', `lower-case'
c86350b1
GM
22836 matches anything lower-case.
22837
390069bc 22838`upper', `upper-case'
c86350b1
GM
22839 matches anything upper-case.
22840
390069bc 22841`punctuation', `punct'
c86350b1
GM
22842 matches punctuation. (But at present, for multibyte characters,
22843 it matches anything that has non-word syntax.)
22844
390069bc 22845`space', `whitespace', `white'
c86350b1
GM
22846 matches anything that has whitespace syntax.
22847
390069bc 22848`word', `wordchar'
c86350b1
GM
22849 matches anything that has word syntax.
22850
390069bc
AS
22851`not-wordchar'
22852 matches anything that has non-word syntax.
22853
c86350b1
GM
22854`(syntax SYNTAX)'
22855 matches a character with syntax SYNTAX. SYNTAX must be one
390069bc
AS
22856 of the following symbols, or a symbol corresponding to the syntax
22857 character, e.g. `\\.' for `\\s.'.
c86350b1
GM
22858
22859 `whitespace' (\\s- in string notation)
22860 `punctuation' (\\s.)
22861 `word' (\\sw)
22862 `symbol' (\\s_)
22863 `open-parenthesis' (\\s()
22864 `close-parenthesis' (\\s))
22865 `expression-prefix' (\\s')
22866 `string-quote' (\\s\")
22867 `paired-delimiter' (\\s$)
22868 `escape' (\\s\\)
22869 `character-quote' (\\s/)
22870 `comment-start' (\\s<)
22871 `comment-end' (\\s>)
390069bc
AS
22872 `string-delimiter' (\\s|)
22873 `comment-delimiter' (\\s!)
c86350b1
GM
22874
22875`(not (syntax SYNTAX))'
390069bc 22876 matches a character that doesn't have syntax SYNTAX.
c86350b1
GM
22877
22878`(category CATEGORY)'
22879 matches a character with category CATEGORY. CATEGORY must be
22880 either a character to use for C, or one of the following symbols.
22881
22882 `consonant' (\\c0 in string notation)
22883 `base-vowel' (\\c1)
22884 `upper-diacritical-mark' (\\c2)
22885 `lower-diacritical-mark' (\\c3)
22886 `tone-mark' (\\c4)
22887 `symbol' (\\c5)
22888 `digit' (\\c6)
22889 `vowel-modifying-diacritical-mark' (\\c7)
22890 `vowel-sign' (\\c8)
22891 `semivowel-lower' (\\c9)
22892 `not-at-end-of-line' (\\c<)
22893 `not-at-beginning-of-line' (\\c>)
22894 `alpha-numeric-two-byte' (\\cA)
22895 `chinse-two-byte' (\\cC)
22896 `greek-two-byte' (\\cG)
22897 `japanese-hiragana-two-byte' (\\cH)
22898 `indian-tow-byte' (\\cI)
22899 `japanese-katakana-two-byte' (\\cK)
22900 `korean-hangul-two-byte' (\\cN)
22901 `cyrillic-two-byte' (\\cY)
390069bc 22902 `combining-diacritic' (\\c^)
c86350b1
GM
22903 `ascii' (\\ca)
22904 `arabic' (\\cb)
22905 `chinese' (\\cc)
22906 `ethiopic' (\\ce)
22907 `greek' (\\cg)
22908 `korean' (\\ch)
22909 `indian' (\\ci)
22910 `japanese' (\\cj)
22911 `japanese-katakana' (\\ck)
22912 `latin' (\\cl)
22913 `lao' (\\co)
22914 `tibetan' (\\cq)
22915 `japanese-roman' (\\cr)
22916 `thai' (\\ct)
22917 `vietnamese' (\\cv)
22918 `hebrew' (\\cw)
22919 `cyrillic' (\\cy)
22920 `can-break' (\\c|)
22921
22922`(not (category CATEGORY))'
390069bc 22923 matches a character that doesn't have category CATEGORY.
c86350b1
GM
22924
22925`(and SEXP1 SEXP2 ...)'
390069bc
AS
22926`(: SEXP1 SEXP2 ...)'
22927`(seq SEXP1 SEXP2 ...)'
22928`(sequence SEXP1 SEXP2 ...)'
c86350b1
GM
22929 matches what SEXP1 matches, followed by what SEXP2 matches, etc.
22930
22931`(submatch SEXP1 SEXP2 ...)'
390069bc 22932`(group SEXP1 SEXP2 ...)'
c86350b1
GM
22933 like `and', but makes the match accessible with `match-end',
22934 `match-beginning', and `match-string'.
22935
22936`(group SEXP1 SEXP2 ...)'
22937 another name for `submatch'.
22938
22939`(or SEXP1 SEXP2 ...)'
390069bc 22940`(| SEXP1 SEXP2 ...)'
c86350b1
GM
22941 matches anything that matches SEXP1 or SEXP2, etc. If all
22942 args are strings, use `regexp-opt' to optimize the resulting
22943 regular expression.
22944
22945`(minimal-match SEXP)'
22946 produce a non-greedy regexp for SEXP. Normally, regexps matching
390069bc 22947 zero or more occurrences of something are \"greedy\" in that they
c86350b1
GM
22948 match as much as they can, as long as the overall regexp can
22949 still match. A non-greedy regexp matches as little as possible.
22950
22951`(maximal-match SEXP)'
f19e949b 22952 produce a greedy regexp for SEXP. This is the default.
c86350b1 22953
390069bc
AS
22954Below, `SEXP ...' represents a sequence of regexp forms, treated as if
22955enclosed in `(and ...)'.
c86350b1 22956
390069bc
AS
22957`(zero-or-more SEXP ...)'
22958`(0+ SEXP ...)'
22959 matches zero or more occurrences of what SEXP ... matches.
c86350b1 22960
390069bc
AS
22961`(* SEXP ...)'
22962 like `zero-or-more', but always produces a greedy regexp, independent
22963 of `rx-greedy-flag'.
c86350b1 22964
390069bc
AS
22965`(*? SEXP ...)'
22966 like `zero-or-more', but always produces a non-greedy regexp,
22967 independent of `rx-greedy-flag'.
821b278f 22968
390069bc
AS
22969`(one-or-more SEXP ...)'
22970`(1+ SEXP ...)'
22971 matches one or more occurrences of SEXP ...
c86350b1 22972
390069bc 22973`(+ SEXP ...)'
c86350b1
GM
22974 like `one-or-more', but always produces a greedy regexp.
22975
390069bc 22976`(+? SEXP ...)'
c86350b1
GM
22977 like `one-or-more', but always produces a non-greedy regexp.
22978
390069bc
AS
22979`(zero-or-one SEXP ...)'
22980`(optional SEXP ...)'
22981`(opt SEXP ...)'
c86350b1 22982 matches zero or one occurrences of A.
821b278f 22983
390069bc 22984`(? SEXP ...)'
c86350b1
GM
22985 like `zero-or-one', but always produces a greedy regexp.
22986
390069bc 22987`(?? SEXP ...)'
c86350b1
GM
22988 like `zero-or-one', but always produces a non-greedy regexp.
22989
22990`(repeat N SEXP)'
390069bc
AS
22991`(= N SEXP ...)'
22992 matches N occurrences.
22993
22994`(>= N SEXP ...)'
22995 matches N or more occurrences.
c86350b1
GM
22996
22997`(repeat N M SEXP)'
390069bc
AS
22998`(** N M SEXP ...)'
22999 matches N to M occurrences.
23000
23001`(backref N)'
23002 matches what was matched previously by submatch N.
23003
23004`(backref N)'
23005 matches what was matched previously by submatch N.
23006
23007`(backref N)'
23008 matches what was matched previously by submatch N.
c86350b1
GM
23009
23010`(eval FORM)'
390069bc
AS
23011 evaluate FORM and insert result. If result is a string,
23012 `regexp-quote' it.
c86350b1
GM
23013
23014`(regexp REGEXP)'
390069bc 23015 include REGEXP in string notation in the result.
c595cc5f 23016
390069bc 23017\(fn &rest REGEXPS)" nil (quote macro))
c86350b1
GM
23018
23019;;;***
23020\f
59e085e0 23021;;;### (autoloads (savehist-mode savehist-mode) "savehist" "savehist.el"
a5805c9d 23022;;;;;; (17379 24714))
175a97e4
EZ
23023;;; Generated autoloads from savehist.el
23024
59e085e0
KL
23025(defvar savehist-mode nil "\
23026Mode for automatic saving of minibuffer history.
23027Set this by calling the `savehist-mode' function or using the customize
23028interface.")
175a97e4 23029
59e085e0 23030(custom-autoload (quote savehist-mode) "savehist")
175a97e4 23031
59e085e0
KL
23032(autoload (quote savehist-mode) "savehist" "\
23033Toggle savehist-mode.
23034Positive ARG turns on `savehist-mode'. When on, savehist-mode causes
23035minibuffer history to be saved periodically and when exiting Emacs.
23036When turned on for the first time in an Emacs session, it causes the
23037previous minibuffer history to be loaded from `savehist-file'.
175a97e4 23038
59e085e0
KL
23039This mode should normally be turned on from your Emacs init file.
23040Calling it at any other time replaces your current minibuffer histories,
23041which is probably undesirable.
175a97e4 23042
59e085e0 23043\(fn ARG)" t nil)
175a97e4
EZ
23044
23045;;;***
23046\f
93548d2e 23047;;;### (autoloads (dsssl-mode scheme-mode) "scheme" "progmodes/scheme.el"
a5805c9d 23048;;;;;; (17279 27203))
93548d2e
DL
23049;;; Generated autoloads from progmodes/scheme.el
23050
23051(autoload (quote scheme-mode) "scheme" "\
23052Major mode for editing Scheme code.
6448a6b3 23053Editing commands are similar to those of `lisp-mode'.
93548d2e
DL
23054
23055In addition, if an inferior Scheme process is running, some additional
23056commands will be defined, for evaluating expressions and controlling
23057the interpreter, and the state of the process will be displayed in the
23058modeline of all Scheme buffers. The names of commands that interact
0ad84a21
MB
23059with the Scheme process start with \"xscheme-\" if you use the MIT
23060Scheme-specific `xscheme' package; for more information see the
23061documentation for `xscheme-interaction-mode'. Use \\[run-scheme] to
23062start an inferior Scheme using the more general `cmuscheme' package.
93548d2e
DL
23063
23064Commands:
23065Delete converts tabs to spaces as it moves back.
23066Blank lines separate paragraphs. Semicolons start comments.
23067\\{scheme-mode-map}
6448a6b3 23068Entry to this mode calls the value of `scheme-mode-hook'
c595cc5f
MR
23069if that value is non-nil.
23070
23071\(fn)" t nil)
93548d2e
DL
23072
23073(autoload (quote dsssl-mode) "scheme" "\
23074Major mode for editing DSSSL code.
6448a6b3 23075Editing commands are similar to those of `lisp-mode'.
93548d2e
DL
23076
23077Commands:
23078Delete converts tabs to spaces as it moves back.
23079Blank lines separate paragraphs. Semicolons start comments.
23080\\{scheme-mode-map}
23081Entering this mode runs the hooks `scheme-mode-hook' and then
23082`dsssl-mode-hook' and inserts the value of `dsssl-sgml-declaration' if
c595cc5f
MR
23083that variable's value is a string.
23084
23085\(fn)" t nil)
93548d2e
DL
23086
23087;;;***
23088\f
23089;;;### (autoloads (gnus-score-mode) "score-mode" "gnus/score-mode.el"
a5805c9d 23090;;;;;; (17279 27122))
93548d2e
DL
23091;;; Generated autoloads from gnus/score-mode.el
23092
23093(autoload (quote gnus-score-mode) "score-mode" "\
23094Mode for editing Gnus score files.
23095This mode is an extended emacs-lisp mode.
23096
c595cc5f
MR
23097\\{gnus-score-mode-map}
23098
23099\(fn)" t nil)
93548d2e
DL
23100
23101;;;***
23102\f
a5805c9d
KL
23103;;;### (autoloads (scribe-mode) "scribe" "obsolete/scribe.el" (17279
23104;;;;;; 27123))
27a99a7c 23105;;; Generated autoloads from obsolete/scribe.el
93548d2e
DL
23106
23107(autoload (quote scribe-mode) "scribe" "\
23108Major mode for editing files of Scribe (a text formatter) source.
cded5ed3 23109Scribe-mode is similar to text-mode, with a few extra commands added.
93548d2e
DL
23110\\{scribe-mode-map}
23111
23112Interesting variables:
23113
5682d301 23114`scribe-fancy-paragraphs'
93548d2e
DL
23115 Non-nil makes Scribe mode use a different style of paragraph separation.
23116
5682d301 23117`scribe-electric-quote'
93548d2e
DL
23118 Non-nil makes insert of double quote use `` or '' depending on context.
23119
5682d301 23120`scribe-electric-parenthesis'
93548d2e 23121 Non-nil makes an open-parenthesis char (one of `([<{')
27a99a7c
GM
23122 automatically insert its close if typed after an @Command form.
23123
23124\(fn)" t nil)
93548d2e
DL
23125
23126;;;***
23127\f
4c6bc877 23128;;;### (autoloads (scroll-all-mode) "scroll-all" "scroll-all.el"
a5805c9d 23129;;;;;; (17279 27123))
6c083b4c
GM
23130;;; Generated autoloads from scroll-all.el
23131
ac42d7b9 23132(defvar scroll-all-mode nil "\
4c6bc877
MR
23133Non-nil if Scroll-All mode is enabled.
23134See the command `scroll-all-mode' for a description of this minor-mode.
6c083b4c 23135Setting this variable directly does not take effect;
4c6bc877 23136use either \\[customize] or the function `scroll-all-mode'.")
6c083b4c 23137
9c46b00a 23138(custom-autoload (quote scroll-all-mode) "scroll-all")
6c083b4c 23139
ac09dc1e
KL
23140(put (quote scroll-all-mode) (quote custom-set) (quote custom-set-minor-mode))
23141
6c083b4c 23142(autoload (quote scroll-all-mode) "scroll-all" "\
ac42d7b9
KG
23143Toggle Scroll-All minor mode.
23144With ARG, turn Scroll-All minor mode on if ARG is positive, off otherwise.
23145When Scroll-All mode is on, scrolling commands entered in one window
23146apply to all visible windows in the same frame.
c595cc5f
MR
23147
23148\(fn &optional ARG)" t nil)
6c083b4c
GM
23149
23150;;;***
23151\f
fbf34973 23152;;;### (autoloads (scroll-lock-mode) "scroll-lock" "scroll-lock.el"
a5805c9d 23153;;;;;; (17279 27122))
fbf34973
KL
23154;;; Generated autoloads from scroll-lock.el
23155
23156(autoload (quote scroll-lock-mode) "scroll-lock" "\
23157Minor mode for pager-like scrolling.
23158Keys which normally move point by line or paragraph will scroll
23159the buffer by the respective amount of lines instead and point
23160will be kept vertically fixed relative to window boundaries
23161during scrolling.
23162
23163\(fn &optional ARG)" t nil)
23164
23165;;;***
23166\f
be65bdd3 23167;;;### (autoloads (mail-other-frame mail-other-window mail mail-mailing-lists
175a97e4
EZ
23168;;;;;; mail-mode mail-send-nonascii mail-bury-selects-summary mail-default-headers
23169;;;;;; mail-default-directory mail-signature-file mail-signature
23170;;;;;; mail-citation-prefix-regexp mail-citation-hook mail-indentation-spaces
23171;;;;;; mail-yank-prefix mail-setup-hook mail-personal-alias-file
23172;;;;;; mail-alias-file mail-default-reply-to mail-archive-file-name
c1a055ca
EZ
23173;;;;;; mail-header-separator send-mail-function mail-interactive
23174;;;;;; mail-self-blind mail-specify-envelope-from mail-from-style)
a5805c9d 23175;;;;;; "sendmail" "mail/sendmail.el" (17331 26860))
93548d2e
DL
23176;;; Generated autoloads from mail/sendmail.el
23177
23178(defvar mail-from-style (quote angles) "\
c1a055ca 23179Specifies how \"From:\" fields look.
93548d2e
DL
23180
23181If `nil', they contain just the return address like:
23182 king@grassland.com
23183If `parens', they look like:
23184 king@grassland.com (Elvis Parsley)
23185If `angles', they look like:
23186 Elvis Parsley <king@grassland.com>
7518ed7b
GM
23187If `system-default', allows the mailer to insert its default From field
23188derived from the envelope-from address.
23189
23190In old versions of Emacs, the `system-default' setting also caused
23191Emacs to pass the proper email address from `user-mail-address'
23192to the mailer to specify the envelope-from address. But that is now
23193controlled by a separate variable, `mail-specify-envelope-from'.")
23194
9c46b00a
MR
23195(custom-autoload (quote mail-from-style) "sendmail")
23196
abb2db1c 23197(defvar mail-specify-envelope-from nil "\
c1a055ca 23198If non-nil, specify the envelope-from address when sending mail.
09938b67 23199The value used to specify it is whatever is found in
932a6f0f 23200the variable `mail-envelope-from', with `user-mail-address' as fallback.
7518ed7b 23201
0c867fa7 23202On most systems, specifying the envelope-from address is a
932a6f0f
AS
23203privileged operation. This variable affects sendmail and
23204smtpmail -- if you use feedmail to send mail, see instead the
23205variable `feedmail-deduce-envelope-from'.")
93548d2e 23206
9c46b00a
MR
23207(custom-autoload (quote mail-specify-envelope-from) "sendmail")
23208
93548d2e 23209(defvar mail-self-blind nil "\
c1a055ca 23210Non-nil means insert BCC to self in messages to be sent.
93548d2e
DL
23211This is done when the message is initialized,
23212so you can remove or alter the BCC field to override the default.")
23213
9c46b00a
MR
23214(custom-autoload (quote mail-self-blind) "sendmail")
23215
93548d2e 23216(defvar mail-interactive nil "\
c1a055ca 23217Non-nil means when sending a message wait for and display errors.
93548d2e
DL
23218nil means let mailer mail back a message to report errors.")
23219
9c46b00a
MR
23220(custom-autoload (quote mail-interactive) "sendmail")
23221
c1a055ca 23222(put (quote send-mail-function) (quote standard-value) (quote ((if (and window-system (memq system-type (quote (darwin windows-nt)))) (quote mailclient-send-it) (quote sendmail-send-it)))))
9c46b00a 23223
175a97e4 23224(defvar send-mail-function (if (and window-system (memq system-type (quote (darwin windows-nt)))) (quote mailclient-send-it) (quote sendmail-send-it)) "\
93548d2e
DL
23225Function to call to send the current buffer as mail.
23226The headers should be delimited by a line which is
c86350b1
GM
23227not a valid RFC822 header or continuation line,
23228that matches the variable `mail-header-separator'.
c7f48c35
GM
23229This is used by the default mail-sending commands. See also
23230`message-send-mail-function' for use with the Message package.")
93548d2e 23231
9c46b00a
MR
23232(custom-autoload (quote send-mail-function) "sendmail")
23233
93548d2e 23234(defvar mail-header-separator "--text follows this line--" "\
c1a055ca 23235Line used to separate headers from text in messages being composed.")
93548d2e 23236
9c46b00a
MR
23237(custom-autoload (quote mail-header-separator) "sendmail")
23238
93548d2e 23239(defvar mail-archive-file-name nil "\
c1a055ca 23240Name of file to write all outgoing messages in, or nil for none.
93548d2e
DL
23241This can be an inbox file or an Rmail file.")
23242
9c46b00a
MR
23243(custom-autoload (quote mail-archive-file-name) "sendmail")
23244
93548d2e 23245(defvar mail-default-reply-to nil "\
c1a055ca 23246Address to insert as default Reply-to field of outgoing messages.
93548d2e
DL
23247If nil, it will be initialized from the REPLYTO environment variable
23248when you first send mail.")
23249
9c46b00a
MR
23250(custom-autoload (quote mail-default-reply-to) "sendmail")
23251
93548d2e 23252(defvar mail-alias-file nil "\
c1a055ca 23253If non-nil, the name of a file to use instead of `/usr/lib/aliases'.
93548d2e
DL
23254This file defines aliases to be expanded by the mailer; this is a different
23255feature from that of defining aliases in `.mailrc' to be expanded in Emacs.
23256This variable has no effect unless your system uses sendmail as its mailer.")
23257
9c46b00a
MR
23258(custom-autoload (quote mail-alias-file) "sendmail")
23259
93548d2e 23260(defvar mail-personal-alias-file "~/.mailrc" "\
c1a055ca 23261If non-nil, the name of the user's personal mail alias file.
93548d2e
DL
23262This file typically should be in same format as the `.mailrc' file used by
23263the `Mail' or `mailx' program.
23264This file need not actually exist.")
23265
9c46b00a
MR
23266(custom-autoload (quote mail-personal-alias-file) "sendmail")
23267
175a97e4
EZ
23268(defvar mail-setup-hook nil "\
23269Normal hook, run each time a new outgoing mail message is initialized.
23270The function `mail-setup' runs this hook.")
23271
23272(custom-autoload (quote mail-setup-hook) "sendmail")
23273
23274(defvar mail-aliases t "\
23275Alist of mail address aliases,
23276or t meaning should be initialized from your mail aliases file.
23277\(The file's name is normally `~/.mailrc', but `mail-personal-alias-file'
23278can specify a different file name.)
23279The alias definitions in the file have this form:
23280 alias ALIAS MEANING")
23281
23282(defvar mail-yank-prefix nil "\
c1a055ca 23283Prefix insert on lines of yanked message being replied to.
175a97e4
EZ
23284nil means use indentation.")
23285
23286(custom-autoload (quote mail-yank-prefix) "sendmail")
23287
23288(defvar mail-indentation-spaces 3 "\
c1a055ca 23289Number of spaces to insert at the beginning of each cited line.
175a97e4
EZ
23290Used by `mail-yank-original' via `mail-indent-citation'.")
23291
23292(custom-autoload (quote mail-indentation-spaces) "sendmail")
23293
be65bdd3 23294(defvar mail-citation-hook nil "\
c1a055ca 23295Hook for modifying a citation just inserted in the mail buffer.
be65bdd3
AS
23296Each hook function can find the citation between (point) and (mark t),
23297and should leave point and mark around the citation text as modified.
23298The hook functions can find the header of the cited message
23299in the variable `mail-citation-header', whether or not this is included
23300in the cited portion of the message.
23301
23302If this hook is entirely empty (nil), a default action is taken
23303instead of no action.")
23304
23305(custom-autoload (quote mail-citation-hook) "sendmail")
23306
175a97e4 23307(defvar mail-citation-prefix-regexp "[ ]*[-a-z0-9A-Z]*>+[ ]*\\|[ ]*" "\
c1a055ca 23308Regular expression to match a citation prefix plus whitespace.
175a97e4
EZ
23309It should match whatever sort of citation prefixes you want to handle,
23310with whitespace before and after; it should also match just whitespace.
23311The default value matches citations like `foo-bar>' plus whitespace.")
23312
23313(custom-autoload (quote mail-citation-prefix-regexp) "sendmail")
23314
93548d2e 23315(defvar mail-signature nil "\
c1a055ca 23316Text inserted at end of mail buffer when a message is initialized.
93548d2e
DL
23317If t, it means to insert the contents of the file `mail-signature-file'.
23318If a string, that string is inserted.
23319 (To make a proper signature, the string should begin with \\n\\n-- \\n,
23320 which is the standard way to delimit a signature in a message.)
23321Otherwise, it should be an expression; it is evaluated
23322and should insert whatever you want to insert.")
23323
9c46b00a
MR
23324(custom-autoload (quote mail-signature) "sendmail")
23325
175a97e4 23326(defvar mail-signature-file "~/.signature" "\
c1a055ca 23327File containing the text inserted at end of mail buffer.")
175a97e4
EZ
23328
23329(custom-autoload (quote mail-signature-file) "sendmail")
23330
df2d7e04 23331(defvar mail-default-directory "~/" "\
c1a055ca 23332Directory for mail buffers.
df2d7e04
CW
23333Value of `default-directory' for mail buffers.
23334This directory is used for auto-save files of mail buffers.")
23335
9c46b00a
MR
23336(custom-autoload (quote mail-default-directory) "sendmail")
23337
175a97e4 23338(defvar mail-default-headers nil "\
c1a055ca 23339A string containing header lines, to be inserted in outgoing messages.
175a97e4
EZ
23340It is inserted before you edit the message,
23341so you can edit or delete these lines.")
23342
23343(custom-autoload (quote mail-default-headers) "sendmail")
23344
23345(defvar mail-bury-selects-summary t "\
c1a055ca 23346If non-nil, try to show RMAIL summary buffer after returning from mail.
175a97e4
EZ
23347The functions \\[mail-send-on-exit] or \\[mail-dont-send] select
23348the RMAIL summary buffer before returning, if it exists and this variable
23349is non-nil.")
23350
23351(custom-autoload (quote mail-bury-selects-summary) "sendmail")
23352
23353(defvar mail-send-nonascii (quote mime) "\
c1a055ca 23354Specify whether to allow sending non-ASCII characters in mail.
175a97e4
EZ
23355If t, that means do allow it. nil means don't allow it.
23356`query' means ask the user each time.
23357`mime' means add an appropriate MIME header if none already present.
23358The default is `mime'.
23359Including non-ASCII characters in a mail message can be problematical
23360for the recipient, who may not know how to decode them properly.")
23361
23362(custom-autoload (quote mail-send-nonascii) "sendmail")
23363
93548d2e
DL
23364(autoload (quote mail-mode) "sendmail" "\
23365Major mode for editing mail to be sent.
23366Like Text Mode but with these additional commands:
c1a055ca
EZ
23367
23368\\[mail-send] mail-send (send the message)
23369\\[mail-send-and-exit] mail-send-and-exit (send the message and exit)
23370
93548d2e
DL
23371Here are commands that move to a header field (and create it if there isn't):
23372 \\[mail-to] move to To: \\[mail-subject] move to Subject:
23373 \\[mail-cc] move to CC: \\[mail-bcc] move to BCC:
ad648212 23374 \\[mail-fcc] move to FCC: \\[mail-reply-to] move to Reply-To:
be65bdd3
AS
23375 \\[mail-mail-reply-to] move to Mail-Reply-To:
23376 \\[mail-mail-followup-to] move to Mail-Followup-To:
93548d2e
DL
23377\\[mail-text] mail-text (move to beginning of message text).
23378\\[mail-signature] mail-signature (insert `mail-signature-file' file).
23379\\[mail-yank-original] mail-yank-original (insert current message, in Rmail).
23380\\[mail-fill-yanked-message] mail-fill-yanked-message (fill what was yanked).
ac95a621
GM
23381\\[mail-sent-via] mail-sent-via (add a Sent-via field for each To or CC).
23382Turning on Mail mode runs the normal hooks `text-mode-hook' and
27a99a7c
GM
23383`mail-mode-hook' (in that order).
23384
23385\(fn)" t nil)
93548d2e 23386
be65bdd3
AS
23387(defvar mail-mailing-lists nil "\
23388*List of mailing list addresses the user is subscribed to.
23389
23390The variable is used to trigger insertion of the \"Mail-Followup-To\"
23391header when sending a message to a mailing list.")
23392
23393(custom-autoload (quote mail-mailing-lists) "sendmail")
23394
93548d2e
DL
23395(defvar sendmail-coding-system nil "\
23396*Coding system for encoding the outgoing mail.
23397This has higher priority than `default-buffer-file-coding-system'
23398and `default-sendmail-coding-system',
23399but lower priority than the local value of `buffer-file-coding-system'.
7518ed7b 23400See also the function `select-message-coding-system'.")
93548d2e
DL
23401
23402(defvar default-sendmail-coding-system (quote iso-latin-1) "\
23403Default coding system for encoding the outgoing mail.
23404This variable is used only when `sendmail-coding-system' is nil.
23405
175a97e4 23406This variable is set/changed by the command `set-language-environment'.
93548d2e 23407User should not set this variable manually,
175a97e4 23408instead use `sendmail-coding-system' to get a constant encoding
93548d2e 23409of outgoing mails regardless of the current language environment.
7518ed7b 23410See also the function `select-message-coding-system'.")
93548d2e
DL
23411 (add-hook 'same-window-buffer-names "*mail*")
23412
23413(autoload (quote mail) "sendmail" "\
23414Edit a message to be sent. Prefix arg means resume editing (don't erase).
23415When this function returns, the buffer `*mail*' is selected.
23416The value is t if the message was newly initialized; otherwise, nil.
23417
23418Optionally, the signature file `mail-signature-file' can be inserted at the
23419end; see the variable `mail-signature'.
23420
23421\\<mail-mode-map>
23422While editing message, type \\[mail-send-and-exit] to send the message and exit.
23423
23424Various special commands starting with C-c are available in sendmail mode
23425to move to message header fields:
23426\\{mail-mode-map}
23427
23428If `mail-self-blind' is non-nil, a BCC to yourself is inserted
23429when the message is initialized.
23430
23431If `mail-default-reply-to' is non-nil, it should be an address (a string);
23432a Reply-to: field with that address is inserted.
23433
23434If `mail-archive-file-name' is non-nil, an FCC field with that file name
23435is inserted.
23436
23437The normal hook `mail-setup-hook' is run after the message is
23438initialized. It can add more default fields to the message.
23439
175a97e4
EZ
23440The first argument, NOERASE, determines what to do when there is
23441an existing modified `*mail*' buffer. If NOERASE is nil, the
23442existing mail buffer is used, and the user is prompted whether to
23443keep the old contents or to erase them. If NOERASE has the value
23444`new', a new mail buffer will be created instead of using the old
23445one. Any other non-nil value means to always select the old
23446buffer without erasing the contents.
93548d2e
DL
23447
23448The second through fifth arguments,
23449 TO, SUBJECT, IN-REPLY-TO and CC, specify if non-nil
23450 the initial contents of those header fields.
23451 These arguments should not have final newlines.
23452The sixth argument REPLYBUFFER is a buffer which contains an
23453 original message being replied to, or else an action
23454 of the form (FUNCTION . ARGS) which says how to insert the original.
23455 Or it can be nil, if not replying to anything.
23456The seventh argument ACTIONS is a list of actions to take
23457 if/when the message is sent. Each action looks like (FUNCTION . ARGS);
23458 when the message is sent, we apply FUNCTION to ARGS.
c595cc5f
MR
23459 This is how Rmail arranges to mark messages `answered'.
23460
23461\(fn &optional NOERASE TO SUBJECT IN-REPLY-TO CC REPLYBUFFER ACTIONS)" t nil)
93548d2e
DL
23462
23463(autoload (quote mail-other-window) "sendmail" "\
c595cc5f
MR
23464Like `mail' command, but display mail buffer in another window.
23465
23466\(fn &optional NOERASE TO SUBJECT IN-REPLY-TO CC REPLYBUFFER SENDACTIONS)" t nil)
93548d2e
DL
23467
23468(autoload (quote mail-other-frame) "sendmail" "\
c595cc5f
MR
23469Like `mail' command, but display mail buffer in another frame.
23470
23471\(fn &optional NOERASE TO SUBJECT IN-REPLY-TO CC REPLYBUFFER SENDACTIONS)" t nil)
93548d2e
DL
23472
23473;;;***
23474\f
a5805c9d
KL
23475;;;### (autoloads (server-save-buffers-kill-terminal server-mode
23476;;;;;; server-start) "server" "server.el" (17337 53564))
93548d2e
DL
23477;;; Generated autoloads from server.el
23478
23479(autoload (quote server-start) "server" "\
23480Allow this Emacs process to be a server for client processes.
23481This starts a server communications subprocess through which
d66d64bc
KL
23482client \"editors\" can send your editing commands to this Emacs
23483job. To use the server, set up the program `emacsclient' in the
93548d2e
DL
23484Emacs distribution as your standard \"editor\".
23485
d66d64bc
KL
23486Prefix arg LEAVE-DEAD means just kill any existing server
23487communications subprocess.
c595cc5f
MR
23488
23489\(fn &optional LEAVE-DEAD)" t nil)
23490
821b278f
MR
23491(defvar server-mode nil "\
23492Non-nil if Server mode is enabled.
23493See the command `server-mode' for a description of this minor-mode.
23494Setting this variable directly does not take effect;
23495use either \\[customize] or the function `server-mode'.")
23496
23497(custom-autoload (quote server-mode) "server")
23498
ac09dc1e
KL
23499(put (quote server-mode) (quote custom-set) (quote custom-set-minor-mode))
23500
821b278f
MR
23501(autoload (quote server-mode) "server" "\
23502Toggle Server mode.
23503With ARG, turn Server mode on if ARG is positive, off otherwise.
23504Server mode runs a process that accepts commands from the
23505`emacsclient' program. See `server-start' and Info node `Emacs server'.
23506
23507\(fn &optional ARG)" t nil)
23508
a5805c9d
KL
23509(autoload (quote server-save-buffers-kill-terminal) "server" "\
23510Offer to save each buffer, then kill PROC.
23511
23512With prefix arg, silently save all file-visiting buffers, then kill.
23513
23514If emacsclient was started with a list of filenames to edit, then
23515only these files will be asked to be saved.
23516
23517\(fn PROC &optional ARG)" nil nil)
23518
c595cc5f
MR
23519;;;***
23520\f
a5805c9d 23521;;;### (autoloads (ses-mode) "ses" "ses.el" (17374 21531))
c595cc5f
MR
23522;;; Generated autoloads from ses.el
23523
23524(autoload (quote ses-mode) "ses" "\
390069bc
AS
23525Major mode for Simple Emacs Spreadsheet.
23526See \"ses-example.ses\" (in the etc data directory) for more info.
c595cc5f
MR
23527
23528Key definitions:
23529\\{ses-mode-map}
23530These key definitions are active only in the print area (the visible part):
23531\\{ses-mode-print-map}
23532These are active only in the minibuffer, when entering or editing a formula:
23533\\{ses-mode-edit-map}
23534
23535\(fn)" t nil)
93548d2e
DL
23536
23537;;;***
23538\f
23539;;;### (autoloads (html-mode sgml-mode) "sgml-mode" "textmodes/sgml-mode.el"
a5805c9d 23540;;;;;; (17357 6510))
93548d2e
DL
23541;;; Generated autoloads from textmodes/sgml-mode.el
23542
23543(autoload (quote sgml-mode) "sgml-mode" "\
23544Major mode for editing SGML documents.
44d38e8d 23545Makes > match <.
ec2bb97f 23546Keys <, &, SPC within <>, \", / and ' can be electric depending on
93548d2e
DL
23547`sgml-quick-keys'.
23548
23549An argument of N to a tag-inserting command means to wrap it around
23550the next N words. In Transient Mark mode, when the mark is active,
23551N defaults to -1, which means to wrap it around the current region.
23552
23553If you like upcased tags, put (setq sgml-transformation 'upcase) in
23554your `.emacs' file.
23555
23556Use \\[sgml-validate] to validate your document with an SGML parser.
23557
23558Do \\[describe-variable] sgml- SPC to see available variables.
23559Do \\[describe-key] on the following bindings to discover what they do.
27a99a7c
GM
23560\\{sgml-mode-map}
23561
23562\(fn)" t nil)
93548d2e 23563
0c867fa7
MS
23564(defalias (quote xml-mode) (quote sgml-mode))
23565
93548d2e
DL
23566(autoload (quote html-mode) "sgml-mode" "\
23567Major mode based on SGML mode for editing HTML documents.
23568This allows inserting skeleton constructs used in hypertext documents with
23569completion. See below for an introduction to HTML. Use
23570\\[browse-url-of-buffer] to see how this comes out. See also `sgml-mode' on
23571which this is based.
23572
23573Do \\[describe-variable] html- SPC and \\[describe-variable] sgml- SPC to see available variables.
23574
23575To write fairly well formatted pages you only need to know few things. Most
23576browsers have a function to read the source code of the page being seen, so
23577you can imitate various tricks. Here's a very short HTML primer which you
23578can also view with a browser to see what happens:
23579
23580<title>A Title Describing Contents</title> should be on every page. Pages can
23581have <h1>Very Major Headlines</h1> through <h6>Very Minor Headlines</h6>
23582<hr> Parts can be separated with horizontal rules.
23583
23584<p>Paragraphs only need an opening tag. Line breaks and multiple spaces are
23585ignored unless the text is <pre>preformatted.</pre> Text can be marked as
d66d64bc 23586<b>bold</b>, <i>italic</i> or <u>underlined</u> using the normal M-o or
93548d2e
DL
23587Edit/Text Properties/Face commands.
23588
23589Pages can have <a name=\"SOMENAME\">named points</a> and can link other points
23590to them with <a href=\"#SOMENAME\">see also somename</a>. In the same way <a
23591href=\"URL\">see also URL</a> where URL is a filename relative to current
23592directory, or absolute as in `http://www.cs.indiana.edu/elisp/w3/docs.html'.
23593
23594Images in many formats can be inlined with <img src=\"URL\">.
23595
23596If you mainly create your own documents, `sgml-specials' might be
23597interesting. But note that some HTML 2 browsers can't handle `&apos;'.
23598To work around that, do:
23599 (eval-after-load \"sgml-mode\" '(aset sgml-char-names ?' nil))
23600
27a99a7c
GM
23601\\{html-mode-map}
23602
23603\(fn)" t nil)
93548d2e
DL
23604
23605;;;***
23606\f
23607;;;### (autoloads (sh-mode) "sh-script" "progmodes/sh-script.el"
a5805c9d 23608;;;;;; (17327 23539))
93548d2e
DL
23609;;; Generated autoloads from progmodes/sh-script.el
23610
93548d2e
DL
23611(autoload (quote sh-mode) "sh-script" "\
23612Major mode for editing shell scripts.
23613This mode works for many shells, since they all have roughly the same syntax,
23614as far as commands, arguments, variables, pipes, comments etc. are concerned.
23615Unless the file's magic number indicates the shell, your usual shell is
23616assumed. Since filenames rarely give a clue, they are not further analyzed.
23617
23618This mode adapts to the variations between shells (see `sh-set-shell') by
23619means of an inheritance based feature lookup (see `sh-feature'). This
23620mechanism applies to all variables (including skeletons) that pertain to
23621shell-specific features.
23622
23623The default style of this mode is that of Rosenblatt's Korn shell book.
23624The syntax of the statements varies with the shell being used. The
23625following commands are available, based on the current shell's syntax:
c1a055ca 23626\\<sh-mode-map>
93548d2e
DL
23627\\[sh-case] case statement
23628\\[sh-for] for loop
23629\\[sh-function] function definition
23630\\[sh-if] if statement
23631\\[sh-indexed-loop] indexed loop from 1 to n
23632\\[sh-while-getopts] while getopts loop
23633\\[sh-repeat] repeat loop
23634\\[sh-select] select loop
23635\\[sh-until] until loop
23636\\[sh-while] while loop
23637
7518ed7b
GM
23638For sh and rc shells indentation commands are:
23639\\[sh-show-indent] Show the variable controlling this line's indentation.
23640\\[sh-set-indent] Set then variable controlling this line's indentation.
23641\\[sh-learn-line-indent] Change the indentation variable so this line
23642would indent to the way it currently is.
23643\\[sh-learn-buffer-indent] Set the indentation variables so the
54baed30 23644buffer indents as it currently is indented.
7518ed7b
GM
23645
23646
93548d2e
DL
23647\\[backward-delete-char-untabify] Delete backward one position, even if it was a tab.
23648\\[sh-newline-and-indent] Delete unquoted space and indent new line same as this one.
23649\\[sh-end-of-command] Go to end of successive commands.
23650\\[sh-beginning-of-command] Go to beginning of successive commands.
23651\\[sh-set-shell] Set this buffer's shell, and maybe its magic number.
23652\\[sh-execute-region] Have optional header and region be executed in a subshell.
23653
23654\\[sh-maybe-here-document] Without prefix, following an unquoted < inserts here document.
23655{, (, [, ', \", `
23656 Unless quoted with \\, insert the pairs {}, (), [], or '', \"\", ``.
23657
23658If you generally program a shell different from your login shell you can
23659set `sh-shell-file' accordingly. If your shell's file name doesn't correctly
23660indicate what shell it is use `sh-alias-alist' to translate.
23661
23662If your shell gives error messages with line numbers, you can use \\[executable-interpret]
c595cc5f
MR
23663with your script for an edit-interpret-debug cycle.
23664
23665\(fn)" t nil)
93548d2e
DL
23666
23667(defalias (quote shell-script-mode) (quote sh-mode))
23668
23669;;;***
23670\f
a5805c9d 23671;;;### (autoloads (sha1) "sha1" "gnus/sha1.el" (17279 27122))
390069bc
AS
23672;;; Generated autoloads from gnus/sha1.el
23673
23674(autoload (quote sha1) "sha1" "\
23675Return the SHA1 (Secure Hash Algorithm) of an object.
23676OBJECT is either a string or a buffer.
23677Optional arguments BEG and END denote buffer positions for computing the
23678hash of a portion of OBJECT.
23679If BINARY is non-nil, return a string in binary form.
23680
23681\(fn OBJECT &optional BEG END BINARY)" nil nil)
23682
23683;;;***
23684\f
93548d2e 23685;;;### (autoloads (list-load-path-shadows) "shadow" "emacs-lisp/shadow.el"
a5805c9d 23686;;;;;; (17283 59910))
93548d2e
DL
23687;;; Generated autoloads from emacs-lisp/shadow.el
23688
23689(autoload (quote list-load-path-shadows) "shadow" "\
23690Display a list of Emacs Lisp files that shadow other files.
23691
23692This function lists potential load-path problems. Directories in the
23693`load-path' variable are searched, in order, for Emacs Lisp
23694files. When a previously encountered file name is found again, a
23695message is displayed indicating that the later file is \"hidden\" by
23696the earlier.
23697
23698For example, suppose `load-path' is set to
23699
23700\(\"/usr/gnu/emacs/site-lisp\" \"/usr/gnu/emacs/share/emacs/19.30/lisp\")
23701
23702and that each of these directories contains a file called XXX.el. Then
23703XXX.el in the site-lisp directory is referred to by all of:
23704\(require 'XXX), (autoload .... \"XXX\"), (load-library \"XXX\") etc.
23705
23706The first XXX.el file prevents emacs from seeing the second (unless
23707the second is loaded explicitly via load-file).
23708
23709When not intended, such shadowings can be the source of subtle
23710problems. For example, the above situation may have arisen because the
23711XXX package was not distributed with versions of emacs prior to
2371219.30. An emacs maintainer downloaded XXX from elsewhere and installed
23713it. Later, XXX was updated and included in the emacs distribution.
23714Unless the emacs maintainer checks for this, the new version of XXX
23715will be hidden behind the old (which may no longer work with the new
23716emacs version).
23717
23718This function performs these checks and flags all possible
23719shadowings. Because a .el file may exist without a corresponding .elc
23720\(or vice-versa), these suffixes are essentially ignored. A file
23721XXX.elc in an early directory (that does not contain XXX.el) is
23722considered to shadow a later file XXX.el, and vice-versa.
23723
23724When run interactively, the shadowings (if any) are displayed in a
23725buffer called `*Shadows*'. Shadowings are located by calling the
c595cc5f
MR
23726\(non-interactive) companion function, `find-emacs-lisp-shadows'.
23727
23728\(fn)" t nil)
93548d2e
DL
23729
23730;;;***
23731\f
2a55cd3a 23732;;;### (autoloads (shadow-initialize shadow-define-regexp-group shadow-define-literal-group
a5805c9d
KL
23733;;;;;; shadow-define-cluster) "shadowfile" "shadowfile.el" (17279
23734;;;;;; 27172))
2a55cd3a
GM
23735;;; Generated autoloads from shadowfile.el
23736
23737(autoload (quote shadow-define-cluster) "shadowfile" "\
23738Edit (or create) the definition of a cluster NAME.
23739This is a group of hosts that share directories, so that copying to or from
23740one of them is sufficient to update the file on all of them. Clusters are
23741defined by a name, the network address of a primary host (the one we copy
23742files to), and a regular expression that matches the hostnames of all the sites
c595cc5f
MR
23743in the cluster.
23744
23745\(fn NAME)" t nil)
2a55cd3a
GM
23746
23747(autoload (quote shadow-define-literal-group) "shadowfile" "\
23748Declare a single file to be shared between sites.
23749It may have different filenames on each site. When this file is edited, the
23750new version will be copied to each of the other locations. Sites can be
c595cc5f
MR
23751specific hostnames, or names of clusters (see `shadow-define-cluster').
23752
23753\(fn)" t nil)
2a55cd3a
GM
23754
23755(autoload (quote shadow-define-regexp-group) "shadowfile" "\
23756Make each of a group of files be shared between hosts.
23757Prompts for regular expression; files matching this are shared between a list
23758of sites, which are also prompted for. The filenames must be identical on all
23759hosts (if they aren't, use shadow-define-group instead of this function).
23760Each site can be either a hostname or the name of a cluster (see
c595cc5f
MR
23761`shadow-define-cluster').
23762
23763\(fn)" t nil)
2a55cd3a
GM
23764
23765(autoload (quote shadow-initialize) "shadowfile" "\
c595cc5f
MR
23766Set up file shadowing.
23767
23768\(fn)" t nil)
2a55cd3a
GM
23769
23770;;;***
23771\f
b442e70a 23772;;;### (autoloads (shell shell-dumb-shell-regexp) "shell" "shell.el"
a5805c9d 23773;;;;;; (17279 27172))
93548d2e
DL
23774;;; Generated autoloads from shell.el
23775
b442e70a 23776(defvar shell-dumb-shell-regexp "cmd\\(proxy\\)?\\.exe" "\
c7f48c35
GM
23777Regexp to match shells that don't save their command history, and
23778don't handle the backslash as a quote character. For shells that
23779match this regexp, Emacs will write out the command history when the
23780shell finishes, and won't remove backslashes when it unquotes shell
23781arguments.")
93548d2e 23782
9c46b00a
MR
23783(custom-autoload (quote shell-dumb-shell-regexp) "shell")
23784
93548d2e 23785(autoload (quote shell) "shell" "\
0ad84a21
MB
23786Run an inferior shell, with I/O through BUFFER (which defaults to `*shell*').
23787Interactively, a prefix arg means to prompt for BUFFER.
23788If BUFFER exists but shell process is not running, make new shell.
23789If BUFFER exists and shell process is running, just switch to BUFFER.
93548d2e
DL
23790Program used comes from variable `explicit-shell-file-name',
23791 or (if that is nil) from the ESHELL environment variable,
23792 or else from SHELL if there is no ESHELL.
23793If a file `~/.emacs_SHELLNAME' exists, it is given as initial input
23794 (Note that this may lose due to a timing error if the shell
23795 discards input when it starts up.)
23796The buffer is put in Shell mode, giving commands for sending input
23797and controlling the subjobs of the shell. See `shell-mode'.
23798See also the variable `shell-prompt-pattern'.
23799
23800To specify a coding system for converting non-ASCII characters
23801in the input and output to the shell, use \\[universal-coding-system-argument]
23802before \\[shell]. You can also specify this with \\[set-buffer-process-coding-system]
23803in the shell buffer, after you start the shell.
23804The default comes from `process-coding-system-alist' and
23805`default-process-coding-system'.
23806
23807The shell file name (sans directories) is used to make a symbol name
23808such as `explicit-csh-args'. If that symbol is a variable,
23809its value is used as a list of arguments when invoking the shell.
23810Otherwise, one argument `-i' is passed to the shell.
23811
c595cc5f
MR
23812\(Type \\[describe-mode] in the shell buffer for a list of commands.)
23813
23814\(fn &optional BUFFER)" t nil)
93548d2e
DL
23815 (add-hook 'same-window-buffer-names "*shell*")
23816
23817;;;***
23818\f
390069bc 23819;;;### (autoloads (sieve-upload-and-bury sieve-upload sieve-manage)
a5805c9d 23820;;;;;; "sieve" "gnus/sieve.el" (17279 27171))
390069bc
AS
23821;;; Generated autoloads from gnus/sieve.el
23822
23823(autoload (quote sieve-manage) "sieve" "\
23824Not documented
23825
23826\(fn SERVER &optional PORT)" t nil)
23827
23828(autoload (quote sieve-upload) "sieve" "\
23829Not documented
23830
23831\(fn &optional NAME)" t nil)
23832
23833(autoload (quote sieve-upload-and-bury) "sieve" "\
23834Not documented
23835
23836\(fn &optional NAME)" t nil)
23837
23838;;;***
23839\f
23840;;;### (autoloads (sieve-mode) "sieve-mode" "gnus/sieve-mode.el"
a5805c9d 23841;;;;;; (17279 27122))
390069bc
AS
23842;;; Generated autoloads from gnus/sieve-mode.el
23843
23844(autoload (quote sieve-mode) "sieve-mode" "\
23845Major mode for editing Sieve code.
23846This is much like C mode except for the syntax of comments. Its keymap
23847inherits from C mode's and it has the same variables for customizing
23848indentation. It has its own abbrev table and its own syntax table.
23849
23850Turning on Sieve mode runs `sieve-mode-hook'.
23851
23852\(fn)" t nil)
23853
23854;;;***
23855\f
a5805c9d
KL
23856;;;### (autoloads (simula-mode) "simula" "progmodes/simula.el" (17279
23857;;;;;; 27203))
93548d2e
DL
23858;;; Generated autoloads from progmodes/simula.el
23859
23860(autoload (quote simula-mode) "simula" "\
23861Major mode for editing SIMULA code.
23862\\{simula-mode-map}
23863Variables controlling indentation style:
0c72a1a2 23864 `simula-tab-always-indent'
93548d2e
DL
23865 Non-nil means TAB in SIMULA mode should always reindent the current line,
23866 regardless of where in the line point is when the TAB command is used.
0c72a1a2 23867 `simula-indent-level'
93548d2e 23868 Indentation of SIMULA statements with respect to containing block.
0c72a1a2 23869 `simula-substatement-offset'
93548d2e 23870 Extra indentation after DO, THEN, ELSE, WHEN and OTHERWISE.
0c72a1a2 23871 `simula-continued-statement-offset' 3
93548d2e
DL
23872 Extra indentation for lines not starting a statement or substatement,
23873 e.g. a nested FOR-loop. If value is a list, each line in a multiple-
23874 line continued statement will have the car of the list extra indentation
23875 with respect to the previous line of the statement.
0c72a1a2 23876 `simula-label-offset' -4711
93548d2e 23877 Offset of SIMULA label lines relative to usual indentation.
0c72a1a2 23878 `simula-if-indent' '(0 . 0)
93548d2e
DL
23879 Extra indentation of THEN and ELSE with respect to the starting IF.
23880 Value is a cons cell, the car is extra THEN indentation and the cdr
23881 extra ELSE indentation. IF after ELSE is indented as the starting IF.
0c72a1a2 23882 `simula-inspect-indent' '(0 . 0)
93548d2e
DL
23883 Extra indentation of WHEN and OTHERWISE with respect to the
23884 corresponding INSPECT. Value is a cons cell, the car is
23885 extra WHEN indentation and the cdr extra OTHERWISE indentation.
0c72a1a2 23886 `simula-electric-indent' nil
93548d2e
DL
23887 If this variable is non-nil, `simula-indent-line'
23888 will check the previous line to see if it has to be reindented.
0c72a1a2 23889 `simula-abbrev-keyword' 'upcase
93548d2e
DL
23890 Determine how SIMULA keywords will be expanded. Value is one of
23891 the symbols `upcase', `downcase', `capitalize', (as in) `abbrev-table',
23892 or nil if they should not be changed.
0c72a1a2 23893 `simula-abbrev-stdproc' 'abbrev-table
93548d2e
DL
23894 Determine how standard SIMULA procedure and class names will be
23895 expanded. Value is one of the symbols `upcase', `downcase', `capitalize',
23896 (as in) `abbrev-table', or nil if they should not be changed.
23897
23898Turning on SIMULA mode calls the value of the variable simula-mode-hook
0c867fa7
MS
23899with no arguments, if that value is non-nil.
23900
23901\(fn)" t nil)
93548d2e
DL
23902
23903;;;***
23904\f
27a99a7c 23905;;;### (autoloads (skeleton-pair-insert-maybe skeleton-insert skeleton-proxy-new
a5805c9d 23906;;;;;; define-skeleton) "skeleton" "skeleton.el" (17279 27123))
93548d2e
DL
23907;;; Generated autoloads from skeleton.el
23908
23909(defvar skeleton-filter (quote identity) "\
23910Function for transforming a skeleton proxy's aliases' variable value.")
23911
23912(autoload (quote define-skeleton) "skeleton" "\
23913Define a user-configurable COMMAND that enters a statement skeleton.
27a99a7c
GM
23914DOCUMENTATION is that of the command.
23915SKELETON is as defined under `skeleton-insert'.
c595cc5f
MR
23916
23917\(fn COMMAND DOCUMENTATION &rest SKELETON)" nil (quote macro))
93548d2e
DL
23918
23919(autoload (quote skeleton-proxy-new) "skeleton" "\
27a99a7c 23920Insert SKELETON.
93548d2e
DL
23921Prefix ARG allows wrapping around words or regions (see `skeleton-insert').
23922If no ARG was given, but the region is visible, ARG defaults to -1 depending
23923on `skeleton-autowrap'. An ARG of M-0 will prevent this just for once.
23924This command can also be an abbrev expansion (3rd and 4th columns in
23925\\[edit-abbrevs] buffer: \"\" command-name).
23926
0ef3cc90 23927Optional second argument STR may also be a string which will be the value
27a99a7c 23928of `str' whereas the skeleton's interactor is then ignored.
c595cc5f 23929
27a99a7c 23930\(fn SKELETON &optional STR ARG)" nil nil)
93548d2e
DL
23931
23932(autoload (quote skeleton-insert) "skeleton" "\
23933Insert the complex statement skeleton SKELETON describes very concisely.
23934
23935With optional second argument REGIONS, wrap first interesting point
23936\(`_') in skeleton around next REGIONS words, if REGIONS is positive.
23937If REGIONS is negative, wrap REGIONS preceding interregions into first
23938REGIONS interesting positions (successive `_'s) in skeleton.
23939
23940An interregion is the stretch of text between two contiguous marked
23941points. If you marked A B C [] (where [] is the cursor) in
23942alphabetical order, the 3 interregions are simply the last 3 regions.
23943But if you marked B A [] C, the interregions are B-A, A-[], []-C.
23944
23945The optional third argument STR, if specified, is the value for the
23946variable `str' within the skeleton. When this is non-nil, the
23947interactor gets ignored, and this should be a valid skeleton element.
23948
23949SKELETON is made up as (INTERACTOR ELEMENT ...). INTERACTOR may be nil if
23950not needed, a prompt-string or an expression for complex read functions.
23951
23952If ELEMENT is a string or a character it gets inserted (see also
23953`skeleton-transformation'). Other possibilities are:
23954
23955 \\n go to next line and indent according to mode
2a55cd3a 23956 _ interesting point, interregion here
27a99a7c
GM
23957 - interesting point, no interregion interaction, overrides
23958 interesting point set by _
93548d2e
DL
23959 > indent line (or interregion if > _) according to major mode
23960 @ add position to `skeleton-positions'
f383cd0d
GM
23961 & do next ELEMENT iff previous moved point
23962 | do next ELEMENT iff previous didn't move point
93548d2e
DL
23963 -num delete num preceding characters (see `skeleton-untabify')
23964 resume: skipped, continue here if quit is signaled
23965 nil skipped
23966
27a99a7c
GM
23967After termination, point will be positioned at the last occurrence of -
23968or at the first occurrence of _ or at the end of the inserted text.
2a55cd3a 23969
93548d2e
DL
23970Further elements can be defined via `skeleton-further-elements'. ELEMENT may
23971itself be a SKELETON with an INTERACTOR. The user is prompted repeatedly for
23972different inputs. The SKELETON is processed as often as the user enters a
23973non-empty string. \\[keyboard-quit] terminates skeleton insertion, but
23974continues after `resume:' and positions at `_' if any. If INTERACTOR in such
23975a subskeleton is a prompt-string which contains a \".. %s ..\" it is
23976formatted with `skeleton-subprompt'. Such an INTERACTOR may also be a list of
23977strings with the subskeleton being repeated once for each string.
23978
23979Quoted Lisp expressions are evaluated for their side-effects.
23980Other Lisp expressions are evaluated and the value treated as above.
27a99a7c 23981Note that expressions may not return t since this implies an
93548d2e
DL
23982endless loop. Modes can define other symbols by locally setting them
23983to any valid skeleton element. The following local variables are
23984available:
23985
23986 str first time: read a string according to INTERACTOR
23987 then: insert previously read string once more
27a99a7c 23988 help help-form during interaction with the user or nil
93548d2e
DL
23989 input initial input (string or cons with index) while reading str
23990 v1, v2 local variables for memorizing anything you want
23991
23992When done with skeleton, but before going back to `_'-point call
27a99a7c 23993`skeleton-end-hook' if that is non-nil.
c595cc5f
MR
23994
23995\(fn SKELETON &optional REGIONS STR)" nil nil)
93548d2e
DL
23996
23997(autoload (quote skeleton-pair-insert-maybe) "skeleton" "\
23998Insert the character you type ARG times.
23999
24000With no ARG, if `skeleton-pair' is non-nil, pairing can occur. If the region
24001is visible the pair is wrapped around it depending on `skeleton-autowrap'.
24002Else, if `skeleton-pair-on-word' is non-nil or we are not before or inside a
24003word, and if `skeleton-pair-filter' returns nil, pairing is performed.
f383cd0d
GM
24004Pairing is also prohibited if we are right after a quoting character
24005such as backslash.
93548d2e
DL
24006
24007If a match is found in `skeleton-pair-alist', that is inserted, else
24008the defaults are used. These are (), [], {}, <> and `' for the
c595cc5f
MR
24009symmetrical ones, and the same character twice for the others.
24010
24011\(fn ARG)" t nil)
93548d2e
DL
24012
24013;;;***
24014\f
c595cc5f 24015;;;### (autoloads (smerge-mode smerge-ediff) "smerge-mode" "smerge-mode.el"
a5805c9d 24016;;;;;; (17279 27196))
5ec14d3c
KH
24017;;; Generated autoloads from smerge-mode.el
24018
c595cc5f
MR
24019(autoload (quote smerge-ediff) "smerge-mode" "\
24020Invoke ediff to resolve the conflicts.
24021NAME-MINE, NAME-OTHER, and NAME-BASE, if non-nil, are used for the
24022buffer names.
24023
24024\(fn &optional NAME-MINE NAME-OTHER NAME-BASE)" t nil)
24025
5ec14d3c
KH
24026(autoload (quote smerge-mode) "smerge-mode" "\
24027Minor mode to simplify editing output from the diff3 program.
c595cc5f
MR
24028\\{smerge-mode-map}
24029
24030\(fn &optional ARG)" t nil)
5ec14d3c
KH
24031
24032;;;***
24033\f
390069bc 24034;;;### (autoloads (smiley-buffer smiley-region) "smiley" "gnus/smiley.el"
a5805c9d 24035;;;;;; (17279 27122))
390069bc 24036;;; Generated autoloads from gnus/smiley.el
b442e70a 24037
390069bc
AS
24038(autoload (quote smiley-region) "smiley" "\
24039Replace in the region `smiley-regexp-alist' matches with corresponding images.
24040A list of images is returned.
c595cc5f
MR
24041
24042\(fn START END)" t nil)
b442e70a 24043
390069bc
AS
24044(autoload (quote smiley-buffer) "smiley" "\
24045Run `smiley-region' at the buffer, specified in the argument or
24046interactively. If there's no argument, do it at the current buffer
24047
24048\(fn &optional BUFFER)" t nil)
24049
b442e70a
MB
24050;;;***
24051\f
c595cc5f 24052;;;### (autoloads (smtpmail-send-queued-mail smtpmail-send-it) "smtpmail"
a5805c9d 24053;;;;;; "mail/smtpmail.el" (17374 21266))
93548d2e
DL
24054;;; Generated autoloads from mail/smtpmail.el
24055
c595cc5f
MR
24056(autoload (quote smtpmail-send-it) "smtpmail" "\
24057Not documented
24058
24059\(fn)" nil nil)
24060
24061(autoload (quote smtpmail-send-queued-mail) "smtpmail" "\
24062Send mail that was queued as a result of setting `smtpmail-queue-mail'.
24063
24064\(fn)" t nil)
93548d2e
DL
24065
24066;;;***
24067\f
a5805c9d 24068;;;### (autoloads (snake) "snake" "play/snake.el" (17279 27123))
93548d2e
DL
24069;;; Generated autoloads from play/snake.el
24070
24071(autoload (quote snake) "snake" "\
24072Play the Snake game.
24073Move the snake around without colliding with its tail or with the border.
24074
24075Eating dots causes the snake to get longer.
24076
a5e28954 24077Snake mode keybindings:
93548d2e
DL
24078 \\<snake-mode-map>
24079\\[snake-start-game] Starts a new game of Snake
24080\\[snake-end-game] Terminates the current game
24081\\[snake-pause-game] Pauses (or resumes) the current game
24082\\[snake-move-left] Makes the snake move left
24083\\[snake-move-right] Makes the snake move right
24084\\[snake-move-up] Makes the snake move up
c595cc5f
MR
24085\\[snake-move-down] Makes the snake move down
24086
24087\(fn)" t nil)
93548d2e
DL
24088
24089;;;***
24090\f
a25bbe00 24091;;;### (autoloads (snmpv2-mode snmp-mode) "snmp-mode" "net/snmp-mode.el"
a5805c9d 24092;;;;;; (17279 27123))
a25bbe00 24093;;; Generated autoloads from net/snmp-mode.el
93548d2e
DL
24094
24095(autoload (quote snmp-mode) "snmp-mode" "\
24096Major mode for editing SNMP MIBs.
24097Expression and list commands understand all C brackets.
24098Tab indents for C code.
24099Comments start with -- and end with newline or another --.
24100Delete converts tabs to spaces as it moves back.
24101\\{snmp-mode-map}
24102Turning on snmp-mode runs the hooks in `snmp-common-mode-hook', then
c595cc5f
MR
24103`snmp-mode-hook'.
24104
24105\(fn)" t nil)
93548d2e
DL
24106
24107(autoload (quote snmpv2-mode) "snmp-mode" "\
24108Major mode for editing SNMPv2 MIBs.
24109Expression and list commands understand all C brackets.
24110Tab indents for C code.
24111Comments start with -- and end with newline or another --.
24112Delete converts tabs to spaces as it moves back.
24113\\{snmp-mode-map}
24114Turning on snmp-mode runs the hooks in `snmp-common-mode-hook',
c595cc5f
MR
24115then `snmpv2-mode-hook'.
24116
24117\(fn)" t nil)
93548d2e
DL
24118
24119;;;***
24120\f
24121;;;### (autoloads (solar-equinoxes-solstices sunrise-sunset calendar-location-name
24122;;;;;; calendar-longitude calendar-latitude calendar-time-display-form)
a5805c9d 24123;;;;;; "solar" "calendar/solar.el" (17308 43144))
93548d2e
DL
24124;;; Generated autoloads from calendar/solar.el
24125
24126(defvar calendar-time-display-form (quote (12-hours ":" minutes am-pm (if time-zone " (") time-zone (if time-zone ")"))) "\
24127*The pseudo-pattern that governs the way a time of day is formatted.
24128
24129A pseudo-pattern is a list of expressions that can involve the keywords
f19e949b
KS
24130`12-hours', `24-hours', and `minutes', all numbers in string form,
24131and `am-pm' and `time-zone', both alphabetic strings.
93548d2e
DL
24132
24133For example, the form
24134
24135 '(24-hours \":\" minutes
24136 (if time-zone \" (\") time-zone (if time-zone \")\"))
24137
24138would give military-style times like `21:07 (UTC)'.")
24139
9c46b00a
MR
24140(custom-autoload (quote calendar-time-display-form) "solar")
24141
93548d2e
DL
24142(defvar calendar-latitude nil "\
24143*Latitude of `calendar-location-name' in degrees.
24144
24145The value can be either a decimal fraction (one place of accuracy is
24146sufficient), + north, - south, such as 40.7 for New York City, or the value
24147can be a vector [degrees minutes north/south] such as [40 50 north] for New
24148York City.
24149
24150This variable should be set in `site-start'.el.")
24151
9c46b00a
MR
24152(custom-autoload (quote calendar-latitude) "solar")
24153
93548d2e
DL
24154(defvar calendar-longitude nil "\
24155*Longitude of `calendar-location-name' in degrees.
24156
24157The value can be either a decimal fraction (one place of accuracy is
24158sufficient), + east, - west, such as -73.9 for New York City, or the value
24159can be a vector [degrees minutes east/west] such as [73 55 west] for New
24160York City.
24161
24162This variable should be set in `site-start'.el.")
24163
9c46b00a
MR
24164(custom-autoload (quote calendar-longitude) "solar")
24165
93548d2e
DL
24166(defvar calendar-location-name (quote (let ((float-output-format "%.1f")) (format "%s%s, %s%s" (if (numberp calendar-latitude) (abs calendar-latitude) (+ (aref calendar-latitude 0) (/ (aref calendar-latitude 1) 60.0))) (if (numberp calendar-latitude) (if (> calendar-latitude 0) "N" "S") (if (equal (aref calendar-latitude 2) (quote north)) "N" "S")) (if (numberp calendar-longitude) (abs calendar-longitude) (+ (aref calendar-longitude 0) (/ (aref calendar-longitude 1) 60.0))) (if (numberp calendar-longitude) (if (> calendar-longitude 0) "E" "W") (if (equal (aref calendar-longitude 2) (quote east)) "E" "W"))))) "\
24167*Expression evaluating to name of `calendar-longitude', `calendar-latitude'.
24168For example, \"New York City\". Default value is just the latitude, longitude
24169pair.
24170
24171This variable should be set in `site-start'.el.")
24172
9c46b00a
MR
24173(custom-autoload (quote calendar-location-name) "solar")
24174
93548d2e
DL
24175(autoload (quote sunrise-sunset) "solar" "\
24176Local time of sunrise and sunset for today. Accurate to a few seconds.
24177If called with an optional prefix argument, prompt for date.
24178
24179If called with an optional double prefix argument, prompt for longitude,
24180latitude, time zone, and date, and always use standard time.
24181
c595cc5f
MR
24182This function is suitable for execution in a .emacs file.
24183
24184\(fn &optional ARG)" t nil)
93548d2e
DL
24185
24186(autoload (quote solar-equinoxes-solstices) "solar" "\
24187*local* date and time of equinoxes and solstices, if visible in the calendar window.
c595cc5f
MR
24188Requires floating point.
24189
24190\(fn)" nil nil)
93548d2e
DL
24191
24192;;;***
24193\f
a5805c9d
KL
24194;;;### (autoloads (solitaire) "solitaire" "play/solitaire.el" (17279
24195;;;;;; 27123))
93548d2e
DL
24196;;; Generated autoloads from play/solitaire.el
24197
24198(autoload (quote solitaire) "solitaire" "\
24199Play Solitaire.
24200
24201To play Solitaire, type \\[solitaire].
24202\\<solitaire-mode-map>
24203Move around the board using the cursor keys.
24204Move stones using \\[solitaire-move] followed by a direction key.
24205Undo moves using \\[solitaire-undo].
24206Check for possible moves using \\[solitaire-do-check].
24207\(The variable `solitaire-auto-eval' controls whether to automatically
24208check after each move or undo)
24209
24210What is Solitaire?
24211
24212I don't know who invented this game, but it seems to be rather old and
24213its origin seems to be northern Africa. Here's how to play:
24214Initially, the board will look similar to this:
24215
821b278f
MR
24216 Le Solitaire
24217 ============
24218
24219 o o o
24220
24221 o o o
24222
93548d2e 24223 o o o o o o o
821b278f 24224
93548d2e 24225 o o o . o o o
821b278f 24226
93548d2e 24227 o o o o o o o
821b278f
MR
24228
24229 o o o
24230
24231 o o o
93548d2e
DL
24232
24233Let's call the o's stones and the .'s holes. One stone fits into one
24234hole. As you can see, all holes but one are occupied by stones. The
24235aim of the game is to get rid of all but one stone, leaving that last
24236one in the middle of the board if you're cool.
24237
24238A stone can be moved if there is another stone next to it, and a hole
24239after that one. Thus there must be three fields in a row, either
24240horizontally or vertically, up, down, left or right, which look like
24241this: o o .
24242
24243Then the first stone is moved to the hole, jumping over the second,
24244which therefore is taken away. The above thus `evaluates' to: . . o
24245
24246That's all. Here's the board after two moves:
24247
821b278f
MR
24248 o o o
24249
24250 . o o
24251
93548d2e 24252 o o . o o o o
821b278f 24253
93548d2e 24254 o . o o o o o
821b278f 24255
93548d2e 24256 o o o o o o o
821b278f
MR
24257
24258 o o o
24259
93548d2e
DL
24260 o o o
24261
24262Pick your favourite shortcuts:
24263
c595cc5f
MR
24264\\{solitaire-mode-map}
24265
24266\(fn ARG)" t nil)
93548d2e
DL
24267
24268;;;***
24269\f
24270;;;### (autoloads (reverse-region sort-columns sort-regexp-fields
24271;;;;;; sort-fields sort-numeric-fields sort-pages sort-paragraphs
a5805c9d 24272;;;;;; sort-lines sort-subr) "sort" "sort.el" (17279 27123))
93548d2e
DL
24273;;; Generated autoloads from sort.el
24274
24275(autoload (quote sort-subr) "sort" "\
24276General text sorting routine to divide buffer into records and sort them.
93548d2e
DL
24277
24278We divide the accessible portion of the buffer into disjoint pieces
24279called sort records. A portion of each sort record (perhaps all of
24280it) is designated as the sort key. The records are rearranged in the
24281buffer in order by their sort keys. The records may or may not be
24282contiguous.
24283
24284Usually the records are rearranged in order of ascending sort key.
24285If REVERSE is non-nil, they are rearranged in order of descending sort key.
24286The variable `sort-fold-case' determines whether alphabetic case affects
24287the sort order.
24288
24289The next four arguments are functions to be called to move point
24290across a sort record. They will be called many times from within sort-subr.
24291
24292NEXTRECFUN is called with point at the end of the previous record.
24293It moves point to the start of the next record.
24294It should move point to the end of the buffer if there are no more records.
24295The first record is assumed to start at the position of point when sort-subr
24296is called.
24297
24298ENDRECFUN is called with point within the record.
24299It should move point to the end of the record.
24300
24301STARTKEYFUN moves from the start of the record to the start of the key.
24302It may return either a non-nil value to be used as the key, or
24303else the key is the substring between the values of point after
24304STARTKEYFUN and ENDKEYFUN are called. If STARTKEYFUN is nil, the key
24305starts at the beginning of the record.
24306
24307ENDKEYFUN moves from the start of the sort key to the end of the sort key.
24308ENDKEYFUN may be nil if STARTKEYFUN returns a value or if it would be the
c595cc5f
MR
24309same as ENDRECFUN.
24310
27a99a7c
GM
24311PREDICATE is the function to use to compare keys. If keys are numbers,
24312it defaults to `<', otherwise it defaults to `string<'.
24313
24314\(fn REVERSE NEXTRECFUN ENDRECFUN &optional STARTKEYFUN ENDKEYFUN PREDICATE)" nil nil)
93548d2e
DL
24315
24316(autoload (quote sort-lines) "sort" "\
24317Sort lines in region alphabetically; argument means descending order.
24318Called from a program, there are three arguments:
24319REVERSE (non-nil means reverse order), BEG and END (region to sort).
24320The variable `sort-fold-case' determines whether alphabetic case affects
c595cc5f
MR
24321the sort order.
24322
24323\(fn REVERSE BEG END)" t nil)
93548d2e
DL
24324
24325(autoload (quote sort-paragraphs) "sort" "\
24326Sort paragraphs in region alphabetically; argument means descending order.
24327Called from a program, there are three arguments:
24328REVERSE (non-nil means reverse order), BEG and END (region to sort).
24329The variable `sort-fold-case' determines whether alphabetic case affects
c595cc5f
MR
24330the sort order.
24331
24332\(fn REVERSE BEG END)" t nil)
93548d2e
DL
24333
24334(autoload (quote sort-pages) "sort" "\
24335Sort pages in region alphabetically; argument means descending order.
24336Called from a program, there are three arguments:
24337REVERSE (non-nil means reverse order), BEG and END (region to sort).
24338The variable `sort-fold-case' determines whether alphabetic case affects
c595cc5f
MR
24339the sort order.
24340
24341\(fn REVERSE BEG END)" t nil)
93548d2e
DL
24342
24343(autoload (quote sort-numeric-fields) "sort" "\
24344Sort lines in region numerically by the ARGth field of each line.
24345Fields are separated by whitespace and numbered from 1 up.
2cb750ba
GM
24346Specified field must contain a number in each line of the region,
24347which may begin with \"0x\" or \"0\" for hexadecimal and octal values.
24348Otherwise, the number is interpreted according to sort-numeric-base.
93548d2e
DL
24349With a negative arg, sorts by the ARGth field counted from the right.
24350Called from a program, there are three arguments:
c595cc5f
MR
24351FIELD, BEG and END. BEG and END specify region to sort.
24352
24353\(fn FIELD BEG END)" t nil)
93548d2e
DL
24354
24355(autoload (quote sort-fields) "sort" "\
24356Sort lines in region lexicographically by the ARGth field of each line.
24357Fields are separated by whitespace and numbered from 1 up.
24358With a negative arg, sorts by the ARGth field counted from the right.
24359Called from a program, there are three arguments:
24360FIELD, BEG and END. BEG and END specify region to sort.
24361The variable `sort-fold-case' determines whether alphabetic case affects
c595cc5f
MR
24362the sort order.
24363
24364\(fn FIELD BEG END)" t nil)
93548d2e
DL
24365
24366(autoload (quote sort-regexp-fields) "sort" "\
24367Sort the region lexicographically as specified by RECORD-REGEXP and KEY.
24368RECORD-REGEXP specifies the textual units which should be sorted.
24369 For example, to sort lines RECORD-REGEXP would be \"^.*$\"
24370KEY specifies the part of each record (ie each match for RECORD-REGEXP)
24371 is to be used for sorting.
24372 If it is \"\\\\digit\" then the digit'th \"\\\\(...\\\\)\" match field from
24373 RECORD-REGEXP is used.
24374 If it is \"\\\\&\" then the whole record is used.
24375 Otherwise, it is a regular-expression for which to search within the record.
24376If a match for KEY is not found within a record then that record is ignored.
24377
24378With a negative prefix arg sorts in reverse order.
24379
24380The variable `sort-fold-case' determines whether alphabetic case affects
24381the sort order.
24382
24383For example: to sort lines in the region by the first word on each line
24384 starting with the letter \"f\",
c595cc5f
MR
24385 RECORD-REGEXP would be \"^.*$\" and KEY would be \"\\\\=\\<f\\\\w*\\\\>\"
24386
24387\(fn REVERSE RECORD-REGEXP KEY-REGEXP BEG END)" t nil)
93548d2e
DL
24388
24389(autoload (quote sort-columns) "sort" "\
24390Sort lines in region alphabetically by a certain range of columns.
6c083b4c 24391For the purpose of this command, the region BEG...END includes
93548d2e
DL
24392the entire line that point is in and the entire line the mark is in.
24393The column positions of point and mark bound the range of columns to sort on.
6c083b4c 24394A prefix argument means sort into REVERSE order.
93548d2e
DL
24395The variable `sort-fold-case' determines whether alphabetic case affects
24396the sort order.
24397
24398Note that `sort-columns' rejects text that contains tabs,
24399because tabs could be split across the specified columns
24400and it doesn't know how to handle that. Also, when possible,
24401it uses the `sort' utility program, which doesn't understand tabs.
c595cc5f
MR
24402Use \\[untabify] to convert tabs to spaces before sorting.
24403
24404\(fn REVERSE &optional BEG END)" t nil)
93548d2e
DL
24405
24406(autoload (quote reverse-region) "sort" "\
24407Reverse the order of lines in a region.
c595cc5f
MR
24408From a program takes two point or marker arguments, BEG and END.
24409
24410\(fn BEG END)" t nil)
93548d2e
DL
24411
24412;;;***
24413\f
a5805c9d
KL
24414;;;### (autoloads (spam-initialize) "spam" "gnus/spam.el" (17374
24415;;;;;; 21275))
390069bc
AS
24416;;; Generated autoloads from gnus/spam.el
24417
24418(autoload (quote spam-initialize) "spam" "\
24419Install the spam.el hooks and do other initialization
24420
24421\(fn)" t nil)
24422
24423;;;***
24424\f
d66d64bc
KL
24425;;;### (autoloads (spam-report-deagentize spam-report-agentize spam-report-url-to-file
24426;;;;;; spam-report-url-ping-mm-url spam-report-process-queue) "spam-report"
a5805c9d 24427;;;;;; "gnus/spam-report.el" (17279 27171))
d66d64bc
KL
24428;;; Generated autoloads from gnus/spam-report.el
24429
24430(autoload (quote spam-report-process-queue) "spam-report" "\
24431Report all queued requests from `spam-report-requests-file'.
24432
24433If FILE is given, use it instead of `spam-report-requests-file'.
24434If KEEP is t, leave old requests in the file. If KEEP is the
24435symbol `ask', query before flushing the queue file.
24436
24437\(fn &optional FILE KEEP)" t nil)
24438
24439(autoload (quote spam-report-url-ping-mm-url) "spam-report" "\
24440Ping a host through HTTP, addressing a specific GET resource. Use
24441the external program specified in `mm-url-program' to connect to
24442server.
24443
24444\(fn HOST REPORT)" nil nil)
24445
24446(autoload (quote spam-report-url-to-file) "spam-report" "\
24447Collect spam report requests in `spam-report-requests-file'.
24448Customize `spam-report-url-ping-function' to use this function.
24449
24450\(fn HOST REPORT)" nil nil)
24451
24452(autoload (quote spam-report-agentize) "spam-report" "\
24453Add spam-report support to the Agent.
24454Spam reports will be queued with \\[spam-report-url-to-file] when
24455the Agent is unplugged, and will be submitted in a batch when the
24456Agent is plugged.
24457
24458\(fn)" t nil)
24459
24460(autoload (quote spam-report-deagentize) "spam-report" "\
24461Remove spam-report support from the Agent.
24462Spam reports will be queued with the method used when
24463\\[spam-report-agentize] was run.
24464
24465\(fn)" t nil)
24466
24467;;;***
24468\f
93548d2e 24469;;;### (autoloads (speedbar-get-focus speedbar-frame-mode) "speedbar"
a5805c9d 24470;;;;;; "speedbar.el" (17297 42917))
93548d2e
DL
24471;;; Generated autoloads from speedbar.el
24472
24473(defalias (quote speedbar) (quote speedbar-frame-mode))
24474
24475(autoload (quote speedbar-frame-mode) "speedbar" "\
24476Enable or disable speedbar. Positive ARG means turn on, negative turn off.
24477nil means toggle. Once the speedbar frame is activated, a buffer in
24478`speedbar-mode' will be displayed. Currently, only one speedbar is
24479supported at a time.
24480`speedbar-before-popup-hook' is called before popping up the speedbar frame.
c595cc5f
MR
24481`speedbar-before-delete-hook' is called before the frame is deleted.
24482
24483\(fn &optional ARG)" t nil)
93548d2e
DL
24484
24485(autoload (quote speedbar-get-focus) "speedbar" "\
24486Change frame focus to or from the speedbar frame.
24487If the selected frame is not speedbar, then speedbar frame is
c595cc5f
MR
24488selected. If the speedbar frame is active, then select the attached frame.
24489
24490\(fn)" t nil)
93548d2e
DL
24491
24492;;;***
24493\f
24494;;;### (autoloads (spell-string spell-region spell-word spell-buffer)
a5805c9d 24495;;;;;; "spell" "textmodes/spell.el" (17279 27123))
93548d2e
DL
24496;;; Generated autoloads from textmodes/spell.el
24497
24498(put (quote spell-filter) (quote risky-local-variable) t)
24499
24500(autoload (quote spell-buffer) "spell" "\
24501Check spelling of every word in the buffer.
24502For each incorrect word, you are asked for the correct spelling
24503and then put into a query-replace to fix some or all occurrences.
24504If you do not want to change a word, just give the same word
c595cc5f
MR
24505as its \"correct\" spelling; then the query replace is skipped.
24506
24507\(fn)" t nil)
93548d2e
DL
24508
24509(autoload (quote spell-word) "spell" "\
24510Check spelling of word at or before point.
24511If it is not correct, ask user for the correct spelling
c595cc5f
MR
24512and `query-replace' the entire buffer to substitute it.
24513
24514\(fn)" t nil)
93548d2e
DL
24515
24516(autoload (quote spell-region) "spell" "\
24517Like `spell-buffer' but applies only to region.
24518Used in a program, applies from START to END.
24519DESCRIPTION is an optional string naming the unit being checked:
c595cc5f
MR
24520for example, \"word\".
24521
24522\(fn START END &optional DESCRIPTION)" t nil)
93548d2e
DL
24523
24524(autoload (quote spell-string) "spell" "\
c595cc5f
MR
24525Check spelling of string supplied as argument.
24526
24527\(fn STRING)" t nil)
93548d2e
DL
24528
24529;;;***
24530\f
a5805c9d
KL
24531;;;### (autoloads (snarf-spooks spook) "spook" "play/spook.el" (17279
24532;;;;;; 27123))
93548d2e
DL
24533;;; Generated autoloads from play/spook.el
24534
24535(autoload (quote spook) "spook" "\
c595cc5f
MR
24536Adds that special touch of class to your outgoing mail.
24537
24538\(fn)" t nil)
93548d2e
DL
24539
24540(autoload (quote snarf-spooks) "spook" "\
c595cc5f
MR
24541Return a vector containing the lines from `spook-phrases-file'.
24542
24543\(fn)" nil nil)
93548d2e
DL
24544
24545;;;***
24546\f
ac42d7b9 24547;;;### (autoloads (sql-linter sql-db2 sql-interbase sql-postgres
27a99a7c 24548;;;;;; sql-ms sql-ingres sql-solid sql-mysql sql-sqlite sql-informix
932a6f0f 24549;;;;;; sql-sybase sql-oracle sql-product-interactive sql-mode sql-help
a5805c9d
KL
24550;;;;;; sql-add-product-keywords) "sql" "progmodes/sql.el" (17279
24551;;;;;; 27123))
93548d2e
DL
24552;;; Generated autoloads from progmodes/sql.el
24553
932a6f0f 24554(autoload (quote sql-add-product-keywords) "sql" "\
390069bc
AS
24555Add highlighting KEYWORDS for SQL PRODUCT.
24556
24557PRODUCT should be a symbol, the name of a sql product, such as
24558`oracle'. KEYWORDS should be a list; see the variable
24559`font-lock-keywords'. By default they are added at the beginning
24560of the current highlighting list. If optional argument APPEND is
24561`set', they are used to replace the current highlighting list.
24562If APPEND is any other non-nil value, they are added at the end
24563of the current highlighting list.
24564
24565For example:
24566
24567 (sql-add-product-keywords 'ms
24568 '((\"\\\\b\\\\w+_t\\\\b\" . font-lock-type-face)))
932a6f0f 24569
390069bc
AS
24570adds a fontification pattern to fontify identifiers ending in
24571`_t' as data types.
24572
24573\(fn PRODUCT KEYWORDS &optional APPEND)" nil nil)
932a6f0f 24574
93548d2e 24575(autoload (quote sql-help) "sql" "\
7518ed7b 24576Show short help for the SQL modes.
93548d2e
DL
24577
24578Use an entry function to open an interactive SQL buffer. This buffer is
24579usually named `*SQL*'. The name of the major mode is SQLi.
24580
24581Use the following commands to start a specific SQL interpreter:
24582
24583 PostGres: \\[sql-postgres]
8d8d8d4e 24584 MySQL: \\[sql-mysql]
27a99a7c 24585 SQLite: \\[sql-sqlite]
93548d2e
DL
24586
24587Other non-free SQL implementations are also supported:
24588
93548d2e
DL
24589 Solid: \\[sql-solid]
24590 Oracle: \\[sql-oracle]
24591 Informix: \\[sql-informix]
24592 Sybase: \\[sql-sybase]
24593 Ingres: \\[sql-ingres]
24594 Microsoft: \\[sql-ms]
932a6f0f 24595 DB2: \\[sql-db2]
b5c5b319 24596 Interbase: \\[sql-interbase]
ac42d7b9 24597 Linter: \\[sql-linter]
93548d2e
DL
24598
24599But we urge you to choose a free implementation instead of these.
24600
24601Once you have the SQLi buffer, you can enter SQL statements in the
24602buffer. The output generated is appended to the buffer and a new prompt
24603is generated. See the In/Out menu in the SQLi buffer for some functions
24604that help you navigate through the buffer, the input history, etc.
24605
93548d2e
DL
24606If you have a really complex SQL statement or if you are writing a
24607procedure, you can do this in a separate buffer. Put the new buffer in
24608`sql-mode' by calling \\[sql-mode]. The name of this buffer can be
24609anything. The name of the major mode is SQL.
24610
24611In this SQL buffer (SQL mode), you can send the region or the entire
24612buffer to the interactive SQL buffer (SQLi mode). The results are
c595cc5f
MR
24613appended to the SQLi buffer without disturbing your SQL buffer.
24614
24615\(fn)" t nil)
93548d2e
DL
24616
24617(autoload (quote sql-mode) "sql" "\
24618Major mode to edit SQL.
24619
24620You can send SQL statements to the SQLi buffer using
24621\\[sql-send-region]. Such a buffer must exist before you can do this.
24622See `sql-help' on how to create SQLi buffers.
24623
7518ed7b 24624\\{sql-mode-map}
93548d2e
DL
24625Customization: Entry to this mode runs the `sql-mode-hook'.
24626
24627When you put a buffer in SQL mode, the buffer stores the last SQLi
24628buffer created as its destination in the variable `sql-buffer'. This
24629will be the buffer \\[sql-send-region] sends the region to. If this
24630SQLi buffer is killed, \\[sql-send-region] is no longer able to
24631determine where the strings should be sent to. You can set the
24632value of `sql-buffer' using \\[sql-set-sqli-buffer].
24633
24634For information on how to create multiple SQLi buffers, see
8d8d8d4e
EZ
24635`sql-interactive-mode'.
24636
24637Note that SQL doesn't have an escape character unless you specify
24638one. If you specify backslash as escape character in SQL,
24639you must tell Emacs. Here's how to do that in your `~/.emacs' file:
24640
24641\(add-hook 'sql-mode-hook
24642 (lambda ()
c595cc5f
MR
24643 (modify-syntax-entry ?\\\\ \".\" sql-mode-syntax-table)))
24644
24645\(fn)" t nil)
93548d2e 24646
932a6f0f
AS
24647(autoload (quote sql-product-interactive) "sql" "\
24648Run product interpreter as an inferior process.
24649
24650If buffer `*SQL*' exists but no process is running, make a new process.
24651If buffer exists and a process is running, just switch to buffer
24652`*SQL*'.
24653
24654\(Type \\[describe-mode] in the SQL buffer for a list of commands.)
24655
24656\(fn &optional PRODUCT)" t nil)
24657
abb2db1c
GM
24658(autoload (quote sql-oracle) "sql" "\
24659Run sqlplus by Oracle as an inferior process.
24660
24661If buffer `*SQL*' exists but no process is running, make a new process.
24662If buffer exists and a process is running, just switch to buffer
24663`*SQL*'.
24664
24665Interpreter used comes from variable `sql-oracle-program'. Login uses
24666the variables `sql-user', `sql-password', and `sql-database' as
24667defaults, if set. Additional command line parameters can be stored in
24668the list `sql-oracle-options'.
24669
24670The buffer is put in sql-interactive-mode, giving commands for sending
24671input. See `sql-interactive-mode'.
24672
24673To specify a coding system for converting non-ASCII characters
24674in the input and output to the process, use \\[universal-coding-system-argument]
24675before \\[sql-oracle]. You can also specify this with \\[set-buffer-process-coding-system]
24676in the SQL buffer, after you start the process.
24677The default comes from `process-coding-system-alist' and
24678`default-process-coding-system'.
24679
c595cc5f
MR
24680\(Type \\[describe-mode] in the SQL buffer for a list of commands.)
24681
24682\(fn)" t nil)
abb2db1c
GM
24683
24684(autoload (quote sql-sybase) "sql" "\
24685Run isql by SyBase as an inferior process.
24686
24687If buffer `*SQL*' exists but no process is running, make a new process.
24688If buffer exists and a process is running, just switch to buffer
24689`*SQL*'.
24690
24691Interpreter used comes from variable `sql-sybase-program'. Login uses
0ad84a21 24692the variables `sql-server', `sql-user', `sql-password', and
75dfe990
GM
24693`sql-database' as defaults, if set. Additional command line parameters
24694can be stored in the list `sql-sybase-options'.
abb2db1c
GM
24695
24696The buffer is put in sql-interactive-mode, giving commands for sending
24697input. See `sql-interactive-mode'.
24698
24699To specify a coding system for converting non-ASCII characters
24700in the input and output to the process, use \\[universal-coding-system-argument]
24701before \\[sql-sybase]. You can also specify this with \\[set-buffer-process-coding-system]
24702in the SQL buffer, after you start the process.
24703The default comes from `process-coding-system-alist' and
24704`default-process-coding-system'.
24705
c595cc5f
MR
24706\(Type \\[describe-mode] in the SQL buffer for a list of commands.)
24707
24708\(fn)" t nil)
abb2db1c
GM
24709
24710(autoload (quote sql-informix) "sql" "\
24711Run dbaccess by Informix as an inferior process.
24712
24713If buffer `*SQL*' exists but no process is running, make a new process.
24714If buffer exists and a process is running, just switch to buffer
24715`*SQL*'.
24716
24717Interpreter used comes from variable `sql-informix-program'. Login uses
24718the variable `sql-database' as default, if set.
24719
24720The buffer is put in sql-interactive-mode, giving commands for sending
24721input. See `sql-interactive-mode'.
24722
24723To specify a coding system for converting non-ASCII characters
24724in the input and output to the process, use \\[universal-coding-system-argument]
24725before \\[sql-informix]. You can also specify this with \\[set-buffer-process-coding-system]
24726in the SQL buffer, after you start the process.
24727The default comes from `process-coding-system-alist' and
24728`default-process-coding-system'.
24729
c595cc5f
MR
24730\(Type \\[describe-mode] in the SQL buffer for a list of commands.)
24731
24732\(fn)" t nil)
abb2db1c 24733
27a99a7c
GM
24734(autoload (quote sql-sqlite) "sql" "\
24735Run sqlite as an inferior process.
24736
24737SQLite is free software.
24738
24739If buffer `*SQL*' exists but no process is running, make a new process.
24740If buffer exists and a process is running, just switch to buffer
24741`*SQL*'.
24742
24743Interpreter used comes from variable `sql-sqlite-program'. Login uses
24744the variables `sql-user', `sql-password', `sql-database', and
24745`sql-server' as defaults, if set. Additional command line parameters
24746can be stored in the list `sql-sqlite-options'.
24747
24748The buffer is put in sql-interactive-mode, giving commands for sending
24749input. See `sql-interactive-mode'.
24750
24751To specify a coding system for converting non-ASCII characters
24752in the input and output to the process, use \\[universal-coding-system-argument]
24753before \\[sql-sqlite]. You can also specify this with \\[set-buffer-process-coding-system]
24754in the SQL buffer, after you start the process.
24755The default comes from `process-coding-system-alist' and
24756`default-process-coding-system'.
24757
24758\(Type \\[describe-mode] in the SQL buffer for a list of commands.)
24759
24760\(fn)" t nil)
24761
abb2db1c
GM
24762(autoload (quote sql-mysql) "sql" "\
24763Run mysql by TcX as an inferior process.
24764
8d8d8d4e 24765Mysql versions 3.23 and up are free software.
abb2db1c
GM
24766
24767If buffer `*SQL*' exists but no process is running, make a new process.
24768If buffer exists and a process is running, just switch to buffer
24769`*SQL*'.
24770
24771Interpreter used comes from variable `sql-mysql-program'. Login uses
24772the variables `sql-user', `sql-password', `sql-database', and
75dfe990
GM
24773`sql-server' as defaults, if set. Additional command line parameters
24774can be stored in the list `sql-mysql-options'.
abb2db1c
GM
24775
24776The buffer is put in sql-interactive-mode, giving commands for sending
24777input. See `sql-interactive-mode'.
24778
24779To specify a coding system for converting non-ASCII characters
24780in the input and output to the process, use \\[universal-coding-system-argument]
24781before \\[sql-mysql]. You can also specify this with \\[set-buffer-process-coding-system]
24782in the SQL buffer, after you start the process.
24783The default comes from `process-coding-system-alist' and
24784`default-process-coding-system'.
24785
c595cc5f
MR
24786\(Type \\[describe-mode] in the SQL buffer for a list of commands.)
24787
24788\(fn)" t nil)
abb2db1c
GM
24789
24790(autoload (quote sql-solid) "sql" "\
24791Run solsql by Solid as an inferior process.
24792
24793If buffer `*SQL*' exists but no process is running, make a new process.
24794If buffer exists and a process is running, just switch to buffer
24795`*SQL*'.
24796
24797Interpreter used comes from variable `sql-solid-program'. Login uses
24798the variables `sql-user', `sql-password', and `sql-server' as
24799defaults, if set.
24800
24801The buffer is put in sql-interactive-mode, giving commands for sending
24802input. See `sql-interactive-mode'.
24803
24804To specify a coding system for converting non-ASCII characters
24805in the input and output to the process, use \\[universal-coding-system-argument]
24806before \\[sql-solid]. You can also specify this with \\[set-buffer-process-coding-system]
24807in the SQL buffer, after you start the process.
24808The default comes from `process-coding-system-alist' and
24809`default-process-coding-system'.
24810
c595cc5f
MR
24811\(Type \\[describe-mode] in the SQL buffer for a list of commands.)
24812
24813\(fn)" t nil)
abb2db1c
GM
24814
24815(autoload (quote sql-ingres) "sql" "\
24816Run sql by Ingres as an inferior process.
24817
24818If buffer `*SQL*' exists but no process is running, make a new process.
24819If buffer exists and a process is running, just switch to buffer
24820`*SQL*'.
24821
24822Interpreter used comes from variable `sql-ingres-program'. Login uses
24823the variable `sql-database' as default, if set.
24824
24825The buffer is put in sql-interactive-mode, giving commands for sending
24826input. See `sql-interactive-mode'.
24827
24828To specify a coding system for converting non-ASCII characters
24829in the input and output to the process, use \\[universal-coding-system-argument]
24830before \\[sql-ingres]. You can also specify this with \\[set-buffer-process-coding-system]
24831in the SQL buffer, after you start the process.
24832The default comes from `process-coding-system-alist' and
24833`default-process-coding-system'.
24834
c595cc5f
MR
24835\(Type \\[describe-mode] in the SQL buffer for a list of commands.)
24836
24837\(fn)" t nil)
abb2db1c
GM
24838
24839(autoload (quote sql-ms) "sql" "\
932a6f0f 24840Run osql by Microsoft as an inferior process.
abb2db1c
GM
24841
24842If buffer `*SQL*' exists but no process is running, make a new process.
24843If buffer exists and a process is running, just switch to buffer
24844`*SQL*'.
24845
24846Interpreter used comes from variable `sql-ms-program'. Login uses the
24847variables `sql-user', `sql-password', `sql-database', and `sql-server'
ac42d7b9
KG
24848as defaults, if set. Additional command line parameters can be stored
24849in the list `sql-ms-options'.
abb2db1c
GM
24850
24851The buffer is put in sql-interactive-mode, giving commands for sending
24852input. See `sql-interactive-mode'.
24853
24854To specify a coding system for converting non-ASCII characters
24855in the input and output to the process, use \\[universal-coding-system-argument]
24856before \\[sql-ms]. You can also specify this with \\[set-buffer-process-coding-system]
24857in the SQL buffer, after you start the process.
24858The default comes from `process-coding-system-alist' and
24859`default-process-coding-system'.
24860
c595cc5f
MR
24861\(Type \\[describe-mode] in the SQL buffer for a list of commands.)
24862
24863\(fn)" t nil)
abb2db1c 24864
93548d2e
DL
24865(autoload (quote sql-postgres) "sql" "\
24866Run psql by Postgres as an inferior process.
24867
24868If buffer `*SQL*' exists but no process is running, make a new process.
24869If buffer exists and a process is running, just switch to buffer
24870`*SQL*'.
24871
24872Interpreter used comes from variable `sql-postgres-program'. Login uses
24873the variables `sql-database' and `sql-server' as default, if set.
75dfe990
GM
24874Additional command line parameters can be stored in the list
24875`sql-postgres-options'.
93548d2e
DL
24876
24877The buffer is put in sql-interactive-mode, giving commands for sending
24878input. See `sql-interactive-mode'.
24879
24880To specify a coding system for converting non-ASCII characters
24881in the input and output to the process, use \\[universal-coding-system-argument]
24882before \\[sql-postgres]. You can also specify this with \\[set-buffer-process-coding-system]
24883in the SQL buffer, after you start the process.
24884The default comes from `process-coding-system-alist' and
7518ed7b 24885`default-process-coding-system'. If your output lines end with ^M,
93548d2e
DL
24886your might try undecided-dos as a coding system. If this doesn't help,
24887Try to set `comint-output-filter-functions' like this:
24888
24889\(setq comint-output-filter-functions (append comint-output-filter-functions
24890 '(comint-strip-ctrl-m)))
24891
c595cc5f
MR
24892\(Type \\[describe-mode] in the SQL buffer for a list of commands.)
24893
24894\(fn)" t nil)
93548d2e 24895
f383cd0d
GM
24896(autoload (quote sql-interbase) "sql" "\
24897Run isql by Interbase as an inferior process.
24898
24899If buffer `*SQL*' exists but no process is running, make a new process.
24900If buffer exists and a process is running, just switch to buffer
24901`*SQL*'.
24902
24903Interpreter used comes from variable `sql-interbase-program'. Login
24904uses the variables `sql-user', `sql-password', and `sql-database' as
24905defaults, if set.
24906
24907The buffer is put in sql-interactive-mode, giving commands for sending
24908input. See `sql-interactive-mode'.
24909
24910To specify a coding system for converting non-ASCII characters
24911in the input and output to the process, use \\[universal-coding-system-argument]
24912before \\[sql-interbase]. You can also specify this with \\[set-buffer-process-coding-system]
24913in the SQL buffer, after you start the process.
24914The default comes from `process-coding-system-alist' and
24915`default-process-coding-system'.
24916
c595cc5f
MR
24917\(Type \\[describe-mode] in the SQL buffer for a list of commands.)
24918
24919\(fn)" t nil)
f383cd0d 24920
b5c5b319
GM
24921(autoload (quote sql-db2) "sql" "\
24922Run db2 by IBM as an inferior process.
24923
24924If buffer `*SQL*' exists but no process is running, make a new process.
24925If buffer exists and a process is running, just switch to buffer
24926`*SQL*'.
24927
24928Interpreter used comes from variable `sql-db2-program'. There is not
24929automatic login.
24930
24931The buffer is put in sql-interactive-mode, giving commands for sending
24932input. See `sql-interactive-mode'.
24933
a67b854e
GM
24934If you use \\[sql-accumulate-and-indent] to send multiline commands to
24935db2, newlines will be escaped if necessary. If you don't want that, set
24936`comint-input-sender' back to `comint-simple-send' by writing an after
24937advice. See the elisp manual for more information.
b5c5b319
GM
24938
24939To specify a coding system for converting non-ASCII characters
24940in the input and output to the process, use \\[universal-coding-system-argument]
24941before \\[sql-db2]. You can also specify this with \\[set-buffer-process-coding-system]
24942in the SQL buffer, after you start the process.
24943The default comes from `process-coding-system-alist' and
24944`default-process-coding-system'.
24945
c595cc5f
MR
24946\(Type \\[describe-mode] in the SQL buffer for a list of commands.)
24947
24948\(fn)" t nil)
b5c5b319 24949
ac42d7b9
KG
24950(autoload (quote sql-linter) "sql" "\
24951Run inl by RELEX as an inferior process.
24952
24953If buffer `*SQL*' exists but no process is running, make a new process.
24954If buffer exists and a process is running, just switch to buffer
24955`*SQL*'.
24956
24957Interpreter used comes from variable `sql-linter-program' - usually `inl'.
24958Login uses the variables `sql-user', `sql-password', `sql-database' and
24959`sql-server' as defaults, if set. Additional command line parameters
24960can be stored in the list `sql-linter-options'. Run inl -h to get help on
24961parameters.
24962
24963`sql-database' is used to set the LINTER_MBX environment variable for
24964local connections, `sql-server' refers to the server name from the
24965`nodetab' file for the network connection (dbc_tcp or friends must run
24966for this to work). If `sql-password' is an empty string, inl will use
24967an empty password.
24968
24969The buffer is put in sql-interactive-mode, giving commands for sending
24970input. See `sql-interactive-mode'.
24971
ac42d7b9
KG
24972\(Type \\[describe-mode] in the SQL buffer for a list of commands.)
24973
24974\(fn)" t nil)
24975
93548d2e
DL
24976;;;***
24977\f
b442e70a
MB
24978;;;### (autoloads (strokes-compose-complex-stroke strokes-decode-buffer
24979;;;;;; strokes-mode strokes-list-strokes strokes-load-user-strokes
24980;;;;;; strokes-help strokes-describe-stroke strokes-do-complex-stroke
24981;;;;;; strokes-do-stroke strokes-read-complex-stroke strokes-read-stroke
a5805c9d
KL
24982;;;;;; strokes-global-set-stroke) "strokes" "strokes.el" (17279
24983;;;;;; 27172))
93548d2e
DL
24984;;; Generated autoloads from strokes.el
24985
93548d2e
DL
24986(autoload (quote strokes-global-set-stroke) "strokes" "\
24987Interactively give STROKE the global binding as COMMAND.
24988Operated just like `global-set-key', except for strokes.
24989COMMAND is a symbol naming an interactively-callable function. STROKE
24990is a list of sampled positions on the stroke grid as described in the
c595cc5f
MR
24991documentation for the `strokes-define-stroke' function.
24992
390069bc
AS
24993See also `strokes-global-set-stroke-string'.
24994
c595cc5f 24995\(fn STROKE COMMAND)" t nil)
93548d2e 24996
93548d2e
DL
24997(autoload (quote strokes-read-stroke) "strokes" "\
24998Read a simple stroke (interactively) and return the stroke.
24999Optional PROMPT in minibuffer displays before and during stroke reading.
25000This function will display the stroke interactively as it is being
25001entered in the strokes buffer if the variable
25002`strokes-use-strokes-buffer' is non-nil.
0ef3cc90 25003Optional EVENT is acceptable as the starting event of the stroke.
c595cc5f
MR
25004
25005\(fn &optional PROMPT EVENT)" nil nil)
93548d2e
DL
25006
25007(autoload (quote strokes-read-complex-stroke) "strokes" "\
25008Read a complex stroke (interactively) and return the stroke.
25009Optional PROMPT in minibuffer displays before and during stroke reading.
25010Note that a complex stroke allows the user to pen-up and pen-down. This
38747ec6
KS
25011is implemented by allowing the user to paint with button 1 or button 2 and
25012then complete the stroke with button 3.
0ef3cc90 25013Optional EVENT is acceptable as the starting event of the stroke.
c595cc5f
MR
25014
25015\(fn &optional PROMPT EVENT)" nil nil)
93548d2e
DL
25016
25017(autoload (quote strokes-do-stroke) "strokes" "\
b9d9655c 25018Read a simple stroke from the user and then execute its command.
c595cc5f
MR
25019This must be bound to a mouse event.
25020
25021\(fn EVENT)" t nil)
93548d2e
DL
25022
25023(autoload (quote strokes-do-complex-stroke) "strokes" "\
b9d9655c 25024Read a complex stroke from the user and then execute its command.
c595cc5f
MR
25025This must be bound to a mouse event.
25026
25027\(fn EVENT)" t nil)
93548d2e
DL
25028
25029(autoload (quote strokes-describe-stroke) "strokes" "\
c595cc5f
MR
25030Displays the command which STROKE maps to, reading STROKE interactively.
25031
25032\(fn STROKE)" t nil)
93548d2e 25033
93548d2e 25034(autoload (quote strokes-help) "strokes" "\
0ef3cc90 25035Get instruction on using the Strokes package.
c595cc5f
MR
25036
25037\(fn)" t nil)
93548d2e
DL
25038
25039(autoload (quote strokes-load-user-strokes) "strokes" "\
c595cc5f
MR
25040Load user-defined strokes from file named by `strokes-file'.
25041
25042\(fn)" t nil)
93548d2e 25043
b442e70a
MB
25044(autoload (quote strokes-list-strokes) "strokes" "\
25045Pop up a buffer containing an alphabetical listing of strokes in STROKES-MAP.
25046With CHRONOLOGICAL prefix arg (\\[universal-argument]) list strokes
25047chronologically by command name.
c595cc5f
MR
25048If STROKES-MAP is not given, `strokes-global-map' will be used instead.
25049
25050\(fn &optional CHRONOLOGICAL STROKES-MAP)" t nil)
b442e70a 25051
38747ec6
KS
25052(defvar strokes-mode nil "\
25053Non-nil if Strokes mode is enabled.
25054See the command `strokes-mode' for a description of this minor-mode.
25055Setting this variable directly does not take effect;
25056use either \\[customize] or the function `strokes-mode'.")
25057
9c46b00a 25058(custom-autoload (quote strokes-mode) "strokes")
93548d2e 25059
ac09dc1e
KL
25060(put (quote strokes-mode) (quote custom-set) (quote custom-set-minor-mode))
25061
38747ec6
KS
25062(autoload (quote strokes-mode) "strokes" "\
25063Toggle Strokes global minor mode.\\<strokes-mode-map>
25064With ARG, turn strokes on if and only if ARG is positive.
25065Strokes are pictographic mouse gestures which invoke commands.
25066Strokes are invoked with \\[strokes-do-stroke]. You can define
25067new strokes with \\[strokes-global-set-stroke]. See also
25068\\[strokes-do-complex-stroke] for `complex' strokes.
93548d2e
DL
25069
25070To use strokes for pictographic editing, such as Chinese/Japanese, use
38747ec6
KS
25071\\[strokes-compose-complex-stroke], which draws strokes and inserts them.
25072Encode/decode your strokes with \\[strokes-encode-buffer],
25073\\[strokes-decode-buffer].
93548d2e 25074
c595cc5f
MR
25075\\{strokes-mode-map}
25076
25077\(fn &optional ARG)" t nil)
93548d2e 25078
b442e70a
MB
25079(autoload (quote strokes-decode-buffer) "strokes" "\
25080Decode stroke strings in BUFFER and display their corresponding glyphs.
25081Optional BUFFER defaults to the current buffer.
c595cc5f
MR
25082Optional FORCE non-nil will ignore the buffer's read-only status.
25083
25084\(fn &optional BUFFER FORCE)" t nil)
b442e70a
MB
25085
25086(autoload (quote strokes-compose-complex-stroke) "strokes" "\
c595cc5f
MR
25087Read a complex stroke and insert its glyph into the current buffer.
25088
25089\(fn)" t nil)
b442e70a 25090
93548d2e
DL
25091;;;***
25092\f
8d8d8d4e 25093;;;### (autoloads (studlify-buffer studlify-word studlify-region)
a5805c9d 25094;;;;;; "studly" "play/studly.el" (17279 27079))
0ad84a21
MB
25095;;; Generated autoloads from play/studly.el
25096
25097(autoload (quote studlify-region) "studly" "\
c595cc5f
MR
25098Studlify-case the region.
25099
25100\(fn BEGIN END)" t nil)
0ad84a21
MB
25101
25102(autoload (quote studlify-word) "studly" "\
c595cc5f
MR
25103Studlify-case the current word, or COUNT words if given an argument.
25104
25105\(fn COUNT)" t nil)
8d8d8d4e
EZ
25106
25107(autoload (quote studlify-buffer) "studly" "\
c595cc5f
MR
25108Studlify-case the current buffer.
25109
25110\(fn)" t nil)
0ad84a21
MB
25111
25112;;;***
25113\f
a5805c9d 25114;;;### (autoloads (locate-library) "subr" "subr.el" (17376 5576))
6a9e60bc
RF
25115;;; Generated autoloads from subr.el
25116
25117(autoload (quote locate-library) "subr" "\
25118Show the precise file name of Emacs library LIBRARY.
25119This command searches the directories in `load-path' like `\\[load-library]'
25120to find the file that `\\[load-library] RET LIBRARY RET' would load.
25121Optional second arg NOSUFFIX non-nil means don't add suffixes `load-suffixes'
25122to the specified name LIBRARY.
25123
25124If the optional third arg PATH is specified, that list of directories
25125is used instead of `load-path'.
25126
25127When called from a program, the file name is normaly returned as a
25128string. When run interactively, the argument INTERACTIVE-CALL is t,
25129and the file name is displayed in the echo area.
25130
25131\(fn LIBRARY &optional NOSUFFIX PATH INTERACTIVE-CALL)" t nil)
25132
25133;;;***
25134\f
93548d2e 25135;;;### (autoloads (sc-cite-original) "supercite" "mail/supercite.el"
a5805c9d 25136;;;;;; (17279 27174))
93548d2e
DL
25137;;; Generated autoloads from mail/supercite.el
25138
25139(autoload (quote sc-cite-original) "supercite" "\
25140Workhorse citing function which performs the initial citation.
25141This is callable from the various mail and news readers' reply
27a99a7c
GM
25142function according to the agreed upon standard. See the associated
25143info node `(SC)Top' for more details.
25144`sc-cite-original' does not do any yanking of the
93548d2e
DL
25145original message but it does require a few things:
25146
25147 1) The reply buffer is the current buffer.
25148
25149 2) The original message has been yanked and inserted into the
25150 reply buffer.
25151
25152 3) Verbose mail headers from the original message have been
25153 inserted into the reply buffer directly before the text of the
25154 original message.
25155
25156 4) Point is at the beginning of the verbose headers.
25157
25158 5) Mark is at the end of the body of text to be cited.
25159
25160For Emacs 19's, the region need not be active (and typically isn't
25161when this function is called. Also, the hook `sc-pre-hook' is run
c595cc5f
MR
25162before, and `sc-post-hook' is run after the guts of this function.
25163
25164\(fn)" nil nil)
93548d2e
DL
25165
25166;;;***
25167\f
a5805c9d 25168;;;### (autoloads (tabify untabify) "tabify" "tabify.el" (17279 27123))
93548d2e
DL
25169;;; Generated autoloads from tabify.el
25170
25171(autoload (quote untabify) "tabify" "\
25172Convert all tabs in region to multiple spaces, preserving columns.
25173Called non-interactively, the region is specified by arguments
25174START and END, rather than by the position of point and mark.
c595cc5f
MR
25175The variable `tab-width' controls the spacing of tab stops.
25176
25177\(fn START END)" t nil)
93548d2e
DL
25178
25179(autoload (quote tabify) "tabify" "\
25180Convert multiple spaces in region to tabs when possible.
25181A group of spaces is partially replaced by tabs
25182when this can be done without changing the column they end at.
25183Called non-interactively, the region is specified by arguments
25184START and END, rather than by the position of point and mark.
c595cc5f
MR
25185The variable `tab-width' controls the spacing of tab stops.
25186
25187\(fn START END)" t nil)
93548d2e
DL
25188
25189;;;***
25190\f
4c6bc877
MR
25191;;;### (autoloads (table-release table-capture table-delete-column
25192;;;;;; table-delete-row table-insert-sequence table-generate-source
25193;;;;;; table-query-dimension table-fixed-width-mode table-justify-column
25194;;;;;; table-justify-row table-justify-cell table-justify table-split-cell
25195;;;;;; table-split-cell-horizontally table-split-cell-vertically
25196;;;;;; table-span-cell table-backward-cell table-forward-cell table-narrow-cell
25197;;;;;; table-widen-cell table-shorten-cell table-heighten-cell table-unrecognize-cell
25198;;;;;; table-recognize-cell table-unrecognize-table table-recognize-table
25199;;;;;; table-unrecognize-region table-recognize-region table-unrecognize
25200;;;;;; table-recognize table-insert-row-column table-insert-column
25201;;;;;; table-insert-row table-insert table-point-left-cell-hook
25202;;;;;; table-point-entered-cell-hook table-load-hook table-cell-map-hook)
a5805c9d 25203;;;;;; "table" "textmodes/table.el" (17379 30025))
4c6bc877
MR
25204;;; Generated autoloads from textmodes/table.el
25205
25206(defvar table-cell-map-hook nil "\
25207*Normal hooks run when finishing construction of `table-cell-map'.
25208User can modify `table-cell-map' by adding custom functions here.")
25209
9c46b00a
MR
25210(custom-autoload (quote table-cell-map-hook) "table")
25211
4c6bc877
MR
25212(defvar table-load-hook nil "\
25213*List of functions to be called after the table is first loaded.")
25214
9c46b00a
MR
25215(custom-autoload (quote table-load-hook) "table")
25216
4c6bc877
MR
25217(defvar table-point-entered-cell-hook nil "\
25218*List of functions to be called after point entered a table cell.")
25219
9c46b00a
MR
25220(custom-autoload (quote table-point-entered-cell-hook) "table")
25221
4c6bc877
MR
25222(defvar table-point-left-cell-hook nil "\
25223*List of functions to be called after point left a table cell.")
25224
9c46b00a
MR
25225(custom-autoload (quote table-point-left-cell-hook) "table")
25226
4c6bc877
MR
25227(autoload (quote table-insert) "table" "\
25228Insert an editable text table.
25229Insert a table of specified number of COLUMNS and ROWS. Optional
25230parameter CELL-WIDTH and CELL-HEIGHT can specify the size of each
25231cell. The cell size is uniform across the table if the specified size
25232is a number. They can be a list of numbers to specify different size
25233for each cell. When called interactively, the list of number is
25234entered by simply listing all the numbers with space characters
25235delimiting them.
25236
25237Examples:
25238
25239\\[table-insert] inserts a table at the current point location.
25240
25241Suppose we have the following situation where `-!-' indicates the
25242location of point.
25243
25244 -!-
25245
25246Type \\[table-insert] and hit ENTER key. As it asks table
25247specification, provide 3 for number of columns, 1 for number of rows,
252485 for cell width and 1 for cell height. Now you shall see the next
25249table and the point is automatically moved to the beginning of the
25250first cell.
25251
25252 +-----+-----+-----+
25253 |-!- | | |
25254 +-----+-----+-----+
25255
25256Inside a table cell, there are special key bindings. \\<table-cell-map>
25257
25258M-9 \\[table-widen-cell] (or \\[universal-argument] 9 \\[table-widen-cell]) widens the first cell by 9 character
25259width, which results as
25260
25261 +--------------+-----+-----+
25262 |-!- | | |
25263 +--------------+-----+-----+
25264
25265Type TAB \\[table-widen-cell] then type TAB M-2 M-7 \\[table-widen-cell] (or \\[universal-argument] 2 7 \\[table-widen-cell]). Typing
25266TAB moves the point forward by a cell. The result now looks like this:
25267
25268 +--------------+------+--------------------------------+
25269 | | |-!- |
25270 +--------------+------+--------------------------------+
25271
25272If you knew each width of the columns prior to the table creation,
25273what you could have done better was to have had given the complete
25274width information to `table-insert'.
25275
25276Cell width(s): 14 6 32
25277
821b278f 25278instead of
4c6bc877
MR
25279
25280Cell width(s): 5
25281
25282This would have eliminated the previously mentioned width adjustment
25283work all together.
25284
25285If the point is in the last cell type S-TAB S-TAB to move it to the
25286first cell. Now type \\[table-heighten-cell] which heighten the row by a line.
25287
25288 +--------------+------+--------------------------------+
25289 |-!- | | |
25290 | | | |
25291 +--------------+------+--------------------------------+
25292
25293Type \\[table-insert-row-column] and tell it to insert a row.
25294
25295 +--------------+------+--------------------------------+
25296 |-!- | | |
25297 | | | |
25298 +--------------+------+--------------------------------+
25299 | | | |
25300 | | | |
25301 +--------------+------+--------------------------------+
25302
25303Move the point under the table as shown below.
25304
25305 +--------------+------+--------------------------------+
25306 | | | |
25307 | | | |
25308 +--------------+------+--------------------------------+
25309 | | | |
25310 | | | |
25311 +--------------+------+--------------------------------+
25312 -!-
25313
25314Type M-x table-insert-row instead of \\[table-insert-row-column]. \\[table-insert-row-column] does not work
25315when the point is outside of the table. This insertion at
25316outside of the table effectively appends a row at the end.
25317
25318 +--------------+------+--------------------------------+
25319 | | | |
25320 | | | |
25321 +--------------+------+--------------------------------+
25322 | | | |
25323 | | | |
25324 +--------------+------+--------------------------------+
25325 |-!- | | |
25326 | | | |
25327 +--------------+------+--------------------------------+
25328
25329Text editing inside the table cell produces reasonably expected
25330results.
25331
25332 +--------------+------+--------------------------------+
25333 | | | |
25334 | | | |
25335 +--------------+------+--------------------------------+
25336 | | |Text editing inside the table |
25337 | | |cell produces reasonably |
25338 | | |expected results.-!- |
25339 +--------------+------+--------------------------------+
25340 | | | |
25341 | | | |
25342 +--------------+------+--------------------------------+
25343
25344Inside a table cell has a special keymap.
25345
25346\\{table-cell-map}
c595cc5f
MR
25347
25348\(fn COLUMNS ROWS &optional CELL-WIDTH CELL-HEIGHT)" t nil)
4c6bc877
MR
25349
25350(autoload (quote table-insert-row) "table" "\
25351Insert N table row(s).
25352When point is in a table the newly inserted row(s) are placed above
25353the current row. When point is outside of the table it must be below
25354the table within the table width range, then the newly created row(s)
c595cc5f
MR
25355are appended at the bottom of the table.
25356
25357\(fn N)" t nil)
4c6bc877
MR
25358
25359(autoload (quote table-insert-column) "table" "\
25360Insert N table column(s).
25361When point is in a table the newly inserted column(s) are placed left
25362of the current column. When point is outside of the table it must be
25363right side of the table within the table height range, then the newly
c595cc5f
MR
25364created column(s) are appended at the right of the table.
25365
25366\(fn N)" t nil)
4c6bc877
MR
25367
25368(autoload (quote table-insert-row-column) "table" "\
25369Insert row(s) or column(s).
c595cc5f
MR
25370See `table-insert-row' and `table-insert-column'.
25371
25372\(fn ROW-COLUMN N)" t nil)
4c6bc877
MR
25373
25374(autoload (quote table-recognize) "table" "\
25375Recognize all tables within the current buffer and activate them.
25376Scans the entire buffer and recognizes valid table cells. If the
25377optional numeric prefix argument ARG is negative the tables in the
25378buffer become inactive, meaning the tables become plain text and loses
c595cc5f
MR
25379all the table specific features.
25380
25381\(fn &optional ARG)" t nil)
4c6bc877 25382
c595cc5f
MR
25383(autoload (quote table-unrecognize) "table" "\
25384Not documented
25385
25386\(fn)" t nil)
4c6bc877
MR
25387
25388(autoload (quote table-recognize-region) "table" "\
25389Recognize all tables within region.
25390BEG and END specify the region to work on. If the optional numeric
25391prefix argument ARG is negative the tables in the region become
25392inactive, meaning the tables become plain text and lose all the table
c595cc5f
MR
25393specific features.
25394
25395\(fn BEG END &optional ARG)" t nil)
4c6bc877 25396
c595cc5f
MR
25397(autoload (quote table-unrecognize-region) "table" "\
25398Not documented
25399
25400\(fn BEG END)" t nil)
4c6bc877
MR
25401
25402(autoload (quote table-recognize-table) "table" "\
25403Recognize a table at point.
25404If the optional numeric prefix argument ARG is negative the table
25405becomes inactive, meaning the table becomes plain text and loses all
c595cc5f
MR
25406the table specific features.
25407
25408\(fn &optional ARG)" t nil)
4c6bc877 25409
c595cc5f
MR
25410(autoload (quote table-unrecognize-table) "table" "\
25411Not documented
25412
25413\(fn)" t nil)
4c6bc877
MR
25414
25415(autoload (quote table-recognize-cell) "table" "\
25416Recognize a table cell that contains current point.
25417Probe the cell dimension and prepare the cell information. The
25418optional two arguments FORCE and NO-COPY are for internal use only and
25419must not be specified. When the optional numeric prefix argument ARG
25420is negative the cell becomes inactive, meaning that the cell becomes
c595cc5f
MR
25421plain text and loses all the table specific features.
25422
25423\(fn &optional FORCE NO-COPY ARG)" t nil)
4c6bc877 25424
c595cc5f
MR
25425(autoload (quote table-unrecognize-cell) "table" "\
25426Not documented
25427
25428\(fn)" t nil)
4c6bc877
MR
25429
25430(autoload (quote table-heighten-cell) "table" "\
25431Heighten the current cell by N lines by expanding the cell vertically.
25432Heightening is done by adding blank lines at the bottom of the current
25433cell. Other cells aligned horizontally with the current one are also
25434heightened in order to keep the rectangular table structure. The
25435optional argument NO-COPY is internal use only and must not be
c595cc5f
MR
25436specified.
25437
25438\(fn N &optional NO-COPY NO-UPDATE)" t nil)
4c6bc877
MR
25439
25440(autoload (quote table-shorten-cell) "table" "\
25441Shorten the current cell by N lines by shrinking the cell vertically.
25442Shortening is done by removing blank lines from the bottom of the cell
25443and possibly from the top of the cell as well. Therefor, the cell
25444must have some bottom/top blank lines to be shorten effectively. This
25445is applicable to all the cells aligned horizontally with the current
25446one because they are also shortened in order to keep the rectangular
c595cc5f
MR
25447table structure.
25448
25449\(fn N)" t nil)
4c6bc877
MR
25450
25451(autoload (quote table-widen-cell) "table" "\
25452Widen the current cell by N columns and expand the cell horizontally.
25453Some other cells in the same table are widen as well to keep the
c595cc5f
MR
25454table's rectangle structure.
25455
25456\(fn N &optional NO-COPY NO-UPDATE)" t nil)
4c6bc877
MR
25457
25458(autoload (quote table-narrow-cell) "table" "\
25459Narrow the current cell by N columns and shrink the cell horizontally.
25460Some other cells in the same table are narrowed as well to keep the
c595cc5f
MR
25461table's rectangle structure.
25462
25463\(fn N)" t nil)
4c6bc877
MR
25464
25465(autoload (quote table-forward-cell) "table" "\
25466Move point forward to the beginning of the next cell.
25467With argument ARG, do it ARG times;
25468a negative argument ARG = -N means move backward N cells.
25469Do not specify NO-RECOGNIZE and UNRECOGNIZE. They are for internal use only.
25470
25471Sample Cell Traveling Order (In Irregular Table Cases)
25472
25473You can actually try how it works in this buffer. Press
25474\\[table-recognize] and go to cells in the following tables and press
25475\\[table-forward-cell] or TAB key.
25476
25477+-----+--+ +--+-----+ +--+--+--+ +--+--+--+ +---------+ +--+---+--+
25478|0 |1 | |0 |1 | |0 |1 |2 | |0 |1 |2 | |0 | |0 |1 |2 |
25479+--+--+ | | +--+--+ +--+ | | | | +--+ +----+----+ +--+-+-+--+
25480|2 |3 | | | |2 |3 | |3 +--+ | | +--+3 | |1 |2 | |3 |4 |
25481| +--+--+ +--+--+ | +--+4 | | | |4 +--+ +--+-+-+--+ +----+----+
25482| |4 | |4 | | |5 | | | | | |5 | |3 |4 |5 | |5 |
25483+--+-----+ +-----+--+ +--+--+--+ +--+--+--+ +--+---+--+ +---------+
25484
25485+--+--+--+ +--+--+--+ +--+--+--+ +--+--+--+
25486|0 |1 |2 | |0 |1 |2 | |0 |1 |2 | |0 |1 |2 |
25487| | | | | +--+ | | | | | +--+ +--+
25488+--+ +--+ +--+3 +--+ | +--+ | |3 +--+4 |
25489|3 | |4 | |4 +--+5 | | |3 | | +--+5 +--+
25490| | | | | |6 | | | | | | |6 | |7 |
25491+--+--+--+ +--+--+--+ +--+--+--+ +--+--+--+
25492
25493+--+--+--+ +--+--+--+ +--+--+--+--+ +--+-----+--+ +--+--+--+--+
25494|0 |1 |2 | |0 |1 |2 | |0 |1 |2 |3 | |0 |1 |2 | |0 |1 |2 |3 |
25495| +--+ | | +--+ | | +--+--+ | | | | | | +--+--+ |
25496| |3 +--+ +--+3 | | +--+4 +--+ +--+ +--+ +--+4 +--+
25497+--+ |4 | |4 | +--+ |5 +--+--+6 | |3 +--+--+4 | |5 | |6 |
25498|5 +--+ | | +--+5 | | |7 |8 | | | |5 |6 | | | | | |
25499| |6 | | | |6 | | +--+--+--+--+ +--+--+--+--+ +--+-----+--+
25500+--+--+--+ +--+--+--+
c595cc5f
MR
25501
25502\(fn &optional ARG NO-RECOGNIZE UNRECOGNIZE)" t nil)
4c6bc877
MR
25503
25504(autoload (quote table-backward-cell) "table" "\
25505Move backward to the beginning of the previous cell.
25506With argument ARG, do it ARG times;
c595cc5f
MR
25507a negative argument ARG = -N means move forward N cells.
25508
25509\(fn &optional ARG)" t nil)
4c6bc877
MR
25510
25511(autoload (quote table-span-cell) "table" "\
25512Span current cell into adjacent cell in DIRECTION.
c595cc5f
MR
25513DIRECTION is one of symbols; right, left, above or below.
25514
25515\(fn DIRECTION)" t nil)
4c6bc877
MR
25516
25517(autoload (quote table-split-cell-vertically) "table" "\
25518Split current cell vertically.
c595cc5f
MR
25519Creates a cell above and a cell below the current point location.
25520
25521\(fn)" t nil)
4c6bc877
MR
25522
25523(autoload (quote table-split-cell-horizontally) "table" "\
25524Split current cell horizontally.
c595cc5f
MR
25525Creates a cell on the left and a cell on the right of the current point location.
25526
25527\(fn)" t nil)
4c6bc877
MR
25528
25529(autoload (quote table-split-cell) "table" "\
25530Split current cell in ORIENTATION.
c595cc5f
MR
25531ORIENTATION is a symbol either horizontally or vertically.
25532
25533\(fn ORIENTATION)" t nil)
4c6bc877
MR
25534
25535(autoload (quote table-justify) "table" "\
25536Justify contents of a cell, a row of cells or a column of cells.
25537WHAT is a symbol 'cell, 'row or 'column. JUSTIFY is a symbol 'left,
c595cc5f
MR
25538'center, 'right, 'top, 'middle, 'bottom or 'none.
25539
25540\(fn WHAT JUSTIFY)" t nil)
4c6bc877
MR
25541
25542(autoload (quote table-justify-cell) "table" "\
25543Justify cell contents.
25544JUSTIFY is a symbol 'left, 'center or 'right for horizontal, or 'top,
25545'middle, 'bottom or 'none for vertical. When optional PARAGRAPH is
25546non-nil the justify operation is limited to the current paragraph,
c595cc5f
MR
25547otherwise the entire cell contents is justified.
25548
25549\(fn JUSTIFY &optional PARAGRAPH)" t nil)
4c6bc877
MR
25550
25551(autoload (quote table-justify-row) "table" "\
25552Justify cells of a row.
25553JUSTIFY is a symbol 'left, 'center or 'right for horizontal, or top,
c595cc5f
MR
25554'middle, 'bottom or 'none for vertical.
25555
25556\(fn JUSTIFY)" t nil)
4c6bc877
MR
25557
25558(autoload (quote table-justify-column) "table" "\
25559Justify cells of a column.
25560JUSTIFY is a symbol 'left, 'center or 'right for horizontal, or top,
c595cc5f
MR
25561'middle, 'bottom or 'none for vertical.
25562
25563\(fn JUSTIFY)" t nil)
4c6bc877
MR
25564
25565(autoload (quote table-fixed-width-mode) "table" "\
25566Toggle fixing width mode.
25567In the fixed width mode, typing inside a cell never changes the cell
25568width where in the normal mode the cell width expands automatically in
c595cc5f
MR
25569order to prevent a word being folded into multiple lines.
25570
25571\(fn &optional ARG)" t nil)
4c6bc877
MR
25572
25573(autoload (quote table-query-dimension) "table" "\
25574Return the dimension of the current cell and the current table.
25575The result is a list (cw ch tw th c r cells) where cw is the cell
25576width, ch is the cell height, tw is the table width, th is the table
25577height, c is the number of columns, r is the number of rows and cells
25578is the total number of cells. The cell dimension excludes the cell
25579frame while the table dimension includes the table frame. The columns
25580and the rows are counted by the number of cell boundaries. Therefore
25581the number tends to be larger than it appears for the tables with
25582non-uniform cell structure (heavily spanned and split). When optional
c595cc5f
MR
25583WHERE is provided the cell and table at that location is reported.
25584
25585\(fn &optional WHERE)" t nil)
4c6bc877
MR
25586
25587(autoload (quote table-generate-source) "table" "\
25588Generate source of the current table in the specified language.
25589LANGUAGE is a symbol that specifies the language to describe the
25590structure of the table. It must be either 'html, 'latex or 'cals.
25591The resulted source text is inserted into DEST-BUFFER and the buffer
25592object is returned. When DEST-BUFFER is omitted or nil the default
25593buffer specified in `table-dest-buffer-name' is used. In this case
25594the content of the default buffer is erased prior to the generation.
25595When DEST-BUFFER is non-nil it is expected to be either a destination
25596buffer or a name of the destination buffer. In this case the
25597generated result is inserted at the current point in the destination
25598buffer and the previously existing contents in the buffer are
25599untouched.
25600
25601References used for this implementation:
25602
25603HTML:
25604 http://www.w3.org
25605
25606LaTeX:
25607 http://www.maths.tcd.ie/~dwilkins/LaTeXPrimer/Tables.html
25608
25609CALS (DocBook DTD):
25610 http://www.oasis-open.org/html/a502.htm
25611 http://www.oreilly.com/catalog/docbook/chapter/book/table.html#AEN114751
c595cc5f
MR
25612
25613\(fn LANGUAGE &optional DEST-BUFFER CAPTION)" t nil)
4c6bc877
MR
25614
25615(autoload (quote table-insert-sequence) "table" "\
25616Travel cells forward while inserting a specified sequence string in each cell.
25617STR is the base string from which the sequence starts. When STR is an
25618empty string then each cell content is erased. When STR ends with
25619numerical characters (they may optionally be surrounded by a pair of
25620parentheses) they are incremented as a decimal number. Otherwise the
25621last character in STR is incremented in ASCII code order. N is the
25622number of sequence elements to insert. When N is negative the cell
25623traveling direction is backward. When N is zero it travels forward
25624entire table. INCREMENT is the increment between adjacent sequence
25625elements and can be a negative number for effectively decrementing.
25626INTERVAL is the number of cells to travel between sequence element
25627insertion which is normally 1. When zero or less is given for
25628INTERVAL it is interpreted as number of cells per row so that sequence
25629is placed straight down vertically as long as the table's cell
25630structure is uniform. JUSTIFY is one of the symbol 'left, 'center or
25631'right, that specifies justification of the inserted string.
25632
25633Example:
25634
25635 (progn
25636 (table-insert 16 3 5 1)
25637 (table-forward-cell 15)
25638 (table-insert-sequence \"D0\" -16 1 1 'center)
25639 (table-forward-cell 16)
25640 (table-insert-sequence \"A[0]\" -16 1 1 'center)
25641 (table-forward-cell 1)
25642 (table-insert-sequence \"-\" 16 0 1 'center))
25643
25644 (progn
25645 (table-insert 16 8 5 1)
25646 (table-insert-sequence \"@\" 0 1 2 'right)
25647 (table-forward-cell 1)
25648 (table-insert-sequence \"64\" 0 1 2 'left))
c595cc5f
MR
25649
25650\(fn STR N INCREMENT INTERVAL JUSTIFY)" t nil)
4c6bc877
MR
25651
25652(autoload (quote table-delete-row) "table" "\
25653Delete N row(s) of cells.
25654Delete N rows of cells from current row. The current row is the row
25655contains the current cell where point is located. Each row must
c595cc5f
MR
25656consists from cells of same height.
25657
25658\(fn N)" t nil)
4c6bc877
MR
25659
25660(autoload (quote table-delete-column) "table" "\
25661Delete N column(s) of cells.
25662Delete N columns of cells from current column. The current column is
25663the column contains the current cell where point is located. Each
c595cc5f
MR
25664column must consists from cells of same width.
25665
25666\(fn N)" t nil)
4c6bc877
MR
25667
25668(autoload (quote table-capture) "table" "\
25669Convert plain text into a table by capturing the text in the region.
25670Create a table with the text in region as cell contents. BEG and END
25671specify the region. The text in the region is replaced with a table.
25672The removed text is inserted in the table. When optional
25673COL-DELIM-REGEXP and ROW-DELIM-REGEXP are provided the region contents
25674is parsed and separated into individual cell contents by using the
25675delimiter regular expressions. This parsing determines the number of
25676columns and rows of the table automatically. If COL-DELIM-REGEXP and
25677ROW-DELIM-REGEXP are omitted the result table has only one cell and
25678the entire region contents is placed in that cell. Optional JUSTIFY
25679is one of 'left, 'center or 'right, which specifies the cell
25680justification. Optional MIN-CELL-WIDTH specifies the minimum cell
25681width. Optional COLUMNS specify the number of columns when
25682ROW-DELIM-REGEXP is not specified.
25683
25684
25685Example 1:
25686
256871, 2, 3, 4
256885, 6, 7, 8
25689, 9, 10
25690
25691Running `table-capture' on above 3 line region with COL-DELIM-REGEXP
25692\",\" and ROW-DELIM-REGEXP \"\\n\" creates the following table. In
25693this example the cells are centered and minimum cell width is
25694specified as 5.
25695
25696+-----+-----+-----+-----+
25697| 1 | 2 | 3 | 4 |
25698+-----+-----+-----+-----+
25699| 5 | 6 | 7 | 8 |
25700+-----+-----+-----+-----+
25701| | 9 | 10 | |
25702+-----+-----+-----+-----+
25703
25704Note:
25705
25706In case the function is called interactively user must use \\[quoted-insert] `quoted-insert'
25707in order to enter \"\\n\" successfully. COL-DELIM-REGEXP at the end
25708of each row is optional.
25709
25710
25711Example 2:
25712
25713This example shows how a table can be used for text layout editing.
25714Let `table-capture' capture the following region starting from
25715-!- and ending at -*-, that contains three paragraphs and two item
25716name headers. This time specify empty string for both
25717COL-DELIM-REGEXP and ROW-DELIM-REGEXP.
25718
25719-!-`table-capture' is a powerful command however mastering its power
25720requires some practice. Here is a list of items what it can do.
25721
25722Parse Cell Items By using column delimiter regular
25723 expression and raw delimiter regular
25724 expression, it parses the specified text
25725 area and extracts cell items from
25726 non-table text and then forms a table out
25727 of them.
25728
25729Capture Text Area When no delimiters are specified it
25730 creates a single cell table. The text in
25731 the specified region is placed in that
25732 cell.-*-
25733
25734Now the entire content is captured in a cell which is itself a table
25735like this.
25736
25737+-----------------------------------------------------------------+
25738|`table-capture' is a powerful command however mastering its power|
25739|requires some practice. Here is a list of items what it can do. |
25740| |
25741|Parse Cell Items By using column delimiter regular |
25742| expression and raw delimiter regular |
25743| expression, it parses the specified text |
25744| area and extracts cell items from |
25745| non-table text and then forms a table out |
25746| of them. |
25747| |
25748|Capture Text Area When no delimiters are specified it |
25749| creates a single cell table. The text in |
25750| the specified region is placed in that |
25751| cell. |
25752+-----------------------------------------------------------------+
25753
25754By splitting the cell appropriately we now have a table consisting of
25755paragraphs occupying its own cell. Each cell can now be edited
25756independently.
25757
25758+-----------------------------------------------------------------+
25759|`table-capture' is a powerful command however mastering its power|
25760|requires some practice. Here is a list of items what it can do. |
25761+---------------------+-------------------------------------------+
25762|Parse Cell Items |By using column delimiter regular |
25763| |expression and raw delimiter regular |
25764| |expression, it parses the specified text |
25765| |area and extracts cell items from |
25766| |non-table text and then forms a table out |
25767| |of them. |
25768+---------------------+-------------------------------------------+
25769|Capture Text Area |When no delimiters are specified it |
25770| |creates a single cell table. The text in |
25771| |the specified region is placed in that |
25772| |cell. |
25773+---------------------+-------------------------------------------+
25774
25775By applying `table-release', which does the opposite process, the
25776contents become once again plain text. `table-release' works as
25777companion command to `table-capture' this way.
c595cc5f
MR
25778
25779\(fn BEG END &optional COL-DELIM-REGEXP ROW-DELIM-REGEXP JUSTIFY MIN-CELL-WIDTH COLUMNS)" t nil)
4c6bc877
MR
25780
25781(autoload (quote table-release) "table" "\
25782Convert a table into plain text by removing the frame from a table.
25783Remove the frame from a table and inactivate the table. This command
25784converts a table into plain text without frames. It is a companion to
c595cc5f
MR
25785`table-capture' which does the opposite process.
25786
25787\(fn)" t nil)
4c6bc877
MR
25788
25789;;;***
25790\f
a5805c9d 25791;;;### (autoloads (talk talk-connect) "talk" "talk.el" (17332 7267))
93548d2e
DL
25792;;; Generated autoloads from talk.el
25793
25794(autoload (quote talk-connect) "talk" "\
c595cc5f
MR
25795Connect to display DISPLAY for the Emacs talk group.
25796
25797\(fn DISPLAY)" t nil)
93548d2e 25798
d66d64bc
KL
25799(autoload (quote talk) "talk" "\
25800Connect to the Emacs talk group from the current X display or tty frame.
25801
25802\(fn)" t nil)
25803
93548d2e
DL
25804;;;***
25805\f
a5805c9d 25806;;;### (autoloads (tar-mode) "tar-mode" "tar-mode.el" (17279 27201))
93548d2e
DL
25807;;; Generated autoloads from tar-mode.el
25808
25809(autoload (quote tar-mode) "tar-mode" "\
25810Major mode for viewing a tar file as a dired-like listing of its contents.
821b278f 25811You can move around using the usual cursor motion commands.
93548d2e
DL
25812Letters no longer insert themselves.
25813Type `e' to pull a file out of the tar file and into its own buffer;
25814or click mouse-2 on the file's line in the Tar mode buffer.
25815Type `c' to copy an entry from the tar file into another file on disk.
25816
821b278f 25817If you edit a sub-file of this archive (as with the `e' command) and
59e085e0 25818save it with \\[save-buffer], the contents of that buffer will be
821b278f 25819saved back into the tar-file buffer; in this way you can edit a file
93548d2e
DL
25820inside of a tar archive without extracting it and re-archiving it.
25821
25822See also: variables `tar-update-datestamp' and `tar-anal-blocksize'.
0c867fa7
MS
25823\\{tar-mode-map}
25824
25825\(fn)" t nil)
93548d2e
DL
25826
25827;;;***
25828\f
7518ed7b 25829;;;### (autoloads (tcl-help-on-word inferior-tcl tcl-mode) "tcl"
a5805c9d 25830;;;;;; "progmodes/tcl.el" (17350 14840))
7518ed7b 25831;;; Generated autoloads from progmodes/tcl.el
93548d2e 25832
7518ed7b
GM
25833(autoload (quote tcl-mode) "tcl" "\
25834Major mode for editing Tcl code.
25835Expression and list commands understand all Tcl brackets.
25836Tab indents for Tcl code.
25837Paragraphs are separated by blank lines only.
25838Delete converts tabs to spaces as it moves back.
25839
25840Variables controlling indentation style:
4c6bc877 25841 `tcl-indent-level'
7518ed7b 25842 Indentation of Tcl statements within surrounding block.
4c6bc877 25843 `tcl-continued-indent-level'
7518ed7b
GM
25844 Indentation of continuation line relative to first line of command.
25845
25846Variables controlling user interaction with mode (see variable
25847documentation for details):
4c6bc877 25848 `tcl-tab-always-indent'
7518ed7b 25849 Controls action of TAB key.
4c6bc877 25850 `tcl-auto-newline'
7518ed7b
GM
25851 Non-nil means automatically newline before and after braces, brackets,
25852 and semicolons inserted in Tcl code.
4c6bc877 25853 `tcl-use-smart-word-finder'
7518ed7b
GM
25854 If not nil, use a smarter, Tcl-specific way to find the current
25855 word when looking up help on a Tcl command.
25856
0c72a1a2 25857Turning on Tcl mode runs `tcl-mode-hook'. Read the documentation for
7518ed7b
GM
25858`tcl-mode-hook' to see what kinds of interesting hook functions
25859already exist.
25860
25861Commands:
27a99a7c
GM
25862\\{tcl-mode-map}
25863
25864\(fn)" t nil)
7518ed7b
GM
25865
25866(autoload (quote inferior-tcl) "tcl" "\
25867Run inferior Tcl process.
25868Prefix arg means enter program name interactively.
c595cc5f
MR
25869See documentation for function `inferior-tcl-mode' for more information.
25870
25871\(fn CMD)" t nil)
7518ed7b
GM
25872
25873(autoload (quote tcl-help-on-word) "tcl" "\
25874Get help on Tcl command. Default is word at point.
c595cc5f
MR
25875Prefix argument means invert sense of `tcl-use-smart-word-finder'.
25876
25877\(fn COMMAND &optional ARG)" t nil)
93548d2e
DL
25878
25879;;;***
25880\f
a5805c9d 25881;;;### (autoloads (rsh telnet) "telnet" "net/telnet.el" (17279 27123))
a25bbe00 25882;;; Generated autoloads from net/telnet.el
93548d2e
DL
25883 (add-hook 'same-window-regexps "\\*telnet-.*\\*\\(\\|<[0-9]+>\\)")
25884
25885(autoload (quote telnet) "telnet" "\
25886Open a network login connection to host named HOST (a string).
390069bc
AS
25887Optional arg PORT specifies alternative port to connect to.
25888Interactively, use \\[universal-argument] prefix to be prompted for port number.
25889
93548d2e
DL
25890Communication with HOST is recorded in a buffer `*PROGRAM-HOST*'
25891where PROGRAM is the telnet program being used. This program
25892is controlled by the contents of the global variable `telnet-host-properties',
25893falling back on the value of the global variable `telnet-program'.
c595cc5f
MR
25894Normally input is edited in Emacs and sent a line at a time.
25895
390069bc 25896\(fn HOST &optional PORT)" t nil)
93548d2e
DL
25897 (add-hook 'same-window-regexps "\\*rsh-[^-]*\\*\\(\\|<[0-9]*>\\)")
25898
25899(autoload (quote rsh) "telnet" "\
25900Open a network login connection to host named HOST (a string).
25901Communication with HOST is recorded in a buffer `*rsh-HOST*'.
c595cc5f
MR
25902Normally input is edited in Emacs and sent a line at a time.
25903
25904\(fn HOST)" t nil)
93548d2e
DL
25905
25906;;;***
25907\f
a5805c9d
KL
25908;;;### (autoloads (ansi-term term make-term) "term" "term.el" (17356
25909;;;;;; 16193))
93548d2e
DL
25910;;; Generated autoloads from term.el
25911
25912(autoload (quote make-term) "term" "\
25913Make a term process NAME in a buffer, running PROGRAM.
25914The name of the buffer is made by surrounding NAME with `*'s.
25915If there is already a running process in that buffer, it is not restarted.
25916Optional third arg STARTFILE is the name of a file to send the contents of to
c595cc5f
MR
25917the process. Any more args are arguments to PROGRAM.
25918
25919\(fn NAME PROGRAM &optional STARTFILE &rest SWITCHES)" nil nil)
93548d2e
DL
25920
25921(autoload (quote term) "term" "\
c595cc5f 25922Start a terminal-emulator in a new buffer.
821b278f
MR
25923The buffer is in Term mode; see `term-mode' for the
25924commands to use in that buffer.
25925
25926\\<term-raw-map>Type \\[switch-to-buffer] to switch to another buffer.
c595cc5f
MR
25927
25928\(fn PROGRAM)" t nil)
93548d2e
DL
25929
25930(autoload (quote ansi-term) "term" "\
c595cc5f
MR
25931Start a terminal-emulator in a new buffer.
25932
25933\(fn PROGRAM &optional NEW-BUFFER-NAME)" t nil)
93548d2e
DL
25934
25935;;;***
25936\f
a5805c9d
KL
25937;;;### (autoloads (terminal-emulator) "terminal" "terminal.el" (17279
25938;;;;;; 27172))
93548d2e
DL
25939;;; Generated autoloads from terminal.el
25940
25941(autoload (quote terminal-emulator) "terminal" "\
25942Under a display-terminal emulator in BUFFER, run PROGRAM on arguments ARGS.
25943ARGS is a list of argument-strings. Remaining arguments are WIDTH and HEIGHT.
25944BUFFER's contents are made an image of the display generated by that program,
25945and any input typed when BUFFER is the current Emacs buffer is sent to that
25946program as keyboard input.
25947
25948Interactively, BUFFER defaults to \"*terminal*\" and PROGRAM and ARGS
25949are parsed from an input-string using your usual shell.
25950WIDTH and HEIGHT are determined from the size of the current window
25951-- WIDTH will be one less than the window's width, HEIGHT will be its height.
25952
25953To switch buffers and leave the emulator, or to give commands
25954to the emulator itself (as opposed to the program running under it),
25955type Control-^. The following character is an emulator command.
25956Type Control-^ twice to send it to the subprogram.
25957This escape character may be changed using the variable `terminal-escape-char'.
25958
25959`Meta' characters may not currently be sent through the terminal emulator.
25960
d66d64bc 25961Here is a list of some of the variables which control the behavior
93548d2e
DL
25962of the emulator -- see their documentation for more information:
25963terminal-escape-char, terminal-scrolling, terminal-more-processing,
25964terminal-redisplay-interval.
25965
25966This function calls the value of terminal-mode-hook if that exists
25967and is non-nil after the terminal buffer has been set up and the
c595cc5f
MR
25968subprocess started.
25969
25970\(fn BUFFER PROGRAM ARGS &optional WIDTH HEIGHT)" t nil)
25971
25972;;;***
25973\f
390069bc 25974;;;### (autoloads (testcover-this-defun) "testcover" "emacs-lisp/testcover.el"
a5805c9d 25975;;;;;; (17279 27122))
c595cc5f
MR
25976;;; Generated autoloads from emacs-lisp/testcover.el
25977
c595cc5f
MR
25978(autoload (quote testcover-this-defun) "testcover" "\
25979Start coverage on function under point.
25980
25981\(fn)" t nil)
93548d2e
DL
25982
25983;;;***
25984\f
a5805c9d 25985;;;### (autoloads (tetris) "tetris" "play/tetris.el" (17279 27123))
93548d2e
DL
25986;;; Generated autoloads from play/tetris.el
25987
25988(autoload (quote tetris) "tetris" "\
25989Play the Tetris game.
25990Shapes drop from the top of the screen, and the user has to move and
25991rotate the shape to fit in with those at the bottom of the screen so
25992as to form complete rows.
25993
25994tetris-mode keybindings:
25995 \\<tetris-mode-map>
25996\\[tetris-start-game] Starts a new game of Tetris
25997\\[tetris-end-game] Terminates the current game
25998\\[tetris-pause-game] Pauses (or resumes) the current game
25999\\[tetris-move-left] Moves the shape one square to the left
26000\\[tetris-move-right] Moves the shape one square to the right
26001\\[tetris-rotate-prev] Rotates the shape clockwise
26002\\[tetris-rotate-next] Rotates the shape anticlockwise
26003\\[tetris-move-bottom] Drops the shape to the bottom of the playing area
26004
0c72a1a2 26005\(fn)" t nil)
93548d2e
DL
26006
26007;;;***
26008\f
0c72a1a2
MR
26009;;;### (autoloads (doctex-mode tex-start-shell slitex-mode latex-mode
26010;;;;;; plain-tex-mode tex-mode tex-close-quote tex-open-quote tex-default-mode
93548d2e
DL
26011;;;;;; tex-show-queue-command tex-dvi-view-command tex-alt-dvi-print-command
26012;;;;;; tex-dvi-print-command tex-bibtex-command latex-block-names
e18e407f 26013;;;;;; tex-start-commands tex-start-options slitex-run-command latex-run-command
93548d2e
DL
26014;;;;;; tex-run-command tex-offer-save tex-main-file tex-first-line-header-regexp
26015;;;;;; tex-directory tex-shell-file-name) "tex-mode" "textmodes/tex-mode.el"
a5805c9d 26016;;;;;; (17279 27185))
93548d2e
DL
26017;;; Generated autoloads from textmodes/tex-mode.el
26018
26019(defvar tex-shell-file-name nil "\
26020*If non-nil, the shell file name to run in the subshell used to run TeX.")
26021
9c46b00a
MR
26022(custom-autoload (quote tex-shell-file-name) "tex-mode")
26023
93548d2e
DL
26024(defvar tex-directory "." "\
26025*Directory in which temporary files are written.
26026You can make this `/tmp' if your TEXINPUTS has no relative directories in it
26027and you don't try to apply \\[tex-region] or \\[tex-buffer] when there are
26028`\\input' commands with relative directories.")
26029
9c46b00a
MR
26030(custom-autoload (quote tex-directory) "tex-mode")
26031
93548d2e
DL
26032(defvar tex-first-line-header-regexp nil "\
26033Regexp for matching a first line which `tex-region' should include.
26034If this is non-nil, it should be a regular expression string;
26035if it matches the first line of the file,
26036`tex-region' always includes the first line in the TeX run.")
26037
9c46b00a
MR
26038(custom-autoload (quote tex-first-line-header-regexp) "tex-mode")
26039
93548d2e
DL
26040(defvar tex-main-file nil "\
26041*The main TeX source file which includes this buffer's file.
26042The command `tex-file' runs TeX on the file specified by `tex-main-file'
26043if the variable is non-nil.")
26044
9c46b00a
MR
26045(custom-autoload (quote tex-main-file) "tex-mode")
26046
93548d2e
DL
26047(defvar tex-offer-save t "\
26048*If non-nil, ask about saving modified buffers before \\[tex-file] is run.")
26049
9c46b00a
MR
26050(custom-autoload (quote tex-offer-save) "tex-mode")
26051
93548d2e
DL
26052(defvar tex-run-command "tex" "\
26053*Command used to run TeX subjob.
26054TeX Mode sets `tex-command' to this string.
26055See the documentation of that variable.")
26056
9c46b00a
MR
26057(custom-autoload (quote tex-run-command) "tex-mode")
26058
93548d2e
DL
26059(defvar latex-run-command "latex" "\
26060*Command used to run LaTeX subjob.
26061LaTeX Mode sets `tex-command' to this string.
26062See the documentation of that variable.")
26063
9c46b00a
MR
26064(custom-autoload (quote latex-run-command) "tex-mode")
26065
93548d2e
DL
26066(defvar slitex-run-command "slitex" "\
26067*Command used to run SliTeX subjob.
26068SliTeX Mode sets `tex-command' to this string.
26069See the documentation of that variable.")
26070
9c46b00a
MR
26071(custom-autoload (quote slitex-run-command) "tex-mode")
26072
87bb8d21 26073(defvar tex-start-options "" "\
e18e407f 26074*TeX options to use when starting TeX.
87bb8d21
MR
26075These immediately precede the commands in `tex-start-commands'
26076and the input file name, with no separating space and are not shell-quoted.
26077If nil, TeX runs with no options. See the documentation of `tex-command'.")
e18e407f 26078
9c46b00a
MR
26079(custom-autoload (quote tex-start-options) "tex-mode")
26080
e18e407f
KS
26081(defvar tex-start-commands "\\nonstopmode\\input" "\
26082*TeX commands to use when starting TeX.
87bb8d21
MR
26083They are shell-quoted and precede the input file name, with a separating space.
26084If nil, no commands are used. See the documentation of `tex-command'.")
93548d2e 26085
9c46b00a
MR
26086(custom-autoload (quote tex-start-commands) "tex-mode")
26087
93548d2e
DL
26088(defvar latex-block-names nil "\
26089*User defined LaTeX block names.
c595cc5f 26090Combined with `latex-standard-block-names' for minibuffer completion.")
93548d2e 26091
9c46b00a
MR
26092(custom-autoload (quote latex-block-names) "tex-mode")
26093
93548d2e
DL
26094(defvar tex-bibtex-command "bibtex" "\
26095*Command used by `tex-bibtex-file' to gather bibliographic data.
26096If this string contains an asterisk (`*'), that is replaced by the file name;
26097otherwise, the file name, preceded by blank, is added at the end.")
26098
9c46b00a
MR
26099(custom-autoload (quote tex-bibtex-command) "tex-mode")
26100
93548d2e
DL
26101(defvar tex-dvi-print-command "lpr -d" "\
26102*Command used by \\[tex-print] to print a .dvi file.
26103If this string contains an asterisk (`*'), that is replaced by the file name;
26104otherwise, the file name, preceded by blank, is added at the end.")
26105
9c46b00a
MR
26106(custom-autoload (quote tex-dvi-print-command) "tex-mode")
26107
93548d2e
DL
26108(defvar tex-alt-dvi-print-command "lpr -d" "\
26109*Command used by \\[tex-print] with a prefix arg to print a .dvi file.
26110If this string contains an asterisk (`*'), that is replaced by the file name;
26111otherwise, the file name, preceded by blank, is added at the end.
26112
26113If two printers are not enough of a choice, you can set the variable
26114`tex-alt-dvi-print-command' to an expression that asks what you want;
26115for example,
26116
26117 (setq tex-alt-dvi-print-command
26118 '(format \"lpr -P%s\" (read-string \"Use printer: \")))
26119
26120would tell \\[tex-print] with a prefix argument to ask you which printer to
26121use.")
26122
9c46b00a
MR
26123(custom-autoload (quote tex-alt-dvi-print-command) "tex-mode")
26124
390069bc 26125(defvar tex-dvi-view-command (quote (cond ((eq window-system (quote x)) "xdvi") ((eq window-system (quote w32)) "yap") (t "dvi2tty * | cat -s"))) "\
93548d2e 26126*Command used by \\[tex-view] to display a `.dvi' file.
c595cc5f 26127If it is a string, that specifies the command directly.
93548d2e 26128If this string contains an asterisk (`*'), that is replaced by the file name;
c595cc5f 26129otherwise, the file name, preceded by a space, is added at the end.
93548d2e 26130
c595cc5f 26131If the value is a form, it is evaluated to get the command to use.")
93548d2e 26132
9c46b00a
MR
26133(custom-autoload (quote tex-dvi-view-command) "tex-mode")
26134
93548d2e
DL
26135(defvar tex-show-queue-command "lpq" "\
26136*Command used by \\[tex-show-print-queue] to show the print queue.
26137Should show the queue(s) that \\[tex-print] puts jobs on.")
26138
9c46b00a
MR
26139(custom-autoload (quote tex-show-queue-command) "tex-mode")
26140
cded5ed3 26141(defvar tex-default-mode (quote latex-mode) "\
93548d2e
DL
26142*Mode to enter for a new file that might be either TeX or LaTeX.
26143This variable is used when it can't be determined whether the file
26144is plain TeX or LaTeX or what because the file contains no commands.
26145Normally set to either `plain-tex-mode' or `latex-mode'.")
26146
9c46b00a
MR
26147(custom-autoload (quote tex-default-mode) "tex-mode")
26148
93548d2e
DL
26149(defvar tex-open-quote "``" "\
26150*String inserted by typing \\[tex-insert-quote] to open a quotation.")
26151
9c46b00a
MR
26152(custom-autoload (quote tex-open-quote) "tex-mode")
26153
93548d2e
DL
26154(defvar tex-close-quote "''" "\
26155*String inserted by typing \\[tex-insert-quote] to close a quotation.")
26156
9c46b00a
MR
26157(custom-autoload (quote tex-close-quote) "tex-mode")
26158
27a99a7c
GM
26159(autoload (quote tex-mode) "tex-mode" "\
26160Major mode for editing files of input for TeX, LaTeX, or SliTeX.
26161Tries to determine (by looking at the beginning of the file) whether
26162this file is for plain TeX, LaTeX, or SliTeX and calls `plain-tex-mode',
26163`latex-mode', or `slitex-mode', respectively. If it cannot be determined,
26164such as if there are no commands in the file, the value of `tex-default-mode'
26165says which mode to use.
26166
26167\(fn)" t nil)
93548d2e
DL
26168
26169(defalias (quote TeX-mode) (quote tex-mode))
26170
26171(defalias (quote plain-TeX-mode) (quote plain-tex-mode))
26172
26173(defalias (quote LaTeX-mode) (quote latex-mode))
26174
26175(autoload (quote plain-tex-mode) "tex-mode" "\
26176Major mode for editing files of input for plain TeX.
26177Makes $ and } display the characters they match.
26178Makes \" insert `` when it seems to be the beginning of a quotation,
26179and '' when it appears to be the end; it inserts \" only after a \\.
26180
26181Use \\[tex-region] to run TeX on the current region, plus a \"header\"
26182copied from the top of the file (containing macro definitions, etc.),
26183running TeX under a special subshell. \\[tex-buffer] does the whole buffer.
26184\\[tex-file] saves the buffer and then processes the file.
26185\\[tex-print] prints the .dvi file made by any of these.
26186\\[tex-view] previews the .dvi file made by any of these.
26187\\[tex-bibtex-file] runs bibtex on the file of the current buffer.
26188
26189Use \\[tex-validate-buffer] to check buffer for paragraphs containing
26190mismatched $'s or braces.
26191
26192Special commands:
09938b67 26193\\{plain-tex-mode-map}
93548d2e
DL
26194
26195Mode variables:
26196tex-run-command
26197 Command string used by \\[tex-region] or \\[tex-buffer].
26198tex-directory
26199 Directory in which to create temporary files for TeX jobs
26200 run by \\[tex-region] or \\[tex-buffer].
26201tex-dvi-print-command
26202 Command string used by \\[tex-print] to print a .dvi file.
26203tex-alt-dvi-print-command
26204 Alternative command string used by \\[tex-print] (when given a prefix
26205 argument) to print a .dvi file.
26206tex-dvi-view-command
26207 Command string used by \\[tex-view] to preview a .dvi file.
26208tex-show-queue-command
26209 Command string used by \\[tex-show-print-queue] to show the print
26210 queue that \\[tex-print] put your job on.
26211
26212Entering Plain-tex mode runs the hook `text-mode-hook', then the hook
26213`tex-mode-hook', and finally the hook `plain-tex-mode-hook'. When the
27a99a7c
GM
26214special subshell is initiated, the hook `tex-shell-hook' is run.
26215
26216\(fn)" t nil)
93548d2e
DL
26217
26218(autoload (quote latex-mode) "tex-mode" "\
26219Major mode for editing files of input for LaTeX.
26220Makes $ and } display the characters they match.
26221Makes \" insert `` when it seems to be the beginning of a quotation,
26222and '' when it appears to be the end; it inserts \" only after a \\.
26223
26224Use \\[tex-region] to run LaTeX on the current region, plus the preamble
26225copied from the top of the file (containing \\documentstyle, etc.),
26226running LaTeX under a special subshell. \\[tex-buffer] does the whole buffer.
26227\\[tex-file] saves the buffer and then processes the file.
26228\\[tex-print] prints the .dvi file made by any of these.
26229\\[tex-view] previews the .dvi file made by any of these.
26230\\[tex-bibtex-file] runs bibtex on the file of the current buffer.
26231
26232Use \\[tex-validate-buffer] to check buffer for paragraphs containing
26233mismatched $'s or braces.
26234
26235Special commands:
09938b67 26236\\{latex-mode-map}
93548d2e
DL
26237
26238Mode variables:
26239latex-run-command
26240 Command string used by \\[tex-region] or \\[tex-buffer].
26241tex-directory
26242 Directory in which to create temporary files for LaTeX jobs
26243 run by \\[tex-region] or \\[tex-buffer].
26244tex-dvi-print-command
26245 Command string used by \\[tex-print] to print a .dvi file.
26246tex-alt-dvi-print-command
26247 Alternative command string used by \\[tex-print] (when given a prefix
26248 argument) to print a .dvi file.
26249tex-dvi-view-command
26250 Command string used by \\[tex-view] to preview a .dvi file.
26251tex-show-queue-command
26252 Command string used by \\[tex-show-print-queue] to show the print
26253 queue that \\[tex-print] put your job on.
26254
26255Entering Latex mode runs the hook `text-mode-hook', then
26256`tex-mode-hook', and finally `latex-mode-hook'. When the special
27a99a7c
GM
26257subshell is initiated, `tex-shell-hook' is run.
26258
26259\(fn)" t nil)
93548d2e
DL
26260
26261(autoload (quote slitex-mode) "tex-mode" "\
26262Major mode for editing files of input for SliTeX.
26263Makes $ and } display the characters they match.
26264Makes \" insert `` when it seems to be the beginning of a quotation,
26265and '' when it appears to be the end; it inserts \" only after a \\.
26266
26267Use \\[tex-region] to run SliTeX on the current region, plus the preamble
26268copied from the top of the file (containing \\documentstyle, etc.),
26269running SliTeX under a special subshell. \\[tex-buffer] does the whole buffer.
26270\\[tex-file] saves the buffer and then processes the file.
26271\\[tex-print] prints the .dvi file made by any of these.
26272\\[tex-view] previews the .dvi file made by any of these.
26273\\[tex-bibtex-file] runs bibtex on the file of the current buffer.
26274
26275Use \\[tex-validate-buffer] to check buffer for paragraphs containing
26276mismatched $'s or braces.
26277
26278Special commands:
09938b67 26279\\{slitex-mode-map}
93548d2e
DL
26280
26281Mode variables:
26282slitex-run-command
26283 Command string used by \\[tex-region] or \\[tex-buffer].
26284tex-directory
26285 Directory in which to create temporary files for SliTeX jobs
26286 run by \\[tex-region] or \\[tex-buffer].
26287tex-dvi-print-command
26288 Command string used by \\[tex-print] to print a .dvi file.
26289tex-alt-dvi-print-command
26290 Alternative command string used by \\[tex-print] (when given a prefix
26291 argument) to print a .dvi file.
26292tex-dvi-view-command
26293 Command string used by \\[tex-view] to preview a .dvi file.
26294tex-show-queue-command
26295 Command string used by \\[tex-show-print-queue] to show the print
26296 queue that \\[tex-print] put your job on.
26297
26298Entering SliTeX mode runs the hook `text-mode-hook', then the hook
26299`tex-mode-hook', then the hook `latex-mode-hook', and finally the hook
26300`slitex-mode-hook'. When the special subshell is initiated, the hook
27a99a7c
GM
26301`tex-shell-hook' is run.
26302
26303\(fn)" t nil)
93548d2e 26304
c595cc5f
MR
26305(autoload (quote tex-start-shell) "tex-mode" "\
26306Not documented
26307
26308\(fn)" nil nil)
93548d2e 26309
0c72a1a2 26310(autoload (quote doctex-mode) "tex-mode" "\
27a99a7c
GM
26311Major mode to edit DocTeX files.
26312
26313\(fn)" t nil)
0c72a1a2 26314
93548d2e
DL
26315;;;***
26316\f
26317;;;### (autoloads (texi2info texinfo-format-region texinfo-format-buffer)
a5805c9d 26318;;;;;; "texinfmt" "textmodes/texinfmt.el" (17319 2455))
93548d2e
DL
26319;;; Generated autoloads from textmodes/texinfmt.el
26320
26321(autoload (quote texinfo-format-buffer) "texinfmt" "\
26322Process the current buffer as texinfo code, into an Info file.
26323The Info file output is generated in a buffer visiting the Info file
26324name specified in the @setfilename command.
26325
26326Non-nil argument (prefix, if interactive) means don't make tag table
26327and don't split the file if large. You can use Info-tagify and
c595cc5f
MR
26328Info-split to do these manually.
26329
26330\(fn &optional NOSPLIT)" t nil)
93548d2e
DL
26331
26332(autoload (quote texinfo-format-region) "texinfmt" "\
26333Convert the current region of the Texinfo file to Info format.
26334This lets you see what that part of the file will look like in Info.
26335The command is bound to \\[texinfo-format-region]. The text that is
c595cc5f
MR
26336converted to Info is stored in a temporary buffer.
26337
26338\(fn REGION-BEGINNING REGION-END)" t nil)
93548d2e
DL
26339
26340(autoload (quote texi2info) "texinfmt" "\
26341Convert the current buffer (written in Texinfo code) into an Info file.
26342The Info file output is generated in a buffer visiting the Info file
26343names specified in the @setfilename command.
26344
26345This function automatically updates all node pointers and menus, and
26346creates a master menu. This work is done on a temporary buffer that
26347is automatically removed when the Info file is created. The original
26348Texinfo source buffer is not changed.
26349
26350Non-nil argument (prefix, if interactive) means don't split the file
c595cc5f
MR
26351if large. You can use Info-split to do this manually.
26352
26353\(fn &optional NOSPLIT)" t nil)
93548d2e
DL
26354
26355;;;***
26356\f
6c083b4c 26357;;;### (autoloads (texinfo-mode texinfo-close-quote texinfo-open-quote)
a5805c9d 26358;;;;;; "texinfo" "textmodes/texinfo.el" (17279 27203))
93548d2e
DL
26359;;; Generated autoloads from textmodes/texinfo.el
26360
6c083b4c
GM
26361(defvar texinfo-open-quote "``" "\
26362*String inserted by typing \\[texinfo-insert-quote] to open a quotation.")
26363
9c46b00a
MR
26364(custom-autoload (quote texinfo-open-quote) "texinfo")
26365
6c083b4c
GM
26366(defvar texinfo-close-quote "''" "\
26367*String inserted by typing \\[texinfo-insert-quote] to close a quotation.")
26368
9c46b00a
MR
26369(custom-autoload (quote texinfo-close-quote) "texinfo")
26370
93548d2e
DL
26371(autoload (quote texinfo-mode) "texinfo" "\
26372Major mode for editing Texinfo files.
26373
26374 It has these extra commands:
26375\\{texinfo-mode-map}
26376
26377 These are files that are used as input for TeX to make printed manuals
26378and also to be turned into Info files with \\[makeinfo-buffer] or
26379the `makeinfo' program. These files must be written in a very restricted and
26380modified version of TeX input format.
26381
26382 Editing commands are like text-mode except that the syntax table is
26383set up so expression commands skip Texinfo bracket groups. To see
26384what the Info version of a region of the Texinfo file will look like,
26385use \\[makeinfo-region], which runs `makeinfo' on the current region.
26386
26387 You can show the structure of a Texinfo file with \\[texinfo-show-structure].
26388This command shows the structure of a Texinfo file by listing the
26389lines with the @-sign commands for @chapter, @section, and the like.
26390These lines are displayed in another window called the *Occur* window.
26391In that window, you can position the cursor over one of the lines and
26392use \\[occur-mode-goto-occurrence], to jump to the corresponding spot
26393in the Texinfo file.
26394
26395 In addition, Texinfo mode provides commands that insert various
26396frequently used @-sign commands into the buffer. You can use these
26397commands to save keystrokes. And you can insert balanced braces with
26398\\[texinfo-insert-braces] and later use the command \\[up-list] to
26399move forward past the closing brace.
26400
26401Also, Texinfo mode provides functions for automatically creating or
26402updating menus and node pointers. These functions
26403
26404 * insert the `Next', `Previous' and `Up' pointers of a node,
26405 * insert or update the menu for a section, and
26406 * create a master menu for a Texinfo source file.
26407
26408Here are the functions:
26409
26410 texinfo-update-node \\[texinfo-update-node]
26411 texinfo-every-node-update \\[texinfo-every-node-update]
26412 texinfo-sequential-node-update
26413
26414 texinfo-make-menu \\[texinfo-make-menu]
26415 texinfo-all-menus-update \\[texinfo-all-menus-update]
26416 texinfo-master-menu
26417
26418 texinfo-indent-menu-description (column &optional region-p)
26419
26420The `texinfo-column-for-description' variable specifies the column to
26421which menu descriptions are indented.
26422
26423Passed an argument (a prefix argument, if interactive), the
26424`texinfo-update-node' and `texinfo-make-menu' functions do their jobs
26425in the region.
26426
26427To use the updating commands, you must structure your Texinfo file
26428hierarchically, such that each `@node' line, with the exception of the
26429Top node, is accompanied by some kind of section line, such as an
26430`@chapter' or `@section' line.
26431
26432If the file has a `top' node, it must be called `top' or `Top' and
26433be the first node in the file.
26434
612839b6 26435Entering Texinfo mode calls the value of `text-mode-hook', and then the
27a99a7c
GM
26436value of `texinfo-mode-hook'.
26437
26438\(fn)" t nil)
93548d2e
DL
26439
26440;;;***
26441\f
be65bdd3
AS
26442;;;### (autoloads (thai-auto-composition-mode thai-composition-function
26443;;;;;; thai-post-read-conversion thai-compose-buffer thai-compose-string
26444;;;;;; thai-compose-region) "thai-util" "language/thai-util.el"
a5805c9d 26445;;;;;; (17279 27123))
93548d2e
DL
26446;;; Generated autoloads from language/thai-util.el
26447
93548d2e
DL
26448(autoload (quote thai-compose-region) "thai-util" "\
26449Compose Thai characters in the region.
26450When called from a program, expects two arguments,
c595cc5f
MR
26451positions (integers or markers) specifying the region.
26452
26453\(fn BEG END)" t nil)
93548d2e
DL
26454
26455(autoload (quote thai-compose-string) "thai-util" "\
c595cc5f
MR
26456Compose Thai characters in STRING and return the resulting string.
26457
26458\(fn STRING)" nil nil)
93548d2e
DL
26459
26460(autoload (quote thai-compose-buffer) "thai-util" "\
c595cc5f
MR
26461Compose Thai characters in the current buffer.
26462
26463\(fn)" t nil)
93548d2e 26464
c595cc5f
MR
26465(autoload (quote thai-post-read-conversion) "thai-util" "\
26466Not documented
26467
26468\(fn LEN)" nil nil)
93548d2e 26469
5ec14d3c
KH
26470(autoload (quote thai-composition-function) "thai-util" "\
26471Compose Thai text in the region FROM and TO.
26472The text matches the regular expression PATTERN.
26473Optional 4th argument STRING, if non-nil, is a string containing text
26474to compose.
26475
c595cc5f
MR
26476The return value is number of composed characters.
26477
26478\(fn FROM TO PATTERN &optional STRING)" nil nil)
93548d2e 26479
be65bdd3
AS
26480(autoload (quote thai-auto-composition-mode) "thai-util" "\
26481Minor mode for automatically correct Thai character composition.
26482
26483\(fn &optional ARG)" t nil)
26484
93548d2e
DL
26485;;;***
26486\f
d054101f
GM
26487;;;### (autoloads (list-at-point number-at-point symbol-at-point
26488;;;;;; sexp-at-point thing-at-point bounds-of-thing-at-point forward-thing)
a5805c9d 26489;;;;;; "thingatpt" "thingatpt.el" (17279 27123))
93548d2e
DL
26490;;; Generated autoloads from thingatpt.el
26491
26492(autoload (quote forward-thing) "thingatpt" "\
c595cc5f
MR
26493Move forward to the end of the next THING.
26494
26495\(fn THING &optional N)" nil nil)
93548d2e
DL
26496
26497(autoload (quote bounds-of-thing-at-point) "thingatpt" "\
26498Determine the start and end buffer locations for the THING at point.
26499THING is a symbol which specifies the kind of syntactic entity you want.
26500Possibilities include `symbol', `list', `sexp', `defun', `filename', `url',
26501`word', `sentence', `whitespace', `line', `page' and others.
26502
26503See the file `thingatpt.el' for documentation on how to define
26504a symbol as a valid THING.
26505
26506The value is a cons cell (START . END) giving the start and end positions
c595cc5f
MR
26507of the textual entity that was found.
26508
26509\(fn THING)" nil nil)
93548d2e
DL
26510
26511(autoload (quote thing-at-point) "thingatpt" "\
26512Return the THING at point.
26513THING is a symbol which specifies the kind of syntactic entity you want.
26514Possibilities include `symbol', `list', `sexp', `defun', `filename', `url',
26515`word', `sentence', `whitespace', `line', `page' and others.
26516
26517See the file `thingatpt.el' for documentation on how to define
c595cc5f
MR
26518a symbol as a valid THING.
26519
26520\(fn THING)" nil nil)
26521
26522(autoload (quote sexp-at-point) "thingatpt" "\
26523Not documented
26524
26525\(fn)" nil nil)
93548d2e 26526
c595cc5f
MR
26527(autoload (quote symbol-at-point) "thingatpt" "\
26528Not documented
d054101f 26529
c595cc5f 26530\(fn)" nil nil)
d054101f 26531
c595cc5f
MR
26532(autoload (quote number-at-point) "thingatpt" "\
26533Not documented
d054101f 26534
c595cc5f
MR
26535\(fn)" nil nil)
26536
26537(autoload (quote list-at-point) "thingatpt" "\
26538Not documented
26539
26540\(fn)" nil nil)
d054101f 26541
93548d2e
DL
26542;;;***
26543\f
c1a055ca
EZ
26544;;;### (autoloads (thumbs-dired-setroot thumbs-dired-show thumbs-dired-show-marked
26545;;;;;; thumbs-show-from-dir thumbs-find-thumb) "thumbs" "thumbs.el"
a5805c9d 26546;;;;;; (17376 5576))
390069bc
AS
26547;;; Generated autoloads from thumbs.el
26548
26549(autoload (quote thumbs-find-thumb) "thumbs" "\
26550Display the thumbnail for IMG.
26551
26552\(fn IMG)" t nil)
26553
c1a055ca 26554(autoload (quote thumbs-show-from-dir) "thumbs" "\
390069bc
AS
26555Make a preview buffer for all images in DIR.
26556Optional argument REG to select file matching a regexp,
26557and SAME-WINDOW to show thumbs in the same window.
26558
26559\(fn DIR &optional REG SAME-WINDOW)" t nil)
26560
26561(autoload (quote thumbs-dired-show-marked) "thumbs" "\
c1a055ca 26562In dired, make a thumbs buffer with marked files.
390069bc
AS
26563
26564\(fn)" t nil)
26565
c1a055ca 26566(autoload (quote thumbs-dired-show) "thumbs" "\
390069bc
AS
26567In dired, make a thumbs buffer with all files in current directory.
26568
26569\(fn)" t nil)
26570
c1a055ca 26571(defalias (quote thumbs) (quote thumbs-show-from-dir))
390069bc
AS
26572
26573(autoload (quote thumbs-dired-setroot) "thumbs" "\
d66d64bc 26574In dired, call the setroot program on the image at point.
390069bc
AS
26575
26576\(fn)" t nil)
26577
26578;;;***
26579\f
2b74dd73
MR
26580;;;### (autoloads (tibetan-pre-write-canonicalize-for-unicode tibetan-pre-write-conversion
26581;;;;;; tibetan-post-read-conversion tibetan-compose-buffer tibetan-decompose-buffer
26582;;;;;; tibetan-composition-function tibetan-decompose-string tibetan-decompose-region
26583;;;;;; tibetan-compose-region tibetan-compose-string tibetan-transcription-to-tibetan
26584;;;;;; tibetan-tibetan-to-transcription tibetan-char-p) "tibet-util"
a5805c9d 26585;;;;;; "language/tibet-util.el" (17279 27080))
93548d2e
DL
26586;;; Generated autoloads from language/tibet-util.el
26587
5ec14d3c 26588(autoload (quote tibetan-char-p) "tibet-util" "\
93548d2e 26589Check if char CH is Tibetan character.
c595cc5f
MR
26590Returns non-nil if CH is Tibetan. Otherwise, returns nil.
26591
26592\(fn CH)" nil nil)
93548d2e 26593
5ec14d3c 26594(autoload (quote tibetan-tibetan-to-transcription) "tibet-util" "\
c595cc5f
MR
26595Transcribe Tibetan string STR and return the corresponding Roman string.
26596
26597\(fn STR)" nil nil)
93548d2e 26598
5ec14d3c
KH
26599(autoload (quote tibetan-transcription-to-tibetan) "tibet-util" "\
26600Convert Tibetan Roman string STR to Tibetan character string.
c595cc5f
MR
26601The returned string has no composition information.
26602
26603\(fn STR)" nil nil)
93548d2e
DL
26604
26605(autoload (quote tibetan-compose-string) "tibet-util" "\
c595cc5f
MR
26606Compose Tibetan string STR.
26607
26608\(fn STR)" nil nil)
5ec14d3c
KH
26609
26610(autoload (quote tibetan-compose-region) "tibet-util" "\
c595cc5f
MR
26611Compose Tibetan text the region BEG and END.
26612
26613\(fn BEG END)" t nil)
93548d2e 26614
f75a0f7a
GM
26615(autoload (quote tibetan-decompose-region) "tibet-util" "\
26616Decompose Tibetan text in the region FROM and TO.
26617This is different from decompose-region because precomposed Tibetan characters
c595cc5f
MR
26618are decomposed into normal Tibetan character sequences.
26619
26620\(fn FROM TO)" t nil)
93548d2e 26621
f75a0f7a
GM
26622(autoload (quote tibetan-decompose-string) "tibet-util" "\
26623Decompose Tibetan string STR.
26624This is different from decompose-string because precomposed Tibetan characters
c595cc5f 26625are decomposed into normal Tibetan character sequences.
93548d2e 26626
c595cc5f
MR
26627\(fn STR)" nil nil)
26628
26629(autoload (quote tibetan-composition-function) "tibet-util" "\
26630Not documented
26631
26632\(fn FROM TO PATTERN &optional STRING)" nil nil)
93548d2e
DL
26633
26634(autoload (quote tibetan-decompose-buffer) "tibet-util" "\
26635Decomposes Tibetan characters in the buffer into their components.
c595cc5f
MR
26636See also the documentation of the function `tibetan-decompose-region'.
26637
26638\(fn)" t nil)
93548d2e
DL
26639
26640(autoload (quote tibetan-compose-buffer) "tibet-util" "\
26641Composes Tibetan character components in the buffer.
c595cc5f
MR
26642See also docstring of the function tibetan-compose-region.
26643
26644\(fn)" t nil)
93548d2e 26645
c595cc5f
MR
26646(autoload (quote tibetan-post-read-conversion) "tibet-util" "\
26647Not documented
93548d2e 26648
c595cc5f 26649\(fn LEN)" nil nil)
93548d2e 26650
c595cc5f
MR
26651(autoload (quote tibetan-pre-write-conversion) "tibet-util" "\
26652Not documented
26653
26654\(fn FROM TO)" nil nil)
26655
26656(autoload (quote tibetan-pre-write-canonicalize-for-unicode) "tibet-util" "\
26657Not documented
26658
26659\(fn FROM TO)" nil nil)
2b74dd73 26660
93548d2e
DL
26661;;;***
26662\f
cded5ed3 26663;;;### (autoloads (tildify-buffer tildify-region) "tildify" "textmodes/tildify.el"
a5805c9d 26664;;;;;; (17350 14833))
cded5ed3
GM
26665;;; Generated autoloads from textmodes/tildify.el
26666
26667(autoload (quote tildify-region) "tildify" "\
26668Add hard spaces in the region between BEG and END.
26669See variables `tildify-pattern-alist', `tildify-string-alist', and
26670`tildify-ignored-environments-alist' for information about configuration
26671parameters.
c595cc5f
MR
26672This function performs no refilling of the changed text.
26673
26674\(fn BEG END)" t nil)
cded5ed3
GM
26675
26676(autoload (quote tildify-buffer) "tildify" "\
26677Add hard spaces in the current buffer.
26678See variables `tildify-pattern-alist', `tildify-string-alist', and
26679`tildify-ignored-environments-alist' for information about configuration
26680parameters.
c595cc5f
MR
26681This function performs no refilling of the changed text.
26682
26683\(fn)" t nil)
cded5ed3
GM
26684
26685;;;***
26686\f
b442e70a 26687;;;### (autoloads (display-time-mode display-time display-time-day-and-date)
a5805c9d 26688;;;;;; "time" "time.el" (17357 6510))
93548d2e
DL
26689;;; Generated autoloads from time.el
26690
26691(defvar display-time-day-and-date nil "\
26692*Non-nil means \\[display-time] should display day and date as well as time.")
26693
9c46b00a
MR
26694(custom-autoload (quote display-time-day-and-date) "time")
26695
93548d2e
DL
26696(autoload (quote display-time) "time" "\
26697Enable display of time, load level, and mail flag in mode lines.
26698This display updates automatically every minute.
26699If `display-time-day-and-date' is non-nil, the current day and date
26700are displayed as well.
c595cc5f
MR
26701This runs the normal hook `display-time-hook' after each update.
26702
26703\(fn)" t nil)
93548d2e 26704
b442e70a 26705(defvar display-time-mode nil "\
b5c5b319 26706Non-nil if Display-Time mode is enabled.
bd02b8e0 26707See the command `display-time-mode' for a description of this minor-mode.
b442e70a
MB
26708Setting this variable directly does not take effect;
26709use either \\[customize] or the function `display-time-mode'.")
26710
9c46b00a 26711(custom-autoload (quote display-time-mode) "time")
b442e70a 26712
ac09dc1e
KL
26713(put (quote display-time-mode) (quote custom-set) (quote custom-set-minor-mode))
26714
93548d2e
DL
26715(autoload (quote display-time-mode) "time" "\
26716Toggle display of time, load level, and mail flag in mode lines.
26717With a numeric arg, enable this display if arg is positive.
26718
26719When this display is enabled, it updates automatically every minute.
26720If `display-time-day-and-date' is non-nil, the current day and date
26721are displayed as well.
c595cc5f
MR
26722This runs the normal hook `display-time-hook' after each update.
26723
26724\(fn &optional ARG)" t nil)
93548d2e
DL
26725
26726;;;***
26727\f
4c6bc877
MR
26728;;;### (autoloads (safe-date-to-time time-to-days time-to-day-in-year
26729;;;;;; date-leap-year-p days-between date-to-day time-add time-subtract
390069bc 26730;;;;;; time-since days-to-time time-less-p seconds-to-time time-to-seconds
a5805c9d
KL
26731;;;;;; date-to-time) "time-date" "calendar/time-date.el" (17308
26732;;;;;; 43144))
4c6bc877 26733;;; Generated autoloads from calendar/time-date.el
b442e70a
MB
26734
26735(autoload (quote date-to-time) "time-date" "\
c595cc5f
MR
26736Parse a string that represents a date-time and return a time value.
26737
26738\(fn DATE)" nil nil)
4c6bc877 26739
390069bc
AS
26740(autoload (quote time-to-seconds) "time-date" "\
26741Convert time value TIME to a floating point number.
26742You can use `float-time' instead.
26743
26744\(fn TIME)" nil nil)
26745
4c6bc877 26746(autoload (quote seconds-to-time) "time-date" "\
c595cc5f
MR
26747Convert SECONDS (a floating point number) to a time value.
26748
26749\(fn SECONDS)" nil nil)
4c6bc877
MR
26750
26751(autoload (quote time-less-p) "time-date" "\
c595cc5f
MR
26752Say whether time value T1 is less than time value T2.
26753
26754\(fn T1 T2)" nil nil)
4c6bc877
MR
26755
26756(autoload (quote days-to-time) "time-date" "\
c595cc5f
MR
26757Convert DAYS into a time value.
26758
26759\(fn DAYS)" nil nil)
4c6bc877
MR
26760
26761(autoload (quote time-since) "time-date" "\
26762Return the time elapsed since TIME.
c595cc5f
MR
26763TIME should be either a time value or a date-time string.
26764
26765\(fn TIME)" nil nil)
4c6bc877
MR
26766
26767(defalias (quote subtract-time) (quote time-subtract))
26768
26769(autoload (quote time-subtract) "time-date" "\
26770Subtract two time values.
c595cc5f
MR
26771Return the difference in the format of a time value.
26772
26773\(fn T1 T2)" nil nil)
4c6bc877
MR
26774
26775(autoload (quote time-add) "time-date" "\
c595cc5f
MR
26776Add two time values. One should represent a time difference.
26777
26778\(fn T1 T2)" nil nil)
4c6bc877
MR
26779
26780(autoload (quote date-to-day) "time-date" "\
26781Return the number of days between year 1 and DATE.
c595cc5f
MR
26782DATE should be a date-time string.
26783
26784\(fn DATE)" nil nil)
4c6bc877
MR
26785
26786(autoload (quote days-between) "time-date" "\
26787Return the number of days between DATE1 and DATE2.
c595cc5f
MR
26788DATE1 and DATE2 should be date-time strings.
26789
26790\(fn DATE1 DATE2)" nil nil)
4c6bc877
MR
26791
26792(autoload (quote date-leap-year-p) "time-date" "\
c595cc5f
MR
26793Return t if YEAR is a leap year.
26794
26795\(fn YEAR)" nil nil)
4c6bc877
MR
26796
26797(autoload (quote time-to-day-in-year) "time-date" "\
390069bc 26798Return the day number within the year corresponding to TIME.
c595cc5f
MR
26799
26800\(fn TIME)" nil nil)
4c6bc877
MR
26801
26802(autoload (quote time-to-days) "time-date" "\
26803The number of days between the Gregorian date 0001-12-31bce and TIME.
26804TIME should be a time value.
c595cc5f
MR
26805The Gregorian date Sunday, December 31, 1bce is imaginary.
26806
26807\(fn TIME)" nil nil)
b442e70a
MB
26808
26809(autoload (quote safe-date-to-time) "time-date" "\
4c6bc877 26810Parse a string that represents a date-time and return a time value.
c595cc5f
MR
26811If DATE is malformed, return a time value of zeros.
26812
26813\(fn DATE)" nil nil)
b442e70a
MB
26814
26815;;;***
26816\f
93548d2e 26817;;;### (autoloads (time-stamp-toggle-active time-stamp) "time-stamp"
a5805c9d 26818;;;;;; "time-stamp.el" (17279 27167))
93548d2e
DL
26819;;; Generated autoloads from time-stamp.el
26820
26821(autoload (quote time-stamp) "time-stamp" "\
7518ed7b 26822Update the time stamp string(s) in the buffer.
93548d2e
DL
26823A template in a file can be automatically updated with a new time stamp
26824every time you save the file. Add this line to your .emacs file:
390069bc
AS
26825 (add-hook 'before-save-hook 'time-stamp)
26826or customize `before-save-hook' through Custom.
93548d2e
DL
26827Normally the template must appear in the first 8 lines of a file and
26828look like one of the following:
26829 Time-stamp: <>
26830 Time-stamp: \" \"
26831The time stamp is written between the brackets or quotes:
821b278f 26832 Time-stamp: <2001-02-18 10:20:51 gildea>
93548d2e 26833The time stamp is updated only if the variable `time-stamp-active' is non-nil.
175a97e4
EZ
26834The format of the time stamp is set by the variable `time-stamp-pattern' or
26835`time-stamp-format'. The variables `time-stamp-pattern',
26836`time-stamp-line-limit', `time-stamp-start', `time-stamp-end',
26837`time-stamp-count', and `time-stamp-inserts-lines' control finding
26838the template.
c595cc5f
MR
26839
26840\(fn)" t nil)
93548d2e
DL
26841
26842(autoload (quote time-stamp-toggle-active) "time-stamp" "\
26843Toggle `time-stamp-active', setting whether \\[time-stamp] updates a buffer.
821b278f 26844With ARG, turn time stamping on if and only if arg is positive.
c595cc5f
MR
26845
26846\(fn &optional ARG)" t nil)
93548d2e
DL
26847
26848;;;***
26849\f
54baed30
GM
26850;;;### (autoloads (timeclock-when-to-leave-string timeclock-workday-elapsed-string
26851;;;;;; timeclock-workday-remaining-string timeclock-reread-log timeclock-query-out
26852;;;;;; timeclock-change timeclock-status-string timeclock-out timeclock-in
26853;;;;;; timeclock-modeline-display) "timeclock" "calendar/timeclock.el"
a5805c9d 26854;;;;;; (17308 43144))
54baed30
GM
26855;;; Generated autoloads from calendar/timeclock.el
26856
26857(autoload (quote timeclock-modeline-display) "timeclock" "\
26858Toggle display of the amount of time left today in the modeline.
27a99a7c
GM
26859If `timeclock-use-display-time' is non-nil (the default), then
26860the function `display-time-mode' must be active, and the modeline
26861will be updated whenever the time display is updated. Otherwise,
26862the timeclock will use its own sixty second timer to do its
26863updating. With prefix ARG, turn modeline display on if and only
26864if ARG is positive. Returns the new status of timeclock modeline
26865display (non-nil means on).
c595cc5f
MR
26866
26867\(fn &optional ARG)" t nil)
54baed30
GM
26868
26869(autoload (quote timeclock-in) "timeclock" "\
26870Clock in, recording the current time moment in the timelog.
26871With a numeric prefix ARG, record the fact that today has only that
26872many hours in it to be worked. If arg is a non-numeric prefix arg
26873\(non-nil, but not a number), 0 is assumed (working on a holiday or
26874weekend). *If not called interactively, ARG should be the number of
26875_seconds_ worked today*. This feature only has effect the first time
26876this function is called within a day.
26877
390069bc 26878PROJECT is the project being clocked into. If PROJECT is nil, and
54baed30
GM
26879FIND-PROJECT is non-nil -- or the user calls `timeclock-in'
26880interactively -- call the function `timeclock-get-project-function' to
c595cc5f
MR
26881discover the name of the project.
26882
26883\(fn &optional ARG PROJECT FIND-PROJECT)" t nil)
54baed30
GM
26884
26885(autoload (quote timeclock-out) "timeclock" "\
26886Clock out, recording the current time moment in the timelog.
26887If a prefix ARG is given, the user has completed the project that was
26888begun during the last time segment.
26889
26890REASON is the user's reason for clocking out. If REASON is nil, and
26891FIND-REASON is non-nil -- or the user calls `timeclock-out'
26892interactively -- call the function `timeclock-get-reason-function' to
c595cc5f
MR
26893discover the reason.
26894
26895\(fn &optional ARG REASON FIND-REASON)" t nil)
54baed30
GM
26896
26897(autoload (quote timeclock-status-string) "timeclock" "\
c595cc5f 26898Report the overall timeclock status at the present moment.
0c867fa7
MS
26899If SHOW-SECONDS is non-nil, display second resolution.
26900If TODAY-ONLY is non-nil, the display will be relative only to time
26901worked today, ignoring the time worked on previous days.
c595cc5f
MR
26902
26903\(fn &optional SHOW-SECONDS TODAY-ONLY)" t nil)
54baed30
GM
26904
26905(autoload (quote timeclock-change) "timeclock" "\
390069bc
AS
26906Change to working on a different project.
26907This clocks out of the current project, then clocks in on a new one.
26908With a prefix ARG, consider the previous project as finished at the
26909time of changeover. PROJECT is the name of the last project you were
26910working on.
c595cc5f
MR
26911
26912\(fn &optional ARG PROJECT)" t nil)
54baed30
GM
26913
26914(autoload (quote timeclock-query-out) "timeclock" "\
390069bc 26915Ask the user whether to clock out.
27a99a7c 26916This is a useful function for adding to `kill-emacs-query-functions'.
c595cc5f
MR
26917
26918\(fn)" nil nil)
54baed30
GM
26919
26920(autoload (quote timeclock-reread-log) "timeclock" "\
26921Re-read the timeclock, to account for external changes.
c595cc5f
MR
26922Returns the new value of `timeclock-discrepancy'.
26923
26924\(fn)" t nil)
54baed30
GM
26925
26926(autoload (quote timeclock-workday-remaining-string) "timeclock" "\
26927Return a string representing the amount of time left today.
26928Display second resolution if SHOW-SECONDS is non-nil. If TODAY-ONLY
26929is non-nil, the display will be relative only to time worked today.
26930See `timeclock-relative' for more information about the meaning of
c595cc5f
MR
26931\"relative to today\".
26932
26933\(fn &optional SHOW-SECONDS TODAY-ONLY)" t nil)
54baed30
GM
26934
26935(autoload (quote timeclock-workday-elapsed-string) "timeclock" "\
26936Return a string representing the amount of time worked today.
26937Display seconds resolution if SHOW-SECONDS is non-nil. If RELATIVE is
c595cc5f
MR
26938non-nil, the amount returned will be relative to past time worked.
26939
26940\(fn &optional SHOW-SECONDS)" t nil)
54baed30
GM
26941
26942(autoload (quote timeclock-when-to-leave-string) "timeclock" "\
390069bc 26943Return a string representing the end of today's workday.
54baed30 26944This string is relative to the value of `timeclock-workday'. If
0c867fa7
MS
26945SHOW-SECONDS is non-nil, the value printed/returned will include
26946seconds. If TODAY-ONLY is non-nil, the value returned will be
26947relative only to the time worked today, and not to past time.
c595cc5f
MR
26948
26949\(fn &optional SHOW-SECONDS TODAY-ONLY)" t nil)
54baed30
GM
26950
26951;;;***
26952\f
93548d2e
DL
26953;;;### (autoloads (with-timeout run-with-idle-timer add-timeout run-with-timer
26954;;;;;; run-at-time cancel-function-timers cancel-timer) "timer"
a5805c9d 26955;;;;;; "emacs-lisp/timer.el" (17279 27198))
27a99a7c 26956;;; Generated autoloads from emacs-lisp/timer.el
93548d2e
DL
26957
26958(defalias (quote disable-timeout) (quote cancel-timer))
26959
26960(autoload (quote cancel-timer) "timer" "\
c595cc5f
MR
26961Remove TIMER from the list of active timers.
26962
26963\(fn TIMER)" nil nil)
93548d2e
DL
26964
26965(autoload (quote cancel-function-timers) "timer" "\
c595cc5f
MR
26966Cancel all timers scheduled by `run-at-time' which would run FUNCTION.
26967
26968\(fn FUNCTION)" t nil)
93548d2e
DL
26969
26970(autoload (quote run-at-time) "timer" "\
26971Perform an action at time TIME.
26972Repeat the action every REPEAT seconds, if REPEAT is non-nil.
26973TIME should be a string like \"11:23pm\", nil meaning now, a number of seconds
26974from now, a value from `current-time', or t (with non-nil REPEAT)
26975meaning the next integral multiple of REPEAT.
26976REPEAT may be an integer or floating point number.
26977The action is to call FUNCTION with arguments ARGS.
26978
c595cc5f
MR
26979This function returns a timer object which you can use in `cancel-timer'.
26980
26981\(fn TIME REPEAT FUNCTION &rest ARGS)" t nil)
93548d2e
DL
26982
26983(autoload (quote run-with-timer) "timer" "\
26984Perform an action after a delay of SECS seconds.
26985Repeat the action every REPEAT seconds, if REPEAT is non-nil.
26986SECS and REPEAT may be integers or floating point numbers.
26987The action is to call FUNCTION with arguments ARGS.
26988
c595cc5f
MR
26989This function returns a timer object which you can use in `cancel-timer'.
26990
26991\(fn SECS REPEAT FUNCTION &rest ARGS)" t nil)
93548d2e
DL
26992
26993(autoload (quote add-timeout) "timer" "\
26994Add a timer to run SECS seconds from now, to call FUNCTION on OBJECT.
26995If REPEAT is non-nil, repeat the timer every REPEAT seconds.
c595cc5f
MR
26996This function is for compatibility; see also `run-with-timer'.
26997
26998\(fn SECS FUNCTION OBJECT &optional REPEAT)" nil nil)
93548d2e
DL
26999
27000(autoload (quote run-with-idle-timer) "timer" "\
27001Perform an action the next time Emacs is idle for SECS seconds.
93548d2e 27002The action is to call FUNCTION with arguments ARGS.
abb2db1c
GM
27003SECS may be an integer or a floating point number.
27004
27005If REPEAT is non-nil, do the action each time Emacs has been idle for
27006exactly SECS seconds (that is, only once for each time Emacs becomes idle).
93548d2e 27007
c595cc5f
MR
27008This function returns a timer object which you can use in `cancel-timer'.
27009
27010\(fn SECS REPEAT FUNCTION &rest ARGS)" t nil)
93548d2e
DL
27011 (put 'with-timeout 'lisp-indent-function 1)
27012
27013(autoload (quote with-timeout) "timer" "\
27014Run BODY, but if it doesn't finish in SECONDS seconds, give up.
27015If we give up, we run the TIMEOUT-FORMS and return the value of the last one.
93548d2e
DL
27016The timeout is checked whenever Emacs waits for some kind of external
27017event (such as keyboard input, input from subprocesses, or a certain time);
27018if the program loops without waiting in any way, the timeout will not
c595cc5f
MR
27019be detected.
27020
ac09dc1e 27021\(fn (SECONDS TIMEOUT-FORMS...) BODY)" nil (quote macro))
93548d2e
DL
27022
27023;;;***
27024\f
27025;;;### (autoloads (batch-titdic-convert titdic-convert) "titdic-cnv"
a5805c9d 27026;;;;;; "international/titdic-cnv.el" (17279 27079))
93548d2e
DL
27027;;; Generated autoloads from international/titdic-cnv.el
27028
27029(autoload (quote titdic-convert) "titdic-cnv" "\
27030Convert a TIT dictionary of FILENAME into a Quail package.
27031Optional argument DIRNAME if specified is the directory name under which
c595cc5f
MR
27032the generated Quail package is saved.
27033
27034\(fn FILENAME &optional DIRNAME)" t nil)
93548d2e
DL
27035
27036(autoload (quote batch-titdic-convert) "titdic-cnv" "\
27037Run `titdic-convert' on the files remaining on the command line.
27038Use this from the command line, with `-batch';
27039it won't work in an interactive Emacs.
27040For example, invoke \"emacs -batch -f batch-titdic-convert XXX.tit\" to
27041 generate Quail package file \"xxx.el\" from TIT dictionary file \"XXX.tit\".
c595cc5f
MR
27042To get complete usage, invoke \"emacs -batch -f batch-titdic-convert -h\".
27043
27044\(fn &optional FORCE)" nil nil)
93548d2e
DL
27045
27046;;;***
27047\f
932a6f0f 27048;;;### (autoloads (tamil-composition-function tamil-post-read-conversion
a5805c9d
KL
27049;;;;;; tamil-compose-region) "tml-util" "language/tml-util.el" (17279
27050;;;;;; 27080))
0c72a1a2
MR
27051;;; Generated autoloads from language/tml-util.el
27052
27053(autoload (quote tamil-compose-region) "tml-util" "\
27054Not documented
27055
27056\(fn FROM TO)" t nil)
27057
932a6f0f
AS
27058(autoload (quote tamil-post-read-conversion) "tml-util" "\
27059Not documented
27060
27061\(fn LEN)" nil nil)
27062
0c72a1a2
MR
27063(autoload (quote tamil-composition-function) "tml-util" "\
27064Compose Tamil characters in REGION, or STRING if specified.
d66d64bc 27065Assume that the REGION or STRING must fully match the composable
0c72a1a2
MR
27066PATTERN regexp.
27067
27068\(fn FROM TO PATTERN &optional STRING)" nil nil)
27069
27070;;;***
27071\f
93548d2e 27072;;;### (autoloads (tmm-prompt tmm-menubar-mouse tmm-menubar) "tmm"
a5805c9d 27073;;;;;; "tmm.el" (17279 27123))
93548d2e
DL
27074;;; Generated autoloads from tmm.el
27075 (define-key global-map "\M-`" 'tmm-menubar)
27076 (define-key global-map [f10] 'tmm-menubar)
27077 (define-key global-map [menu-bar mouse-1] 'tmm-menubar-mouse)
27078
27079(autoload (quote tmm-menubar) "tmm" "\
27080Text-mode emulation of looking and choosing from a menubar.
27081See the documentation for `tmm-prompt'.
27082X-POSITION, if non-nil, specifies a horizontal position within the menu bar;
c595cc5f
MR
27083we make that menu bar item (the one at that position) the default choice.
27084
27085\(fn &optional X-POSITION)" t nil)
93548d2e
DL
27086
27087(autoload (quote tmm-menubar-mouse) "tmm" "\
27088Text-mode emulation of looking and choosing from a menubar.
27089This command is used when you click the mouse in the menubar
27090on a console which has no window system but does have a mouse.
c595cc5f
MR
27091See the documentation for `tmm-prompt'.
27092
27093\(fn EVENT)" t nil)
93548d2e
DL
27094
27095(autoload (quote tmm-prompt) "tmm" "\
27096Text-mode emulation of calling the bindings in keymap.
27097Creates a text-mode menu of possible choices. You can access the elements
27098in the menu in two ways:
27099 *) via history mechanism from minibuffer;
27100 *) Or via completion-buffer that is automatically shown.
27101The last alternative is currently a hack, you cannot use mouse reliably.
27102
27103MENU is like the MENU argument to `x-popup-menu': either a
27104keymap or an alist of alists.
27105DEFAULT-ITEM, if non-nil, specifies an initial default choice.
c595cc5f
MR
27106Its value should be an event that has a binding in MENU.
27107
27108\(fn MENU &optional IN-POPUP DEFAULT-ITEM)" nil nil)
93548d2e
DL
27109
27110;;;***
27111\f
ac95a621
GM
27112;;;### (autoloads (todo-show todo-cp todo-mode todo-print todo-top-priorities
27113;;;;;; todo-insert-item todo-add-item-non-interactively todo-add-category)
a5805c9d 27114;;;;;; "todo-mode" "calendar/todo-mode.el" (17308 43144))
a1b8d58b
GM
27115;;; Generated autoloads from calendar/todo-mode.el
27116
ac95a621 27117(autoload (quote todo-add-category) "todo-mode" "\
c595cc5f
MR
27118Add new category CAT to the TODO list.
27119
27120\(fn CAT)" t nil)
ac95a621
GM
27121
27122(autoload (quote todo-add-item-non-interactively) "todo-mode" "\
c595cc5f
MR
27123Insert NEW-ITEM in TODO list as a new entry in CATEGORY.
27124
27125\(fn NEW-ITEM CATEGORY)" nil nil)
ac95a621
GM
27126
27127(autoload (quote todo-insert-item) "todo-mode" "\
27128Insert new TODO list entry.
27129With a prefix argument solicit the category, otherwise use the current
c595cc5f
MR
27130category.
27131
27132\(fn ARG)" t nil)
ac95a621 27133
abb2db1c
GM
27134(autoload (quote todo-top-priorities) "todo-mode" "\
27135List top priorities for each category.
a1b8d58b 27136
abb2db1c
GM
27137Number of entries for each category is given by NOF-PRIORITIES which
27138defaults to 'todo-show-priorities'.
a1b8d58b 27139
abb2db1c 27140If CATEGORY-PR-PAGE is non-nil, a page separator '^L' is inserted
c595cc5f
MR
27141between each category.
27142
27143\(fn &optional NOF-PRIORITIES CATEGORY-PR-PAGE)" t nil)
a1b8d58b 27144
abb2db1c
GM
27145(autoload (quote todo-print) "todo-mode" "\
27146Print todo summary using `todo-print-function'.
27147If CATEGORY-PR-PAGE is non-nil, a page separator `^L' is inserted
27148between each category.
a1b8d58b 27149
c595cc5f
MR
27150Number of entries for each category is given by `todo-print-priorities'.
27151
27152\(fn &optional CATEGORY-PR-PAGE)" t nil)
a1b8d58b 27153
ac95a621
GM
27154(autoload (quote todo-mode) "todo-mode" "\
27155Major mode for editing TODO lists.
27156
c595cc5f
MR
27157\\{todo-mode-map}
27158
27159\(fn)" t nil)
ac95a621
GM
27160
27161(autoload (quote todo-cp) "todo-mode" "\
c595cc5f
MR
27162Make a diary entry appear only in the current date's diary.
27163
27164\(fn)" nil nil)
ac95a621
GM
27165
27166(autoload (quote todo-show) "todo-mode" "\
c595cc5f
MR
27167Show TODO list.
27168
27169\(fn)" t nil)
ac95a621 27170
a1b8d58b
GM
27171;;;***
27172\f
ec2bb97f 27173;;;### (autoloads (tool-bar-local-item-from-menu tool-bar-add-item-from-menu
59e085e0 27174;;;;;; tool-bar-local-item tool-bar-add-item) "tool-bar" "tool-bar.el"
a5805c9d 27175;;;;;; (17331 26268))
175a97e4 27176;;; Generated autoloads from tool-bar.el
b442e70a 27177
a5e28954
MB
27178(put (quote tool-bar-mode) (quote standard-value) (quote (t)))
27179
b442e70a
MB
27180(autoload (quote tool-bar-add-item) "tool-bar" "\
27181Add an item to the tool bar.
27182ICON names the image, DEF is the key definition and KEY is a symbol
0ad84a21
MB
27183for the fake function key in the menu keymap. Remaining arguments
27184PROPS are additional items to add to the menu item specification. See
27185Info node `(elisp)Tool Bar'. Items are added from left to right.
b442e70a 27186
2a55cd3a 27187ICON is the base name of a file containing the image to use. The
175a97e4 27188function will first try to use low-color/ICON.xpm if display-color-cells
390069bc 27189is less or equal to 256, then ICON.xpm, then ICON.pbm, and finally
2a55cd3a 27190ICON.xbm, using `find-image'.
0ad84a21 27191
ec2bb97f 27192Use this function only to make bindings in the global value of `tool-bar-map'.
c595cc5f
MR
27193To define items in any other map, use `tool-bar-local-item'.
27194
27195\(fn ICON DEF KEY &rest PROPS)" nil nil)
ec2bb97f
EZ
27196
27197(autoload (quote tool-bar-local-item) "tool-bar" "\
27198Add an item to the tool bar in map MAP.
27199ICON names the image, DEF is the key definition and KEY is a symbol
27200for the fake function key in the menu keymap. Remaining arguments
27201PROPS are additional items to add to the menu item specification. See
27202Info node `(elisp)Tool Bar'. Items are added from left to right.
27203
27204ICON is the base name of a file containing the image to use. The
175a97e4 27205function will first try to use low-color/ICON.xpm if display-color-cells
390069bc 27206is less or equal to 256, then ICON.xpm, then ICON.pbm, and finally
c595cc5f
MR
27207ICON.xbm, using `find-image'.
27208
27209\(fn ICON DEF KEY MAP &rest PROPS)" nil nil)
0ad84a21
MB
27210
27211(autoload (quote tool-bar-add-item-from-menu) "tool-bar" "\
59e085e0 27212Define tool bar binding for COMMAND in keymap MAP using the given ICON.
ec2bb97f
EZ
27213This makes a binding for COMMAND in `tool-bar-map', copying its
27214binding from the menu bar in MAP (which defaults to `global-map'), but
27215modifies the binding by adding an image specification for ICON. It
27216finds ICON just like `tool-bar-add-item'. PROPS are additional
27217properties to add to the binding.
0ad84a21 27218
ec2bb97f
EZ
27219MAP must contain appropriate binding for `[menu-bar]' which holds a keymap.
27220
27221Use this function only to make bindings in the global value of `tool-bar-map'.
59e085e0 27222To define items in any other map, use `tool-bar-local-item-from-menu'.
c595cc5f
MR
27223
27224\(fn COMMAND ICON &optional MAP &rest PROPS)" nil nil)
ec2bb97f
EZ
27225
27226(autoload (quote tool-bar-local-item-from-menu) "tool-bar" "\
59e085e0 27227Define local tool bar binding for COMMAND using the given ICON.
ec2bb97f
EZ
27228This makes a binding for COMMAND in IN-MAP, copying its binding from
27229the menu bar in FROM-MAP (which defaults to `global-map'), but
27230modifies the binding by adding an image specification for ICON. It
27231finds ICON just like `tool-bar-add-item'. PROPS are additional
27232properties to add to the binding.
27233
59e085e0
KL
27234FROM-MAP must contain appropriate binding for `[menu-bar]' which
27235holds a keymap.
c595cc5f
MR
27236
27237\(fn COMMAND ICON IN-MAP &optional FROM-MAP &rest PROPS)" nil nil)
b442e70a
MB
27238
27239;;;***
27240\f
ac09dc1e 27241;;;### (autoloads (tpu-edt-on tpu-edt-mode) "tpu-edt" "emulation/tpu-edt.el"
a5805c9d 27242;;;;;; (17279 27122))
93548d2e
DL
27243;;; Generated autoloads from emulation/tpu-edt.el
27244
ac09dc1e
KL
27245(defvar tpu-edt-mode nil "\
27246Non-nil if Tpu-Edt mode is enabled.
27247See the command `tpu-edt-mode' for a description of this minor-mode.
27248Setting this variable directly does not take effect;
27249use either \\[customize] or the function `tpu-edt-mode'.")
27250
27251(custom-autoload (quote tpu-edt-mode) "tpu-edt")
27252
27253(put (quote tpu-edt-mode) (quote custom-set) (quote custom-set-minor-mode))
27254
27255(autoload (quote tpu-edt-mode) "tpu-edt" "\
27256TPU/edt emulation.
27257
27258\(fn &optional ARG)" t nil)
93548d2e 27259
5682d301 27260(defalias (quote tpu-edt) (quote tpu-edt-on))
93548d2e
DL
27261
27262(autoload (quote tpu-edt-on) "tpu-edt" "\
c595cc5f
MR
27263Turn on TPU/edt emulation.
27264
27265\(fn)" t nil)
93548d2e
DL
27266
27267;;;***
27268\f
27269;;;### (autoloads (tpu-set-cursor-bound tpu-set-cursor-free tpu-set-scroll-margins)
a5805c9d 27270;;;;;; "tpu-extras" "emulation/tpu-extras.el" (17279 27122))
93548d2e
DL
27271;;; Generated autoloads from emulation/tpu-extras.el
27272
27273(autoload (quote tpu-set-scroll-margins) "tpu-extras" "\
c595cc5f
MR
27274Set scroll margins.
27275
27276\(fn TOP BOTTOM)" t nil)
93548d2e
DL
27277
27278(autoload (quote tpu-set-cursor-free) "tpu-extras" "\
c595cc5f
MR
27279Allow the cursor to move freely about the screen.
27280
27281\(fn)" t nil)
93548d2e
DL
27282
27283(autoload (quote tpu-set-cursor-bound) "tpu-extras" "\
c595cc5f
MR
27284Constrain the cursor to the flow of the text.
27285
27286\(fn)" t nil)
93548d2e
DL
27287
27288;;;***
27289\f
a5805c9d 27290;;;### (autoloads (tq-create) "tq" "emacs-lisp/tq.el" (17279 27122))
93548d2e
DL
27291;;; Generated autoloads from emacs-lisp/tq.el
27292
27293(autoload (quote tq-create) "tq" "\
27294Create and return a transaction queue communicating with PROCESS.
27295PROCESS should be a subprocess capable of sending and receiving
27296streams of bytes. It may be a local process, or it may be connected
c595cc5f
MR
27297to a tcp server on another machine.
27298
27299\(fn PROCESS)" nil nil)
93548d2e
DL
27300
27301;;;***
27302\f
27303;;;### (autoloads (trace-function-background trace-function trace-buffer)
a5805c9d 27304;;;;;; "trace" "emacs-lisp/trace.el" (17279 27122))
93548d2e
DL
27305;;; Generated autoloads from emacs-lisp/trace.el
27306
27307(defvar trace-buffer "*trace-output*" "\
27308*Trace output will by default go to that buffer.")
27309
9c46b00a
MR
27310(custom-autoload (quote trace-buffer) "trace")
27311
93548d2e
DL
27312(autoload (quote trace-function) "trace" "\
27313Traces FUNCTION with trace output going to BUFFER.
27314For every call of FUNCTION Lisp-style trace messages that display argument
c595cc5f 27315and return values will be inserted into BUFFER. This function generates the
93548d2e
DL
27316trace advice for FUNCTION and activates it together with any other advice
27317there might be!! The trace BUFFER will popup whenever FUNCTION is called.
27318Do not use this to trace functions that switch buffers or do any other
c595cc5f
MR
27319display oriented stuff, use `trace-function-background' instead.
27320
27321\(fn FUNCTION &optional BUFFER)" t nil)
93548d2e
DL
27322
27323(autoload (quote trace-function-background) "trace" "\
27324Traces FUNCTION with trace output going quietly to BUFFER.
27325For every call of FUNCTION Lisp-style trace messages that display argument
c595cc5f 27326and return values will be inserted into BUFFER. This function generates the
93548d2e
DL
27327trace advice for FUNCTION and activates it together with any other advice
27328there might be!! Trace output will quietly go to BUFFER without changing
c595cc5f
MR
27329the window or buffer configuration at all.
27330
27331\(fn FUNCTION &optional BUFFER)" t nil)
93548d2e
DL
27332
27333;;;***
27334\f
c1a055ca
EZ
27335;;;### (autoloads (tramp-unload-tramp tramp-unload-file-name-handler-alist
27336;;;;;; tramp-completion-file-name-handler tramp-file-name-handler
c595cc5f 27337;;;;;; tramp-completion-file-name-regexp tramp-file-name-regexp)
a5805c9d 27338;;;;;; "tramp" "net/tramp.el" (17379 24712))
4c6bc877
MR
27339;;; Generated autoloads from net/tramp.el
27340
c595cc5f
MR
27341(defvar tramp-unified-filenames (not (featurep (quote xemacs))) "\
27342Non-nil means to use unified Ange-FTP/Tramp filename syntax.
27343Nil means to use a separate filename syntax for Tramp.")
27344
4c6bc877
MR
27345(defconst tramp-file-name-regexp-unified "\\`/[^/:]+:" "\
27346Value for `tramp-file-name-regexp' for unified remoting.
27347Emacs (not XEmacs) uses a unified filename syntax for Ange-FTP and
27348Tramp. See `tramp-file-name-structure-unified' for more explanations.")
27349
27350(defconst tramp-file-name-regexp-separate "\\`/\\[.*\\]" "\
27351Value for `tramp-file-name-regexp' for separate remoting.
27352XEmacs uses a separate filename syntax for Tramp and EFS.
27353See `tramp-file-name-structure-separate' for more explanations.")
27354
c595cc5f 27355(defvar tramp-file-name-regexp (if tramp-unified-filenames tramp-file-name-regexp-unified tramp-file-name-regexp-separate) "\
4c6bc877
MR
27356*Regular expression matching file names handled by tramp.
27357This regexp should match tramp file names but no other file names.
27358\(When tramp.el is loaded, this regular expression is prepended to
27359`file-name-handler-alist', and that is searched sequentially. Thus,
27360if the tramp entry appears rather early in the `file-name-handler-alist'
27361and is a bit too general, then some files might be considered tramp
27362files which are not really tramp files.
27363
27364Please note that the entry in `file-name-handler-alist' is made when
27365this file (tramp.el) is loaded. This means that this variable must be set
27366before loading tramp.el. Alternatively, `file-name-handler-alist' can be
27367updated after changing this variable.
27368
c595cc5f
MR
27369Also see `tramp-file-name-structure'.")
27370
9c46b00a
MR
27371(custom-autoload (quote tramp-file-name-regexp) "tramp")
27372
390069bc 27373(defconst tramp-completion-file-name-regexp-unified "^/$\\|^/[^/:][^/]*$" "\
c595cc5f
MR
27374Value for `tramp-completion-file-name-regexp' for unified remoting.
27375Emacs (not XEmacs) uses a unified filename syntax for Ange-FTP and
27376Tramp. See `tramp-file-name-structure-unified' for more explanations.")
27377
27378(defconst tramp-completion-file-name-regexp-separate "^/\\([[][^]]*\\)?$" "\
27379Value for `tramp-completion-file-name-regexp' for separate remoting.
27380XEmacs uses a separate filename syntax for Tramp and EFS.
27381See `tramp-file-name-structure-separate' for more explanations.")
27382
27383(defvar tramp-completion-file-name-regexp (if tramp-unified-filenames tramp-completion-file-name-regexp-unified tramp-completion-file-name-regexp-separate) "\
27384*Regular expression matching file names handled by tramp completion.
27385This regexp should match partial tramp file names only.
27386
27387Please note that the entry in `file-name-handler-alist' is made when
27388this file (tramp.el) is loaded. This means that this variable must be set
27389before loading tramp.el. Alternatively, `file-name-handler-alist' can be
27390updated after changing this variable.
27391
27392Also see `tramp-file-name-structure'.")
4c6bc877 27393
9c46b00a
MR
27394(custom-autoload (quote tramp-completion-file-name-regexp) "tramp")
27395
4c6bc877 27396(autoload (quote tramp-file-name-handler) "tramp" "\
27a99a7c 27397Invoke Tramp file name handler.
c595cc5f
MR
27398Falls back to normal file name handler if no tramp file name handler exists.
27399
27400\(fn OPERATION &rest ARGS)" nil nil)
27401
27402(autoload (quote tramp-completion-file-name-handler) "tramp" "\
27403Invoke tramp file name completion handler.
27404Falls back to normal file name handler if no tramp file name handler exists.
27405
27406\(fn OPERATION &rest ARGS)" nil nil)
4c6bc877 27407
27a99a7c
GM
27408(put (quote tramp-completion-file-name-handler) (quote safe-magic) t)
27409
4c6bc877
MR
27410(add-to-list (quote file-name-handler-alist) (cons tramp-file-name-regexp (quote tramp-file-name-handler)))
27411
c1a055ca
EZ
27412(autoload (quote tramp-unload-file-name-handler-alist) "tramp" "\
27413Not documented
27414
27415\(fn)" nil nil)
27416
27417(autoload (quote tramp-unload-tramp) "tramp" "\
27418Not documented
27419
27420\(fn)" t nil)
27421
27422;;;***
27423\f
27424;;;### (autoloads (tramp-ftp-enable-ange-ftp) "tramp-ftp" "net/tramp-ftp.el"
a5805c9d 27425;;;;;; (17374 21429))
c1a055ca
EZ
27426;;; Generated autoloads from net/tramp-ftp.el
27427
27428(autoload (quote tramp-ftp-enable-ange-ftp) "tramp-ftp" "\
27429Not documented
27430
27431\(fn)" nil nil)
27432
27433;;;***
27434\f
27435;;;### (autoloads (tumme-setup-dired-keybindings tumme-dired) "tumme"
a5805c9d 27436;;;;;; "tumme.el" (17374 21544))
c1a055ca
EZ
27437;;; Generated autoloads from tumme.el
27438
27439(autoload (quote tumme-dired) "tumme" "\
27440Open directory DIR and create a default window configuration.
27441
27442Convenience command that:
27443
27444 - Opens dired in folder DIR
27445 - Splits windows in most useful (?) way
27446 - Set `truncate-lines' to t
27447
27448If called with prefix argument ARG, skip splitting of windows.
27449
27450\(fn DIR &optional ARG)" t nil)
27451
27452(autoload (quote tumme-setup-dired-keybindings) "tumme" "\
27453Setup easy-to-use keybindings for the commands to be used in dired mode.
27454Note that n, p and <down> and <up> will be hijacked and bound to
27455`tumme-dired-x-line'.
27456
27457\(fn)" t nil)
27458
4c6bc877
MR
27459;;;***
27460\f
93548d2e 27461;;;### (autoloads (2C-split 2C-associate-buffer 2C-two-columns) "two-column"
a5805c9d 27462;;;;;; "textmodes/two-column.el" (17279 27123))
93548d2e
DL
27463;;; Generated autoloads from textmodes/two-column.el
27464 (autoload '2C-command "two-column" () t 'keymap)
27465 (global-set-key "\C-x6" '2C-command)
27466 (global-set-key [f2] '2C-command)
27467
27468(autoload (quote 2C-two-columns) "two-column" "\
27469Split current window vertically for two-column editing.
27470When called the first time, associates a buffer with the current
27471buffer in two-column minor mode (see \\[describe-mode] ).
27472Runs `2C-other-buffer-hook' in the new buffer.
27473When called again, restores the screen layout with the current buffer
c595cc5f
MR
27474first and the associated buffer to its right.
27475
27476\(fn &optional BUFFER)" t nil)
93548d2e
DL
27477
27478(autoload (quote 2C-associate-buffer) "two-column" "\
27479Associate another buffer with this one in two-column minor mode.
27480Can also be used to associate a just previously visited file, by
27481accepting the proposed default buffer.
27482
c595cc5f
MR
27483\(See \\[describe-mode] .)
27484
27485\(fn)" t nil)
93548d2e
DL
27486
27487(autoload (quote 2C-split) "two-column" "\
27488Split a two-column text at point, into two buffers in two-column minor mode.
27489Point becomes the local value of `2C-window-width'. Only lines that
27490have the ARG same preceding characters at that column get split. The
27491ARG preceding characters without any leading whitespace become the local
27492value for `2C-separator'. This way lines that continue across both
27493columns remain untouched in the first buffer.
27494
27495This function can be used with a prototype line, to set up things. You
27496write the first line of each column and then split that line. E.g.:
27497
27498First column's text sSs Second column's text
27499 \\___/\\
27500 / \\
27501 5 character Separator You type M-5 \\[2C-split] with the point here.
27502
c595cc5f
MR
27503\(See \\[describe-mode] .)
27504
27505\(fn ARG)" t nil)
93548d2e
DL
27506
27507;;;***
27508\f
27509;;;### (autoloads (type-break-guesstimate-keystroke-threshold type-break-statistics
27510;;;;;; type-break type-break-mode type-break-keystroke-threshold
390069bc
AS
27511;;;;;; type-break-good-break-interval type-break-good-rest-interval
27512;;;;;; type-break-interval type-break-mode) "type-break" "type-break.el"
a5805c9d 27513;;;;;; (17279 27123))
93548d2e
DL
27514;;; Generated autoloads from type-break.el
27515
27516(defvar type-break-mode nil "\
27517Toggle typing break mode.
27518See the docstring for the `type-break-mode' command for more information.
27519Setting this variable directly does not take effect;
27520use either \\[customize] or the function `type-break-mode'.")
27521
9c46b00a 27522(custom-autoload (quote type-break-mode) "type-break")
93548d2e
DL
27523
27524(defvar type-break-interval (* 60 60) "\
27525*Number of seconds between scheduled typing breaks.")
27526
9c46b00a
MR
27527(custom-autoload (quote type-break-interval) "type-break")
27528
93548d2e
DL
27529(defvar type-break-good-rest-interval (/ type-break-interval 6) "\
27530*Number of seconds of idle time considered to be an adequate typing rest.
27531
390069bc 27532When this variable is non-nil, Emacs checks the idle time between
93548d2e
DL
27533keystrokes. If this idle time is long enough to be considered a \"good\"
27534rest from typing, then the next typing break is simply rescheduled for later.
27535
27536If a break is interrupted before this much time elapses, the user will be
27537asked whether or not really to interrupt the break.")
27538
9c46b00a
MR
27539(custom-autoload (quote type-break-good-rest-interval) "type-break")
27540
390069bc
AS
27541(defvar type-break-good-break-interval nil "\
27542*Number of seconds considered to be an adequate explicit typing rest.
27543
27544When this variable is non-nil, its value is considered to be a \"good\"
27545length (in seconds) for a break initiated by the command `type-break',
27546overriding `type-break-good-rest-interval'. This provides querying of
27547break interruptions when `type-break-good-rest-interval' is nil.")
27548
27549(custom-autoload (quote type-break-good-break-interval) "type-break")
27550
93548d2e
DL
27551(defvar type-break-keystroke-threshold (let* ((wpm 35) (avg-word-length 5) (upper (* wpm avg-word-length (/ type-break-interval 60))) (lower (/ upper 5))) (cons lower upper)) "\
27552*Upper and lower bound on number of keystrokes for considering typing break.
27553This structure is a pair of numbers (MIN . MAX).
27554
27555The first number is the minimum number of keystrokes that must have been
27556entered since the last typing break before considering another one, even if
27557the scheduled time has elapsed; the break is simply rescheduled until later
27558if the minimum threshold hasn't been reached. If this first value is nil,
27559then there is no minimum threshold; as soon as the scheduled time has
27560elapsed, the user will always be queried.
27561
27562The second number is the maximum number of keystrokes that can be entered
27563before a typing break is requested immediately, pre-empting the originally
27564scheduled break. If this second value is nil, then no pre-emptive breaks
27565will occur; only scheduled ones will.
27566
27567Keys with bucky bits (shift, control, meta, etc) are counted as only one
27568keystroke even though they really require multiple keys to generate them.
27569
27570The command `type-break-guesstimate-keystroke-threshold' can be used to
27571guess a reasonably good pair of values for this variable.")
27572
9c46b00a
MR
27573(custom-autoload (quote type-break-keystroke-threshold) "type-break")
27574
93548d2e
DL
27575(autoload (quote type-break-mode) "type-break" "\
27576Enable or disable typing-break mode.
27577This is a minor mode, but it is global to all buffers by default.
27578
27579When this mode is enabled, the user is encouraged to take typing breaks at
27580appropriate intervals; either after a specified amount of time or when the
27581user has exceeded a keystroke threshold. When the time arrives, the user
390069bc 27582is asked to take a break. If the user refuses at that time, Emacs will ask
93548d2e
DL
27583again in a short period of time. The idea is to give the user enough time
27584to find a good breaking point in his or her work, but be sufficiently
27585annoying to discourage putting typing breaks off indefinitely.
27586
27587A negative prefix argument disables this mode.
27588No argument or any non-negative argument enables it.
27589
27590The user may enable or disable this mode by setting the variable of the
27591same name, though setting it in that way doesn't reschedule a break or
27592reset the keystroke counter.
27593
27594If the mode was previously disabled and is enabled as a consequence of
27595calling this function, it schedules a break with `type-break-schedule' to
27596make sure one occurs (the user can call that command to reschedule the
27597break at any time). It also initializes the keystroke counter.
27598
27599The variable `type-break-interval' specifies the number of seconds to
27600schedule between regular typing breaks. This variable doesn't directly
27601affect the time schedule; it simply provides a default for the
27602`type-break-schedule' command.
27603
27604If set, the variable `type-break-good-rest-interval' specifies the minimum
27605amount of time which is considered a reasonable typing break. Whenever
27606that time has elapsed, typing breaks are automatically rescheduled for
390069bc 27607later even if Emacs didn't prompt you to take one first. Also, if a break
93548d2e 27608is ended before this much time has elapsed, the user will be asked whether
390069bc
AS
27609or not to continue. A nil value for this variable prevents automatic
27610break rescheduling, making `type-break-interval' an upper bound on the time
27611between breaks. In this case breaks will be prompted for as usual before
27612the upper bound if the keystroke threshold is reached.
27613
27614If `type-break-good-rest-interval' is nil and
27615`type-break-good-break-interval' is set, then confirmation is required to
27616interrupt a break before `type-break-good-break-interval' seconds
27617have passed. This provides for an upper bound on the time between breaks
27618together with confirmation of interruptions to these breaks.
93548d2e
DL
27619
27620The variable `type-break-keystroke-threshold' is used to determine the
27621thresholds at which typing breaks should be considered. You can use
27622the command `type-break-guesstimate-keystroke-threshold' to try to
27623approximate good values for this.
27624
27625There are several variables that affect how or when warning messages about
27626imminent typing breaks are displayed. They include:
27627
27628 `type-break-mode-line-message-mode'
27629 `type-break-time-warning-intervals'
27630 `type-break-keystroke-warning-intervals'
27631 `type-break-warning-repeat'
27632 `type-break-warning-countdown-string'
27633 `type-break-warning-countdown-string-type'
27634
27635There are several variables that affect if, how, and when queries to begin
27636a typing break occur. They include:
27637
27638 `type-break-query-mode'
27639 `type-break-query-function'
27640 `type-break-query-interval'
27641
390069bc
AS
27642The command `type-break-statistics' prints interesting things.
27643
27644Finally, a file (named `type-break-file-name') is used to store information
27645across Emacs sessions. This provides recovery of the break status between
27646sessions and after a crash. Manual changes to the file may result in
27647problems.
c595cc5f
MR
27648
27649\(fn &optional PREFIX)" t nil)
93548d2e
DL
27650
27651(autoload (quote type-break) "type-break" "\
27652Take a typing break.
27653
27654During the break, a demo selected from the functions listed in
27655`type-break-demo-functions' is run.
27656
27657After the typing break is finished, the next break is scheduled
c595cc5f
MR
27658as per the function `type-break-schedule'.
27659
27660\(fn)" t nil)
93548d2e
DL
27661
27662(autoload (quote type-break-statistics) "type-break" "\
27663Print statistics about typing breaks in a temporary buffer.
27664This includes the last time a typing break was taken, when the next one is
c595cc5f
MR
27665scheduled, the keystroke thresholds and the current keystroke count, etc.
27666
27667\(fn)" t nil)
93548d2e
DL
27668
27669(autoload (quote type-break-guesstimate-keystroke-threshold) "type-break" "\
27670Guess values for the minimum/maximum keystroke threshold for typing breaks.
27671
27672If called interactively, the user is prompted for their guess as to how
27673many words per minute they usually type. This value should not be your
27674maximum WPM, but your average. Of course, this is harder to gauge since it
27675can vary considerably depending on what you are doing. For example, one
27676tends to type less when debugging a program as opposed to writing
27677documentation. (Perhaps a separate program should be written to estimate
27678average typing speed.)
27679
27680From that, this command sets the values in `type-break-keystroke-threshold'
27681based on a fairly simple algorithm involving assumptions about the average
27682length of words (5). For the minimum threshold, it uses about a fifth of
27683the computed maximum threshold.
27684
390069bc 27685When called from Lisp programs, the optional args WORDLEN and FRAC can be
93548d2e
DL
27686used to override the default assumption about average word length and the
27687fraction of the maximum threshold to which to set the minimum threshold.
27688FRAC should be the inverse of the fractional value; for example, a value of
c595cc5f
MR
276892 would mean to use one half, a value of 4 would mean to use one quarter, etc.
27690
27691\(fn WPM &optional WORDLEN FRAC)" t nil)
93548d2e
DL
27692
27693;;;***
27694\f
27695;;;### (autoloads (ununderline-region underline-region) "underline"
a5805c9d 27696;;;;;; "textmodes/underline.el" (17279 27123))
93548d2e
DL
27697;;; Generated autoloads from textmodes/underline.el
27698
27699(autoload (quote underline-region) "underline" "\
27700Underline all nonblank characters in the region.
27701Works by overstriking underscores.
27702Called from program, takes two arguments START and END
c595cc5f
MR
27703which specify the range to operate on.
27704
27705\(fn START END)" t nil)
93548d2e
DL
27706
27707(autoload (quote ununderline-region) "underline" "\
27708Remove all underlining (overstruck underscores) in the region.
27709Called from program, takes two arguments START and END
c595cc5f
MR
27710which specify the range to operate on.
27711
27712\(fn START END)" t nil)
93548d2e
DL
27713
27714;;;***
27715\f
27716;;;### (autoloads (unforward-rmail-message undigestify-rmail-message)
a5805c9d 27717;;;;;; "undigest" "mail/undigest.el" (17279 27123))
93548d2e
DL
27718;;; Generated autoloads from mail/undigest.el
27719
27720(autoload (quote undigestify-rmail-message) "undigest" "\
27721Break up a digest message into its constituent messages.
c595cc5f
MR
27722Leaves original message, deleted, before the undigestified messages.
27723
27724\(fn)" t nil)
93548d2e
DL
27725
27726(autoload (quote unforward-rmail-message) "undigest" "\
27727Extract a forwarded message from the containing message.
27728This puts the forwarded message into a separate rmail message
c595cc5f
MR
27729following the containing message.
27730
27731\(fn)" t nil)
93548d2e
DL
27732
27733;;;***
27734\f
27735;;;### (autoloads (unrmail batch-unrmail) "unrmail" "mail/unrmail.el"
a5805c9d 27736;;;;;; (17279 27123))
93548d2e
DL
27737;;; Generated autoloads from mail/unrmail.el
27738
27739(autoload (quote batch-unrmail) "unrmail" "\
27740Convert Rmail files to system inbox format.
27741Specify the input Rmail file names as command line arguments.
27742For each Rmail file, the corresponding output file name
27743is made by adding `.mail' at the end.
c595cc5f
MR
27744For example, invoke `emacs -batch -f batch-unrmail RMAIL'.
27745
27746\(fn)" nil nil)
93548d2e
DL
27747
27748(autoload (quote unrmail) "unrmail" "\
c595cc5f
MR
27749Convert Rmail file FILE to system inbox format file TO-FILE.
27750
27751\(fn FILE TO-FILE)" t nil)
27752
27753;;;***
27754\f
a5805c9d
KL
27755;;;### (autoloads (unsafep) "unsafep" "emacs-lisp/unsafep.el" (17379
27756;;;;;; 24712))
c595cc5f
MR
27757;;; Generated autoloads from emacs-lisp/unsafep.el
27758
27759(autoload (quote unsafep) "unsafep" "\
27760Return nil if evaluating FORM couldn't possibly do any harm;
27761otherwise result is a reason why FORM is unsafe. UNSAFEP-VARS is a list
27762of symbols with local bindings.
27763
27764\(fn FORM &optional UNSAFEP-VARS)" nil nil)
93548d2e
DL
27765
27766;;;***
27767\f
c1a055ca 27768;;;### (autoloads (url-retrieve-synchronously url-retrieve) "url"
a5805c9d 27769;;;;;; "url/url.el" (17350 14840))
390069bc
AS
27770;;; Generated autoloads from url/url.el
27771
c1a055ca
EZ
27772(autoload (quote url-retrieve) "url" "\
27773Retrieve URL asynchronously and call CALLBACK with CBARGS when finished.
27774URL is either a string or a parsed URL.
27775
27776CALLBACK is called when the object has been completely retrieved, with
27777the current buffer containing the object, and any MIME headers associated
27778with it. Normally it gets the arguments in the list CBARGS.
27779However, if what we find is a redirect, CALLBACK is given
27780two additional args, `:redirect' and the redirected URL,
27781followed by CBARGS.
27782
27783Return the buffer URL will load into, or nil if the process has
27784already completed.
27785
27786\(fn URL CALLBACK &optional CBARGS)" nil nil)
27787
27788(autoload (quote url-retrieve-synchronously) "url" "\
27789Retrieve URL synchronously.
27790Return the buffer containing the data, or nil if there are no data
27791associated with it (the case for dired, info, or mailto URLs that need
27792no further processing). URL is either a string or a parsed URL.
27793
27794\(fn URL)" nil nil)
390069bc
AS
27795
27796;;;***
27797\f
27798;;;### (autoloads (url-register-auth-scheme url-get-authentication)
a5805c9d 27799;;;;;; "url-auth" "url/url-auth.el" (17279 27123))
390069bc
AS
27800;;; Generated autoloads from url/url-auth.el
27801
27802(autoload (quote url-get-authentication) "url-auth" "\
27803Return an authorization string suitable for use in the WWW-Authenticate
27804header in an HTTP/1.0 request.
27805
27806URL is the url you are requesting authorization to. This can be either a
27807 string representing the URL, or the parsed representation returned by
27808 `url-generic-parse-url'
27809REALM is the realm at a specific site we are looking for. This should be a
27810 string specifying the exact realm, or nil or the symbol 'any' to
27811 specify that the filename portion of the URL should be used as the
27812 realm
27813TYPE is the type of authentication to be returned. This is either a string
27814 representing the type (basic, digest, etc), or nil or the symbol 'any'
27815 to specify that any authentication is acceptable. If requesting 'any'
27816 the strongest matching authentication will be returned. If this is
27817 wrong, its no big deal, the error from the server will specify exactly
27818 what type of auth to use
27819PROMPT is boolean - specifies whether to ask the user for a username/password
27820 if one cannot be found in the cache
27821
27822\(fn URL REALM TYPE PROMPT &optional ARGS)" nil nil)
27823
27824(autoload (quote url-register-auth-scheme) "url-auth" "\
27825Register an HTTP authentication method.
27826
27827TYPE is a string or symbol specifying the name of the method. This
27828 should be the same thing you expect to get returned in an Authenticate
27829 header in HTTP/1.0 - it will be downcased.
27830FUNCTION is the function to call to get the authorization information. This
27831 defaults to `url-?-auth', where ? is TYPE
27832RATING a rating between 1 and 10 of the strength of the authentication.
27833 This is used when asking for the best authentication for a specific
27834 URL. The item with the highest rating is returned.
27835
27836\(fn TYPE &optional FUNCTION RATING)" nil nil)
27837
27838;;;***
27839\f
27840;;;### (autoloads (url-cache-expired url-cache-extract url-is-cached
99155348 27841;;;;;; url-store-in-cache) "url-cache" "url/url-cache.el" (17337
a5805c9d 27842;;;;;; 56256))
390069bc
AS
27843;;; Generated autoloads from url/url-cache.el
27844
27845(autoload (quote url-store-in-cache) "url-cache" "\
27846Store buffer BUFF in the cache.
27847
27848\(fn &optional BUFF)" nil nil)
27849
27850(autoload (quote url-is-cached) "url-cache" "\
27851Return non-nil if the URL is cached.
27852
27853\(fn URL)" nil nil)
27854
27855(autoload (quote url-cache-extract) "url-cache" "\
27856Extract FNAM from the local disk cache
27857
27858\(fn FNAM)" nil nil)
27859
27860(autoload (quote url-cache-expired) "url-cache" "\
27861Return t iff a cached file has expired.
27862
27863\(fn URL MOD)" nil nil)
27864
27865;;;***
27866\f
a5805c9d 27867;;;### (autoloads (url-cid) "url-cid" "url/url-cid.el" (17279 27123))
390069bc
AS
27868;;; Generated autoloads from url/url-cid.el
27869
27870(autoload (quote url-cid) "url-cid" "\
27871Not documented
27872
27873\(fn URL)" nil nil)
27874
27875;;;***
27876\f
d66d64bc 27877;;;### (autoloads (url-dav-vc-registered url-dav-supported-p) "url-dav"
a5805c9d 27878;;;;;; "url/url-dav.el" (17279 27123))
390069bc
AS
27879;;; Generated autoloads from url/url-dav.el
27880
27881(autoload (quote url-dav-supported-p) "url-dav" "\
27882Not documented
27883
27884\(fn URL)" nil nil)
27885
390069bc
AS
27886(autoload (quote url-dav-vc-registered) "url-dav" "\
27887Not documented
27888
27889\(fn URL)" nil nil)
27890
27891;;;***
27892\f
a5805c9d
KL
27893;;;### (autoloads (url-file) "url-file" "url/url-file.el" (17279
27894;;;;;; 27189))
390069bc
AS
27895;;; Generated autoloads from url/url-file.el
27896
27897(autoload (quote url-file) "url-file" "\
27898Handle file: and ftp: URLs.
27899
27900\(fn URL CALLBACK CBARGS)" nil nil)
27901
27902;;;***
27903\f
27904;;;### (autoloads (url-open-stream url-gateway-nslookup-host) "url-gw"
a5805c9d 27905;;;;;; "url/url-gw.el" (17279 27123))
390069bc
AS
27906;;; Generated autoloads from url/url-gw.el
27907
27908(autoload (quote url-gateway-nslookup-host) "url-gw" "\
27909Attempt to resolve the given HOST using nslookup if possible.
27910
27911\(fn HOST)" t nil)
27912
27913(autoload (quote url-open-stream) "url-gw" "\
27914Open a stream to HOST, possibly via a gateway.
27915Args per `open-network-stream'.
d66d64bc 27916Will not make a connection if `url-gateway-unplugged' is non-nil.
390069bc
AS
27917
27918\(fn NAME BUFFER HOST SERVICE)" nil nil)
27919
27920;;;***
27921\f
27922;;;### (autoloads (url-insert-file-contents url-file-local-copy url-copy-file
99155348 27923;;;;;; url-handler-mode) "url-handlers" "url/url-handlers.el" (17337
a5805c9d 27924;;;;;; 56256))
390069bc
AS
27925;;; Generated autoloads from url/url-handlers.el
27926
27927(defvar url-handler-mode nil "\
27928Non-nil if Url-Handler mode is enabled.
27929See the command `url-handler-mode' for a description of this minor-mode.
27930Setting this variable directly does not take effect;
27931use either \\[customize] or the function `url-handler-mode'.")
27932
27933(custom-autoload (quote url-handler-mode) "url-handlers")
27934
ac09dc1e
KL
27935(put (quote url-handler-mode) (quote custom-set) (quote custom-set-minor-mode))
27936
390069bc
AS
27937(autoload (quote url-handler-mode) "url-handlers" "\
27938Use URL to handle URL-like file names.
27939
27940\(fn &optional ARG)" t nil)
27941
27942(autoload (quote url-copy-file) "url-handlers" "\
27943Copy URL to NEWNAME. Both args must be strings.
27944Signals a `file-already-exists' error if file NEWNAME already exists,
27945unless a third argument OK-IF-ALREADY-EXISTS is supplied and non-nil.
27946A number as third arg means request confirmation if NEWNAME already exists.
27947This is what happens in interactive use with M-x.
27948Fourth arg KEEP-TIME non-nil means give the new file the same
27949last-modified time as the old one. (This works on only some systems.)
27950A prefix arg makes KEEP-TIME non-nil.
27951
27952\(fn URL NEWNAME &optional OK-IF-ALREADY-EXISTS KEEP-TIME)" nil nil)
27953
27954(autoload (quote url-file-local-copy) "url-handlers" "\
27955Copy URL into a temporary file on this machine.
27956Returns the name of the local copy, or nil, if FILE is directly
27957accessible.
27958
27959\(fn URL &rest IGNORED)" nil nil)
27960
27961(autoload (quote url-insert-file-contents) "url-handlers" "\
27962Not documented
27963
27964\(fn URL &optional VISIT BEG END REPLACE)" nil nil)
27965
27966;;;***
27967\f
390069bc 27968;;;### (autoloads (url-http-options url-http-file-attributes url-http-file-exists-p
a5805c9d 27969;;;;;; url-http) "url-http" "url/url-http.el" (17283 59911))
390069bc
AS
27970;;; Generated autoloads from url/url-http.el
27971
27972(autoload (quote url-http) "url-http" "\
27973Retrieve URL via HTTP asynchronously.
27974URL must be a parsed URL. See `url-generic-parse-url' for details.
27975When retrieval is completed, the function CALLBACK is executed with
27976CBARGS as the arguments.
27977
27978\(fn URL CALLBACK CBARGS)" nil nil)
27979
27980(autoload (quote url-http-file-exists-p) "url-http" "\
27981Not documented
27982
27983\(fn URL)" nil nil)
27984
27985(defalias (quote url-http-file-readable-p) (quote url-http-file-exists-p))
27986
27987(autoload (quote url-http-file-attributes) "url-http" "\
27988Not documented
27989
27990\(fn URL &optional ID-FORMAT)" nil nil)
27991
27992(autoload (quote url-http-options) "url-http" "\
27993Returns a property list describing options available for URL.
27994This list is retrieved using the `OPTIONS' HTTP method.
27995
27996Property list members:
27997
27998methods
27999 A list of symbols specifying what HTTP methods the resource
28000 supports.
28001
28002dav
28003 A list of numbers specifying what DAV protocol/schema versions are
28004 supported.
28005
28006dasl
28007 A list of supported DASL search types supported (string form)
28008
28009ranges
28010 A list of the units available for use in partial document fetches.
28011
28012p3p
28013 The `Platform For Privacy Protection' description for the resource.
28014 Currently this is just the raw header contents. This is likely to
28015 change once P3P is formally supported by the URL package or
28016 Emacs/W3.
28017
28018\(fn URL)" nil nil)
28019
28020;;;***
28021\f
a5805c9d 28022;;;### (autoloads (url-irc) "url-irc" "url/url-irc.el" (17279 27123))
390069bc
AS
28023;;; Generated autoloads from url/url-irc.el
28024
28025(autoload (quote url-irc) "url-irc" "\
28026Not documented
28027
28028\(fn URL)" nil nil)
28029
28030;;;***
28031\f
a5805c9d
KL
28032;;;### (autoloads (url-ldap) "url-ldap" "url/url-ldap.el" (17279
28033;;;;;; 27123))
390069bc
AS
28034;;; Generated autoloads from url/url-ldap.el
28035
28036(autoload (quote url-ldap) "url-ldap" "\
d66d64bc
KL
28037Perform an LDAP search specified by URL.
28038The return value is a buffer displaying the search results in HTML.
28039URL can be a URL string, or a URL vector of the type returned by
28040`url-generic-parse-url'.
390069bc
AS
28041
28042\(fn URL)" nil nil)
28043
28044;;;***
28045\f
28046;;;### (autoloads (url-mailto url-mail) "url-mailto" "url/url-mailto.el"
a5805c9d 28047;;;;;; (17279 27172))
390069bc
AS
28048;;; Generated autoloads from url/url-mailto.el
28049
28050(autoload (quote url-mail) "url-mailto" "\
28051Not documented
28052
28053\(fn &rest ARGS)" t nil)
28054
28055(autoload (quote url-mailto) "url-mailto" "\
28056Handle the mailto: URL syntax.
28057
28058\(fn URL)" nil nil)
28059
28060;;;***
28061\f
28062;;;### (autoloads (url-data url-generic-emulator-loader url-info
a5805c9d 28063;;;;;; url-man) "url-misc" "url/url-misc.el" (17279 27123))
390069bc
AS
28064;;; Generated autoloads from url/url-misc.el
28065
28066(autoload (quote url-man) "url-misc" "\
28067Fetch a Unix manual page URL.
28068
28069\(fn URL)" nil nil)
28070
28071(autoload (quote url-info) "url-misc" "\
28072Fetch a GNU Info URL.
28073
28074\(fn URL)" nil nil)
28075
28076(autoload (quote url-generic-emulator-loader) "url-misc" "\
28077Not documented
28078
28079\(fn URL)" nil nil)
28080
28081(defalias (quote url-rlogin) (quote url-generic-emulator-loader))
28082
28083(defalias (quote url-telnet) (quote url-generic-emulator-loader))
28084
28085(defalias (quote url-tn3270) (quote url-generic-emulator-loader))
28086
28087(autoload (quote url-data) "url-misc" "\
28088Fetch a data URL (RFC 2397).
28089
28090\(fn URL)" nil nil)
28091
28092;;;***
28093\f
28094;;;### (autoloads (url-snews url-news) "url-news" "url/url-news.el"
a5805c9d 28095;;;;;; (17374 21266))
390069bc
AS
28096;;; Generated autoloads from url/url-news.el
28097
28098(autoload (quote url-news) "url-news" "\
28099Not documented
28100
28101\(fn URL)" nil nil)
28102
28103(autoload (quote url-snews) "url-news" "\
28104Not documented
28105
28106\(fn URL)" nil nil)
28107
28108;;;***
28109\f
28110;;;### (autoloads (url-ns-user-pref url-ns-prefs isInNet isResolvable
28111;;;;;; dnsResolve dnsDomainIs isPlainHostName) "url-ns" "url/url-ns.el"
a5805c9d 28112;;;;;; (17279 27123))
390069bc
AS
28113;;; Generated autoloads from url/url-ns.el
28114
28115(autoload (quote isPlainHostName) "url-ns" "\
28116Not documented
28117
28118\(fn HOST)" nil nil)
28119
28120(autoload (quote dnsDomainIs) "url-ns" "\
28121Not documented
28122
28123\(fn HOST DOM)" nil nil)
28124
28125(autoload (quote dnsResolve) "url-ns" "\
28126Not documented
28127
28128\(fn HOST)" nil nil)
28129
28130(autoload (quote isResolvable) "url-ns" "\
28131Not documented
28132
28133\(fn HOST)" nil nil)
28134
28135(autoload (quote isInNet) "url-ns" "\
28136Not documented
28137
28138\(fn IP NET MASK)" nil nil)
28139
28140(autoload (quote url-ns-prefs) "url-ns" "\
28141Not documented
28142
28143\(fn &optional FILE)" nil nil)
28144
28145(autoload (quote url-ns-user-pref) "url-ns" "\
28146Not documented
28147
28148\(fn KEY &optional DEFAULT)" nil nil)
28149
28150;;;***
28151\f
28152;;;### (autoloads (url-generic-parse-url url-recreate-url) "url-parse"
a5805c9d 28153;;;;;; "url/url-parse.el" (17279 27123))
390069bc
AS
28154;;; Generated autoloads from url/url-parse.el
28155
28156(autoload (quote url-recreate-url) "url-parse" "\
28157Recreate a URL string from the parsed URLOBJ.
28158
28159\(fn URLOBJ)" nil nil)
28160
28161(autoload (quote url-generic-parse-url) "url-parse" "\
28162Return a vector of the parts of URL.
28163Format is:
28164\[TYPE USER PASSWORD HOST PORT FILE TARGET ATTRIBUTES FULL]
28165
28166\(fn URL)" nil nil)
28167
28168;;;***
28169\f
28170;;;### (autoloads (url-setup-privacy-info) "url-privacy" "url/url-privacy.el"
a5805c9d 28171;;;;;; (17350 14840))
390069bc
AS
28172;;; Generated autoloads from url/url-privacy.el
28173
28174(autoload (quote url-setup-privacy-info) "url-privacy" "\
c1a055ca 28175Setup variables that expose info about you and your system.
390069bc
AS
28176
28177\(fn)" t nil)
28178
28179;;;***
28180\f
28181;;;### (autoloads (url-view-url url-truncate-url-for-viewing url-file-extension
28182;;;;;; url-hexify-string url-unhex-string url-parse-query-string
28183;;;;;; url-basepath url-percentage url-display-percentage url-pretty-length
28184;;;;;; url-strip-leading-spaces url-eat-trailing-space url-get-normalized-date
28185;;;;;; url-lazy-message url-normalize-url url-insert-entities-in-string
28186;;;;;; url-parse-args url-debug url-debug) "url-util" "url/url-util.el"
a5805c9d 28187;;;;;; (17279 27123))
390069bc
AS
28188;;; Generated autoloads from url/url-util.el
28189
28190(defvar url-debug nil "\
28191*What types of debug messages from the URL library to show.
28192Debug messages are logged to the *URL-DEBUG* buffer.
28193
28194If t, all messages will be logged.
28195If a number, all messages will be logged, as well shown via `message'.
28196If a list, it is a list of the types of messages to be logged.")
28197
28198(custom-autoload (quote url-debug) "url-util")
28199
28200(autoload (quote url-debug) "url-util" "\
28201Not documented
28202
28203\(fn TAG &rest ARGS)" nil nil)
28204
28205(autoload (quote url-parse-args) "url-util" "\
28206Not documented
28207
28208\(fn STR &optional NODOWNCASE)" nil nil)
28209
28210(autoload (quote url-insert-entities-in-string) "url-util" "\
28211Convert HTML markup-start characters to entity references in STRING.
28212Also replaces the \" character, so that the result may be safely used as
28213 an attribute value in a tag. Returns a new string with the result of the
28214 conversion. Replaces these characters as follows:
28215 & ==> &amp;
28216 < ==> &lt;
28217 > ==> &gt;
28218 \" ==> &quot;
28219
28220\(fn STRING)" nil nil)
28221
28222(autoload (quote url-normalize-url) "url-util" "\
28223Return a 'normalized' version of URL.
28224Strips out default port numbers, etc.
28225
28226\(fn URL)" nil nil)
28227
28228(autoload (quote url-lazy-message) "url-util" "\
28229Just like `message', but is a no-op if called more than once a second.
28230Will not do anything if `url-show-status' is nil.
28231
28232\(fn &rest ARGS)" nil nil)
28233
28234(autoload (quote url-get-normalized-date) "url-util" "\
28235Return a 'real' date string that most HTTP servers can understand.
28236
28237\(fn &optional SPECIFIED-TIME)" nil nil)
28238
28239(autoload (quote url-eat-trailing-space) "url-util" "\
28240Remove spaces/tabs at the end of a string.
28241
28242\(fn X)" nil nil)
28243
28244(autoload (quote url-strip-leading-spaces) "url-util" "\
28245Remove spaces at the front of a string.
28246
28247\(fn X)" nil nil)
28248
28249(autoload (quote url-pretty-length) "url-util" "\
28250Not documented
28251
28252\(fn N)" nil nil)
28253
28254(autoload (quote url-display-percentage) "url-util" "\
28255Not documented
28256
28257\(fn FMT PERC &rest ARGS)" nil nil)
28258
28259(autoload (quote url-percentage) "url-util" "\
28260Not documented
28261
28262\(fn X Y)" nil nil)
28263
28264(autoload (quote url-basepath) "url-util" "\
28265Return the base pathname of FILE, or the actual filename if X is true.
28266
28267\(fn FILE &optional X)" nil nil)
28268
28269(autoload (quote url-parse-query-string) "url-util" "\
28270Not documented
28271
fbf34973 28272\(fn QUERY &optional DOWNCASE ALLOW-NEWLINES)" nil nil)
390069bc
AS
28273
28274(autoload (quote url-unhex-string) "url-util" "\
28275Remove %XX embedded spaces, etc in a url.
28276If optional second argument ALLOW-NEWLINES is non-nil, then allow the
28277decoding of carriage returns and line feeds in the string, which is normally
28278forbidden in URL encoding.
28279
28280\(fn STR &optional ALLOW-NEWLINES)" nil nil)
28281
28282(autoload (quote url-hexify-string) "url-util" "\
28283Escape characters in a string.
28284
28285\(fn STR)" nil nil)
28286
28287(autoload (quote url-file-extension) "url-util" "\
28288Return the filename extension of FNAME.
28289If optional variable X is t,
28290then return the basename of the file with the extension stripped off.
28291
28292\(fn FNAME &optional X)" nil nil)
28293
28294(autoload (quote url-truncate-url-for-viewing) "url-util" "\
28295Return a shortened version of URL that is WIDTH characters or less wide.
28296WIDTH defaults to the current frame width.
28297
28298\(fn URL &optional WIDTH)" nil nil)
28299
28300(autoload (quote url-view-url) "url-util" "\
28301View the current document's URL.
28302Optional argument NO-SHOW means just return the URL, don't show it in
28303the minibuffer.
28304
28305This uses `url-current-object', set locally to the buffer.
28306
28307\(fn &optional NO-SHOW)" t nil)
28308
28309;;;***
28310\f
93548d2e 28311;;;### (autoloads (ask-user-about-supersession-threat ask-user-about-lock)
a5805c9d 28312;;;;;; "userlock" "userlock.el" (17279 27123))
93548d2e
DL
28313;;; Generated autoloads from userlock.el
28314
28315(autoload (quote ask-user-about-lock) "userlock" "\
28316Ask user what to do when he wants to edit FILE but it is locked by OPPONENT.
28317This function has a choice of three things to do:
cded5ed3 28318 do (signal 'file-locked (list FILE OPPONENT))
93548d2e
DL
28319 to refrain from editing the file
28320 return t (grab the lock on the file)
28321 return nil (edit the file even though it is locked).
28322You can redefine this function to choose among those three alternatives
c595cc5f
MR
28323in any way you like.
28324
28325\(fn FILE OPPONENT)" nil nil)
93548d2e
DL
28326
28327(autoload (quote ask-user-about-supersession-threat) "userlock" "\
28328Ask a user who is about to modify an obsolete buffer what to do.
28329This function has two choices: it can return, in which case the modification
28330of the buffer will proceed, or it can (signal 'file-supersession (file)),
28331in which case the proposed buffer modification will not be made.
28332
28333You can rewrite this to use any criterion you like to choose which one to do.
c595cc5f
MR
28334The buffer in question is current when this function is called.
28335
28336\(fn FN)" nil nil)
93548d2e
DL
28337
28338;;;***
28339\f
a5805c9d 28340;;;### (autoloads nil "utf-7" "international/utf-7.el" (17279 27196))
6a9e60bc
RF
28341;;; Generated autoloads from international/utf-7.el
28342(autoload-coding-system 'utf-7 '(require 'utf-7))
28343
28344;;;***
28345\f
390069bc
AS
28346;;;### (autoloads (uudecode-decode-region uudecode-decode-region-internal
28347;;;;;; uudecode-decode-region-external) "uudecode" "gnus/uudecode.el"
a5805c9d 28348;;;;;; (17279 27122))
b442e70a
MB
28349;;; Generated autoloads from gnus/uudecode.el
28350
28351(autoload (quote uudecode-decode-region-external) "uudecode" "\
6c083b4c
GM
28352Uudecode region between START and END using external program.
28353If FILE-NAME is non-nil, save the result to FILE-NAME. The program
c595cc5f
MR
28354used is specified by `uudecode-decoder-program'.
28355
28356\(fn START END &optional FILE-NAME)" t nil)
b442e70a 28357
390069bc 28358(autoload (quote uudecode-decode-region-internal) "uudecode" "\
6c083b4c 28359Uudecode region between START and END without using an external program.
c595cc5f
MR
28360If FILE-NAME is non-nil, save the result to FILE-NAME.
28361
28362\(fn START END &optional FILE-NAME)" t nil)
b442e70a 28363
390069bc
AS
28364(autoload (quote uudecode-decode-region) "uudecode" "\
28365Uudecode region between START and END.
28366If FILE-NAME is non-nil, save the result to FILE-NAME.
28367
28368\(fn START END &optional FILE-NAME)" nil nil)
28369
b442e70a
MB
28370;;;***
28371\f
93548d2e 28372;;;### (autoloads (vc-annotate vc-update-change-log vc-rename-file
4c6bc877
MR
28373;;;;;; vc-transfer-file vc-switch-backend vc-cancel-version vc-update
28374;;;;;; vc-revert-buffer vc-print-log vc-retrieve-snapshot vc-create-snapshot
c595cc5f
MR
28375;;;;;; vc-directory vc-merge vc-insert-headers vc-version-other-window
28376;;;;;; vc-diff vc-register vc-next-action vc-do-command edit-vc-file
d66d64bc 28377;;;;;; with-vc-file vc-branch-part vc-trunk-p vc-before-checkin-hook
a5805c9d 28378;;;;;; vc-checkin-hook vc-checkout-hook) "vc" "vc.el" (17374 21541))
93548d2e
DL
28379;;; Generated autoloads from vc.el
28380
a67b854e 28381(defvar vc-checkout-hook nil "\
c1a055ca 28382Normal hook (list of functions) run after checking out a file.
a67b854e
GM
28383See `run-hooks'.")
28384
9c46b00a
MR
28385(custom-autoload (quote vc-checkout-hook) "vc")
28386
93548d2e 28387(defvar vc-checkin-hook nil "\
c1a055ca 28388Normal hook (list of functions) run after a checkin is done.
27a99a7c 28389See also `log-edit-done-hook'.")
93548d2e 28390
9c46b00a
MR
28391(custom-autoload (quote vc-checkin-hook) "vc")
28392
93548d2e 28393(defvar vc-before-checkin-hook nil "\
c1a055ca 28394Normal hook (list of functions) run before a file is checked in.
93548d2e
DL
28395See `run-hooks'.")
28396
9c46b00a
MR
28397(custom-autoload (quote vc-before-checkin-hook) "vc")
28398
d66d64bc
KL
28399(autoload (quote vc-trunk-p) "vc" "\
28400Return t if REV is a revision on the trunk.
28401
28402\(fn REV)" nil nil)
28403
4c6bc877 28404(autoload (quote vc-branch-part) "vc" "\
c595cc5f
MR
28405Return the branch part of a revision number REV.
28406
28407\(fn REV)" nil nil)
4c6bc877 28408
93548d2e 28409(autoload (quote with-vc-file) "vc" "\
8d8d8d4e 28410Check out a writable copy of FILE if necessary, then execute BODY.
54baed30
GM
28411Check in FILE with COMMENT (a string) after BODY has been executed.
28412FILE is passed through `expand-file-name'; BODY executed within
28413`save-excursion'. If FILE is not under version control, or locked by
c595cc5f
MR
28414somebody else, signal error.
28415
28416\(fn FILE COMMENT &rest BODY)" nil (quote macro))
93548d2e
DL
28417
28418(autoload (quote edit-vc-file) "vc" "\
54baed30
GM
28419Edit FILE under version control, executing body.
28420Checkin with COMMENT after executing BODY.
93548d2e 28421This macro uses `with-vc-file', passing args to it.
c595cc5f
MR
28422However, before executing BODY, find FILE, and after BODY, save buffer.
28423
28424\(fn FILE COMMENT &rest BODY)" nil (quote macro))
93548d2e 28425
358a9f50 28426(autoload (quote vc-do-command) "vc" "\
8d8d8d4e 28427Execute a VC command, notifying user and checking for errors.
358a9f50
GM
28428Output from COMMAND goes to BUFFER, or *vc* if BUFFER is nil or the
28429current buffer if BUFFER is t. If the destination buffer is not
28430already current, set it up properly and erase it. The command is
28431considered successful if its exit status does not exceed OKSTATUS (if
c1a055ca
EZ
28432OKSTATUS is nil, that means to ignore error status, if it is `async', that
28433means not to wait for termination of the subprocess; if it is t it means to
28434ignore all execution errors). FILE is the
358a9f50
GM
28435name of the working file (may also be nil, to execute commands that
28436don't expect a file name). If an optional list of FLAGS is present,
c595cc5f
MR
28437that is inserted into the command line before the filename.
28438
28439\(fn BUFFER OKSTATUS COMMAND FILE &rest FLAGS)" nil nil)
358a9f50 28440
93548d2e 28441(autoload (quote vc-next-action) "vc" "\
8d8d8d4e 28442Do the next logical version control operation on the current file.
54baed30
GM
28443
28444If you call this from within a VC dired buffer with no files marked,
93548d2e 28445it will operate on the file in the current line.
54baed30
GM
28446
28447If you call this from within a VC dired buffer, and one or more
93548d2e
DL
28448files are marked, it will accept a log message and then operate on
28449each one. The log message will be used as a comment for any register
28450or checkin operations, but ignored when doing checkouts. Attempted
28451lock steals will raise an error.
54baed30
GM
28452
28453A prefix argument lets you specify the version number to use.
93548d2e
DL
28454
28455For RCS and SCCS files:
28456 If the file is not already registered, this registers it for version
28457control.
28458 If the file is registered and not locked by anyone, this checks out
28459a writable and locked file ready for editing.
28460 If the file is checked out and locked by the calling user, this
28461first checks to see if the file has changed since checkout. If not,
28462it performs a revert.
28463 If the file has been changed, this pops up a buffer for entry
28464of a log message; when the message has been entered, it checks in the
28465resulting changes along with the log message as change commentary. If
28466the variable `vc-keep-workfiles' is non-nil (which is its default), a
28467read-only copy of the changed file is left in place afterwards.
28468 If the file is registered and locked by someone else, you are given
28469the option to steal the lock.
28470
28471For CVS files:
28472 If the file is not already registered, this registers it for version
28473control. This does a \"cvs add\", but no \"cvs commit\".
28474 If the file is added but not committed, it is committed.
28475 If your working file is changed, but the repository file is
28476unchanged, this pops up a buffer for entry of a log message; when the
28477message has been entered, it checks in the resulting changes along
28478with the logmessage as change commentary. A writable file is retained.
28479 If the repository file is changed, you are asked if you want to
c595cc5f
MR
28480merge in the changes into your working copy.
28481
28482\(fn VERBOSE)" t nil)
93548d2e
DL
28483
28484(autoload (quote vc-register) "vc" "\
b442e70a
MB
28485Register the current file into a version control system.
28486With prefix argument SET-VERSION, allow user to specify initial version
54baed30
GM
28487level. If COMMENT is present, use that as an initial comment.
28488
b442e70a 28489The version control system to use is found by cycling through the list
54baed30
GM
28490`vc-handled-backends'. The first backend in that list which declares
28491itself responsible for the file (usually because other files in that
28492directory are already registered under that backend) will be used to
28493register the file. If no backend declares itself responsible, the
c595cc5f
MR
28494first backend that could register the file is used.
28495
28496\(fn &optional SET-VERSION COMMENT)" t nil)
93548d2e
DL
28497
28498(autoload (quote vc-diff) "vc" "\
28499Display diffs between file versions.
8d8d8d4e
EZ
28500Normally this compares the current file and buffer with the most
28501recent checked in version of that file. This uses no arguments. With
28502a prefix argument HISTORIC, it reads the file name to use and two
28503version designators specifying which versions to compare. The
28504optional argument NOT-URGENT non-nil means it is ok to say no to
c595cc5f
MR
28505saving the buffer.
28506
28507\(fn HISTORIC &optional NOT-URGENT)" t nil)
93548d2e
DL
28508
28509(autoload (quote vc-version-other-window) "vc" "\
8d8d8d4e
EZ
28510Visit version REV of the current file in another window.
28511If the current file is named `F', the version is named `F.~REV~'.
c595cc5f
MR
28512If `F.~REV~' already exists, use it instead of checking it out again.
28513
28514\(fn REV)" t nil)
93548d2e
DL
28515
28516(autoload (quote vc-insert-headers) "vc" "\
8d8d8d4e 28517Insert headers into a file for use with a version control system.
93548d2e 28518Headers desired are inserted at point, and are pulled from
c595cc5f
MR
28519the variable `vc-BACKEND-header'.
28520
28521\(fn)" t nil)
54baed30
GM
28522
28523(autoload (quote vc-merge) "vc" "\
b442e70a
MB
28524Merge changes between two versions into the current buffer's file.
28525This asks for two versions to merge from in the minibuffer. If the
28526first version is a branch number, then merge all changes from that
28527branch. If the first version is empty, merge news, i.e. recent changes
28528from the current branch.
93548d2e 28529
c595cc5f 28530See Info node `Merging'.
93548d2e 28531
c595cc5f
MR
28532\(fn)" t nil)
28533
28534(defalias (quote vc-resolve-conflicts) (quote smerge-ediff))
93548d2e 28535
54baed30
GM
28536(autoload (quote vc-directory) "vc" "\
28537Create a buffer in VC Dired Mode for directory DIR.
28538
28539See Info node `VC Dired Mode'.
28540
28541With prefix arg READ-SWITCHES, specify a value to override
c595cc5f
MR
28542`dired-listing-switches' when generating the listing.
28543
28544\(fn DIR READ-SWITCHES)" t nil)
93548d2e
DL
28545
28546(autoload (quote vc-create-snapshot) "vc" "\
b442e70a 28547Descending recursively from DIR, make a snapshot called NAME.
54baed30
GM
28548For each registered file, the version level of its latest version
28549becomes part of the named configuration. If the prefix argument
28550BRANCHP is given, the snapshot is made as a new branch and the files
c595cc5f
MR
28551are checked out in that new branch.
28552
28553\(fn DIR NAME BRANCHP)" t nil)
93548d2e
DL
28554
28555(autoload (quote vc-retrieve-snapshot) "vc" "\
b442e70a
MB
28556Descending recursively from DIR, retrieve the snapshot called NAME.
28557If NAME is empty, it refers to the latest versions.
28558If locking is used for the files in DIR, then there must not be any
28559locked files at or below DIR (but if NAME is empty, locked files are
c595cc5f
MR
28560allowed and simply skipped).
28561
28562\(fn DIR NAME)" t nil)
93548d2e
DL
28563
28564(autoload (quote vc-print-log) "vc" "\
c595cc5f 28565List the change log of the current buffer in a window.
390069bc 28566If FOCUS-REV is non-nil, leave the point at that revision.
c595cc5f 28567
390069bc 28568\(fn &optional FOCUS-REV)" t nil)
93548d2e
DL
28569
28570(autoload (quote vc-revert-buffer) "vc" "\
8d8d8d4e 28571Revert the current buffer's file to the version it was based on.
93548d2e 28572This asks for confirmation if the buffer contents are not identical
b442e70a 28573to that version. This function does not automatically pick up newer
c595cc5f
MR
28574changes found in the master file; use \\[universal-argument] \\[vc-next-action] to do so.
28575
28576\(fn)" t nil)
93548d2e 28577
4c6bc877
MR
28578(autoload (quote vc-update) "vc" "\
28579Update the current buffer's file to the latest version on its branch.
28580If the file contains no changes, and is not locked, then this simply replaces
28581the working file with the latest version on its branch. If the file contains
821b278f 28582changes, and the backend supports merging news, then any recent changes from
c595cc5f
MR
28583the current branch are merged into the working file.
28584
28585\(fn)" t nil)
4c6bc877 28586
93548d2e
DL
28587(autoload (quote vc-cancel-version) "vc" "\
28588Get rid of most recently checked in version of this file.
c595cc5f
MR
28589A prefix argument NOREVERT means do not revert the buffer afterwards.
28590
28591\(fn NOREVERT)" t nil)
93548d2e 28592
a67b854e
GM
28593(autoload (quote vc-switch-backend) "vc" "\
28594Make BACKEND the current version control system for FILE.
28595FILE must already be registered in BACKEND. The change is not
28596permanent, only for the current session. This function only changes
28597VC's perspective on FILE, it does not register or unregister it.
28598By default, this command cycles through the registered backends.
c595cc5f
MR
28599To get a prompt, use a prefix argument.
28600
28601\(fn FILE BACKEND)" t nil)
a67b854e
GM
28602
28603(autoload (quote vc-transfer-file) "vc" "\
28604Transfer FILE to another version control system NEW-BACKEND.
28605If NEW-BACKEND has a higher precedence than FILE's current backend
28606\(i.e. it comes earlier in `vc-handled-backends'), then register FILE in
28607NEW-BACKEND, using the version number from the current backend as the
28608base level. If NEW-BACKEND has a lower precedence than the current
28609backend, then commit all changes that were made under the current
28610backend to NEW-BACKEND, and unregister FILE from the current backend.
c595cc5f
MR
28611\(If FILE is not yet registered under NEW-BACKEND, register it.)
28612
28613\(fn FILE NEW-BACKEND)" nil nil)
a67b854e 28614
93548d2e 28615(autoload (quote vc-rename-file) "vc" "\
c595cc5f
MR
28616Rename file OLD to NEW, and rename its master file likewise.
28617
28618\(fn OLD NEW)" t nil)
93548d2e
DL
28619
28620(autoload (quote vc-update-change-log) "vc" "\
54baed30 28621Find change log file and add entries from recent version control logs.
93548d2e 28622Normally, find log entries for all registered files in the default
54baed30 28623directory.
93548d2e 28624
b442e70a 28625With prefix arg of \\[universal-argument], only find log entries for the current buffer's file.
93548d2e
DL
28626
28627With any numeric prefix arg, find log entries for all currently visited
28628files that are under version control. This puts all the entries in the
28629log for the default directory, which may not be appropriate.
28630
b442e70a 28631From a program, any ARGS are assumed to be filenames for which
c595cc5f
MR
28632log entries should be gathered.
28633
28634\(fn &rest ARGS)" t nil)
93548d2e
DL
28635
28636(autoload (quote vc-annotate) "vc" "\
d66d64bc 28637Display the edit history of the current file using colors.
ad648212
GM
28638
28639This command creates a buffer that shows, for each line of the current
d66d64bc 28640file, when it was last edited and by whom. Additionally, colors are
ad648212 28641used to show the age of each line--blue means oldest, red means
d66d64bc 28642youngest, and intermediate colors indicate intermediate ages. By
ad648212
GM
28643default, the time scale stretches back one year into the past;
28644everything that is older than that is shown in blue.
28645
28646With a prefix argument, this command asks two questions in the
28647minibuffer. First, you may enter a version number; then the buffer
28648displays and annotates that version instead of the current version
28649\(type RET in the minibuffer to leave that default unchanged). Then,
4c6bc877
MR
28650you are prompted for the time span in days which the color range
28651should cover. For example, a time span of 20 days means that changes
28652over the past 20 days are shown in red to blue, according to their
28653age, and everything that is older than that is shown in blue.
ad648212
GM
28654
28655Customization variables:
93548d2e
DL
28656
28657`vc-annotate-menu-elements' customizes the menu elements of the
28658mode-specific menu. `vc-annotate-color-map' and
28659`vc-annotate-very-old-color' defines the mapping of time to
c595cc5f
MR
28660colors. `vc-annotate-background' specifies the background color.
28661
c1a055ca 28662\(fn FILE REV &optional DISPLAY-MODE BUF)" t nil)
390069bc
AS
28663
28664;;;***
28665\f
a5805c9d 28666;;;### (autoloads nil "vc-arch" "vc-arch.el" (17279 27123))
390069bc
AS
28667;;; Generated autoloads from vc-arch.el
28668 (defun vc-arch-registered (file)
28669 (if (vc-find-root file "{arch}/=tagging-method")
28670 (progn
28671 (load "vc-arch")
28672 (vc-arch-registered file))))
93548d2e
DL
28673
28674;;;***
28675\f
a5805c9d 28676;;;### (autoloads nil "vc-cvs" "vc-cvs.el" (17279 27198))
54baed30
GM
28677;;; Generated autoloads from vc-cvs.el
28678 (defun vc-cvs-registered (f)
28679 (when (file-readable-p (expand-file-name
28680 "CVS/Entries" (file-name-directory f)))
c595cc5f 28681 (load "vc-cvs")
54baed30
GM
28682 (vc-cvs-registered f)))
28683
28684;;;***
28685\f
a5805c9d 28686;;;### (autoloads nil "vc-mcvs" "vc-mcvs.el" (17319 2456))
0c72a1a2
MR
28687;;; Generated autoloads from vc-mcvs.el
28688 (defun vc-mcvs-registered (file)
390069bc
AS
28689 (if (vc-find-root file "MCVS/CVS")
28690 (progn
28691 (load "vc-mcvs")
28692 (vc-mcvs-registered file))))
0c72a1a2
MR
28693
28694;;;***
28695\f
54baed30 28696;;;### (autoloads (vc-rcs-master-templates) "vc-rcs" "vc-rcs.el"
a5805c9d 28697;;;;;; (17374 21550))
54baed30
GM
28698;;; Generated autoloads from vc-rcs.el
28699
28700(defvar vc-rcs-master-templates (quote ("%sRCS/%s,v" "%s%s,v" "%sRCS/%s")) "\
28701*Where to look for RCS master files.
28702For a description of possible values, see `vc-check-master-templates'.")
9c46b00a
MR
28703
28704(custom-autoload (quote vc-rcs-master-templates) "vc-rcs")
c595cc5f 28705 (defun vc-rcs-registered (f) (vc-default-registered 'RCS f))
54baed30
GM
28706
28707;;;***
28708\f
28709;;;### (autoloads (vc-sccs-master-templates) "vc-sccs" "vc-sccs.el"
a5805c9d 28710;;;;;; (17374 21550))
54baed30
GM
28711;;; Generated autoloads from vc-sccs.el
28712
28713(defvar vc-sccs-master-templates (quote ("%sSCCS/s.%s" "%ss.%s" vc-sccs-search-project-dir)) "\
28714*Where to look for SCCS master files.
28715For a description of possible values, see `vc-check-master-templates'.")
9c46b00a
MR
28716
28717(custom-autoload (quote vc-sccs-master-templates) "vc-sccs")
c595cc5f 28718 (defun vc-sccs-registered(f) (vc-default-registered 'SCCS f))
54baed30
GM
28719
28720(defun vc-sccs-search-project-dir (dirname basename) "\
28721Return the name of a master file in the SCCS project directory.
28722Does not check whether the file exists but returns nil if it does not
28723find any project directory." (let ((project-dir (getenv "PROJECTDIR")) dirs dir) (when project-dir (if (file-name-absolute-p project-dir) (setq dirs (quote ("SCCS" ""))) (setq dirs (quote ("src/SCCS" "src" "source/SCCS" "source"))) (setq project-dir (expand-file-name (concat "~" project-dir)))) (while (and (not dir) dirs) (setq dir (expand-file-name (car dirs) project-dir)) (unless (file-directory-p dir) (setq dir nil) (setq dirs (cdr dirs)))) (and dir (expand-file-name (concat "s." basename) dir)))))
28724
28725;;;***
28726\f
a5805c9d 28727;;;### (autoloads nil "vc-svn" "vc-svn.el" (17319 1481))
0c72a1a2
MR
28728;;; Generated autoloads from vc-svn.el
28729 (defun vc-svn-registered (f)
28730 (when (file-readable-p (expand-file-name
28731 ".svn/entries" (file-name-directory f)))
28732 (load "vc-svn")
28733 (vc-svn-registered f)))
28734
27a99a7c
GM
28735(add-to-list (quote completion-ignored-extensions) ".svn/")
28736
0c72a1a2
MR
28737;;;***
28738\f
93548d2e 28739;;;### (autoloads (vhdl-mode) "vhdl-mode" "progmodes/vhdl-mode.el"
a5805c9d 28740;;;;;; (17279 27174))
93548d2e
DL
28741;;; Generated autoloads from progmodes/vhdl-mode.el
28742
28743(autoload (quote vhdl-mode) "vhdl-mode" "\
28744Major mode for editing VHDL code.
28745
28746Usage:
28747------
28748
0c72a1a2
MR
28749 TEMPLATE INSERTION (electrification):
28750 After typing a VHDL keyword and entering `SPC', you are prompted for
28751 arguments while a template is generated for that VHDL construct. Typing
28752 `RET' or `C-g' at the first (mandatory) prompt aborts the current
28753 template generation. Optional arguments are indicated by square
28754 brackets and removed if the queried string is left empty. Prompts for
28755 mandatory arguments remain in the code if the queried string is left
28756 empty. They can be queried again by `C-c C-t C-q'. Enabled
28757 electrification is indicated by `/e' in the modeline.
28758
28759 Typing `M-SPC' after a keyword inserts a space without calling the
28760 template generator. Automatic template generation (i.e.
28761 electrification) can be disabled (enabled) by typing `C-c C-m C-e' or by
28762 setting option `vhdl-electric-mode' (see OPTIONS).
28763
28764 Template generators can be invoked from the VHDL menu, by key
28765 bindings, by typing `C-c C-i C-c' and choosing a construct, or by typing
28766 the keyword (i.e. first word of menu entry not in parenthesis) and
28767 `SPC'. The following abbreviations can also be used: arch, attr, cond,
28768 conf, comp, cons, func, inst, pack, sig, var.
28769
28770 Template styles can be customized in customization group
28771 `vhdl-template' (see OPTIONS).
28772
28773
28774 HEADER INSERTION:
28775 A file header can be inserted by `C-c C-t C-h'. A file footer
28776 (template at the end of the file) can be inserted by `C-c C-t C-f'.
28777 See customization group `vhdl-header'.
28778
28779
28780 STUTTERING:
28781 Double striking of some keys inserts cumbersome VHDL syntax elements.
28782 Stuttering can be disabled (enabled) by typing `C-c C-m C-s' or by
28783 option `vhdl-stutter-mode'. Enabled stuttering is indicated by `/s' in
28784 the modeline. The stuttering keys and their effects are:
28785
28786 ;; --> \" : \" [ --> ( -- --> comment
28787 ;;; --> \" := \" [[ --> [ --CR --> comment-out code
28788 .. --> \" => \" ] --> ) --- --> horizontal line
28789 ,, --> \" <= \" ]] --> ] ---- --> display comment
28790 == --> \" == \" '' --> \\\"
28791
28792
28793 WORD COMPLETION:
28794 Typing `TAB' after a (not completed) word looks for a VHDL keyword or a
28795 word in the buffer that starts alike, inserts it and adjusts case.
28796 Re-typing `TAB' toggles through alternative word completions. This also
28797 works in the minibuffer (i.e. in template generator prompts).
28798
28799 Typing `TAB' after `(' looks for and inserts complete parenthesized
28800 expressions (e.g. for array index ranges). All keywords as well as
28801 standard types and subprograms of VHDL have predefined abbreviations
28802 (e.g. type \"std\" and `TAB' will toggle through all standard types
28803 beginning with \"std\").
28804
28805 Typing `TAB' after a non-word character indents the line if at the
28806 beginning of a line (i.e. no preceding non-blank characters), and
28807 inserts a tabulator stop otherwise. `M-TAB' always inserts a tabulator
28808 stop.
28809
28810
28811 COMMENTS:
28812 `--' puts a single comment.
28813 `---' draws a horizontal line for separating code segments.
28814 `----' inserts a display comment, i.e. two horizontal lines
28815 with a comment in between.
28816 `--CR' comments out code on that line. Re-hitting CR comments
28817 out following lines.
28818 `C-c c' comments out a region if not commented out,
28819 uncomments a region if already commented out.
28820
28821 You are prompted for comments after object definitions (i.e. signals,
28822 variables, constants, ports) and after subprogram and process
28823 specifications if option `vhdl-prompt-for-comments' is non-nil.
28824 Comments are automatically inserted as additional labels (e.g. after
28825 begin statements) and as help comments if `vhdl-self-insert-comments' is
28826 non-nil.
28827
28828 Inline comments (i.e. comments after a piece of code on the same line)
28829 are indented at least to `vhdl-inline-comment-column'. Comments go at
28830 maximum to `vhdl-end-comment-column'. `RET' after a space in a comment
28831 will open a new comment line. Typing beyond `vhdl-end-comment-column'
28832 in a comment automatically opens a new comment line. `M-q' re-fills
28833 multi-line comments.
28834
28835
28836 INDENTATION:
28837 `TAB' indents a line if at the beginning of the line. The amount of
28838 indentation is specified by option `vhdl-basic-offset'. `C-c C-i C-l'
28839 always indents the current line (is bound to `TAB' if option
28840 `vhdl-intelligent-tab' is nil).
28841
28842 Indentation can be done for a group of lines (`C-c C-i C-g'), a region
28843 (`M-C-\\') or the entire buffer (menu). Argument and port lists are
28844 indented normally (nil) or relative to the opening parenthesis (non-nil)
28845 according to option `vhdl-argument-list-indent'.
28846
28847 If option `vhdl-indent-tabs-mode' is nil, spaces are used instead of
28848 tabs. `M-x tabify' and `M-x untabify' allow to convert spaces to tabs
28849 and vice versa.
28850
28851 Syntax-based indentation can be very slow in large files. Option
28852 `vhdl-indent-syntax-based' allows to use faster but simpler indentation.
28853
28854
28855 ALIGNMENT:
28856 The alignment functions align operators, keywords, and inline comments
28857 to beautify the code. `C-c C-a C-a' aligns a group of consecutive lines
28858 separated by blank lines, `C-c C-a C-i' a block of lines with same
28859 indent. `C-c C-a C-l' aligns all lines belonging to a list enclosed by
28860 a pair of parentheses (e.g. port clause/map, argument list), and `C-c
28861 C-a C-d' all lines within the declarative part of a design unit. `C-c
28862 C-a M-a' aligns an entire region. `C-c C-a C-c' aligns inline comments
28863 for a group of lines, and `C-c C-a M-c' for a region.
28864
28865 If option `vhdl-align-groups' is non-nil, groups of code lines
28866 separated by special lines (see option `vhdl-align-group-separate') are
28867 aligned individually. If option `vhdl-align-same-indent' is non-nil,
28868 blocks of lines with same indent are aligned separately. Some templates
28869 are automatically aligned after generation if option `vhdl-auto-align'
28870 is non-nil.
28871
28872 Alignment tries to align inline comments at
28873 `vhdl-inline-comment-column' and tries inline comment not to exceed
28874 `vhdl-end-comment-column'.
28875
28876 `C-c C-x M-w' fixes up whitespace in a region. That is, operator
28877 symbols are surrounded by one space, and multiple spaces are eliminated.
28878
28879
fbf34973
KL
28880 CODE FILLING:
28881 Code filling allows to condense code (e.g. sensitivity lists or port
28882 maps) by removing comments and newlines and re-wrapping so that all
28883 lines are maximally filled (block filling). `C-c C-f C-f' fills a list
28884 enclosed by parenthesis, `C-c C-f C-g' a group of lines separated by
28885 blank lines, `C-c C-f C-i' a block of lines with same indent, and
28886 `C-c C-f M-f' an entire region.
0c72a1a2
MR
28887
28888
28889 CODE BEAUTIFICATION:
28890 `C-c M-b' and `C-c C-b' beautify the code of a region or of the entire
28891 buffer respectively. This inludes indentation, alignment, and case
28892 fixing. Code beautification can also be run non-interactively using the
28893 command:
28894
28895 emacs -batch -l ~/.emacs filename.vhd -f vhdl-beautify-buffer
28896
28897
28898 PORT TRANSLATION:
28899 Generic and port clauses from entity or component declarations can be
28900 copied (`C-c C-p C-w') and pasted as entity and component declarations,
28901 as component instantiations and corresponding internal constants and
28902 signals, as a generic map with constants as actual generics, and as
28903 internal signal initializations (menu).
28904
28905 To include formals in component instantiations, see option
28906 `vhdl-association-list-with-formals'. To include comments in pasting,
28907 see options `vhdl-include-...-comments'.
28908
28909 A clause with several generic/port names on the same line can be
28910 flattened (`C-c C-p C-f') so that only one name per line exists. The
fbf34973
KL
28911 direction of ports can be reversed (`C-c C-p C-r'), i.e., inputs become
28912 outputs and vice versa, which can be useful in testbenches. (This
28913 reversion is done on the internal data structure and is only reflected
28914 in subsequent paste operations.)
0c72a1a2
MR
28915
28916 Names for actual ports, instances, testbenches, and
28917 design-under-test instances can be derived from existing names according
28918 to options `vhdl-...-name'. See customization group `vhdl-port'.
28919
28920
fbf34973
KL
28921 SUBPROGRAM TRANSLATION:
28922 Similar functionality exists for copying/pasting the interface of
28923 subprograms (function/procedure). A subprogram interface can be copied
28924 and then pasted as a subprogram declaration, body or call (uses
28925 association list with formals).
0c72a1a2
MR
28926
28927
28928 TESTBENCH GENERATION:
28929 A copied port can also be pasted as a testbench. The generated
28930 testbench includes an entity, an architecture, and an optional
28931 configuration. The architecture contains the component declaration and
28932 instantiation of the DUT as well as internal constant and signal
28933 declarations. Additional user-defined templates can be inserted. The
28934 names used for entity/architecture/configuration/DUT as well as the file
28935 structure to be generated can be customized. See customization group
28936 `vhdl-testbench'.
28937
28938
28939 KEY BINDINGS:
28940 Key bindings (`C-c ...') exist for most commands (see in menu).
28941
28942
28943 VHDL MENU:
28944 All commands can be found in the VHDL menu including their key bindings.
28945
28946
28947 FILE BROWSER:
28948 The speedbar allows browsing of directories and file contents. It can
28949 be accessed from the VHDL menu and is automatically opened if option
28950 `vhdl-speedbar-auto-open' is non-nil.
28951
28952 In speedbar, open files and directories with `mouse-2' on the name and
28953 browse/rescan their contents with `mouse-2'/`S-mouse-2' on the `+'.
28954
28955
28956 DESIGN HIERARCHY BROWSER:
28957 The speedbar can also be used for browsing the hierarchy of design units
28958 contained in the source files of the current directory or the specified
28959 projects (see option `vhdl-project-alist').
28960
28961 The speedbar can be switched between file, directory hierarchy and
28962 project hierarchy browsing mode in the speedbar menu or by typing `f',
28963 `h' or `H' in speedbar.
28964
28965 In speedbar, open design units with `mouse-2' on the name and browse
28966 their hierarchy with `mouse-2' on the `+'. Ports can directly be copied
28967 from entities and components (in packages). Individual design units and
28968 complete designs can directly be compiled (\"Make\" menu entry).
28969
28970 The hierarchy is automatically updated upon saving a modified source
28971 file when option `vhdl-speedbar-update-on-saving' is non-nil. The
28972 hierarchy is only updated for projects that have been opened once in the
28973 speedbar. The hierarchy is cached between Emacs sessions in a file (see
28974 options in group `vhdl-speedbar').
28975
28976 Simple design consistency checks are done during scanning, such as
28977 multiple declarations of the same unit or missing primary units that are
28978 required by secondary units.
28979
28980
fbf34973
KL
28981 STRUCTURAL COMPOSITION:
28982 Enables simple structural composition. `C-c C-c C-n' creates a skeleton
28983 for a new component. Subcomponents (i.e. component declaration and
28984 instantiation) can be automatically placed from a previously read port
28985 (`C-c C-c C-p') or directly from the hierarchy browser (`P'). Finally,
28986 all subcomponents can be automatically connected using internal signals
28987 and ports (`C-c C-c C-w') following these rules:
28988 - subcomponent actual ports with same name are considered to be
28989 connected by a signal (internal signal or port)
28990 - signals that are only inputs to subcomponents are considered as
28991 inputs to this component -> input port created
28992 - signals that are only outputs from subcomponents are considered as
28993 outputs from this component -> output port created
28994 - signals that are inputs to AND outputs from subcomponents are
28995 considered as internal connections -> internal signal created
175a97e4 28996
fbf34973
KL
28997 Purpose: With appropriate naming conventions it is possible to
28998 create higher design levels with only a few mouse clicks or key
28999 strokes. A new design level can be created by simply generating a new
29000 component, placing the required subcomponents from the hierarchy
29001 browser, and wiring everything automatically.
175a97e4 29002
fbf34973
KL
29003 Note: Automatic wiring only works reliably on templates of new
29004 components and component instantiations that were created by VHDL mode.
175a97e4 29005
fbf34973
KL
29006 Component declarations can be placed in a components package (option
29007 `vhdl-use-components-package') which can be automatically generated for
29008 an entire directory or project (`C-c C-c M-p'). The VHDL'93 direct
29009 component instantiation is also supported (option
29010 `vhdl-use-direct-instantiation').
29011
29012| Configuration declarations can automatically be generated either from
29013| the menu (`C-c C-c C-f') (for the architecture the cursor is in) or from
29014| the speedbar menu (for the architecture under the cursor). The
29015| configurations can optionally be hierarchical (i.e. include all
29016| component levels of a hierarchical design, option
29017| `vhdl-compose-configuration-hierarchical') or include subconfigurations
29018| (option `vhdl-compose-configuration-use-subconfiguration'). For
29019| subcomponents in hierarchical configurations, the most-recently-analyzed
29020| (mra) architecture is selected. If another architecture is desired, it
29021| can be marked as most-recently-analyzed (speedbar menu) before
29022| generating the configuration.
0c72a1a2 29023|
fbf34973
KL
29024| Note: Configurations of subcomponents (i.e. hierarchical configuration
29025| declarations) are currently not considered when displaying
29026| configurations in speedbar.
175a97e4 29027
fbf34973 29028 See the options group `vhdl-compose' for all relevant user options.
0c72a1a2
MR
29029
29030
29031 SOURCE FILE COMPILATION:
29032 The syntax of the current buffer can be analyzed by calling a VHDL
29033 compiler (menu, `C-c C-k'). The compiler to be used is specified by
29034 option `vhdl-compiler'. The available compilers are listed in option
29035 `vhdl-compiler-alist' including all required compilation command,
29036 command options, compilation directory, and error message syntax
29037 information. New compilers can be added.
29038
29039 All the source files of an entire design can be compiled by the `make'
29040 command (menu, `C-c M-C-k') if an appropriate Makefile exists.
29041
29042
29043 MAKEFILE GENERATION:
29044 Makefiles can be generated automatically by an internal generation
29045 routine (`C-c M-k'). The library unit dependency information is
29046 obtained from the hierarchy browser. Makefile generation can be
29047 customized for each compiler in option `vhdl-compiler-alist'.
29048
29049 Makefile generation can also be run non-interactively using the
29050 command:
29051
29052 emacs -batch -l ~/.emacs -l vhdl-mode
29053 [-compiler compilername] [-project projectname]
29054 -f vhdl-generate-makefile
29055
29056 The Makefile's default target \"all\" compiles the entire design, the
29057 target \"clean\" removes it and the target \"library\" creates the
29058 library directory if not existent. The Makefile also includes a target
29059 for each primary library unit which allows selective compilation of this
29060 unit, its secondary units and its subhierarchy (example: compilation of
29061 a design specified by a configuration). User specific parts can be
29062 inserted into a Makefile with option `vhdl-makefile-generation-hook'.
29063
29064 Limitations:
29065 - Only library units and dependencies within the current library are
29066 considered. Makefiles for designs that span multiple libraries are
29067 not (yet) supported.
29068 - Only one-level configurations are supported (also hierarchical),
29069 but configurations that go down several levels are not.
29070 - The \"others\" keyword in configurations is not supported.
29071
29072
29073 PROJECTS:
29074 Projects can be defined in option `vhdl-project-alist' and a current
29075 project be selected using option `vhdl-project' (permanently) or from
29076 the menu or speedbar (temporarily). For each project, title and
29077 description strings (for the file headers), source files/directories
29078 (for the hierarchy browser and Makefile generation), library name, and
29079 compiler-dependent options, exceptions and compilation directory can be
29080 specified. Compilation settings overwrite the settings of option
29081 `vhdl-compiler-alist'.
29082
29083 Project setups can be exported (i.e. written to a file) and imported.
29084 Imported setups are not automatically saved in `vhdl-project-alist' but
29085 can be saved afterwards in its customization buffer. When starting
29086 Emacs with VHDL Mode (i.e. load a VHDL file or use \"emacs -l
29087 vhdl-mode\") in a directory with an existing project setup file, it is
29088 automatically loaded and its project activated if option
29089 `vhdl-project-auto-load' is non-nil. Names/paths of the project setup
29090 files can be specified in option `vhdl-project-file-name'. Multiple
29091 project setups can be automatically loaded from global directories.
29092 This is an alternative to specifying project setups with option
29093 `vhdl-project-alist'.
29094
29095
29096 SPECIAL MENUES:
29097 As an alternative to the speedbar, an index menu can be added (set
29098 option `vhdl-index-menu' to non-nil) or made accessible as a mouse menu
29099 (e.g. add \"(global-set-key '[S-down-mouse-3] 'imenu)\" to your start-up
29100 file) for browsing the file contents (is not populated if buffer is
29101 larger than `font-lock-maximum-size'). Also, a source file menu can be
29102 added (set option `vhdl-source-file-menu' to non-nil) for browsing the
29103 current directory for VHDL source files.
29104
29105
29106 VHDL STANDARDS:
29107 The VHDL standards to be used are specified in option `vhdl-standard'.
29108 Available standards are: VHDL'87/'93, VHDL-AMS, and Math Packages.
29109
29110
29111 KEYWORD CASE:
29112 Lower and upper case for keywords and standardized types, attributes,
29113 and enumeration values is supported. If the option
29114 `vhdl-upper-case-keywords' is set to non-nil, keywords can be typed in
29115 lower case and are converted into upper case automatically (not for
29116 types, attributes, and enumeration values). The case of keywords,
29117 types, attributes,and enumeration values can be fixed for an entire
29118 region (menu) or buffer (`C-c C-x C-c') according to the options
29119 `vhdl-upper-case-{keywords,types,attributes,enum-values}'.
29120
29121
29122 HIGHLIGHTING (fontification):
29123 Keywords and standardized types, attributes, enumeration values, and
29124 function names (controlled by option `vhdl-highlight-keywords'), as well
29125 as comments, strings, and template prompts are highlighted using
29126 different colors. Unit, subprogram, signal, variable, constant,
29127 parameter and generic/port names in declarations as well as labels are
29128 highlighted if option `vhdl-highlight-names' is non-nil.
29129
29130 Additional reserved words or words with a forbidden syntax (e.g. words
29131 that should be avoided) can be specified in option
29132 `vhdl-forbidden-words' or `vhdl-forbidden-syntax' and be highlighted in
29133 a warning color (option `vhdl-highlight-forbidden-words'). Verilog
29134 keywords are highlighted as forbidden words if option
29135 `vhdl-highlight-verilog-keywords' is non-nil.
29136
29137 Words with special syntax can be highlighted by specifying their
29138 syntax and color in option `vhdl-special-syntax-alist' and by setting
29139 option `vhdl-highlight-special-words' to non-nil. This allows to
29140 establish some naming conventions (e.g. to distinguish different kinds
29141 of signals or other objects by using name suffices) and to support them
29142 visually.
29143
29144 Option `vhdl-highlight-case-sensitive' can be set to non-nil in order
29145 to support case-sensitive highlighting. However, keywords are then only
29146 highlighted if written in lower case.
29147
29148 Code between \"translate_off\" and \"translate_on\" pragmas is
29149 highlighted using a different background color if option
29150 `vhdl-highlight-translate-off' is non-nil.
29151
29152 For documentation and customization of the used colors see
29153 customization group `vhdl-highlight-faces' (`M-x customize-group'). For
29154 highlighting of matching parenthesis, see customization group
29155 `paren-showing'. Automatic buffer highlighting is turned on/off by
29156 option `global-font-lock-mode' (`font-lock-auto-fontify' in XEmacs).
29157
29158
29159 USER MODELS:
29160 VHDL models (templates) can be specified by the user and made accessible
29161 in the menu, through key bindings (`C-c C-m ...'), or by keyword
29162 electrification. See option `vhdl-model-alist'.
29163
29164
29165 HIDE/SHOW:
29166 The code of blocks, processes, subprograms, component declarations and
29167 instantiations, generic/port clauses, and configuration declarations can
29168 be hidden using the `Hide/Show' menu or by pressing `S-mouse-2' within
29169 the code (see customization group `vhdl-menu'). XEmacs: limited
29170 functionality due to old `hideshow.el' package.
29171
29172
29173 CODE UPDATING:
29174 - Sensitivity List: `C-c C-u C-s' updates the sensitivity list of the
29175 current process, `C-c C-u M-s' of all processes in the current buffer.
29176 Limitations:
29177 - Only declared local signals (ports, signals declared in
29178 architecture and blocks) are automatically inserted.
29179 - Global signals declared in packages are not automatically inserted.
29180 Insert them once manually (will be kept afterwards).
29181 - Out parameters of procedures are considered to be read.
29182 Use option `vhdl-entity-file-name' to specify the entity file name
29183 (used to obtain the port names).
29184
29185
29186 CODE FIXING:
29187 `C-c C-x C-p' fixes the closing parenthesis of a generic/port clause
29188 (e.g. if the closing parenthesis is on the wrong line or is missing).
29189
29190
29191 PRINTING:
29192 Postscript printing with different faces (an optimized set of faces is
29193 used if `vhdl-print-customize-faces' is non-nil) or colors (if
29194 `ps-print-color-p' is non-nil) is possible using the standard Emacs
29195 postscript printing commands. Option `vhdl-print-two-column' defines
29196 appropriate default settings for nice landscape two-column printing.
29197 The paper format can be set by option `ps-paper-type'. Do not forget to
29198 switch `ps-print-color-p' to nil for printing on black-and-white
29199 printers.
29200
29201
29202 OPTIONS:
29203 User options allow customization of VHDL Mode. All options are
29204 accessible from the \"Options\" menu entry. Simple options (switches
29205 and choices) can directly be changed, while for complex options a
29206 customization buffer is opened. Changed options can be saved for future
29207 sessions using the \"Save Options\" menu entry.
29208
29209 Options and their detailed descriptions can also be accessed by using
29210 the \"Customize\" menu entry or the command `M-x customize-option' (`M-x
29211 customize-group' for groups). Some customizations only take effect
29212 after some action (read the NOTE in the option documentation).
29213 Customization can also be done globally (i.e. site-wide, read the
29214 INSTALL file).
29215
29216 Not all options are described in this documentation, so go and see
29217 what other useful user options there are (`M-x vhdl-customize' or menu)!
29218
29219
29220 FILE EXTENSIONS:
29221 As default, files with extensions \".vhd\" and \".vhdl\" are
29222 automatically recognized as VHDL source files. To add an extension
29223 \".xxx\", add the following line to your Emacs start-up file (`.emacs'):
29224
29225 (setq auto-mode-alist (cons '(\"\\\\.xxx\\\\'\" . vhdl-mode) auto-mode-alist))
29226
29227
29228 HINTS:
29229 - To start Emacs with open VHDL hierarchy browser without having to load
29230 a VHDL file first, use the command:
29231
29232 emacs -l vhdl-mode -f speedbar-frame-mode
29233
29234 - Type `C-g C-g' to interrupt long operations or if Emacs hangs.
29235
29236 - Some features only work on properly indented code.
29237
29238
29239 RELEASE NOTES:
29240 See also the release notes (menu) for added features in new releases.
93548d2e
DL
29241
29242
29243Maintenance:
29244------------
29245
0c72a1a2 29246To submit a bug report, enter `M-x vhdl-submit-bug-report' within VHDL Mode.
93548d2e
DL
29247Add a description of the problem and include a reproducible test case.
29248
0c72a1a2 29249Questions and enhancement requests can be sent to <reto@gnu.org>.
93548d2e
DL
29250
29251The `vhdl-mode-announce' mailing list informs about new VHDL Mode releases.
0c72a1a2
MR
29252The `vhdl-mode-victims' mailing list informs about new VHDL Mode beta
29253releases. You are kindly invited to participate in beta testing. Subscribe
29254to above mailing lists by sending an email to <reto@gnu.org>.
93548d2e 29255
0c72a1a2
MR
29256VHDL Mode is officially distributed at
29257http://opensource.ethz.ch/emacs/vhdl-mode.html
29258where the latest version can be found.
93548d2e
DL
29259
29260
0c72a1a2
MR
29261Known problems:
29262---------------
93548d2e 29263
93548d2e 29264- Indentation bug in simultaneous if- and case-statements (VHDL-AMS).
0c72a1a2
MR
29265- XEmacs: Incorrect start-up when automatically opening speedbar.
29266- XEmacs: Indentation in XEmacs 21.4 (and higher).
93548d2e
DL
29267
29268
0c72a1a2
MR
29269 The VHDL Mode Authors
29270 Reto Zimmermann and Rod Whitby
93548d2e
DL
29271
29272Key bindings:
29273-------------
29274
c595cc5f
MR
29275\\{vhdl-mode-map}
29276
29277\(fn)" t nil)
93548d2e
DL
29278
29279;;;***
29280\f
a5805c9d 29281;;;### (autoloads (vi-mode) "vi" "emulation/vi.el" (17279 27079))
93548d2e
DL
29282;;; Generated autoloads from emulation/vi.el
29283
29284(autoload (quote vi-mode) "vi" "\
29285Major mode that acts like the `vi' editor.
29286The purpose of this mode is to provide you the combined power of vi (namely,
29287the \"cross product\" effect of commands and repeat last changes) and Emacs.
29288
29289This command redefines nearly all keys to look like vi commands.
29290It records the previous major mode, and any vi command for input
29291\(`i', `a', `s', etc.) switches back to that mode.
29292Thus, ordinary Emacs (in whatever major mode you had been using)
29293is \"input\" mode as far as vi is concerned.
29294
29295To get back into vi from \"input\" mode, you must issue this command again.
29296Therefore, it is recommended that you assign it to a key.
29297
29298Major differences between this mode and real vi :
29299
29300* Limitations and unsupported features
29301 - Search patterns with line offset (e.g. /pat/+3 or /pat/z.) are
29302 not supported.
29303 - Ex commands are not implemented; try ':' to get some hints.
29304 - No line undo (i.e. the 'U' command), but multi-undo is a standard feature.
29305
29306* Modifications
29307 - The stopping positions for some point motion commands (word boundary,
29308 pattern search) are slightly different from standard 'vi'.
29309 Also, no automatic wrap around at end of buffer for pattern searching.
29310 - Since changes are done in two steps (deletion then insertion), you need
29311 to undo twice to completely undo a change command. But this is not needed
29312 for undoing a repeated change command.
29313 - No need to set/unset 'magic', to search for a string with regular expr
29314 in it just put a prefix arg for the search commands. Replace cmds too.
29315 - ^R is bound to incremental backward search, so use ^L to redraw screen.
29316
29317* Extensions
29318 - Some standard (or modified) Emacs commands were integrated, such as
29319 incremental search, query replace, transpose objects, and keyboard macros.
29320 - In command state, ^X links to the 'ctl-x-map', and ESC can be linked to
29321 esc-map or set undefined. These can give you the full power of Emacs.
29322 - See vi-com-map for those keys that are extensions to standard vi, e.g.
29323 `vi-name-last-change-or-macro', `vi-verify-spelling', `vi-locate-def',
29324 `vi-mark-region', and 'vi-quote-words'. Some of them are quite handy.
29325 - Use \\[vi-switch-mode] to switch among different modes quickly.
821b278f 29326
c595cc5f
MR
29327Syntax table and abbrevs while in vi mode remain as they were in Emacs.
29328
29329\(fn)" t nil)
93548d2e
DL
29330
29331;;;***
29332\f
29333;;;### (autoloads (viqr-pre-write-conversion viqr-post-read-conversion
29334;;;;;; viet-encode-viqr-buffer viet-encode-viqr-region viet-decode-viqr-buffer
a1b8d58b 29335;;;;;; viet-decode-viqr-region viet-encode-viscii-char) "viet-util"
a5805c9d 29336;;;;;; "language/viet-util.el" (17279 27080))
93548d2e
DL
29337;;; Generated autoloads from language/viet-util.el
29338
29339(autoload (quote viet-encode-viscii-char) "viet-util" "\
c595cc5f
MR
29340Return VISCII character code of CHAR if appropriate.
29341
29342\(fn CHAR)" nil nil)
93548d2e 29343
93548d2e 29344(autoload (quote viet-decode-viqr-region) "viet-util" "\
821b278f 29345Convert `VIQR' mnemonics of the current region to Vietnamese characters.
93548d2e 29346When called from a program, expects two arguments,
c595cc5f
MR
29347positions (integers or markers) specifying the stretch of the region.
29348
29349\(fn FROM TO)" t nil)
93548d2e
DL
29350
29351(autoload (quote viet-decode-viqr-buffer) "viet-util" "\
821b278f 29352Convert `VIQR' mnemonics of the current buffer to Vietnamese characters.
c595cc5f
MR
29353
29354\(fn)" t nil)
93548d2e
DL
29355
29356(autoload (quote viet-encode-viqr-region) "viet-util" "\
821b278f 29357Convert Vietnamese characters of the current region to `VIQR' mnemonics.
93548d2e 29358When called from a program, expects two arguments,
c595cc5f
MR
29359positions (integers or markers) specifying the stretch of the region.
29360
29361\(fn FROM TO)" t nil)
93548d2e
DL
29362
29363(autoload (quote viet-encode-viqr-buffer) "viet-util" "\
821b278f 29364Convert Vietnamese characters of the current buffer to `VIQR' mnemonics.
c595cc5f
MR
29365
29366\(fn)" t nil)
29367
29368(autoload (quote viqr-post-read-conversion) "viet-util" "\
29369Not documented
29370
29371\(fn LEN)" nil nil)
93548d2e 29372
c595cc5f
MR
29373(autoload (quote viqr-pre-write-conversion) "viet-util" "\
29374Not documented
93548d2e 29375
c595cc5f 29376\(fn FROM TO)" nil nil)
93548d2e
DL
29377
29378;;;***
29379\f
29380;;;### (autoloads (View-exit-and-edit view-mode-enter view-mode view-buffer-other-frame
29381;;;;;; view-buffer-other-window view-buffer view-file-other-frame
a5805c9d
KL
29382;;;;;; view-file-other-window view-file) "view" "view.el" (17307
29383;;;;;; 17625))
93548d2e
DL
29384;;; Generated autoloads from view.el
29385
29386(defvar view-mode nil "\
29387Non-nil if View mode is enabled.
29388Don't change this variable directly, you must change it by one of the
29389functions that enable or disable view mode.")
29390
29391(make-variable-buffer-local (quote view-mode))
29392
29393(autoload (quote view-file) "view" "\
29394View FILE in View mode, returning to previous buffer when done.
29395Emacs commands editing the buffer contents are not available; instead,
29396a special set of commands (mostly letters and punctuation)
29397are defined for moving around in the buffer.
29398Space scrolls forward, Delete scrolls backward.
29399For list of all View commands, type H or h while viewing.
29400
c595cc5f
MR
29401This command runs the normal hook `view-mode-hook'.
29402
29403\(fn FILE)" t nil)
93548d2e
DL
29404
29405(autoload (quote view-file-other-window) "view" "\
29406View FILE in View mode in another window.
29407Return that window to its previous buffer when done.
29408Emacs commands editing the buffer contents are not available; instead,
29409a special set of commands (mostly letters and punctuation)
29410are defined for moving around in the buffer.
29411Space scrolls forward, Delete scrolls backward.
29412For list of all View commands, type H or h while viewing.
29413
c595cc5f
MR
29414This command runs the normal hook `view-mode-hook'.
29415
29416\(fn FILE)" t nil)
93548d2e
DL
29417
29418(autoload (quote view-file-other-frame) "view" "\
29419View FILE in View mode in another frame.
29420Maybe delete other frame and/or return to previous buffer when done.
29421Emacs commands editing the buffer contents are not available; instead,
29422a special set of commands (mostly letters and punctuation)
29423are defined for moving around in the buffer.
29424Space scrolls forward, Delete scrolls backward.
29425For list of all View commands, type H or h while viewing.
29426
c595cc5f
MR
29427This command runs the normal hook `view-mode-hook'.
29428
29429\(fn FILE)" t nil)
93548d2e
DL
29430
29431(autoload (quote view-buffer) "view" "\
29432View BUFFER in View mode, returning to previous buffer when done.
29433Emacs commands editing the buffer contents are not available; instead,
29434a special set of commands (mostly letters and punctuation)
29435are defined for moving around in the buffer.
29436Space scrolls forward, Delete scrolls backward.
29437For list of all View commands, type H or h while viewing.
29438
29439This command runs the normal hook `view-mode-hook'.
29440
29441Optional argument EXIT-ACTION is either nil or a function with buffer as
29442argument. This function is called when finished viewing buffer.
c595cc5f
MR
29443Use this argument instead of explicitly setting `view-exit-action'.
29444
29445\(fn BUFFER &optional EXIT-ACTION)" t nil)
93548d2e
DL
29446
29447(autoload (quote view-buffer-other-window) "view" "\
29448View BUFFER in View mode in another window.
29449Return to previous buffer when done, unless optional NOT-RETURN is non-nil.
29450Emacs commands editing the buffer contents are not available; instead,
29451a special set of commands (mostly letters and punctuation)
29452are defined for moving around in the buffer.
29453Space scrolls forward, Delete scrolls backward.
29454For list of all View commands, type H or h while viewing.
29455
29456This command runs the normal hook `view-mode-hook'.
29457
29458Optional argument EXIT-ACTION is either nil or a function with buffer as
29459argument. This function is called when finished viewing buffer.
c595cc5f
MR
29460Use this argument instead of explicitly setting `view-exit-action'.
29461
29462\(fn BUFFER &optional NOT-RETURN EXIT-ACTION)" t nil)
93548d2e
DL
29463
29464(autoload (quote view-buffer-other-frame) "view" "\
29465View BUFFER in View mode in another frame.
29466Return to previous buffer when done, unless optional NOT-RETURN is non-nil.
29467Emacs commands editing the buffer contents are not available; instead,
29468a special set of commands (mostly letters and punctuation)
29469are defined for moving around in the buffer.
29470Space scrolls forward, Delete scrolls backward.
29471For list of all View commands, type H or h while viewing.
29472
29473This command runs the normal hook `view-mode-hook'.
29474
29475Optional argument EXIT-ACTION is either nil or a function with buffer as
29476argument. This function is called when finished viewing buffer.
c595cc5f
MR
29477Use this argument instead of explicitly setting `view-exit-action'.
29478
29479\(fn BUFFER &optional NOT-RETURN EXIT-ACTION)" t nil)
93548d2e
DL
29480
29481(autoload (quote view-mode) "view" "\
29482Toggle View mode, a minor mode for viewing text but not editing it.
d054101f 29483With ARG, turn View mode on iff ARG is positive.
93548d2e
DL
29484
29485Emacs commands that do not change the buffer contents are available as usual.
29486Kill commands insert text in kill buffers but do not delete. Other commands
29487\(among them most letters and punctuation) beep and tell that the buffer is
29488read-only.
29489\\<view-mode-map>
29490The following additional commands are provided. Most commands take prefix
29491arguments. Page commands default to \"page size\" lines which is almost a whole
29492window full, or number of lines set by \\[View-scroll-page-forward-set-page-size] or \\[View-scroll-page-backward-set-page-size]. Half page commands default to
29493and set \"half page size\" lines which initially is half a window full. Search
29494commands default to a repeat count of one.
29495
29496H, h, ? This message.
29497Digits provide prefix arguments.
29498\\[negative-argument] negative prefix argument.
29499\\[beginning-of-buffer] move to the beginning of buffer.
29500> move to the end of buffer.
29501\\[View-scroll-to-buffer-end] scroll so that buffer end is at last line of window.
d054101f
GM
29502SPC scroll forward \"page size\" lines.
29503 With prefix scroll forward prefix lines.
29504DEL scroll backward \"page size\" lines.
29505 With prefix scroll backward prefix lines.
29506\\[View-scroll-page-forward-set-page-size] like \\[View-scroll-page-forward] but with prefix sets \"page size\" to prefix.
29507\\[View-scroll-page-backward-set-page-size] like \\[View-scroll-page-backward] but with prefix sets \"page size\" to prefix.
29508\\[View-scroll-half-page-forward] scroll forward \"half page size\" lines. With prefix, sets
29509 \"half page size\" to prefix lines and scrolls forward that much.
29510\\[View-scroll-half-page-backward] scroll backward \"half page size\" lines. With prefix, sets
29511 \"half page size\" to prefix lines and scrolls backward that much.
29512RET, LFD scroll forward one line. With prefix scroll forward prefix line(s).
29513y scroll backward one line. With prefix scroll backward prefix line(s).
93548d2e
DL
29514\\[View-revert-buffer-scroll-page-forward] revert-buffer if necessary and scroll forward.
29515 Use this to view a changing file.
29516\\[what-line] prints the current line number.
29517\\[View-goto-percent] goes prefix argument (default 100) percent into buffer.
29518\\[View-goto-line] goes to line given by prefix argument (default first line).
29519. set the mark.
29520x exchanges point and mark.
29521\\[View-back-to-mark] return to mark and pops mark ring.
29522 Mark ring is pushed at start of every successful search and when
29523 jump to line occurs. The mark is set on jump to buffer start or end.
29524\\[point-to-register] save current position in character register.
29525' go to position saved in character register.
29526s do forward incremental search.
29527r do reverse incremental search.
29528\\[View-search-regexp-forward] searches forward for regular expression, starting after current page.
29529 ! and @ have a special meaning at the beginning of the regexp.
29530 ! means search for a line with no match for regexp. @ means start
29531 search at beginning (end for backward search) of buffer.
29532\\ searches backward for regular expression, starting before current page.
29533\\[View-search-last-regexp-forward] searches forward for last regular expression.
29534p searches backward for last regular expression.
821b278f 29535\\[View-quit] quit View mode, restoring this window and buffer to previous state.
93548d2e
DL
29536 \\[View-quit] is the normal way to leave view mode.
29537\\[View-exit] exit View mode but stay in current buffer. Use this if you started
29538 viewing a buffer (file) and find out you want to edit it.
821b278f
MR
29539 This command restores the previous read-only status of the buffer.
29540\\[View-exit-and-edit] exit View mode, and make the current buffer editable
29541 even if it was not editable before entry to View mode.
29542\\[View-quit-all] quit View mode, restoring all windows to previous state.
93548d2e
DL
29543\\[View-leave] quit View mode and maybe switch buffers, but don't kill this buffer.
29544\\[View-kill-and-leave] quit View mode, kill current buffer and go back to other buffer.
29545
29546The effect of \\[View-leave] , \\[View-quit] and \\[View-kill-and-leave] depends on how view-mode was entered. If it was
c1a055ca
EZ
29547entered by view-file, view-file-other-window, view-file-other-frame, or
29548\\[dired-view-file] (\\[view-file], \\[view-file-other-window],
29549\\[view-file-other-frame], or the Dired mode v command),
29550then \\[View-quit] will try to kill the current buffer.
29551If view-mode was entered from another buffer, by \\[view-buffer],
29552\\[view-buffer-other-window], \\[view-buffer-other frame], \\[view-file],
29553\\[view-file-other-window], or \\[view-file-other-frame],
29554then \\[View-leave] , \\[View-quit] and \\[View-kill-and-leave] will return to that buffer.
93548d2e 29555
c595cc5f
MR
29556Entry to view-mode runs the normal hook `view-mode-hook'.
29557
29558\(fn &optional ARG)" t nil)
93548d2e
DL
29559
29560(autoload (quote view-mode-enter) "view" "\
29561Enter View mode and set up exit from view mode depending on optional arguments.
29562If RETURN-TO is non-nil it is added as an element to the buffer local alist
29563`view-return-to-alist'.
29564Save EXIT-ACTION in buffer local variable `view-exit-action'.
29565It should be either nil or a function that takes a buffer as argument.
29566This function will be called by `view-mode-exit'.
29567
29568RETURN-TO is either nil, meaning do nothing when exiting view mode, or
29569it has the format (WINDOW OLD-WINDOW . OLD-BUF-INFO).
29570WINDOW is a window used for viewing.
29571OLD-WINDOW is nil or the window to select after viewing.
29572OLD-BUF-INFO tells what to do with WINDOW when exiting. It is one of:
295731) nil Do nothing.
295742) t Delete WINDOW or, if it is the only window, its frame.
295753) (OLD-BUFF START POINT) Display buffer OLD-BUFF with displayed text
29576 starting at START and point at POINT in WINDOW.
d054101f 295774) quit-window Do `quit-window' in WINDOW.
93548d2e
DL
29578
29579For list of all View commands, type H or h while viewing.
29580
c595cc5f
MR
29581This function runs the normal hook `view-mode-hook'.
29582
29583\(fn &optional RETURN-TO EXIT-ACTION)" nil nil)
93548d2e
DL
29584
29585(autoload (quote View-exit-and-edit) "view" "\
c595cc5f
MR
29586Exit View mode and make the current buffer editable.
29587
29588\(fn)" t nil)
93548d2e
DL
29589
29590;;;***
29591\f
a5805c9d
KL
29592;;;### (autoloads (vip-mode vip-setup) "vip" "emulation/vip.el" (17279
29593;;;;;; 27171))
93548d2e
DL
29594;;; Generated autoloads from emulation/vip.el
29595
27a99a7c
GM
29596(autoload (quote vip-setup) "vip" "\
29597Set up bindings for C-x 7 and C-z that are useful for VIP users.
29598
29599\(fn)" nil nil)
29600
93548d2e 29601(autoload (quote vip-mode) "vip" "\
c595cc5f
MR
29602Turn on VIP emulation of VI.
29603
29604\(fn)" t nil)
93548d2e
DL
29605
29606;;;***
29607\f
29608;;;### (autoloads (viper-mode toggle-viper-mode) "viper" "emulation/viper.el"
a5805c9d 29609;;;;;; (17374 21575))
93548d2e
DL
29610;;; Generated autoloads from emulation/viper.el
29611
29612(autoload (quote toggle-viper-mode) "viper" "\
29613Toggle Viper on/off.
c595cc5f
MR
29614If Viper is enabled, turn it off. Otherwise, turn it on.
29615
29616\(fn)" t nil)
93548d2e
DL
29617
29618(autoload (quote viper-mode) "viper" "\
0ef3cc90 29619Turn on Viper emulation of Vi in Emacs. See Info node `(viper)Viper'.
c595cc5f
MR
29620
29621\(fn)" t nil)
93548d2e
DL
29622
29623;;;***
29624\f
27a99a7c 29625;;;### (autoloads (warn lwarn display-warning) "warnings" "emacs-lisp/warnings.el"
a5805c9d 29626;;;;;; (17279 27122))
27a99a7c 29627;;; Generated autoloads from emacs-lisp/warnings.el
4c6bc877
MR
29628
29629(defvar warning-prefix-function nil "\
29630Function to generate warning prefixes.
29631This function, if non-nil, is called with two arguments,
29632the severity level and its entry in `warning-levels',
29633and should return the entry that should actually be used.
29634The warnings buffer is current when this function is called
29635and the function can insert text in it. This text becomes
29636the beginning of the warning.")
29637
29638(defvar warning-series nil "\
29639Non-nil means treat multiple `display-warning' calls as a series.
29640A marker indicates a position in the warnings buffer
29641which is the start of the current series; it means that
29642additional warnings in the same buffer should not move point.
29643t means the next warning begins a series (and stores a marker here).
29644A symbol with a function definition is like t, except
29645also call that function before the next warning.")
29646
29647(defvar warning-fill-prefix nil "\
29648Non-nil means fill each warning text using this string as `fill-prefix'.")
29649
932a6f0f
AS
29650(defvar warning-type-format " (%s)" "\
29651Format for displaying the warning type in the warning message.
29652The result of formatting the type this way gets included in the
4c6bc877
MR
29653message under the control of the string in `warning-levels'.")
29654
29655(autoload (quote display-warning) "warnings" "\
29656Display a warning message, MESSAGE.
932a6f0f
AS
29657TYPE is the warning type: either a custom group name (a symbol),
29658or a list of symbols whose first element is a custom group name.
4c6bc877
MR
29659\(The rest of the symbols represent subcategories, for warning purposes
29660only, and you can use whatever symbols you like.)
29661
d66d64bc
KL
29662LEVEL should be either :debug, :warning, :error, or :emergency
29663\(but see `warning-minimum-level' and `warning-minimum-log-level').
29664
4c6bc877
MR
29665:emergency -- a problem that will seriously impair Emacs operation soon
29666 if you do not attend to it promptly.
29667:error -- data or circumstances that are inherently wrong.
29668:warning -- data or circumstances that are not inherently wrong,
29669 but raise suspicion of a possible problem.
29670:debug -- info for debugging only.
29671
29672BUFFER-NAME, if specified, is the name of the buffer for logging the
29673warning. By default, it is `*Warnings*'.
29674
29675See the `warnings' custom group for user customization features.
29676
29677See also `warning-series', `warning-prefix-function' and
c595cc5f
MR
29678`warning-fill-prefix' for additional programming features.
29679
932a6f0f 29680\(fn TYPE MESSAGE &optional LEVEL BUFFER-NAME)" nil nil)
4c6bc877
MR
29681
29682(autoload (quote lwarn) "warnings" "\
29683Display a warning message made from (format MESSAGE ARGS...).
29684Aside from generating the message with `format',
29685this is equivalent to `display-warning'.
29686
932a6f0f
AS
29687TYPE is the warning type: either a custom group name (a symbol).
29688or a list of symbols whose first element is a custom group name.
4c6bc877
MR
29689\(The rest of the symbols represent subcategories and
29690can be whatever you like.)
29691
d66d64bc
KL
29692LEVEL should be either :debug, :warning, :error, or :emergency
29693\(but see `warning-minimum-level' and `warning-minimum-log-level').
29694
4c6bc877
MR
29695:emergency -- a problem that will seriously impair Emacs operation soon
29696 if you do not attend to it promptly.
29697:error -- invalid data or circumstances.
c595cc5f 29698:warning -- suspicious data or circumstances.
d66d64bc 29699:debug -- info for debugging only.
c595cc5f 29700
932a6f0f 29701\(fn TYPE LEVEL MESSAGE &rest ARGS)" nil nil)
4c6bc877
MR
29702
29703(autoload (quote warn) "warnings" "\
29704Display a warning message made from (format MESSAGE ARGS...).
29705Aside from generating the message with `format',
29706this is equivalent to `display-warning', using
932a6f0f 29707`emacs' as the type and `:warning' as the level.
c595cc5f
MR
29708
29709\(fn MESSAGE &rest ARGS)" nil nil)
4c6bc877
MR
29710
29711;;;***
29712\f
390069bc 29713;;;### (autoloads (wdired-change-to-wdired-mode) "wdired" "wdired.el"
a5805c9d 29714;;;;;; (17356 16048))
390069bc
AS
29715;;; Generated autoloads from wdired.el
29716
29717(autoload (quote wdired-change-to-wdired-mode) "wdired" "\
29718Put a dired buffer in a mode in which filenames are editable.
d66d64bc
KL
29719\\<wdired-mode-map>
29720This mode allows the user to change the names of the files, and after
29721typing \\[wdired-finish-edit] Emacs renames the files and directories
29722in disk.
390069bc
AS
29723
29724See `wdired-mode'.
29725
29726\(fn)" t nil)
29727
29728;;;***
29729\f
a5805c9d 29730;;;### (autoloads (webjump) "webjump" "net/webjump.el" (17337 56255))
a25bbe00 29731;;; Generated autoloads from net/webjump.el
93548d2e
DL
29732
29733(autoload (quote webjump) "webjump" "\
29734Jumps to a Web site from a programmable hotlist.
29735
29736See the documentation for the `webjump-sites' variable for how to customize the
29737hotlist.
29738
29739Please submit bug reports and other feedback to the author, Neil W. Van Dyke
c595cc5f
MR
29740<nwv@acm.org>.
29741
29742\(fn)" t nil)
93548d2e
DL
29743
29744;;;***
29745\f
27a99a7c 29746;;;### (autoloads (which-function-mode) "which-func" "progmodes/which-func.el"
a5805c9d 29747;;;;;; (17279 27123))
27a99a7c
GM
29748;;; Generated autoloads from progmodes/which-func.el
29749 (put 'which-func-format 'risky-local-variable t)
29750 (put 'which-func-current 'risky-local-variable t)
93548d2e 29751
09938b67 29752(defalias (quote which-func-mode) (quote which-function-mode))
f383cd0d 29753
09938b67
GM
29754(defvar which-function-mode nil "\
29755Non-nil if Which-Function mode is enabled.
29756See the command `which-function-mode' for a description of this minor-mode.
93548d2e 29757Setting this variable directly does not take effect;
09938b67 29758use either \\[customize] or the function `which-function-mode'.")
93548d2e 29759
9c46b00a 29760(custom-autoload (quote which-function-mode) "which-func")
93548d2e 29761
ac09dc1e
KL
29762(put (quote which-function-mode) (quote custom-set) (quote custom-set-minor-mode))
29763
09938b67 29764(autoload (quote which-function-mode) "which-func" "\
93548d2e
DL
29765Toggle Which Function mode, globally.
29766When Which Function mode is enabled, the current function name is
29767continuously displayed in the mode line, in certain major modes.
29768
0ad84a21 29769With prefix ARG, turn Which Function mode on iff arg is positive,
c595cc5f
MR
29770and off otherwise.
29771
29772\(fn &optional ARG)" t nil)
93548d2e
DL
29773
29774;;;***
29775\f
c595cc5f
MR
29776;;;### (autoloads (whitespace-write-file-hook whitespace-global-mode
29777;;;;;; whitespace-cleanup-region whitespace-cleanup whitespace-region
29778;;;;;; whitespace-buffer whitespace-toggle-ateol-check whitespace-toggle-spacetab-check
29779;;;;;; whitespace-toggle-indent-check whitespace-toggle-trailing-check
29780;;;;;; whitespace-toggle-leading-check) "whitespace" "whitespace.el"
a5805c9d 29781;;;;;; (17279 27196))
7518ed7b
GM
29782;;; Generated autoloads from whitespace.el
29783
f383cd0d 29784(autoload (quote whitespace-toggle-leading-check) "whitespace" "\
c595cc5f
MR
29785Toggle the check for leading space in the local buffer.
29786
29787\(fn)" t nil)
f383cd0d
GM
29788
29789(autoload (quote whitespace-toggle-trailing-check) "whitespace" "\
c595cc5f
MR
29790Toggle the check for trailing space in the local buffer.
29791
29792\(fn)" t nil)
f383cd0d
GM
29793
29794(autoload (quote whitespace-toggle-indent-check) "whitespace" "\
c595cc5f
MR
29795Toggle the check for indentation space in the local buffer.
29796
29797\(fn)" t nil)
f383cd0d
GM
29798
29799(autoload (quote whitespace-toggle-spacetab-check) "whitespace" "\
c595cc5f
MR
29800Toggle the check for space-followed-by-TABs in the local buffer.
29801
29802\(fn)" t nil)
f383cd0d
GM
29803
29804(autoload (quote whitespace-toggle-ateol-check) "whitespace" "\
c595cc5f
MR
29805Toggle the check for end-of-line space in the local buffer.
29806
29807\(fn)" t nil)
f383cd0d 29808
7518ed7b 29809(autoload (quote whitespace-buffer) "whitespace" "\
0ad84a21
MB
29810Find five different types of white spaces in buffer.
29811These are:
7518ed7b
GM
298121. Leading space (empty lines at the top of a file).
298132. Trailing space (empty lines at the end of a file).
298143. Indentation space (8 or more spaces, that should be replaced with TABS).
298154. Spaces followed by a TAB. (Almost always, we never want that).
298165. Spaces or TABS at the end of a line.
29817
29818Check for whitespace only if this buffer really contains a non-empty file
29819and:
298201. the major mode is one of the whitespace-modes, or
c595cc5f
MR
298212. `whitespace-buffer' was explicitly called with a prefix argument.
29822
29823\(fn &optional QUIET)" t nil)
7518ed7b
GM
29824
29825(autoload (quote whitespace-region) "whitespace" "\
c595cc5f
MR
29826Check the region for whitespace errors.
29827
29828\(fn S E)" t nil)
7518ed7b
GM
29829
29830(autoload (quote whitespace-cleanup) "whitespace" "\
29831Cleanup the five different kinds of whitespace problems.
175a97e4 29832See `whitespace-buffer' docstring for a summary of the problems.
c595cc5f
MR
29833
29834\(fn)" t nil)
7518ed7b
GM
29835
29836(autoload (quote whitespace-cleanup-region) "whitespace" "\
c595cc5f 29837Whitespace cleanup on the region.
0ad84a21 29838
c595cc5f 29839\(fn S E)" t nil)
0ad84a21 29840
390069bc
AS
29841(defalias (quote global-whitespace-mode) (quote whitespace-global-mode))
29842
c595cc5f
MR
29843(defvar whitespace-global-mode nil "\
29844Non-nil if Whitespace-Global mode is enabled.
29845See the command `whitespace-global-mode' for a description of this minor-mode.
0ad84a21 29846Setting this variable directly does not take effect;
c595cc5f 29847use either \\[customize] or the function `whitespace-global-mode'.")
0ad84a21 29848
9c46b00a 29849(custom-autoload (quote whitespace-global-mode) "whitespace")
7518ed7b 29850
ac09dc1e
KL
29851(put (quote whitespace-global-mode) (quote custom-set) (quote custom-set-minor-mode))
29852
a67b854e
GM
29853(autoload (quote whitespace-global-mode) "whitespace" "\
29854Toggle using Whitespace mode in new buffers.
932a6f0f 29855With ARG, turn the mode on iff ARG is positive.
a67b854e
GM
29856
29857When this mode is active, `whitespace-buffer' is added to
c595cc5f 29858`find-file-hook' and `kill-buffer-hook'.
7518ed7b 29859
c595cc5f 29860\(fn &optional ARG)" t nil)
7518ed7b 29861
c595cc5f
MR
29862(autoload (quote whitespace-write-file-hook) "whitespace" "\
29863Hook function to be called on the buffer when whitespace check is enabled.
29864This is meant to be added buffer-locally to `write-file-functions'.
7518ed7b 29865
c595cc5f 29866\(fn)" t nil)
7518ed7b
GM
29867
29868;;;***
29869\f
93548d2e 29870;;;### (autoloads (widget-minor-mode widget-browse-other-window widget-browse
a5805c9d 29871;;;;;; widget-browse-at) "wid-browse" "wid-browse.el" (17279 27123))
93548d2e
DL
29872;;; Generated autoloads from wid-browse.el
29873
29874(autoload (quote widget-browse-at) "wid-browse" "\
c595cc5f
MR
29875Browse the widget under point.
29876
29877\(fn POS)" t nil)
93548d2e
DL
29878
29879(autoload (quote widget-browse) "wid-browse" "\
c595cc5f
MR
29880Create a widget browser for WIDGET.
29881
29882\(fn WIDGET)" t nil)
93548d2e
DL
29883
29884(autoload (quote widget-browse-other-window) "wid-browse" "\
c595cc5f
MR
29885Show widget browser for WIDGET in other window.
29886
29887\(fn &optional WIDGET)" t nil)
93548d2e
DL
29888
29889(autoload (quote widget-minor-mode) "wid-browse" "\
29890Togle minor mode for traversing widgets.
c595cc5f
MR
29891With arg, turn widget mode on if and only if arg is positive.
29892
29893\(fn &optional ARG)" t nil)
93548d2e
DL
29894
29895;;;***
29896\f
735688c2 29897;;;### (autoloads (widget-setup widget-insert widget-delete widget-create
a5805c9d
KL
29898;;;;;; widget-prompt-value widgetp) "wid-edit" "wid-edit.el" (17374
29899;;;;;; 21544))
93548d2e
DL
29900;;; Generated autoloads from wid-edit.el
29901
735688c2 29902(autoload (quote widgetp) "wid-edit" "\
c595cc5f
MR
29903Return non-nil iff WIDGET is a widget.
29904
29905\(fn WIDGET)" nil nil)
735688c2 29906
93548d2e
DL
29907(autoload (quote widget-prompt-value) "wid-edit" "\
29908Prompt for a value matching WIDGET, using PROMPT.
c595cc5f
MR
29909The current value is assumed to be VALUE, unless UNBOUND is non-nil.
29910
29911\(fn WIDGET PROMPT &optional VALUE UNBOUND)" nil nil)
93548d2e
DL
29912
29913(autoload (quote widget-create) "wid-edit" "\
f75a0f7a 29914Create widget of TYPE.
c595cc5f
MR
29915The optional ARGS are additional keyword arguments.
29916
29917\(fn TYPE &rest ARGS)" nil nil)
93548d2e
DL
29918
29919(autoload (quote widget-delete) "wid-edit" "\
c595cc5f
MR
29920Delete WIDGET.
29921
29922\(fn WIDGET)" nil nil)
93548d2e 29923
735688c2 29924(autoload (quote widget-insert) "wid-edit" "\
c595cc5f
MR
29925Call `insert' with ARGS even if surrounding text is read only.
29926
29927\(fn &rest ARGS)" nil nil)
735688c2 29928
c1a055ca
EZ
29929(defalias (quote advertised-widget-backward) (quote widget-backward))
29930
82bda038 29931(defvar widget-keymap (let ((map (make-sparse-keymap))) (define-key map " " (quote widget-forward)) (define-key map "\e " (quote widget-backward)) (define-key map [(shift tab)] (quote advertised-widget-backward)) (define-key map [backtab] (quote widget-backward)) (define-key map [down-mouse-2] (quote widget-button-click)) (define-key map "\r" (quote widget-button-press)) map) "\
735688c2
EZ
29932Keymap containing useful binding for buffers containing widgets.
29933Recommended as a parent keymap for modes using widgets.")
29934
29935(autoload (quote widget-setup) "wid-edit" "\
c595cc5f
MR
29936Setup current buffer so editing string widgets works.
29937
29938\(fn)" nil nil)
735688c2 29939
93548d2e
DL
29940;;;***
29941\f
2cb750ba 29942;;;### (autoloads (windmove-default-keybindings windmove-down windmove-right
a5805c9d
KL
29943;;;;;; windmove-up windmove-left) "windmove" "windmove.el" (17279
29944;;;;;; 27123))
2cb750ba
GM
29945;;; Generated autoloads from windmove.el
29946
29947(autoload (quote windmove-left) "windmove" "\
29948Select the window to the left of the current one.
29949With no prefix argument, or with prefix argument equal to zero,
29950\"left\" is relative to the position of point in the window; otherwise
29951it is relative to the top edge (for positive ARG) or the bottom edge
29952\(for negative ARG) of the current window.
c595cc5f
MR
29953If no window is at the desired location, an error is signaled.
29954
29955\(fn &optional ARG)" t nil)
2cb750ba
GM
29956
29957(autoload (quote windmove-up) "windmove" "\
29958Select the window above the current one.
29959With no prefix argument, or with prefix argument equal to zero, \"up\"
29960is relative to the position of point in the window; otherwise it is
29961relative to the left edge (for positive ARG) or the right edge (for
29962negative ARG) of the current window.
c595cc5f
MR
29963If no window is at the desired location, an error is signaled.
29964
29965\(fn &optional ARG)" t nil)
2cb750ba
GM
29966
29967(autoload (quote windmove-right) "windmove" "\
29968Select the window to the right of the current one.
29969With no prefix argument, or with prefix argument equal to zero,
29970\"right\" is relative to the position of point in the window;
29971otherwise it is relative to the top edge (for positive ARG) or the
29972bottom edge (for negative ARG) of the current window.
c595cc5f
MR
29973If no window is at the desired location, an error is signaled.
29974
29975\(fn &optional ARG)" t nil)
2cb750ba
GM
29976
29977(autoload (quote windmove-down) "windmove" "\
29978Select the window below the current one.
29979With no prefix argument, or with prefix argument equal to zero,
29980\"down\" is relative to the position of point in the window; otherwise
29981it is relative to the left edge (for positive ARG) or the right edge
29982\(for negative ARG) of the current window.
c595cc5f
MR
29983If no window is at the desired location, an error is signaled.
29984
29985\(fn &optional ARG)" t nil)
2cb750ba
GM
29986
29987(autoload (quote windmove-default-keybindings) "windmove" "\
9e0211c9
MR
29988Set up keybindings for `windmove'.
29989Keybindings are of the form MODIFIER-{left,right,up,down}.
c595cc5f
MR
29990Default MODIFIER is 'shift.
29991
29992\(fn &optional MODIFIER)" t nil)
2cb750ba
GM
29993
29994;;;***
29995\f
d1221ea9 29996;;;### (autoloads (winner-mode winner-mode) "winner" "winner.el"
a5805c9d 29997;;;;;; (17279 27123))
d1221ea9
GM
29998;;; Generated autoloads from winner.el
29999
30000(defvar winner-mode nil "\
0ef3cc90 30001Toggle Winner mode.
d1221ea9
GM
30002Setting this variable directly does not take effect;
30003use either \\[customize] or the function `winner-mode'.")
30004
9c46b00a 30005(custom-autoload (quote winner-mode) "winner")
d1221ea9
GM
30006
30007(autoload (quote winner-mode) "winner" "\
30008Toggle Winner mode.
c595cc5f
MR
30009With arg, turn Winner mode on if and only if arg is positive.
30010
30011\(fn &optional ARG)" t nil)
d1221ea9
GM
30012
30013;;;***
30014\f
a1b8d58b 30015;;;### (autoloads (woman-find-file woman-dired-find-file woman) "woman"
a5805c9d 30016;;;;;; "woman.el" (17279 27185))
a1b8d58b
GM
30017;;; Generated autoloads from woman.el
30018
30019(autoload (quote woman) "woman" "\
f75a0f7a 30020Browse UN*X man page for TOPIC (Without using external Man program).
a1b8d58b
GM
30021The major browsing mode used is essentially the standard Man mode.
30022Choose the filename for the man page using completion, based on the
30023topic selected from the directories specified in `woman-manpath' and
30024`woman-path'. The directory expansions and topics are cached for
30025speed, but a non-nil interactive argument forces the caches to be
30026updated (e.g. to re-interpret the current directory).
30027
f75a0f7a 30028Used non-interactively, arguments are optional: if given then TOPIC
c595cc5f
MR
30029should be a topic string and non-nil RE-CACHE forces re-caching.
30030
30031\(fn &optional TOPIC RE-CACHE)" t nil)
a1b8d58b
GM
30032
30033(autoload (quote woman-dired-find-file) "woman" "\
c595cc5f
MR
30034In dired, run the WoMan man-page browser on this file.
30035
30036\(fn)" t nil)
a1b8d58b
GM
30037
30038(autoload (quote woman-find-file) "woman" "\
30039Find, decode and browse a specific UN*X man-page source file FILE-NAME.
30040Use existing buffer if possible; reformat only if prefix arg given.
30041When called interactively, optional argument REFORMAT forces reformatting
f75a0f7a 30042of an existing WoMan buffer formatted earlier.
a1b8d58b
GM
30043No external programs are used, except that `gunzip' will be used to
30044decompress the file if appropriate. See the documentation for the
c595cc5f
MR
30045`woman' command for further details.
30046
30047\(fn FILE-NAME &optional REFORMAT)" t nil)
a1b8d58b
GM
30048
30049;;;***
30050\f
93548d2e 30051;;;### (autoloads (wordstar-mode) "ws-mode" "emulation/ws-mode.el"
a5805c9d 30052;;;;;; (17279 27171))
93548d2e
DL
30053;;; Generated autoloads from emulation/ws-mode.el
30054
30055(autoload (quote wordstar-mode) "ws-mode" "\
30056Major mode with WordStar-like key bindings.
30057
30058BUGS:
30059 - Help menus with WordStar commands (C-j just calls help-for-help)
30060 are not implemented
30061 - Options for search and replace
30062 - Show markers (C-k h) is somewhat strange
30063 - Search and replace (C-q a) is only available in forward direction
30064
30065No key bindings beginning with ESC are installed, they will work
30066Emacs-like.
30067
30068The key bindings are:
30069
30070 C-a backward-word
30071 C-b fill-paragraph
30072 C-c scroll-up-line
30073 C-d forward-char
30074 C-e previous-line
30075 C-f forward-word
30076 C-g delete-char
30077 C-h backward-char
30078 C-i indent-for-tab-command
30079 C-j help-for-help
30080 C-k ordstar-C-k-map
30081 C-l ws-repeat-search
30082 C-n open-line
30083 C-p quoted-insert
30084 C-r scroll-down-line
30085 C-s backward-char
30086 C-t kill-word
30087 C-u keyboard-quit
30088 C-v overwrite-mode
30089 C-w scroll-down
30090 C-x next-line
30091 C-y kill-complete-line
30092 C-z scroll-up
30093
30094 C-k 0 ws-set-marker-0
30095 C-k 1 ws-set-marker-1
30096 C-k 2 ws-set-marker-2
30097 C-k 3 ws-set-marker-3
30098 C-k 4 ws-set-marker-4
30099 C-k 5 ws-set-marker-5
30100 C-k 6 ws-set-marker-6
30101 C-k 7 ws-set-marker-7
30102 C-k 8 ws-set-marker-8
30103 C-k 9 ws-set-marker-9
30104 C-k b ws-begin-block
30105 C-k c ws-copy-block
30106 C-k d save-buffers-kill-emacs
30107 C-k f find-file
30108 C-k h ws-show-markers
30109 C-k i ws-indent-block
30110 C-k k ws-end-block
30111 C-k p ws-print-block
30112 C-k q kill-emacs
30113 C-k r insert-file
30114 C-k s save-some-buffers
30115 C-k t ws-mark-word
30116 C-k u ws-exdent-block
30117 C-k C-u keyboard-quit
30118 C-k v ws-move-block
30119 C-k w ws-write-block
30120 C-k x kill-emacs
30121 C-k y ws-delete-block
30122
30123 C-o c wordstar-center-line
30124 C-o b switch-to-buffer
30125 C-o j justify-current-line
30126 C-o k kill-buffer
30127 C-o l list-buffers
30128 C-o m auto-fill-mode
30129 C-o r set-fill-column
30130 C-o C-u keyboard-quit
30131 C-o wd delete-other-windows
30132 C-o wh split-window-horizontally
30133 C-o wo other-window
30134 C-o wv split-window-vertically
30135
30136 C-q 0 ws-find-marker-0
30137 C-q 1 ws-find-marker-1
30138 C-q 2 ws-find-marker-2
30139 C-q 3 ws-find-marker-3
30140 C-q 4 ws-find-marker-4
30141 C-q 5 ws-find-marker-5
30142 C-q 6 ws-find-marker-6
30143 C-q 7 ws-find-marker-7
30144 C-q 8 ws-find-marker-8
30145 C-q 9 ws-find-marker-9
30146 C-q a ws-query-replace
30147 C-q b ws-to-block-begin
30148 C-q c end-of-buffer
30149 C-q d end-of-line
30150 C-q f ws-search
30151 C-q k ws-to-block-end
30152 C-q l ws-undo
30153 C-q p ws-last-cursorp
30154 C-q r beginning-of-buffer
30155 C-q C-u keyboard-quit
30156 C-q w ws-last-error
30157 C-q y ws-kill-eol
30158 C-q DEL ws-kill-bol
c595cc5f
MR
30159
30160\(fn)" t nil)
93548d2e
DL
30161
30162;;;***
30163\f
27a99a7c 30164;;;### (autoloads (xml-parse-region xml-parse-file) "xml" "xml.el"
a5805c9d 30165;;;;;; (17379 24713))
27a99a7c
GM
30166;;; Generated autoloads from xml.el
30167
30168(autoload (quote xml-parse-file) "xml" "\
30169Parse the well-formed XML file FILE.
30170If FILE is already visited, use its buffer and don't kill it.
30171Returns the top node with all its children.
30172If PARSE-DTD is non-nil, the DTD is parsed rather than skipped.
0c867fa7 30173If PARSE-NS is non-nil, then QNAMES are expanded.
27a99a7c 30174
0c867fa7 30175\(fn FILE &optional PARSE-DTD PARSE-NS)" nil nil)
27a99a7c
GM
30176
30177(autoload (quote xml-parse-region) "xml" "\
30178Parse the region from BEG to END in BUFFER.
30179If BUFFER is nil, it defaults to the current buffer.
30180Returns the XML list for the region, or raises an error if the region
0c867fa7 30181is not well-formed XML.
27a99a7c
GM
30182If PARSE-DTD is non-nil, the DTD is parsed rather than skipped,
30183and returned as the first element of the list.
0c867fa7 30184If PARSE-NS is non-nil, then QNAMES are expanded.
27a99a7c 30185
0c867fa7 30186\(fn BEG END &optional BUFFER PARSE-DTD PARSE-NS)" nil nil)
27a99a7c
GM
30187
30188;;;***
30189\f
a5805c9d
KL
30190;;;### (autoloads (xterm-mouse-mode) "xt-mouse" "xt-mouse.el" (17337
30191;;;;;; 56257))
93548d2e
DL
30192;;; Generated autoloads from xt-mouse.el
30193
296d7669
KS
30194(defvar xterm-mouse-mode nil "\
30195Non-nil if Xterm-Mouse mode is enabled.
30196See the command `xterm-mouse-mode' for a description of this minor-mode.
30197Setting this variable directly does not take effect;
30198use either \\[customize] or the function `xterm-mouse-mode'.")
30199
9c46b00a 30200(custom-autoload (quote xterm-mouse-mode) "xt-mouse")
296d7669 30201
ac09dc1e
KL
30202(put (quote xterm-mouse-mode) (quote custom-set) (quote custom-set-minor-mode))
30203
93548d2e
DL
30204(autoload (quote xterm-mouse-mode) "xt-mouse" "\
30205Toggle XTerm mouse mode.
30206With prefix arg, turn XTerm mouse mode on iff arg is positive.
30207
d66d64bc
KL
30208Turn it on to use Emacs mouse commands, and off to use xterm mouse commands.
30209This works in terminal emulators compatible with xterm. It only
30210works for simple uses of the mouse. Basically, only non-modified
30211single clicks are supported. When turned on, the normal xterm
30212mouse functionality for such clicks is still available by holding
30213down the SHIFT key while pressing the mouse button.
c595cc5f
MR
30214
30215\(fn &optional ARG)" t nil)
93548d2e
DL
30216
30217;;;***
30218\f
390069bc 30219;;;### (autoloads (yenc-extract-filename yenc-decode-region) "yenc"
a5805c9d 30220;;;;;; "gnus/yenc.el" (17279 27122))
390069bc
AS
30221;;; Generated autoloads from gnus/yenc.el
30222
30223(autoload (quote yenc-decode-region) "yenc" "\
30224Yenc decode region between START and END using an internal decoder.
30225
30226\(fn START END)" t nil)
30227
30228(autoload (quote yenc-extract-filename) "yenc" "\
30229Extract file name from an yenc header.
30230
30231\(fn)" nil nil)
30232
30233;;;***
30234\f
93548d2e 30235;;;### (autoloads (psychoanalyze-pinhead apropos-zippy insert-zippyism
a5805c9d 30236;;;;;; yow) "yow" "play/yow.el" (17307 17624))
93548d2e
DL
30237;;; Generated autoloads from play/yow.el
30238
30239(autoload (quote yow) "yow" "\
c595cc5f
MR
30240Return or display a random Zippy quotation. With prefix arg, insert it.
30241
30242\(fn &optional INSERT DISPLAY)" t nil)
93548d2e
DL
30243
30244(autoload (quote insert-zippyism) "yow" "\
c595cc5f
MR
30245Prompt with completion for a known Zippy quotation, and insert it at point.
30246
30247\(fn &optional ZIPPYISM)" t nil)
93548d2e
DL
30248
30249(autoload (quote apropos-zippy) "yow" "\
30250Return a list of all Zippy quotes matching REGEXP.
c595cc5f
MR
30251If called interactively, display a list of matches.
30252
30253\(fn REGEXP)" t nil)
93548d2e
DL
30254
30255(autoload (quote psychoanalyze-pinhead) "yow" "\
c595cc5f
MR
30256Zippy goes to the analyst.
30257
30258\(fn)" t nil)
93548d2e
DL
30259
30260;;;***
30261\f
a5805c9d 30262;;;### (autoloads (zone) "zone" "play/zone.el" (17279 27174))
abb2db1c
GM
30263;;; Generated autoloads from play/zone.el
30264
30265(autoload (quote zone) "zone" "\
c595cc5f
MR
30266Zone out, completely.
30267
30268\(fn)" t nil)
abb2db1c
GM
30269
30270;;;***
30271\f
93548d2e 30272;;;### (autoloads (zone-mode zone-mode-update-serial-hook) "zone-mode"
a5805c9d 30273;;;;;; "net/zone-mode.el" (17279 27123))
a25bbe00 30274;;; Generated autoloads from net/zone-mode.el
93548d2e
DL
30275
30276(autoload (quote zone-mode-update-serial-hook) "zone-mode" "\
c595cc5f
MR
30277Update the serial number in a zone if the file was modified.
30278
30279\(fn)" t nil)
93548d2e 30280
7518ed7b
GM
30281(autoload (quote zone-mode) "zone-mode" "\
30282A mode for editing DNS zone files.
30283
30284Zone-mode does two things:
30285
30286 - automatically update the serial number for a zone
30287 when saving the file
30288
0c867fa7
MS
30289 - fontification
30290
30291\(fn)" t nil)
93548d2e
DL
30292
30293;;;***
30294\f
11254e5e 30295;;;### (autoloads nil nil ("abbrev.el" "abbrevlist.el" "bindings.el"
27a99a7c
GM
30296;;;;;; "buff-menu.el" "calc/calc-aent.el" "calc/calc-alg.el" "calc/calc-arith.el"
30297;;;;;; "calc/calc-bin.el" "calc/calc-comb.el" "calc/calc-cplx.el"
390069bc
AS
30298;;;;;; "calc/calc-embed.el" "calc/calc-ext.el" "calc/calc-fin.el"
30299;;;;;; "calc/calc-forms.el" "calc/calc-frac.el" "calc/calc-funcs.el"
30300;;;;;; "calc/calc-graph.el" "calc/calc-help.el" "calc/calc-incom.el"
30301;;;;;; "calc/calc-keypd.el" "calc/calc-lang.el" "calc/calc-macs.el"
27a99a7c
GM
30302;;;;;; "calc/calc-map.el" "calc/calc-math.el" "calc/calc-misc.el"
30303;;;;;; "calc/calc-mode.el" "calc/calc-mtx.el" "calc/calc-poly.el"
30304;;;;;; "calc/calc-prog.el" "calc/calc-rewr.el" "calc/calc-rules.el"
30305;;;;;; "calc/calc-sel.el" "calc/calc-stat.el" "calc/calc-store.el"
30306;;;;;; "calc/calc-stuff.el" "calc/calc-trail.el" "calc/calc-undo.el"
30307;;;;;; "calc/calc-units.el" "calc/calc-vec.el" "calc/calc-yank.el"
30308;;;;;; "calc/calcalg2.el" "calc/calcalg3.el" "calc/calccomp.el"
390069bc
AS
30309;;;;;; "calc/calcsel2.el" "calendar/cal-bahai.el" "calendar/cal-china.el"
30310;;;;;; "calendar/cal-coptic.el" "calendar/cal-french.el" "calendar/cal-islam.el"
30311;;;;;; "calendar/cal-iso.el" "calendar/cal-julian.el" "calendar/cal-mayan.el"
30312;;;;;; "calendar/cal-menu.el" "calendar/cal-move.el" "calendar/cal-persia.el"
be65bdd3 30313;;;;;; "calendar/cal-tex.el" "calendar/cal-x.el" "case-table.el"
ac09dc1e 30314;;;;;; "cdl.el" "cus-dep.el" "cus-load.el" "cus-start.el" "custom.el"
175a97e4
EZ
30315;;;;;; "dframe.el" "dos-fns.el" "dos-vars.el" "dos-w32.el" "ediff-diff.el"
30316;;;;;; "ediff-init.el" "ediff-merg.el" "ediff-ptch.el" "ediff-vers.el"
30317;;;;;; "ediff-wind.el" "electric.el" "emacs-lisp/assoc.el" "emacs-lisp/authors.el"
390069bc
AS
30318;;;;;; "emacs-lisp/bindat.el" "emacs-lisp/byte-opt.el" "emacs-lisp/byte-run.el"
30319;;;;;; "emacs-lisp/cl-compat.el" "emacs-lisp/cl-extra.el" "emacs-lisp/cl-macs.el"
30320;;;;;; "emacs-lisp/cl-seq.el" "emacs-lisp/cl-specs.el" "emacs-lisp/cust-print.el"
30321;;;;;; "emacs-lisp/ewoc.el" "emacs-lisp/find-gc.el" "emacs-lisp/float-sup.el"
30322;;;;;; "emacs-lisp/gulp.el" "emacs-lisp/levents.el" "emacs-lisp/lisp-mnt.el"
30323;;;;;; "emacs-lisp/lisp-mode.el" "emacs-lisp/lisp.el" "emacs-lisp/lmenu.el"
30324;;;;;; "emacs-lisp/lselect.el" "emacs-lisp/lucid.el" "emacs-lisp/map-ynp.el"
59e085e0
KL
30325;;;;;; "emacs-lisp/regi.el" "emacs-lisp/sregex.el" "emacs-lisp/syntax.el"
30326;;;;;; "emacs-lisp/tcover-ses.el" "emacs-lisp/tcover-unsafep.el"
30327;;;;;; "emacs-lock.el" "emulation/cua-gmrk.el" "emulation/cua-rect.el"
30328;;;;;; "emulation/edt-lk201.el" "emulation/edt-mapper.el" "emulation/edt-pc.el"
30329;;;;;; "emulation/edt-vt100.el" "emulation/tpu-mapper.el" "emulation/viper-cmd.el"
30330;;;;;; "emulation/viper-ex.el" "emulation/viper-init.el" "emulation/viper-keym.el"
30331;;;;;; "emulation/viper-macs.el" "emulation/viper-mous.el" "emulation/viper-util.el"
a5805c9d
KL
30332;;;;;; "env.el" "erc/erc-backend.el" "erc/erc-goodies.el" "erc/erc-ibuffer.el"
30333;;;;;; "erc/erc-identd.el" "erc/erc-lang.el" "erc/erc-menu.el" "erc/erc-nicklist.el"
30334;;;;;; "eshell/em-alias.el" "eshell/em-banner.el" "eshell/em-basic.el"
59e085e0
KL
30335;;;;;; "eshell/em-cmpl.el" "eshell/em-dirs.el" "eshell/em-glob.el"
30336;;;;;; "eshell/em-hist.el" "eshell/em-ls.el" "eshell/em-pred.el"
30337;;;;;; "eshell/em-prompt.el" "eshell/em-rebind.el" "eshell/em-script.el"
30338;;;;;; "eshell/em-smart.el" "eshell/em-term.el" "eshell/em-unix.el"
30339;;;;;; "eshell/em-xtra.el" "eshell/esh-arg.el" "eshell/esh-cmd.el"
30340;;;;;; "eshell/esh-ext.el" "eshell/esh-groups.el" "eshell/esh-io.el"
30341;;;;;; "eshell/esh-maint.el" "eshell/esh-module.el" "eshell/esh-opt.el"
30342;;;;;; "eshell/esh-proc.el" "eshell/esh-util.el" "eshell/esh-var.el"
30343;;;;;; "ezimage.el" "faces.el" "files.el" "finder-inf.el" "foldout.el"
30344;;;;;; "font-core.el" "font-lock.el" "format.el" "forms-d2.el" "forms-pass.el"
ac09dc1e
KL
30345;;;;;; "frame.el" "generic-x.el" "gnus/compface.el" "gnus/dig.el"
30346;;;;;; "gnus/dns.el" "gnus/format-spec.el" "gnus/gnus-async.el"
d66d64bc
KL
30347;;;;;; "gnus/gnus-bcklg.el" "gnus/gnus-cite.el" "gnus/gnus-cus.el"
30348;;;;;; "gnus/gnus-demon.el" "gnus/gnus-diary.el" "gnus/gnus-dup.el"
30349;;;;;; "gnus/gnus-eform.el" "gnus/gnus-ems.el" "gnus/gnus-gl.el"
30350;;;;;; "gnus/gnus-int.el" "gnus/gnus-logic.el" "gnus/gnus-mh.el"
30351;;;;;; "gnus/gnus-nocem.el" "gnus/gnus-salt.el" "gnus/gnus-score.el"
30352;;;;;; "gnus/gnus-setup.el" "gnus/gnus-srvr.el" "gnus/gnus-sum.el"
30353;;;;;; "gnus/gnus-topic.el" "gnus/gnus-undo.el" "gnus/gnus-util.el"
30354;;;;;; "gnus/gnus-uu.el" "gnus/gnus-vm.el" "gnus/hex-util.el" "gnus/ietf-drums.el"
30355;;;;;; "gnus/imap.el" "gnus/legacy-gnus-agent.el" "gnus/mail-parse.el"
30356;;;;;; "gnus/mail-prsvr.el" "gnus/mail-source.el" "gnus/mailcap.el"
30357;;;;;; "gnus/messcompat.el" "gnus/mm-bodies.el" "gnus/mm-decode.el"
30358;;;;;; "gnus/mm-encode.el" "gnus/mm-util.el" "gnus/mm-view.el" "gnus/mml-sec.el"
30359;;;;;; "gnus/mml-smime.el" "gnus/mml.el" "gnus/nnagent.el" "gnus/nnbabyl.el"
30360;;;;;; "gnus/nndb.el" "gnus/nndir.el" "gnus/nndraft.el" "gnus/nneething.el"
30361;;;;;; "gnus/nngateway.el" "gnus/nnheader.el" "gnus/nnimap.el" "gnus/nnlistserv.el"
390069bc
AS
30362;;;;;; "gnus/nnmail.el" "gnus/nnmaildir.el" "gnus/nnmbox.el" "gnus/nnmh.el"
30363;;;;;; "gnus/nnnil.el" "gnus/nnoo.el" "gnus/nnrss.el" "gnus/nnslashdot.el"
30364;;;;;; "gnus/nnspool.el" "gnus/nntp.el" "gnus/nnultimate.el" "gnus/nnvirtual.el"
175a97e4
EZ
30365;;;;;; "gnus/nnwarchive.el" "gnus/nnweb.el" "gnus/nnwfm.el" "gnus/pop3.el"
30366;;;;;; "gnus/rfc1843.el" "gnus/rfc2045.el" "gnus/rfc2047.el" "gnus/rfc2104.el"
30367;;;;;; "gnus/rfc2231.el" "gnus/sieve-manage.el" "gnus/smime.el"
30368;;;;;; "gnus/spam-stat.el" "gnus/starttls.el" "gnus/utf7.el" "gnus/webmail.el"
30369;;;;;; "help.el" "indent.el" "international/characters.el" "international/fontset.el"
30370;;;;;; "international/iso-ascii.el" "international/ja-dic-cnv.el"
30371;;;;;; "international/ja-dic-utl.el" "international/latin-1.el"
30372;;;;;; "international/latin-2.el" "international/latin-3.el" "international/latin-4.el"
30373;;;;;; "international/latin-5.el" "international/latin-8.el" "international/latin-9.el"
30374;;;;;; "international/mule-cmds.el" "international/mule-conf.el"
11254e5e
MR
30375;;;;;; "international/mule.el" "international/ogonek.el" "international/subst-big5.el"
30376;;;;;; "international/subst-gb2312.el" "international/subst-jis.el"
fbf34973 30377;;;;;; "international/subst-ksc.el" "international/ucs-tables.el"
cd0cf71c 30378;;;;;; "international/utf-16.el" "international/utf-8.el" "isearch.el"
59e085e0
KL
30379;;;;;; "jit-lock.el" "jka-cmpr-hook.el" "kermit.el" "language/chinese.el"
30380;;;;;; "language/cyrillic.el" "language/czech.el" "language/devanagari.el"
30381;;;;;; "language/english.el" "language/ethiopic.el" "language/european.el"
30382;;;;;; "language/georgian.el" "language/greek.el" "language/hebrew.el"
30383;;;;;; "language/indian.el" "language/japanese.el" "language/kannada.el"
30384;;;;;; "language/korean.el" "language/lao.el" "language/malayalam.el"
30385;;;;;; "language/misc-lang.el" "language/romanian.el" "language/slovak.el"
30386;;;;;; "language/tamil.el" "language/thai-word.el" "language/thai.el"
30387;;;;;; "language/tibetan.el" "language/utf-8-lang.el" "language/vietnamese.el"
30388;;;;;; "ldefs-boot.el" "loadup.el" "mail/blessmail.el" "mail/mailheader.el"
30389;;;;;; "mail/mailpost.el" "mail/mspools.el" "mail/rfc2368.el" "mail/rfc822.el"
30390;;;;;; "mail/rmail-spam-filter.el" "mail/uce.el" "mail/vms-pmail.el"
a5805c9d
KL
30391;;;;;; "mh-e/mh-acros.el" "mh-e/mh-alias.el" "mh-e/mh-buffers.el"
30392;;;;;; "mh-e/mh-compat.el" "mh-e/mh-funcs.el" "mh-e/mh-gnus.el"
30393;;;;;; "mh-e/mh-identity.el" "mh-e/mh-inc.el" "mh-e/mh-junk.el"
30394;;;;;; "mh-e/mh-letter.el" "mh-e/mh-limit.el" "mh-e/mh-loaddefs.el"
99155348
LT
30395;;;;;; "mh-e/mh-mime.el" "mh-e/mh-print.el" "mh-e/mh-scan.el" "mh-e/mh-search.el"
30396;;;;;; "mh-e/mh-seq.el" "mh-e/mh-show.el" "mh-e/mh-speed.el" "mh-e/mh-thread.el"
30397;;;;;; "mh-e/mh-tool-bar.el" "mh-e/mh-utils.el" "mh-e/mh-xface.el"
30398;;;;;; "misc.el" "mouse-copy.el" "mouse-drag.el" "mouse.el" "net/eudc-vars.el"
30399;;;;;; "net/eudcb-bbdb.el" "net/eudcb-ldap.el" "net/eudcb-mab.el"
30400;;;;;; "net/eudcb-ph.el" "net/ldap.el" "net/netrc.el" "net/tls.el"
59e085e0
KL
30401;;;;;; "net/tramp-smb.el" "net/tramp-util.el" "net/tramp-uu.el"
30402;;;;;; "net/tramp-vc.el" "net/trampver.el" "obsolete/awk-mode.el"
fbf34973 30403;;;;;; "obsolete/bg-mouse.el" "obsolete/float.el" "obsolete/hilit19.el"
175a97e4
EZ
30404;;;;;; "obsolete/iso-insert.el" "obsolete/iso-swed.el" "obsolete/keyswap.el"
30405;;;;;; "obsolete/mlsupport.el" "obsolete/ooutline.el" "obsolete/profile.el"
30406;;;;;; "obsolete/rnews.el" "obsolete/sc.el" "obsolete/sun-curs.el"
30407;;;;;; "obsolete/sun-fns.el" "obsolete/swedish.el" "obsolete/uncompress.el"
0ef3cc90
LT
30408;;;;;; "obsolete/x-apollo.el" "obsolete/x-menu.el" "patcomp.el"
30409;;;;;; "paths.el" "pcvs-info.el" "pcvs-parse.el" "pcvs-util.el"
59e085e0
KL
30410;;;;;; "pgg-def.el" "pgg-parse.el" "pgg-pgp.el" "pgg-pgp5.el" "play/gamegrid.el"
30411;;;;;; "play/gametree.el" "play/meese.el" "progmodes/ada-prj.el"
0ef3cc90
LT
30412;;;;;; "progmodes/cc-align.el" "progmodes/cc-awk.el" "progmodes/cc-bytecomp.el"
30413;;;;;; "progmodes/cc-cmds.el" "progmodes/cc-compat.el" "progmodes/cc-defs.el"
be65bdd3
AS
30414;;;;;; "progmodes/cc-fonts.el" "progmodes/cc-langs.el" "progmodes/cc-menus.el"
30415;;;;;; "progmodes/cc-vars.el" "progmodes/ebnf-abn.el" "progmodes/ebnf-bnf.el"
30416;;;;;; "progmodes/ebnf-dtd.el" "progmodes/ebnf-ebx.el" "progmodes/ebnf-iso.el"
0ef3cc90
LT
30417;;;;;; "progmodes/ebnf-otz.el" "progmodes/ebnf-yac.el" "progmodes/idlw-complete-structtag.el"
30418;;;;;; "progmodes/idlw-help.el" "progmodes/idlw-rinfo.el" "progmodes/idlw-toolbar.el"
30419;;;;;; "progmodes/mantemp.el" "progmodes/xscheme.el" "register.el"
59e085e0
KL
30420;;;;;; "replace.el" "rfn-eshadow.el" "s-region.el" "saveplace.el"
30421;;;;;; "sb-image.el" "scroll-bar.el" "select.el" "simple.el" "soundex.el"
30422;;;;;; "startup.el" "subdirs.el" "tempo.el" "term/AT386.el" "term/apollo.el"
30423;;;;;; "term/bobcat.el" "term/cygwin.el" "term/internal.el" "term/iris-ansi.el"
30424;;;;;; "term/linux.el" "term/lk201.el" "term/mac-win.el" "term/news.el"
30425;;;;;; "term/pc-win.el" "term/rxvt.el" "term/sun-mouse.el" "term/sun.el"
30426;;;;;; "term/sup-mouse.el" "term/tty-colors.el" "term/tvi970.el"
30427;;;;;; "term/vt100.el" "term/vt102.el" "term/vt125.el" "term/vt200.el"
30428;;;;;; "term/vt201.el" "term/vt220.el" "term/vt240.el" "term/vt300.el"
30429;;;;;; "term/vt320.el" "term/vt400.el" "term/vt420.el" "term/w32-win.el"
a5805c9d
KL
30430;;;;;; "term/wyse50.el" "term/x-win.el" "term/xterm.el" "termdev.el"
30431;;;;;; "textmodes/bib-mode.el" "textmodes/fill.el" "textmodes/makeinfo.el"
30432;;;;;; "textmodes/page-ext.el" "textmodes/page.el" "textmodes/paragraphs.el"
30433;;;;;; "textmodes/refbib.el" "textmodes/refer.el" "textmodes/reftex-auc.el"
30434;;;;;; "textmodes/reftex-dcr.el" "textmodes/reftex-ref.el" "textmodes/reftex-sel.el"
30435;;;;;; "textmodes/reftex-toc.el" "textmodes/reftex-vars.el" "textmodes/texnfo-upd.el"
30436;;;;;; "textmodes/text-mode.el" "timezone.el" "tooltip.el" "tree-widget.el"
30437;;;;;; "uniquify.el" "url/url-about.el" "url/url-cookie.el" "url/url-dired.el"
30438;;;;;; "url/url-expand.el" "url/url-ftp.el" "url/url-history.el"
30439;;;;;; "url/url-https.el" "url/url-imap.el" "url/url-methods.el"
59e085e0
KL
30440;;;;;; "url/url-nfs.el" "url/url-proxy.el" "url/url-vars.el" "url/vc-dav.el"
30441;;;;;; "vc-hooks.el" "vcursor.el" "version.el" "vms-patch.el" "vmsproc.el"
30442;;;;;; "vt-control.el" "vt100-led.el" "w32-fns.el" "w32-vars.el"
a5805c9d 30443;;;;;; "widget.el" "window.el" "x-dnd.el") (17383 38265 629878))
2b74dd73
MR
30444
30445;;;***
30446\f
30447;;; Local Variables:
30448;;; version-control: never
30449;;; no-byte-compile: t
30450;;; no-update-autoloads: t
30451;;; End:
30452;;; loaddefs.el ends here