Mercurial > hg > xemacs-beta
comparison lisp/eos/loaddefs-eos.el @ 0:376386a54a3c r19-14
Import from CVS: tag r19-14
author | cvs |
---|---|
date | Mon, 13 Aug 2007 08:45:50 +0200 |
parents | |
children | 0293115a14e9 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:376386a54a3c |
---|---|
1 ;;; loaddefs.el --- define standard autoloads of other files | |
2 | |
3 ;; Copyright (C) 1985, 1986, 1987, 1992-1995 Free Software Foundation, Inc. | |
4 | |
5 ;; Maintainer: XEmacs | |
6 ;; Keywords: internal | |
7 | |
8 ;; This file is part of XEmacs. | |
9 | |
10 ;; XEmacs is free software; you can redistribute it and/or modify it | |
11 ;; under the terms of the GNU General Public License as published by | |
12 ;; the Free Software Foundation; either version 2, or (at your option) | |
13 ;; any later version. | |
14 | |
15 ;; XEmacs is distributed in the hope that it will be useful, but | |
16 ;; WITHOUT ANY WARRANTY; without even the implied warranty of | |
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
18 ;; General Public License for more details. | |
19 | |
20 ;; You should have received a copy of the GNU General Public License | |
21 ;; along with XEmacs; see the file COPYING. If not, write to the Free | |
22 ;; Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. | |
23 | |
24 ;;; Synched up with: Not synched with FSF. | |
25 | |
26 ;;; Commentary: | |
27 | |
28 ;;; !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
29 ;;; Special formatting conventions are used in this file! | |
30 ;;; | |
31 ;;; a backslash-newline is used at the beginning of a documentation string | |
32 ;;; when that string should be stored in the file lib-src/DOCnnn, not in core. | |
33 ;;; | |
34 ;;; Such strings read into Lisp as numbers (during the pure-loading phase). | |
35 ;;; | |
36 ;;; But you must obey certain rules to make sure the string is understood | |
37 ;;; and goes into lib-src/DOCnnn properly. Otherwise, the string will not go | |
38 ;;; anywhere! | |
39 ;;; | |
40 ;;; The doc string must appear in the standard place in a call to | |
41 ;;; defun, autoload, defvar or defconst. No Lisp macros are recognized. | |
42 ;;; The open-paren starting the definition must appear in column 0. | |
43 ;;; | |
44 ;;; In defvar and defconst, there is an additional rule: | |
45 ;;; The double-quote that starts the string must be on the same | |
46 ;;; line as the defvar or defconst. | |
47 ;;; !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
48 | |
49 ;;; ********************************************************************** | |
50 ;;; You should never need to write autoloads by hand and put them here. | |
51 ;;; | |
52 ;;; It is no longer necessary. Instead use autoload.el to maintain them | |
53 ;;; for you. Just insert ";;;###autoload" before defuns or defmacros you | |
54 ;;; want to be autoloaded, or other forms you want copied into loaddefs.el | |
55 ;;; (defvars, key definitions, etc.). For example, | |
56 ;;; ;;;###autoload | |
57 ;;; (defun foobar () ....) | |
58 ;;; ;;;###autoload (define-key global-map "f" 'foobar) | |
59 ;;; ;;;###autoload | |
60 ;;; (defvar foobar-var nil "\ | |
61 ;;; This is foobar-var's doc-string.") | |
62 ;;; | |
63 ;;; Then do M-x update-file-autoloads on the file to update loaddefs.el. | |
64 ;;; | |
65 ;;; You can also use M-x update-directory-autoloads to update the autoloads | |
66 ;;; in loaddefs.el for all .el files in the lisp/ directory, or M-x | |
67 ;;; update-autoloads-here to update the autoloads for each file that | |
68 ;;; already has an autoload section in this file. | |
69 ;;; ********************************************************************** | |
70 | |
71 ;;; Code: | |
72 | |
73 ;; These variables are used by autoloadable packages. | |
74 ;; They are defined here so that they do not get overridden | |
75 ;; by the loading of those packages. | |
76 | |
77 ;; Names in directory that end in one of these | |
78 ;; are ignored in completion, | |
79 ;; making it more likely you will get a unique match. | |
80 (setq completion-ignored-extensions | |
81 (mapcar 'purecopy | |
82 (if (eq system-type 'vax-vms) | |
83 '(".obj" ".elc" ".exe" ".bin" ".lbin" ".sbin" | |
84 ".dvi" ".toc" ".log" ".aux" | |
85 ".lof" ".brn" ".rnt" ".mem" ".lni" ".lis" | |
86 ".olb" ".tlb" ".mlb" ".hlb" ".glo" ".idx" ".lot" ".fmt") | |
87 '(".o" ".elc" "~" ".bin" ".lbin" ".fasl" | |
88 ".dvi" ".toc" ".log" ".aux" ".a" ".ln" | |
89 ".lof" ".blg" ".bbl" ".glo" ".idx" ".lot" ".fmt" | |
90 ".diff" ".oi")))) | |
91 | |
92 (make-variable-buffer-local 'indent-tabs-mode) | |
93 | |
94 ;;; This code also was not generated by autoload.el, because VM goes out | |
95 ;;; of its way to be perverse. | |
96 | |
97 (autoload 'vm "vm" | |
98 "\ | |
99 View Mail: an alternate mail reader for emacs. | |
100 Optional first arg FOLDER specifies the folder to visit. It defaults | |
101 to the value of vm-primary-inbox. The folder buffer is put into VM | |
102 mode, a major mode for reading mail. | |
103 | |
104 Prefix arg or optional second arg READ-ONLY non-nil indicates | |
105 that the folder should be considered read only. No attribute | |
106 changes, messages additions or deletions will be allowed in the | |
107 visited folder. | |
108 | |
109 Visiting the primary inbox causes any contents of the system mailbox to | |
110 be moved and appended to the resulting buffer. | |
111 | |
112 All the messages can be read by repeatedly pressing SPC. Use `n'ext and | |
113 `p'revious to move about in the folder. Messages are marked for | |
114 deletion with `d', and saved to another folder with `s'. Quitting VM | |
115 with `q' expunges deleted messages and saves the buffered folder to | |
116 disk. | |
117 | |
118 See the documentation for vm-mode for more information." | |
119 t) | |
120 | |
121 (autoload 'vm-mode "vm" | |
122 "\ | |
123 View Mail: an alternate mail reader for emacs. | |
124 | |
125 Commands: | |
126 h - summarize folder contents | |
127 j - discard cached information about the current message | |
128 | |
129 n - go to next message | |
130 p - go to previous message | |
131 N - like `n' but ignores skip-variable settings | |
132 P - like `p' but ignores skip-variable settings | |
133 M-n - go to next unread message | |
134 M-p - go to previous unread message | |
135 RET - go to numbered message (uses prefix arg or prompts in minibuffer) | |
136 TAB - go to last message seen | |
137 M-s - incremental search through the folder | |
138 | |
139 t - display hidden headers | |
140 SPC - scroll forward a page (if at end of message, then display next message) | |
141 b - scroll backward a page | |
142 < - go to beginning of current message | |
143 > - go to end of current message | |
144 | |
145 d - delete message, prefix arg deletes messages forward (flag as deleted) | |
146 C-d - delete message, prefix arg deletes messages backward (flag as deleted) | |
147 u - undelete | |
148 k - flag for deletion all messages with same subject as the current message | |
149 | |
150 r - reply (only to the sender of the message) | |
151 R - reply with included text for current message | |
152 M-r - extract and resend bounced message | |
153 f - followup (reply to all recipients of message) | |
154 F - followup with included text from the current message | |
155 z - forward the current message | |
156 m - send a message | |
157 B - resend the current message to another user. | |
158 c - continue composing the most recent message you were composing | |
159 | |
160 @ - digestify and mail entire folder contents (the folder is not modified) | |
161 * - burst a digest into individual messages, and append and assimilate these | |
162 message into the current folder. | |
163 | |
164 G - sort messages by various keys | |
165 | |
166 g - get any new mail that has arrived in the system mailbox | |
167 (new mail is appended to the disk and buffer copies of the | |
168 primary inbox.) | |
169 v - visit another mail folder | |
170 V - visit a virtual folder | |
171 | |
172 e - edit the current message | |
173 | |
174 s - save current message in a folder (appends if folder already exists) | |
175 w - write current message to a file without its headers (appends if exists) | |
176 S - save entire folder to disk, expunging deleted messages | |
177 A - save unfiled messages to their vm-auto-folder-alist specified folders | |
178 # - expunge deleted messages (without saving folder) | |
179 q - quit VM, deleted messages are expunged, folder saved to disk | |
180 x - exit VM with no change to the folder | |
181 | |
182 M N - use marks; the next vm command will affect only marked messages | |
183 if it makes sense for the command to do so | |
184 | |
185 M M - mark the current message | |
186 M U - unmark the current message | |
187 M m - mark all messages | |
188 M u - unmark all messages | |
189 M ? - help for the mark commands | |
190 | |
191 W S - save the current window configuration to a name | |
192 W D - delete a window configuration | |
193 W W - apply a configuration | |
194 W ? - help for the window configuration commands | |
195 | |
196 C-_ - undo, special undo that retracts the most recent | |
197 changes in message attributes. Expunges and saves | |
198 cannot be undone. C-x u is also bound to this | |
199 command. | |
200 | |
201 L - reload your VM init file, ~/.vm | |
202 | |
203 ? - help | |
204 | |
205 ! - run a shell command | |
206 | - run a shell command with the current message as input | |
207 | |
208 M-C - view conditions under which you may redistribute VM | |
209 M-W - view the details of VM's lack of a warranty | |
210 | |
211 Variables: | |
212 vm-auto-center-summary | |
213 vm-auto-folder-alist | |
214 vm-auto-folder-case-fold-search | |
215 vm-auto-get-new-mail | |
216 vm-auto-next-message | |
217 vm-berkeley-mail-compatibility | |
218 vm-check-folder-types | |
219 vm-convert-folder-types | |
220 vm-circular-folders | |
221 vm-confirm-new-folders | |
222 vm-confirm-quit | |
223 vm-crash-box | |
224 vm-delete-after-archiving | |
225 vm-delete-after-bursting | |
226 vm-delete-after-saving | |
227 vm-delete-empty-folders | |
228 vm-digest-burst-type | |
229 vm-digest-center-preamble | |
230 vm-digest-preamble-format | |
231 vm-digest-send-type | |
232 vm-folder-directory | |
233 vm-folder-read-only | |
234 vm-follow-summary-cursor | |
235 vm-forwarded-headers | |
236 vm-forwarding-digest-type | |
237 vm-forwarding-subject-format | |
238 vm-gargle-uucp | |
239 vm-highlighted-header-regexp | |
240 vm-honor-page-delimiters | |
241 vm-in-reply-to-format | |
242 vm-included-text-attribution-format | |
243 vm-included-text-prefix | |
244 vm-inhibit-startup-message | |
245 vm-invisible-header-regexp | |
246 vm-jump-to-new-messages | |
247 vm-jump-to-unread-messages | |
248 vm-keep-sent-messages | |
249 vm-mail-header-from | |
250 vm-mail-mode-hook | |
251 vm-mail-window-percentage | |
252 vm-mode-hook | |
253 vm-move-after-deleting | |
254 vm-move-after-undeleting | |
255 vm-mutable-windows | |
256 vm-preview-lines | |
257 vm-preview-read-messages | |
258 vm-primary-inbox | |
259 vm-recognize-pop-maildrops | |
260 vm-reply-ignored-addresses | |
261 vm-reply-subject-prefix | |
262 vm-resend-bounced-headers | |
263 vm-resend-bounced-discard-header-regexp | |
264 vm-resend-headers | |
265 vm-resend-discard-header-regexp | |
266 vm-retain-message-order | |
267 vm-rfc1153-digest-discard-header-regexp | |
268 vm-rfc1153-digest-headers | |
269 vm-rfc934-digest-discard-header-regexp | |
270 vm-rfc934-digest-headers | |
271 vm-search-using-regexps | |
272 vm-skip-deleted-messages | |
273 vm-skip-read-messages | |
274 vm-spool-files | |
275 vm-startup-with-summary | |
276 vm-strip-reply-headers | |
277 vm-summary-format | |
278 vm-unforwarded-header-regexp | |
279 vm-virtual-folder-alist | |
280 vm-virtual-mirror | |
281 vm-visible-headers | |
282 vm-visit-when-saving | |
283 vm-window-configuration-file | |
284 " | |
285 t) | |
286 | |
287 (autoload 'vm-visit-folder "vm" | |
288 "\ | |
289 Visit a mail file with View Mail, an alternate mail reader for emacs. | |
290 See the description of the `vm' and `vm-mode' functions. | |
291 | |
292 VM will parse and present its messages to you in the usual way. | |
293 | |
294 First arg FOLDER specifies the mail file to visit. When this | |
295 command is called interactively the file name is read from the | |
296 minibuffer. | |
297 | |
298 Prefix arg or optional second arg READ-ONLY non-nil indicates | |
299 that the folder should be considered read only. No attribute | |
300 changes, messages additions or deletions will be allowed in the | |
301 visited folder." | |
302 t) | |
303 | |
304 (autoload 'vm-mail "vm" | |
305 "\ | |
306 Send a mail message from within View Mail, or from without." | |
307 t) | |
308 | |
309 | |
310 | |
311 ;;; Generated autoloads follow (made by autoload.el). | |
312 | |
313 ;;; To sort them, execute the following after narrowing | |
314 ;;; to a region starting just after the following formfeed (control-l) | |
315 ;;; and ending just after the last formfeed in the file. | |
316 | |
317 ;;;(sort-regexp-fields nil "\n*.*\n.*from \\(.*\\)[^]*" "\\1" | |
318 ;;; (point-min) (point-max)) | |
319 | |
320 ;;;*** | |
321 | |
322 ;;;### (autoloads nil "byte-optimize" "bytecomp/byte-optimize.el" (12558 60872)) | |
323 ;;; Generated autoloads from bytecomp/byte-optimize.el | |
324 | |
325 ;;;*** | |
326 | |
327 ;;;### (autoloads nil "bytecomp-runtime" "bytecomp/bytecomp-runtime.el" (12558 60873)) | |
328 ;;; Generated autoloads from bytecomp/bytecomp-runtime.el | |
329 | |
330 ;;;### (autoloads (batch-byte-recompile-directory batch-byte-recompile-directory-norecurse batch-byte-compile display-call-tree byte-compile-sexp byte-compile compile-defun byte-compile-file byte-recompile-file byte-recompile-directory byte-force-recompile) "bytecomp" "bytecomp/bytecomp.el" (12639 8562)) | |
331 ;;; Generated autoloads from bytecomp/bytecomp.el | |
332 | |
333 (autoload 'byte-force-recompile "bytecomp" "\ | |
334 Recompile every `.el' file in DIRECTORY that already has a `.elc' file. | |
335 Files in subdirectories of DIRECTORY are processed also." t nil) | |
336 | |
337 (autoload 'byte-recompile-directory "bytecomp" "\ | |
338 Recompile every `.el' file in DIRECTORY that needs recompilation. | |
339 This is if a `.elc' file exists but is older than the `.el' file. | |
340 Files in subdirectories of DIRECTORY are processed also unless argument | |
341 NORECURSION is non-nil. | |
342 | |
343 If the `.elc' file does not exist, normally the `.el' file is *not* compiled. | |
344 But a prefix argument (optional second arg) means ask user, | |
345 for each such `.el' file, whether to compile it. Prefix argument 0 means | |
346 don't ask and compile the file anyway. | |
347 | |
348 A nonzero prefix argument also means ask about each subdirectory. | |
349 | |
350 If the fourth argument FORCE is non-nil, | |
351 recompile every `.el' file that already has a `.elc' file." t nil) | |
352 | |
353 (autoload 'byte-recompile-file "bytecomp" "\ | |
354 Recompile a file of Lisp code named FILENAME if it needs recompilation. | |
355 This is if the `.elc' file exists but is older than the `.el' file. | |
356 | |
357 If the `.elc' file does not exist, normally the `.el' file is *not* | |
358 compiled. But a prefix argument (optional second arg) means ask user | |
359 whether to compile it. Prefix argument 0 don't ask and recompile anyway." t nil) | |
360 | |
361 (autoload 'byte-compile-file "bytecomp" "\ | |
362 Compile a file of Lisp code named FILENAME into a file of byte code. | |
363 The output file's name is made by appending `c' to the end of FILENAME. | |
364 With prefix arg (noninteractively: 2nd arg), load the file after compiling." t nil) | |
365 | |
366 (autoload 'compile-defun "bytecomp" "\ | |
367 Compile and evaluate the current top-level form. | |
368 Print the result in the minibuffer. | |
369 With argument, insert value in current buffer after the form." t nil) | |
370 | |
371 (autoload 'byte-compile "bytecomp" "\ | |
372 If FORM is a symbol, byte-compile its function definition. | |
373 If FORM is a lambda or a macro, byte-compile it as a function." nil nil) | |
374 | |
375 (autoload 'byte-compile-sexp "bytecomp" "\ | |
376 Compile and return SEXP." nil nil) | |
377 | |
378 (autoload 'display-call-tree "bytecomp" "\ | |
379 Display a call graph of a specified file. | |
380 This lists which functions have been called, what functions called | |
381 them, and what functions they call. The list includes all functions | |
382 whose definitions have been compiled in this Emacs session, as well as | |
383 all functions called by those functions. | |
384 | |
385 The call graph does not include macros, inline functions, or | |
386 primitives that the byte-code interpreter knows about directly (eq, | |
387 cons, etc.). | |
388 | |
389 The call tree also lists those functions which are not known to be called | |
390 \(that is, to which no calls have been compiled), and which cannot be | |
391 invoked interactively." t nil) | |
392 | |
393 (autoload 'batch-byte-compile "bytecomp" "\ | |
394 Run `byte-compile-file' on the files remaining on the command line. | |
395 Use this from the command line, with `-batch'; | |
396 it won't work in an interactive Emacs. | |
397 Each file is processed even if an error occurred previously. | |
398 For example, invoke \"emacs -batch -f batch-byte-compile $emacs/ ~/*.el\"" nil nil) | |
399 | |
400 (autoload 'batch-byte-recompile-directory-norecurse "bytecomp" "\ | |
401 Same as `batch-byte-recompile-directory' but without recursion." nil nil) | |
402 | |
403 (autoload 'batch-byte-recompile-directory "bytecomp" "\ | |
404 Runs `byte-recompile-directory' on the dirs remaining on the command line. | |
405 Must be used only with `-batch', and kills Emacs on completion. | |
406 For example, invoke `xemacs -batch -f batch-byte-recompile-directory .'." nil nil) | |
407 | |
408 ;;;*** | |
409 | |
410 ;;;### (autoloads (disassemble) "disass" "bytecomp/disass.el" (12376 19373)) | |
411 ;;; Generated autoloads from bytecomp/disass.el | |
412 | |
413 (autoload 'disassemble "disass" "\ | |
414 Print disassembled code for OBJECT in (optional) BUFFER. | |
415 OBJECT can be a symbol defined as a function, or a function itself | |
416 \(a lambda expression or a compiled-function object). | |
417 If OBJECT is not already compiled, we compile it, but do not | |
418 redefine OBJECT if it is a symbol." t nil) | |
419 | |
420 ;;;*** | |
421 | |
422 ;;;### (autoloads nil "appt" "calendar/appt.el" (12376 19375)) | |
423 ;;; Generated autoloads from calendar/appt.el | |
424 | |
425 ;;;*** | |
426 | |
427 ;;;### (autoloads nil "cal-french" "calendar/cal-french.el" (12376 19376)) | |
428 ;;; Generated autoloads from calendar/cal-french.el | |
429 | |
430 ;;;*** | |
431 | |
432 ;;;### (autoloads nil "cal-mayan" "calendar/cal-mayan.el" (12376 19375)) | |
433 ;;; Generated autoloads from calendar/cal-mayan.el | |
434 | |
435 ;;;### (autoloads nil "cal-x" "calendar/cal-x.el" (12376 19380)) | |
436 ;;; Generated autoloads from calendar/cal-x.el | |
437 | |
438 (defvar calendar-setup 'one-frame "\ | |
439 The frame set up of the calendar. | |
440 The choices are `one-frame' (calendar and diary together in one separate, | |
441 dediciated frame) or `two-frames' (calendar and diary in separate, dedicated | |
442 frames); with any other value the current frame is used.") | |
443 | |
444 ;;;*** | |
445 | |
446 ;;;### (autoloads nil "cal-xemacs" "calendar/cal-xemacs.el" (12558 60876)) | |
447 ;;; Generated autoloads from calendar/cal-xemacs.el | |
448 | |
449 ;;;### (autoloads nil "cal-dst" "calendar/cal-dst.el" (12376 19378)) | |
450 ;;; Generated autoloads from calendar/cal-dst.el | |
451 | |
452 (put 'calendar-daylight-savings-starts 'risky-local-variable t) | |
453 | |
454 (put 'calendar-daylight-savings-ends 'risky-local-variable t) | |
455 | |
456 ;;;*** | |
457 | |
458 ;;;### (autoloads (list-yahrzeit-dates calendar) "calendar" "calendar/calendar.el" (12478 30570)) | |
459 ;;; Generated autoloads from calendar/calendar.el | |
460 | |
461 (defvar calendar-week-start-day 0 "\ | |
462 *The day of the week on which a week in the calendar begins. | |
463 0 means Sunday (default), 1 means Monday, and so on.") | |
464 | |
465 (defvar calendar-offset 0 "\ | |
466 *The offset of the principal month from the center of the calendar window. | |
467 0 means the principal month is in the center (default), -1 means on the left, | |
468 +1 means on the right. Larger (or smaller) values push the principal month off | |
469 the screen.") | |
470 | |
471 (defvar view-diary-entries-initially nil "\ | |
472 *Non-nil means display current date's diary entries on entry. | |
473 The diary is displayed in another window when the calendar is first displayed, | |
474 if the current date is visible. The number of days of diary entries displayed | |
475 is governed by the variable `number-of-diary-entries'.") | |
476 | |
477 (defvar number-of-diary-entries 1 "\ | |
478 *Specifies how many days of diary entries are to be displayed initially. | |
479 This variable affects the diary display when the command M-x diary is used, | |
480 or if the value of the variable `view-diary-entries-initially' is t. For | |
481 example, if the default value 1 is used, then only the current day's diary | |
482 entries will be displayed. If the value 2 is used, then both the current | |
483 day's and the next day's entries will be displayed. | |
484 | |
485 The value can also be a vector such as [0 2 2 2 2 4 1]; this value | |
486 says to display no diary entries on Sunday, the display the entries | |
487 for the current date and the day after on Monday through Thursday, | |
488 display Friday through Monday's entries on Friday, and display only | |
489 Saturday's entries on Saturday. | |
490 | |
491 This variable does not affect the diary display with the `d' command | |
492 from the calendar; in that case, the prefix argument controls the | |
493 number of days of diary entries displayed.") | |
494 | |
495 (defvar mark-diary-entries-in-calendar nil "\ | |
496 *Non-nil means mark dates with diary entries, in the calendar window. | |
497 The marking symbol is specified by the variable `diary-entry-marker'.") | |
498 | |
499 (defvar view-calendar-holidays-initially nil "\ | |
500 *Non-nil means display holidays for current three month period on entry. | |
501 The holidays are displayed in another window when the calendar is first | |
502 displayed.") | |
503 | |
504 (defvar mark-holidays-in-calendar nil "\ | |
505 *Non-nil means mark dates of holidays in the calendar window. | |
506 The marking symbol is specified by the variable `calendar-holiday-marker'.") | |
507 | |
508 (defvar all-hebrew-calendar-holidays nil "\ | |
509 *If nil, show only major holidays from the Hebrew calendar. | |
510 This means only those Jewish holidays that appear on secular calendars. | |
511 | |
512 If t, show all the holidays that would appear in a complete Hebrew calendar.") | |
513 | |
514 (defvar all-christian-calendar-holidays nil "\ | |
515 *If nil, show only major holidays from the Christian calendar. | |
516 This means only those Christian holidays that appear on secular calendars. | |
517 | |
518 If t, show all the holidays that would appear in a complete Christian | |
519 calendar.") | |
520 | |
521 (defvar all-islamic-calendar-holidays nil "\ | |
522 *If nil, show only major holidays from the Islamic calendar. | |
523 This means only those Islamic holidays that appear on secular calendars. | |
524 | |
525 If t, show all the holidays that would appear in a complete Islamic | |
526 calendar.") | |
527 | |
528 (defvar calendar-load-hook nil "\ | |
529 *List of functions to be called after the calendar is first loaded. | |
530 This is the place to add key bindings to `calendar-mode-map'.") | |
531 | |
532 (defvar initial-calendar-window-hook nil "\ | |
533 *List of functions to be called when the calendar window is first opened. | |
534 The functions invoked are called after the calendar window is opened, but | |
535 once opened is never called again. Leaving the calendar with the `q' command | |
536 and reentering it will cause these functions to be called again.") | |
537 | |
538 (defvar today-visible-calendar-hook nil "\ | |
539 *List of functions called whenever the current date is visible. | |
540 This can be used, for example, to replace today's date with asterisks; a | |
541 function `calendar-star-date' is included for this purpose: | |
542 (setq today-visible-calendar-hook 'calendar-star-date) | |
543 It can also be used to mark the current date with `calendar-today-marker'; | |
544 a function is also provided for this: | |
545 (setq today-visible-calendar-hook 'calendar-mark-today) | |
546 | |
547 The corresponding variable `today-invisible-calendar-hook' is the list of | |
548 functions called when the calendar function was called when the current | |
549 date is not visible in the window. | |
550 | |
551 Other than the use of the provided functions, the changing of any | |
552 characters in the calendar buffer by the hooks may cause the failure of the | |
553 functions that move by days and weeks.") | |
554 | |
555 (defvar today-invisible-calendar-hook nil "\ | |
556 *List of functions called whenever the current date is not visible. | |
557 | |
558 The corresponding variable `today-visible-calendar-hook' is the list of | |
559 functions called when the calendar function was called when the current | |
560 date is visible in the window. | |
561 | |
562 Other than the use of the provided functions, the changing of any | |
563 characters in the calendar buffer by the hooks may cause the failure of the | |
564 functions that move by days and weeks.") | |
565 | |
566 (defvar diary-file "~/diary" "\ | |
567 *Name of the file in which one's personal diary of dates is kept. | |
568 | |
569 The file's entries are lines in any of the forms | |
570 | |
571 MONTH/DAY | |
572 MONTH/DAY/YEAR | |
573 MONTHNAME DAY | |
574 MONTHNAME DAY, YEAR | |
575 DAYNAME | |
576 | |
577 at the beginning of the line; the remainder of the line is the diary entry | |
578 string for that date. MONTH and DAY are one or two digit numbers, YEAR is | |
579 a number and may be written in full or abbreviated to the final two digits. | |
580 If the date does not contain a year, it is generic and applies to any year. | |
581 DAYNAME entries apply to any date on which is on that day of the week. | |
582 MONTHNAME and DAYNAME can be spelled in full, abbreviated to three | |
583 characters (with or without a period), capitalized or not. Any of DAY, | |
584 MONTH, or MONTHNAME, YEAR can be `*' which matches any day, month, or year, | |
585 respectively. | |
586 | |
587 The European style (in which the day precedes the month) can be used | |
588 instead, if you execute `european-calendar' when in the calendar, or set | |
589 `european-calendar-style' to t in your .emacs file. The European forms are | |
590 | |
591 DAY/MONTH | |
592 DAY/MONTH/YEAR | |
593 DAY MONTHNAME | |
594 DAY MONTHNAME YEAR | |
595 DAYNAME | |
596 | |
597 To revert to the default American style from the European style, execute | |
598 `american-calendar' in the calendar. | |
599 | |
600 A diary entry can be preceded by the character | |
601 `diary-nonmarking-symbol' (ordinarily `&') to make that entry | |
602 nonmarking--that is, it will not be marked on dates in the calendar | |
603 window but will appear in a diary window. | |
604 | |
605 Multiline diary entries are made by indenting lines after the first with | |
606 either a TAB or one or more spaces. | |
607 | |
608 Lines not in one the above formats are ignored. Here are some sample diary | |
609 entries (in the default American style): | |
610 | |
611 12/22/1988 Twentieth wedding anniversary!! | |
612 &1/1. Happy New Year! | |
613 10/22 Ruth's birthday. | |
614 21: Payday | |
615 Tuesday--weekly meeting with grad students at 10am | |
616 Supowit, Shen, Bitner, and Kapoor to attend. | |
617 1/13/89 Friday the thirteenth!! | |
618 &thu 4pm squash game with Lloyd. | |
619 mar 16 Dad's birthday | |
620 April 15, 1989 Income tax due. | |
621 &* 15 time cards due. | |
622 | |
623 If the first line of a diary entry consists only of the date or day name with | |
624 no trailing blanks or punctuation, then that line is not displayed in the | |
625 diary window; only the continuation lines is shown. For example, the | |
626 single diary entry | |
627 | |
628 02/11/1989 | |
629 Bill Blattner visits Princeton today | |
630 2pm Cognitive Studies Committee meeting | |
631 2:30-5:30 Lizzie at Lawrenceville for `Group Initiative' | |
632 4:00pm Jamie Tappenden | |
633 7:30pm Dinner at George and Ed's for Alan Ryan | |
634 7:30-10:00pm dance at Stewart Country Day School | |
635 | |
636 will appear in the diary window without the date line at the beginning. This | |
637 facility allows the diary window to look neater, but can cause confusion if | |
638 used with more than one day's entries displayed. | |
639 | |
640 Diary entries can be based on Lisp sexps. For example, the diary entry | |
641 | |
642 %%(diary-block 11 1 1990 11 10 1990) Vacation | |
643 | |
644 causes the diary entry \"Vacation\" to appear from November 1 through November | |
645 10, 1990. Other functions available are `diary-float', `diary-anniversary', | |
646 `diary-cyclic', `diary-day-of-year', `diary-iso-date', `diary-french-date', | |
647 `diary-hebrew-date', `diary-islamic-date', `diary-mayan-date', | |
648 `diary-yahrzeit', `diary-sunrise-sunset', `diary-phases-of-moon', | |
649 `diary-parasha', `diary-omer', `diary-rosh-hodesh', and | |
650 `diary-sabbath-candles'. See the documentation for the function | |
651 `list-sexp-diary-entries' for more details. | |
652 | |
653 Diary entries based on the Hebrew and/or the Islamic calendar are also | |
654 possible, but because these are somewhat slow, they are ignored | |
655 unless you set the `nongregorian-diary-listing-hook' and the | |
656 `nongregorian-diary-marking-hook' appropriately. See the documentation | |
657 for these functions for details. | |
658 | |
659 Diary files can contain directives to include the contents of other files; for | |
660 details, see the documentation for the variable `list-diary-entries-hook'.") | |
661 | |
662 (defvar diary-nonmarking-symbol "&" "\ | |
663 *Symbol indicating that a diary entry is not to be marked in the calendar.") | |
664 | |
665 (defvar hebrew-diary-entry-symbol "H" "\ | |
666 *Symbol indicating a diary entry according to the Hebrew calendar.") | |
667 | |
668 (defvar islamic-diary-entry-symbol "I" "\ | |
669 *Symbol indicating a diary entry according to the Islamic calendar.") | |
670 | |
671 (defvar diary-include-string "#include" "\ | |
672 *The string indicating inclusion of another file of diary entries. | |
673 See the documentation for the function `include-other-diary-files'.") | |
674 | |
675 (defvar sexp-diary-entry-symbol "%%" "\ | |
676 *The string used to indicate a sexp diary entry in diary-file. | |
677 See the documentation for the function `list-sexp-diary-entries'.") | |
678 | |
679 (defvar abbreviated-calendar-year t "\ | |
680 *Interpret a two-digit year DD in a diary entry as either 19DD or 20DD. | |
681 For the Gregorian calendar; similarly for the Hebrew and Islamic calendars. | |
682 If this variable is nil, years must be written in full.") | |
683 | |
684 (defvar european-calendar-style nil "\ | |
685 *Use the European style of dates in the diary and in any displays. | |
686 If this variable is t, a date 1/2/1990 would be interpreted as February 1, | |
687 1990. The accepted European date styles are | |
688 | |
689 DAY/MONTH | |
690 DAY/MONTH/YEAR | |
691 DAY MONTHNAME | |
692 DAY MONTHNAME YEAR | |
693 DAYNAME | |
694 | |
695 Names can be capitalized or not, written in full, or abbreviated to three | |
696 characters with or without a period.") | |
697 | |
698 (defvar american-date-diary-pattern '((month "/" day "[^/0-9]") (month "/" day "/" year "[^0-9]") (monthname " *" day "[^,0-9]") (monthname " *" day ", *" year "[^0-9]") (dayname "\\W")) "\ | |
699 *List of pseudo-patterns describing the American patterns of date used. | |
700 See the documentation of `diary-date-forms' for an explanation.") | |
701 | |
702 (defvar european-date-diary-pattern '((day "/" month "[^/0-9]") (day "/" month "/" year "[^0-9]") (backup day " *" monthname "\\W+\\<[^*0-9]") (day " *" monthname " *" year "[^0-9]") (dayname "\\W")) "\ | |
703 *List of pseudo-patterns describing the European patterns of date used. | |
704 See the documentation of `diary-date-forms' for an explanation.") | |
705 | |
706 (defvar european-calendar-display-form '((if dayname (concat dayname ", ")) day " " monthname " " year) "\ | |
707 *Pseudo-pattern governing the way a date appears in the European style. | |
708 See the documentation of calendar-date-display-form for an explanation.") | |
709 | |
710 (defvar american-calendar-display-form '((if dayname (concat dayname ", ")) monthname " " day ", " year) "\ | |
711 *Pseudo-pattern governing the way a date appears in the American style. | |
712 See the documentation of `calendar-date-display-form' for an explanation.") | |
713 | |
714 (defvar print-diary-entries-hook 'lpr-buffer "\ | |
715 *List of functions called after a temporary diary buffer is prepared. | |
716 The buffer shows only the diary entries currently visible in the diary | |
717 buffer. The default just does the printing. Other uses might include, for | |
718 example, rearranging the lines into order by day and time, saving the buffer | |
719 instead of deleting it, or changing the function used to do the printing.") | |
720 | |
721 (defvar list-diary-entries-hook nil "\ | |
722 *List of functions called after diary file is culled for relevant entries. | |
723 It is to be used for diary entries that are not found in the diary file. | |
724 | |
725 A function `include-other-diary-files' is provided for use as the value of | |
726 this hook. This function enables you to use shared diary files together | |
727 with your own. The files included are specified in the diary file by lines | |
728 of the form | |
729 | |
730 #include \"filename\" | |
731 | |
732 This is recursive; that is, #include directives in files thus included are | |
733 obeyed. You can change the \"#include\" to some other string by changing | |
734 the variable `diary-include-string'. When you use `include-other-diary-files' | |
735 as part of the list-diary-entries-hook, you will probably also want to use the | |
736 function `mark-included-diary-files' as part of `mark-diary-entries-hook'. | |
737 | |
738 For example, you could use | |
739 | |
740 (setq list-diary-entries-hook | |
741 '(include-other-diary-files sort-diary-entries)) | |
742 (setq diary-display-hook 'fancy-diary-display) | |
743 | |
744 in your `.emacs' file to cause the fancy diary buffer to be displayed with | |
745 diary entries from various included files, each day's entries sorted into | |
746 lexicographic order.") | |
747 | |
748 (defvar diary-hook nil "\ | |
749 *List of functions called after the display of the diary. | |
750 Can be used for appointment notification.") | |
751 | |
752 (defvar diary-display-hook nil "\ | |
753 *List of functions that handle the display of the diary. | |
754 If nil (the default), `simple-diary-display' is used. Use `ignore' for no | |
755 diary display. | |
756 | |
757 Ordinarily, this just displays the diary buffer (with holidays indicated in | |
758 the mode line), if there are any relevant entries. At the time these | |
759 functions are called, the variable `diary-entries-list' is a list, in order | |
760 by date, of all relevant diary entries in the form of ((MONTH DAY YEAR) | |
761 STRING), where string is the diary entry for the given date. This can be | |
762 used, for example, a different buffer for display (perhaps combined with | |
763 holidays), or produce hard copy output. | |
764 | |
765 A function `fancy-diary-display' is provided as an alternative | |
766 choice for this hook; this function prepares a special noneditable diary | |
767 buffer with the relevant diary entries that has neat day-by-day arrangement | |
768 with headings. The fancy diary buffer will show the holidays unless the | |
769 variable `holidays-in-diary-buffer' is set to nil. Ordinarily, the fancy | |
770 diary buffer will not show days for which there are no diary entries, even | |
771 if that day is a holiday; if you want such days to be shown in the fancy | |
772 diary buffer, set the variable `diary-list-include-blanks' to t.") | |
773 | |
774 (defvar nongregorian-diary-listing-hook nil "\ | |
775 *List of functions called for listing diary file and included files. | |
776 As the files are processed for diary entries, these functions are used to cull | |
777 relevant entries. You can use either or both of `list-hebrew-diary-entries' | |
778 and `list-islamic-diary-entries'. The documentation for these functions | |
779 describes the style of such diary entries.") | |
780 | |
781 (defvar mark-diary-entries-hook nil "\ | |
782 *List of functions called after marking diary entries in the calendar. | |
783 | |
784 A function `mark-included-diary-files' is also provided for use as the | |
785 mark-diary-entries-hook; it enables you to use shared diary files together | |
786 with your own. The files included are specified in the diary file by lines | |
787 of the form | |
788 #include \"filename\" | |
789 This is recursive; that is, #include directives in files thus included are | |
790 obeyed. You can change the \"#include\" to some other string by changing the | |
791 variable `diary-include-string'. When you use `mark-included-diary-files' as | |
792 part of the mark-diary-entries-hook, you will probably also want to use the | |
793 function `include-other-diary-files' as part of `list-diary-entries-hook'.") | |
794 | |
795 (defvar nongregorian-diary-marking-hook nil "\ | |
796 *List of functions called for marking diary file and included files. | |
797 As the files are processed for diary entries, these functions are used to cull | |
798 relevant entries. You can use either or both of `mark-hebrew-diary-entries' | |
799 and `mark-islamic-diary-entries'. The documentation for these functions | |
800 describes the style of such diary entries.") | |
801 | |
802 (defvar diary-list-include-blanks nil "\ | |
803 *If nil, do not include days with no diary entry in the list of diary entries. | |
804 Such days will then not be shown in the the fancy diary buffer, even if they | |
805 are holidays.") | |
806 | |
807 (defvar holidays-in-diary-buffer t "\ | |
808 *Non-nil means include holidays in the diary display. | |
809 The holidays appear in the mode line of the diary buffer, or in the | |
810 fancy diary buffer next to the date. This slows down the diary functions | |
811 somewhat; setting it to nil makes the diary display faster.") | |
812 | |
813 (put 'general-holidays 'risky-local-variable t) | |
814 | |
815 (defvar general-holidays '((holiday-fixed 1 1 "New Year's Day") (holiday-float 1 1 3 "Martin Luther King Day") (holiday-fixed 2 2 "Ground Hog 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 Fool's 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")) "\ | |
816 *General holidays. Default value is for the United States. | |
817 See the documentation for `calendar-holidays' for details.") | |
818 | |
819 (put 'local-holidays 'risky-local-variable t) | |
820 | |
821 (defvar local-holidays nil "\ | |
822 *Local holidays. | |
823 See the documentation for `calendar-holidays' for details.") | |
824 | |
825 (put 'other-holidays 'risky-local-variable t) | |
826 | |
827 (defvar other-holidays nil "\ | |
828 *User defined holidays. | |
829 See the documentation for `calendar-holidays' for details.") | |
830 | |
831 (put 'hebrew-holidays-1 'risky-local-variable t) | |
832 | |
833 (defvar hebrew-holidays-1 '((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)")))) | |
834 | |
835 (put 'hebrew-holidays-2 'risky-local-variable t) | |
836 | |
837 (defvar hebrew-holidays-2 '((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")))) | |
838 | |
839 (put 'hebrew-holidays-3 'risky-local-variable t) | |
840 | |
841 (defvar hebrew-holidays-3 '((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")))) | |
842 | |
843 (put 'hebrew-holidays-4 'risky-local-variable t) | |
844 | |
845 (defvar hebrew-holidays-4 '((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)))) | |
846 | |
847 (put 'hebrew-holidays 'risky-local-variable t) | |
848 | |
849 (defvar hebrew-holidays (append hebrew-holidays-1 hebrew-holidays-2 hebrew-holidays-3 hebrew-holidays-4) "\ | |
850 *Jewish holidays. | |
851 See the documentation for `calendar-holidays' for details.") | |
852 | |
853 (put 'christian-holidays 'risky-local-variable t) | |
854 | |
855 (defvar christian-holidays '((if all-christian-calendar-holidays (holiday-fixed 1 6 "Epiphany")) (holiday-easter-etc) (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)) (holiday-fixed 12 25 "Christmas") (if all-christian-calendar-holidays (holiday-julian 12 25 "Eastern Orthodox Christmas"))) "\ | |
856 *Christian holidays. | |
857 See the documentation for `calendar-holidays' for details.") | |
858 | |
859 (put 'islamic-holidays 'risky-local-variable t) | |
860 | |
861 (defvar islamic-holidays '((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"))) "\ | |
862 *Islamic holidays. | |
863 See the documentation for `calendar-holidays' for details.") | |
864 | |
865 (put 'solar-holidays 'risky-local-variable t) | |
866 | |
867 (defvar solar-holidays '((if (fboundp 'atan) (solar-equinoxes-solstices)) (if (progn (require 'cal-dst) t) (funcall 'holiday-sexp calendar-daylight-savings-starts '(format "Daylight Savings Time Begins %s" (if (fboundp 'atan) (solar-time-string (/ calendar-daylight-savings-starts-time (float 60)) calendar-standard-time-zone-name) "")))) (funcall 'holiday-sexp calendar-daylight-savings-ends '(format "Daylight Savings Time Ends %s" (if (fboundp 'atan) (solar-time-string (/ calendar-daylight-savings-ends-time (float 60)) calendar-daylight-time-zone-name) "")))) "\ | |
868 *Sun-related holidays. | |
869 See the documentation for `calendar-holidays' for details.") | |
870 | |
871 (put 'calendar-holidays 'risky-local-variable t) | |
872 | |
873 (autoload 'calendar "calendar" "\ | |
874 Display a three-month calendar in another window. | |
875 The three months appear side by side, with the current month in the middle | |
876 surrounded by the previous and next months. The cursor is put on today's date. | |
877 | |
878 If called with an optional prefix argument, prompts for month and year. | |
879 | |
880 This function is suitable for execution in a .emacs file; appropriate setting | |
881 of the variable `view-diary-entries-initially' will cause the diary entries for | |
882 the current date to be displayed in another window. The value of the variable | |
883 `number-of-diary-entries' controls the number of days of diary entries | |
884 displayed upon initial display of the calendar. | |
885 | |
886 An optional prefix argument ARG causes the calendar displayed to be ARG | |
887 months in the future if ARG is positive or in the past if ARG is negative; | |
888 in this case the cursor goes on the first day of the month. | |
889 | |
890 Once in the calendar window, future or past months can be moved into view. | |
891 Arbitrary months can be displayed, or the calendar can be scrolled forward | |
892 or backward. | |
893 | |
894 The cursor can be moved forward or backward by one day, one week, one month, | |
895 or one year. All of these commands take prefix arguments which, when negative, | |
896 cause movement in the opposite direction. For convenience, the digit keys | |
897 and the minus sign are automatically prefixes. The window is replotted as | |
898 necessary to display the desired date. | |
899 | |
900 Diary entries can be marked on the calendar or displayed in another window. | |
901 | |
902 Use M-x describe-mode for details of the key bindings in the calendar window. | |
903 | |
904 The Gregorian calendar is assumed. | |
905 | |
906 After loading the calendar, the hooks given by the variable | |
907 `calendar-load-hook' are run. This is the place to add key bindings to the | |
908 calendar-mode-map. | |
909 | |
910 After preparing the calendar window initially, the hooks given by the variable | |
911 `initial-calendar-window-hook' are run. | |
912 | |
913 The hooks given by the variable `today-visible-calendar-hook' are run | |
914 everytime the calendar window gets scrolled, if the current date is visible | |
915 in the window. If it is not visible, the hooks given by the variable | |
916 `today-invisible-calendar-hook' are run. Thus, for example, setting | |
917 `today-visible-calendar-hook' to 'calendar-star-date will cause today's date | |
918 to be replaced by asterisks to highlight it whenever it is in the window." t nil) | |
919 | |
920 (autoload 'list-yahrzeit-dates "calendar" "\ | |
921 List Yahrzeit dates for *Gregorian* DEATH-DATE from START-YEAR to END-YEAR. | |
922 When called interactively from the calendar window, the date of death is taken | |
923 from the cursor position." t nil) | |
924 | |
925 ;;;*** | |
926 | |
927 ;;;### (autoloads nil "diary-ins" "calendar/diary-ins.el" (12376 19379)) | |
928 ;;; Generated autoloads from calendar/diary-ins.el | |
929 | |
930 ;;;### (autoloads (diary) "diary-lib" "calendar/diary-lib.el" (12376 19380)) | |
931 ;;; Generated autoloads from calendar/diary-lib.el | |
932 | |
933 (autoload 'diary "diary-lib" "\ | |
934 Generate the diary window for ARG days starting with the current date. | |
935 If no argument is provided, the number of days of diary entries is governed | |
936 by the variable `number-of-diary-entries'. This function is suitable for | |
937 execution in a `.emacs' file." t nil) | |
938 | |
939 ;;;*** | |
940 | |
941 ;;;### (autoloads (holidays) "holidays" "calendar/holidays.el" (12376 19378)) | |
942 ;;; Generated autoloads from calendar/holidays.el | |
943 | |
944 (autoload 'holidays "holidays" "\ | |
945 Display the holidays for last month, this month, and next month. | |
946 If called with an optional prefix argument, prompts for month and year. | |
947 | |
948 This function is suitable for execution in a .emacs file." t nil) | |
949 | |
950 ;;;*** | |
951 | |
952 ;;;### (autoloads (phases-of-moon) "lunar" "calendar/lunar.el" (12376 19377)) | |
953 ;;; Generated autoloads from calendar/lunar.el | |
954 | |
955 (autoload 'phases-of-moon "lunar" "\ | |
956 Display the quarters of the moon for last month, this month, and next month. | |
957 If called with an optional prefix argument, prompts for month and year. | |
958 | |
959 This function is suitable for execution in a .emacs file." t nil) | |
960 | |
961 ;;;*** | |
962 | |
963 ;;;### (autoloads (solar-equinoxes-solstices sunrise-sunset) "solar" "calendar/solar.el" (12376 19379)) | |
964 ;;; Generated autoloads from calendar/solar.el | |
965 | |
966 (defvar calendar-time-display-form '(12-hours ":" minutes am-pm (if time-zone " (") time-zone (if time-zone ")")) "\ | |
967 *The pseudo-pattern that governs the way a time of day is formatted. | |
968 | |
969 A pseudo-pattern is a list of expressions that can involve the keywords | |
970 `12-hours', `24-hours', and `minutes', all numbers in string form, | |
971 and `am-pm' and `time-zone', both alphabetic strings. | |
972 | |
973 For example, the form | |
974 | |
975 '(24-hours \":\" minutes | |
976 (if time-zone \" (\") time-zone (if time-zone \")\")) | |
977 | |
978 would give military-style times like `21:07 (UTC)'.") | |
979 | |
980 (defvar calendar-latitude nil "\ | |
981 *Latitude of `calendar-location-name' in degrees. | |
982 | |
983 The value can be either a decimal fraction (one place of accuracy is | |
984 sufficient), + north, - south, such as 40.7 for New York City, or the value | |
985 can be a vector [degrees minutes north/south] such as [40 50 north] for New | |
986 York City. | |
987 | |
988 This variable should be set in site-local.el.") | |
989 | |
990 (defvar calendar-longitude nil "\ | |
991 *Longitude of `calendar-location-name' in degrees. | |
992 | |
993 The value can be either a decimal fraction (one place of accuracy is | |
994 sufficient), + east, - west, such as -73.9 for New York City, or the value | |
995 can be a vector [degrees minutes east/west] such as [73 55 west] for New | |
996 York City. | |
997 | |
998 This variable should be set in site-local.el.") | |
999 | |
1000 (defvar calendar-location-name '(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) '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-latitude 2) 'east) "E" "W")))) "\ | |
1001 *Expression evaluating to name of `calendar-longitude', calendar-latitude'. | |
1002 For example, \"New York City\". Default value is just the latitude, longitude | |
1003 pair. | |
1004 | |
1005 This variable should be set in site-local.el.") | |
1006 | |
1007 (autoload 'sunrise-sunset "solar" "\ | |
1008 Local time of sunrise and sunset for today. Accurate to +/- 2 minutes. | |
1009 If called with an optional prefix argument, prompt for date. | |
1010 | |
1011 If called with an optional double prefix argument, prompt for longitude, | |
1012 latitude, time zone, and date, and always use standard time. | |
1013 | |
1014 This function is suitable for execution in a .emacs file." t nil) | |
1015 | |
1016 (autoload 'solar-equinoxes-solstices "solar" "\ | |
1017 Date and time of equinoxes and solstices, if visible in the calendar window. | |
1018 Requires floating point." nil nil) | |
1019 | |
1020 ;;;*** | |
1021 | |
1022 ;;;### (autoloads nil "cl-autoload" "cl/cl-autoload.el" (12639 8884)) | |
1023 ;;; Generated autoloads from cl/cl-autoload.el | |
1024 | |
1025 ;;;*** | |
1026 | |
1027 ;;;### (autoloads nil "cl-compat" "cl/cl-compat.el" (12559 34923)) | |
1028 ;;; Generated autoloads from cl/cl-compat.el | |
1029 | |
1030 ;;;*** | |
1031 | |
1032 ;;;### (autoloads nil "cl-defs" "cl/cl-defs.el" (12639 8885)) | |
1033 ;;; Generated autoloads from cl/cl-defs.el | |
1034 | |
1035 ;;;*** | |
1036 | |
1037 ;;;### (autoloads nil "cl-extra" "cl/cl-extra.el" (12648 18630)) | |
1038 ;;; Generated autoloads from cl/cl-extra.el | |
1039 | |
1040 ;;;*** | |
1041 | |
1042 ;;;### (autoloads nil "cl-macs" "cl/cl-macs.el" (12639 56810)) | |
1043 ;;; Generated autoloads from cl/cl-macs.el | |
1044 | |
1045 ;;;*** | |
1046 | |
1047 ;;;### (autoloads nil "cl-seq" "cl/cl-seq.el" (12639 8882)) | |
1048 ;;; Generated autoloads from cl/cl-seq.el | |
1049 | |
1050 ;;;*** | |
1051 | |
1052 ;;;### (autoloads nil "cl" "cl/cl.el" (12639 8883)) | |
1053 ;;; Generated autoloads from cl/cl.el | |
1054 | |
1055 ;;;*** | |
1056 | |
1057 ;;;### (autoloads nil "background" "comint/background.el" (12675 57061)) | |
1058 ;;; Generated autoloads from comint/background.el | |
1059 | |
1060 ;;;### (autoloads nil "dbx" "comint/dbx.el" (12376 19381)) | |
1061 ;;; Generated autoloads from comint/dbx.el | |
1062 | |
1063 ;;;### (autoloads (gdb) "gdb" "comint/gdb.el" (12727 30092)) | |
1064 ;;; Generated autoloads from comint/gdb.el | |
1065 | |
1066 (defvar gdb-command-name "gdb" "\ | |
1067 Pathname for executing gdb.") | |
1068 | |
1069 (autoload 'gdb "gdb" "\ | |
1070 Run gdb on program FILE in buffer *gdb-FILE*. | |
1071 The directory containing FILE becomes the initial working directory | |
1072 and source-file directory for GDB. If you wish to change this, use | |
1073 the GDB commands `cd DIR' and `directory'." t nil) | |
1074 | |
1075 ;;;*** | |
1076 | |
1077 ;;;### (autoloads (gdbsrc) "gdbsrc" "comint/gdbsrc.el" (12743 11566)) | |
1078 ;;; Generated autoloads from comint/gdbsrc.el | |
1079 | |
1080 (autoload 'gdbsrc "gdbsrc" "\ | |
1081 Activates a gdb session with gdbsrc-mode turned on. A numeric prefix | |
1082 argument can be used to specify a running process to attach, and a non-numeric | |
1083 prefix argument will cause you to be prompted for a core file to debug." t nil) | |
1084 | |
1085 ;;;*** | |
1086 | |
1087 ;;;### (autoloads (perldb xdb dbx sdb) "gud" "comint/gud.el" (12376 19387)) | |
1088 ;;; Generated autoloads from comint/gud.el | |
1089 | |
1090 (autoload 'sdb "gud" "\ | |
1091 Run sdb on program FILE in buffer *gud-FILE*. | |
1092 The directory containing FILE becomes the initial working directory | |
1093 and source-file directory for your debugger." t nil) | |
1094 | |
1095 (autoload 'dbx "gud" "\ | |
1096 Run dbx on program FILE in buffer *gud-FILE*. | |
1097 The directory containing FILE becomes the initial working directory | |
1098 and source-file directory for your debugger." t nil) | |
1099 | |
1100 (autoload 'xdb "gud" "\ | |
1101 Run xdb on program FILE in buffer *gud-FILE*. | |
1102 The directory containing FILE becomes the initial working directory | |
1103 and source-file directory for your debugger. | |
1104 | |
1105 You can set the variable 'gud-xdb-directories' to a list of program source | |
1106 directories if your program contains sources from more than one directory." t nil) | |
1107 | |
1108 (autoload 'perldb "gud" "\ | |
1109 Run perldb on program FILE in buffer *gud-FILE*. | |
1110 The directory containing FILE becomes the initial working directory | |
1111 and source-file directory for your debugger." t nil) | |
1112 | |
1113 ;;;*** | |
1114 | |
1115 ;;;### (autoloads nil "history" "comint/history.el" (12376 19384)) | |
1116 ;;; Generated autoloads from comint/history.el | |
1117 | |
1118 ;;;### (autoloads nil "inf-lisp" "comint/inf-lisp.el" (12546 50428)) | |
1119 ;;; Generated autoloads from comint/inf-lisp.el | |
1120 | |
1121 (add-hook 'same-window-buffer-names "*inferior-lisp*") | |
1122 | |
1123 ;;;*** | |
1124 | |
1125 ;;;### (autoloads nil "kermit" "comint/kermit.el" (12546 50426)) | |
1126 ;;; Generated autoloads from comint/kermit.el | |
1127 | |
1128 ;;;### (autoloads (rlogin) "rlogin" "comint/rlogin.el" (12282 38441)) | |
1129 ;;; Generated autoloads from comint/rlogin.el | |
1130 | |
1131 (add-hook 'same-window-regexps "^\\*rlogin-.*\\*\\(\\|<[0-9]+>\\)") | |
1132 | |
1133 (autoload 'rlogin "rlogin" "\ | |
1134 Open a network login connection to HOST via the `rlogin' program. | |
1135 Input is sent line-at-a-time to the remote connection. | |
1136 | |
1137 Communication with the remote host is recorded in a buffer `*rlogin-HOST*' | |
1138 \(or `*rlogin-USER@HOST*' if the remote username differs). | |
1139 If a prefix argument is given and the buffer `*rlogin-HOST*' already exists, | |
1140 a new buffer with a different connection will be made. | |
1141 | |
1142 When called from a program, if the optional second argument is a string or | |
1143 buffer, it names the buffer to use. | |
1144 | |
1145 The variable `rlogin-program' contains the name of the actual program to | |
1146 run. It can be a relative or absolute path. | |
1147 | |
1148 The variable `rlogin-explicit-args' is a list of arguments to give to | |
1149 the rlogin when starting. They are added after any arguments given in | |
1150 INPUT-ARGS. | |
1151 | |
1152 If the default value of `rlogin-directory-tracking-mode' is t, then the | |
1153 default directory in that buffer is set to a remote (FTP) file name to | |
1154 access your home directory on the remote machine. Occasionally this causes | |
1155 an error, if you cannot access the home directory on that machine. This | |
1156 error is harmless as long as you don't try to use that default directory. | |
1157 | |
1158 If `rlogin-directory-tracking-mode' is neither t nor nil, then the default | |
1159 directory is initially set up to your (local) home directory. | |
1160 This is useful if the remote machine and your local machine | |
1161 share the same files via NFS. This is the default. | |
1162 | |
1163 If you wish to change directory tracking styles during a session, use the | |
1164 function `rlogin-directory-tracking-mode' rather than simply setting the | |
1165 variable." t nil) | |
1166 | |
1167 ;;;*** | |
1168 | |
1169 ;;;### (autoloads (shell) "shell" "comint/shell.el" (12558 60879)) | |
1170 ;;; Generated autoloads from comint/shell.el | |
1171 | |
1172 (defvar shell-prompt-pattern (purecopy "^[^#$%>\n]*[#$%>] *") "\ | |
1173 Regexp to match prompts in the inferior shell. | |
1174 Defaults to \"^[^#$%>\\n]*[#$%>] *\", which works pretty well. | |
1175 This variable is used to initialise `comint-prompt-regexp' in the | |
1176 shell buffer. | |
1177 | |
1178 The pattern should probably not match more than one line. If it does, | |
1179 shell-mode may become confused trying to distinguish prompt from input | |
1180 on lines which don't start with a prompt. | |
1181 | |
1182 This is a fine thing to set in your `.emacs' file.") | |
1183 | |
1184 (autoload 'shell "shell" "\ | |
1185 Run an inferior shell, with I/O through buffer *shell*. | |
1186 If buffer exists but shell process is not running, make new shell. | |
1187 If buffer exists and shell process is running, | |
1188 just switch to buffer `*shell*'. | |
1189 Program used comes from variable `explicit-shell-file-name', | |
1190 or (if that is nil) from the ESHELL environment variable, | |
1191 or else from SHELL if there is no ESHELL. | |
1192 If a file `~/.emacs_SHELLNAME' exists, it is given as initial input | |
1193 (Note that this may lose due to a timing error if the shell | |
1194 discards input when it starts up.) | |
1195 The buffer is put in Shell mode, giving commands for sending input | |
1196 and controlling the subjobs of the shell. See `shell-mode'. | |
1197 See also the variable `shell-prompt-pattern'. | |
1198 | |
1199 The shell file name (sans directories) is used to make a symbol name | |
1200 such as `explicit-csh-args'. If that symbol is a variable, | |
1201 its value is used as a list of arguments when invoking the shell. | |
1202 Otherwise, one argument `-i' is passed to the shell. | |
1203 | |
1204 \(Type \\[describe-mode] in the shell buffer for a list of commands.)" t nil) | |
1205 | |
1206 (add-hook 'same-window-buffer-names "*shell*") | |
1207 | |
1208 ;;;*** | |
1209 | |
1210 ;;;### (autoloads (rsh telnet) "telnet" "comint/telnet.el" (12546 50428)) | |
1211 ;;; Generated autoloads from comint/telnet.el | |
1212 | |
1213 (add-hook 'same-window-regexps "\\*telnet-.*\\*\\(\\|<[0-9]+>\\)") | |
1214 | |
1215 (autoload 'telnet "telnet" "\ | |
1216 Open a network login connection to host named HOST (a string). | |
1217 With a prefix argument, prompts for the port name or number as well. | |
1218 Communication with HOST is recorded in a buffer `*HOST-telnet*'. | |
1219 Normally input is edited in Emacs and sent a line at a time. | |
1220 See also `\\[rsh]'." t nil) | |
1221 | |
1222 (add-hook 'same-window-regexps "\\*rsh-[^-]*\\*\\(\\|<[0-9]*>\\)") | |
1223 | |
1224 (autoload 'rsh "telnet" "\ | |
1225 Open a network login connection to host named HOST (a string). | |
1226 Communication with HOST is recorded in a buffer `*rsh-HOST*'. | |
1227 Normally input is edited in Emacs and sent a line at a time. | |
1228 See also `\\[telnet]'." t nil) | |
1229 | |
1230 ;;;*** | |
1231 | |
1232 ;;;### (autoloads (ange-ftp-hook-function) "ange-ftp" "dired/ange-ftp.el" (12639 8565)) | |
1233 ;;; Generated autoloads from dired/ange-ftp.el | |
1234 | |
1235 (defvar ange-ftp-path-format '("^/\\(\\([^@/:]*\\)@\\)?\\([^@/:]*\\):\\(.*\\)" 3 2 4) "\ | |
1236 *Format of a fully expanded remote pathname. This is a cons | |
1237 \(REGEXP . (HOST USER PATH)), where REGEXP is a regular expression matching | |
1238 the full remote pathname, and HOST, USER, and PATH are the numbers of | |
1239 parenthesized expressions in REGEXP for the components (in that order).") | |
1240 | |
1241 (autoload 'ange-ftp-hook-function "ange-ftp" nil nil nil) | |
1242 | |
1243 (or (assoc (car ange-ftp-path-format) file-name-handler-alist) (setq file-name-handler-alist (cons (cons (car ange-ftp-path-format) 'ange-ftp-hook-function) file-name-handler-alist))) | |
1244 | |
1245 ;;;*** | |
1246 | |
1247 ;;;### (autoloads nil "dired-cd" "dired/dired-cd.el" (12376 19387)) | |
1248 ;;; Generated autoloads from dired/dired-cd.el | |
1249 | |
1250 ;;;*** | |
1251 | |
1252 ;;;### (autoloads nil "dired-chmod" "dired/dired-chmod.el" (12376 19393)) | |
1253 ;;; Generated autoloads from dired/dired-chmod.el | |
1254 | |
1255 ;;;*** | |
1256 | |
1257 ;;;### (autoloads nil "dired-guess" "dired/dired-guess.el" (12376 19389)) | |
1258 ;;; Generated autoloads from dired/dired-guess.el | |
1259 | |
1260 ;;;*** | |
1261 | |
1262 ;;;### (autoloads nil "dired-link" "dired/dired-link.el" (12376 19387)) | |
1263 ;;; Generated autoloads from dired/dired-link.el | |
1264 | |
1265 ;;;*** | |
1266 | |
1267 ;;;### (autoloads nil "dired-lisp" "dired/dired-lisp.el" (12376 19389)) | |
1268 ;;; Generated autoloads from dired/dired-lisp.el | |
1269 | |
1270 ;;;*** | |
1271 | |
1272 ;;;### (autoloads nil "dired-nstd" "dired/dired-nstd.el" (12376 19389)) | |
1273 ;;; Generated autoloads from dired/dired-nstd.el | |
1274 | |
1275 ;;;*** | |
1276 | |
1277 ;;;### (autoloads nil "dired-trns" "dired/dired-trns.el" (12376 19390)) | |
1278 ;;; Generated autoloads from dired/dired-trns.el | |
1279 | |
1280 ;;;*** | |
1281 | |
1282 ;;;### (autoloads nil "dired-vms" "dired/dired-vms.el" (12376 19391)) | |
1283 ;;; Generated autoloads from dired/dired-vms.el | |
1284 | |
1285 ;;;*** | |
1286 | |
1287 ;;;### (autoloads nil "dired-xemacs-highlight" "dired/dired-xemacs-highlight.el" (12745 48553)) | |
1288 ;;; Generated autoloads from dired/dired-xemacs-highlight.el | |
1289 | |
1290 ;;;### (autoloads (dired-cwd-make-magic) "dired-cwd" "dired/dired-cwd.el" (12376 19388)) | |
1291 ;;; Generated autoloads from dired/dired-cwd.el | |
1292 | |
1293 (autoload 'dired-cwd-make-magic "dired-cwd" "\ | |
1294 Modify COMMAND so that it's working directory is the current dired directory. | |
1295 This works by binding `default-directory' to `(default-directory)'s value. | |
1296 See also function `default-directory'." t nil) | |
1297 | |
1298 ;;;*** | |
1299 | |
1300 ;;;### (autoloads (dired-do-rename-list dired-do-rename-numeric) "dired-num" "dired/dired-num.el" (12376 19390)) | |
1301 ;;; Generated autoloads from dired/dired-num.el | |
1302 | |
1303 (autoload 'dired-do-rename-numeric "dired-num" "\ | |
1304 Rename all marked (or next ARG) files using numbers. | |
1305 You are prompted for a format string, e.g \"part_%d_of_8\", and a starting | |
1306 number, e.g. 1. If there are 8 marked files, this example will rename them to | |
1307 | |
1308 part_1_of_8 | |
1309 part_2_of_8 | |
1310 ... | |
1311 part_8_of_8" t nil) | |
1312 | |
1313 (autoload 'dired-do-rename-list "dired-num" "\ | |
1314 Rename all marked (or next ARG) files using elements from LIST. | |
1315 You are prompted for a format string, e.g \"x_%s\", and the list, | |
1316 e.g. '(foo bar zod). This example will rename the marked files to | |
1317 | |
1318 x_foo | |
1319 x_bar | |
1320 x_zod | |
1321 | |
1322 It is an error if LIST has not as many elements as there are files." t nil) | |
1323 | |
1324 ;;;*** | |
1325 | |
1326 ;;;### (autoloads (dired-rcs-mark-rcs-files dired-rcs-mark-rcs-locked-files) "dired-rcs" "dired/dired-rcs.el" (12376 19395)) | |
1327 ;;; Generated autoloads from dired/dired-rcs.el | |
1328 | |
1329 (autoload 'dired-rcs-mark-rcs-locked-files "dired-rcs" "\ | |
1330 Mark all files that are under RCS control and RCS-locked. | |
1331 With prefix argument, unflag all those files. | |
1332 Mentions RCS files for which a working file was not found in this buffer. | |
1333 Type \\[dired-why] to see them again." t nil) | |
1334 | |
1335 (autoload 'dired-rcs-mark-rcs-files "dired-rcs" "\ | |
1336 Mark all files that are under RCS control. | |
1337 With prefix argument, unflag all those files. | |
1338 Mentions RCS files for which a working file was not found in this buffer. | |
1339 Type \\[dired-why] to see them again." t nil) | |
1340 | |
1341 ;;;*** | |
1342 | |
1343 ;;;### (autoloads (dired-extra-startup) "dired-x" "dired/dired-x.el" (12376 19392)) | |
1344 ;;; Generated autoloads from dired/dired-x.el | |
1345 | |
1346 (autoload 'dired-extra-startup "dired-x" "\ | |
1347 Automatically put on dired-mode-hook to get extra dired features: | |
1348 \\<dired-mode-map> | |
1349 \\[dired-vm] -- VM on folder | |
1350 \\[dired-rmail] -- Rmail on folder | |
1351 \\[dired-do-insert-subdir] -- insert all marked subdirs | |
1352 \\[dired-do-find-file] -- visit all marked files simultaneously | |
1353 \\[dired-set-marker-char], \\[dired-restore-marker-char] -- change and display dired-marker-char dynamically. | |
1354 \\[dired-omit-toggle] -- toggle omitting of files | |
1355 \\[dired-mark-sexp] -- mark by lisp expression | |
1356 \\[dired-do-unmark] -- replace existing marker with another. | |
1357 \\[dired-mark-rcs-files] -- mark all RCS controlled files | |
1358 \\[dired-mark-files-compilation-buffer] -- mark compilation files | |
1359 \\[dired-copy-filename-as-kill] -- copy the file or subdir names into the kill ring. | |
1360 You can feed it to other commands using \\[yank]. | |
1361 | |
1362 For more features, see variables | |
1363 | |
1364 dired-omit-files | |
1365 dired-omit-extenstions | |
1366 dired-dangerous-shell-command | |
1367 dired-mark-keys | |
1368 dired-local-variables-file | |
1369 dired-find-subdir | |
1370 dired-guess-have-gnutar | |
1371 dired-auto-shell-command-alist | |
1372 | |
1373 See also functions | |
1374 | |
1375 dired-sort-on-size | |
1376 dired-do-relsymlink | |
1377 dired-flag-extension | |
1378 dired-virtual | |
1379 dired-jump-back | |
1380 dired-jump-back-other-window | |
1381 " t nil) | |
1382 | |
1383 ;;;*** | |
1384 | |
1385 ;;;### (autoloads nil "dired-xemacs-menu" "dired/dired-xemacs-menu.el" (12322 8756)) | |
1386 ;;; Generated autoloads from dired/dired-xemacs-menu.el | |
1387 | |
1388 ;;;### (autoloads (dired-noselect dired-other-window dired) "dired" "dired/dired.el" (12727 30096)) | |
1389 ;;; Generated autoloads from dired/dired.el | |
1390 | |
1391 (defvar dired-listing-switches (purecopy "-al") "\ | |
1392 *Switches passed to ls for dired. MUST contain the `l' option. | |
1393 Can contain even `F', `b', `i' and `s'.") | |
1394 | |
1395 (defvar dired-chown-program (purecopy (if (memq system-type '(dgux-unix hpux usg-unix-v silicon-graphics-unix irix)) "chown" "/etc/chown")) "\ | |
1396 *Name of chown command (usully `chown' or `/etc/chown').") | |
1397 | |
1398 (defvar dired-ls-program (purecopy "ls") "\ | |
1399 *Absolute or relative name of the ls program used by dired.") | |
1400 | |
1401 (defvar dired-ls-F-marks-symlinks t "\ | |
1402 *Informs dired about how ls -lF marks symbolic links. | |
1403 Set this to t if `dired-ls-program' with -lF marks the symbolic link | |
1404 itself with a trailing @ (usually the case under Ultrix). | |
1405 | |
1406 Example: if `ln -s foo bar; ls -F bar' gives `bar -> foo', set it to | |
1407 nil, if it gives `bar@ -> foo', set it to t. | |
1408 | |
1409 Dired checks if there is really a @ appended. Thus, if you have a | |
1410 marking ls program on one host and a non-marking on another host, and | |
1411 don't care about symbolic links which really end in a @, you can | |
1412 always set this variable to t.") | |
1413 | |
1414 (defvar dired-trivial-filenames (purecopy "^\\.\\.?$\\|^#") "\ | |
1415 *Regexp of files to skip when moving point to the first file of a new directory listing. | |
1416 Nil means move to the subdir line, t means move to first file.") | |
1417 | |
1418 (defvar dired-keep-marker-move t "\ | |
1419 If t, moved marked files are marked if their originals were. | |
1420 If a character, those files (marked or not) are marked with that character.") | |
1421 | |
1422 (defvar dired-keep-marker-copy 67 "\ | |
1423 If t, copied files are marked if their source files were. | |
1424 If a character, those files are always marked with that character.") | |
1425 | |
1426 (defvar dired-keep-marker-hardlink 72 "\ | |
1427 If t, hard-linked files are marked if the linked-to files were. | |
1428 If a character, those files are always marked with that character.") | |
1429 | |
1430 (defvar dired-keep-marker-symlink 89 "\ | |
1431 If t, symlinked marked files are marked if the linked-to files were. | |
1432 If a character, those files are always marked with that character.") | |
1433 | |
1434 (defvar dired-dwim-target nil "\ | |
1435 *If non-nil, dired tries to guess a default target directory: | |
1436 If there is a dired buffer displayed in the next window, use | |
1437 its current subdir, instead of the current subdir of this dired | |
1438 buffer. | |
1439 | |
1440 The target is used in the prompt for file copy, move etc.") | |
1441 | |
1442 (defvar dired-copy-preserve-time nil "\ | |
1443 *If non-nil, Dired preserves the last-modified time in a file copy. | |
1444 \(This works on only some systems.)\\<dired-mode-map> | |
1445 Use `\\[dired-do-copy]' with a zero prefix argument to toggle its value.") | |
1446 | |
1447 (define-key ctl-x-map "d" 'dired) | |
1448 | |
1449 (autoload 'dired "dired" "\ | |
1450 \"Edit\" directory DIRNAME--delete, rename, print, etc. some files in it. | |
1451 With an optional prefix argument you can specify the ls SWITCHES that are used. | |
1452 Dired displays a list of files in DIRNAME (which may also have | |
1453 shell wildcards appended to select certain files). | |
1454 You can move around in it with the usual commands. | |
1455 You can flag files for deletion with \\<dired-mode-map>\\[dired-flag-file-deleted] and then delete them by | |
1456 typing \\[dired-do-deletions]. | |
1457 Type \\[describe-mode] after entering dired for more info. | |
1458 | |
1459 If DIRNAME is already in a dired buffer, that buffer is used without refresh." t nil) | |
1460 | |
1461 (define-key ctl-x-4-map "d" 'dired-other-window) | |
1462 | |
1463 (autoload 'dired-other-window "dired" "\ | |
1464 \"Edit\" directory DIRNAME. Like `dired' but selects in another window." t nil) | |
1465 | |
1466 (autoload 'dired-noselect "dired" "\ | |
1467 Like `dired' but returns the dired buffer as value, does not select it." nil nil) | |
1468 | |
1469 ;;;*** | |
1470 | |
1471 ;;;### (autoloads (find-grep-dired find-name-dired find-dired) "find-dired" "dired/find-dired.el" (12675 57063)) | |
1472 ;;; Generated autoloads from dired/find-dired.el | |
1473 | |
1474 (defvar find-ls-option (purecopy (if (eq system-type 'berkeley-unix) '("-ls" . "-gilsb") '("-exec ls -ld {} \\;" . "-ld"))) "\ | |
1475 *Description of the option to `find' to produce an `ls -l'-type listing. | |
1476 This is a cons of two strings (FIND-OPTION . LS-SWITCHES). FIND-OPTION | |
1477 gives the option (or options) to `find' that produce the desired output. | |
1478 LS-SWITCHES is a list of `ls' switches to tell dired how to parse the output.") | |
1479 | |
1480 (defvar find-grep-options (purecopy (if (eq system-type 'berkeley-unix) "-s" "-q")) "\ | |
1481 *Option to grep to be as silent as possible. | |
1482 On Berkeley systems, this is `-s'; on Posix, and with GNU grep, `-q' does it. | |
1483 On other systems, the closest you can come is to use `-l'.") | |
1484 | |
1485 (defvar find-dired-multiple-buffers nil "\ | |
1486 *If non-nil, generates a new buffer for each find") | |
1487 | |
1488 (autoload 'find-dired "find-dired" "\ | |
1489 Run `find' and go into dired-mode on a buffer of the output. | |
1490 The command run (after changing into DIR) is | |
1491 | |
1492 find . \\( ARGS \\) -ls" t nil) | |
1493 | |
1494 (autoload 'find-name-dired "find-dired" "\ | |
1495 Search DIR recursively for files matching the globbing pattern PATTERN, | |
1496 and run dired on those files. | |
1497 PATTERN is a shell wildcard (not an Emacs regexp) and need not be quoted. | |
1498 The command run (after changing into DIR) is | |
1499 | |
1500 find . -name 'PATTERN' -ls" t nil) | |
1501 | |
1502 (autoload 'find-grep-dired "find-dired" "\ | |
1503 Find files in DIR containing a regexp ARG and start Dired on output. | |
1504 The command run (after changing into DIR) is | |
1505 | |
1506 find . -type f -exec test -r {} \\; -exec egrep -s ARG {} \\; -ls | |
1507 | |
1508 Thus ARG can also contain additional grep options." t nil) | |
1509 | |
1510 ;;;*** | |
1511 | |
1512 ;;;### (autoloads nil "gmhist-app" "dired/gmhist-app.el" (12376 19392)) | |
1513 ;;; Generated autoloads from dired/gmhist-app.el | |
1514 | |
1515 ;;;*** | |
1516 | |
1517 ;;;### (autoloads nil "gmhist-cmp" "dired/gmhist-cmp.el" (12376 19393)) | |
1518 ;;; Generated autoloads from dired/gmhist-cmp.el | |
1519 | |
1520 ;;;*** | |
1521 | |
1522 ;;;### (autoloads nil "gmhist-mh" "dired/gmhist-mh.el" (12376 19393)) | |
1523 ;;; Generated autoloads from dired/gmhist-mh.el | |
1524 | |
1525 ;;;*** | |
1526 | |
1527 ;;;### (autoloads nil "gmhist" "dired/gmhist.el" (12639 8568)) | |
1528 ;;; Generated autoloads from dired/gmhist.el | |
1529 | |
1530 ;;;*** | |
1531 | |
1532 ;;;### (autoloads nil "cl-read" "edebug/cl-read.el" (12639 8664)) | |
1533 ;;; Generated autoloads from edebug/cl-read.el | |
1534 | |
1535 ;;;*** | |
1536 | |
1537 ;;;### (autoloads nil "cl-specs" "edebug/cl-specs.el" (12546 50556)) | |
1538 ;;; Generated autoloads from edebug/cl-specs.el | |
1539 | |
1540 ;;;*** | |
1541 | |
1542 ;;;### (autoloads nil "cust-print" "edebug/cust-print.el" (12546 50558)) | |
1543 ;;; Generated autoloads from edebug/cust-print.el | |
1544 | |
1545 ;;;*** | |
1546 | |
1547 ;;;### (autoloads nil "edebug-cl-read" "edebug/edebug-cl-read.el" (12546 50559)) | |
1548 ;;; Generated autoloads from edebug/edebug-cl-read.el | |
1549 | |
1550 ;;;*** | |
1551 | |
1552 ;;;### (autoloads nil "edebug-test" "edebug/edebug-test.el" (12546 50592)) | |
1553 ;;; Generated autoloads from edebug/edebug-test.el | |
1554 | |
1555 | |
1556 ;;;*** | |
1557 | |
1558 ;;;### (autoloads (edebug-eval-top-level-form def-edebug-spec) "edebug" "edebug/edebug.el" (12639 8668)) | |
1559 ;;; Generated autoloads from edebug/edebug.el | |
1560 | |
1561 (autoload 'def-edebug-spec "edebug" "\ | |
1562 Set the edebug-form-spec property of SYMBOL according to SPEC. | |
1563 Both SYMBOL and SPEC are unevaluated. The SPEC can be 0, t, a symbol | |
1564 \(naming a function), or a list." nil 'macro) | |
1565 | |
1566 (defalias 'edebug-defun 'edebug-eval-top-level-form) | |
1567 | |
1568 (autoload 'edebug-eval-top-level-form "edebug" "\ | |
1569 Evaluate a top level form, such as a defun or defmacro. | |
1570 This is like `eval-defun', but the code is always instrumented for Edebug. | |
1571 Print its name in the minibuffer and leave point where it is, | |
1572 or if an error occurs, leave point after it with mark at the original point." t nil) | |
1573 | |
1574 ;;;*** | |
1575 | |
1576 ;;;### (autoloads nil "eval-reg" "edebug/eval-reg.el" (12546 50591)) | |
1577 ;;; Generated autoloads from edebug/eval-reg.el | |
1578 | |
1579 | |
1580 ;;;*** | |
1581 | |
1582 ;;;### (autoloads nil "ediff-diff" "ediff/ediff-diff.el" (12747 30846)) | |
1583 ;;; Generated autoloads from ediff/ediff-diff.el | |
1584 | |
1585 ;;;### (autoloads nil "ediff-hook" "ediff/ediff-hook.el" (12675 57179)) | |
1586 ;;; Generated autoloads from ediff/ediff-hook.el | |
1587 | |
1588 ;;;### (autoloads nil "ediff-init" "ediff/ediff-init.el" (12675 57185)) | |
1589 ;;; Generated autoloads from ediff/ediff-init.el | |
1590 | |
1591 ;;;*** | |
1592 | |
1593 ;;;### (autoloads nil "ediff-merg" "ediff/ediff-merg.el" (12675 57177)) | |
1594 ;;; Generated autoloads from ediff/ediff-merg.el | |
1595 | |
1596 ;;;*** | |
1597 | |
1598 ;;;### (autoloads (ediff-show-registry) "ediff-mult" "ediff/ediff-mult.el" (12675 57187)) | |
1599 ;;; Generated autoloads from ediff/ediff-mult.el | |
1600 | |
1601 (autoload 'ediff-show-registry "ediff-mult" "\ | |
1602 Display Ediff's registry." t nil) | |
1603 | |
1604 (defalias 'eregistry 'ediff-show-registry) | |
1605 | |
1606 ;;;*** | |
1607 | |
1608 ;;;### (autoloads nil "ediff-ptch" "ediff/ediff-ptch.el" (12639 8876)) | |
1609 ;;; Generated autoloads from ediff/ediff-ptch.el | |
1610 | |
1611 ;;;*** | |
1612 | |
1613 ;;;### (autoloads nil "ediff-util" "ediff/ediff-util.el" (12740 28878)) | |
1614 ;;; Generated autoloads from ediff/ediff-util.el | |
1615 | |
1616 ;;;*** | |
1617 | |
1618 ;;;### (autoloads nil "ediff-vers" "ediff/ediff-vers.el" (12675 57186)) | |
1619 ;;; Generated autoloads from ediff/ediff-vers.el | |
1620 | |
1621 ;;;### (autoloads nil "ediff-wind" "ediff/ediff-wind.el" (12730 62153)) | |
1622 ;;; Generated autoloads from ediff/ediff-wind.el | |
1623 | |
1624 ;;;### (autoloads (electric-buffer-list) "ebuff-menu" "electric/ebuff-menu.el" (12698 33526)) | |
1625 ;;; Generated autoloads from electric/ebuff-menu.el | |
1626 | |
1627 (autoload 'electric-buffer-list "ebuff-menu" "\ | |
1628 Pops up a buffer describing the set of Emacs buffers. | |
1629 Vaguely like ITS lunar select buffer; combining typeoutoid buffer | |
1630 listing with menuoid buffer selection. | |
1631 | |
1632 If the very next character typed is a space then the buffer list | |
1633 window disappears. Otherwise, one may move around in the | |
1634 buffer list window, marking buffers to be selected, saved or deleted. | |
1635 | |
1636 To exit and select a new buffer, type a space when the cursor is on the | |
1637 appropriate line of the buffer-list window. | |
1638 | |
1639 Other commands are much like those of buffer-menu-mode. | |
1640 | |
1641 Calls value of `electric-buffer-menu-mode-hook' on entry if non-nil. | |
1642 | |
1643 Non-null optional arg FILES-ONLY means mention only file buffers. | |
1644 When called from Lisp code, FILES-ONLY may be a regular expression, | |
1645 in which case only buffers whose names match that expression are listed, | |
1646 or an arbitrary predicate function. | |
1647 | |
1648 \\{electric-buffer-menu-mode-map}" t nil) | |
1649 | |
1650 ;;;*** | |
1651 | |
1652 ;;;### (autoloads (electric-command-history Electric-command-history-redo-expression) "echistory" "electric/echistory.el" (12657 40690)) | |
1653 ;;; Generated autoloads from electric/echistory.el | |
1654 | |
1655 (autoload 'Electric-command-history-redo-expression "echistory" "\ | |
1656 Edit current history line in minibuffer and execute result. | |
1657 With prefix argument NOCONFIRM, execute current line as-is without editing." t nil) | |
1658 | |
1659 (autoload 'electric-command-history "echistory" "\ | |
1660 \\<electric-history-map>Major mode for examining and redoing commands from `command-history'. | |
1661 This pops up a window with the Command History listing. | |
1662 The number of command listed is controlled by `list-command-history-max'. | |
1663 The command history is filtered by `list-command-history-filter' if non-nil. | |
1664 Combines typeout Command History list window with menu like selection | |
1665 of an expression from the history for re-evaluation in the *original* buffer. | |
1666 | |
1667 The history displayed is filtered by `list-command-history-filter' if non-nil. | |
1668 | |
1669 This pops up a window with the Command History listing. If the very | |
1670 next character typed is Space, the listing is killed and the previous | |
1671 window configuration is restored. Otherwise, you can browse in the | |
1672 Command History with Return moving down and Delete moving up, possibly | |
1673 selecting an expression to be redone with Space or quitting with `Q'. | |
1674 | |
1675 Like Emacs-Lisp mode except that characters do not insert themselves and | |
1676 Tab and Linefeed do not indent. Instead these commands are provided: | |
1677 \\{electric-history-map} | |
1678 | |
1679 Calls the value of `electric-command-history-hook' if that is non-nil. | |
1680 The Command History listing is recomputed each time this mode is invoked." t nil) | |
1681 | |
1682 ;;;*** | |
1683 | |
1684 ;;;### (autoloads (electric-helpify with-electric-help) "ehelp" "electric/ehelp.el" (12657 40690)) | |
1685 ;;; Generated autoloads from electric/ehelp.el | |
1686 | |
1687 (autoload 'with-electric-help "ehelp" "\ | |
1688 Pop up an \"electric\" help buffer. | |
1689 The arguments are THUNK &optional BUFFER NOERASE MINHEIGHT. | |
1690 THUNK is a function of no arguments which is called to initialize the | |
1691 contents of BUFFER. BUFFER defaults to `*Help*'. BUFFER will be | |
1692 erased before THUNK is called unless NOERASE is non-nil. THUNK will | |
1693 be called while BUFFER is current and with `standard-output' bound to | |
1694 the buffer specified by BUFFER. | |
1695 | |
1696 If THUNK returns nil, we display BUFFER starting at the top, and | |
1697 shrink the window to fit. If THUNK returns non-nil, we don't do those things. | |
1698 | |
1699 After THUNK has been called, this function \"electrically\" pops up a window | |
1700 in which BUFFER is displayed and allows the user to scroll through that buffer | |
1701 in electric-help-mode. The window's height will be at least MINHEIGHT if | |
1702 this value is non-nil. | |
1703 | |
1704 If THUNK returns nil, we display BUFFER starting at the top, and | |
1705 shrink the window to fit. If THUNK returns non-nil, we don't do those | |
1706 things. | |
1707 | |
1708 When the user exits (with `electric-help-exit', or otherwise) the help | |
1709 buffer's window disappears (i.e., we use `save-window-excursion') | |
1710 BUFFER is put into `default-major-mode' (or `fundamental-mode') when we exit." nil nil) | |
1711 | |
1712 (autoload 'electric-helpify "ehelp" nil nil nil) | |
1713 | |
1714 ;;;*** | |
1715 | |
1716 ;;;### (autoloads nil "electric" "electric/electric.el" (12657 40689)) | |
1717 ;;; Generated autoloads from electric/electric.el | |
1718 | |
1719 ;;;### (autoloads (Helper-help Helper-describe-bindings) "helper" "electric/helper.el" (12657 40691)) | |
1720 ;;; Generated autoloads from electric/helper.el | |
1721 | |
1722 (autoload 'Helper-describe-bindings "helper" "\ | |
1723 Describe local key bindings of current mode." t nil) | |
1724 | |
1725 (autoload 'Helper-help "helper" "\ | |
1726 Provide help for current mode." t nil) | |
1727 | |
1728 ;;;*** | |
1729 | |
1730 ;;;### (autoloads nil "edt" "emulators/edt.el" (12376 19400)) | |
1731 ;;; Generated autoloads from emulators/edt.el | |
1732 | |
1733 ;;;### (autoloads (evi) "evi" "emulators/evi.el" (12376 19401)) | |
1734 ;;; Generated autoloads from emulators/evi.el | |
1735 | |
1736 (autoload 'evi "evi" "\ | |
1737 Start vi emulation in this buffer." t nil) | |
1738 | |
1739 ;;;*** | |
1740 | |
1741 ;;;### (autoloads (convert-mocklisp-buffer) "mlconvert" "emulators/mlconvert.el" (12376 19400)) | |
1742 ;;; Generated autoloads from emulators/mlconvert.el | |
1743 | |
1744 (autoload 'convert-mocklisp-buffer "mlconvert" "\ | |
1745 Convert buffer of Mocklisp code to real Lisp that GNU Emacs can run." t nil) | |
1746 | |
1747 ;;;*** | |
1748 | |
1749 ;;;### (autoloads nil "mlsupport" "emulators/mlsupport.el" (12546 50433)) | |
1750 ;;; Generated autoloads from emulators/mlsupport.el | |
1751 | |
1752 ;;;*** | |
1753 | |
1754 ;;;### (autoloads (teco-command) "teco" "emulators/teco.el" (11903 15655)) | |
1755 ;;; Generated autoloads from emulators/teco.el | |
1756 | |
1757 (autoload 'teco-command "teco" "\ | |
1758 Read and execute a Teco command string." t nil) | |
1759 | |
1760 ;;;*** | |
1761 | |
1762 ;;;### (autoloads nil "tpu-doc" "emulators/tpu-doc.el" (12376 19403)) | |
1763 ;;; Generated autoloads from emulators/tpu-doc.el | |
1764 | |
1765 ;;;### (autoloads (tpu-edt-on) "tpu-edt" "emulators/tpu-edt.el" (12657 40693)) | |
1766 ;;; Generated autoloads from emulators/tpu-edt.el | |
1767 | |
1768 (fset 'tpu-edt-mode 'tpu-edt-on) | |
1769 | |
1770 (fset 'tpu-edt 'tpu-edt-on) | |
1771 | |
1772 (autoload 'tpu-edt-on "tpu-edt" "\ | |
1773 Turn on TPU/edt emulation." t nil) | |
1774 | |
1775 ;;;*** | |
1776 | |
1777 ;;;### (autoloads nil "tpu-extras" "emulators/tpu-extras.el" (12376 19402)) | |
1778 ;;; Generated autoloads from emulators/tpu-extras.el | |
1779 | |
1780 ;;;*** | |
1781 | |
1782 ;;;### (autoloads nil "tpu-mapper" "emulators/tpu-mapper.el" (12376 19403)) | |
1783 ;;; Generated autoloads from emulators/tpu-mapper.el | |
1784 | |
1785 ;;;*** | |
1786 | |
1787 ;;;### (autoloads nil "ws-mode" "emulators/ws-mode.el" (12376 19402)) | |
1788 ;;; Generated autoloads from emulators/ws-mode.el | |
1789 | |
1790 ;;;*** | |
1791 | |
1792 ;;;### (autoloads nil "backtrace-logging" "energize/backtrace-logging.el" (12376 19404)) | |
1793 ;;; Generated autoloads from energize/backtrace-logging.el | |
1794 | |
1795 ;;;*** | |
1796 | |
1797 ;;;### (autoloads nil "energize-advice" "energize/energize-advice.el" (12376 19404)) | |
1798 ;;; Generated autoloads from energize/energize-advice.el | |
1799 | |
1800 ;;;*** | |
1801 | |
1802 ;;;### (autoloads nil "energize-annoprint" "energize/energize-annoprint.el" (12376 19409)) | |
1803 ;;; Generated autoloads from energize/energize-annoprint.el | |
1804 | |
1805 ;;;*** | |
1806 | |
1807 ;;;### (autoloads nil "energize-font-lock" "energize/energize-font-lock.el" (12376 19408)) | |
1808 ;;; Generated autoloads from energize/energize-font-lock.el | |
1809 | |
1810 ;;;*** | |
1811 | |
1812 ;;;### (autoloads nil "energize-font-size" "energize/energize-font-size.el" (12376 19408)) | |
1813 ;;; Generated autoloads from energize/energize-font-size.el | |
1814 | |
1815 ;;;*** | |
1816 | |
1817 ;;;### (autoloads nil "energize-init" "energize/energize-init.el" (12376 19405)) | |
1818 ;;; Generated autoloads from energize/energize-init.el | |
1819 | |
1820 ;;;*** | |
1821 | |
1822 ;;;### (autoloads nil "energize-load" "energize/energize-load.el" (12376 19405)) | |
1823 ;;; Generated autoloads from energize/energize-load.el | |
1824 | |
1825 ;;;*** | |
1826 | |
1827 ;;;### (autoloads nil "energize-menus" "energize/energize-menus.el" (12376 19407)) | |
1828 ;;; Generated autoloads from energize/energize-menus.el | |
1829 | |
1830 ;;;*** | |
1831 | |
1832 ;;;### (autoloads nil "energize-mode" "energize/energize-mode.el" (12720 56483)) | |
1833 ;;; Generated autoloads from energize/energize-mode.el | |
1834 | |
1835 ;;;### (autoloads nil "energize-shell" "energize/energize-shell.el" (12110 33408)) | |
1836 ;;; Generated autoloads from energize/energize-shell.el | |
1837 | |
1838 ;;;### (autoloads nil "energize-uimx" "energize/energize-uimx.el" (12376 19409)) | |
1839 ;;; Generated autoloads from energize/energize-uimx.el | |
1840 | |
1841 ;;;*** | |
1842 | |
1843 ;;;### (autoloads nil "energize-vi" "energize/energize-vi.el" (12376 19407)) | |
1844 ;;; Generated autoloads from energize/energize-vi.el | |
1845 | |
1846 ;;;*** | |
1847 | |
1848 ;;;### (autoloads nil "energize-visit-use" "energize/energize-visit-use.el" (12376 19407)) | |
1849 ;;; Generated autoloads from energize/energize-visit-use.el | |
1850 | |
1851 ;;;*** | |
1852 | |
1853 ;;;### (autoloads nil "energize-windows" "energize/energize-windows.el" (12376 19409)) | |
1854 ;;; Generated autoloads from energize/energize-windows.el | |
1855 | |
1856 ;;;*** | |
1857 | |
1858 ;;;### (autoloads nil "ostore" "energize/ostore.el" (12376 19408)) | |
1859 ;;; Generated autoloads from energize/ostore.el | |
1860 | |
1861 ;;;*** | |
1862 | |
1863 ;;;### (autoloads nil "write-file" "energize/write-file.el" (12376 19404)) | |
1864 ;;; Generated autoloads from energize/write-file.el | |
1865 | |
1866 ;;;*** | |
1867 | |
1868 ;;;### (autoloads nil "eos" "eos/eos.el" (12740 25241)) | |
1869 ;;; Generated autoloads from eos/eos.el | |
1870 | |
1871 ;;;*** | |
1872 | |
1873 ;;;### (autoloads nil "loaddefs-eos" "eos/loaddefs-eos.el" (12748 8006)) | |
1874 ;;; Generated autoloads from eos/loaddefs-eos.el | |
1875 | |
1876 ;;;*** | |
1877 | |
1878 ;;;### (autoloads nil "sun-eos-browser" "eos/sun-eos-browser.el" (12740 25240)) | |
1879 ;;; Generated autoloads from eos/sun-eos-browser.el | |
1880 | |
1881 ;;;*** | |
1882 | |
1883 ;;;### (autoloads nil "sun-eos-common" "eos/sun-eos-common.el" (12345 62348)) | |
1884 ;;; Generated autoloads from eos/sun-eos-common.el | |
1885 | |
1886 ;;;### (autoloads nil "sun-eos-debugger-extra" "eos/sun-eos-debugger-extra.el" (12740 25236)) | |
1887 ;;; Generated autoloads from eos/sun-eos-debugger-extra.el | |
1888 | |
1889 ;;;*** | |
1890 | |
1891 ;;;### (autoloads nil "sun-eos-debugger" "eos/sun-eos-debugger.el" (12740 25235)) | |
1892 ;;; Generated autoloads from eos/sun-eos-debugger.el | |
1893 | |
1894 ;;;*** | |
1895 | |
1896 ;;;### (autoloads nil "sun-eos-editor" "eos/sun-eos-editor.el" (12740 25242)) | |
1897 ;;; Generated autoloads from eos/sun-eos-editor.el | |
1898 | |
1899 ;;;*** | |
1900 | |
1901 ;;;### (autoloads nil "sun-eos-init" "eos/sun-eos-init.el" (12740 25241)) | |
1902 ;;; Generated autoloads from eos/sun-eos-init.el | |
1903 | |
1904 ;;;*** | |
1905 | |
1906 ;;;### (autoloads nil "sun-eos-load" "eos/sun-eos-load.el" (12740 25239)) | |
1907 ;;; Generated autoloads from eos/sun-eos-load.el | |
1908 | |
1909 ;;;*** | |
1910 | |
1911 ;;;### (autoloads nil "sun-eos-menubar" "eos/sun-eos-menubar.el" (12740 25243)) | |
1912 ;;; Generated autoloads from eos/sun-eos-menubar.el | |
1913 | |
1914 ;;;*** | |
1915 | |
1916 ;;;### (autoloads nil "sun-eos-toolbar" "eos/sun-eos-toolbar.el" (12740 25234)) | |
1917 ;;; Generated autoloads from eos/sun-eos-toolbar.el | |
1918 | |
1919 ;;;*** | |
1920 | |
1921 ;;;### (autoloads nil "sun-eos" "eos/sun-eos.el" (12740 25239)) | |
1922 ;;; Generated autoloads from eos/sun-eos.el | |
1923 | |
1924 ;;;### (autoloads nil "epoch" "epoch/epoch.el" (12376 19557)) | |
1925 ;;; Generated autoloads from epoch/epoch.el | |
1926 | |
1927 ;;;### (autoloads (term make-term) "term" "eterm/term.el" (12254 10521)) | |
1928 ;;; Generated autoloads from eterm/term.el | |
1929 | |
1930 (autoload 'make-term "term" "\ | |
1931 Make a term process NAME in a buffer, running PROGRAM. | |
1932 The name of the buffer is made by surrounding NAME with `*'s. | |
1933 If there is already a running process in that buffer, it is not restarted. | |
1934 Optional third arg STARTFILE is the name of a file to send the contents of to | |
1935 the process. Any more args are arguments to PROGRAM." nil nil) | |
1936 | |
1937 (autoload 'term "term" "\ | |
1938 Start a terminal-emulator in a new buffer." t nil) | |
1939 | |
1940 ;;;*** | |
1941 | |
1942 ;;;### (autoloads (tperldb txdb tdbx tsdb tgdb) "tgud" "eterm/tgud.el" (12147 26618)) | |
1943 ;;; Generated autoloads from eterm/tgud.el | |
1944 | |
1945 (autoload 'tgdb "tgud" "\ | |
1946 Run gdb on program FILE in buffer *tgud-FILE*. | |
1947 The directory containing FILE becomes the initial working directory | |
1948 and source-file directory for your debugger." t nil) | |
1949 | |
1950 (autoload 'tsdb "tgud" "\ | |
1951 Run sdb on program FILE in buffer *tgud-FILE*. | |
1952 The directory containing FILE becomes the initial working directory | |
1953 and source-file directory for your debugger." t nil) | |
1954 | |
1955 (autoload 'tdbx "tgud" "\ | |
1956 Run dbx on program FILE in buffer *tgud-FILE*. | |
1957 The directory containing FILE becomes the initial working directory | |
1958 and source-file directory for your debugger." t nil) | |
1959 | |
1960 (autoload 'txdb "tgud" "\ | |
1961 Run xdb on program FILE in buffer *tgud-FILE*. | |
1962 The directory containing FILE becomes the initial working directory | |
1963 and source-file directory for your debugger. | |
1964 | |
1965 You can set the variable 'tgud-xdb-directories' to a list of program source | |
1966 directories if your program contains sources from more than one directory." t nil) | |
1967 | |
1968 (autoload 'tperldb "tgud" "\ | |
1969 Run perldb on program FILE in buffer *tgud-FILE*. | |
1970 The directory containing FILE becomes the initial working directory | |
1971 and source-file directory for your debugger." t nil) | |
1972 | |
1973 ;;;*** | |
1974 | |
1975 ;;;### (autoloads (tshell) "tshell" "eterm/tshell.el" (12147 26618)) | |
1976 ;;; Generated autoloads from eterm/tshell.el | |
1977 | |
1978 (defvar tshell-prompt-pattern "^[^#$%>\n]*[#$%>] *" "\ | |
1979 Regexp to match prompts in the inferior shell. | |
1980 Defaults to \"^[^#$%>\\n]*[#$%>] *\", which works pretty well. | |
1981 This variable is used to initialise `term-prompt-regexp' in the | |
1982 shell buffer. | |
1983 | |
1984 The pattern should probably not match more than one line. If it does, | |
1985 tshell-mode may become confused trying to distinguish prompt from input | |
1986 on lines which don't start with a prompt. | |
1987 | |
1988 This is a fine thing to set in your `.emacs' file.") | |
1989 | |
1990 (autoload 'tshell "tshell" "\ | |
1991 Run an inferior shell, with I/O through buffer *shell*. | |
1992 If buffer exists but shell process is not running, make new shell. | |
1993 If buffer exists and shell process is running, just switch to buffer `*shell*'. | |
1994 Program used comes from variable `explicit-shell-file-name', | |
1995 or (if that is nil) from the ESHELL environment variable, | |
1996 or else from SHELL if there is no ESHELL. | |
1997 If a file `~/.emacs_SHELLNAME' exists, it is given as initial input | |
1998 (Note that this may lose due to a timing error if the shell | |
1999 discards input when it starts up.) | |
2000 The buffer is put in Tshell mode, giving commands for sending input | |
2001 and controlling the subjobs of the shell. See `tshell-mode'. | |
2002 See also the variable `tshell-prompt-pattern'. | |
2003 | |
2004 The shell file name (sans directories) is used to make a symbol name | |
2005 such as `explicit-csh-args'. If that symbol is a variable, | |
2006 its value is used as a list of arguments when invoking the shell. | |
2007 Otherwise, one argument `-i' is passed to the shell. | |
2008 | |
2009 \(Type \\[describe-mode] in the shell buffer for a list of commands.)" t nil) | |
2010 | |
2011 ;;;*** | |
2012 | |
2013 ;;;### (autoloads nil "NeXTify" "games/NeXTify.el" (12376 19620)) | |
2014 ;;; Generated autoloads from games/NeXTify.el | |
2015 | |
2016 ;;;### (autoloads (blackbox) "blackbox" "games/blackbox.el" (12376 19614)) | |
2017 ;;; Generated autoloads from games/blackbox.el | |
2018 | |
2019 (autoload 'blackbox "blackbox" "\ | |
2020 Play blackbox. Optional prefix argument is the number of balls; | |
2021 the default is 4. | |
2022 | |
2023 What is blackbox? | |
2024 | |
2025 Blackbox is a game of hide and seek played on an 8 by 8 grid (the | |
2026 Blackbox). Your opponent (Emacs, in this case) has hidden several | |
2027 balls (usually 4) within this box. By shooting rays into the box and | |
2028 observing where they emerge it is possible to deduce the positions of | |
2029 the hidden balls. The fewer rays you use to find the balls, the lower | |
2030 your score. | |
2031 | |
2032 Overview of play: | |
2033 | |
2034 \\<blackbox-mode-map>To play blackbox, type \\[blackbox]. An optional prefix argument | |
2035 specifies the number of balls to be hidden in the box; the default is | |
2036 four. | |
2037 | |
2038 The cursor can be moved around the box with the standard cursor | |
2039 movement keys. | |
2040 | |
2041 To shoot a ray, move the cursor to the edge of the box and press SPC. | |
2042 The result will be determined and the playfield updated. | |
2043 | |
2044 You may place or remove balls in the box by moving the cursor into the | |
2045 box and pressing \\[bb-romp]. | |
2046 | |
2047 When you think the configuration of balls you have placed is correct, | |
2048 press \\[bb-done]. You will be informed whether you are correct or | |
2049 not, and be given your score. Your score is the number of letters and | |
2050 numbers around the outside of the box plus five for each incorrectly | |
2051 placed ball. If you placed any balls incorrectly, they will be | |
2052 indicated with `x', and their actual positions indicated with `o'. | |
2053 | |
2054 Details: | |
2055 | |
2056 There are three possible outcomes for each ray you send into the box: | |
2057 | |
2058 Detour: the ray is deflected and emerges somewhere other than | |
2059 where you sent it in. On the playfield, detours are | |
2060 denoted by matching pairs of numbers -- one where the | |
2061 ray went in, and the other where it came out. | |
2062 | |
2063 Reflection: the ray is reflected and emerges in the same place | |
2064 it was sent in. On the playfield, reflections are | |
2065 denoted by the letter `R'. | |
2066 | |
2067 Hit: the ray strikes a ball directly and is absorbed. It does | |
2068 not emerge from the box. On the playfield, hits are | |
2069 denoted by the letter `H'. | |
2070 | |
2071 The rules for how balls deflect rays are simple and are best shown by | |
2072 example. | |
2073 | |
2074 As a ray approaches a ball it is deflected ninety degrees. Rays can | |
2075 be deflected multiple times. In the diagrams below, the dashes | |
2076 represent empty box locations and the letter `O' represents a ball. | |
2077 The entrance and exit points of each ray are marked with numbers as | |
2078 described under \"Detour\" above. Note that the entrance and exit | |
2079 points are always interchangeable. `*' denotes the path taken by the | |
2080 ray. | |
2081 | |
2082 Note carefully the relative positions of the ball and the ninety | |
2083 degree deflection it causes. | |
2084 | |
2085 1 | |
2086 - * - - - - - - - - - - - - - - - - - - - - - - | |
2087 - * - - - - - - - - - - - - - - - - - - - - - - | |
2088 1 * * - - - - - - - - - - - - - - - O - - - - O - | |
2089 - - O - - - - - - - O - - - - - - - * * * * - - | |
2090 - - - - - - - - - - - * * * * * 2 3 * * * - - * - - | |
2091 - - - - - - - - - - - * - - - - - - - O - * - - | |
2092 - - - - - - - - - - - * - - - - - - - - * * - - | |
2093 - - - - - - - - - - - * - - - - - - - - * - O - | |
2094 2 3 | |
2095 | |
2096 As mentioned above, a reflection occurs when a ray emerges from the same point | |
2097 it was sent in. This can happen in several ways: | |
2098 | |
2099 | |
2100 - - - - - - - - - - - - - - - - - - - - - - - - | |
2101 - - - - O - - - - - O - O - - - - - - - - - - - | |
2102 R * * * * - - - - - - - * - - - - O - - - - - - - | |
2103 - - - - O - - - - - - * - - - - R - - - - - - - - | |
2104 - - - - - - - - - - - * - - - - - - - - - - - - | |
2105 - - - - - - - - - - - * - - - - - - - - - - - - | |
2106 - - - - - - - - R * * * * - - - - - - - - - - - - | |
2107 - - - - - - - - - - - - O - - - - - - - - - - - | |
2108 | |
2109 In the first example, the ray is deflected downwards by the upper | |
2110 ball, then left by the lower ball, and finally retraces its path to | |
2111 its point of origin. The second example is similar. The third | |
2112 example is a bit anomalous but can be rationalized by realizing the | |
2113 ray never gets a chance to get into the box. Alternatively, the ray | |
2114 can be thought of as being deflected downwards and immediately | |
2115 emerging from the box. | |
2116 | |
2117 A hit occurs when a ray runs straight into a ball: | |
2118 | |
2119 - - - - - - - - - - - - - - - - - - - - - - - - | |
2120 - - - - - - - - - - - - - - - - - - - - O - - - | |
2121 - - - - - - - - - - - - O - - - H * * * * - - - - | |
2122 - - - - - - - - H * * * * O - - - - - - * - - - - | |
2123 - - - - - - - - - - - - O - - - - - - O - - - - | |
2124 H * * * O - - - - - - - - - - - - - - - - - - - - | |
2125 - - - - - - - - - - - - - - - - - - - - - - - - | |
2126 - - - - - - - - - - - - - - - - - - - - - - - - | |
2127 | |
2128 Be sure to compare the second example of a hit with the first example of | |
2129 a reflection." t nil) | |
2130 | |
2131 ;;;*** | |
2132 | |
2133 ;;;### (autoloads (conx-load conx conx-region conx-buffer) "conx" "games/conx.el" (12376 19618)) | |
2134 ;;; Generated autoloads from games/conx.el | |
2135 | |
2136 (autoload 'conx-buffer "conx" "\ | |
2137 Absorb the text in the current buffer into the tree." t nil) | |
2138 | |
2139 (autoload 'conx-region "conx" "\ | |
2140 Absorb the text in the current region into the tree." t nil) | |
2141 | |
2142 (autoload 'conx "conx" "\ | |
2143 Generate some random sentences in the *conx* buffer." t nil) | |
2144 | |
2145 (autoload 'conx-load "conx" "\ | |
2146 Load in a CONX database written by the \\[conx-save] command. | |
2147 This clears the database currently in memory." t nil) | |
2148 | |
2149 ;;;*** | |
2150 | |
2151 ;;;### (autoloads (shuffle-vector cookie-snarf cookie-insert cookie) "cookie1" "games/cookie1.el" (12376 19615)) | |
2152 ;;; Generated autoloads from games/cookie1.el | |
2153 | |
2154 (autoload 'cookie "cookie1" "\ | |
2155 Return a random phrase from PHRASE-FILE. When the phrase file | |
2156 is read in, display STARTMSG at beginning of load, ENDMSG at end." nil nil) | |
2157 | |
2158 (autoload 'cookie-insert "cookie1" "\ | |
2159 Insert random phrases from PHRASE-FILE; COUNT of them. When the phrase file | |
2160 is read in, display STARTMSG at beginning of load, ENDMSG at end." nil nil) | |
2161 | |
2162 (autoload 'cookie-snarf "cookie1" "\ | |
2163 Reads in the PHRASE-FILE, returns it as a vector of strings. | |
2164 Emit STARTMSG and ENDMSG before and after. Caches the result; second | |
2165 and subsequent calls on the same file won't go to disk." nil nil) | |
2166 | |
2167 (autoload 'shuffle-vector "cookie1" "\ | |
2168 Randomly permute the elements of VECTOR (all permutations equally likely)" nil nil) | |
2169 | |
2170 ;;;*** | |
2171 | |
2172 ;;;### (autoloads (dissociated-press) "dissociate" "games/dissociate.el" (12376 19615)) | |
2173 ;;; Generated autoloads from games/dissociate.el | |
2174 | |
2175 (autoload 'dissociated-press "dissociate" "\ | |
2176 Dissociate the text of the current buffer. | |
2177 Output goes in buffer named *Dissociation*, | |
2178 which is redisplayed each time text is added to it. | |
2179 Every so often the user must say whether to continue. | |
2180 If ARG is positive, require ARG chars of continuity. | |
2181 If ARG is negative, require -ARG words of continuity. | |
2182 Default is 2." t nil) | |
2183 | |
2184 ;;;*** | |
2185 | |
2186 ;;;### (autoloads (doctor) "doctor" "games/doctor.el" (12376 19616)) | |
2187 ;;; Generated autoloads from games/doctor.el | |
2188 | |
2189 (autoload 'doctor "doctor" "\ | |
2190 Switch to *doctor* buffer and start giving psychotherapy." t nil) | |
2191 | |
2192 ;;;*** | |
2193 | |
2194 ;;;### (autoloads (dunnet) "dunnet" "games/dunnet.el" (12376 19621)) | |
2195 ;;; Generated autoloads from games/dunnet.el | |
2196 | |
2197 (autoload 'dunnet "dunnet" "\ | |
2198 Switch to *dungeon* buffer and start game." t nil) | |
2199 | |
2200 ;;;*** | |
2201 | |
2202 ;;;### (autoloads (flame) "flame" "games/flame.el" (12376 19618)) | |
2203 ;;; Generated autoloads from games/flame.el | |
2204 | |
2205 (autoload 'flame "flame" "\ | |
2206 Generate ARG (default 1) sentences of half-crazed gibberish." t nil) | |
2207 | |
2208 ;;;*** | |
2209 | |
2210 ;;;### (autoloads (gomoku) "gomoku" "games/gomoku.el" (12546 50547)) | |
2211 ;;; Generated autoloads from games/gomoku.el | |
2212 | |
2213 (autoload 'gomoku "gomoku" "\ | |
2214 Start a Gomoku game between you and Emacs. | |
2215 If a game is in progress, this command allow you to resume it. | |
2216 If optional arguments N and M are given, an N by M board is used. | |
2217 | |
2218 You and Emacs play in turn by marking a free square. You mark it with X | |
2219 and Emacs marks it with O. The winner is the first to get five contiguous | |
2220 marks horizontally, vertically or in diagonal. | |
2221 You play by moving the cursor over the square you choose and hitting | |
2222 \\<gomoku-mode-map>\\[gomoku-human-plays]. | |
2223 Use \\[describe-mode] for more info." t nil) | |
2224 | |
2225 ;;;*** | |
2226 | |
2227 ;;;### (autoloads (hanoi) "hanoi" "games/hanoi.el" (12546 50548)) | |
2228 ;;; Generated autoloads from games/hanoi.el | |
2229 | |
2230 (autoload 'hanoi "hanoi" "\ | |
2231 Towers of Hanoi diversion. Argument is number of rings." t nil) | |
2232 | |
2233 ;;;*** | |
2234 | |
2235 ;;;### (autoloads (life) "life" "games/life.el" (12743 11635)) | |
2236 ;;; Generated autoloads from games/life.el | |
2237 | |
2238 (autoload 'life "life" "\ | |
2239 Run Conway's Life simulation. | |
2240 The starting pattern is randomly selected. Prefix arg (optional first | |
2241 arg non-nil from a program) is the number of seconds to sleep between | |
2242 generations (this defaults to 1)." t nil) | |
2243 | |
2244 ;;;*** | |
2245 | |
2246 ;;;### (autoloads (mpuz) "mpuz" "games/mpuz.el" (12546 50549)) | |
2247 ;;; Generated autoloads from games/mpuz.el | |
2248 | |
2249 (autoload 'mpuz "mpuz" "\ | |
2250 Multiplication puzzle with GNU Emacs." t nil) | |
2251 | |
2252 ;;;*** | |
2253 | |
2254 ;;;### (autoloads (snarf-spooks spook) "spook" "games/spook.el" (12546 50549)) | |
2255 ;;; Generated autoloads from games/spook.el | |
2256 | |
2257 (autoload 'spook "spook" "\ | |
2258 Adds that special touch of class to your outgoing mail." t nil) | |
2259 | |
2260 (autoload 'snarf-spooks "spook" "\ | |
2261 Return a vector containing the lines from `spook-phrases-file'." nil nil) | |
2262 | |
2263 ;;;*** | |
2264 | |
2265 ;;;### (autoloads nil "studly" "games/studly.el" (12376 19619)) | |
2266 ;;; Generated autoloads from games/studly.el | |
2267 | |
2268 ;;;### (autoloads (psychoanalyze-pinhead insert-zippyism yow) "yow" "games/yow.el" (12546 50550)) | |
2269 ;;; Generated autoloads from games/yow.el | |
2270 | |
2271 (autoload 'yow "yow" "\ | |
2272 Return or display a random Zippy quotation. With prefix arg, insert it." t nil) | |
2273 | |
2274 (autoload 'insert-zippyism "yow" "\ | |
2275 Prompt with completion for a known Zippy quotation, and insert it at point." t nil) | |
2276 | |
2277 (autoload 'psychoanalyze-pinhead "yow" "\ | |
2278 Zippy goes to the analyst." t nil) | |
2279 | |
2280 ;;;*** | |
2281 | |
2282 ;;;### (autoloads nil "custom" "gnus/custom.el" (12747 23775)) | |
2283 ;;; Generated autoloads from gnus/custom.el | |
2284 | |
2285 ;;;### (autoloads nil "dgnushack" "gnus/dgnushack.el" (12740 29825)) | |
2286 ;;; Generated autoloads from gnus/dgnushack.el | |
2287 | |
2288 ;;;### (autoloads (gnus-cache-generate-nov-databases gnus-cache-generate-active gnus-jog-cache) "gnus-cache" "gnus/gnus-cache.el" (12740 29819)) | |
2289 ;;; Generated autoloads from gnus/gnus-cache.el | |
2290 | |
2291 (autoload 'gnus-jog-cache "gnus-cache" "\ | |
2292 Go through all groups and put the articles into the cache." t nil) | |
2293 | |
2294 (autoload 'gnus-cache-generate-active "gnus-cache" "\ | |
2295 Generate the cache active file." t nil) | |
2296 | |
2297 (autoload 'gnus-cache-generate-nov-databases "gnus-cache" "\ | |
2298 Generate NOV files recursively starting in DIR." t nil) | |
2299 | |
2300 ;;;*** | |
2301 | |
2302 ;;;### (autoloads nil "gnus-cite" "gnus/gnus-cite.el" (12747 7527)) | |
2303 ;;; Generated autoloads from gnus/gnus-cite.el | |
2304 | |
2305 ;;;### (autoloads nil "gnus-cus" "gnus/gnus-cus.el" (12740 29826)) | |
2306 ;;; Generated autoloads from gnus/gnus-cus.el | |
2307 | |
2308 ;;;### (autoloads nil "gnus-demon" "gnus/gnus-demon.el" (12740 29833)) | |
2309 ;;; Generated autoloads from gnus/gnus-demon.el | |
2310 | |
2311 ;;;*** | |
2312 | |
2313 ;;;### (autoloads nil "gnus-edit" "gnus/gnus-edit.el" (12740 29827)) | |
2314 ;;; Generated autoloads from gnus/gnus-edit.el | |
2315 | |
2316 ;;;*** | |
2317 | |
2318 ;;;### (autoloads nil "gnus-ems" "gnus/gnus-ems.el" (12743 11575)) | |
2319 ;;; Generated autoloads from gnus/gnus-ems.el | |
2320 | |
2321 ;;;### (autoloads nil "gnus-gl" "gnus/gnus-gl.el" (12730 62156)) | |
2322 ;;; Generated autoloads from gnus/gnus-gl.el | |
2323 | |
2324 ;;;### (autoloads nil "gnus-kill" "gnus/gnus-kill.el" (12727 30112)) | |
2325 ;;; Generated autoloads from gnus/gnus-kill.el | |
2326 | |
2327 ;;;*** | |
2328 | |
2329 ;;;### (autoloads nil "gnus-mh" "gnus/gnus-mh.el" (12740 29827)) | |
2330 ;;; Generated autoloads from gnus/gnus-mh.el | |
2331 | |
2332 ;;;*** | |
2333 | |
2334 ;;;### (autoloads nil "gnus-msg" "gnus/gnus-msg.el" (12747 7527)) | |
2335 ;;; Generated autoloads from gnus/gnus-msg.el | |
2336 | |
2337 ;;;### (autoloads nil "gnus-nocem" "gnus/gnus-nocem.el" (12727 30244)) | |
2338 ;;; Generated autoloads from gnus/gnus-nocem.el | |
2339 | |
2340 ;;;*** | |
2341 | |
2342 ;;;### (autoloads nil "gnus-picon" "gnus/gnus-picon.el" (12747 7528)) | |
2343 ;;; Generated autoloads from gnus/gnus-picon.el | |
2344 | |
2345 ;;;### (autoloads nil "gnus-salt" "gnus/gnus-salt.el" (12745 38025)) | |
2346 ;;; Generated autoloads from gnus/gnus-salt.el | |
2347 | |
2348 ;;;### (autoloads (gnus-score-mode) "gnus-scomo" "gnus/gnus-scomo.el" (12740 29833)) | |
2349 ;;; Generated autoloads from gnus/gnus-scomo.el | |
2350 | |
2351 (autoload 'gnus-score-mode "gnus-scomo" "\ | |
2352 Mode for editing Gnus score files. | |
2353 This mode is an extended emacs-lisp mode. | |
2354 | |
2355 \\{gnus-score-mode-map}" t nil) | |
2356 | |
2357 ;;;*** | |
2358 | |
2359 ;;;### (autoloads nil "gnus-score" "gnus/gnus-score.el" (12744 54649)) | |
2360 ;;; Generated autoloads from gnus/gnus-score.el | |
2361 | |
2362 ;;;*** | |
2363 | |
2364 ;;;### (autoloads nil "gnus-setup" "gnus/gnus-setup.el" (12727 30246)) | |
2365 ;;; Generated autoloads from gnus/gnus-setup.el | |
2366 | |
2367 ;;;### (autoloads (gnus-batch-brew-soup) "gnus-soup" "gnus/gnus-soup.el" (12743 11596)) | |
2368 ;;; Generated autoloads from gnus/gnus-soup.el | |
2369 | |
2370 (autoload 'gnus-batch-brew-soup "gnus-soup" "\ | |
2371 Brew a SOUP packet from groups mention on the command line. | |
2372 Will use the remaining command line arguments as regular expressions | |
2373 for matching on group names. | |
2374 | |
2375 For instance, if you want to brew on all the nnml groups, as well as | |
2376 groups with \"emacs\" in the name, you could say something like: | |
2377 | |
2378 $ emacs -batch -f gnus-batch-brew-soup ^nnml \".*emacs.*\"" t nil) | |
2379 | |
2380 ;;;*** | |
2381 | |
2382 ;;;### (autoloads nil "gnus-srvr" "gnus/gnus-srvr.el" (12744 54653)) | |
2383 ;;; Generated autoloads from gnus/gnus-srvr.el | |
2384 | |
2385 ;;;*** | |
2386 | |
2387 ;;;### (autoloads nil "gnus-topic" "gnus/gnus-topic.el" (12727 30243)) | |
2388 ;;; Generated autoloads from gnus/gnus-topic.el | |
2389 | |
2390 ;;;*** | |
2391 | |
2392 ;;;### (autoloads nil "gnus-uu" "gnus/gnus-uu.el" (12743 11578)) | |
2393 ;;; Generated autoloads from gnus/gnus-uu.el | |
2394 | |
2395 ;;;*** | |
2396 | |
2397 ;;;### (autoloads nil "gnus-vis" "gnus/gnus-vis.el" (12747 7527)) | |
2398 ;;; Generated autoloads from gnus/gnus-vis.el | |
2399 | |
2400 ;;;### (autoloads nil "gnus-vm" "gnus/gnus-vm.el" (12727 30121)) | |
2401 ;;; Generated autoloads from gnus/gnus-vm.el | |
2402 | |
2403 ;;;*** | |
2404 | |
2405 ;;;### (autoloads nil "gnus-xmas" "gnus/gnus-xmas.el" (12747 65521)) | |
2406 ;;; Generated autoloads from gnus/gnus-xmas.el | |
2407 | |
2408 ;;;### (autoloads (gnus-batch-score gnus-fetch-group gnus gnus-other-frame gnus-slave gnus-no-server gnus-slave-no-server gnus-add-configuration gnus-update-format) "gnus" "gnus/gnus.el" (12748 38)) | |
2409 ;;; Generated autoloads from gnus/gnus.el | |
2410 | |
2411 (autoload 'gnus-update-format "gnus" "\ | |
2412 Update the format specification near point." t nil) | |
2413 | |
2414 (autoload 'gnus-add-configuration "gnus" "\ | |
2415 Add the window configuration CONF to `gnus-buffer-configuration'." nil nil) | |
2416 | |
2417 (autoload 'gnus-slave-no-server "gnus" "\ | |
2418 Read network news as a slave, without connecting to local server" t nil) | |
2419 | |
2420 (autoload 'gnus-no-server "gnus" "\ | |
2421 Read network news. | |
2422 If ARG is a positive number, Gnus will use that as the | |
2423 startup level. If ARG is nil, Gnus will be started at level 2. | |
2424 If ARG is non-nil and not a positive number, Gnus will | |
2425 prompt the user for the name of an NNTP server to use. | |
2426 As opposed to `gnus', this command will not connect to the local server." t nil) | |
2427 | |
2428 (autoload 'gnus-slave "gnus" "\ | |
2429 Read news as a slave." t nil) | |
2430 | |
2431 (autoload 'gnus-other-frame "gnus" "\ | |
2432 Pop up a frame to read news." t nil) | |
2433 | |
2434 (autoload 'gnus "gnus" "\ | |
2435 Read network news. | |
2436 If ARG is non-nil and a positive number, Gnus will use that as the | |
2437 startup level. If ARG is non-nil and not a positive number, Gnus will | |
2438 prompt the user for the name of an NNTP server to use." t nil) | |
2439 | |
2440 (autoload 'gnus-fetch-group "gnus" "\ | |
2441 Start Gnus if necessary and enter GROUP. | |
2442 Returns whether the fetching was successful or not." t nil) | |
2443 | |
2444 (defalias 'gnus-batch-kill 'gnus-batch-score) | |
2445 | |
2446 (autoload 'gnus-batch-score "gnus" "\ | |
2447 Run batched scoring. | |
2448 Usage: emacs -batch -l gnus -f gnus-batch-score <newsgroups> ... | |
2449 Newsgroups is a list of strings in Bnews format. If you want to score | |
2450 the comp hierarchy, you'd say \"comp.all\". If you would not like to | |
2451 score the alt hierarchy, you'd say \"!alt.all\"." t nil) | |
2452 | |
2453 ;;;*** | |
2454 | |
2455 ;;;### (autoloads nil "mailheader" "gnus/mailheader.el" (12727 30250)) | |
2456 ;;; Generated autoloads from gnus/mailheader.el | |
2457 | |
2458 ;;;### (autoloads (unbold-region bold-region message-news-other-frame message-news-other-window message-mail-other-frame message-mail-other-window message-bounce message-resend message-forward message-recover message-supersede message-cancel-news message-followup message-wide-reply message-reply message-news message-mail message-mode) "message" "gnus/message.el" (12747 7528)) | |
2459 ;;; Generated autoloads from gnus/message.el | |
2460 | |
2461 (defvar message-directory "~/Mail/" "\ | |
2462 *Directory from which all other mail file variables are derived.") | |
2463 | |
2464 (defvar message-fcc-handler-function 'rmail-output "\ | |
2465 *A function called to save outgoing articles. | |
2466 This function will be called with the name of the file to store the | |
2467 article in. The default function is `rmail-output' which saves in Unix | |
2468 mailbox format.") | |
2469 | |
2470 (defvar message-courtesy-message "The following message is a courtesy copy of an article\nthat has been posted as well.\n\n" "\ | |
2471 *This is inserted at the start of a mailed copy of a posted message. | |
2472 If this variable is nil, no such courtesy message will be added.") | |
2473 | |
2474 (defvar message-ignored-bounced-headers "^\\(Received\\|Return-Path\\):" "\ | |
2475 *Regexp that matches headers to be removed in resent bounced mail.") | |
2476 | |
2477 (defvar message-from-style 'default "\ | |
2478 *Specifies how \"From\" headers look. | |
2479 | |
2480 If `nil', they contain just the return address like: | |
2481 king@grassland.com | |
2482 If `parens', they look like: | |
2483 king@grassland.com (Elvis Parsley) | |
2484 If `angles', they look like: | |
2485 Elvis Parsley <king@grassland.com> | |
2486 | |
2487 Otherwise, most addresses look like `angles', but they look like | |
2488 `parens' if `angles' would need quoting and `parens' would not.") | |
2489 | |
2490 (defvar message-syntax-checks nil "\ | |
2491 Controls what syntax checks should not be performed on outgoing posts. | |
2492 To disable checking of long signatures, for instance, add | |
2493 `(signature . disabled)' to this list. | |
2494 | |
2495 Don't touch this variable unless you really know what you're doing. | |
2496 | |
2497 Checks include subject-cmsg multiple-headers sendsys message-id from | |
2498 long-lines control-chars size new-text redirected-followup signature | |
2499 approved sender empty empty-headers message-id from subject.") | |
2500 | |
2501 (defvar message-required-news-headers '(From Newsgroups Subject Date Message-ID (optional . Organization) Lines (optional . X-Newsreader)) "\ | |
2502 *Headers to be generated or prompted for when posting an article. | |
2503 RFC977 and RFC1036 require From, Date, Newsgroups, Subject, | |
2504 Message-ID. Organization, Lines, In-Reply-To, Expires, and | |
2505 X-Newsreader are optional. If don't you want message to insert some | |
2506 header, remove it from this list.") | |
2507 | |
2508 (defvar message-required-mail-headers '(From Subject Date (optional . In-Reply-To) Message-ID Lines (optional . X-Mailer)) "\ | |
2509 *Headers to be generated or prompted for when mailing a message. | |
2510 RFC822 required that From, Date, To, Subject and Message-ID be | |
2511 included. Organization, Lines and X-Mailer are optional.") | |
2512 | |
2513 (defvar message-deletable-headers '(Message-ID Date) "\ | |
2514 *Headers to be deleted if they already exist and were generated by message previously.") | |
2515 | |
2516 (defvar message-ignored-news-headers "^NNTP-Posting-Host:\\|^Xref:\\|^Bcc:\\|^Gcc:\\|^Fcc:" "\ | |
2517 *Regexp of headers to be removed unconditionally before posting.") | |
2518 | |
2519 (defvar message-ignored-mail-headers "^Gcc:\\|^Fcc:" "\ | |
2520 *Regexp of headers to be removed unconditionally before mailing.") | |
2521 | |
2522 (defvar message-ignored-supersedes-headers "^Path:\\|^Date\\|^NNTP-Posting-Host:\\|^Xref:\\|^Lines:\\|^Received:\\|^X-From-Line:\\|Return-Path:\\|^Supersedes:" "\ | |
2523 *Header lines matching this regexp will be deleted before posting. | |
2524 It's best to delete old Path and Date headers before posting to avoid | |
2525 any confusion.") | |
2526 | |
2527 (defvar message-signature-separator "^-- *$" "\ | |
2528 Regexp matching the signature separator.") | |
2529 | |
2530 (defvar message-interactive nil "\ | |
2531 Non-nil means when sending a message wait for and display errors. | |
2532 nil means let mailer mail back a message to report errors.") | |
2533 | |
2534 (defvar message-generate-new-buffers t "\ | |
2535 *Non-nil means that a new message buffer will be created whenever `mail-setup' is called. | |
2536 If this is a function, call that function with three parameters: The type, | |
2537 the to address and the group name. (Any of these may be nil.) The function | |
2538 should return the new buffer name.") | |
2539 | |
2540 (defvar message-kill-buffer-on-exit nil "\ | |
2541 *Non-nil means that the message buffer will be killed after sending a message.") | |
2542 | |
2543 (defvar message-user-organization-file "/usr/lib/news/organization" "\ | |
2544 *Local news organization file.") | |
2545 | |
2546 (defvar message-autosave-directory (concat (file-name-as-directory message-directory) "drafts/") "\ | |
2547 *Directory where message autosaves buffers. | |
2548 If nil, message won't autosave.") | |
2549 | |
2550 (defvar message-signature-before-forwarded-message t "\ | |
2551 *If non-nil, put the signature before any included forwarded message.") | |
2552 | |
2553 (defvar message-included-forward-headers "^From:\\|^Newsgroups:\\|^Subject:\\|^Date:\\|^Followup-To:\\|^Reply-To:\\|^Organization:\\|^Summary:\\|^Keywords:\\|^To:\\|^Cc:\\|^Posted-To:\\|^Mail-Copies-To:\\|^Apparently-To:\\|^Gnus-Warning:\\|^Resent-\\|^Message-ID:\\|^References:" "\ | |
2554 *Regexp matching headers to be included in forwarded messages.") | |
2555 | |
2556 (defvar message-ignored-resent-headers "^Return-receipt" "\ | |
2557 *All headers that match this regexp will be deleted when resending a message.") | |
2558 | |
2559 (defvar message-ignored-cited-headers "." "\ | |
2560 Delete these headers from the messages you yank.") | |
2561 | |
2562 (defvar message-send-mail-function 'message-send-mail-with-sendmail "\ | |
2563 Function to call to send the current buffer as mail. | |
2564 The headers should be delimited by a line whose contents match the | |
2565 variable `mail-header-separator'. | |
2566 | |
2567 Legal values include `message-send-mail-with-mh' and | |
2568 `message-send-mail-with-sendmail', which is the default.") | |
2569 | |
2570 (defvar message-send-news-function 'message-send-news "\ | |
2571 Function to call to send the current buffer as news. | |
2572 The headers should be delimited by a line whose contents match the | |
2573 variable `mail-header-separator'.") | |
2574 | |
2575 (defvar message-reply-to-function nil "\ | |
2576 Function that should return a list of headers. | |
2577 This function should pick out addresses from the To, Cc, and From headers | |
2578 and respond with new To and Cc headers.") | |
2579 | |
2580 (defvar message-wide-reply-to-function nil "\ | |
2581 Function that should return a list of headers. | |
2582 This function should pick out addresses from the To, Cc, and From headers | |
2583 and respond with new To and Cc headers.") | |
2584 | |
2585 (defvar message-followup-to-function nil "\ | |
2586 Function that should return a list of headers. | |
2587 This function should pick out addresses from the To, Cc, and From headers | |
2588 and respond with new To and Cc headers.") | |
2589 | |
2590 (defvar message-use-followup-to 'ask "\ | |
2591 *Specifies what to do with Followup-To header. | |
2592 If nil, ignore the header. If it is t, use its value, but query before | |
2593 using the \"poster\" value. If it is the symbol `ask', query the user | |
2594 whether to ignore the \"poster\" value. If it is the symbol `use', | |
2595 always use the value.") | |
2596 | |
2597 (defvar message-post-method (cond ((and (boundp 'gnus-post-method) gnus-post-method) gnus-post-method) ((boundp 'gnus-select-method) gnus-select-method) (t '(nnspool ""))) "\ | |
2598 Method used to post news.") | |
2599 | |
2600 (defvar message-generate-headers-first nil "\ | |
2601 *If non-nil, generate all possible headers before composing.") | |
2602 | |
2603 (defvar message-citation-line-function 'message-insert-citation-line "\ | |
2604 *Function called to insert the \"Whomever writes:\" line.") | |
2605 | |
2606 (defvar message-yank-prefix "> " "\ | |
2607 *Prefix inserted on the lines of yanked messages. | |
2608 nil means use indentation.") | |
2609 | |
2610 (defvar message-cite-function 'message-cite-original "\ | |
2611 *Function for citing an original message.") | |
2612 | |
2613 (defvar message-indent-citation-function 'message-indent-citation "\ | |
2614 *Function for modifying a citation just inserted in the mail buffer. | |
2615 This can also be a list of functions. Each function can find the | |
2616 citation between (point) and (mark t). And each function should leave | |
2617 point and mark around the citation text as modified.") | |
2618 | |
2619 (defvar message-signature t "\ | |
2620 *String to be inserted at the end of the message buffer. | |
2621 If t, the `message-signature-file' file will be inserted instead. | |
2622 If a function, the result from the function will be used instead. | |
2623 If a form, the result from the form will be used instead.") | |
2624 | |
2625 (defvar message-signature-file "~/.signature" "\ | |
2626 *File containing the text inserted at end of message. buffer.") | |
2627 | |
2628 (defvar message-default-headers nil "\ | |
2629 *A string containing header lines to be inserted in outgoing messages. | |
2630 It is inserted before you edit the message, so you can edit or delete | |
2631 these lines.") | |
2632 | |
2633 (defvar message-default-mail-headers nil "\ | |
2634 *A string of header lines to be inserted in outgoing mails.") | |
2635 | |
2636 (defvar message-default-news-headers nil "\ | |
2637 *A string of header lines to be inserted in outgoing news articles.") | |
2638 | |
2639 (autoload 'message-mode "message" "\ | |
2640 Major mode for editing mail and news to be sent. | |
2641 Like Text Mode but with these additional commands: | |
2642 C-c C-s message-send (send the message) C-c C-c message-send-and-exit | |
2643 C-c C-f move to a header field (and create it if there isn't): | |
2644 C-c C-f C-t move to To C-c C-f C-s move to Subject | |
2645 C-c C-f C-c move to Cc C-c C-f C-b move to Bcc | |
2646 C-c C-f C-f move to Fcc C-c C-f C-r move to Reply-To | |
2647 C-c C-f C-u move to Summary C-c C-f C-n move to Newsgroups | |
2648 C-c C-f C-k move to Keywords C-c C-f C-d move to Distribution | |
2649 C-c C-f C-o move to Followup-To | |
2650 C-c C-t message-insert-to (add a To header to a news followup) | |
2651 C-c C-n message-insert-newsgroups (add a Newsgroup header to a news reply) | |
2652 C-c C-b message-goto-body (move to beginning of message text). | |
2653 C-c C-i message-goto-signature (move to the beginning of the signature). | |
2654 C-c C-w message-insert-signature (insert `message-signature-file' file). | |
2655 C-c C-y message-yank-original (insert current message, if any). | |
2656 C-c C-q message-fill-yanked-message (fill what was yanked). | |
2657 C-c C-r message-ceasar-buffer-body (rot13 the message body)." t nil) | |
2658 | |
2659 (autoload 'message-mail "message" "\ | |
2660 Start editing a mail message to be sent." t nil) | |
2661 | |
2662 (autoload 'message-news "message" "\ | |
2663 Start editing a news article to be sent." t nil) | |
2664 | |
2665 (autoload 'message-reply "message" "\ | |
2666 Start editing a reply to the article in the current buffer." t nil) | |
2667 | |
2668 (autoload 'message-wide-reply "message" nil t nil) | |
2669 | |
2670 (autoload 'message-followup "message" nil t nil) | |
2671 | |
2672 (autoload 'message-cancel-news "message" "\ | |
2673 Cancel an article you posted." t nil) | |
2674 | |
2675 (autoload 'message-supersede "message" "\ | |
2676 Start composing a message to supersede the current message. | |
2677 This is done simply by taking the old article and adding a Supersedes | |
2678 header line with the old Message-ID." t nil) | |
2679 | |
2680 (autoload 'message-recover "message" "\ | |
2681 Reread contents of current buffer from its last auto-save file." t nil) | |
2682 | |
2683 (autoload 'message-forward "message" "\ | |
2684 Forward the current message via mail. | |
2685 Optional NEWS will use news to forward instead of mail." t nil) | |
2686 | |
2687 (autoload 'message-resend "message" "\ | |
2688 Resend the current article to ADDRESS." t nil) | |
2689 | |
2690 (autoload 'message-bounce "message" "\ | |
2691 Re-mail the current message. | |
2692 This only makes sense if the current message is a bounce message than | |
2693 contains some mail you have written which has been bounced back to | |
2694 you." t nil) | |
2695 | |
2696 (autoload 'message-mail-other-window "message" "\ | |
2697 Like `message-mail' command, but display mail buffer in another window." t nil) | |
2698 | |
2699 (autoload 'message-mail-other-frame "message" "\ | |
2700 Like `message-mail' command, but display mail buffer in another frame." t nil) | |
2701 | |
2702 (autoload 'message-news-other-window "message" "\ | |
2703 Start editing a news article to be sent." t nil) | |
2704 | |
2705 (autoload 'message-news-other-frame "message" "\ | |
2706 Start editing a news article to be sent." t nil) | |
2707 | |
2708 (autoload 'bold-region "message" "\ | |
2709 Bold all nonblank characters in the region. | |
2710 Works by overstriking characters. | |
2711 Called from program, takes two arguments START and END | |
2712 which specify the range to operate on." t nil) | |
2713 | |
2714 (autoload 'unbold-region "message" "\ | |
2715 Remove all boldness (overstruck characters) in the region. | |
2716 Called from program, takes two arguments START and END | |
2717 which specify the range to operate on." t nil) | |
2718 | |
2719 ;;;*** | |
2720 | |
2721 ;;;### (autoloads nil "messagexmas" "gnus/messagexmas.el" (12743 11600)) | |
2722 ;;; Generated autoloads from gnus/messagexmas.el | |
2723 | |
2724 ;;;### (autoloads nil "nnbabyl" "gnus/nnbabyl.el" (12740 29830)) | |
2725 ;;; Generated autoloads from gnus/nnbabyl.el | |
2726 | |
2727 ;;;*** | |
2728 | |
2729 ;;;### (autoloads nil "nndb" "gnus/nndb.el" (12740 29835)) | |
2730 ;;; Generated autoloads from gnus/nndb.el | |
2731 | |
2732 ;;;### (autoloads nil "nndir" "gnus/nndir.el" (12727 30126)) | |
2733 ;;; Generated autoloads from gnus/nndir.el | |
2734 | |
2735 ;;;*** | |
2736 | |
2737 ;;;### (autoloads nil "nndoc" "gnus/nndoc.el" (12727 30128)) | |
2738 ;;; Generated autoloads from gnus/nndoc.el | |
2739 | |
2740 ;;;*** | |
2741 | |
2742 ;;;### (autoloads nil "nndraft" "gnus/nndraft.el" (12727 30254)) | |
2743 ;;; Generated autoloads from gnus/nndraft.el | |
2744 | |
2745 ;;;*** | |
2746 | |
2747 ;;;### (autoloads nil "nneething" "gnus/nneething.el" (12727 30128)) | |
2748 ;;; Generated autoloads from gnus/nneething.el | |
2749 | |
2750 ;;;### (autoloads (nnfolder-generate-active-file) "nnfolder" "gnus/nnfolder.el" (12740 29830)) | |
2751 ;;; Generated autoloads from gnus/nnfolder.el | |
2752 | |
2753 (autoload 'nnfolder-generate-active-file "nnfolder" "\ | |
2754 Look for mbox folders in the nnfolder directory and make them into groups." t nil) | |
2755 | |
2756 ;;;*** | |
2757 | |
2758 ;;;### (autoloads nil "nnheader" "gnus/nnheader.el" (12747 7528)) | |
2759 ;;; Generated autoloads from gnus/nnheader.el | |
2760 | |
2761 ;;;*** | |
2762 | |
2763 ;;;### (autoloads nil "nnheaderems" "gnus/nnheaderems.el" (12740 29835)) | |
2764 ;;; Generated autoloads from gnus/nnheaderems.el | |
2765 | |
2766 ;;;### (autoloads nil "nnheaderxm" "gnus/nnheaderxm.el" (12740 29473)) | |
2767 ;;; Generated autoloads from gnus/nnheaderxm.el | |
2768 | |
2769 ;;;### (autoloads (nnkiboze-generate-groups) "nnkiboze" "gnus/nnkiboze.el" (12727 30131)) | |
2770 ;;; Generated autoloads from gnus/nnkiboze.el | |
2771 | |
2772 (autoload 'nnkiboze-generate-groups "nnkiboze" "\ | |
2773 Usage: emacs -batch -l nnkiboze -f nnkiboze-generate-groups | |
2774 Finds out what articles are to be part of the nnkiboze groups." t nil) | |
2775 | |
2776 ;;;*** | |
2777 | |
2778 ;;;### (autoloads nil "nnmail" "gnus/nnmail.el" (12743 11580)) | |
2779 ;;; Generated autoloads from gnus/nnmail.el | |
2780 | |
2781 ;;;### (autoloads nil "nnmbox" "gnus/nnmbox.el" (12740 29831)) | |
2782 ;;; Generated autoloads from gnus/nnmbox.el | |
2783 | |
2784 ;;;*** | |
2785 | |
2786 ;;;### (autoloads nil "nnmh" "gnus/nnmh.el" (12745 38025)) | |
2787 ;;; Generated autoloads from gnus/nnmh.el | |
2788 | |
2789 ;;;### (autoloads (nnml-generate-nov-databases) "nnml" "gnus/nnml.el" (12745 38025)) | |
2790 ;;; Generated autoloads from gnus/nnml.el | |
2791 | |
2792 (autoload 'nnml-generate-nov-databases "nnml" "\ | |
2793 Generate nov databases in all nnml directories." t nil) | |
2794 | |
2795 ;;;*** | |
2796 | |
2797 ;;;### (autoloads nil "nnoo" "gnus/nnoo.el" (12727 30255)) | |
2798 ;;; Generated autoloads from gnus/nnoo.el | |
2799 | |
2800 ;;;### (autoloads (nnsoup-revert-variables nnsoup-set-variables nnsoup-pack-replies) "nnsoup" "gnus/nnsoup.el" (12727 30256)) | |
2801 ;;; Generated autoloads from gnus/nnsoup.el | |
2802 | |
2803 (autoload 'nnsoup-pack-replies "nnsoup" "\ | |
2804 Make an outbound package of SOUP replies." t nil) | |
2805 | |
2806 (autoload 'nnsoup-set-variables "nnsoup" "\ | |
2807 Use the SOUP methods for posting news and mailing mail." t nil) | |
2808 | |
2809 (autoload 'nnsoup-revert-variables "nnsoup" "\ | |
2810 Revert posting and mailing methods to the standard Emacs methods." t nil) | |
2811 | |
2812 ;;;*** | |
2813 | |
2814 ;;;### (autoloads nil "nnspool" "gnus/nnspool.el" (12743 11584)) | |
2815 ;;; Generated autoloads from gnus/nnspool.el | |
2816 | |
2817 ;;;*** | |
2818 | |
2819 ;;;### (autoloads nil "nntp" "gnus/nntp.el" (12744 54653)) | |
2820 ;;; Generated autoloads from gnus/nntp.el | |
2821 | |
2822 ;;;### (autoloads nil "nnvirtual" "gnus/nnvirtual.el" (12740 29832)) | |
2823 ;;; Generated autoloads from gnus/nnvirtual.el | |
2824 | |
2825 ;;;### (autoloads (gnus-smiley-display) "smiley" "gnus/smiley.el" (12743 11601)) | |
2826 ;;; Generated autoloads from gnus/smiley.el | |
2827 | |
2828 (autoload 'gnus-smiley-display "smiley" nil t nil) | |
2829 | |
2830 ;;;*** | |
2831 | |
2832 ;;;### (autoloads nil "adapt" "hm--html-menus/adapt.el" (12351 16418)) | |
2833 ;;; Generated autoloads from hm--html-menus/adapt.el | |
2834 | |
2835 ;;;### (autoloads nil "hm--date" "hm--html-menus/hm--date.el" (12376 19696)) | |
2836 ;;; Generated autoloads from hm--html-menus/hm--date.el | |
2837 | |
2838 ;;;*** | |
2839 | |
2840 ;;;### (autoloads nil "hm--html-configuration" "hm--html-menus/hm--html-configuration.el" (12583 60715)) | |
2841 ;;; Generated autoloads from hm--html-menus/hm--html-configuration.el | |
2842 | |
2843 ;;;*** | |
2844 | |
2845 ;;;### (autoloads nil "hm--html-keys" "hm--html-menus/hm--html-keys.el" (12583 60717)) | |
2846 ;;; Generated autoloads from hm--html-menus/hm--html-keys.el | |
2847 | |
2848 ;;;*** | |
2849 | |
2850 ;;;### (autoloads nil "hm--html-menu" "hm--html-menus/hm--html-menu.el" (12583 60713)) | |
2851 ;;; Generated autoloads from hm--html-menus/hm--html-menu.el | |
2852 | |
2853 ;;;*** | |
2854 | |
2855 ;;;### (autoloads nil "hm--html" "hm--html-menus/hm--html.el" (12639 8719)) | |
2856 ;;; Generated autoloads from hm--html-menus/hm--html.el | |
2857 | |
2858 ;;;*** | |
2859 | |
2860 ;;;### (autoloads nil "html-mode" "hm--html-menus/html-mode.el" (12639 8719)) | |
2861 ;;; Generated autoloads from hm--html-menus/html-mode.el | |
2862 | |
2863 ;;;*** | |
2864 | |
2865 ;;;### (autoloads (html-view-get-display html-view-goto-url html-view-view-buffer html-view-view-file html-view-start-mosaic) "html-view" "hm--html-menus/html-view.el" (12318 54261)) | |
2866 ;;; Generated autoloads from hm--html-menus/html-view.el | |
2867 | |
2868 (autoload 'html-view-start-mosaic "html-view" "\ | |
2869 Start Mosaic." t nil) | |
2870 | |
2871 (autoload 'html-view-view-file "html-view" "\ | |
2872 View an html file with Mosaic." t nil) | |
2873 | |
2874 (autoload 'html-view-view-buffer "html-view" "\ | |
2875 View html buffer with Mosaic. | |
2876 If BUFFER-TO-VIEW is nil, then the current buffer is used." t nil) | |
2877 | |
2878 (autoload 'html-view-goto-url "html-view" "\ | |
2879 Goto an URL in Mosaic." t nil) | |
2880 | |
2881 (autoload 'html-view-get-display "html-view" "\ | |
2882 Get the display for Mosaic." t nil) | |
2883 | |
2884 ;;;*** | |
2885 | |
2886 ;;;### (autoloads nil "tmpl-minor-mode" "hm--html-menus/tmpl-minor-mode.el" (12639 8720)) | |
2887 ;;; Generated autoloads from hm--html-menus/tmpl-minor-mode.el | |
2888 | |
2889 ;;;### (autoloads nil "hact" "hyperbole/hact.el" (12376 19672)) | |
2890 ;;; Generated autoloads from hyperbole/hact.el | |
2891 | |
2892 ;;;*** | |
2893 | |
2894 ;;;### (autoloads nil "hactypes" "hyperbole/hactypes.el" (12558 60986)) | |
2895 ;;; Generated autoloads from hyperbole/hactypes.el | |
2896 | |
2897 ;;;*** | |
2898 | |
2899 ;;;### (autoloads nil "hargs" "hyperbole/hargs.el" (12384 54290)) | |
2900 ;;; Generated autoloads from hyperbole/hargs.el | |
2901 | |
2902 ;;;### (autoloads nil "hbdata" "hyperbole/hbdata.el" (12376 19673)) | |
2903 ;;; Generated autoloads from hyperbole/hbdata.el | |
2904 | |
2905 ;;;*** | |
2906 | |
2907 ;;;### (autoloads nil "hbmap" "hyperbole/hbmap.el" (12558 60987)) | |
2908 ;;; Generated autoloads from hyperbole/hbmap.el | |
2909 | |
2910 ;;;*** | |
2911 | |
2912 ;;;### (autoloads nil "hbut" "hyperbole/hbut.el" (12558 60988)) | |
2913 ;;; Generated autoloads from hyperbole/hbut.el | |
2914 | |
2915 ;;;*** | |
2916 | |
2917 ;;;### (autoloads nil "hgnus" "hyperbole/hgnus.el" (12558 60988)) | |
2918 ;;; Generated autoloads from hyperbole/hgnus.el | |
2919 | |
2920 ;;;### (autoloads nil "hhist" "hyperbole/hhist.el" (12376 19675)) | |
2921 ;;; Generated autoloads from hyperbole/hhist.el | |
2922 | |
2923 ;;;*** | |
2924 | |
2925 ;;;### (autoloads nil "hib-doc-id" "hyperbole/hib-doc-id.el" (12376 19675)) | |
2926 ;;; Generated autoloads from hyperbole/hib-doc-id.el | |
2927 | |
2928 ;;;*** | |
2929 | |
2930 ;;;### (autoloads nil "hib-kbd" "hyperbole/hib-kbd.el" (12558 60988)) | |
2931 ;;; Generated autoloads from hyperbole/hib-kbd.el | |
2932 | |
2933 ;;;*** | |
2934 | |
2935 ;;;### (autoloads nil "hibtypes" "hyperbole/hibtypes.el" (12558 60986)) | |
2936 ;;; Generated autoloads from hyperbole/hibtypes.el | |
2937 | |
2938 ;;;*** | |
2939 | |
2940 ;;;### (autoloads nil "hinit" "hyperbole/hinit.el" (12558 60989)) | |
2941 ;;; Generated autoloads from hyperbole/hinit.el | |
2942 | |
2943 ;;;### (autoloads nil "hlvar" "hyperbole/hlvar.el" (12376 19677)) | |
2944 ;;; Generated autoloads from hyperbole/hlvar.el | |
2945 | |
2946 ;;;### (autoloads (hmail:compose) "hmail" "hyperbole/hmail.el" (12558 60989)) | |
2947 ;;; Generated autoloads from hyperbole/hmail.el | |
2948 | |
2949 (autoload 'hmail:compose "hmail" "\ | |
2950 Compose mail with ADDRESS and evaluation of EXPR. | |
2951 Optional SUBJECT and HELP message may also be given." t nil) | |
2952 | |
2953 ;;;*** | |
2954 | |
2955 ;;;### (autoloads nil "hmh" "hyperbole/hmh.el" (12376 19677)) | |
2956 ;;; Generated autoloads from hyperbole/hmh.el | |
2957 | |
2958 ;;;*** | |
2959 | |
2960 ;;;### (autoloads nil "hmoccur" "hyperbole/hmoccur.el" (12376 19678)) | |
2961 ;;; Generated autoloads from hyperbole/hmoccur.el | |
2962 | |
2963 ;;;### (autoloads (Info-handle-in-note smart-info-assist smart-info) "hmous-info" "hyperbole/hmous-info.el" (12558 60990)) | |
2964 ;;; Generated autoloads from hyperbole/hmous-info.el | |
2965 | |
2966 (autoload 'smart-info "hmous-info" "\ | |
2967 Walks through Info documentation networks using one key or mouse key. | |
2968 | |
2969 If key is pressed within: | |
2970 (1) the first line of an Info Menu Entry or Cross Reference, the desired node | |
2971 is found; | |
2972 (2) the Up, Next, or Previous entries of a Node Header (first line), | |
2973 the desired node is found; | |
2974 (3) the File entry of a Node Header (first line), | |
2975 the 'Top' node within that file is found; | |
2976 (4) at the end of the current node, the Next node is found (this will | |
2977 descend subtrees if the function 'Info-global-next' is bound); | |
2978 (5) anywhere else (e.g. at the end of a line), the current node entry is | |
2979 scrolled up one windowful. | |
2980 | |
2981 Returns t if key is pressed within an Info Node Header, Cross Reference, | |
2982 or a Menu; otherwise returns nil." t nil) | |
2983 | |
2984 (autoload 'smart-info-assist "hmous-info" "\ | |
2985 Walks through Info documentation networks using one assist-key or mouse assist-key. | |
2986 | |
2987 If assist-key is pressed within: | |
2988 (1) the first line of an Info Menu Entry or Cross Reference, the desired node | |
2989 is found; | |
2990 (2) the Up, Next, or Previous entries of a Node Header (first line), | |
2991 the last node in the history list is found; | |
2992 (3) the File entry of a Node Header (first line), | |
2993 the 'DIR' root-level node is found; | |
2994 (4) at the end of the current node, the Previous node is found (this will | |
2995 return from subtrees if the function 'Info-global-prev is bound); | |
2996 (5) anywhere else (e.g. at the end of a line), the current node entry is | |
2997 scrolled down one windowful. | |
2998 | |
2999 Returns t if assist-key is pressed within an Info Node Header, Cross Reference, | |
3000 or a Menu; otherwise returns nil." t nil) | |
3001 | |
3002 (autoload 'Info-handle-in-note "hmous-info" "\ | |
3003 Follows an Info cross-reference. | |
3004 If point is within the first line of an Info note (cross-reference), follows | |
3005 cross-reference and returns t; otherwise returns nil." nil nil) | |
3006 | |
3007 ;;;*** | |
3008 | |
3009 ;;;### (autoloads nil "hmouse-drv" "hyperbole/hmouse-drv.el" (12558 60992)) | |
3010 ;;; Generated autoloads from hyperbole/hmouse-drv.el | |
3011 | |
3012 ;;;*** | |
3013 | |
3014 ;;;### (autoloads nil "hmouse-key" "hyperbole/hmouse-key.el" (12384 54293)) | |
3015 ;;; Generated autoloads from hyperbole/hmouse-key.el | |
3016 | |
3017 ;;;### (autoloads nil "hmouse-mod" "hyperbole/hmouse-mod.el" (12376 19680)) | |
3018 ;;; Generated autoloads from hyperbole/hmouse-mod.el | |
3019 | |
3020 ;;;*** | |
3021 | |
3022 ;;;### (autoloads nil "hmouse-reg" "hyperbole/hmouse-reg.el" (12384 54294)) | |
3023 ;;; Generated autoloads from hyperbole/hmouse-reg.el | |
3024 | |
3025 ;;;*** | |
3026 | |
3027 ;;;### (autoloads nil "hmouse-sh" "hyperbole/hmouse-sh.el" (12384 54294)) | |
3028 ;;; Generated autoloads from hyperbole/hmouse-sh.el | |
3029 | |
3030 ;;;*** | |
3031 | |
3032 ;;;### (autoloads (smart-tags-file smart-tags-file-path smart-objc-oobr smart-objc smart-fortran-at-tag-p smart-c++-oobr smart-c++ smart-c-at-tag-p smart-asm-at-tag-p) "hmouse-tag" "hyperbole/hmouse-tag.el" (12384 54295)) | |
3033 ;;; Generated autoloads from hyperbole/hmouse-tag.el | |
3034 | |
3035 (autoload 'smart-asm-at-tag-p "hmouse-tag" "\ | |
3036 Return assembly tag name that point is within, else nil." nil nil) | |
3037 | |
3038 (autoload 'smart-c-at-tag-p "hmouse-tag" "\ | |
3039 Return C tag name that point is within, else nil." nil nil) | |
3040 | |
3041 (autoload 'smart-c++ "hmouse-tag" "\ | |
3042 Jumps to the definition of optional C++ IDENTIFIER or the one at point. | |
3043 Optional second arg NEXT means jump to next matching C++ tag. | |
3044 | |
3045 It assumes that its caller has already checked that the key was pressed in an | |
3046 appropriate buffer and has moved the cursor to the selected buffer. | |
3047 | |
3048 If: | |
3049 (1) on a '#include' statement, the include file is displayed; | |
3050 Look for include file in directory lists 'smart-c-cpp-include-dirs' | |
3051 and 'smart-c-include-dirs'. | |
3052 (2) on a C++ identifier, the identifier definition is displayed, | |
3053 assuming the identifier is found within an 'etags' generated tag file | |
3054 in the current directory or any of its ancestor directories. | |
3055 (3) if 'smart-c-use-lib-man' is non-nil, the C++ identifier is | |
3056 recognized as a library symbol, and a man page is found for the | |
3057 identifier, then the man page is displayed." t nil) | |
3058 | |
3059 (autoload 'smart-c++-oobr "hmouse-tag" "\ | |
3060 Jumps to the definition of selected C++ construct via OO-Browser support. | |
3061 Optional JUNK is ignored. Does nothing if the OO-Browser is not available. | |
3062 | |
3063 It assumes that its caller has already checked that the key was pressed in an | |
3064 appropriate buffer and has moved the cursor to the selected buffer. | |
3065 | |
3066 If key is pressed: | |
3067 (1) on a '#include' statement, the include file is displayed; | |
3068 Look for include file in directory lists 'smart-c-cpp-include-dirs' | |
3069 and 'smart-c-include-dirs'. | |
3070 (2) within a method declaration, its definition is displayed; | |
3071 (3) on a class name, the class definition is shown. | |
3072 | |
3073 (2) and (3) require that an OO-Browser Environment has been loaded with | |
3074 the {M-x br-env-load RTN} command." t nil) | |
3075 | |
3076 (autoload 'smart-fortran-at-tag-p "hmouse-tag" "\ | |
3077 Return Fortran tag name that point is within, else nil." nil nil) | |
3078 | |
3079 (autoload 'smart-objc "hmouse-tag" "\ | |
3080 Jumps to the definition of optional Objective-C IDENTIFIER or the one at point. | |
3081 Optional second arg NEXT means jump to next matching Objective-C tag. | |
3082 | |
3083 It assumes that its caller has already checked that the key was pressed in an | |
3084 appropriate buffer and has moved the cursor to the selected buffer. | |
3085 | |
3086 If: | |
3087 (1) on a '#include' statement, the include file is displayed; | |
3088 Look for include file in directory lists 'smart-c-cpp-include-dirs' | |
3089 and 'smart-c-include-dirs'. | |
3090 (2) on an Objective-C identifier, the identifier definition is displayed, | |
3091 assuming the identifier is found within an 'etags' generated tag file | |
3092 in the current directory or any of its ancestor directories. | |
3093 (3) if 'smart-c-use-lib-man' is non-nil, the Objective-C identifier is | |
3094 recognized as a library symbol, and a man page is found for the | |
3095 identifier, then the man page is displayed." t nil) | |
3096 | |
3097 (autoload 'smart-objc-oobr "hmouse-tag" "\ | |
3098 Jumps to the definition of selected Objective-C construct via OO-Browser support. | |
3099 Optional JUNK is ignored. Does nothing if the OO-Browser is not available. | |
3100 | |
3101 It assumes that its caller has already checked that the key was pressed in an | |
3102 appropriate buffer and has moved the cursor to the selected buffer. | |
3103 | |
3104 If key is pressed: | |
3105 (1) on a '#include' statement, the include file is displayed; | |
3106 Look for include file in directory lists 'smart-c-cpp-include-dirs' | |
3107 and 'smart-c-include-dirs'. | |
3108 (2) within a method declaration, its definition is displayed; | |
3109 (3) on a class name, the class definition is shown. | |
3110 | |
3111 (2) and (3) require that an OO-Browser Environment has been loaded with | |
3112 the {M-x br-env-load RTN} command." t nil) | |
3113 | |
3114 (autoload 'smart-tags-file-path "hmouse-tag" "\ | |
3115 Expand relative FILE name by looking it up in the nearest tags file. | |
3116 Return FILE unchanged if it exists relative to the current directory or | |
3117 cannot be expanded via a tags file." nil nil) | |
3118 | |
3119 (autoload 'smart-tags-file "hmouse-tag" "\ | |
3120 Return appropriate tags file name for CURR-FILENAME or 'tags-file-name'." nil nil) | |
3121 | |
3122 ;;;*** | |
3123 | |
3124 ;;;### (autoloads nil "hpath" "hyperbole/hpath.el" (12558 60991)) | |
3125 ;;; Generated autoloads from hyperbole/hpath.el | |
3126 | |
3127 ;;;### (autoloads nil "hrmail" "hyperbole/hrmail.el" (12376 19683)) | |
3128 ;;; Generated autoloads from hyperbole/hrmail.el | |
3129 | |
3130 ;;;*** | |
3131 | |
3132 ;;;### (autoloads nil "hsite-ex" "hyperbole/hsite-ex.el" (12558 60993)) | |
3133 ;;; Generated autoloads from hyperbole/hsite-ex.el | |
3134 | |
3135 ;;;*** | |
3136 | |
3137 ;;;### (autoloads nil "hsite" "hyperbole/hsite.el" (12558 61003)) | |
3138 ;;; Generated autoloads from hyperbole/hsite.el | |
3139 | |
3140 ;;;### (autoloads nil "hsmail" "hyperbole/hsmail.el" (12376 19682)) | |
3141 ;;; Generated autoloads from hyperbole/hsmail.el | |
3142 | |
3143 ;;;*** | |
3144 | |
3145 ;;;### (autoloads nil "hsys-hbase" "hyperbole/hsys-hbase.el" (12558 60994)) | |
3146 ;;; Generated autoloads from hyperbole/hsys-hbase.el | |
3147 | |
3148 ;;;*** | |
3149 | |
3150 ;;;### (autoloads nil "hsys-w3" "hyperbole/hsys-w3.el" (12558 60995)) | |
3151 ;;; Generated autoloads from hyperbole/hsys-w3.el | |
3152 | |
3153 ;;;*** | |
3154 | |
3155 ;;;### (autoloads nil "hsys-wais" "hyperbole/hsys-wais.el" (12558 60995)) | |
3156 ;;; Generated autoloads from hyperbole/hsys-wais.el | |
3157 | |
3158 ;;;### (autoloads nil "hsys-www" "hyperbole/hsys-www.el" (12376 19685)) | |
3159 ;;; Generated autoloads from hyperbole/hsys-www.el | |
3160 | |
3161 ;;;*** | |
3162 | |
3163 ;;;### (autoloads nil "htz" "hyperbole/htz.el" (12376 19685)) | |
3164 ;;; Generated autoloads from hyperbole/htz.el | |
3165 | |
3166 ;;;*** | |
3167 | |
3168 ;;;### (autoloads nil "hui-em19-b" "hyperbole/hui-em19-b.el" (12558 60996)) | |
3169 ;;; Generated autoloads from hyperbole/hui-em19-b.el | |
3170 | |
3171 ;;;### (autoloads nil "hui-ep-but" "hyperbole/hui-ep-but.el" (12376 19685)) | |
3172 ;;; Generated autoloads from hyperbole/hui-ep-but.el | |
3173 | |
3174 ;;;*** | |
3175 | |
3176 ;;;### (autoloads nil "hui-epV4-b" "hyperbole/hui-epV4-b.el" (12376 19687)) | |
3177 ;;; Generated autoloads from hyperbole/hui-epV4-b.el | |
3178 | |
3179 ;;;*** | |
3180 | |
3181 ;;;### (autoloads nil "hui-menu" "hyperbole/hui-menu.el" (12558 61004)) | |
3182 ;;; Generated autoloads from hyperbole/hui-menu.el | |
3183 | |
3184 ;;;*** | |
3185 | |
3186 ;;;### (autoloads nil "hui-mini" "hyperbole/hui-mini.el" (12558 61074)) | |
3187 ;;; Generated autoloads from hyperbole/hui-mini.el | |
3188 | |
3189 ;;;*** | |
3190 | |
3191 ;;;### (autoloads nil "hui-mouse" "hyperbole/hui-mouse.el" (12558 60994)) | |
3192 ;;; Generated autoloads from hyperbole/hui-mouse.el | |
3193 | |
3194 ;;;*** | |
3195 | |
3196 ;;;### (autoloads nil "hui-window" "hyperbole/hui-window.el" (12558 60997)) | |
3197 ;;; Generated autoloads from hyperbole/hui-window.el | |
3198 | |
3199 ;;;*** | |
3200 | |
3201 ;;;### (autoloads nil "hui-xe-but" "hyperbole/hui-xe-but.el" (12558 60998)) | |
3202 ;;; Generated autoloads from hyperbole/hui-xe-but.el | |
3203 | |
3204 ;;;### (autoloads nil "hui" "hyperbole/hui.el" (12376 19688)) | |
3205 ;;; Generated autoloads from hyperbole/hui.el | |
3206 | |
3207 ;;;### (autoloads (var:append) "hvar" "hyperbole/hvar.el" (12376 19689)) | |
3208 ;;; Generated autoloads from hyperbole/hvar.el | |
3209 | |
3210 (autoload 'var:append "hvar" "\ | |
3211 Appends to value held by VAR-SYMBOL-NAME, LIST-TO-ADD. Returns new value. | |
3212 If VAR-SYMBOL-NAME is unbound, it is set to LIST-TO-ADD. | |
3213 Often used to append to 'hook' variables." nil nil) | |
3214 | |
3215 ;;;*** | |
3216 | |
3217 ;;;### (autoloads nil "hversion" "hyperbole/hversion.el" (12558 60998)) | |
3218 ;;; Generated autoloads from hyperbole/hversion.el | |
3219 | |
3220 ;;;### (autoloads nil "hvm" "hyperbole/hvm.el" (12376 19689)) | |
3221 ;;; Generated autoloads from hyperbole/hvm.el | |
3222 | |
3223 ;;;### (autoloads (hypb:configuration) "hypb" "hyperbole/hypb.el" (12558 61000)) | |
3224 ;;; Generated autoloads from hyperbole/hypb.el | |
3225 | |
3226 (autoload 'hypb:configuration "hypb" "\ | |
3227 Insert Emacs configuration information at the end of optional OUT-BUF or the current buffer." nil nil) | |
3228 | |
3229 ;;;*** | |
3230 | |
3231 ;;;### (autoloads nil "hyperbole" "hyperbole/hyperbole.el" (12558 60999)) | |
3232 ;;; Generated autoloads from hyperbole/hyperbole.el | |
3233 | |
3234 (defvar action-key-url-function 'w3-fetch "\ | |
3235 Value is a function of one argument, a url, which displays the url referent. | |
3236 Possible values are: | |
3237 w3-fetch - display using the W3 Emacs web browser; | |
3238 highlight-headers-follow-url-netscape - display in Netscape; | |
3239 highlight-headers-follow-url-mosaic - display in Mosaic.") | |
3240 | |
3241 (defvar kimport:mode-alist '((t . kimport:text) (outline-mode . kimport:star-outline)) "\ | |
3242 Alist of (major-mode . importation-function) elements. | |
3243 This determines the type of importation done on a file when `kimport:file' is | |
3244 called if the major mode of the import file matches the car of an element in | |
3245 this list. If there is no match, then `kimport:suffix-alist' is checked. If | |
3246 that yields no match, the element in this list whose car is 't is used. It | |
3247 normally does an import of a koutline or text file. | |
3248 | |
3249 Each importation-function must take two arguments, a buffer/file to import | |
3250 and a buffer/file into which to insert the imported elements and a third | |
3251 optional argument, CHILDREN-P, which when non-nil means insert imported cells | |
3252 as the initial set of children of the current cell, if any. | |
3253 | |
3254 outline-mode - imported as an Emacs outline whose entries begin with | |
3255 asterisks; | |
3256 .kot | |
3257 .kotl - imported as a structured koutline | |
3258 | |
3259 all others - imported as text.") | |
3260 | |
3261 (defvar kimport:suffix-alist '(("\\.otl$" . kimport:star-outline) ("\\.aug$" . kimport:aug-post-outline)) "\ | |
3262 Alist of (buffer-name-suffix-regexp . importation-function) elements. | |
3263 This determines the type of importation done on a file when `kimport:file' is | |
3264 called. Each importation-function must take two arguments, a buffer/file to | |
3265 import and a buffer/file into which to insert the imported elements and a | |
3266 third optional argument, CHILDREN-P, which when non-nil means insert imported | |
3267 cells as the initial set of children of the current cell, if any. | |
3268 | |
3269 .otl - imported as an Emacs outline whose entries begin with asterisks; | |
3270 .kot | |
3271 .kotl - imported as a structured koutline | |
3272 .aug - imported as an Augment post-numbered outline.") | |
3273 | |
3274 ;;;*** | |
3275 | |
3276 ;;;### (autoloads nil "set" "hyperbole/set.el" (12376 19690)) | |
3277 ;;; Generated autoloads from hyperbole/set.el | |
3278 | |
3279 ;;;### (autoloads (wconfig-yank-pop wconfig-ring-save wconfig-delete-pop wconfig-restore-by-name wconfig-delete-by-name wconfig-add-by-name) "wconfig" "hyperbole/wconfig.el" (12376 19691)) | |
3280 ;;; Generated autoloads from hyperbole/wconfig.el | |
3281 | |
3282 (autoload 'wconfig-add-by-name "wconfig" "\ | |
3283 Saves the current window configuration under the string NAME. | |
3284 When called interactively and a window configuration already exists under | |
3285 NAME, confirms whether or not to replace it." t nil) | |
3286 | |
3287 (autoload 'wconfig-delete-by-name "wconfig" "\ | |
3288 Deletes window configuration saved under NAME." t nil) | |
3289 | |
3290 (autoload 'wconfig-restore-by-name "wconfig" "\ | |
3291 Restores window configuration saved under NAME." t nil) | |
3292 | |
3293 (autoload 'wconfig-delete-pop "wconfig" "\ | |
3294 Replaces current window config with most recently saved config in ring. | |
3295 Then deletes this new configuration from the ring." t nil) | |
3296 | |
3297 (autoload 'wconfig-ring-save "wconfig" "\ | |
3298 Saves the current window configuration onto the save ring. | |
3299 Use {\\[wconfig-yank-pop]} to restore it at a later time." t nil) | |
3300 | |
3301 (autoload 'wconfig-yank-pop "wconfig" "\ | |
3302 Replaces current window config with prefix arg Nth prior one in save ring. | |
3303 Interactively, default value of N = 1, meaning the last saved window | |
3304 configuration is displayed. | |
3305 | |
3306 The sequence of window configurations wraps around, so that after the oldest | |
3307 one comes the newest one." t nil) | |
3308 | |
3309 ;;;*** | |
3310 | |
3311 ;;;### (autoloads (rolo-logic) "wrolo-logic" "hyperbole/wrolo-logic.el" (12376 19691)) | |
3312 ;;; Generated autoloads from hyperbole/wrolo-logic.el | |
3313 | |
3314 (autoload 'rolo-logic "wrolo-logic" "\ | |
3315 Apply FUNC to all entries in optional IN-BUFS, display entries where FUNC is non-nil. | |
3316 If IN-BUFS is nil, 'rolo-file-list' is used. If optional COUNT-ONLY is | |
3317 non-nil, don't display entries, return count of matching entries only. If | |
3318 optional INCLUDE-SUB-ENTRIES flag is non-nil, FUNC will be applied across all | |
3319 sub-entries at once. Default is to apply FUNC to each entry and sub-entry | |
3320 separately. Entries are displayed with all of their sub-entries unless | |
3321 INCLUDE-SUB-ENTRIES is nil and optional NO-SUB-ENTRIES-OUT flag is non-nil. | |
3322 FUNC should use the free variables 'start' and 'end' which contain the limits | |
3323 of the region on which it should operate. Returns number of applications of | |
3324 FUNC that return non-nil." t nil) | |
3325 | |
3326 ;;;*** | |
3327 | |
3328 ;;;### (autoloads nil "wrolo-menu" "hyperbole/wrolo-menu.el" (12558 61004)) | |
3329 ;;; Generated autoloads from hyperbole/wrolo-menu.el | |
3330 | |
3331 ;;;*** | |
3332 | |
3333 ;;;### (autoloads (rolo-yank rolo-sort rolo-kill rolo-grep rolo-fgrep rolo-edit rolo-display-matches rolo-add) "wrolo" "hyperbole/wrolo.el" (12558 61000)) | |
3334 ;;; Generated autoloads from hyperbole/wrolo.el | |
3335 | |
3336 (autoload 'rolo-add "wrolo" "\ | |
3337 Adds a new entry in personal rolodex for NAME. | |
3338 Last name first is best, e.g. \"Smith, John\". | |
3339 With prefix argument, prompts for optional FILE to add entry within. | |
3340 NAME may be of the form: parent/child to insert child below a parent | |
3341 entry which begins with the parent string." t nil) | |
3342 | |
3343 (autoload 'rolo-display-matches "wrolo" "\ | |
3344 Display optional DISPLAY-BUF buffer of previously found rolodex matches. | |
3345 If DISPLAY-BUF is nil, use the value in 'rolo-display-buffer'. | |
3346 Second arg RETURN-TO-BUFFER is the buffer to leave point within after the display." t nil) | |
3347 | |
3348 (autoload 'rolo-edit "wrolo" "\ | |
3349 Edits a rolodex entry given by optional NAME within 'rolo-file-list'. | |
3350 With prefix argument, prompts for optional FILE to locate entry within. | |
3351 With no NAME arg, simply displays FILE or first entry in 'rolo-file-list' in an | |
3352 editable mode. NAME may be of the form: parent/child to edit child below a | |
3353 parent entry which begins with the parent string." t nil) | |
3354 | |
3355 (autoload 'rolo-fgrep "wrolo" "\ | |
3356 Display rolodex entries matching STRING. | |
3357 To a maximum of optional prefix arg MAX-MATCHES, in file(s) from optional | |
3358 ROLO-FILE or rolo-file-list. Default is to find all matching entries. Each | |
3359 entry is displayed with all of its sub-entries. Optional COUNT-ONLY non-nil | |
3360 means don't retrieve and don't display matching entries. Optional NO-DISPLAY | |
3361 non-nil means retrieve entries but don't display. | |
3362 | |
3363 Nil value of MAX-MATCHES means find all matches, t value means find all matches | |
3364 but omit file headers, negative values mean find up to the inverse of that | |
3365 number of entries and omit file headers. | |
3366 | |
3367 Returns number of entries matched. See also documentation for the variable | |
3368 rolo-file-list." t nil) | |
3369 | |
3370 (autoload 'rolo-grep "wrolo" "\ | |
3371 Display rolodex entries matching REGEXP. | |
3372 To a maximum of prefix arg MAX-MATCHES, in buffer(s) from optional ROLO-BUFS or | |
3373 rolo-file-list. Default is to find all matching entries. Each entry is | |
3374 displayed with all of its sub-entries. Optional COUNT-ONLY non-nil means don't | |
3375 retrieve and don't display matching entries. Optional NO-DISPLAY non-nil | |
3376 means retrieve entries but don't display. | |
3377 | |
3378 Nil value of MAX-MATCHES means find all matches, t value means find all matches | |
3379 but omit file headers, negative values mean find up to the inverse of that | |
3380 number of entries and omit file headers. | |
3381 | |
3382 Returns number of entries matched. See also documentation for the variable | |
3383 rolo-file-list." t nil) | |
3384 | |
3385 (autoload 'rolo-kill "wrolo" "\ | |
3386 Kills a rolodex entry given by NAME within 'rolo-file-list'. | |
3387 With prefix argument, prompts for optional FILE to locate entry within. | |
3388 NAME may be of the form: parent/child to kill child below a parent entry | |
3389 which begins with the parent string. | |
3390 Returns t if entry is killed, nil otherwise." t nil) | |
3391 | |
3392 (autoload 'rolo-sort "wrolo" "\ | |
3393 Sorts up to 14 levels of entries in ROLO-FILE (default is personal rolo). | |
3394 Assumes entries are delimited by one or more '*'characters. | |
3395 Returns list of number of groupings at each entry level." t nil) | |
3396 | |
3397 (autoload 'rolo-yank "wrolo" "\ | |
3398 Inserts at point the first rolodex entry matching NAME. | |
3399 With optional prefix arg, REGEXP-P, treats NAME as a regular expression instead | |
3400 of a string." t nil) | |
3401 | |
3402 ;;;*** | |
3403 | |
3404 ;;;### (autoloads nil "bridge" "ilisp/bridge.el" (12376 19421)) | |
3405 ;;; Generated autoloads from ilisp/bridge.el | |
3406 | |
3407 ;;;*** | |
3408 | |
3409 ;;;### (autoloads nil "comint-ipc" "ilisp/comint-ipc.el" (12376 19418)) | |
3410 ;;; Generated autoloads from ilisp/comint-ipc.el | |
3411 | |
3412 ;;;*** | |
3413 | |
3414 ;;;### (autoloads nil "comint-v18" "ilisp/comint-v18.el" (12376 19423)) | |
3415 ;;; Generated autoloads from ilisp/comint-v18.el | |
3416 | |
3417 ;;;*** | |
3418 | |
3419 ;;;### (autoloads nil "completer" "ilisp/completer.el" (12675 57068)) | |
3420 ;;; Generated autoloads from ilisp/completer.el | |
3421 | |
3422 ;;;### (autoloads nil "ilcompat" "ilisp/ilcompat.el" (12376 19424)) | |
3423 ;;; Generated autoloads from ilisp/ilcompat.el | |
3424 | |
3425 ;;;### (autoloads nil "ilfsf18" "ilisp/ilfsf18.el" (12376 19438)) | |
3426 ;;; Generated autoloads from ilisp/ilfsf18.el | |
3427 | |
3428 ;;;*** | |
3429 | |
3430 ;;;### (autoloads nil "ilfsf19" "ilisp/ilfsf19.el" (12376 19439)) | |
3431 ;;; Generated autoloads from ilisp/ilfsf19.el | |
3432 | |
3433 ;;;*** | |
3434 | |
3435 ;;;### (autoloads nil "ilisp-acl" "ilisp/ilisp-acl.el" (12376 19427)) | |
3436 ;;; Generated autoloads from ilisp/ilisp-acl.el | |
3437 | |
3438 ;;;*** | |
3439 | |
3440 ;;;### (autoloads nil "ilisp-aut" "ilisp/ilisp-aut.el" (12376 19428)) | |
3441 ;;; Generated autoloads from ilisp/ilisp-aut.el | |
3442 | |
3443 ;;;*** | |
3444 | |
3445 ;;;### (autoloads nil "ilisp-bat" "ilisp/ilisp-bat.el" (12376 19419)) | |
3446 ;;; Generated autoloads from ilisp/ilisp-bat.el | |
3447 | |
3448 ;;;*** | |
3449 | |
3450 ;;;### (autoloads nil "ilisp-bug" "ilisp/ilisp-bug.el" (12376 19425)) | |
3451 ;;; Generated autoloads from ilisp/ilisp-bug.el | |
3452 | |
3453 ;;;*** | |
3454 | |
3455 ;;;### (autoloads nil "ilisp-chs" "ilisp/ilisp-chs.el" (12376 19439)) | |
3456 ;;; Generated autoloads from ilisp/ilisp-chs.el | |
3457 | |
3458 ;;;*** | |
3459 | |
3460 ;;;### (autoloads nil "ilisp-cl" "ilisp/ilisp-cl.el" (12376 19427)) | |
3461 ;;; Generated autoloads from ilisp/ilisp-cl.el | |
3462 | |
3463 ;;;*** | |
3464 | |
3465 ;;;### (autoloads nil "ilisp-cmp" "ilisp/ilisp-cmp.el" (12376 19428)) | |
3466 ;;; Generated autoloads from ilisp/ilisp-cmp.el | |
3467 | |
3468 ;;;*** | |
3469 | |
3470 ;;;### (autoloads nil "ilisp-cmt" "ilisp/ilisp-cmt.el" (12376 19428)) | |
3471 ;;; Generated autoloads from ilisp/ilisp-cmt.el | |
3472 | |
3473 ;;;*** | |
3474 | |
3475 ;;;### (autoloads nil "ilisp-cmu" "ilisp/ilisp-cmu.el" (12376 19431)) | |
3476 ;;; Generated autoloads from ilisp/ilisp-cmu.el | |
3477 | |
3478 ;;;*** | |
3479 | |
3480 ;;;### (autoloads nil "ilisp-cpat" "ilisp/ilisp-cpat.el" (12376 19423)) | |
3481 ;;; Generated autoloads from ilisp/ilisp-cpat.el | |
3482 | |
3483 ;;;*** | |
3484 | |
3485 ;;;### (autoloads nil "ilisp-def" "ilisp/ilisp-def.el" (12376 19429)) | |
3486 ;;; Generated autoloads from ilisp/ilisp-def.el | |
3487 | |
3488 ;;;*** | |
3489 | |
3490 ;;;### (autoloads nil "ilisp-dia" "ilisp/ilisp-dia.el" (12376 19429)) | |
3491 ;;; Generated autoloads from ilisp/ilisp-dia.el | |
3492 | |
3493 ;;;*** | |
3494 | |
3495 ;;;### (autoloads nil "ilisp-doc" "ilisp/ilisp-doc.el" (12376 19429)) | |
3496 ;;; Generated autoloads from ilisp/ilisp-doc.el | |
3497 | |
3498 ;;;*** | |
3499 | |
3500 ;;;### (autoloads nil "ilisp-el" "ilisp/ilisp-el.el" (12376 19431)) | |
3501 ;;; Generated autoloads from ilisp/ilisp-el.el | |
3502 | |
3503 ;;;*** | |
3504 | |
3505 ;;;### (autoloads nil "ilisp-ext" "ilisp/ilisp-ext.el" (12376 19420)) | |
3506 ;;; Generated autoloads from ilisp/ilisp-ext.el | |
3507 | |
3508 ;;;*** | |
3509 | |
3510 ;;;### (autoloads nil "ilisp-hi" "ilisp/ilisp-hi.el" (12376 19431)) | |
3511 ;;; Generated autoloads from ilisp/ilisp-hi.el | |
3512 | |
3513 ;;;*** | |
3514 | |
3515 ;;;### (autoloads nil "ilisp-hlw" "ilisp/ilisp-hlw.el" (12376 19440)) | |
3516 ;;; Generated autoloads from ilisp/ilisp-hlw.el | |
3517 | |
3518 ;;;*** | |
3519 | |
3520 ;;;### (autoloads nil "ilisp-hnd" "ilisp/ilisp-hnd.el" (12376 19431)) | |
3521 ;;; Generated autoloads from ilisp/ilisp-hnd.el | |
3522 | |
3523 ;;;*** | |
3524 | |
3525 ;;;### (autoloads nil "ilisp-ind" "ilisp/ilisp-ind.el" (12376 19430)) | |
3526 ;;; Generated autoloads from ilisp/ilisp-ind.el | |
3527 | |
3528 ;;;*** | |
3529 | |
3530 ;;;### (autoloads nil "ilisp-inp" "ilisp/ilisp-inp.el" (12376 19431)) | |
3531 ;;; Generated autoloads from ilisp/ilisp-inp.el | |
3532 | |
3533 ;;;*** | |
3534 | |
3535 ;;;### (autoloads nil "ilisp-kcl" "ilisp/ilisp-kcl.el" (12376 19433)) | |
3536 ;;; Generated autoloads from ilisp/ilisp-kcl.el | |
3537 | |
3538 ;;;*** | |
3539 | |
3540 ;;;### (autoloads nil "ilisp-key" "ilisp/ilisp-key.el" (12376 19433)) | |
3541 ;;; Generated autoloads from ilisp/ilisp-key.el | |
3542 | |
3543 ;;;*** | |
3544 | |
3545 ;;;### (autoloads nil "ilisp-kil" "ilisp/ilisp-kil.el" (12376 19433)) | |
3546 ;;; Generated autoloads from ilisp/ilisp-kil.el | |
3547 | |
3548 ;;;*** | |
3549 | |
3550 ;;;### (autoloads nil "ilisp-low" "ilisp/ilisp-low.el" (12376 19433)) | |
3551 ;;; Generated autoloads from ilisp/ilisp-low.el | |
3552 | |
3553 ;;;*** | |
3554 | |
3555 ;;;### (autoloads nil "ilisp-luc" "ilisp/ilisp-luc.el" (12376 19433)) | |
3556 ;;; Generated autoloads from ilisp/ilisp-luc.el | |
3557 | |
3558 ;;;*** | |
3559 | |
3560 ;;;### (autoloads nil "ilisp-mak" "ilisp/ilisp-mak.el" (12376 19424)) | |
3561 ;;; Generated autoloads from ilisp/ilisp-mak.el | |
3562 | |
3563 ;;;*** | |
3564 | |
3565 ;;;### (autoloads nil "ilisp-menu" "ilisp/ilisp-menu.el" (12376 19419)) | |
3566 ;;; Generated autoloads from ilisp/ilisp-menu.el | |
3567 | |
3568 ;;;*** | |
3569 | |
3570 ;;;### (autoloads nil "ilisp-mnb" "ilisp/ilisp-mnb.el" (12376 19440)) | |
3571 ;;; Generated autoloads from ilisp/ilisp-mnb.el | |
3572 | |
3573 ;;;*** | |
3574 | |
3575 ;;;### (autoloads nil "ilisp-mod" "ilisp/ilisp-mod.el" (12558 60883)) | |
3576 ;;; Generated autoloads from ilisp/ilisp-mod.el | |
3577 | |
3578 ;;;### (autoloads nil "ilisp-mov" "ilisp/ilisp-mov.el" (12376 19435)) | |
3579 ;;; Generated autoloads from ilisp/ilisp-mov.el | |
3580 | |
3581 ;;;*** | |
3582 | |
3583 ;;;### (autoloads nil "ilisp-out" "ilisp/ilisp-out.el" (12376 19435)) | |
3584 ;;; Generated autoloads from ilisp/ilisp-out.el | |
3585 | |
3586 ;;;*** | |
3587 | |
3588 ;;;### (autoloads nil "ilisp-prc" "ilisp/ilisp-prc.el" (12376 19435)) | |
3589 ;;; Generated autoloads from ilisp/ilisp-prc.el | |
3590 | |
3591 ;;;*** | |
3592 | |
3593 ;;;### (autoloads nil "ilisp-prn" "ilisp/ilisp-prn.el" (12376 19434)) | |
3594 ;;; Generated autoloads from ilisp/ilisp-prn.el | |
3595 | |
3596 ;;;*** | |
3597 | |
3598 ;;;### (autoloads nil "ilisp-rng" "ilisp/ilisp-rng.el" (12376 19436)) | |
3599 ;;; Generated autoloads from ilisp/ilisp-rng.el | |
3600 | |
3601 ;;;*** | |
3602 | |
3603 ;;;### (autoloads nil "ilisp-s2c" "ilisp/ilisp-s2c.el" (12376 19425)) | |
3604 ;;; Generated autoloads from ilisp/ilisp-s2c.el | |
3605 | |
3606 ;;;*** | |
3607 | |
3608 ;;;### (autoloads nil "ilisp-sch" "ilisp/ilisp-sch.el" (12376 19436)) | |
3609 ;;; Generated autoloads from ilisp/ilisp-sch.el | |
3610 | |
3611 ;;;*** | |
3612 | |
3613 ;;;### (autoloads nil "ilisp-snd" "ilisp/ilisp-snd.el" (12376 19437)) | |
3614 ;;; Generated autoloads from ilisp/ilisp-snd.el | |
3615 | |
3616 ;;;*** | |
3617 | |
3618 ;;;### (autoloads nil "ilisp-src" "ilisp/ilisp-src.el" (12376 19421)) | |
3619 ;;; Generated autoloads from ilisp/ilisp-src.el | |
3620 | |
3621 ;;;*** | |
3622 | |
3623 ;;;### (autoloads nil "ilisp-sym" "ilisp/ilisp-sym.el" (12376 19437)) | |
3624 ;;; Generated autoloads from ilisp/ilisp-sym.el | |
3625 | |
3626 ;;;*** | |
3627 | |
3628 ;;;### (autoloads nil "ilisp-utl" "ilisp/ilisp-utl.el" (12376 19437)) | |
3629 ;;; Generated autoloads from ilisp/ilisp-utl.el | |
3630 | |
3631 ;;;*** | |
3632 | |
3633 ;;;### (autoloads nil "ilisp-val" "ilisp/ilisp-val.el" (12376 19438)) | |
3634 ;;; Generated autoloads from ilisp/ilisp-val.el | |
3635 | |
3636 ;;;*** | |
3637 | |
3638 ;;;### (autoloads nil "ilisp-xfr" "ilisp/ilisp-xfr.el" (12376 19438)) | |
3639 ;;; Generated autoloads from ilisp/ilisp-xfr.el | |
3640 | |
3641 ;;;*** | |
3642 | |
3643 ;;;### (autoloads nil "ilisp" "ilisp/ilisp.el" (12376 19421)) | |
3644 ;;; Generated autoloads from ilisp/ilisp.el | |
3645 | |
3646 ;;;*** | |
3647 | |
3648 ;;;### (autoloads nil "illuc19" "ilisp/illuc19.el" (12376 19441)) | |
3649 ;;; Generated autoloads from ilisp/illuc19.el | |
3650 | |
3651 ;;;*** | |
3652 | |
3653 ;;;### (autoloads nil "ilxemacs" "ilisp/ilxemacs.el" (12657 40696)) | |
3654 ;;; Generated autoloads from ilisp/ilxemacs.el | |
3655 | |
3656 ;;;*** | |
3657 | |
3658 ;;;### (autoloads nil "iso-ascii" "iso/iso-ascii.el" (12282 38391)) | |
3659 ;;; Generated autoloads from iso/iso-ascii.el | |
3660 | |
3661 ;;;### (autoloads nil "iso-cvt" "iso/iso-cvt.el" (12376 19651)) | |
3662 ;;; Generated autoloads from iso/iso-cvt.el | |
3663 | |
3664 ;;;*** | |
3665 | |
3666 ;;;### (autoloads nil "iso-insert" "iso/iso-insert.el" (12376 19650)) | |
3667 ;;; Generated autoloads from iso/iso-insert.el | |
3668 | |
3669 ;;;*** | |
3670 | |
3671 ;;;### (autoloads nil "iso-swed" "iso/iso-swed.el" (12376 19650)) | |
3672 ;;; Generated autoloads from iso/iso-swed.el | |
3673 | |
3674 ;;;*** | |
3675 | |
3676 ;;;### (autoloads nil "iso-syntax" "iso/iso-syntax.el" (12376 19652)) | |
3677 ;;; Generated autoloads from iso/iso-syntax.el | |
3678 | |
3679 ;;;*** | |
3680 | |
3681 ;;;### (autoloads nil "iso8859-1" "iso/iso8859-1.el" (12376 19650)) | |
3682 ;;; Generated autoloads from iso/iso8859-1.el | |
3683 | |
3684 ;;;*** | |
3685 | |
3686 ;;;### (autoloads nil "swedish" "iso/swedish.el" (12376 19651)) | |
3687 ;;; Generated autoloads from iso/swedish.el | |
3688 | |
3689 ;;;*** | |
3690 | |
3691 ;;;### (autoloads nil "site-start" "lisp/site-start.el" (12605 44813)) | |
3692 ;;; Generated autoloads from lisp/site-start.el | |
3693 | |
3694 ;;;### (autoloads (mc-deactivate-passwd mc-install-write-mode mc-install-read-mode) "mailcrypt" "mailcrypt/mailcrypt.el" (12675 57176)) | |
3695 ;;; Generated autoloads from mailcrypt/mailcrypt.el | |
3696 | |
3697 (autoload 'mc-install-read-mode "mailcrypt" nil t nil) | |
3698 | |
3699 (autoload 'mc-install-write-mode "mailcrypt" nil t nil) | |
3700 | |
3701 (autoload 'mc-deactivate-passwd "mailcrypt" "\ | |
3702 *Deactivate the passphrase cache." t nil) | |
3703 | |
3704 ;;;*** | |
3705 | |
3706 ;;;### (autoloads (mc-pgp-fetch-key mc-scheme-pgp) "mc-pgp" "mailcrypt/mc-pgp.el" (12639 8702)) | |
3707 ;;; Generated autoloads from mailcrypt/mc-pgp.el | |
3708 | |
3709 (autoload 'mc-scheme-pgp "mc-pgp" nil nil nil) | |
3710 | |
3711 (autoload 'mc-pgp-fetch-key "mc-pgp" "\ | |
3712 Attempt to fetch a key for addition to PGP keyring. Interactively, | |
3713 prompt for string matching key to fetch. | |
3714 | |
3715 Non-interactively, ID must be a pair. The CAR must be a bare Email | |
3716 address and the CDR a keyID (with \"0x\" prefix). Either, but not | |
3717 both, may be nil. | |
3718 | |
3719 Return t if we think we were successful; nil otherwise. Note that nil | |
3720 is not necessarily an error, since we may have merely fired off an Email | |
3721 request for the key." t nil) | |
3722 | |
3723 ;;;*** | |
3724 | |
3725 ;;;### (autoloads (mc-remailer-insert-response-block mc-remailer-encrypt-for-chain mc-remailer-insert-pseudonym) "mc-remail" "mailcrypt/mc-remail.el" (12639 8701)) | |
3726 ;;; Generated autoloads from mailcrypt/mc-remail.el | |
3727 | |
3728 (autoload 'mc-remailer-insert-pseudonym "mc-remail" "\ | |
3729 Insert pseudonym as a From field in the hash-mark header. | |
3730 | |
3731 See the documentation for the variable `mc-remailer-pseudonyms' for | |
3732 more information." t nil) | |
3733 | |
3734 (autoload 'mc-remailer-encrypt-for-chain "mc-remail" "\ | |
3735 Encrypt message for a remailer chain, prompting for chain to use. | |
3736 | |
3737 With \\[universal-argument], pause before each encryption." t nil) | |
3738 | |
3739 (autoload 'mc-remailer-insert-response-block "mc-remail" "\ | |
3740 Insert response block at point, prompting for chain to use. | |
3741 | |
3742 With \\[universal-argument], enter a recursive edit of the innermost | |
3743 layer of the block before encrypting it." t nil) | |
3744 | |
3745 ;;;*** | |
3746 | |
3747 ;;;### (autoloads (mc-mh-snarf-keys mc-mh-verify-signature mc-mh-decrypt-message mc-gnus-decrypt-message mc-gnus-snarf-keys mc-gnus-verify-signature mc-vm-snarf-keys mc-vm-decrypt-message mc-vm-verify-signature mc-rmail-decrypt-message mc-rmail-verify-signature mc-rmail-summary-snarf-keys mc-rmail-summary-decrypt-message mc-rmail-summary-verify-signature mc-snarf-keys mc-snarf mc-insert-public-key mc-verify-signature mc-verify mc-sign-message mc-sign mc-decrypt-message mc-decrypt mc-encrypt-message mc-encrypt mc-cleanup-recipient-headers) "mc-toplev" "mailcrypt/mc-toplev.el" (12639 8701)) | |
3748 ;;; Generated autoloads from mailcrypt/mc-toplev.el | |
3749 | |
3750 (autoload 'mc-cleanup-recipient-headers "mc-toplev" nil nil nil) | |
3751 | |
3752 (autoload 'mc-encrypt "mc-toplev" "\ | |
3753 *Encrypt the current buffer. | |
3754 | |
3755 Exact behavior depends on current major mode. | |
3756 | |
3757 With \\[universal-argument], prompt for User ID to sign as. | |
3758 | |
3759 With \\[universal-argument] \\[universal-argument], prompt for encryption scheme to use." t nil) | |
3760 | |
3761 (autoload 'mc-encrypt-message "mc-toplev" "\ | |
3762 *Encrypt a message for RECIPIENTS using the given encryption SCHEME. | |
3763 RECIPIENTS is a comma separated string. If SCHEME is nil, use the value | |
3764 of `mc-default-scheme'. Returns t on success, nil otherwise." nil nil) | |
3765 | |
3766 (autoload 'mc-decrypt "mc-toplev" "\ | |
3767 *Decrypt a message in the current buffer. | |
3768 | |
3769 Exact behavior depends on current major mode." t nil) | |
3770 | |
3771 (autoload 'mc-decrypt-message "mc-toplev" "\ | |
3772 Decrypt whatever message is in the current buffer. | |
3773 Returns a pair (SUCCEEDED . VERIFIED) where SUCCEEDED is t if the encryption | |
3774 succeeded and VERIFIED is t if it had a valid signature." nil nil) | |
3775 | |
3776 (autoload 'mc-sign "mc-toplev" "\ | |
3777 *Sign a message in the current buffer. | |
3778 | |
3779 Exact behavior depends on current major mode. | |
3780 | |
3781 With one prefix arg, prompts for private key to use, with two prefix args, | |
3782 also prompts for encryption scheme to use. With negative prefix arg, | |
3783 inhibits clearsigning (pgp)." t nil) | |
3784 | |
3785 (autoload 'mc-sign-message "mc-toplev" "\ | |
3786 Clear sign the message." nil nil) | |
3787 | |
3788 (autoload 'mc-verify "mc-toplev" "\ | |
3789 *Verify a message in the current buffer. | |
3790 | |
3791 Exact behavior depends on current major mode." t nil) | |
3792 | |
3793 (autoload 'mc-verify-signature "mc-toplev" "\ | |
3794 *Verify the signature of the signed message in the current buffer. | |
3795 Show the result as a message in the minibuffer. Returns t if the signature | |
3796 is verified." nil nil) | |
3797 | |
3798 (autoload 'mc-insert-public-key "mc-toplev" "\ | |
3799 *Insert your public key at point. | |
3800 With one prefix arg, prompts for user id to use. With two prefix | |
3801 args, prompts for encryption scheme." t nil) | |
3802 | |
3803 (autoload 'mc-snarf "mc-toplev" "\ | |
3804 *Add all public keys in the buffer to your keyring. | |
3805 | |
3806 Exact behavior depends on current major mode." t nil) | |
3807 | |
3808 (autoload 'mc-snarf-keys "mc-toplev" "\ | |
3809 *Add all public keys in the buffer to your keyring." t nil) | |
3810 | |
3811 (autoload 'mc-rmail-summary-verify-signature "mc-toplev" "\ | |
3812 *Verify the signature in the current message." t nil) | |
3813 | |
3814 (autoload 'mc-rmail-summary-decrypt-message "mc-toplev" "\ | |
3815 *Decrypt the contents of this message" t nil) | |
3816 | |
3817 (autoload 'mc-rmail-summary-snarf-keys "mc-toplev" "\ | |
3818 *Adds keys from current message to public key ring" t nil) | |
3819 | |
3820 (autoload 'mc-rmail-verify-signature "mc-toplev" "\ | |
3821 *Verify the signature in the current message." t nil) | |
3822 | |
3823 (autoload 'mc-rmail-decrypt-message "mc-toplev" "\ | |
3824 *Decrypt the contents of this message" t nil) | |
3825 | |
3826 (autoload 'mc-vm-verify-signature "mc-toplev" "\ | |
3827 *Verify the signature in the current VM message" t nil) | |
3828 | |
3829 (autoload 'mc-vm-decrypt-message "mc-toplev" "\ | |
3830 *Decrypt the contents of the current VM message" t nil) | |
3831 | |
3832 (autoload 'mc-vm-snarf-keys "mc-toplev" "\ | |
3833 *Snarf public key from the contents of the current VM message" t nil) | |
3834 | |
3835 (autoload 'mc-gnus-verify-signature "mc-toplev" nil t nil) | |
3836 | |
3837 (autoload 'mc-gnus-snarf-keys "mc-toplev" nil t nil) | |
3838 | |
3839 (autoload 'mc-gnus-decrypt-message "mc-toplev" nil t nil) | |
3840 | |
3841 (autoload 'mc-mh-decrypt-message "mc-toplev" "\ | |
3842 Decrypt the contents of the current MH message in the show buffer." t nil) | |
3843 | |
3844 (autoload 'mc-mh-verify-signature "mc-toplev" "\ | |
3845 *Verify the signature in the current MH message." t nil) | |
3846 | |
3847 (autoload 'mc-mh-snarf-keys "mc-toplev" nil t nil) | |
3848 | |
3849 ;;;*** | |
3850 | |
3851 ;;;### (autoloads (mh-letter-mode mh-smail-other-window mh-smail-batch mh-smail) "mh-comp" "mh-e/mh-comp.el" (12657 40772)) | |
3852 ;;; Generated autoloads from mh-e/mh-comp.el | |
3853 | |
3854 (autoload 'mh-smail "mh-comp" "\ | |
3855 Compose and send mail with the MH mail system. | |
3856 This function is an entry point to mh-e, the Emacs front end | |
3857 to the MH mail system. | |
3858 | |
3859 See documentation of `\\[mh-send]' for more details on composing mail." t nil) | |
3860 | |
3861 (autoload 'mh-smail-batch "mh-comp" "\ | |
3862 Set up a mail composition draft with the MH mail system. | |
3863 This function is an entry point to mh-e, the Emacs front end | |
3864 to the MH mail system. This function does not prompt the user | |
3865 for any header fields, and thus is suitable for use by programs | |
3866 that want to create a mail buffer. | |
3867 Users should use `\\[mh-smail]' to compose mail." nil nil) | |
3868 | |
3869 (autoload 'mh-smail-other-window "mh-comp" "\ | |
3870 Compose and send mail in other window with the MH mail system. | |
3871 This function is an entry point to mh-e, the Emacs front end | |
3872 to the MH mail system. | |
3873 | |
3874 See documentation of `\\[mh-send]' for more details on composing mail." t nil) | |
3875 | |
3876 (autoload 'mh-letter-mode "mh-comp" "\ | |
3877 Mode for composing letters in mh-e.\\<mh-letter-mode-map> | |
3878 When you have finished composing, type \\[mh-send-letter] to send the message | |
3879 using the MH mail handling system. | |
3880 See the documentation for \\[mh-edit-mhn] for information on composing MIME | |
3881 messages. | |
3882 | |
3883 \\{mh-letter-mode-map} | |
3884 | |
3885 Variables controlling this mode (defaults in parentheses): | |
3886 | |
3887 mh-delete-yanked-msg-window (nil) | |
3888 If non-nil, \\[mh-yank-cur-msg] will delete any windows displaying | |
3889 the yanked message. | |
3890 | |
3891 mh-yank-from-start-of-msg (t) | |
3892 If non-nil, \\[mh-yank-cur-msg] will include the entire message. | |
3893 If `body', just yank the body (no header). | |
3894 If nil, only the portion of the message following the point will be yanked. | |
3895 If there is a region, this variable is ignored. | |
3896 | |
3897 mh-ins-buf-prefix (\"> \") | |
3898 String to insert before each non-blank line of a message as it is | |
3899 inserted in a draft letter. | |
3900 | |
3901 mh-signature-file-name (\"~/.signature\") | |
3902 File to be inserted into message by \\[mh-insert-signature]. | |
3903 | |
3904 Upon invoking mh-letter-mode, text-mode-hook and mh-letter-mode-hook are | |
3905 invoked with no args, if those values are non-nil." t nil) | |
3906 | |
3907 ;;;*** | |
3908 | |
3909 ;;;### (autoloads (mh-version mh-rmail) "mh-e" "mh-e/mh-e.el" (12747 30157)) | |
3910 ;;; Generated autoloads from mh-e/mh-e.el | |
3911 | |
3912 (autoload 'mh-rmail "mh-e" "\ | |
3913 Inc(orporate) new mail with MH, or, with arg, scan an MH mail folder. | |
3914 This function is an entry point to mh-e, the Emacs front end | |
3915 to the MH mail system." t nil) | |
3916 | |
3917 (autoload 'mh-version "mh-e" "\ | |
3918 Display version information about mh-e and the MH mail handling system." t nil) | |
3919 | |
3920 ;;;*** | |
3921 | |
3922 ;;;### (autoloads nil "mh-funcs" "mh-e/mh-funcs.el" (12657 40774)) | |
3923 ;;; Generated autoloads from mh-e/mh-funcs.el | |
3924 | |
3925 ;;;### (autoloads nil "mh-mime" "mh-e/mh-mime.el" (12657 40774)) | |
3926 ;;; Generated autoloads from mh-e/mh-mime.el | |
3927 | |
3928 (defvar mh-mime-content-types '(("text/plain") ("text/richtext") ("multipart/mixed") ("multipart/alternative") ("multipart/digest") ("multipart/parallel") ("message/rfc822") ("message/partial") ("message/external-body") ("application/octet-stream") ("application/postscript") ("image/jpeg") ("image/gif") ("audio/basic") ("video/mpeg")) "\ | |
3929 Legal MIME content types. See documentation for \\[mh-edit-mhn].") | |
3930 | |
3931 ;;;*** | |
3932 | |
3933 ;;;### (autoloads nil "mh-pick" "mh-e/mh-pick.el" (12657 40775)) | |
3934 ;;; Generated autoloads from mh-e/mh-pick.el | |
3935 | |
3936 ;;;*** | |
3937 | |
3938 ;;;### (autoloads nil "mh-seq" "mh-e/mh-seq.el" (12657 40776)) | |
3939 ;;; Generated autoloads from mh-e/mh-seq.el | |
3940 | |
3941 ;;;### (autoloads nil "mh-utils" "mh-e/mh-utils.el" (12657 40777)) | |
3942 ;;; Generated autoloads from mh-e/mh-utils.el | |
3943 | |
3944 (put 'mh-progs 'risky-local-variable t) | |
3945 | |
3946 (put 'mh-lib 'risky-local-variable t) | |
3947 | |
3948 ;;;*** | |
3949 | |
3950 ;;;### (autoloads nil "abbrev" "modes/abbrev.el" (12639 8573)) | |
3951 ;;; Generated autoloads from modes/abbrev.el | |
3952 | |
3953 ;;;### (autoloads (ada-make-filename-from-adaname ada-mode) "ada-mode" "modes/ada-mode.el" (12559 34908)) | |
3954 ;;; Generated autoloads from modes/ada-mode.el | |
3955 | |
3956 (autoload 'ada-mode "ada-mode" "\ | |
3957 Ada Mode is the major mode for editing Ada code. | |
3958 | |
3959 Bindings are as follows: (Note: 'LFD' is control-j.) | |
3960 | |
3961 Indent line '\\[ada-tab]' | |
3962 Indent line, insert newline and indent the new line. '\\[newline-and-indent]' | |
3963 | |
3964 Re-format the parameter-list point is in '\\[ada-format-paramlist]' | |
3965 Indent all lines in region '\\[ada-indent-region]' | |
3966 Call external pretty printer program '\\[ada-call-pretty-printer]' | |
3967 | |
3968 Adjust case of identifiers and keywords in region '\\[ada-adjust-case-region]' | |
3969 Adjust case of identifiers and keywords in buffer '\\[ada-adjust-case-buffer]' | |
3970 | |
3971 Call EXTERNAL pretty printer (if you have one) '\\[ada-call-pretty-printer]' | |
3972 | |
3973 Fill comment paragraph '\\[ada-fill-comment-paragraph]' | |
3974 Fill comment paragraph and justify each line '\\[ada-fill-comment-paragraph-justify]' | |
3975 Fill comment paragraph, justify and append postfix '\\[ada-fill-comment-paragraph-postfix]' | |
3976 | |
3977 Next func/proc/task '\\[ada-next-procedure]' Previous func/proc/task '\\[ada-previous-procedure]' | |
3978 Next package '\\[ada-next-package]' Previous package '\\[ada-previous-package]' | |
3979 | |
3980 Goto matching start of current 'end ...;' '\\[ada-move-to-start]' | |
3981 Goto end of current block '\\[ada-move-to-end]' | |
3982 | |
3983 Comments are handled using standard GNU Emacs conventions, including: | |
3984 Start a comment '\\[indent-for-comment]' | |
3985 Comment region '\\[comment-region]' | |
3986 Uncomment region '\\[ada-uncomment-region]' | |
3987 Continue comment on next line '\\[indent-new-comment-line]' | |
3988 | |
3989 If you use imenu.el: | |
3990 Display index-menu of functions & procedures '\\[imenu]' | |
3991 | |
3992 If you use find-file.el: | |
3993 Switch to other file (Body <-> Spec) '\\[ff-find-other-file]' | |
3994 or '\\[ff-mouse-find-other-file] | |
3995 Switch to other file in other window '\\[ada-ff-other-window]' | |
3996 or '\\[ff-mouse-find-other-file-other-window] | |
3997 If you use this function in a spec and no body is available, it gets created | |
3998 with body stubs. | |
3999 | |
4000 If you use ada-xref.el: | |
4001 Goto declaration: '\\[ada-point-and-xref]' on the identifier | |
4002 or '\\[ada-goto-declaration]' with point on the identifier | |
4003 Complete identifier: '\\[ada-complete-identifier]' | |
4004 Execute Gnatf: '\\[ada-gnatf-current]'" t nil) | |
4005 | |
4006 (autoload 'ada-make-filename-from-adaname "ada-mode" "\ | |
4007 determine the filename of a package/procedure from its own Ada name." t nil) | |
4008 | |
4009 ;;;*** | |
4010 | |
4011 ;;;### (autoloads (archive-mode) "arc-mode" "modes/arc-mode.el" (12559 34909)) | |
4012 ;;; Generated autoloads from modes/arc-mode.el | |
4013 | |
4014 (autoload 'archive-mode "arc-mode" "\ | |
4015 Major mode for viewing an archive file in a dired-like way. | |
4016 You can move around using the usual cursor motion commands. | |
4017 Letters no longer insert themselves. | |
4018 Type `e' to pull a file out of the archive and into its own buffer; | |
4019 or click mouse-2 on the file's line in the archive mode buffer. | |
4020 | |
4021 If you edit a sub-file of this archive (as with the `e' command) and | |
4022 save it, the contents of that buffer will be saved back into the | |
4023 archive. | |
4024 | |
4025 \\{archive-mode-map}" nil nil) | |
4026 | |
4027 ;;;*** | |
4028 | |
4029 ;;;### (autoloads (asm-mode) "asm-mode" "modes/asm-mode.el" (12558 60896)) | |
4030 ;;; Generated autoloads from modes/asm-mode.el | |
4031 | |
4032 (autoload 'asm-mode "asm-mode" "\ | |
4033 Major mode for editing typical assembler code. | |
4034 Features a private abbrev table and the following bindings: | |
4035 | |
4036 \\[asm-colon] outdent a preceding label, tab to next tab stop. | |
4037 \\[tab-to-tab-stop] tab to next tab stop. | |
4038 \\[asm-newline] newline, then tab to next tab stop. | |
4039 \\[asm-comment] smart placement of assembler comments. | |
4040 | |
4041 The character used for making comments is set by the variable | |
4042 `asm-comment-char' (which defaults to `?;'). | |
4043 | |
4044 Alternatively, you may set this variable in `asm-mode-set-comment-hook', | |
4045 which is called near the beginning of mode initialization. | |
4046 | |
4047 Turning on Asm mode runs the hook `asm-mode-hook' at the end of initialization. | |
4048 | |
4049 Special commands:\\{asm-mode-map} | |
4050 " t nil) | |
4051 | |
4052 ;;;*** | |
4053 | |
4054 ;;;### (autoloads nil "auto-show" "modes/auto-show.el" (12698 33539)) | |
4055 ;;; Generated autoloads from modes/auto-show.el | |
4056 | |
4057 ;;;*** | |
4058 | |
4059 ;;;### (autoloads (awk-mode) "awk-mode" "modes/awk-mode.el" (12559 34897)) | |
4060 ;;; Generated autoloads from modes/awk-mode.el | |
4061 | |
4062 (autoload 'awk-mode "awk-mode" "\ | |
4063 Major mode for editing AWK code. | |
4064 This is much like C mode except for the syntax of comments. It uses | |
4065 the same keymap as C mode and has the same variables for customizing | |
4066 indentation. It has its own abbrev table and its own syntax table. | |
4067 | |
4068 Turning on AWK mode calls the value of the variable `awk-mode-hook' | |
4069 with no args, if that value is non-nil." t nil) | |
4070 | |
4071 ;;;*** | |
4072 | |
4073 ;;;### (autoloads nil "bib-mode" "modes/bib-mode.el" (12559 34898)) | |
4074 ;;; Generated autoloads from modes/bib-mode.el | |
4075 | |
4076 ;;;*** | |
4077 | |
4078 ;;;### (autoloads (bibtex-mode) "bibtex" "modes/bibtex.el" (12147 25394)) | |
4079 ;;; Generated autoloads from modes/bibtex.el | |
4080 | |
4081 (autoload 'bibtex-mode "bibtex" "\ | |
4082 Major mode for editing bibtex files. | |
4083 | |
4084 \\{bibtex-mode-map} | |
4085 | |
4086 A command such as \\[bibtex-Book] will outline the fields for a BibTeX book entry. | |
4087 | |
4088 The optional fields start with the string OPT, and thus ignored by BibTeX. | |
4089 The OPT string may be removed from a field with \\[bibtex-remove-OPT]. | |
4090 \\[bibtex-kill-optional-field] kills the current optional field entirely. | |
4091 \\[bibtex-remove-double-quotes] removes the double-quotes around the text of | |
4092 the current field. \\[bibtex-empty-field] replaces the text of the current | |
4093 field with the default \"\". | |
4094 | |
4095 The command \\[bibtex-clean-entry] cleans the current entry, i.e. (i) removes | |
4096 double-quotes from entirely numerical fields, (ii) removes OPT from all | |
4097 non-empty optional fields, (iii) removes all empty optional fields, and (iv) | |
4098 checks that no non-optional fields are empty. | |
4099 | |
4100 Use \\[bibtex-find-text] to position the dot at the end of the current field. | |
4101 Use \\[bibtex-next-field] to move to end of the next field. | |
4102 | |
4103 The following may be of interest as well: | |
4104 | |
4105 Functions: | |
4106 find-bibtex-duplicates | |
4107 find-bibtex-entry-location | |
4108 hide-bibtex-entry-bodies | |
4109 sort-bibtex-entries | |
4110 validate-bibtex-buffer | |
4111 | |
4112 Variables: | |
4113 bibtex-clean-entry-zap-empty-opts | |
4114 bibtex-entry-field-alist | |
4115 bibtex-include-OPTannote | |
4116 bibtex-include-OPTcrossref | |
4117 bibtex-include-OPTkey | |
4118 bibtex-maintain-sorted-entries | |
4119 bibtex-mode-user-optional-fields | |
4120 | |
4121 Fields: | |
4122 address | |
4123 Publisher's address | |
4124 annote | |
4125 Long annotation used for annotated bibliographies (begins sentence) | |
4126 author | |
4127 Name(s) of author(s), in BibTeX name format | |
4128 booktitle | |
4129 Book title when the thing being referenced isn't the whole book. | |
4130 For book entries, the title field should be used instead. | |
4131 chapter | |
4132 Chapter number | |
4133 crossref | |
4134 The database key of the entry being cross referenced. | |
4135 edition | |
4136 Edition of a book (e.g., \"second\") | |
4137 editor | |
4138 Name(s) of editor(s), in BibTeX name format. | |
4139 If there is also an author field, then the editor field should be | |
4140 for the book or collection that the work appears in | |
4141 howpublished | |
4142 How something strange has been published (begins sentence) | |
4143 institution | |
4144 Sponsoring institution | |
4145 journal | |
4146 Journal name (macros are provided for many) | |
4147 key | |
4148 Alphabetizing and labeling key (needed when no author or editor) | |
4149 month | |
4150 Month (macros are provided) | |
4151 note | |
4152 To help the reader find a reference (begins sentence) | |
4153 number | |
4154 Number of a journal or technical report | |
4155 organization | |
4156 Organization (sponsoring a conference) | |
4157 pages | |
4158 Page number or numbers (use `--' to separate a range) | |
4159 publisher | |
4160 Publisher name | |
4161 school | |
4162 School name (for theses) | |
4163 series | |
4164 The name of a series or set of books. | |
4165 An individual book will will also have it's own title | |
4166 title | |
4167 The title of the thing being referenced | |
4168 type | |
4169 Type of a technical report (e.g., \"Research Note\") to be used | |
4170 instead of the default \"Technical Report\" | |
4171 volume | |
4172 Volume of a journal or multivolume work | |
4173 year | |
4174 Year---should contain only numerals | |
4175 --------------------------------------------------------- | |
4176 Entry to this mode calls the value of bibtex-mode-hook if that value is | |
4177 non-nil." t nil) | |
4178 | |
4179 ;;;*** | |
4180 | |
4181 ;;;### (autoloads nil "c-comment" "modes/c-comment.el" (12690 2171)) | |
4182 ;;; Generated autoloads from modes/c-comment.el | |
4183 | |
4184 ;;;### (autoloads nil "c-fill" "modes/c-fill.el" (12559 34900)) | |
4185 ;;; Generated autoloads from modes/c-fill.el | |
4186 | |
4187 ;;;*** | |
4188 | |
4189 ;;;### (autoloads nil "c-style" "modes/c-style.el" (12559 34900)) | |
4190 ;;; Generated autoloads from modes/c-style.el | |
4191 | |
4192 ;;;*** | |
4193 | |
4194 ;;;### (autoloads nil "cc-compat" "modes/cc-compat.el" (12559 34905)) | |
4195 ;;; Generated autoloads from modes/cc-compat.el | |
4196 | |
4197 ;;;*** | |
4198 | |
4199 ;;;### (autoloads nil "cc-guess" "modes/cc-guess.el" (12559 34906)) | |
4200 ;;; Generated autoloads from modes/cc-guess.el | |
4201 | |
4202 ;;;*** | |
4203 | |
4204 ;;;### (autoloads nil "cc-lobotomy" "modes/cc-lobotomy.el" (12559 34904)) | |
4205 ;;; Generated autoloads from modes/cc-lobotomy.el | |
4206 | |
4207 ;;;*** | |
4208 | |
4209 ;;;### (autoloads nil "cc-mode" "modes/cc-mode.el" (12740 25201)) | |
4210 ;;; Generated autoloads from modes/cc-mode.el | |
4211 | |
4212 ;;;### (autoloads (common-lisp-indent-function) "cl-indent" "modes/cl-indent.el" (12147 25404)) | |
4213 ;;; Generated autoloads from modes/cl-indent.el | |
4214 | |
4215 (autoload 'common-lisp-indent-function "cl-indent" nil nil nil) | |
4216 | |
4217 ;;;*** | |
4218 | |
4219 ;;;### (autoloads (c-macro-expand) "cmacexp" "modes/cmacexp.el" (12546 50436)) | |
4220 ;;; Generated autoloads from modes/cmacexp.el | |
4221 | |
4222 (autoload 'c-macro-expand "cmacexp" "\ | |
4223 Expand C macros in the region, using the C preprocessor. | |
4224 Normally display output in temp buffer, but | |
4225 prefix arg means replace the region with it. | |
4226 | |
4227 `c-macro-preprocessor' specifies the preprocessor to use. | |
4228 Prompt for arguments to the preprocessor (e.g. `-DDEBUG -I ./include') | |
4229 if the user option `c-macro-prompt-flag' is non-nil. | |
4230 | |
4231 Noninteractive args are START, END, SUBST. | |
4232 For use inside Lisp programs, see also `c-macro-expansion'." t nil) | |
4233 | |
4234 ;;;*** | |
4235 | |
4236 ;;;### (autoloads nil "cperl-mode" "modes/cperl-mode.el" (12675 57223)) | |
4237 ;;; Generated autoloads from modes/cperl-mode.el | |
4238 | |
4239 ;;;### (autoloads (enriched-decode enriched-encode enriched-mode) "enriched" "modes/enriched.el" (12648 18668)) | |
4240 ;;; Generated autoloads from modes/enriched.el | |
4241 | |
4242 (autoload 'enriched-mode "enriched" "\ | |
4243 Minor mode for editing text/enriched files. | |
4244 These are files with embedded formatting information in the MIME standard | |
4245 text/enriched format. | |
4246 Turning the mode on runs `enriched-mode-hooks'. | |
4247 | |
4248 More information about enriched-mode is available in the file | |
4249 etc/enriched.doc in the Emacs distribution directory. | |
4250 | |
4251 Commands: | |
4252 | |
4253 \\<enriched-mode-map>\\{enriched-mode-map}" t nil) | |
4254 | |
4255 (autoload 'enriched-encode "enriched" nil nil nil) | |
4256 | |
4257 (autoload 'enriched-decode "enriched" nil nil nil) | |
4258 | |
4259 ;;;*** | |
4260 | |
4261 ;;;### (autoloads (f90-mode) "f90" "modes/f90.el" (12675 57071)) | |
4262 ;;; Generated autoloads from modes/f90.el | |
4263 | |
4264 (autoload 'f90-mode "f90" "\ | |
4265 Major mode for editing Fortran 90 code in free format. | |
4266 | |
4267 \\[f90-indent-new-line] corrects current indentation and creates new indented line. | |
4268 \\[f90-indent-line] indents the current line correctly. | |
4269 \\[f90-indent-subprogram] indents the current subprogram. | |
4270 | |
4271 Type `? or `\\[help-command] to display a list of built-in abbrevs for F90 keywords. | |
4272 | |
4273 Key definitions: | |
4274 \\{f90-mode-map} | |
4275 | |
4276 Variables controlling indentation style and extra features: | |
4277 | |
4278 f90-do-indent | |
4279 Extra indentation within do blocks. (default 3) | |
4280 f90-if-indent | |
4281 Extra indentation within if/select case/where/forall blocks. (default 3) | |
4282 f90-type-indent | |
4283 Extra indentation within type/interface/block-data blocks. (default 3) | |
4284 f90-program-indent | |
4285 Extra indentation within program/module/subroutine/function blocks. | |
4286 (default 2) | |
4287 f90-continuation-indent | |
4288 Extra indentation applied to continuation lines. (default 5) | |
4289 f90-comment-region | |
4290 String inserted by \\[f90-comment-region] at start of each line in | |
4291 region. (default \"!!!$\") | |
4292 f90-indented-comment-re | |
4293 Regexp determining the type of comment to be intended like code. | |
4294 (default \"!\") | |
4295 f90-directive-comment-re | |
4296 Regexp of comment-like directive like \"!HPF\\\\$\", not to be indented. | |
4297 (default \"!hpf\\\\$\") | |
4298 f90-break-delimiters | |
4299 Regexp holding list of delimiters at which lines may be broken. | |
4300 (default \"[-+*/><=,% \\t]\") | |
4301 f90-break-before-delimiters | |
4302 Non-nil causes `f90-do-auto-fill' to break lines before delimiters. | |
4303 (default t) | |
4304 f90-beginning-ampersand | |
4305 Automatic insertion of & at beginning of continuation lines. (default t) | |
4306 f90-smart-end | |
4307 From an END statement, check and fill the end using matching block start. | |
4308 Allowed values are 'blink, 'no-blink, and nil, which determine | |
4309 whether to blink the matching beginning.) (default 'blink) | |
4310 f90-auto-keyword-case | |
4311 Automatic change of case of keywords. (default nil) | |
4312 The possibilities are 'downcase-word, 'upcase-word, 'capitalize-word. | |
4313 f90-leave-line-no | |
4314 Do not left-justify line numbers. (default nil) | |
4315 f90-startup-message | |
4316 Set to nil to inhibit message first time F90 mode is used. (default t) | |
4317 f90-keywords | |
4318 List of keywords used for highlighting/upcase-keywords etc. | |
4319 | |
4320 Turning on F90 mode calls the value of the variable `f90-mode-hook' | |
4321 with no args, if that value is non-nil." t nil) | |
4322 | |
4323 ;;;*** | |
4324 | |
4325 ;;;### (autoloads (follow-delete-other-windows-and-split follow-mode turn-off-follow-mode turn-on-follow-mode) "follow" "modes/follow.el" (12720 56486)) | |
4326 ;;; Generated autoloads from modes/follow.el | |
4327 | |
4328 (add-minor-mode 'follow-mode nil 'follow-mode-map) | |
4329 | |
4330 (autoload 'turn-on-follow-mode "follow" "\ | |
4331 Turn on Follow mode. Please see the function `follow-mode'." t nil) | |
4332 | |
4333 (autoload 'turn-off-follow-mode "follow" "\ | |
4334 Turn off Follow mode. Please see the function `follow-mode'." t nil) | |
4335 | |
4336 (autoload 'follow-mode "follow" "\ | |
4337 Minor mode which combines windows into one tall virtual window. | |
4338 | |
4339 The feeling of a \"virtual window\" has been accomplished by the use | |
4340 of two major techniques: | |
4341 | |
4342 * The windows always displays adjacent sections of the buffer. | |
4343 This means that whenever one window is moved, all the | |
4344 others will follow. (Hence the name Follow Mode.) | |
4345 | |
4346 * Should the point (cursor) end up outside a window, another | |
4347 window displaying that point is selected, if possible. This | |
4348 makes it possible to walk between windows using normal cursor | |
4349 movement commands. | |
4350 | |
4351 Follow mode comes to its prime when used on a large screen and two | |
4352 side-by-side window are used. The user can, with the help of Follow | |
4353 mode, use two full-height windows as though they would have been | |
4354 one. Imagine yourself editing a large function, or section of text, | |
4355 and beeing able to use 144 lines instead of the normal 72... (your | |
4356 mileage may vary). | |
4357 | |
4358 To split one large window into two side-by-side windows, the commands | |
4359 `\\[split-window-horizontally]' or `M-x follow-delete-other-windows-and-split' can be used. | |
4360 | |
4361 Only windows displayed in the same frame follow each-other. | |
4362 | |
4363 If the variable `follow-intercept-processes' is non-nil, Follow mode | |
4364 will listen to the output of processes and redisplay accordingly. | |
4365 \(This is the default.) | |
4366 | |
4367 When Follow mode is switched on, the hook `follow-mode-hook' | |
4368 is called. When turned off, `follow-mode-off-hook' is called. | |
4369 | |
4370 Keys specific to Follow mode: | |
4371 \\{follow-mode-map}" t nil) | |
4372 | |
4373 (autoload 'follow-delete-other-windows-and-split "follow" "\ | |
4374 Create two side by side windows and enter Follow Mode. | |
4375 | |
4376 Execute this command to display as much as possible of the text | |
4377 in the selected window. All other windows, in the current | |
4378 frame, are deleted and the selected window is split in two | |
4379 side-by-side windows. Follow Mode is activated, hence the | |
4380 two windows always will display two successive pages. | |
4381 \(If one window is moved, the other one will follow.) | |
4382 | |
4383 If ARG is positive, the leftmost window is selected. If it negative, | |
4384 the rightmost is selected. If ARG is nil, the leftmost window is | |
4385 selected if the original window is the first one in the frame. | |
4386 | |
4387 To bind this command to a hotkey, place the following line | |
4388 in your `~/.emacs' file, replacing [f7] by your favourite key: | |
4389 (global-set-key [f7] 'follow-delete-other-windows-and-split)" t nil) | |
4390 | |
4391 ;;;*** | |
4392 | |
4393 ;;;### (autoloads nil "fortran-misc" "modes/fortran-misc.el" (12376 19458)) | |
4394 ;;; Generated autoloads from modes/fortran-misc.el | |
4395 | |
4396 ;;;### (autoloads (fortran-mode) "fortran" "modes/fortran.el" (12558 60889)) | |
4397 ;;; Generated autoloads from modes/fortran.el | |
4398 | |
4399 (defvar fortran-tab-mode-default nil "\ | |
4400 *Default tabbing/carriage control style for empty files in Fortran mode. | |
4401 A value of t specifies tab-digit style of continuation control. | |
4402 A value of nil specifies that continuation lines are marked | |
4403 with a character in column 6.") | |
4404 | |
4405 (autoload 'fortran-mode "fortran" "\ | |
4406 Major mode for editing Fortran code. | |
4407 \\[fortran-indent-line] indents the current Fortran line correctly. | |
4408 DO statements must not share a common CONTINUE. | |
4409 | |
4410 Type ;? or ;\\[help-command] to display a list of built-in abbrevs for Fortran keywords. | |
4411 | |
4412 Key definitions: | |
4413 \\{fortran-mode-map} | |
4414 | |
4415 Variables controlling indentation style and extra features: | |
4416 | |
4417 comment-start | |
4418 Normally nil in Fortran mode. If you want to use comments | |
4419 starting with `!', set this to the string \"!\". | |
4420 fortran-do-indent | |
4421 Extra indentation within do blocks. (default 3) | |
4422 fortran-if-indent | |
4423 Extra indentation within if blocks. (default 3) | |
4424 fortran-structure-indent | |
4425 Extra indentation within structure, union, map and interface blocks. | |
4426 (default 3) | |
4427 fortran-continuation-indent | |
4428 Extra indentation applied to continuation statements. (default 5) | |
4429 fortran-comment-line-extra-indent | |
4430 Amount of extra indentation for text within full-line comments. (default 0) | |
4431 fortran-comment-indent-style | |
4432 nil means don't change indentation of text in full-line comments, | |
4433 fixed means indent that text at `fortran-comment-line-extra-indent' beyond | |
4434 the value of `fortran-minimum-statement-indent-fixed' (for fixed | |
4435 format continuation style) or `fortran-minimum-statement-indent-tab' | |
4436 (for TAB format continuation style). | |
4437 relative means indent at `fortran-comment-line-extra-indent' beyond the | |
4438 indentation for a line of code. | |
4439 (default 'fixed) | |
4440 fortran-comment-indent-char | |
4441 Single-character string to be inserted instead of space for | |
4442 full-line comment indentation. (default \" \") | |
4443 fortran-minimum-statement-indent-fixed | |
4444 Minimum indentation for Fortran statements in fixed format mode. (def.6) | |
4445 fortran-minimum-statement-indent-tab | |
4446 Minimum indentation for Fortran statements in TAB format mode. (default 9) | |
4447 fortran-line-number-indent | |
4448 Maximum indentation for line numbers. A line number will get | |
4449 less than this much indentation if necessary to avoid reaching | |
4450 column 5. (default 1) | |
4451 fortran-check-all-num-for-matching-do | |
4452 Non-nil causes all numbered lines to be treated as possible \"continue\" | |
4453 statements. (default nil) | |
4454 fortran-blink-matching-if | |
4455 Non-nil causes \\[fortran-indent-line] on an ENDIF statement to blink on | |
4456 matching IF. Also, from an ENDDO statement, blink on matching DO [WHILE] | |
4457 statement. (default nil) | |
4458 fortran-continuation-string | |
4459 Single-character string to be inserted in column 5 of a continuation | |
4460 line. (default \"$\") | |
4461 fortran-comment-region | |
4462 String inserted by \\[fortran-comment-region] at start of each line in | |
4463 region. (default \"c$$$\") | |
4464 fortran-electric-line-number | |
4465 Non-nil causes line number digits to be moved to the correct column | |
4466 as typed. (default t) | |
4467 fortran-break-before-delimiters | |
4468 Non-nil causes `fortran-fill' breaks lines before delimiters. | |
4469 (default t) | |
4470 fortran-startup-message | |
4471 Set to nil to inhibit message first time Fortran mode is used. | |
4472 | |
4473 Turning on Fortran mode calls the value of the variable `fortran-mode-hook' | |
4474 with no args, if that value is non-nil." t nil) | |
4475 | |
4476 ;;;*** | |
4477 | |
4478 ;;;### (autoloads nil "hideif" "modes/hideif.el" (12639 8574)) | |
4479 ;;; Generated autoloads from modes/hideif.el | |
4480 | |
4481 (add-minor-mode 'hide-ifdef-mode " Ifdef") | |
4482 | |
4483 ;;;*** | |
4484 | |
4485 ;;;### (autoloads (hs-minor-mode hs-hide-block hs-hide-all) "hideshow" "modes/hideshow.el" (12648 18570)) | |
4486 ;;; Generated autoloads from modes/hideshow.el | |
4487 | |
4488 (defvar hs-minor-mode nil "\ | |
4489 Non-nil if using hideshow mode as a minor mode of some other mode. | |
4490 Use the command `hs-minor-mode' to toggle this variable.") | |
4491 | |
4492 (autoload 'hs-hide-all "hideshow" "\ | |
4493 Hides all top-level blocks, displaying only first and last lines. | |
4494 When done, point is repositioned at the beginning of the line, and | |
4495 hs-hide-hooks is called. See documentation for `run-hooks'." t nil) | |
4496 | |
4497 (autoload 'hs-hide-block "hideshow" "\ | |
4498 Selects a block and hides it. With prefix arg, reposition at end. | |
4499 Block is defined as a sexp for lispish modes, mode-specific otherwise. | |
4500 Comments are blocks, too. Upon completion, point is at repositioned and | |
4501 hs-hide-hooks is called. See documentation for `run-hooks'." t nil) | |
4502 | |
4503 (autoload 'hs-minor-mode "hideshow" "\ | |
4504 Toggle hideshow minor mode. | |
4505 With ARG, turn hideshow minor mode on if ARG is positive, off otherwise. | |
4506 When hideshow minor mode is on, the menu bar is augmented with hideshow | |
4507 commands and the hideshow commands are enabled. The variables | |
4508 | |
4509 selective-display | |
4510 selective-display-ellipses | |
4511 | |
4512 are set to t. Lastly, the hooks set in hs-minor-mode-hook are called. | |
4513 See documentation for `run-hooks'. | |
4514 | |
4515 Turning hideshow minor mode off reverts the menu bar and the | |
4516 variables to default values and disables the hideshow commands." t nil) | |
4517 | |
4518 (add-minor-mode 'hs-minor-mode " hs" 'hs-minor-mode-map) | |
4519 | |
4520 ;;;*** | |
4521 | |
4522 ;;;### (autoloads (icon-mode) "icon" "modes/icon.el" (12559 34901)) | |
4523 ;;; Generated autoloads from modes/icon.el | |
4524 | |
4525 (autoload 'icon-mode "icon" "\ | |
4526 Major mode for editing Icon code. | |
4527 Expression and list commands understand all Icon brackets. | |
4528 Tab indents for Icon code. | |
4529 Paragraphs are separated by blank lines only. | |
4530 Delete converts tabs to spaces as it moves back. | |
4531 \\{icon-mode-map} | |
4532 Variables controlling indentation style: | |
4533 icon-tab-always-indent | |
4534 Non-nil means TAB in Icon mode should always reindent the current line, | |
4535 regardless of where in the line point is when the TAB command is used. | |
4536 icon-auto-newline | |
4537 Non-nil means automatically newline before and after braces | |
4538 inserted in Icon code. | |
4539 icon-indent-level | |
4540 Indentation of Icon statements within surrounding block. | |
4541 The surrounding block's indentation is the indentation | |
4542 of the line on which the open-brace appears. | |
4543 icon-continued-statement-offset | |
4544 Extra indentation given to a substatement, such as the | |
4545 then-clause of an if or body of a while. | |
4546 icon-continued-brace-offset | |
4547 Extra indentation given to a brace that starts a substatement. | |
4548 This is in addition to `icon-continued-statement-offset'. | |
4549 icon-brace-offset | |
4550 Extra indentation for line if it starts with an open brace. | |
4551 icon-brace-imaginary-offset | |
4552 An open brace following other text is treated as if it were | |
4553 this far to the right of the start of its line. | |
4554 | |
4555 Turning on Icon mode calls the value of the variable `icon-mode-hook' | |
4556 with no args, if that value is non-nil." t nil) | |
4557 | |
4558 ;;;*** | |
4559 | |
4560 ;;;### (autoloads (ksh-mode) "ksh-mode" "modes/ksh-mode.el" (12714 11717)) | |
4561 ;;; Generated autoloads from modes/ksh-mode.el | |
4562 | |
4563 (autoload 'ksh-mode "ksh-mode" "\ | |
4564 ksh-mode 2.6 - Major mode for editing (Bourne, Korn or Bourne again) | |
4565 shell scripts. | |
4566 Special key bindings and commands: | |
4567 \\{ksh-mode-map} | |
4568 Variables controlling indentation style: | |
4569 ksh-indent | |
4570 Indentation of ksh statements with respect to containing block. | |
4571 Default value is 2. | |
4572 ksh-case-indent | |
4573 Additional indentation for statements under case items. | |
4574 Default value is nil which will align the statements one position | |
4575 past the \")\" of the pattern. | |
4576 ksh-case-item-offset | |
4577 Additional indentation for case items within a case statement. | |
4578 Default value is 2. | |
4579 ksh-group-offset | |
4580 Additional indentation for keywords \"do\" and \"then\". | |
4581 Default value is -2. | |
4582 ksh-brace-offset | |
4583 Additional indentation of \"{\" under functions or brace groupings. | |
4584 Default value is 0. | |
4585 ksh-multiline-offset | |
4586 Additional indentation of line that is preceded of a line ending with a | |
4587 \\ to make it continue on next line. | |
4588 ksh-tab-always-indent | |
4589 Controls the operation of the TAB key. If t (the default), always | |
4590 reindent the current line. If nil, indent the current line only if | |
4591 point is at the left margin or in the line's indentation; otherwise | |
4592 insert a tab. | |
4593 ksh-match-and-tell | |
4594 If non-nil echo in the minibuffer the matching compound command | |
4595 for the \"done\", \"}\", \"fi\", or \"esac\". Default value is t. | |
4596 | |
4597 ksh-align-to-keyword | |
4598 Controls whether nested constructs align from the keyword or | |
4599 the current indentation. If non-nil, indentation will be relative to | |
4600 the column the keyword starts. If nil, indentation will be relative to | |
4601 the current indentation of the line the keyword is on. | |
4602 The default value is non-nil. | |
4603 | |
4604 ksh-comment-regexp | |
4605 Regular expression used to recognize comments. Customize to support | |
4606 ksh-like languages. Default value is \"\\s *#\". | |
4607 | |
4608 Style Guide. | |
4609 By setting | |
4610 (setq ksh-indent default-tab-width) | |
4611 (setq ksh-group-offset 0) | |
4612 | |
4613 The following style is obtained: | |
4614 | |
4615 if [ -z $foo ] | |
4616 then | |
4617 bar # <-- ksh-group-offset is additive to ksh-indent | |
4618 foo | |
4619 fi | |
4620 | |
4621 By setting | |
4622 (setq ksh-indent default-tab-width) | |
4623 (setq ksh-group-offset (- 0 ksh-indent)) | |
4624 | |
4625 The following style is obtained: | |
4626 | |
4627 if [ -z $foo ] | |
4628 then | |
4629 bar | |
4630 foo | |
4631 fi | |
4632 | |
4633 By setting | |
4634 (setq ksh-case-item-offset 1) | |
4635 (setq ksh-case-indent nil) | |
4636 | |
4637 The following style is obtained: | |
4638 | |
4639 case x in * | |
4640 foo) bar # <-- ksh-case-item-offset | |
4641 baz;; # <-- ksh-case-indent aligns with \")\" | |
4642 foobar) foo | |
4643 bar;; | |
4644 esac | |
4645 | |
4646 By setting | |
4647 (setq ksh-case-item-offset 1) | |
4648 (setq ksh-case-indent 6) | |
4649 | |
4650 The following style is obtained: | |
4651 | |
4652 case x in * | |
4653 foo) bar # <-- ksh-case-item-offset | |
4654 baz;; # <-- ksh-case-indent | |
4655 foobar) foo | |
4656 bar;; | |
4657 esac | |
4658 | |
4659 | |
4660 Installation: | |
4661 Put ksh-mode.el in some directory in your load-path. | |
4662 Put the following forms in your .emacs file. | |
4663 | |
4664 (setq auto-mode-alist | |
4665 (append auto-mode-alist | |
4666 (list | |
4667 '(\"\\\\.sh$\" . ksh-mode) | |
4668 '(\"\\\\.ksh$\" . ksh-mode) | |
4669 '(\"\\\\.bashrc\" . ksh-mode) | |
4670 '(\"\\\\..*profile\" . ksh-mode)))) | |
4671 | |
4672 (setq ksh-mode-hook | |
4673 (function (lambda () | |
4674 (font-lock-mode 1) ;; font-lock the buffer | |
4675 (setq ksh-indent 8) | |
4676 (setq ksh-group-offset -8)) | |
4677 (setq ksh-brace-offset -8) | |
4678 (setq ksh-tab-always-indent t) | |
4679 (setq ksh-match-and-tell t) | |
4680 (setq ksh-align-to-keyword t) ;; Turn on keyword alignment | |
4681 )))" t nil) | |
4682 | |
4683 ;;;*** | |
4684 | |
4685 ;;;### (autoloads nil "lisp-mnt" "modes/lisp-mnt.el" (12546 50449)) | |
4686 ;;; Generated autoloads from modes/lisp-mnt.el | |
4687 | |
4688 ;;;*** | |
4689 | |
4690 ;;;### (autoloads nil "lisp-mode" "modes/lisp-mode.el" (12728 13792)) | |
4691 ;;; Generated autoloads from modes/lisp-mode.el | |
4692 | |
4693 ;;;*** | |
4694 | |
4695 ;;;### (autoloads nil "list-mode" "modes/list-mode.el" (12740 25196)) | |
4696 ;;; Generated autoloads from modes/list-mode.el | |
4697 | |
4698 ;;;### (autoloads (makefile-mode) "make-mode" "modes/make-mode.el" (12558 60885)) | |
4699 ;;; Generated autoloads from modes/make-mode.el | |
4700 | |
4701 (autoload 'makefile-mode "make-mode" "\ | |
4702 Major mode for editing Makefiles. | |
4703 This function ends by invoking the function(s) `makefile-mode-hook'. | |
4704 | |
4705 \\{makefile-mode-map} | |
4706 | |
4707 In the browser, use the following keys: | |
4708 | |
4709 \\{makefile-browser-map} | |
4710 | |
4711 Makefile mode can be configured by modifying the following variables: | |
4712 | |
4713 makefile-browser-buffer-name: | |
4714 Name of the macro- and target browser buffer. | |
4715 | |
4716 makefile-target-colon: | |
4717 The string that gets appended to all target names | |
4718 inserted by `makefile-insert-target'. | |
4719 \":\" or \"::\" are quite common values. | |
4720 | |
4721 makefile-macro-assign: | |
4722 The string that gets appended to all macro names | |
4723 inserted by `makefile-insert-macro'. | |
4724 The normal value should be \" = \", since this is what | |
4725 standard make expects. However, newer makes such as dmake | |
4726 allow a larger variety of different macro assignments, so you | |
4727 might prefer to use \" += \" or \" := \" . | |
4728 | |
4729 makefile-tab-after-target-colon: | |
4730 If you want a TAB (instead of a space) to be appended after the | |
4731 target colon, then set this to a non-nil value. | |
4732 | |
4733 makefile-browser-leftmost-column: | |
4734 Number of blanks to the left of the browser selection mark. | |
4735 | |
4736 makefile-browser-cursor-column: | |
4737 Column in which the cursor is positioned when it moves | |
4738 up or down in the browser. | |
4739 | |
4740 makefile-browser-selected-mark: | |
4741 String used to mark selected entries in the browser. | |
4742 | |
4743 makefile-browser-unselected-mark: | |
4744 String used to mark unselected entries in the browser. | |
4745 | |
4746 makefile-browser-auto-advance-after-selection-p: | |
4747 If this variable is set to a non-nil value the cursor | |
4748 will automagically advance to the next line after an item | |
4749 has been selected in the browser. | |
4750 | |
4751 makefile-pickup-everything-picks-up-filenames-p: | |
4752 If this variable is set to a non-nil value then | |
4753 `makefile-pickup-everything' also picks up filenames as targets | |
4754 (i.e. it calls `makefile-find-filenames-as-targets'), otherwise | |
4755 filenames are omitted. | |
4756 | |
4757 makefile-cleanup-continuations-p: | |
4758 If this variable is set to a non-nil value then makefile-mode | |
4759 will assure that no line in the file ends with a backslash | |
4760 (the continuation character) followed by any whitespace. | |
4761 This is done by silently removing the trailing whitespace, leaving | |
4762 the backslash itself intact. | |
4763 IMPORTANT: Please note that enabling this option causes makefile-mode | |
4764 to MODIFY A FILE WITHOUT YOUR CONFIRMATION when \"it seems necessary\". | |
4765 | |
4766 makefile-browser-hook: | |
4767 A function or list of functions to be called just before the | |
4768 browser is entered. This is executed in the makefile buffer. | |
4769 | |
4770 makefile-special-targets-list: | |
4771 List of special targets. You will be offered to complete | |
4772 on one of those in the minibuffer whenever you enter a `.'. | |
4773 at the beginning of a line in Makefile mode." t nil) | |
4774 | |
4775 ;;;*** | |
4776 | |
4777 ;;;### (autoloads nil "old-c++-mode" "modes/old-c++-mode.el" (12376 19469)) | |
4778 ;;; Generated autoloads from modes/old-c++-mode.el | |
4779 | |
4780 ;;;*** | |
4781 | |
4782 ;;;### (autoloads nil "old-c-mode" "modes/old-c-mode.el" (12546 50448)) | |
4783 ;;; Generated autoloads from modes/old-c-mode.el | |
4784 | |
4785 ;;;### (autoloads (define-mail-alias build-mail-aliases mail-aliases-setup) "mail-abbrevs" "modes/mail-abbrevs.el" (12376 19450)) | |
4786 ;;; Generated autoloads from modes/mail-abbrevs.el | |
4787 | |
4788 (defvar mail-abbrev-mailrc-file nil "\ | |
4789 Name of file with mail aliases. If nil, ~/.mailrc is used.") | |
4790 | |
4791 (defvar mail-aliases nil "\ | |
4792 Word-abbrev table of mail address aliases. | |
4793 If this is nil, it means the aliases have not yet been initialized and | |
4794 should be read from the .mailrc file. (This is distinct from there being | |
4795 no aliases, which is represented by this being a table with no entries.)") | |
4796 | |
4797 (autoload 'mail-aliases-setup "mail-abbrevs" nil nil nil) | |
4798 | |
4799 (autoload 'build-mail-aliases "mail-abbrevs" "\ | |
4800 Read mail aliases from .mailrc and set mail-aliases." nil nil) | |
4801 | |
4802 (autoload 'define-mail-alias "mail-abbrevs" "\ | |
4803 Define NAME as a mail-alias that translates to DEFINITION. | |
4804 If DEFINITION contains multiple addresses, separate them with commas." t nil) | |
4805 | |
4806 ;;;*** | |
4807 | |
4808 ;;;### (autoloads (modula-2-mode) "modula2" "modes/modula2.el" (12376 19453)) | |
4809 ;;; Generated autoloads from modes/modula2.el | |
4810 | |
4811 (autoload 'modula-2-mode "modula2" "\ | |
4812 This is a mode intended to support program development in Modula-2. | |
4813 All control constructs of Modula-2 can be reached by typing | |
4814 Control-C followed by the first character of the construct. | |
4815 \\{m2-mode-map} | |
4816 Control-c b begin Control-c c case | |
4817 Control-c d definition Control-c e else | |
4818 Control-c f for Control-c h header | |
4819 Control-c i if Control-c m module | |
4820 Control-c l loop Control-c o or | |
4821 Control-c p procedure Control-c Control-w with | |
4822 Control-c r record Control-c s stdio | |
4823 Control-c t type Control-c u until | |
4824 Control-c v var Control-c w while | |
4825 Control-c x export Control-c y import | |
4826 Control-c { begin-comment Control-c } end-comment | |
4827 Control-c Control-z suspend-emacs Control-c Control-t toggle | |
4828 Control-c Control-c compile Control-x ` next-error | |
4829 Control-c Control-l link | |
4830 | |
4831 m2-indent controls the number of spaces for each indentation. | |
4832 m2-compile-command holds the command to compile a Modula-2 program. | |
4833 m2-link-command holds the command to link a Modula-2 program." t nil) | |
4834 | |
4835 ;;;*** | |
4836 | |
4837 ;;;### (autoloads (electric-nroff-mode nroff-mode) "nroff-mode" "modes/nroff-mode.el" (12648 18567)) | |
4838 ;;; Generated autoloads from modes/nroff-mode.el | |
4839 | |
4840 (autoload 'nroff-mode "nroff-mode" "\ | |
4841 Major mode for editing text intended for nroff to format. | |
4842 \\{nroff-mode-map} | |
4843 Turning on Nroff mode runs `text-mode-hook', then `nroff-mode-hook'. | |
4844 Also, try `nroff-electric-mode', for automatically inserting | |
4845 closing requests for requests that are used in matched pairs." t nil) | |
4846 | |
4847 (autoload 'electric-nroff-mode "nroff-mode" "\ | |
4848 Toggle `nroff-electric-newline' minor mode. | |
4849 `nroff-electric-newline' forces Emacs to check for an nroff request at the | |
4850 beginning of the line, and insert the matching closing request if necessary. | |
4851 This command toggles that mode (off->on, on->off), with an argument, | |
4852 turns it on iff arg is positive, otherwise off." t nil) | |
4853 | |
4854 (defvar nroff-electric-mode nil "\ | |
4855 Non-nil if in electric-nroff minor mode.") | |
4856 | |
4857 (add-minor-mode 'nroff-electric-mode " Electric" nil nil 'electric-nroff-mode) | |
4858 | |
4859 ;;;*** | |
4860 | |
4861 ;;;### (autoloads (outl-mouse-minor-mode outl-mouse-mode) "outl-mouse" "modes/outl-mouse.el" (12376 19464)) | |
4862 ;;; Generated autoloads from modes/outl-mouse.el | |
4863 | |
4864 (autoload 'outl-mouse-mode "outl-mouse" "\ | |
4865 Calls outline-mode, with outl-mouse extensions" t nil) | |
4866 | |
4867 (autoload 'outl-mouse-minor-mode "outl-mouse" "\ | |
4868 Toggles outline-minor-mode, with outl-mouse extensions" t nil) | |
4869 | |
4870 ;;;*** | |
4871 | |
4872 ;;;### (autoloads (outline-minor-mode outline-mode) "outline" "modes/outline.el" (12648 18566)) | |
4873 ;;; Generated autoloads from modes/outline.el | |
4874 | |
4875 (defvar outline-minor-mode nil "\ | |
4876 Non-nil if using Outline mode as a minor mode of some other mode.") | |
4877 | |
4878 (make-variable-buffer-local 'outline-minor-mode) | |
4879 | |
4880 (put 'outline-minor-mode 'permanent-local t) | |
4881 | |
4882 (add-minor-mode 'outline-minor-mode " Outl") | |
4883 | |
4884 (autoload 'outline-mode "outline" "\ | |
4885 Set major mode for editing outlines with selective display. | |
4886 Headings are lines which start with asterisks: one for major headings, | |
4887 two for subheadings, etc. Lines not starting with asterisks are body lines. | |
4888 | |
4889 Body text or subheadings under a heading can be made temporarily | |
4890 invisible, or visible again. Invisible lines are attached to the end | |
4891 of the heading, so they move with it, if the line is killed and yanked | |
4892 back. A heading with text hidden under it is marked with an ellipsis (...). | |
4893 | |
4894 Commands:\\<outline-mode-map> | |
4895 \\[outline-next-visible-heading] outline-next-visible-heading move by visible headings | |
4896 \\[outline-previous-visible-heading] outline-previous-visible-heading | |
4897 \\[outline-forward-same-level] outline-forward-same-level similar but skip subheadings | |
4898 \\[outline-backward-same-level] outline-backward-same-level | |
4899 \\[outline-up-heading] outline-up-heading move from subheading to heading | |
4900 | |
4901 \\[hide-body] make all text invisible (not headings). | |
4902 \\[show-all] make everything in buffer visible. | |
4903 | |
4904 The remaining commands are used when point is on a heading line. | |
4905 They apply to some of the body or subheadings of that heading. | |
4906 \\[hide-subtree] hide-subtree make body and subheadings invisible. | |
4907 \\[show-subtree] show-subtree make body and subheadings visible. | |
4908 \\[show-children] show-children make direct subheadings visible. | |
4909 No effect on body, or subheadings 2 or more levels down. | |
4910 With arg N, affects subheadings N levels down. | |
4911 \\[hide-entry] make immediately following body invisible. | |
4912 \\[show-entry] make it visible. | |
4913 \\[hide-leaves] make body under heading and under its subheadings invisible. | |
4914 The subheadings remain visible. | |
4915 \\[show-branches] make all subheadings at all levels visible. | |
4916 | |
4917 The variable `outline-regexp' can be changed to control what is a heading. | |
4918 A line is a heading if `outline-regexp' matches something at the | |
4919 beginning of the line. The longer the match, the deeper the level. | |
4920 | |
4921 Turning on outline mode calls the value of `text-mode-hook' and then of | |
4922 `outline-mode-hook', if they are non-nil." t nil) | |
4923 | |
4924 (autoload 'outline-minor-mode "outline" "\ | |
4925 Toggle Outline minor mode. | |
4926 With arg, turn Outline minor mode on if arg is positive, off otherwise. | |
4927 See the command `outline-mode' for more information on this mode." t nil) | |
4928 | |
4929 ;;;*** | |
4930 | |
4931 ;;;### (autoloads (pascal-mode) "pascal" "modes/pascal.el" (12698 33540)) | |
4932 ;;; Generated autoloads from modes/pascal.el | |
4933 | |
4934 (autoload 'pascal-mode "pascal" "\ | |
4935 Major mode for editing Pascal code. \\<pascal-mode-map> | |
4936 TAB indents for Pascal code. Delete converts tabs to spaces as it moves back. | |
4937 | |
4938 \\[pascal-complete-word] completes the word around current point with respect to position in code | |
4939 \\[pascal-show-completions] shows all possible completions at this point. | |
4940 | |
4941 Other useful functions are: | |
4942 | |
4943 \\[pascal-mark-defun] - Mark function. | |
4944 \\[pascal-insert-block] - insert begin ... end; | |
4945 \\[pascal-star-comment] - insert (* ... *) | |
4946 \\[pascal-comment-area] - Put marked area in a comment, fixing nested comments. | |
4947 \\[pascal-uncomment-area] - Uncomment an area commented with \\[pascal-comment-area]. | |
4948 \\[pascal-beg-of-defun] - Move to beginning of current function. | |
4949 \\[pascal-end-of-defun] - Move to end of current function. | |
4950 \\[pascal-goto-defun] - Goto function prompted for in the minibuffer. | |
4951 \\[pascal-outline] - Enter pascal-outline-mode (see also pascal-outline). | |
4952 | |
4953 Variables controlling indentation/edit style: | |
4954 | |
4955 pascal-indent-level (default 3) | |
4956 Indentation of Pascal statements with respect to containing block. | |
4957 pascal-case-indent (default 2) | |
4958 Indentation for case statements. | |
4959 pascal-auto-newline (default nil) | |
4960 Non-nil means automatically newline after simcolons and the punctation mark | |
4961 after an end. | |
4962 pascal-tab-always-indent (default t) | |
4963 Non-nil means TAB in Pascal mode should always reindent the current line, | |
4964 regardless of where in the line point is when the TAB command is used. | |
4965 pascal-auto-endcomments (default t) | |
4966 Non-nil means a comment { ... } is set after the ends which ends cases and | |
4967 functions. The name of the function or case will be set between the braces. | |
4968 pascal-auto-lineup (default t) | |
4969 List of contexts where auto lineup of :'s or ='s hould be done. | |
4970 | |
4971 See also the user variables pascal-type-keywords, pascal-start-keywords and | |
4972 pascal-separator-keywords. | |
4973 | |
4974 Turning on Pascal mode calls the value of the variable pascal-mode-hook with | |
4975 no args, if that value is non-nil." t nil) | |
4976 | |
4977 ;;;*** | |
4978 | |
4979 ;;;### (autoloads (perl-mode) "perl-mode" "modes/perl-mode.el" (12573 5998)) | |
4980 ;;; Generated autoloads from modes/perl-mode.el | |
4981 | |
4982 (autoload 'perl-mode "perl-mode" "\ | |
4983 Major mode for editing Perl code. | |
4984 Expression and list commands understand all Perl brackets. | |
4985 Tab indents for Perl code. | |
4986 Comments are delimited with # ... \\n. | |
4987 Paragraphs are separated by blank lines only. | |
4988 Delete converts tabs to spaces as it moves back. | |
4989 \\{perl-mode-map} | |
4990 Variables controlling indentation style: | |
4991 perl-tab-always-indent | |
4992 Non-nil means TAB in Perl mode should always indent the current line, | |
4993 regardless of where in the line point is when the TAB command is used. | |
4994 perl-tab-to-comment | |
4995 Non-nil means that for lines which don't need indenting, TAB will | |
4996 either delete an empty comment, indent an existing comment, move | |
4997 to end-of-line, or if at end-of-line already, create a new comment. | |
4998 perl-nochange | |
4999 Lines starting with this regular expression are not auto-indented. | |
5000 perl-indent-level | |
5001 Indentation of Perl statements within surrounding block. | |
5002 The surrounding block's indentation is the indentation | |
5003 of the line on which the open-brace appears. | |
5004 perl-continued-statement-offset | |
5005 Extra indentation given to a substatement, such as the | |
5006 then-clause of an if or body of a while. | |
5007 perl-continued-brace-offset | |
5008 Extra indentation given to a brace that starts a substatement. | |
5009 This is in addition to `perl-continued-statement-offset'. | |
5010 perl-brace-offset | |
5011 Extra indentation for line if it starts with an open brace. | |
5012 perl-brace-imaginary-offset | |
5013 An open brace following other text is treated as if it were | |
5014 this far to the right of the start of its line. | |
5015 perl-label-offset | |
5016 Extra indentation for line that is a label. | |
5017 | |
5018 Various indentation styles: K&R BSD BLK GNU LW | |
5019 perl-indent-level 5 8 0 2 4 | |
5020 perl-continued-statement-offset 5 8 4 2 4 | |
5021 perl-continued-brace-offset 0 0 0 0 -4 | |
5022 perl-brace-offset -5 -8 0 0 0 | |
5023 perl-brace-imaginary-offset 0 0 4 0 0 | |
5024 perl-label-offset -5 -8 -2 -2 -2 | |
5025 | |
5026 Turning on Perl mode runs the normal hook `perl-mode-hook'." t nil) | |
5027 | |
5028 ;;;*** | |
5029 | |
5030 ;;;### (autoloads (picture-mode) "picture" "modes/picture.el" (12639 8578)) | |
5031 ;;; Generated autoloads from modes/picture.el | |
5032 | |
5033 (autoload 'picture-mode "picture" "\ | |
5034 Switch to Picture mode, in which a quarter-plane screen model is used. | |
5035 Printing characters replace instead of inserting themselves with motion | |
5036 afterwards settable by these commands: | |
5037 C-c < Move left after insertion. | |
5038 C-c > Move right after insertion. | |
5039 C-c ^ Move up after insertion. | |
5040 C-c . Move down after insertion. | |
5041 C-c ` Move northwest (nw) after insertion. | |
5042 C-c ' Move northeast (ne) after insertion. | |
5043 C-c / Move southwest (sw) after insertion. | |
5044 C-c \\ Move southeast (se) after insertion. | |
5045 The current direction is displayed in the modeline. The initial | |
5046 direction is right. Whitespace is inserted and tabs are changed to | |
5047 spaces when required by movement. You can move around in the buffer | |
5048 with these commands: | |
5049 \\[picture-move-down] Move vertically to SAME column in previous line. | |
5050 \\[picture-move-up] Move vertically to SAME column in next line. | |
5051 \\[picture-end-of-line] Move to column following last non-whitespace character. | |
5052 \\[picture-forward-column] Move right inserting spaces if required. | |
5053 \\[picture-backward-column] Move left changing tabs to spaces if required. | |
5054 C-c C-f Move in direction of current picture motion. | |
5055 C-c C-b Move in opposite direction of current picture motion. | |
5056 Return Move to beginning of next line. | |
5057 You can edit tabular text with these commands: | |
5058 M-Tab Move to column beneath (or at) next interesting character. | |
5059 `Indents' relative to a previous line. | |
5060 Tab Move to next stop in tab stop list. | |
5061 C-c Tab Set tab stops according to context of this line. | |
5062 With ARG resets tab stops to default (global) value. | |
5063 See also documentation of variable picture-tab-chars | |
5064 which defines \"interesting character\". You can manually | |
5065 change the tab stop list with command \\[edit-tab-stops]. | |
5066 You can manipulate text with these commands: | |
5067 C-d Clear (replace) ARG columns after point without moving. | |
5068 C-c C-d Delete char at point - the command normally assigned to C-d. | |
5069 \\[picture-backward-clear-column] Clear (replace) ARG columns before point, moving back over them. | |
5070 \\[picture-clear-line] Clear ARG lines, advancing over them. The cleared | |
5071 text is saved in the kill ring. | |
5072 \\[picture-open-line] Open blank line(s) beneath current line. | |
5073 You can manipulate rectangles with these commands: | |
5074 C-c C-k Clear (or kill) a rectangle and save it. | |
5075 C-c C-w Like C-c C-k except rectangle is saved in named register. | |
5076 C-c C-y Overlay (or insert) currently saved rectangle at point. | |
5077 C-c C-x Like C-c C-y except rectangle is taken from named register. | |
5078 \\[copy-rectangle-to-register] Copies a rectangle to a register. | |
5079 \\[advertised-undo] Can undo effects of rectangle overlay commands | |
5080 commands if invoked soon enough. | |
5081 You can return to the previous mode with: | |
5082 C-c C-c Which also strips trailing whitespace from every line. | |
5083 Stripping is suppressed by supplying an argument. | |
5084 | |
5085 Entry to this mode calls the value of picture-mode-hook if non-nil. | |
5086 | |
5087 Note that Picture mode commands will work outside of Picture mode, but | |
5088 they are not defaultly assigned to keys." t nil) | |
5089 | |
5090 (defalias 'edit-picture 'picture-mode) | |
5091 | |
5092 ;;;*** | |
5093 | |
5094 ;;;### (autoloads (postscript-mode) "postscript" "modes/postscript.el" (12558 60895)) | |
5095 ;;; Generated autoloads from modes/postscript.el | |
5096 | |
5097 (autoload 'postscript-mode "postscript" "\ | |
5098 Major mode for editing PostScript files. | |
5099 | |
5100 \\[ps-execute-buffer] will send the contents of the buffer to the NeWS | |
5101 server using psh(1). \\[ps-execute-region] sends the current region. | |
5102 \\[ps-shell] starts an interactive psh(1) window which will be used for | |
5103 subsequent \\[ps-execute-buffer] or \\[ps-execute-region] commands. | |
5104 | |
5105 In this mode, TAB and \\[indent-region] attempt to indent code | |
5106 based on the position of {}, [], and begin/end pairs. The variable | |
5107 ps-indent-level controls the amount of indentation used inside | |
5108 arrays and begin/end pairs. | |
5109 | |
5110 \\{ps-mode-map} | |
5111 | |
5112 \\[postscript-mode] calls the value of the variable postscript-mode-hook | |
5113 with no args, if that value is non-nil." t nil) | |
5114 | |
5115 ;;;*** | |
5116 | |
5117 ;;;### (autoloads (run-prolog inferior-prolog-mode prolog-mode) "prolog" "modes/prolog.el" (12558 60895)) | |
5118 ;;; Generated autoloads from modes/prolog.el | |
5119 | |
5120 (autoload 'prolog-mode "prolog" "\ | |
5121 Major mode for editing Prolog code for Prologs. | |
5122 Blank lines and `%%...' separate paragraphs. `%'s start comments. | |
5123 Commands: | |
5124 \\{prolog-mode-map} | |
5125 Entry to this mode calls the value of `prolog-mode-hook' | |
5126 if that value is non-nil." t nil) | |
5127 | |
5128 (autoload 'inferior-prolog-mode "prolog" "\ | |
5129 Major mode for interacting with an inferior Prolog process. | |
5130 | |
5131 The following commands are available: | |
5132 \\{inferior-prolog-mode-map} | |
5133 | |
5134 Entry to this mode calls the value of `prolog-mode-hook' with no arguments, | |
5135 if that value is non-nil. Likewise with the value of `comint-mode-hook'. | |
5136 `prolog-mode-hook' is called after `comint-mode-hook'. | |
5137 | |
5138 You can send text to the inferior Prolog from other buffers | |
5139 using the commands `send-region', `send-string' and \\[prolog-consult-region]. | |
5140 | |
5141 Commands: | |
5142 Tab indents for Prolog; with argument, shifts rest | |
5143 of expression rigidly with the current line. | |
5144 Paragraphs are separated only by blank lines and '%%'. | |
5145 '%'s start comments. | |
5146 | |
5147 Return at end of buffer sends line as input. | |
5148 Return not at end copies rest of line to end and sends it. | |
5149 \\[comint-kill-input] and \\[backward-kill-word] are kill commands, imitating normal Unix input editing. | |
5150 \\[comint-interrupt-subjob] interrupts the shell or its current subjob if any. | |
5151 \\[comint-stop-subjob] stops. \\[comint-quit-subjob] sends quit signal." t nil) | |
5152 | |
5153 (autoload 'run-prolog "prolog" "\ | |
5154 Run an inferior Prolog process, input and output via buffer *prolog*." t nil) | |
5155 | |
5156 ;;;*** | |
5157 | |
5158 ;;;### (autoloads (rexx-mode) "rexx-mode" "modes/rexx-mode.el" (12558 60898)) | |
5159 ;;; Generated autoloads from modes/rexx-mode.el | |
5160 | |
5161 (autoload 'rexx-mode "rexx-mode" "\ | |
5162 Major mode for editing REXX code. | |
5163 \\{rexx-mode-map} | |
5164 | |
5165 Variables controlling indentation style: | |
5166 rexx-indent | |
5167 The basic indentation for do-blocks. | |
5168 rexx-end-indent | |
5169 The relative offset of the \"end\" statement. 0 places it in the | |
5170 same column as the statements of the block. Setting it to the same | |
5171 value as rexx-indent places the \"end\" under the do-line. | |
5172 rexx-cont-indent | |
5173 The indention for lines following \"then\", \"else\" and \",\" | |
5174 (continued) lines. | |
5175 rexx-tab-always-indent | |
5176 Non-nil means TAB in REXX mode should always reindent the current | |
5177 line, regardless of where in the line the point is when the TAB | |
5178 command is used. | |
5179 | |
5180 If you have set rexx-end-indent to a nonzero value, you probably want to | |
5181 remap RETURN to rexx-indent-newline-indent. It makes sure that lines | |
5182 indents correctly when you press RETURN. | |
5183 | |
5184 An extensive abbrevation table consisting of all the keywords of REXX are | |
5185 supplied. Expanded keywords are converted into upper case making it | |
5186 easier to distinguish them. To use this feature the buffer must be in | |
5187 abbrev-mode. (See example below.) | |
5188 | |
5189 Turning on REXX mode calls the value of the variable rexx-mode-hook with | |
5190 no args, if that value is non-nil. | |
5191 | |
5192 For example: | |
5193 \(setq rexx-mode-hook '(lambda () | |
5194 (setq rexx-indent 4) | |
5195 (setq rexx-end-indent 4) | |
5196 (setq rexx-cont-indent 4) | |
5197 (local-set-key \"\\C-m\" 'rexx-indent-newline-indent) | |
5198 (abbrev-mode 1) | |
5199 )) | |
5200 | |
5201 will make the END aligned with the DO/SELECT. It will indent blocks and | |
5202 IF-statenents four steps and make sure that the END jumps into the | |
5203 correct position when RETURN is pressed. Finaly it will use the abbrev | |
5204 table to convert all REXX keywords into upper case." t nil) | |
5205 | |
5206 ;;;*** | |
5207 | |
5208 ;;;### (autoloads (resize-minibuffer-mode) "rsz-minibuf" "modes/rsz-minibuf.el" (12546 50449)) | |
5209 ;;; Generated autoloads from modes/rsz-minibuf.el | |
5210 | |
5211 (defvar resize-minibuffer-mode nil "\ | |
5212 *If non-`nil', resize the minibuffer so its entire contents are visible.") | |
5213 | |
5214 (defvar resize-minibuffer-window-max-height nil "\ | |
5215 *Maximum size the minibuffer window is allowed to become. | |
5216 If less than 1 or not a number, the limit is the height of the frame in | |
5217 which the active minibuffer window resides.") | |
5218 | |
5219 (defvar resize-minibuffer-window-exactly t "\ | |
5220 *If non-`nil', make minibuffer exactly the size needed to display all its contents. | |
5221 Otherwise, the minibuffer window can temporarily increase in size but | |
5222 never get smaller while it is active.") | |
5223 | |
5224 (defvar resize-minibuffer-frame nil "\ | |
5225 *If non-`nil' and the active minibuffer is the sole window in its frame, allow changing the frame height.") | |
5226 | |
5227 (defvar resize-minibuffer-frame-max-height nil "\ | |
5228 *Maximum size the minibuffer frame is allowed to become. | |
5229 If less than 1 or not a number, there is no limit.") | |
5230 | |
5231 (defvar resize-minibuffer-frame-exactly nil "\ | |
5232 *If non-`nil', make minibuffer frame exactly the size needed to display all its contents. | |
5233 Otherwise, the minibuffer frame can temporarily increase in size but | |
5234 never get smaller while it is active.") | |
5235 | |
5236 (autoload 'resize-minibuffer-mode "rsz-minibuf" "\ | |
5237 Enable or disable resize-minibuffer mode. | |
5238 A negative prefix argument disables this mode. A positive argument or | |
5239 argument of 0 enables it. | |
5240 | |
5241 When this minor mode is enabled, the minibuffer is dynamically resized to | |
5242 contain the entire region of text put in it as you type. | |
5243 | |
5244 The variable `resize-minibuffer-mode' is set to t or nil depending on | |
5245 whether this mode is active or not. | |
5246 | |
5247 The maximum height to which the minibuffer can grow is controlled by the | |
5248 variable `resize-minibuffer-window-max-height'. | |
5249 | |
5250 The variable `resize-minibuffer-window-exactly' determines whether the | |
5251 minibuffer window should ever be shrunk to make it no larger than needed to | |
5252 display its contents. | |
5253 | |
5254 When using a window system, it is possible for a minibuffer to tbe the sole | |
5255 window in a frame. Since that window is already its maximum size, the only | |
5256 way to make more text visible at once is to increase the size of the frame. | |
5257 The variable `resize-minibuffer-frame' controls whether this should be | |
5258 done. The variables `resize-minibuffer-frame-max-height' and | |
5259 `resize-minibuffer-frame-exactly' are analogous to their window | |
5260 counterparts." t nil) | |
5261 | |
5262 ;;;*** | |
5263 | |
5264 ;;;### (autoloads (scheme-mode) "scheme" "modes/scheme.el" (12376 19455)) | |
5265 ;;; Generated autoloads from modes/scheme.el | |
5266 | |
5267 (autoload 'scheme-mode "scheme" "\ | |
5268 Major mode for editing Scheme code. | |
5269 Editing commands are similar to those of lisp-mode. | |
5270 | |
5271 In addition, if an inferior Scheme process is running, some additional | |
5272 commands will be defined, for evaluating expressions and controlling | |
5273 the interpreter, and the state of the process will be displayed in the | |
5274 modeline of all Scheme buffers. The names of commands that interact | |
5275 with the Scheme process start with \"xscheme-\". For more information | |
5276 see the documentation for xscheme-interaction-mode. | |
5277 | |
5278 Commands: | |
5279 Delete converts tabs to spaces as it moves back. | |
5280 Blank lines separate paragraphs. Semicolons start comments. | |
5281 \\{scheme-mode-map} | |
5282 Entry to this mode calls the value of scheme-mode-hook | |
5283 if that value is non-nil." t nil) | |
5284 | |
5285 ;;;*** | |
5286 | |
5287 ;;;### (autoloads (scribe-mode) "scribe" "modes/scribe.el" (12376 19456)) | |
5288 ;;; Generated autoloads from modes/scribe.el | |
5289 | |
5290 (autoload 'scribe-mode "scribe" "\ | |
5291 Major mode for editing files of Scribe (a text formatter) source. | |
5292 Scribe-mode is similar text-mode, with a few extra commands added. | |
5293 \\{scribe-mode-map} | |
5294 | |
5295 Interesting variables: | |
5296 | |
5297 scribe-fancy-paragraphs | |
5298 Non-nil makes Scribe mode use a different style of paragraph separation. | |
5299 | |
5300 scribe-electric-quote | |
5301 Non-nil makes insert of double quote use `` or '' depending on context. | |
5302 | |
5303 scribe-electric-parenthesis | |
5304 Non-nil makes an open-parenthesis char (one of `([<{') | |
5305 automatically insert its close if typed after an @Command form." t nil) | |
5306 | |
5307 ;;;*** | |
5308 | |
5309 ;;;### (autoloads (mail-other-frame mail-other-window mail mail-mode) "sendmail" "modes/sendmail.el" (12686 31716)) | |
5310 ;;; Generated autoloads from modes/sendmail.el | |
5311 | |
5312 (defvar mail-from-style 'angles "\ | |
5313 *Specifies how \"From:\" fields look. | |
5314 | |
5315 If `nil', they contain just the return address like: | |
5316 king@grassland.com | |
5317 If `parens', they look like: | |
5318 king@grassland.com (Elvis Parsley) | |
5319 If `angles', they look like: | |
5320 Elvis Parsley <king@grassland.com>") | |
5321 | |
5322 (defvar mail-self-blind nil "\ | |
5323 Non-nil means insert BCC to self in messages to be sent. | |
5324 This is done when the message is initialized, | |
5325 so you can remove or alter the BCC field to override the default.") | |
5326 | |
5327 (defvar mail-interactive nil "\ | |
5328 Non-nil means when sending a message wait for and display errors. | |
5329 nil means let mailer mail back a message to report errors.") | |
5330 | |
5331 (defvar mail-dir nil "\ | |
5332 *Default directory for saving messages.") | |
5333 | |
5334 (defvar rmail-ignored-headers (purecopy (concat "^\\(" (mapconcat 'identity '("Sender:" "References:" "Return-Path:" "Received:" "[^: \n]*Message-ID:" "Errors-To:" "Path:" "Expires:" "Xref:" "Lines:" "Approved:" "Distribution:" "Content-Length:" "Mime-Version:" "Content-Type:" "Content-Transfer-Encoding:" "X400-Received:" "X400-Originator:" "X400-Mts-Identifier:" "X400-Content-Type:" "Content-Identifier:" "Status:" "Summary-Line:" "X-Attribution:" "Via:" "Sent-Via:" "Mail-From:" "Origin:" "Comments:" "Originator:" "NF-ID:" "NF-From:" "Posting-Version:" "Posted:" "Posted-Date:" "Date-Received:" "Relay-Version:" "Article-I\\.D\\.:" "NNTP-Version:" "NNTP-Posting-Host:" "X-Mailer:" "X-Newsreader:" "News-Software:" "X-Received:" "X-References:" "X-Envelope-To:" "X-VMS-" "Remailed-" "X-Plantation:" "X-Windows:" "X-Pgp-") "\\|") "\\)")) "\ | |
5335 *Gubbish header fields one would rather not see.") | |
5336 | |
5337 (defvar mail-yank-ignored-headers (purecopy (concat rmail-ignored-headers "\\|" "^\\(" (mapconcat 'identity '("Resent-To:" "Resent-By:" "Resent-CC:" "To:" "Subject:" "In-Reply-To:") "\\|") "\\)")) "\ | |
5338 Delete these headers from old message when it's inserted in a reply.") | |
5339 | |
5340 (defvar send-mail-function 'sendmail-send-it "\ | |
5341 Function to call to send the current buffer as mail. | |
5342 The headers should be delimited by a line whose contents | |
5343 match the variable `mail-header-separator'.") | |
5344 | |
5345 (defvar mail-header-separator (purecopy "--text follows this line--") "\ | |
5346 *Line used to separate headers from text in messages being composed.") | |
5347 | |
5348 (defvar mail-archive-file-name nil "\ | |
5349 *Name of file to write all outgoing messages in, or nil for none. | |
5350 This can be an inbox file or an Rmail file.") | |
5351 | |
5352 (defvar mail-default-reply-to nil "\ | |
5353 *Address to insert as default Reply-to field of outgoing messages. | |
5354 If nil, it will be initialized from the REPLYTO environment variable | |
5355 when you first send mail.") | |
5356 | |
5357 (defvar mail-alias-file nil "\ | |
5358 *If non-nil, the name of a file to use instead of `/usr/lib/aliases'. | |
5359 This file defines aliases to be expanded by the mailer; this is a different | |
5360 feature from that of defining aliases in `.mailrc' to be expanded in Emacs. | |
5361 This variable has no effect unless your system uses sendmail as its mailer.") | |
5362 | |
5363 (defvar mail-yank-prefix "> " "\ | |
5364 *Prefix insert on lines of yanked message being replied to. | |
5365 nil means use indentation.") | |
5366 | |
5367 (defvar mail-signature nil "\ | |
5368 *Text inserted at end of mail buffer when a message is initialized. | |
5369 If t, it means to insert the contents of the file `mail-signature-file'.") | |
5370 | |
5371 (autoload 'mail-mode "sendmail" "\ | |
5372 Major mode for editing mail to be sent. | |
5373 Like Text Mode but with these additional commands: | |
5374 C-c C-s mail-send (send the message) C-c C-c mail-send-and-exit | |
5375 C-c C-f move to a header field (and create it if there isn't): | |
5376 C-c C-f C-t move to To: C-c C-f C-s move to Subj: | |
5377 C-c C-f C-b move to BCC: C-c C-f C-c move to CC: | |
5378 C-c C-f C-f move to FCC: C-c C-f C-r move to Reply-To: | |
5379 C-c C-t mail-text (move to beginning of message text). | |
5380 C-c C-w mail-signature (insert `mail-signature-file' file). | |
5381 C-c C-y mail-yank-original (insert current message, in Rmail). | |
5382 C-c C-q mail-fill-yanked-message (fill what was yanked). | |
5383 C-c C-v mail-sent-via (add a sent-via field for each To or CC)." t nil) | |
5384 | |
5385 (autoload 'mail "sendmail" "\ | |
5386 Edit a message to be sent. Prefix arg means resume editing (don't erase). | |
5387 When this function returns, the buffer `*mail*' is selected. | |
5388 The value is t if the message was newly initialized; otherwise, nil. | |
5389 | |
5390 Optionally, the signature file `mail-signature-file' can be inserted at the | |
5391 end; see the variable `mail-signature'. | |
5392 | |
5393 \\<mail-mode-map> | |
5394 While editing message, type \\[mail-send-and-exit] to send the message and exit. | |
5395 | |
5396 Various special commands starting with C-c are available in sendmail mode | |
5397 to move to message header fields: | |
5398 \\{mail-mode-map} | |
5399 | |
5400 The variable `mail-signature' controls whether the signature file | |
5401 `mail-signature-file' is inserted immediately. | |
5402 | |
5403 If `mail-signature' is nil, use \\[mail-signature] to insert the | |
5404 signature in `mail-signature-file'. | |
5405 | |
5406 If `mail-self-blind' is non-nil, a BCC to yourself is inserted | |
5407 when the message is initialized. | |
5408 | |
5409 If `mail-default-reply-to' is non-nil, it should be an address (a string); | |
5410 a Reply-to: field with that address is inserted. | |
5411 | |
5412 If `mail-archive-file-name' is non-nil, an FCC field with that file name | |
5413 is inserted. | |
5414 | |
5415 The normal hook `mail-setup-hook' is run after the message is | |
5416 initialized. It can add more default fields to the message. | |
5417 | |
5418 When calling from a program, the first argument if non-nil says | |
5419 not to erase the existing contents of the `*mail*' buffer. | |
5420 | |
5421 The second through fifth arguments, | |
5422 TO, SUBJECT, IN-REPLY-TO and CC, specify if non-nil | |
5423 the initial contents of those header fields. | |
5424 These arguments should not have final newlines. | |
5425 The sixth argument REPLYBUFFER is a buffer whose contents | |
5426 should be yanked if the user types C-c C-y. | |
5427 The seventh argument ACTIONS is a list of actions to take | |
5428 if/when the message is sent. Each action looks like (FUNCTION . ARGS); | |
5429 when the message is sent, we apply FUNCTION to ARGS. | |
5430 This is how Rmail arranges to mark messages `answered'." t nil) | |
5431 | |
5432 (autoload 'mail-other-window "sendmail" "\ | |
5433 Like `mail' command, but display mail buffer in another window." t nil) | |
5434 | |
5435 (autoload 'mail-other-frame "sendmail" "\ | |
5436 Like `mail' command, but display mail buffer in another frame." t nil) | |
5437 | |
5438 (define-key ctl-x-map "m" 'mail) | |
5439 | |
5440 (define-key ctl-x-4-map "m" 'mail-other-window) | |
5441 | |
5442 (define-key ctl-x-5-map "m" 'mail-other-frame) | |
5443 | |
5444 (add-hook 'same-window-buffer-names "*mail*") | |
5445 | |
5446 ;;;*** | |
5447 | |
5448 ;;;### (autoloads nil "simula" "modes/simula.el" (12546 50444)) | |
5449 ;;; Generated autoloads from modes/simula.el | |
5450 | |
5451 ;;;### (autoloads (tcl-help-on-word inferior-tcl tcl-mode) "tcl" "modes/tcl.el" (12639 8579)) | |
5452 ;;; Generated autoloads from modes/tcl.el | |
5453 | |
5454 (autoload 'tcl-mode "tcl" "\ | |
5455 Major mode for editing Tcl code. | |
5456 Expression and list commands understand all Tcl brackets. | |
5457 Tab indents for Tcl code. | |
5458 Paragraphs are separated by blank lines only. | |
5459 Delete converts tabs to spaces as it moves back. | |
5460 | |
5461 Variables controlling indentation style: | |
5462 tcl-indent-level | |
5463 Indentation of Tcl statements within surrounding block. | |
5464 tcl-continued-indent-level | |
5465 Indentation of continuation line relative to first line of command. | |
5466 | |
5467 Variables controlling user interaction with mode (see variable | |
5468 documentation for details): | |
5469 tcl-tab-always-indent | |
5470 Controls action of TAB key. | |
5471 tcl-auto-newline | |
5472 Non-nil means automatically newline before and after braces, brackets, | |
5473 and semicolons inserted in Tcl code. | |
5474 tcl-electric-hash-style | |
5475 Controls action of `#' key. | |
5476 tcl-use-hairy-comment-detector | |
5477 If t, use more complicated, but slower, comment detector. | |
5478 This variable is only used in GNU Emacs 19. | |
5479 tcl-use-smart-word-finder | |
5480 If not nil, use a smarter, Tcl-specific way to find the current | |
5481 word when looking up help on a Tcl command. | |
5482 | |
5483 Turning on Tcl mode calls the value of the variable `tcl-mode-hook' | |
5484 with no args, if that value is non-nil. Read the documentation for | |
5485 `tcl-mode-hook' to see what kinds of interesting hook functions | |
5486 already exist. | |
5487 | |
5488 Commands: | |
5489 \\{tcl-mode-map}" t nil) | |
5490 | |
5491 (autoload 'inferior-tcl "tcl" "\ | |
5492 Run inferior Tcl process. | |
5493 Prefix arg means enter program name interactively. | |
5494 See documentation for function `inferior-tcl-mode' for more information." t nil) | |
5495 | |
5496 (autoload 'tcl-help-on-word "tcl" "\ | |
5497 Get help on Tcl command. Default is word at point. | |
5498 Prefix argument means invert sense of `tcl-use-smart-word-finder'." t nil) | |
5499 | |
5500 ;;;*** | |
5501 | |
5502 ;;;### (autoloads (latex-mode plain-tex-mode tex-mode) "tex-mode" "modes/tex-mode.el" (12376 19459)) | |
5503 ;;; Generated autoloads from modes/tex-mode.el | |
5504 | |
5505 (autoload 'tex-mode "tex-mode" "\ | |
5506 Major mode for editing files of input for TeX, LaTeX, or SliTeX. | |
5507 Tries to determine (by looking at the beginning of the file) whether | |
5508 this file is for plain TeX, LaTeX, or SliTeX and calls plain-tex-mode, | |
5509 latex-mode, or slitex-mode, respectively. If it cannot be determined, | |
5510 such as if there are no commands in the file, the value of tex-default-mode | |
5511 is used." t nil) | |
5512 | |
5513 (fset 'TeX-mode 'tex-mode) | |
5514 | |
5515 (fset 'LaTeX-mode 'latex-mode) | |
5516 | |
5517 (autoload 'plain-tex-mode "tex-mode" "\ | |
5518 Major mode for editing files of input for plain TeX. | |
5519 Makes $ and } display the characters they match. | |
5520 Makes \" insert `` when it seems to be the beginning of a quotation, | |
5521 and '' when it appears to be the end; it inserts \" only after a \\. | |
5522 | |
5523 Use \\[tex-region] to run TeX on the current region, plus a \"header\" | |
5524 copied from the top of the file (containing macro definitions, etc.), | |
5525 running TeX under a special subshell. \\[tex-buffer] does the whole buffer. | |
5526 \\[tex-file] saves the buffer and then processes the file. | |
5527 \\[tex-print] prints the .dvi file made by any of these. | |
5528 \\[tex-view] previews the .dvi file made by any of these. | |
5529 \\[tex-bibtex-file] runs bibtex on the file of the current buffer. | |
5530 | |
5531 Use \\[validate-tex-buffer] to check buffer for paragraphs containing | |
5532 mismatched $'s or braces. | |
5533 | |
5534 Special commands: | |
5535 \\{tex-mode-map} | |
5536 | |
5537 Mode variables: | |
5538 tex-run-command | |
5539 Command string used by \\[tex-region] or \\[tex-buffer]. | |
5540 tex-directory | |
5541 Directory in which to create temporary files for TeX jobs | |
5542 run by \\[tex-region] or \\[tex-buffer]. | |
5543 tex-dvi-print-command | |
5544 Command string used by \\[tex-print] to print a .dvi file. | |
5545 tex-alt-dvi-print-command | |
5546 Alternative command string used by \\[tex-print] (when given a prefix | |
5547 argument) to print a .dvi file. | |
5548 tex-dvi-view-command | |
5549 Command string used by \\[tex-view] to preview a .dvi file. | |
5550 tex-show-queue-command | |
5551 Command string used by \\[tex-show-print-queue] to show the print | |
5552 queue that \\[tex-print] put your job on. | |
5553 | |
5554 Entering Plain-tex mode calls the value of text-mode-hook, then the value of | |
5555 tex-mode-hook, and then the value of plain-tex-mode-hook. When the special | |
5556 subshell is initiated, the value of tex-shell-hook is called." t nil) | |
5557 | |
5558 (fset 'plain-TeX-mode 'plain-tex-mode) | |
5559 | |
5560 (autoload 'latex-mode "tex-mode" "\ | |
5561 Major mode for editing files of input for LaTeX. | |
5562 Makes $ and } display the characters they match. | |
5563 Makes \" insert `` when it seems to be the beginning of a quotation, | |
5564 and '' when it appears to be the end; it inserts \" only after a \\. | |
5565 | |
5566 Use \\[tex-region] to run LaTeX on the current region, plus the preamble | |
5567 copied from the top of the file (containing \\documentstyle, etc.), | |
5568 running LaTeX under a special subshell. \\[tex-buffer] does the whole buffer. | |
5569 \\[tex-file] saves the buffer and then processes the file. | |
5570 \\[tex-print] prints the .dvi file made by any of these. | |
5571 \\[tex-view] previews the .dvi file made by any of these. | |
5572 \\[tex-bibtex-file] runs bibtex on the file of the current buffer. | |
5573 | |
5574 Use \\[validate-tex-buffer] to check buffer for paragraphs containing | |
5575 mismatched $'s or braces. | |
5576 | |
5577 Special commands: | |
5578 \\{tex-mode-map} | |
5579 | |
5580 Mode variables: | |
5581 latex-run-command | |
5582 Command string used by \\[tex-region] or \\[tex-buffer]. | |
5583 tex-directory | |
5584 Directory in which to create temporary files for LaTeX jobs | |
5585 run by \\[tex-region] or \\[tex-buffer]. | |
5586 tex-dvi-print-command | |
5587 Command string used by \\[tex-print] to print a .dvi file. | |
5588 tex-alt-dvi-print-command | |
5589 Alternative command string used by \\[tex-print] (when given a prefix | |
5590 argument) to print a .dvi file. | |
5591 tex-dvi-view-command | |
5592 Command string used by \\[tex-view] to preview a .dvi file. | |
5593 tex-show-queue-command | |
5594 Command string used by \\[tex-show-print-queue] to show the print | |
5595 queue that \\[tex-print] put your job on. | |
5596 | |
5597 Entering Latex mode calls the value of text-mode-hook, then the value of | |
5598 tex-mode-hook, and then the value of latex-mode-hook. When the special | |
5599 subshell is initiated, the value of tex-shell-hook is called." t nil) | |
5600 | |
5601 ;;;*** | |
5602 | |
5603 ;;;### (autoloads (texinfo-mode) "texinfo" "modes/texinfo.el" (12558 60898)) | |
5604 ;;; Generated autoloads from modes/texinfo.el | |
5605 | |
5606 (autoload 'texinfo-mode "texinfo" "\ | |
5607 Major mode for editing Texinfo files. | |
5608 | |
5609 It has these extra commands: | |
5610 \\{texinfo-mode-map} | |
5611 | |
5612 These are files that are used as input for TeX to make printed manuals | |
5613 and also to be turned into Info files with \\[makeinfo-buffer] or | |
5614 the `makeinfo' program. These files must be written in a very restricted and | |
5615 modified version of TeX input format. | |
5616 | |
5617 Editing commands are like text-mode except that the syntax table is | |
5618 set up so expression commands skip Texinfo bracket groups. To see | |
5619 what the Info version of a region of the Texinfo file will look like, | |
5620 use \\[makeinfo-region], which runs `makeinfo' on the current region. | |
5621 | |
5622 You can show the structure of a Texinfo file with \\[texinfo-show-structure]. | |
5623 This command shows the structure of a Texinfo file by listing the | |
5624 lines with the @-sign commands for @chapter, @section, and the like. | |
5625 These lines are displayed in another window called the *Occur* window. | |
5626 In that window, you can position the cursor over one of the lines and | |
5627 use \\[occur-mode-goto-occurrence], to jump to the corresponding spot | |
5628 in the Texinfo file. | |
5629 | |
5630 In addition, Texinfo mode provides commands that insert various | |
5631 frequently used @-sign commands into the buffer. You can use these | |
5632 commands to save keystrokes. And you can insert balanced braces with | |
5633 \\[texinfo-insert-braces] and later use the command \\[up-list] to | |
5634 move forward past the closing brace. | |
5635 | |
5636 Also, Texinfo mode provides functions for automatically creating or | |
5637 updating menus and node pointers. These functions | |
5638 | |
5639 * insert the `Next', `Previous' and `Up' pointers of a node, | |
5640 * insert or update the menu for a section, and | |
5641 * create a master menu for a Texinfo source file. | |
5642 | |
5643 Here are the functions: | |
5644 | |
5645 texinfo-update-node \\[texinfo-update-node] | |
5646 texinfo-every-node-update \\[texinfo-every-node-update] | |
5647 texinfo-sequential-node-update | |
5648 | |
5649 texinfo-make-menu \\[texinfo-make-menu] | |
5650 texinfo-all-menus-update \\[texinfo-all-menus-update] | |
5651 texinfo-master-menu | |
5652 | |
5653 texinfo-indent-menu-description (column &optional region-p) | |
5654 | |
5655 The `texinfo-column-for-description' variable specifies the column to | |
5656 which menu descriptions are indented. | |
5657 | |
5658 Passed an argument (a prefix argument, if interactive), the | |
5659 `texinfo-update-node' and `texinfo-make-menu' functions do their jobs | |
5660 in the region. | |
5661 | |
5662 To use the updating commands, you must structure your Texinfo file | |
5663 hierarchically, such that each `@node' line, with the exception of the | |
5664 Top node, is accompanied by some kind of section line, such as an | |
5665 `@chapter' or `@section' line. | |
5666 | |
5667 If the file has a `top' node, it must be called `top' or `Top' and | |
5668 be the first node in the file. | |
5669 | |
5670 Entering Texinfo mode calls the value of text-mode-hook, and then the | |
5671 value of texinfo-mode-hook." t nil) | |
5672 | |
5673 ;;;*** | |
5674 | |
5675 ;;;### (autoloads nil "text-mode" "modes/text-mode.el" (12546 50443)) | |
5676 ;;; Generated autoloads from modes/text-mode.el | |
5677 | |
5678 ;;;### (autoloads (tc-recenter tc-scroll-down tc-scroll-up tc-scroll-line tc-associated-buffer tc-merge tc-dissociate tc-split tc-associate-buffer tc-two-columns) "two-column" "modes/two-column.el" (12648 18571)) | |
5679 ;;; Generated autoloads from modes/two-column.el | |
5680 | |
5681 (defvar tc-mode-map nil "\ | |
5682 Keymap for commands for two-column mode.") | |
5683 | |
5684 (if tc-mode-map nil (setq tc-mode-map (make-sparse-keymap)) (define-key tc-mode-map "1" 'tc-merge) (define-key tc-mode-map "2" 'tc-two-columns) (define-key tc-mode-map "b" 'tc-associate-buffer) (define-key tc-mode-map "d" 'tc-dissociate) (define-key tc-mode-map "\^L" 'tc-recenter) (define-key tc-mode-map "o" 'tc-associated-buffer) (define-key tc-mode-map "s" 'tc-split) (define-key tc-mode-map "{" 'shrink-window-horizontally) (define-key tc-mode-map "}" 'enlarge-window-horizontally) (define-key tc-mode-map " " 'tc-scroll-up) (define-key tc-mode-map "" 'tc-scroll-down) (define-key tc-mode-map " | |
5685 " 'tc-scroll-line)) | |
5686 | |
5687 (global-set-key "6" tc-mode-map) | |
5688 | |
5689 (defvar tc-other nil "\ | |
5690 Marker to the associated buffer, if non-nil.") | |
5691 | |
5692 (make-variable-buffer-local 'tc-other) | |
5693 | |
5694 (put 'tc-other 'permanent-local t) | |
5695 | |
5696 (autoload 'tc-two-columns "two-column" "\ | |
5697 Split current window vertically for two-column editing. | |
5698 | |
5699 When called the first time, associates a buffer with the current | |
5700 buffer. Both buffers are put in two-column minor mode and | |
5701 tc-mode-hook gets called on both. These buffers remember | |
5702 about one another, even when renamed. | |
5703 | |
5704 When called again, restores the screen layout with the current buffer | |
5705 first and the associated buffer to it's right. | |
5706 | |
5707 If you include long lines, i.e which will span both columns (eg. | |
5708 source code), they should be in what will be the first column, with | |
5709 the associated buffer having empty lines next to them. | |
5710 | |
5711 You have the following commands at your disposal: | |
5712 | |
5713 \\[tc-two-columns] Rearrange screen | |
5714 \\[tc-associate-buffer] Reassociate buffer after changing major mode | |
5715 \\[tc-scroll-up] Scroll both buffers up by a screenfull | |
5716 \\[tc-scroll-down] Scroll both buffers down by a screenful | |
5717 \\[tc-scroll-line] Scroll both buffers up by one or more lines | |
5718 \\[tc-recenter] Recenter and realign other buffer | |
5719 \\[shrink-window-horizontally], \\[enlarge-window-horizontally] Shrink, enlarge current column | |
5720 \\[tc-associated-buffer] Switch to associated buffer | |
5721 \\[tc-merge] Merge both buffers | |
5722 | |
5723 These keybindings can be customized in your ~/.emacs by `tc-prefix' | |
5724 and `tc-mode-map'. | |
5725 | |
5726 The appearance of the screen can be customized by the variables | |
5727 `tc-window-width', `tc-beyond-fill-column', | |
5728 `tc-mode-line-format' and `truncate-partial-width-windows'." t nil) | |
5729 | |
5730 (add-minor-mode 'tc-other " 2C" nil nil 'tc-two-columns) | |
5731 | |
5732 (autoload 'tc-associate-buffer "two-column" "\ | |
5733 Associate another buffer with this one in two-column minor mode. | |
5734 Can also be used to associate a just previously visited file, by | |
5735 accepting the proposed default buffer. | |
5736 | |
5737 See \\[tc-two-columns] and `lisp/two-column.el' for further details." t nil) | |
5738 | |
5739 (autoload 'tc-split "two-column" "\ | |
5740 Unmerge a two-column text into two buffers in two-column minor mode. | |
5741 The text is unmerged at the cursor's column which becomes the local | |
5742 value of `tc-window-width'. Only lines that have the ARG same | |
5743 preceding characters at that column get split. The ARG preceding | |
5744 characters without any leading whitespace become the local value for | |
5745 `tc-separator'. This way lines that continue across both | |
5746 columns remain untouched in the first buffer. | |
5747 | |
5748 This function can be used with a prototype line, to set up things as | |
5749 you like them. You write the first line of each column with the | |
5750 separator you like and then unmerge that line. E.g.: | |
5751 | |
5752 First column's text sSs Second columns text | |
5753 \\___/\\ | |
5754 / \\ | |
5755 5 character Separator You type M-5 \\[tc-split] with the point here | |
5756 | |
5757 See \\[tc-two-columns] and `lisp/two-column.el' for further details." t nil) | |
5758 | |
5759 (autoload 'tc-dissociate "two-column" "\ | |
5760 Turn off two-column minor mode in current and associated buffer. | |
5761 If the associated buffer is unmodified and empty, it is killed." t nil) | |
5762 | |
5763 (autoload 'tc-merge "two-column" "\ | |
5764 Merges the associated buffer with the current buffer. | |
5765 They get merged at the column, which is the value of | |
5766 `tc-window-width', i.e. usually at the vertical window | |
5767 separator. This separator gets replaced with white space. Beyond | |
5768 that the value of gets inserted on merged lines. The two columns are | |
5769 thus pasted side by side, in a single text. If the other buffer is | |
5770 not displayed to the left of this one, then this one becomes the left | |
5771 column. | |
5772 | |
5773 If you want `tc-separator' on empty lines in the second column, | |
5774 you should put just one space in them. In the final result, you can strip | |
5775 off trailing spaces with \\[beginning-of-buffer] \\[replace-regexp] [ SPC TAB ] + $ RET RET" t nil) | |
5776 | |
5777 (autoload 'tc-associated-buffer "two-column" "\ | |
5778 Switch to associated buffer." t nil) | |
5779 | |
5780 (autoload 'tc-scroll-line "two-column" "\ | |
5781 Scroll current window upward by ARG lines. | |
5782 The associated window gets scrolled to the same line." t nil) | |
5783 | |
5784 (autoload 'tc-scroll-up "two-column" "\ | |
5785 Scroll current window upward by ARG screens. | |
5786 The associated window gets scrolled to the same line." t nil) | |
5787 | |
5788 (autoload 'tc-scroll-down "two-column" "\ | |
5789 Scroll current window downward by ARG screens. | |
5790 The associated window gets scrolled to the same line." t nil) | |
5791 | |
5792 (autoload 'tc-recenter "two-column" "\ | |
5793 Center point in window. With ARG, put point on line ARG. | |
5794 This counts from bottom if ARG is negative. The associated window | |
5795 gets scrolled to the same line." t nil) | |
5796 | |
5797 ;;;*** | |
5798 | |
5799 ;;;### (autoloads (auto-view-mode view-major-mode view-mode view-minor-mode view-buffer-other-window view-file-other-window view-buffer view-file) "view-less" "modes/view-less.el" (12743 11603)) | |
5800 ;;; Generated autoloads from modes/view-less.el | |
5801 | |
5802 (autoload 'view-file "view-less" "\ | |
5803 Find FILE, enter view mode. With prefix arg OTHER-P, use other window." t nil) | |
5804 | |
5805 (autoload 'view-buffer "view-less" "\ | |
5806 Switch to BUF, enter view mode. With prefix arg use other window." t nil) | |
5807 | |
5808 (autoload 'view-file-other-window "view-less" "\ | |
5809 Find FILE in other window, and enter view mode." t nil) | |
5810 | |
5811 (autoload 'view-buffer-other-window "view-less" "\ | |
5812 Switch to BUFFER in another window, and enter view mode." t nil) | |
5813 | |
5814 (autoload 'view-minor-mode "view-less" "\ | |
5815 Minor mode for viewing text, with bindings like `less'. | |
5816 Commands are: | |
5817 \\<view-minor-mode-map> | |
5818 0..9 prefix args | |
5819 - prefix minus | |
5820 \\[scroll-up] page forward | |
5821 \\[scroll-down] page back | |
5822 \\[view-scroll-lines-up] scroll prefix-arg lines forward, default 1. | |
5823 \\[view-scroll-lines-down] scroll prefix-arg lines backward, default 1. | |
5824 \\[view-scroll-some-lines-down] scroll prefix-arg lines backward, default 10. | |
5825 \\[view-scroll-some-lines-up] scroll prefix-arg lines forward, default 10. | |
5826 \\[what-line] print line number | |
5827 \\[view-mode-describe] print this help message | |
5828 \\[view-search-forward] regexp search, uses previous string if you just hit RET | |
5829 \\[view-search-backward] as above but searches backward | |
5830 \\[view-repeat-search] repeat last search | |
5831 \\[view-goto-line] goto line prefix-arg, default 1 | |
5832 \\[view-last-windowful] goto line prefix-arg, default last line | |
5833 \\[view-goto-percent] goto a position by percentage | |
5834 \\[toggle-truncate-lines] toggle truncate-lines | |
5835 \\[view-file] view another file | |
5836 \\[view-buffer] view another buffer | |
5837 \\[view-cleanup-backspaces] cleanup backspace constructions | |
5838 \\[shell-command] execute a shell command | |
5839 \\[shell-command-on-region] execute a shell command with the region as input | |
5840 \\[view-quit] exit view-mode, and bury the current buffer. | |
5841 | |
5842 If invoked with the optional (prefix) arg non-nil, view-mode cleans up | |
5843 backspace constructions. | |
5844 | |
5845 More precisely: | |
5846 \\{view-minor-mode-map}" t nil) | |
5847 | |
5848 (autoload 'view-mode "view-less" "\ | |
5849 View the current buffer using view-minor-mode. This exists to be 99.9% | |
5850 compatible with the implementations of `view-mode' in view.el and older | |
5851 versions of view-less.el." t nil) | |
5852 | |
5853 (autoload 'view-major-mode "view-less" "\ | |
5854 View the current buffer using view-mode, as a major mode. | |
5855 This function has a nonstandard name because `view-mode' is wrongly | |
5856 named but is like this for compatibility reasons." t nil) | |
5857 | |
5858 (autoload 'auto-view-mode "view-less" "\ | |
5859 If the file of the current buffer is not writable, call view-mode. | |
5860 This is meant to be added to `find-file-hooks'." nil nil) | |
5861 | |
5862 ;;;*** | |
5863 | |
5864 ;;;### (autoloads nil "view" "modes/view.el" (12546 50445)) | |
5865 ;;; Generated autoloads from modes/view.el | |
5866 | |
5867 ;;;### (autoloads (vrml-mode) "vrml-mode" "modes/vrml-mode.el" (12714 11717)) | |
5868 ;;; Generated autoloads from modes/vrml-mode.el | |
5869 | |
5870 (autoload 'vrml-mode "vrml-mode" "\ | |
5871 Major mode for editing VRML code. | |
5872 Expression and list commands understand all VRML brackets. | |
5873 Tab indents for VRML code. | |
5874 Paragraphs are separated by blank lines only. | |
5875 Delete converts tabs to spaces as it moves back. | |
5876 | |
5877 Variables controlling indentation style: | |
5878 vrml-indent-level | |
5879 Indentation of VRML statements within surrounding block. | |
5880 | |
5881 Variables controlling user interaction with mode (see variable | |
5882 documentation for details): | |
5883 vrml-tab-always-indent | |
5884 Controls action of TAB key. | |
5885 vrml-auto-newline | |
5886 Non-nil means automatically newline before and after braces | |
5887 inserted in VRML code. | |
5888 | |
5889 Turning on VRML mode calls the value of the variable `vrml-mode-hook' | |
5890 with no args, if that value is non-nil. Read the documentation for | |
5891 `vrml-mode-hook' to see what kinds of interesting hook functions | |
5892 already exist. | |
5893 | |
5894 Commands: | |
5895 \\{vrml-mode-map}" t nil) | |
5896 | |
5897 ;;;*** | |
5898 | |
5899 ;;;### (autoloads (xpm-mode) "xpm-mode" "modes/xpm-mode.el" (12559 34912)) | |
5900 ;;; Generated autoloads from modes/xpm-mode.el | |
5901 | |
5902 (autoload 'xpm-mode "xpm-mode" "\ | |
5903 Treat the current buffer as an xpm file and colorize it. | |
5904 | |
5905 Shift-button-1 lets you paint by dragging the mouse. Shift-button-1 on a | |
5906 color definition line will change the current painting color to that line's | |
5907 value. | |
5908 | |
5909 Characters inserted from the keyboard will NOT be colored properly yet. | |
5910 Use the mouse, or do xpm-init (\\[xpm-init]) after making changes. | |
5911 | |
5912 \\[xpm-add-color] Add a new color, prompting for character and value | |
5913 \\[xpm-show-image] show the current image at the top of the buffer | |
5914 \\[xpm-parse-color] parse the current line's color definition and add | |
5915 it to the color table. Provided as a means of changing colors. | |
5916 XPM minor mode bindings: | |
5917 \\{xpm-mode-map}" t nil) | |
5918 | |
5919 ;;;*** | |
5920 | |
5921 ;;;### (autoloads nil "ns-init" "ns/ns-init.el" (12528 24026)) | |
5922 ;;; Generated autoloads from ns/ns-init.el | |
5923 | |
5924 ;;;### (autoloads nil "br-c++-ft" "oobr/br-c++-ft.el" (12376 19719)) | |
5925 ;;; Generated autoloads from oobr/br-c++-ft.el | |
5926 | |
5927 ;;;*** | |
5928 | |
5929 ;;;### (autoloads nil "br-c++" "oobr/br-c++.el" (12558 61009)) | |
5930 ;;; Generated autoloads from oobr/br-c++.el | |
5931 | |
5932 ;;;*** | |
5933 | |
5934 ;;;### (autoloads nil "br-c-ft" "oobr/br-c-ft.el" (12558 61026)) | |
5935 ;;; Generated autoloads from oobr/br-c-ft.el | |
5936 | |
5937 ;;;### (autoloads nil "br-clos-ft" "oobr/br-clos-ft.el" (12376 19720)) | |
5938 ;;; Generated autoloads from oobr/br-clos-ft.el | |
5939 | |
5940 ;;;*** | |
5941 | |
5942 ;;;### (autoloads nil "br-clos" "oobr/br-clos.el" (12558 61010)) | |
5943 ;;; Generated autoloads from oobr/br-clos.el | |
5944 | |
5945 ;;;### (autoloads nil "br-compl" "oobr/br-compl.el" (12376 19721)) | |
5946 ;;; Generated autoloads from oobr/br-compl.el | |
5947 | |
5948 ;;;*** | |
5949 | |
5950 ;;;### (autoloads nil "br-eif-ft" "oobr/br-eif-ft.el" (12376 19721)) | |
5951 ;;; Generated autoloads from oobr/br-eif-ft.el | |
5952 | |
5953 ;;;*** | |
5954 | |
5955 ;;;### (autoloads nil "br-eif" "oobr/br-eif.el" (12558 61010)) | |
5956 ;;; Generated autoloads from oobr/br-eif.el | |
5957 | |
5958 ;;;*** | |
5959 | |
5960 ;;;### (autoloads (br-env-load br-env-browse) "br-env" "oobr/br-env.el" (12714 11761)) | |
5961 ;;; Generated autoloads from oobr/br-env.el | |
5962 | |
5963 (autoload 'br-env-browse "br-env" "\ | |
5964 Invoke the OO-Browser on an existing or to be created Environment ENV-FILE." t nil) | |
5965 | |
5966 (autoload 'br-env-load "br-env" "\ | |
5967 Load browser Environment or spec from optional ENV-FILE or 'br-env-file'. | |
5968 Non-nil PROMPT means prompt user before building tables. | |
5969 Non-nil NO-BUILD means skip build of Environment entirely. | |
5970 Return t if load is successful, else nil." t nil) | |
5971 | |
5972 ;;;*** | |
5973 | |
5974 ;;;### (autoloads nil "br-ftr" "oobr/br-ftr.el" (12376 19723)) | |
5975 ;;; Generated autoloads from oobr/br-ftr.el | |
5976 | |
5977 ;;;*** | |
5978 | |
5979 ;;;### (autoloads nil "br-info" "oobr/br-info.el" (12558 61013)) | |
5980 ;;; Generated autoloads from oobr/br-info.el | |
5981 | |
5982 ;;;*** | |
5983 | |
5984 ;;;### (autoloads nil "br-init" "oobr/br-init.el" (12714 11763)) | |
5985 ;;; Generated autoloads from oobr/br-init.el | |
5986 | |
5987 ;;;### (autoloads nil "br-java-ft" "oobr/br-java-ft.el" (12558 61028)) | |
5988 ;;; Generated autoloads from oobr/br-java-ft.el | |
5989 | |
5990 ;;;*** | |
5991 | |
5992 ;;;### (autoloads nil "br-java" "oobr/br-java.el" (12558 61025)) | |
5993 ;;; Generated autoloads from oobr/br-java.el | |
5994 | |
5995 ;;;*** | |
5996 | |
5997 ;;;### (autoloads nil "br-lib" "oobr/br-lib.el" (12558 61015)) | |
5998 ;;; Generated autoloads from oobr/br-lib.el | |
5999 | |
6000 ;;;*** | |
6001 | |
6002 ;;;### (autoloads nil "br-menu" "oobr/br-menu.el" (12558 61025)) | |
6003 ;;; Generated autoloads from oobr/br-menu.el | |
6004 | |
6005 ;;;### (autoloads nil "br-objc-ft" "oobr/br-objc-ft.el" (12376 19725)) | |
6006 ;;; Generated autoloads from oobr/br-objc-ft.el | |
6007 | |
6008 ;;;*** | |
6009 | |
6010 ;;;### (autoloads nil "br-objc" "oobr/br-objc.el" (12558 61016)) | |
6011 ;;; Generated autoloads from oobr/br-objc.el | |
6012 | |
6013 ;;;*** | |
6014 | |
6015 ;;;### (autoloads nil "br-python-ft" "oobr/br-python-ft.el" (12714 11823)) | |
6016 ;;; Generated autoloads from oobr/br-python-ft.el | |
6017 | |
6018 ;;;*** | |
6019 | |
6020 ;;;### (autoloads nil "br-python" "oobr/br-python.el" (12714 11822)) | |
6021 ;;; Generated autoloads from oobr/br-python.el | |
6022 | |
6023 ;;;### (autoloads nil "br-site" "oobr/br-site.el" (12376 19725)) | |
6024 ;;; Generated autoloads from oobr/br-site.el | |
6025 | |
6026 ;;;*** | |
6027 | |
6028 ;;;### (autoloads nil "br-smt" "oobr/br-smt.el" (12558 61017)) | |
6029 ;;; Generated autoloads from oobr/br-smt.el | |
6030 | |
6031 ;;;*** | |
6032 | |
6033 ;;;### (autoloads (oo-browser) "br-start" "oobr/br-start.el" (12558 61017)) | |
6034 ;;; Generated autoloads from oobr/br-start.el | |
6035 | |
6036 (fset 'oobr 'oo-browser) | |
6037 | |
6038 (autoload 'oo-browser "br-start" "\ | |
6039 Prompt for an Environment and language over which to run the OO-Browser. | |
6040 Optional prefix argument SAME-ENV-FLAG means browse the current Environment, | |
6041 if any, without prompting." t nil) | |
6042 | |
6043 ;;;*** | |
6044 | |
6045 ;;;### (autoloads nil "br-tree" "oobr/br-tree.el" (12376 19726)) | |
6046 ;;; Generated autoloads from oobr/br-tree.el | |
6047 | |
6048 ;;;*** | |
6049 | |
6050 ;;;### (autoloads nil "br-vers" "oobr/br-vers.el" (12714 11765)) | |
6051 ;;; Generated autoloads from oobr/br-vers.el | |
6052 | |
6053 ;;;### (autoloads (br-to-from-viewer br-add-class-file) "br" "oobr/br.el" (12714 11764)) | |
6054 ;;; Generated autoloads from oobr/br.el | |
6055 | |
6056 (autoload 'br-add-class-file "br" "\ | |
6057 Add a file of classes to the current Environment. | |
6058 Interactively or when optional CLASS-PATH is nil, CLASS-PATH defaults to the | |
6059 current buffer file pathname. If optional LIB-TABLE-P is non-nil, add to | |
6060 Library Environment, otherwise add to System Environment. If optional | |
6061 SAVE-FILE is t, the Environment is then stored to the filename given by | |
6062 'br-env-file'. If SAVE-FILE is non-nil and not t, its string value is used | |
6063 as the file to which to save the Environment." t nil) | |
6064 | |
6065 (autoload 'br-to-from-viewer "br" "\ | |
6066 Move point to viewer window or back to last recorded listing window." t nil) | |
6067 | |
6068 ;;;*** | |
6069 | |
6070 ;;;### (autoloads (c++-browse) "c++-browse" "oobr/c++-browse.el" (12558 61020)) | |
6071 ;;; Generated autoloads from oobr/c++-browse.el | |
6072 | |
6073 (autoload 'c++-browse "c++-browse" "\ | |
6074 Invoke the C++ OO-Browser. | |
6075 This allows browsing through C++ library and system class hierarchies. With | |
6076 an optional non-nil prefix argument ENV-FILE, prompt for Environment file to | |
6077 use. Alternatively, a string value of ENV-FILE is used as the Environment | |
6078 file name. See also the file \"br-help\"." t nil) | |
6079 | |
6080 ;;;*** | |
6081 | |
6082 ;;;### (autoloads (clos-browse) "clos-brows" "oobr/clos-brows.el" (12558 61020)) | |
6083 ;;; Generated autoloads from oobr/clos-brows.el | |
6084 | |
6085 (autoload 'clos-browse "clos-brows" "\ | |
6086 Invoke the CLOS OO-Browser. | |
6087 This allows browsing through CLOS library and system class hierarchies. With | |
6088 an optional non-nil prefix argument ENV-FILE, prompt for Environment file | |
6089 to use. Alternatively, a string value of ENV-FILE is used as the | |
6090 Environment file name. See also the file \"br-help\"." t nil) | |
6091 | |
6092 ;;;*** | |
6093 | |
6094 ;;;### (autoloads (eif-browse) "eif-browse" "oobr/eif-browse.el" (12558 61022)) | |
6095 ;;; Generated autoloads from oobr/eif-browse.el | |
6096 | |
6097 (autoload 'eif-browse "eif-browse" "\ | |
6098 Invoke the Eiffel OO-Browser. | |
6099 This allows browsing through Eiffel library and system class hierarchies. | |
6100 With an optional prefix arg ENV-FILE equal to t, prompt for Environment file | |
6101 to use. Alternatively, a string value of ENV-FILE is used as the Environment | |
6102 file name. See also the file \"br-help\"." t nil) | |
6103 | |
6104 ;;;*** | |
6105 | |
6106 ;;;### (autoloads nil "eif-calls" "oobr/eif-calls.el" (12376 19728)) | |
6107 ;;; Generated autoloads from oobr/eif-calls.el | |
6108 | |
6109 ;;;*** | |
6110 | |
6111 ;;;### (autoloads nil "eif-ise-er" "oobr/eif-ise-er.el" (12376 19729)) | |
6112 ;;; Generated autoloads from oobr/eif-ise-er.el | |
6113 | |
6114 ;;;*** | |
6115 | |
6116 ;;;### (autoloads nil "hash-test" "oobr/hash-test.el" (12376 19729)) | |
6117 ;;; Generated autoloads from oobr/hash-test.el | |
6118 | |
6119 ;;;*** | |
6120 | |
6121 ;;;### (autoloads nil "hasht" "oobr/hasht.el" (12558 61022)) | |
6122 ;;; Generated autoloads from oobr/hasht.el | |
6123 | |
6124 ;;;*** | |
6125 | |
6126 ;;;### (autoloads nil "hmouse-br" "oobr/hmouse-br.el" (12558 61023)) | |
6127 ;;; Generated autoloads from oobr/hmouse-br.el | |
6128 | |
6129 ;;;### (autoloads (info-browse) "info-brows" "oobr/info-brows.el" (12558 61021)) | |
6130 ;;; Generated autoloads from oobr/info-brows.el | |
6131 | |
6132 (autoload 'info-browse "info-brows" "\ | |
6133 Invoke the Info OO-Browser. | |
6134 This allows browsing through Info library and system class hierarchies. With | |
6135 an optional non-nil prefix argument ENV-FILE, prompt for Environment file to | |
6136 use. Alternatively, a string value of ENV-FILE is used as the Environment | |
6137 file name. See also the file \"br-help\"." t nil) | |
6138 | |
6139 ;;;*** | |
6140 | |
6141 ;;;### (autoloads (java-browse) "java-brows" "oobr/java-brows.el" (12558 61028)) | |
6142 ;;; Generated autoloads from oobr/java-brows.el | |
6143 | |
6144 (autoload 'java-browse "java-brows" "\ | |
6145 Invoke the Java OO-Browser. | |
6146 This allows browsing through Java library and system class hierarchies. With | |
6147 an optional non-nil prefix argument ENV-FILE, prompt for Environment file to | |
6148 use. Alternatively, a string value of ENV-FILE is used as the Environment | |
6149 file name. See also the file \"br-help\"." t nil) | |
6150 | |
6151 ;;;*** | |
6152 | |
6153 ;;;### (autoloads (objc-browse) "objc-brows" "oobr/objc-brows.el" (12558 61024)) | |
6154 ;;; Generated autoloads from oobr/objc-brows.el | |
6155 | |
6156 (autoload 'objc-browse "objc-brows" "\ | |
6157 Invoke the Objective-C OO-Browser. | |
6158 This allows browsing through Objective-C library and system class | |
6159 hierarchies. With an optional non-nil prefix argument ENV-FILE, prompt for | |
6160 Environment file to use. Alternatively, a string value of ENV-FILE is used | |
6161 as the Environment file name. See also the file \"br-help\"." t nil) | |
6162 | |
6163 ;;;*** | |
6164 | |
6165 ;;;### (autoloads (python-browse) "python-browse" "oobr/python-browse.el" (12714 11823)) | |
6166 ;;; Generated autoloads from oobr/python-browse.el | |
6167 | |
6168 (autoload 'python-browse "python-browse" "\ | |
6169 Invoke the Python OO-Browser. | |
6170 This allows browsing through Python library and system class hierarchies. | |
6171 With an optional non-nil prefix argument ENV-FILE, prompt for Environment | |
6172 file to use. Alternatively, a string value of ENV-FILE is used as the | |
6173 Environment file name. See also the file \"br-help\"." t nil) | |
6174 | |
6175 ;;;*** | |
6176 | |
6177 ;;;### (autoloads (smt-browse) "smt-browse" "oobr/smt-browse.el" (12558 61024)) | |
6178 ;;; Generated autoloads from oobr/smt-browse.el | |
6179 | |
6180 (autoload 'smt-browse "smt-browse" "\ | |
6181 Invoke the Smalltalk OO-Browser. | |
6182 This allows browsing through Smalltalk library and system class hierarchies. | |
6183 With an optional non-nil prefix argument ENV-FILE, prompt for Environment | |
6184 file to use. Alternatively, a string value of ENV-FILE is used as the | |
6185 Environment file name. See also the file \"br-help\"." t nil) | |
6186 | |
6187 ;;;*** | |
6188 | |
6189 ;;;### (autoloads (add-log-current-defun change-log-mode add-change-log-entry-other-window add-change-log-entry find-change-log prompt-for-change-log-name) "add-log" "packages/add-log.el" (12558 60906)) | |
6190 ;;; Generated autoloads from packages/add-log.el | |
6191 | |
6192 (defvar change-log-default-name nil "\ | |
6193 *Name of a change log file for \\[add-change-log-entry].") | |
6194 | |
6195 (defvar add-log-current-defun-function nil "\ | |
6196 *If non-nil, function to guess name of current function from surrounding text. | |
6197 \\[add-change-log-entry] calls this function (if nil, `add-log-current-defun' | |
6198 instead) with no arguments. It returns a string or nil if it cannot guess.") | |
6199 | |
6200 (defvar add-log-full-name nil "\ | |
6201 *Full name of user, for inclusion in ChangeLog daily headers. | |
6202 This defaults to the value returned by the `user-full-name' function.") | |
6203 | |
6204 (defvar add-log-mailing-address nil "\ | |
6205 *Electronic mail address of user, for inclusion in ChangeLog daily headers. | |
6206 This defaults to the value of `user-mail-address'.") | |
6207 | |
6208 (autoload 'prompt-for-change-log-name "add-log" "\ | |
6209 Prompt for a change log name." nil nil) | |
6210 | |
6211 (autoload 'find-change-log "add-log" "\ | |
6212 Find a change log file for \\[add-change-log-entry] and return the name. | |
6213 Optional arg FILE-NAME specifies the file to use. | |
6214 If FILE-NAME is nil, use the value of `change-log-default-name'. | |
6215 If 'change-log-default-name' is nil, behave as though it were 'ChangeLog' | |
6216 \(or whatever we use on this operating system). | |
6217 | |
6218 If 'change-log-default-name' contains a leading directory component, then | |
6219 simply find it in the current directory. Otherwise, search in the current | |
6220 directory and its successive parents for a file so named. | |
6221 | |
6222 Once a file is found, `change-log-default-name' is set locally in the | |
6223 current buffer to the complete file name." nil nil) | |
6224 | |
6225 (autoload 'add-change-log-entry "add-log" "\ | |
6226 Find change log file and add an entry for today. | |
6227 Optional arg (interactive prefix) non-nil means prompt for user name and site. | |
6228 Second arg is file name of change log. If nil, uses `change-log-default-name'. | |
6229 Third arg OTHER-WINDOW non-nil means visit in other window. | |
6230 Fourth arg NEW-ENTRY non-nil means always create a new entry at the front; | |
6231 never append to an existing entry." t nil) | |
6232 | |
6233 (autoload 'add-change-log-entry-other-window "add-log" "\ | |
6234 Find change log file in other window and add an entry for today. | |
6235 Optional arg (interactive prefix) non-nil means prompt for user name and site. | |
6236 Second arg is file name of change log. If nil, uses `change-log-default-name'." t nil) | |
6237 | |
6238 (define-key ctl-x-4-map "a" 'add-change-log-entry-other-window) | |
6239 | |
6240 (autoload 'change-log-mode "add-log" "\ | |
6241 Major mode for editing change logs; like Indented Text Mode. | |
6242 Prevents numeric backups and sets `left-margin' to 8 and `fill-column' to 74. | |
6243 New log entries are usually made with \\[add-change-log-entry] or \\[add-change-log-entry-other-window]. | |
6244 Each entry behaves as a paragraph, and the entries for one day as a page. | |
6245 Runs `change-log-mode-hook'." t nil) | |
6246 | |
6247 (autoload 'add-log-current-defun "add-log" "\ | |
6248 Return name of function definition point is in, or nil. | |
6249 | |
6250 Understands C, Lisp, LaTeX (\"functions\" are chapters, sections, ...), | |
6251 Texinfo (@node titles), Perl, and Fortran. | |
6252 | |
6253 Other modes are handled by a heuristic that looks in the 10K before | |
6254 point for uppercase headings starting in the first column or | |
6255 identifiers followed by `:' or `=', see variable | |
6256 `add-log-current-defun-header-regexp'. | |
6257 | |
6258 Has a preference of looking backwards." nil nil) | |
6259 | |
6260 ;;;*** | |
6261 | |
6262 ;;;### (autoloads (apropos-documentation apropos-value apropos apropos-command) "apropos" "packages/apropos.el" (12740 25203)) | |
6263 ;;; Generated autoloads from packages/apropos.el | |
6264 | |
6265 (fset 'command-apropos 'apropos-command) | |
6266 | |
6267 (autoload 'apropos-command "apropos" "\ | |
6268 Shows commands (interactively callable functions) that match REGEXP. | |
6269 With optional prefix ARG or if `apropos-do-all' is non-nil, also show | |
6270 variables." t nil) | |
6271 | |
6272 (autoload 'apropos "apropos" "\ | |
6273 Show all bound symbols whose names match REGEXP. | |
6274 With optional prefix ARG or if `apropos-do-all' is non-nil, also show unbound | |
6275 symbols and key bindings, which is a little more time-consuming. | |
6276 Returns list of symbols and documentation found." t nil) | |
6277 | |
6278 (autoload 'apropos-value "apropos" "\ | |
6279 Show all symbols whose value's printed image matches REGEXP. | |
6280 With optional prefix ARG or if `apropos-do-all' is non-nil, also looks | |
6281 at the function and at the names and values of properties. | |
6282 Returns list of symbols and values found." t nil) | |
6283 | |
6284 (autoload 'apropos-documentation "apropos" "\ | |
6285 Show symbols whose documentation contain matches for REGEXP. | |
6286 With optional prefix ARG or if `apropos-do-all' is non-nil, also use | |
6287 documentation that is not stored in the documentation file and show key | |
6288 bindings. | |
6289 Returns list of symbols and documentation found." t nil) | |
6290 | |
6291 ;;;*** | |
6292 | |
6293 ;;;### (autoloads nil "array" "packages/array.el" (12547 2408)) | |
6294 ;;; Generated autoloads from packages/array.el | |
6295 | |
6296 ;;;### (autoloads nil "auto-save" "packages/auto-save.el" (12376 19476)) | |
6297 ;;; Generated autoloads from packages/auto-save.el | |
6298 | |
6299 ;;;### (autoloads (define-auto-insert auto-insert) "autoinsert" "packages/autoinsert.el" (12546 50457)) | |
6300 ;;; Generated autoloads from packages/autoinsert.el | |
6301 | |
6302 (autoload 'auto-insert "autoinsert" "\ | |
6303 Insert default contents into a new file if `auto-insert' is non-nil. | |
6304 Matches the visited file name against the elements of `auto-insert-alist'." t nil) | |
6305 | |
6306 (autoload 'define-auto-insert "autoinsert" "\ | |
6307 Associate CONDITION with (additional) ACTION in `auto-insert-alist'. | |
6308 Optional AFTER means to insert action after all existing actions for CONDITION, | |
6309 or if CONDITION had no actions, after all other CONDITIONs." nil nil) | |
6310 | |
6311 ;;;*** | |
6312 | |
6313 ;;;### (autoloads nil "avoid" "packages/avoid.el" (12558 60916)) | |
6314 ;;; Generated autoloads from packages/avoid.el | |
6315 | |
6316 (add-minor-mode 'mouse-avoidance-mode " Avoid") | |
6317 | |
6318 ;;;*** | |
6319 | |
6320 ;;;### (autoloads nil "balloon-help" "packages/balloon-help.el" (12547 2421)) | |
6321 ;;; Generated autoloads from packages/balloon-help.el | |
6322 | |
6323 ;;;### (autoloads nil "big-menubar" "packages/big-menubar.el" (12376 19509)) | |
6324 ;;; Generated autoloads from packages/big-menubar.el | |
6325 | |
6326 ;;;### (autoloads (blink-cursor-mode) "blink-cursor" "packages/blink-cursor.el" (12639 8850)) | |
6327 ;;; Generated autoloads from packages/blink-cursor.el | |
6328 | |
6329 (autoload 'blink-cursor-mode "blink-cursor" "\ | |
6330 Enable or disable a blinking cursor. | |
6331 If TIMEOUT is nil, toggle on or off. | |
6332 If TIMEOUT is t, enable with the previous timeout value. | |
6333 If TIMEOUT is 0, disable. | |
6334 If TIMEOUT is greater than 0, then the cursor will blink once | |
6335 each TIMEOUT secs (can be a float)." t nil) | |
6336 | |
6337 ;;;*** | |
6338 | |
6339 ;;;### (autoloads nil "blink-paren" "packages/blink-paren.el" (12376 19480)) | |
6340 ;;; Generated autoloads from packages/blink-paren.el | |
6341 | |
6342 ;;;### (autoloads (bookmark-menu-delete bookmark-menu-rename bookmark-menu-locate bookmark-menu-jump bookmark-menu-insert bookmark-bmenu-list bookmark-load bookmark-save bookmark-write bookmark-delete bookmark-insert bookmark-rename bookmark-insert-location bookmark-relocate bookmark-jump bookmark-set) "bookmark" "packages/bookmark.el" (12675 57084)) | |
6343 ;;; Generated autoloads from packages/bookmark.el | |
6344 | |
6345 (if (symbolp (key-binding "r")) nil (progn (define-key ctl-x-map "rb" 'bookmark-jump) (define-key ctl-x-map "rm" 'bookmark-set) (define-key ctl-x-map "rl" 'bookmark-bmenu-list))) | |
6346 | |
6347 (defvar bookmark-map nil "\ | |
6348 Keymap containing bindings to bookmark functions. | |
6349 It is not bound to any key by default: to bind it | |
6350 so that you have a bookmark prefix, just use `global-set-key' and bind a | |
6351 key of your choice to `bookmark-map'. All interactive bookmark | |
6352 functions have a binding in this keymap.") | |
6353 | |
6354 (define-prefix-command 'bookmark-map) | |
6355 | |
6356 (define-key bookmark-map "x" 'bookmark-set) | |
6357 | |
6358 (define-key bookmark-map "m" 'bookmark-set) | |
6359 | |
6360 (define-key bookmark-map "j" 'bookmark-jump) | |
6361 | |
6362 (define-key bookmark-map "g" 'bookmark-jump) | |
6363 | |
6364 (define-key bookmark-map "i" 'bookmark-insert) | |
6365 | |
6366 (define-key bookmark-map "e" 'edit-bookmarks) | |
6367 | |
6368 (define-key bookmark-map "f" 'bookmark-insert-location) | |
6369 | |
6370 (define-key bookmark-map "r" 'bookmark-rename) | |
6371 | |
6372 (define-key bookmark-map "d" 'bookmark-delete) | |
6373 | |
6374 (define-key bookmark-map "l" 'bookmark-load) | |
6375 | |
6376 (define-key bookmark-map "w" 'bookmark-write) | |
6377 | |
6378 (define-key bookmark-map "s" 'bookmark-save) | |
6379 | |
6380 (autoload 'bookmark-set "bookmark" "\ | |
6381 Set a bookmark named NAME inside a file. | |
6382 If name is nil, then the user will be prompted. | |
6383 With prefix arg, will not overwrite a bookmark that has the same name | |
6384 as NAME if such a bookmark already exists, but instead will \"push\" | |
6385 the new bookmark onto the bookmark alist. Thus the most recently set | |
6386 bookmark with name NAME would be the one in effect at any given time, | |
6387 but the others are still there, should you decide to delete the most | |
6388 recent one. | |
6389 | |
6390 To yank words from the text of the buffer and use them as part of the | |
6391 bookmark name, type C-w while setting a bookmark. Successive C-w's | |
6392 yank successive words. | |
6393 | |
6394 Typing C-u inserts the name of the last bookmark used in the buffer | |
6395 \(as an aid in using a single bookmark name to track your progress | |
6396 through a large file). If no bookmark was used, then C-u inserts the | |
6397 name of the file being visited. | |
6398 | |
6399 Use \\[bookmark-delete] to remove bookmarks (you give it a name, | |
6400 and it removes only the first instance of a bookmark with that name from | |
6401 the list of bookmarks.)" t nil) | |
6402 | |
6403 (autoload 'bookmark-jump "bookmark" "\ | |
6404 Jump to bookmark BOOKMARK (a point in some file). | |
6405 You may have a problem using this function if the value of variable | |
6406 `bookmark-alist' is nil. If that happens, you need to load in some | |
6407 bookmarks. See help on function `bookmark-load' for more about | |
6408 this. | |
6409 | |
6410 If the file pointed to by BOOKMARK no longer exists, you will be asked | |
6411 if you wish to give the bookmark a new location, and bookmark-jump | |
6412 will then jump to the new location, as well as recording it in place | |
6413 of the old one in the permanent bookmark record." t nil) | |
6414 | |
6415 (autoload 'bookmark-relocate "bookmark" "\ | |
6416 Relocate BOOKMARK -- prompts for a filename, and makes an already | |
6417 existing bookmark point to that file, instead of the one it used to | |
6418 point at. Useful when a file has been renamed after a bookmark was | |
6419 set in it." t nil) | |
6420 | |
6421 (autoload 'bookmark-insert-location "bookmark" "\ | |
6422 Insert the name of the file associated with BOOKMARK. | |
6423 Optional second arg NO-HISTORY means don't record this in the | |
6424 minibuffer history list `bookmark-history'." t nil) | |
6425 | |
6426 (autoload 'bookmark-rename "bookmark" "\ | |
6427 Change the name of OLD bookmark to NEW name. If called from | |
6428 keyboard, prompts for OLD and NEW. If called from menubar, OLD is | |
6429 selected from a menu, and prompts for NEW. | |
6430 | |
6431 If called from Lisp, prompts for NEW if only OLD was passed as an | |
6432 argument. If called with two strings, then no prompting is done. You | |
6433 must pass at least OLD when calling from Lisp. | |
6434 | |
6435 While you are entering the new name, consecutive C-w's insert | |
6436 consectutive words from the text of the buffer into the new bookmark | |
6437 name." t nil) | |
6438 | |
6439 (autoload 'bookmark-insert "bookmark" "\ | |
6440 Insert the text of the file pointed to by bookmark BOOKMARK. | |
6441 You may have a problem using this function if the value of variable | |
6442 `bookmark-alist' is nil. If that happens, you need to load in some | |
6443 bookmarks. See help on function `bookmark-load' for more about | |
6444 this." t nil) | |
6445 | |
6446 (autoload 'bookmark-delete "bookmark" "\ | |
6447 Delete BOOKMARK from the bookmark list. | |
6448 Removes only the first instance of a bookmark with that name. If | |
6449 there are one or more other bookmarks with the same name, they will | |
6450 not be deleted. Defaults to the \"current\" bookmark (that is, the | |
6451 one most recently used in this file, if any). | |
6452 Optional second arg BATCH means don't update the bookmark list buffer, | |
6453 probably because we were called from there." t nil) | |
6454 | |
6455 (autoload 'bookmark-write "bookmark" "\ | |
6456 Write bookmarks to a file (for which the user will be prompted | |
6457 interactively). Don't use this in Lisp programs; use bookmark-save | |
6458 instead." t nil) | |
6459 | |
6460 (autoload 'bookmark-save "bookmark" "\ | |
6461 Save currently defined bookmarks. | |
6462 Saves by default in the file defined by the variable | |
6463 `bookmark-default-file'. With a prefix arg, save it in file FILE | |
6464 \(second argument). | |
6465 | |
6466 If you are calling this from Lisp, the two arguments are PREFIX-ARG | |
6467 and FILE, and if you just want it to write to the default file, then | |
6468 pass no arguments. Or pass in nil and FILE, and it will save in FILE | |
6469 instead. If you pass in one argument, and it is non-nil, then the | |
6470 user will be interactively queried for a file to save in. | |
6471 | |
6472 When you want to load in the bookmarks from a file, use | |
6473 `bookmark-load', \\[bookmark-load]. That function will prompt you | |
6474 for a file, defaulting to the file defined by variable | |
6475 `bookmark-default-file'." t nil) | |
6476 | |
6477 (autoload 'bookmark-load "bookmark" "\ | |
6478 Load bookmarks from FILE (which must be in bookmark format). | |
6479 Appends loaded bookmarks to the front of the list of bookmarks. If | |
6480 optional second argument REVERT is non-nil, existing bookmarks are | |
6481 destroyed. Optional third arg NO-MSG means don't display any messages | |
6482 while loading. | |
6483 | |
6484 If you load a file that doesn't contain a proper bookmark alist, you | |
6485 will corrupt Emacs's bookmark list. Generally, you should only load | |
6486 in files that were created with the bookmark functions in the first | |
6487 place. Your own personal bookmark file, `~/.emacs.bmk', is | |
6488 maintained automatically by Emacs; you shouldn't need to load it | |
6489 explicitly." t nil) | |
6490 | |
6491 (autoload 'bookmark-bmenu-list "bookmark" "\ | |
6492 Display a list of existing bookmarks. | |
6493 The list is displayed in a buffer named `*Bookmark List*'. | |
6494 The leftmost column displays a D if the bookmark is flagged for | |
6495 deletion, or > if it is flagged for displaying." t nil) | |
6496 | |
6497 (defalias 'list-bookmarks 'bookmark-bmenu-list) | |
6498 | |
6499 (defalias 'edit-bookmarks 'bookmark-bmenu-list) | |
6500 | |
6501 (autoload 'bookmark-menu-insert "bookmark" "\ | |
6502 Insert the text of the file pointed to by bookmark BOOKMARK. | |
6503 You may have a problem using this function if the value of variable | |
6504 `bookmark-alist' is nil. If that happens, you need to load in some | |
6505 bookmarks. See help on function `bookmark-load' for more about | |
6506 this. | |
6507 | |
6508 Warning: this function only takes an EVENT as argument. Use the | |
6509 corresponding bookmark function from Lisp (the one without the | |
6510 \"-menu-\" in its name)." t nil) | |
6511 | |
6512 (autoload 'bookmark-menu-jump "bookmark" "\ | |
6513 Jump to bookmark BOOKMARK (a point in some file). | |
6514 You may have a problem using this function if the value of variable | |
6515 `bookmark-alist' is nil. If that happens, you need to load in some | |
6516 bookmarks. See help on function `bookmark-load' for more about | |
6517 this. | |
6518 | |
6519 Warning: this function only takes an EVENT as argument. Use the | |
6520 corresponding bookmark function from Lisp (the one without the | |
6521 \"-menu-\" in its name)." t nil) | |
6522 | |
6523 (autoload 'bookmark-menu-locate "bookmark" "\ | |
6524 Insert the name of the file associated with BOOKMARK. | |
6525 \(This is not the same as the contents of that file). | |
6526 | |
6527 Warning: this function only takes an EVENT as argument. Use the | |
6528 corresponding bookmark function from Lisp (the one without the | |
6529 \"-menu-\" in its name)." t nil) | |
6530 | |
6531 (autoload 'bookmark-menu-rename "bookmark" "\ | |
6532 Change the name of OLD-BOOKMARK to NEWNAME. | |
6533 If called from keyboard, prompts for OLD-BOOKMARK and NEWNAME. | |
6534 If called from menubar, OLD-BOOKMARK is selected from a menu, and | |
6535 prompts for NEWNAME. | |
6536 If called from Lisp, prompts for NEWNAME if only OLD-BOOKMARK was | |
6537 passed as an argument. If called with two strings, then no prompting | |
6538 is done. You must pass at least OLD-BOOKMARK when calling from Lisp. | |
6539 | |
6540 While you are entering the new name, consecutive C-w's insert | |
6541 consectutive words from the text of the buffer into the new bookmark | |
6542 name. | |
6543 | |
6544 Warning: this function only takes an EVENT as argument. Use the | |
6545 corresponding bookmark function from Lisp (the one without the | |
6546 \"-menu-\" in its name)." t nil) | |
6547 | |
6548 (autoload 'bookmark-menu-delete "bookmark" "\ | |
6549 Delete the bookmark named NAME from the bookmark list. | |
6550 Removes only the first instance of a bookmark with that name. If | |
6551 there are one or more other bookmarks with the same name, they will | |
6552 not be deleted. Defaults to the \"current\" bookmark (that is, the | |
6553 one most recently used in this file, if any). | |
6554 | |
6555 Warning: this function only takes an EVENT as argument. Use the | |
6556 corresponding bookmark function from Lisp (the one without the | |
6557 \"-menu-\" in its name)." t nil) | |
6558 | |
6559 ;;;*** | |
6560 | |
6561 ;;;### (autoloads nil "buff-menu" "packages/buff-menu.el" (12731 19066)) | |
6562 ;;; Generated autoloads from packages/buff-menu.el | |
6563 | |
6564 ;;;### (autoloads (command-history-mode list-command-history repeat-matching-complex-command) "chistory" "packages/chistory.el" (12546 50458)) | |
6565 ;;; Generated autoloads from packages/chistory.el | |
6566 | |
6567 (autoload 'repeat-matching-complex-command "chistory" "\ | |
6568 Edit and re-evaluate complex command with name matching PATTERN. | |
6569 Matching occurrences are displayed, most recent first, until you | |
6570 select a form for evaluation. If PATTERN is empty (or nil), every form | |
6571 in the command history is offered. The form is placed in the minibuffer | |
6572 for editing and the result is evaluated." t nil) | |
6573 | |
6574 (autoload 'list-command-history "chistory" "\ | |
6575 List history of commands typed to minibuffer. | |
6576 The number of commands listed is controlled by `list-command-history-max'. | |
6577 Calls value of `list-command-history-filter' (if non-nil) on each history | |
6578 element to judge if that element should be excluded from the list. | |
6579 | |
6580 The buffer is left in Command History mode." t nil) | |
6581 | |
6582 (autoload 'command-history-mode "chistory" "\ | |
6583 Major mode for examining commands from `command-history'. | |
6584 The number of commands listed is controlled by `list-command-history-max'. | |
6585 The command history is filtered by `list-command-history-filter' if non-nil. | |
6586 Use \\<command-history-map>\\[command-history-repeat] to repeat the command on the current line. | |
6587 | |
6588 Otherwise much like Emacs-Lisp Mode except that there is no self-insertion | |
6589 and digits provide prefix arguments. Tab does not indent. | |
6590 \\{command-history-map} | |
6591 Calls the value of `command-history-hook' if that is non-nil. | |
6592 The Command History listing is recomputed each time this mode is invoked." t nil) | |
6593 | |
6594 ;;;*** | |
6595 | |
6596 ;;;### (autoloads nil "cmuscheme" "packages/cmuscheme.el" (12546 63751)) | |
6597 ;;; Generated autoloads from packages/cmuscheme.el | |
6598 | |
6599 (add-hook 'same-window-buffer-names "*scheme*") | |
6600 | |
6601 ;;;*** | |
6602 | |
6603 ;;;### (autoloads (display-column-mode) "column" "packages/column.el" (12657 40702)) | |
6604 ;;; Generated autoloads from packages/column.el | |
6605 | |
6606 (autoload 'display-column-mode "column" "\ | |
6607 Toggle display column mode. | |
6608 With prefix arg, turn display column mode on iff arg is positive. | |
6609 | |
6610 When display column mode is on, the current column and line number are | |
6611 displayed in the mode line." t nil) | |
6612 | |
6613 ;;;*** | |
6614 | |
6615 ;;;### (autoloads (compare-windows) "compare-w" "packages/compare-w.el" (12547 2409)) | |
6616 ;;; Generated autoloads from packages/compare-w.el | |
6617 | |
6618 (autoload 'compare-windows "compare-w" "\ | |
6619 Compare text in current window with text in next window. | |
6620 Compares the text starting at point in each window, | |
6621 moving over text in each one as far as they match. | |
6622 | |
6623 This command pushes the mark in each window | |
6624 at the prior location of point in that window. | |
6625 If both windows display the same buffer, | |
6626 the mark is pushed twice in that buffer: | |
6627 first in the other window, then in the selected window. | |
6628 | |
6629 A prefix arg means ignore changes in whitespace. | |
6630 The variable `compare-windows-whitespace' controls how whitespace is skipped. | |
6631 If `compare-ignore-case' is non-nil, changes in case are also ignored." t nil) | |
6632 | |
6633 ;;;*** | |
6634 | |
6635 ;;;### (autoloads (first-error previous-error next-error compilation-minor-mode grep compile) "compile" "packages/compile.el" (12743 22077)) | |
6636 ;;; Generated autoloads from packages/compile.el | |
6637 | |
6638 (defvar compilation-mode-hook nil "\ | |
6639 *List of hook functions run by `compilation-mode' (see `run-hooks').") | |
6640 | |
6641 (defvar compilation-window-height nil "\ | |
6642 *Number of lines in a compilation window. If nil, use Emacs default.") | |
6643 | |
6644 (defvar compilation-buffer-name-function nil "\ | |
6645 Function to compute the name of a compilation buffer. | |
6646 The function receives one argument, the name of the major mode of the | |
6647 compilation buffer. It should return a string. | |
6648 nil means compute the name with `(concat \"*\" (downcase major-mode) \"*\")'.") | |
6649 | |
6650 (defvar compilation-finish-function nil "\ | |
6651 *Function to call when a compilation process finishes. | |
6652 It is called with two arguments: the compilation buffer, and a string | |
6653 describing how the process finished.") | |
6654 | |
6655 (defvar compilation-search-path '(nil) "\ | |
6656 *List of directories to search for source files named in error messages. | |
6657 Elements should be directory names, not file names of directories. | |
6658 nil as an element means to try the default directory.") | |
6659 | |
6660 (autoload 'compile "compile" "\ | |
6661 Compile the program including the current buffer. Default: run `make'. | |
6662 Runs COMMAND, a shell command, in a separate process asynchronously | |
6663 with output going to the buffer `*compilation*'. | |
6664 | |
6665 You can then use the command \\[next-error] to find the next error message | |
6666 and move to the source code that caused it. | |
6667 | |
6668 Interactively, prompts for the command if `compilation-read-command' is | |
6669 non-nil; otherwise uses `compile-command'. With prefix arg, always prompts. | |
6670 | |
6671 To run more than one compilation at once, start one and rename the | |
6672 `*compilation*' buffer to some other name with \\[rename-buffer]. | |
6673 Then start the next one. | |
6674 | |
6675 The name used for the buffer is actually whatever is returned by | |
6676 the function in `compilation-buffer-name-function', so you can set that | |
6677 to a function that generates a unique name." t nil) | |
6678 | |
6679 (autoload 'grep "compile" "\ | |
6680 Run grep, with user-specified args, and collect output in a buffer. | |
6681 While grep runs asynchronously, you can use the \\[next-error] command | |
6682 to find the text that grep hits refer to. | |
6683 | |
6684 This command uses a special history list for its arguments, so you can | |
6685 easily repeat a grep command." t nil) | |
6686 | |
6687 (autoload 'compilation-minor-mode "compile" "\ | |
6688 Toggle compilation minor mode. | |
6689 With arg, turn compilation mode on if and only if arg is positive. | |
6690 See `compilation-mode'. | |
6691 ! \\{compilation-mode-map}" t nil) | |
6692 | |
6693 (autoload 'next-error "compile" "\ | |
6694 Visit next compilation error message and corresponding source code. | |
6695 This operates on the output from the \\[compile] command. | |
6696 If all preparsed error messages have been processed, | |
6697 the error message buffer is checked for new ones. | |
6698 | |
6699 A prefix arg specifies how many error messages to move; | |
6700 negative means move back to previous error messages. | |
6701 Just C-u as a prefix means reparse the error message buffer | |
6702 and start at the first error. | |
6703 | |
6704 \\[next-error] normally applies to the most recent compilation started, | |
6705 but as long as you are in the middle of parsing errors from one compilation | |
6706 output buffer, you stay with that compilation output buffer. | |
6707 | |
6708 Use \\[next-error] in a compilation output buffer to switch to | |
6709 processing errors from that compilation. | |
6710 | |
6711 See variables `compilation-parse-errors-function' and | |
6712 `compilation-error-regexp-alist' for customization ideas." t nil) | |
6713 | |
6714 (autoload 'previous-error "compile" "\ | |
6715 Visit previous compilation error message and corresponding source code. | |
6716 This operates on the output from the \\[compile] command." t nil) | |
6717 | |
6718 (autoload 'first-error "compile" "\ | |
6719 Reparse the error message buffer and start at the first error | |
6720 Visit corresponding source code. | |
6721 This operates on the output from the \\[compile] command." t nil) | |
6722 | |
6723 (define-key ctl-x-map "`" 'next-error) | |
6724 | |
6725 ;;;*** | |
6726 | |
6727 ;;;### (autoloads nil "completion" "packages/completion.el" (12547 2470)) | |
6728 ;;; Generated autoloads from packages/completion.el | |
6729 | |
6730 ;;;*** | |
6731 | |
6732 ;;;### (autoloads nil "crypt" "packages/crypt.el" (12743 22078)) | |
6733 ;;; Generated autoloads from packages/crypt.el | |
6734 | |
6735 ;;;### (autoloads (dabbrev-expand dabbrev-completion) "dabbrev" "packages/dabbrev.el" (12547 2413)) | |
6736 ;;; Generated autoloads from packages/dabbrev.el | |
6737 | |
6738 (define-key global-map [(meta /)] 'dabbrev-expand) | |
6739 | |
6740 (define-key global-map [(meta control /)] 'dabbrev-completion) | |
6741 | |
6742 (autoload 'dabbrev-completion "dabbrev" "\ | |
6743 Completion on current word. | |
6744 Like \\[dabbrev-expand] but finds all expansions in the current buffer | |
6745 and presents suggestions for completion. | |
6746 | |
6747 With a prefix argument, it searches all buffers accepted by the | |
6748 function pointed out by `dabbrev-friend-buffer-function' to find the | |
6749 completions. | |
6750 | |
6751 If the prefix argument is 16 (which comes from C-u C-u), | |
6752 then it searches *all* buffers. | |
6753 | |
6754 With no prefix argument, it reuses an old completion list | |
6755 if there is a suitable one already." t nil) | |
6756 | |
6757 (autoload 'dabbrev-expand "dabbrev" "\ | |
6758 Expand previous word \"dynamically\". | |
6759 | |
6760 Expands to the most recent, preceding word for which this is a prefix. | |
6761 If no suitable preceding word is found, words following point are | |
6762 considered. If still no suitable word is found, then look in the | |
6763 buffers accepted by the function pointed out by variable | |
6764 `dabbrev-friend-buffer-function'. | |
6765 | |
6766 A positive prefix argument, N, says to take the Nth backward *distinct* | |
6767 possibility. A negative argument says search forward. | |
6768 | |
6769 If the cursor has not moved from the end of the previous expansion and | |
6770 no argument is given, replace the previously-made expansion | |
6771 with the next possible expansion not yet tried. | |
6772 | |
6773 The variable `dabbrev-backward-only' may be used to limit the | |
6774 direction of search to backward if set non-nil. | |
6775 | |
6776 See also `dabbrev-abbrev-char-regexp' and \\[dabbrev-completion]." t nil) | |
6777 | |
6778 ;;;*** | |
6779 | |
6780 ;;;### (autoloads nil "desktop" "packages/desktop.el" (12547 2459)) | |
6781 ;;; Generated autoloads from packages/desktop.el | |
6782 | |
6783 ;;;### (autoloads nil "detexinfo" "packages/detexinfo.el" (12376 19504)) | |
6784 ;;; Generated autoloads from packages/detexinfo.el | |
6785 | |
6786 ;;;### (autoloads (diff-backup diff) "diff" "packages/diff.el" (12547 2411)) | |
6787 ;;; Generated autoloads from packages/diff.el | |
6788 | |
6789 (defvar diff-switches (purecopy "-c") "\ | |
6790 *A string or list of strings specifying switches to be be passed to diff.") | |
6791 | |
6792 (autoload 'diff "diff" "\ | |
6793 Find and display the differences between OLD and NEW files. | |
6794 Interactively the current buffer's file name is the default for NEW | |
6795 and a backup file for NEW is the default for OLD. | |
6796 With prefix arg, prompt for diff switches." t nil) | |
6797 | |
6798 (autoload 'diff-backup "diff" "\ | |
6799 Diff this file with its backup file or vice versa. | |
6800 Uses the latest backup, if there are several numerical backups. | |
6801 If this file is a backup, diff it with its original. | |
6802 The backup file is the first file given to `diff'." t nil) | |
6803 | |
6804 ;;;*** | |
6805 | |
6806 ;;;### (autoloads (ediff-documentation ediff-version ediff-revision ediff-patch-buffer ediff-patch-file run-ediff-from-cvs-buffer ediff-merge-revisions-with-ancestor ediff-merge-revisions ediff-merge-buffers-with-ancestor ediff-merge-buffers ediff-merge-files-with-ancestor ediff-merge-files ediff-regions-linewise ediff-regions-wordwise ediff-windows-linewise ediff-windows-wordwise ediff-merge-directory-revisions-with-ancestor ediff-merge-directory-revisions ediff-merge-directories-with-ancestor ediff-merge-directories ediff-directories3 ediff-directory-revisions ediff-directories ediff-buffers3 ediff-buffers ediff-files3 ediff-files) "ediff" "ediff/ediff.el" (12740 25250)) | |
6807 ;;; Generated autoloads from ediff/ediff.el | |
6808 | |
6809 (autoload 'ediff-files "ediff" "\ | |
6810 Run Ediff on a pair of files, FILE-A and FILE-B." t nil) | |
6811 | |
6812 (autoload 'ediff-files3 "ediff" "\ | |
6813 Run Ediff on three files, FILE-A, FILE-B, and FILE-C." t nil) | |
6814 | |
6815 (defalias 'ediff3 'ediff-files3) | |
6816 | |
6817 (defalias 'ediff 'ediff-files) | |
6818 | |
6819 (autoload 'ediff-buffers "ediff" "\ | |
6820 Run Ediff on a pair of buffers, BUFFER-A and BUFFER-B." t nil) | |
6821 | |
6822 (defalias 'ebuffers 'ediff-buffers) | |
6823 | |
6824 (autoload 'ediff-buffers3 "ediff" "\ | |
6825 Run Ediff on three buffers, BUFFER-A, BUFFER-B, and BUFFER-C." t nil) | |
6826 | |
6827 (defalias 'ebuffers3 'ediff-buffers3) | |
6828 | |
6829 (autoload 'ediff-directories "ediff" "\ | |
6830 Run Ediff on a pair of directories, DIR1 and DIR2, comparing files that have | |
6831 the same name in both. The third argument, REGEXP, is a regular expression that | |
6832 can be used to filter out certain file names." t nil) | |
6833 | |
6834 (defalias 'edirs 'ediff-directories) | |
6835 | |
6836 (autoload 'ediff-directory-revisions "ediff" "\ | |
6837 Run Ediff on a directory, DIR1, comparing its files with their revisions. | |
6838 The second argument, REGEXP, is a regular expression that filters the file | |
6839 names. Only the files that are under revision control are taken into account." t nil) | |
6840 | |
6841 (defalias 'edir-revisions 'ediff-directory-revisions) | |
6842 | |
6843 (autoload 'ediff-directories3 "ediff" "\ | |
6844 Run Ediff on three directories, DIR1, DIR2, and DIR3, comparing files that | |
6845 have the same name in all three. The last argument, REGEXP, is a regular | |
6846 expression that can be used to filter out certain file names." t nil) | |
6847 | |
6848 (defalias 'edirs3 'ediff-directories3) | |
6849 | |
6850 (autoload 'ediff-merge-directories "ediff" "\ | |
6851 Run Ediff on a pair of directories, DIR1 and DIR2, merging files that have | |
6852 the same name in both. The third argument, REGEXP, is a regular expression that | |
6853 can be used to filter out certain file names." t nil) | |
6854 | |
6855 (defalias 'edirs-merge 'ediff-merge-directories) | |
6856 | |
6857 (autoload 'ediff-merge-directories-with-ancestor "ediff" "\ | |
6858 Merge files in directories DIR1 and DIR2 using files in ANCESTOR-DIR as ancestors. | |
6859 Ediff merges files that have identical names in DIR1, DIR2. If a pair of files | |
6860 in DIR1 and DIR2 doesn't have an ancestor in ANCESTOR-DIR, Ediff will merge | |
6861 without ancestor. The fourth argument, REGEXP, is a regular expression that | |
6862 can be used to filter out certain file names." t nil) | |
6863 | |
6864 (autoload 'ediff-merge-directory-revisions "ediff" "\ | |
6865 Run Ediff on a directory, DIR1, merging its files with their revisions. | |
6866 The second argument, REGEXP, is a regular expression that filters the file | |
6867 names. Only the files that are under revision control are taken into account." t nil) | |
6868 | |
6869 (defalias 'edir-merge-revisions 'ediff-merge-directory-revisions) | |
6870 | |
6871 (autoload 'ediff-merge-directory-revisions-with-ancestor "ediff" "\ | |
6872 Run Ediff on a directory, DIR1, merging its files with their revisions and ancestors. | |
6873 The second argument, REGEXP, is a regular expression that filters the file | |
6874 names. Only the files that are under revision control are taken into account." t nil) | |
6875 | |
6876 (defalias 'edir-merge-revisions-with-ancestor 'ediff-merge-directory-revisions-with-ancestor) | |
6877 | |
6878 (defalias 'edirs-merge-with-ancestor 'ediff-merge-directories-with-ancestor) | |
6879 | |
6880 (autoload 'ediff-windows-wordwise "ediff" "\ | |
6881 Compare WIND-A and WIND-B, which are selected by clicking, wordwise. | |
6882 With prefix argument, DUMB-MODE, or on a non-windowing display, works as | |
6883 follows: | |
6884 If WIND-A is nil, use selected window. | |
6885 If WIND-B is nil, use window next to WIND-A." t nil) | |
6886 | |
6887 (autoload 'ediff-windows-linewise "ediff" "\ | |
6888 Compare WIND-A and WIND-B, which are selected by clicking, linewise. | |
6889 With prefix argument, DUMB-MODE, or on a non-windowing display, works as | |
6890 follows: | |
6891 If WIND-A is nil, use selected window. | |
6892 If WIND-B is nil, use window next to WIND-A." t nil) | |
6893 | |
6894 (autoload 'ediff-regions-wordwise "ediff" "\ | |
6895 Run Ediff on a pair of regions in two different buffers. | |
6896 Regions (i.e., point and mark) are assumed to be set in advance. | |
6897 This function is effective only for relatively small regions, up to 200 | |
6898 lines. For large regions, use `ediff-regions-linewise'." t nil) | |
6899 | |
6900 (autoload 'ediff-regions-linewise "ediff" "\ | |
6901 Run Ediff on a pair of regions in two different buffers. | |
6902 Regions (i.e., point and mark) are assumed to be set in advance. | |
6903 Each region is enlarged to contain full lines. | |
6904 This function is effective for large regions, over 100-200 | |
6905 lines. For small regions, use `ediff-regions-wordwise'." t nil) | |
6906 | |
6907 (defalias 'ediff-merge 'ediff-merge-files) | |
6908 | |
6909 (autoload 'ediff-merge-files "ediff" "\ | |
6910 Merge two files without ancestor." t nil) | |
6911 | |
6912 (autoload 'ediff-merge-files-with-ancestor "ediff" "\ | |
6913 Merge two files with ancestor." t nil) | |
6914 | |
6915 (defalias 'ediff-merge-with-ancestor 'ediff-merge-files-with-ancestor) | |
6916 | |
6917 (autoload 'ediff-merge-buffers "ediff" "\ | |
6918 Merge buffers without ancestor." t nil) | |
6919 | |
6920 (autoload 'ediff-merge-buffers-with-ancestor "ediff" "\ | |
6921 Merge buffers with ancestor." t nil) | |
6922 | |
6923 (autoload 'ediff-merge-revisions "ediff" "\ | |
6924 Run Ediff by merging two revisions of a file. | |
6925 The file is the optional FILE argument or the file visited by the current | |
6926 buffer." t nil) | |
6927 | |
6928 (autoload 'ediff-merge-revisions-with-ancestor "ediff" "\ | |
6929 Run Ediff by merging two revisions of a file with a common ancestor. | |
6930 The file is the the optional FILE argument or the file visited by the current | |
6931 buffer." t nil) | |
6932 | |
6933 (autoload 'run-ediff-from-cvs-buffer "ediff" "\ | |
6934 Run Ediff-merge on appropriate revisions of the selected file. | |
6935 First run after `M-x cvs-update'. Then place the cursor on a lide describing a | |
6936 file and then run `run-ediff-from-cvs-buffer'." t nil) | |
6937 | |
6938 (autoload 'ediff-patch-file "ediff" "\ | |
6939 Run Ediff by patching SOURCE-FILENAME." t nil) | |
6940 | |
6941 (autoload 'ediff-patch-buffer "ediff" "\ | |
6942 Run Ediff by patching BUFFER-NAME." t nil) | |
6943 | |
6944 (defalias 'epatch 'ediff-patch-file) | |
6945 | |
6946 (defalias 'epatch-buffer 'ediff-patch-buffer) | |
6947 | |
6948 (autoload 'ediff-revision "ediff" "\ | |
6949 Run Ediff by comparing versions of a file. | |
6950 The file is an optional FILE argument or the file visited by the current | |
6951 buffer. Use `vc.el' or `rcs.el' depending on `ediff-version-control-package'." t nil) | |
6952 | |
6953 (autoload 'ediff-version "ediff" "\ | |
6954 Return string describing the version of Ediff. | |
6955 When called interactively, displays the version." t nil) | |
6956 | |
6957 (autoload 'ediff-documentation "ediff" "\ | |
6958 Display Ediff's manual." t nil) | |
6959 | |
6960 ;;;*** | |
6961 | |
6962 ;;;### (autoloads nil "doctex" "packages/doctex.el" (12376 19483)) | |
6963 ;;; Generated autoloads from packages/doctex.el | |
6964 | |
6965 ;;;### (autoloads (edit-faces) "edit-faces" "packages/edit-faces.el" (12743 11607)) | |
6966 ;;; Generated autoloads from packages/edit-faces.el | |
6967 | |
6968 (autoload 'edit-faces "edit-faces" "\ | |
6969 Alter face characteristics by editing a list of defined faces. | |
6970 Pops up a buffer containing a list of defined faces. | |
6971 | |
6972 Editing commands: | |
6973 | |
6974 \\{edit-faces-mode-map}" t nil) | |
6975 | |
6976 ;;;*** | |
6977 | |
6978 ;;;### (autoloads (report-emacs-bug) "emacsbug" "packages/emacsbug.el" (12547 2416)) | |
6979 ;;; Generated autoloads from packages/emacsbug.el | |
6980 | |
6981 (autoload 'report-emacs-bug "emacsbug" "\ | |
6982 Report a bug in GNU Emacs. | |
6983 Prompts for bug subject. Leaves you in a mail buffer." t nil) | |
6984 | |
6985 ;;;*** | |
6986 | |
6987 ;;;### (autoloads (emerge-merge-directories emerge-revisions-with-ancestor emerge-revisions emerge-files-with-ancestor-remote emerge-files-remote emerge-files-with-ancestor-command emerge-files-command emerge-buffers-with-ancestor emerge-buffers emerge-files-with-ancestor emerge-files) "emerge" "packages/emerge.el" (12547 2420)) | |
6988 ;;; Generated autoloads from packages/emerge.el | |
6989 | |
6990 (autoload 'emerge-files "emerge" "\ | |
6991 Run Emerge on two files." t nil) | |
6992 | |
6993 (fset 'emerge 'emerge-files) | |
6994 | |
6995 (autoload 'emerge-files-with-ancestor "emerge" "\ | |
6996 Run Emerge on two files, giving another file as the ancestor." t nil) | |
6997 | |
6998 (autoload 'emerge-buffers "emerge" "\ | |
6999 Run Emerge on two buffers." t nil) | |
7000 | |
7001 (autoload 'emerge-buffers-with-ancestor "emerge" "\ | |
7002 Run Emerge on two buffers, giving another buffer as the ancestor." t nil) | |
7003 | |
7004 (autoload 'emerge-files-command "emerge" nil nil nil) | |
7005 | |
7006 (autoload 'emerge-files-with-ancestor-command "emerge" nil nil nil) | |
7007 | |
7008 (autoload 'emerge-files-remote "emerge" nil nil nil) | |
7009 | |
7010 (autoload 'emerge-files-with-ancestor-remote "emerge" nil nil nil) | |
7011 | |
7012 (autoload 'emerge-revisions "emerge" "\ | |
7013 Emerge two RCS revisions of a file." t nil) | |
7014 | |
7015 (autoload 'emerge-revisions-with-ancestor "emerge" "\ | |
7016 Emerge two RCS revisions of a file, with another revision as ancestor." t nil) | |
7017 | |
7018 (autoload 'emerge-merge-directories "emerge" nil t nil) | |
7019 | |
7020 ;;;*** | |
7021 | |
7022 ;;;### (autoloads (tags-apropos list-tags tags-query-replace tags-search tags-loop-continue next-file find-tag-other-window find-tag visit-tags-table) "etags" "packages/etags.el" (12743 22077)) | |
7023 ;;; Generated autoloads from packages/etags.el | |
7024 | |
7025 (defvar tags-build-completion-table 'ask "\ | |
7026 *If this variable is nil, then tags completion is disabled. | |
7027 If this variable is t, then things which prompt for tags will do so with | |
7028 completion across all known tags. | |
7029 If this variable is the symbol `ask', then you will be asked whether each | |
7030 tags table should be added to the completion list as it is read in. | |
7031 (With the exception that for very small tags tables, you will not be asked, | |
7032 since they can be parsed quickly.)") | |
7033 | |
7034 (defvar tags-always-exact nil "\ | |
7035 *If this variable is non-nil, then tags always looks for exact matches.") | |
7036 | |
7037 (defvar tag-table-alist nil "\ | |
7038 *A list which determines which tags files should be active for a | |
7039 given buffer. This is not really an association list, in that all | |
7040 elements are checked. The CAR of each element of this list is a | |
7041 pattern against which the buffer's file name is compared; if it | |
7042 matches, then the CDR of the list should be the name of the tags | |
7043 table to use. If more than one element of this list matches the | |
7044 buffer's file name, then all of the associated tags tables will be | |
7045 used. Earlier ones will be searched first. | |
7046 | |
7047 If the CAR of elements of this list are strings, then they are treated | |
7048 as regular-expressions against which the file is compared (like the | |
7049 auto-mode-alist). If they are not strings, then they are evaluated. | |
7050 If they evaluate to non-nil, then the current buffer is considered to | |
7051 match. | |
7052 | |
7053 If the CDR of the elements of this list are strings, then they are | |
7054 assumed to name a TAGS file. If they name a directory, then the string | |
7055 \"TAGS\" is appended to them to get the file name. If they are not | |
7056 strings, then they are evaluated, and must return an appropriate string. | |
7057 | |
7058 For example: | |
7059 (setq tag-table-alist | |
7060 '((\"/usr/src/public/perl/\" . \"/usr/src/public/perl/perl-3.0/\") | |
7061 (\"\\\\.el$\" . \"/usr/local/emacs/src/\") | |
7062 (\"/jbw/gnu/\" . \"/usr15/degree/stud/jbw/gnu/\") | |
7063 (\"\" . \"/usr/local/emacs/src/\") | |
7064 )) | |
7065 | |
7066 This means that anything in the /usr/src/public/perl/ directory should use | |
7067 the TAGS file /usr/src/public/perl/perl-3.0/TAGS; and file ending in .el should | |
7068 use the TAGS file /usr/local/emacs/src/TAGS; and anything in or below the | |
7069 directory /jbw/gnu/ should use the TAGS file /usr15/degree/stud/jbw/gnu/TAGS. | |
7070 A file called something like \"/usr/jbw/foo.el\" would use both the TAGS files | |
7071 /usr/local/emacs/src/TAGS and /usr15/degree/stud/jbw/gnu/TAGS (in that order) | |
7072 because it matches both patterns. | |
7073 | |
7074 If the buffer-local variable `buffer-tag-table' is set, then it names a tags | |
7075 table that is searched before all others when find-tag is executed from this | |
7076 buffer. | |
7077 | |
7078 If there is a file called \"TAGS\" in the same directory as the file in | |
7079 question, then that tags file will always be used as well (after the | |
7080 `buffer-tag-table' but before the tables specified by this list.) | |
7081 | |
7082 If the variable tags-file-name is set, then the tags file it names will apply | |
7083 to all buffers (for backwards compatibility.) It is searched first. | |
7084 ") | |
7085 | |
7086 (autoload 'visit-tags-table "etags" "\ | |
7087 Tell tags commands to use tags table file FILE first. | |
7088 FILE should be the name of a file created with the `etags' program. | |
7089 A directory name is ok too; it means file TAGS in that directory." t nil) | |
7090 | |
7091 (autoload 'find-tag "etags" "\ | |
7092 *Find tag whose name contains TAGNAME. | |
7093 Selects the buffer that the tag is contained in | |
7094 and puts point at its definition. | |
7095 If TAGNAME is a null string, the expression in the buffer | |
7096 around or before point is used as the tag name. | |
7097 If called interactively with a numeric argument, searches for the next tag | |
7098 in the tag table that matches the tagname used in the previous find-tag. | |
7099 If second arg OTHER-WINDOW is non-nil, uses another window to display | |
7100 the tag. | |
7101 | |
7102 This version of this function supports multiple active tags tables, | |
7103 and completion. | |
7104 | |
7105 Variables of note: | |
7106 | |
7107 tag-table-alist controls which tables apply to which buffers | |
7108 tags-file-name a default tags table | |
7109 tags-build-completion-table controls completion behavior | |
7110 buffer-tag-table another way of specifying a buffer-local table | |
7111 make-tags-files-invisible whether tags tables should be very hidden | |
7112 tag-mark-stack-max how many tags-based hops to remember" t nil) | |
7113 | |
7114 (autoload 'find-tag-other-window "etags" "\ | |
7115 *Find tag whose name contains TAGNAME. | |
7116 Selects the buffer that the tag is contained in in another window | |
7117 and puts point at its definition. | |
7118 If TAGNAME is a null string, the expression in the buffer | |
7119 around or before point is used as the tag name. | |
7120 If second arg NEXT is non-nil (interactively, with prefix arg), | |
7121 searches for the next tag in the tag table | |
7122 that matches the tagname used in the previous find-tag. | |
7123 | |
7124 This version of this function supports multiple active tags tables, | |
7125 and completion. | |
7126 | |
7127 Variables of note: | |
7128 | |
7129 tag-table-alist controls which tables apply to which buffers | |
7130 tags-file-name a default tags table | |
7131 tags-build-completion-table controls completion behavior | |
7132 buffer-tag-table another way of specifying a buffer-local table | |
7133 make-tags-files-invisible whether tags tables should be very hidden | |
7134 tag-mark-stack-max how many tags-based hops to remember" t nil) | |
7135 | |
7136 (autoload 'next-file "etags" "\ | |
7137 Select next file among files in current tag table(s). | |
7138 | |
7139 A first argument of t (prefix arg, if interactive) initializes to the | |
7140 beginning of the list of files in the (first) tags table. If the argument | |
7141 is neither nil nor t, it is evalled to initialize the list of files. | |
7142 | |
7143 Non-nil second argument NOVISIT means use a temporary buffer | |
7144 to save time and avoid uninteresting warnings. | |
7145 | |
7146 Value is nil if the file was already visited; | |
7147 if the file was newly read in, the value is the filename." t nil) | |
7148 | |
7149 (autoload 'tags-loop-continue "etags" "\ | |
7150 Continue last \\[tags-search] or \\[tags-query-replace] command. | |
7151 Used noninteractively with non-nil argument to begin such a command (the | |
7152 argument is passed to `next-file', which see). | |
7153 Two variables control the processing we do on each file: | |
7154 the value of `tags-loop-scan' is a form to be executed on each file | |
7155 to see if it is interesting (it returns non-nil if so) | |
7156 and `tags-loop-operate' is a form to execute to operate on an interesting file | |
7157 If the latter returns non-nil, we exit; otherwise we scan the next file." t nil) | |
7158 | |
7159 (autoload 'tags-search "etags" "\ | |
7160 Search through all files listed in tags table for match for REGEXP. | |
7161 Stops when a match is found. | |
7162 To continue searching for next match, use command \\[tags-loop-continue]. | |
7163 | |
7164 See documentation of variable `tag-table-alist'." t nil) | |
7165 | |
7166 (autoload 'tags-query-replace "etags" "\ | |
7167 Query-replace-regexp FROM with TO through all files listed in tags table. | |
7168 Third arg DELIMITED (prefix arg) means replace only word-delimited matches. | |
7169 If you exit (\\[keyboard-quit] or ESC), you can resume the query-replace | |
7170 with the command \\[tags-loop-continue]. | |
7171 | |
7172 See documentation of variable `tag-table-alist'." t nil) | |
7173 | |
7174 (autoload 'list-tags "etags" "\ | |
7175 Display list of tags in file FILE. | |
7176 FILE should not contain a directory spec | |
7177 unless it has one in the tag table." t nil) | |
7178 | |
7179 (autoload 'tags-apropos "etags" "\ | |
7180 Display list of all tags in tag table REGEXP matches." t nil) | |
7181 | |
7182 ;;;*** | |
7183 | |
7184 ;;;### (autoloads nil "fa-extras" "packages/fa-extras.el" (12547 2465)) | |
7185 ;;; Generated autoloads from packages/fa-extras.el | |
7186 | |
7187 ;;;### (autoloads (turn-on-fast-lock fast-lock-mode) "fast-lock" "packages/fast-lock.el" (12558 60915)) | |
7188 ;;; Generated autoloads from packages/fast-lock.el | |
7189 | |
7190 (defvar fast-lock-mode nil) | |
7191 | |
7192 (autoload 'fast-lock-mode "fast-lock" "\ | |
7193 Toggle Fast Lock mode. | |
7194 With arg, turn Fast Lock mode on if and only if arg is positive and the buffer | |
7195 is associated with a file. Enable it automatically in your `~/.emacs' by: | |
7196 | |
7197 (add-hook 'font-lock-mode-hook 'turn-on-fast-lock) | |
7198 | |
7199 If Fast Lock mode is enabled, and the current buffer does not contain any text | |
7200 properties, any associated Font Lock cache is used if its timestamp matches the | |
7201 buffer's file, and its `font-lock-keywords' match those that you are using. | |
7202 | |
7203 Font Lock caches may be saved: | |
7204 - When you save the file's buffer. | |
7205 - When you kill an unmodified file's buffer. | |
7206 - When you exit Emacs, for all unmodified or saved buffers. | |
7207 Depending on the value of `fast-lock-save-events'. | |
7208 See also the commands `fast-lock-read-cache' and `fast-lock-save-cache'. | |
7209 | |
7210 Use \\[font-lock-fontify-buffer] to fontify the buffer if the cache is bad. | |
7211 | |
7212 Various methods of control are provided for the Font Lock cache. In general, | |
7213 see variable `fast-lock-cache-directories' and function `fast-lock-cache-name'. | |
7214 For saving, see variables `fast-lock-minimum-size', `fast-lock-save-events', | |
7215 `fast-lock-save-others' and `fast-lock-save-faces'. | |
7216 | |
7217 Use \\[fast-lock-submit-bug-report] to send bug reports or feedback." t nil) | |
7218 | |
7219 (autoload 'turn-on-fast-lock "fast-lock" "\ | |
7220 Unconditionally turn on Fast Lock mode." nil nil) | |
7221 | |
7222 (add-minor-mode 'fast-lock-mode " Fast") | |
7223 | |
7224 ;;;*** | |
7225 | |
7226 ;;;### (autoloads (feedmail-send-it) "feedmail" "packages/feedmail.el" (12698 33544)) | |
7227 ;;; Generated autoloads from packages/feedmail.el | |
7228 | |
7229 (autoload 'feedmail-send-it "feedmail" nil nil nil) | |
7230 | |
7231 ;;;*** | |
7232 | |
7233 ;;;### (autoloads (make-file-part) "file-part" "packages/file-part.el" (12639 8595)) | |
7234 ;;; Generated autoloads from packages/file-part.el | |
7235 | |
7236 (autoload 'make-file-part "file-part" "\ | |
7237 Make a file part on buffer BUFFER out of the region. Call it NAME. | |
7238 This command creates a new buffer containing the contents of the | |
7239 region and marks the buffer as referring to the specified buffer, | |
7240 called the `master buffer'. When the file-part buffer is saved, | |
7241 its changes are integrated back into the master buffer. When the | |
7242 master buffer is deleted, all file parts are deleted with it. | |
7243 | |
7244 When called from a function, expects four arguments, START, END, | |
7245 NAME, and BUFFER, all of which are optional and default to the | |
7246 beginning of BUFFER, the end of BUFFER, a name generated from | |
7247 BUFFER's name, and the current buffer, respectively." t nil) | |
7248 | |
7249 ;;;*** | |
7250 | |
7251 ;;;### (autoloads nil "filladapt" "packages/filladapt.el" (12731 4993)) | |
7252 ;;; Generated autoloads from packages/filladapt.el | |
7253 | |
7254 ;;;### (autoloads (font-lock-fontify-buffer turn-off-font-lock turn-on-font-lock font-lock-mode) "font-lock" "packages/font-lock.el" (12730 62099)) | |
7255 ;;; Generated autoloads from packages/font-lock.el | |
7256 | |
7257 (defvar font-lock-auto-fontify t "\ | |
7258 *Whether font-lock should automatically fontify files as they're loaded. | |
7259 This will only happen if font-lock has fontifying keywords for the major | |
7260 mode of the file. You can get finer-grained control over auto-fontification | |
7261 by using this variable in combination with `font-lock-mode-enable-list' or | |
7262 `font-lock-mode-disable-list'.") | |
7263 | |
7264 (defvar font-lock-mode-enable-list nil "\ | |
7265 *List of modes to auto-fontify, if `font-lock-auto-fontify' is nil.") | |
7266 | |
7267 (defvar font-lock-mode-disable-list nil "\ | |
7268 *List of modes not to auto-fontify, if `font-lock-auto-fontify' is t.") | |
7269 | |
7270 (defvar font-lock-use-colors '(color) "\ | |
7271 *Specification for when Font Lock will set up color defaults. | |
7272 Normally this should be '(color), meaning that Font Lock will set up | |
7273 color defaults that are only used on color displays. Set this to nil | |
7274 if you don't want Font Lock to set up color defaults at all. This | |
7275 should be one of | |
7276 | |
7277 -- a list of valid tags, meaning that the color defaults will be used | |
7278 when all of the tags apply. (e.g. '(color x)) | |
7279 -- a list whose first element is 'or and whose remaining elements are | |
7280 lists of valid tags, meaning that the defaults will be used when | |
7281 any of the tag lists apply. | |
7282 -- nil, meaning that the defaults should not be set up at all. | |
7283 | |
7284 \(If you specify face values in your init file, they will override any | |
7285 that Font Lock specifies, regardless of whether you specify the face | |
7286 values before or after loading Font Lock.) | |
7287 | |
7288 See also `font-lock-use-fonts'. If you want more control over the faces | |
7289 used for fontification, see the documentation of `font-lock-mode' for | |
7290 how to do it.") | |
7291 | |
7292 (defvar font-lock-use-fonts '(or (mono) (grayscale)) "\ | |
7293 *Specification for when Font Lock will set up non-color defaults. | |
7294 | |
7295 Normally this should be '(or (mono) (grayscale)), meaning that Font | |
7296 Lock will set up non-color defaults that are only used on either mono | |
7297 or grayscale displays. Set this to nil if you don't want Font Lock to | |
7298 set up non-color defaults at all. This should be one of | |
7299 | |
7300 -- a list of valid tags, meaning that the non-color defaults will be used | |
7301 when all of the tags apply. (e.g. '(grayscale x)) | |
7302 -- a list whose first element is 'or and whose remaining elements are | |
7303 lists of valid tags, meaning that the defaults will be used when | |
7304 any of the tag lists apply. | |
7305 -- nil, meaning that the defaults should not be set up at all. | |
7306 | |
7307 \(If you specify face values in your init file, they will override any | |
7308 that Font Lock specifies, regardless of whether you specify the face | |
7309 values before or after loading Font Lock.) | |
7310 | |
7311 See also `font-lock-use-colors'. If you want more control over the faces | |
7312 used for fontification, see the documentation of `font-lock-mode' for | |
7313 how to do it.") | |
7314 | |
7315 (defvar font-lock-maximum-decoration nil "\ | |
7316 *If non-nil, the maximum decoration level for fontifying. | |
7317 If nil, use the minimum decoration (equivalent to level 0). | |
7318 If t, use the maximum decoration available. | |
7319 If a number, use that level of decoration (or if not available the maximum). | |
7320 If a list, each element should be a cons pair of the form (MAJOR-MODE . LEVEL), | |
7321 where MAJOR-MODE is a symbol or t (meaning the default). For example: | |
7322 ((c++-mode . 2) (c-mode . t) (t . 1)) | |
7323 means use level 2 decoration for buffers in `c++-mode', the maximum decoration | |
7324 available for buffers in `c-mode', and level 1 decoration otherwise.") | |
7325 | |
7326 (define-obsolete-variable-alias 'font-lock-use-maximal-decoration 'font-lock-maximum-decoration) | |
7327 | |
7328 (defvar font-lock-maximum-size (* 250 1024) "\ | |
7329 *If non-nil, the maximum size for buffers for fontifying. | |
7330 Only buffers less than this can be fontified when Font Lock mode is turned on. | |
7331 If nil, means size is irrelevant. | |
7332 If a list, each element should be a cons pair of the form (MAJOR-MODE . SIZE), | |
7333 where MAJOR-MODE is a symbol or t (meaning the default). For example: | |
7334 ((c++-mode . 256000) (c-mode . 256000) (rmail-mode . 1048576)) | |
7335 means that the maximum size is 250K for buffers in `c++-mode' or `c-mode', one | |
7336 megabyte for buffers in `rmail-mode', and size is irrelevant otherwise.") | |
7337 | |
7338 (defvar font-lock-keywords nil "\ | |
7339 *A list of the keywords to highlight. | |
7340 Each element should be of the form: | |
7341 | |
7342 MATCHER | |
7343 (MATCHER . MATCH) | |
7344 (MATCHER . FACENAME) | |
7345 (MATCHER . HIGHLIGHT) | |
7346 (MATCHER HIGHLIGHT ...) | |
7347 | |
7348 where HIGHLIGHT should be either MATCH-HIGHLIGHT or MATCH-ANCHORED. | |
7349 | |
7350 For highlighting single items, typically only MATCH-HIGHLIGHT is required. | |
7351 However, if an item or (typically) items is to be hightlighted following the | |
7352 instance of another item (the anchor) then MATCH-ANCHORED may be required. | |
7353 | |
7354 MATCH-HIGHLIGHT should be of the form: | |
7355 | |
7356 (MATCH FACENAME OVERRIDE LAXMATCH) | |
7357 | |
7358 Where MATCHER can be either the regexp to search for, or the function name to | |
7359 call to make the search (called with one argument, the limit of the search). | |
7360 MATCH is the subexpression of MATCHER to be highlighted. FACENAME is either | |
7361 a symbol naming a face, or an expression whose value is the face name to use. | |
7362 If you want FACENAME to be a symbol that evaluates to a face, use a form | |
7363 like \"(progn sym)\". | |
7364 | |
7365 OVERRIDE and LAXMATCH are flags. If OVERRIDE is t, existing fontification may | |
7366 be overwritten. If `keep', only parts not already fontified are highlighted. | |
7367 If `prepend' or `append', existing fontification is merged with the new, in | |
7368 which the new or existing fontification, respectively, takes precedence. | |
7369 If LAXMATCH is non-nil, no error is signalled if there is no MATCH in MATCHER. | |
7370 | |
7371 For example, an element of the form highlights (if not already highlighted): | |
7372 | |
7373 \"\\\\\\=<foo\\\\\\=>\" Discrete occurrences of \"foo\" in the value of the | |
7374 variable `font-lock-keyword-face'. | |
7375 (\"fu\\\\(bar\\\\)\" . 1) Substring \"bar\" within all occurrences of \"fubar\" in | |
7376 the value of `font-lock-keyword-face'. | |
7377 (\"fubar\" . fubar-face) Occurrences of \"fubar\" in the value of `fubar-face'. | |
7378 (\"foo\\\\|bar\" 0 foo-bar-face t) | |
7379 Occurrences of either \"foo\" or \"bar\" in the value | |
7380 of `foo-bar-face', even if already highlighted. | |
7381 | |
7382 MATCH-ANCHORED should be of the form: | |
7383 | |
7384 (MATCHER PRE-MATCH-FORM POST-MATCH-FORM MATCH-HIGHLIGHT ...) | |
7385 | |
7386 Where MATCHER is as for MATCH-HIGHLIGHT with one exception. The limit of the | |
7387 search is currently guaranteed to be (no greater than) the end of the line. | |
7388 PRE-MATCH-FORM and POST-MATCH-FORM are evaluated before the first, and after | |
7389 the last, instance MATCH-ANCHORED's MATCHER is used. Therefore they can be | |
7390 used to initialise before, and cleanup after, MATCHER is used. Typically, | |
7391 PRE-MATCH-FORM is used to move to some position relative to the original | |
7392 MATCHER, before starting with MATCH-ANCHORED's MATCHER. POST-MATCH-FORM might | |
7393 be used to move, before resuming with MATCH-ANCHORED's parent's MATCHER. | |
7394 | |
7395 For example, an element of the form highlights (if not already highlighted): | |
7396 | |
7397 (\"\\\\\\=<anchor\\\\\\=>\" (0 anchor-face) (\"\\\\\\=<item\\\\\\=>\" nil nil (0 item-face))) | |
7398 | |
7399 Discrete occurrences of \"anchor\" in the value of `anchor-face', and subsequent | |
7400 discrete occurrences of \"item\" (on the same line) in the value of `item-face'. | |
7401 (Here PRE-MATCH-FORM and POST-MATCH-FORM are nil. Therefore \"item\" is | |
7402 initially searched for starting from the end of the match of \"anchor\", and | |
7403 searching for subsequent instance of \"anchor\" resumes from where searching | |
7404 for \"item\" concluded.) | |
7405 | |
7406 Note that the MATCH-ANCHORED feature is experimental; in the future, we may | |
7407 replace it with other ways of providing this functionality. | |
7408 | |
7409 These regular expressions should not match text which spans lines. While | |
7410 \\[font-lock-fontify-buffer] handles multi-line patterns correctly, updating | |
7411 when you edit the buffer does not, since it considers text one line at a time. | |
7412 | |
7413 Be very careful composing regexps for this list; | |
7414 the wrong pattern can dramatically slow things down!") | |
7415 | |
7416 (make-variable-buffer-local 'font-lock-keywords) | |
7417 | |
7418 (defvar font-lock-mode nil) | |
7419 | |
7420 (defvar font-lock-mode-hook nil "\ | |
7421 Function or functions to run on entry to font-lock-mode.") | |
7422 | |
7423 (autoload 'font-lock-mode "font-lock" "\ | |
7424 Toggle Font Lock Mode. | |
7425 With arg, turn font-lock mode on if and only if arg is positive. | |
7426 | |
7427 When Font Lock mode is enabled, text is fontified as you type it: | |
7428 | |
7429 - Comments are displayed in `font-lock-comment-face'; | |
7430 - Strings are displayed in `font-lock-string-face'; | |
7431 - Documentation strings (in Lisp-like languages) are displayed in | |
7432 `font-lock-doc-string-face'; | |
7433 - Language keywords (\"reserved words\") are displayed in | |
7434 `font-lock-keyword-face'; | |
7435 - Function names in their defining form are displayed in | |
7436 `font-lock-function-name-face'; | |
7437 - Variable names in their defining form are displayed in | |
7438 `font-lock-variable-name-face'; | |
7439 - Type names are displayed in `font-lock-type-face'; | |
7440 - References appearing in help files and the like are displayed | |
7441 in `font-lock-reference-face'; | |
7442 - Preprocessor declarations are displayed in | |
7443 `font-lock-preprocessor-face'; | |
7444 | |
7445 and | |
7446 | |
7447 - Certain other expressions are displayed in other faces according | |
7448 to the value of the variable `font-lock-keywords'. | |
7449 | |
7450 Where modes support different levels of fontification, you can use the variable | |
7451 `font-lock-maximum-decoration' to specify which level you generally prefer. | |
7452 When you turn Font Lock mode on/off the buffer is fontified/defontified, though | |
7453 fontification occurs only if the buffer is less than `font-lock-maximum-size'. | |
7454 To fontify a buffer without turning on Font Lock mode, and regardless of buffer | |
7455 size, you can use \\[font-lock-fontify-buffer]. | |
7456 | |
7457 See the variable `font-lock-keywords' for customization." t nil) | |
7458 | |
7459 (autoload 'turn-on-font-lock "font-lock" "\ | |
7460 Unconditionally turn on Font Lock mode." nil nil) | |
7461 | |
7462 (autoload 'turn-off-font-lock "font-lock" "\ | |
7463 Unconditionally turn off Font Lock mode." nil nil) | |
7464 | |
7465 (autoload 'font-lock-fontify-buffer "font-lock" "\ | |
7466 Fontify the current buffer the way `font-lock-mode' would. | |
7467 See `font-lock-mode' for details. | |
7468 | |
7469 This can take a while for large buffers." t nil) | |
7470 | |
7471 (add-minor-mode 'font-lock-mode " Font") | |
7472 | |
7473 ;;;*** | |
7474 | |
7475 ;;;### (autoloads nil "fontl-hooks" "packages/fontl-hooks.el" (12558 61068)) | |
7476 ;;; Generated autoloads from packages/fontl-hooks.el | |
7477 | |
7478 ;;;*** | |
7479 | |
7480 ;;;### (autoloads nil "func-menu" "packages/func-menu.el" (12721 2479)) | |
7481 ;;; Generated autoloads from packages/func-menu.el | |
7482 | |
7483 ;;;### (autoloads (sc-mode) "generic-sc" "packages/generic-sc.el" (12147 25472)) | |
7484 ;;; Generated autoloads from packages/generic-sc.el | |
7485 | |
7486 (autoload 'sc-mode "generic-sc" "\ | |
7487 Toggle sc-mode. | |
7488 SYSTEM can be sccs, rcs or cvs. | |
7489 Cvs requires the pcl-cvs package. | |
7490 | |
7491 The following commands are available | |
7492 \\[sc-next-operation] perform next logical source control operation on current file | |
7493 \\[sc-show-changes] compare the version being edited with an older one | |
7494 \\[sc-version-diff-file] compare two older versions of a file | |
7495 \\[sc-show-history] display change history of current file | |
7496 \\[sc-visit-previous-revision] display an older revision of current file | |
7497 \\[sc-revert-file] revert buffer to last checked-in version | |
7498 \\[sc-list-all-locked-files] show all files locked in current directory | |
7499 \\[sc-list-locked-files] show all files locked by you in current directory | |
7500 \\[sc-list-registered-files] show all files under source control in current directory | |
7501 \\[sc-update-directory] get fresh copies of files checked-in by others in current directory | |
7502 \\[sc-rename-file] rename the current file and its source control file | |
7503 | |
7504 | |
7505 While you are entering a change log message for a check in, sc-log-entry-mode | |
7506 will be in effect. | |
7507 | |
7508 Global user options: | |
7509 sc-diff-command A list consisting of the command and flags | |
7510 to be used for generating context diffs. | |
7511 sc-mode-expert suppresses some conformation prompts, | |
7512 notably for delta aborts and file saves. | |
7513 sc-max-log-size specifies the maximum allowable size | |
7514 of a log message plus one. | |
7515 | |
7516 | |
7517 When using SCCS you have additional commands and options | |
7518 | |
7519 \\[sccs-insert-headers] insert source control headers in current file | |
7520 | |
7521 When you generate headers into a buffer using \\[sccs-insert-headers], | |
7522 the value of sc-insert-headers-hook is called before insertion. If the | |
7523 file is recognized a C or Lisp source, sc-insert-c-header-hook or | |
7524 sc-insert-lisp-header-hook is called after insertion respectively. | |
7525 | |
7526 sccs-headers-wanted which %-keywords to insert when adding | |
7527 headers with C-c h | |
7528 sccs-insert-static if non-nil, keywords inserted in C files | |
7529 get stuffed in a static string area so that | |
7530 what(1) can see them in the compiled object code. | |
7531 | |
7532 When using CVS you have additional commands | |
7533 | |
7534 \\[sc-cvs-update-directory] update the current directory using pcl-cvs | |
7535 \\[sc-cvs-file-status] show the CVS status of current file | |
7536 " t nil) | |
7537 | |
7538 ;;;*** | |
7539 | |
7540 ;;;### (autoloads (gnuserv-start) "gnuserv" "packages/gnuserv.el" (12740 25205)) | |
7541 ;;; Generated autoloads from packages/gnuserv.el | |
7542 | |
7543 (autoload 'gnuserv-start "gnuserv" "\ | |
7544 Allow this Emacs process to be a server for client processes. | |
7545 This starts a server communications subprocess through which | |
7546 client \"editors\" (gnuclient and gnudoit) can send editing commands to | |
7547 this Emacs job. See the gnuserv(1) manual page for more details. | |
7548 | |
7549 Prefix arg means just kill any existing server communications subprocess." t nil) | |
7550 | |
7551 ;;;*** | |
7552 | |
7553 ;;;### (autoloads (gopher-atpoint gopher) "gopher" "packages/gopher.el" (12376 19490)) | |
7554 ;;; Generated autoloads from packages/gopher.el | |
7555 | |
7556 (autoload 'gopher "gopher" "\ | |
7557 Start a gopher session. With C-u, prompt for a gopher server." t nil) | |
7558 | |
7559 (autoload 'gopher-atpoint "gopher" "\ | |
7560 Try to interpret the text around point as a gopher bookmark, and dispatch | |
7561 to that object." t nil) | |
7562 | |
7563 ;;;*** | |
7564 | |
7565 ;;;### (autoloads (hexl-find-file hexl-mode) "hexl" "packages/hexl.el" (12675 57080)) | |
7566 ;;; Generated autoloads from packages/hexl.el | |
7567 | |
7568 (autoload 'hexl-mode "hexl" "\ | |
7569 \\<hexl-mode-map> | |
7570 A major mode for editing binary files in hex dump format. | |
7571 | |
7572 This function automatically converts a buffer into the hexl format | |
7573 using the function `hexlify-buffer'. | |
7574 | |
7575 Each line in the buffer has an \"address\" (displayed in hexadecimal) | |
7576 representing the offset into the file that the characters on this line | |
7577 are at and 16 characters from the file (displayed as hexadecimal | |
7578 values grouped every 16 bits) and as their ASCII values. | |
7579 | |
7580 If any of the characters (displayed as ASCII characters) are | |
7581 unprintable (control or meta characters) they will be replaced as | |
7582 periods. | |
7583 | |
7584 If `hexl-mode' is invoked with an argument the buffer is assumed to be | |
7585 in hexl format. | |
7586 | |
7587 A sample format: | |
7588 | |
7589 HEX ADDR: 0001 0203 0405 0607 0809 0a0b 0c0d 0e0f ASCII-TEXT | |
7590 -------- ---- ---- ---- ---- ---- ---- ---- ---- ---------------- | |
7591 00000000: 5468 6973 2069 7320 6865 786c 2d6d 6f64 This is hexl-mod | |
7592 00000010: 652e 2020 4561 6368 206c 696e 6520 7265 e. Each line re | |
7593 00000020: 7072 6573 656e 7473 2031 3620 6279 7465 presents 16 byte | |
7594 00000030: 7320 6173 2068 6578 6164 6563 696d 616c s as hexadecimal | |
7595 00000040: 2041 5343 4949 0a61 6e64 2070 7269 6e74 ASCII.and print | |
7596 00000050: 6162 6c65 2041 5343 4949 2063 6861 7261 able ASCII chara | |
7597 00000060: 6374 6572 732e 2020 416e 7920 636f 6e74 cters. Any cont | |
7598 00000070: 726f 6c20 6f72 206e 6f6e 2d41 5343 4949 rol or non-ASCII | |
7599 00000080: 2063 6861 7261 6374 6572 730a 6172 6520 characters.are | |
7600 00000090: 6469 7370 6c61 7965 6420 6173 2070 6572 displayed as per | |
7601 000000a0: 696f 6473 2069 6e20 7468 6520 7072 696e iods in the prin | |
7602 000000b0: 7461 626c 6520 6368 6172 6163 7465 7220 table character | |
7603 000000c0: 7265 6769 6f6e 2e0a region.. | |
7604 | |
7605 Movement is as simple as movement in a normal emacs text buffer. Most | |
7606 cursor movement bindings are the same (ie. Use \\[hexl-backward-char], \\[hexl-forward-char], \\[hexl-next-line], and \\[hexl-previous-line] | |
7607 to move the cursor left, right, down, and up). | |
7608 | |
7609 Advanced cursor movement commands (ala \\[hexl-beginning-of-line], \\[hexl-end-of-line], \\[hexl-beginning-of-buffer], and \\[hexl-end-of-buffer]) are | |
7610 also supported. | |
7611 | |
7612 There are several ways to change text in hexl mode: | |
7613 | |
7614 ASCII characters (character between space (0x20) and tilde (0x7E)) are | |
7615 bound to self-insert so you can simply type the character and it will | |
7616 insert itself (actually overstrike) into the buffer. | |
7617 | |
7618 \\[hexl-quoted-insert] followed by another keystroke allows you to insert the key even if | |
7619 it isn't bound to self-insert. An octal number can be supplied in place | |
7620 of another key to insert the octal number's ASCII representation. | |
7621 | |
7622 \\[hexl-insert-hex-char] will insert a given hexadecimal value (if it is between 0 and 0xFF) | |
7623 into the buffer at the current point. | |
7624 | |
7625 \\[hexl-insert-octal-char] will insert a given octal value (if it is between 0 and 0377) | |
7626 into the buffer at the current point. | |
7627 | |
7628 \\[hexl-insert-decimal-char] will insert a given decimal value (if it is between 0 and 255) | |
7629 into the buffer at the current point. | |
7630 | |
7631 \\[hexl-mode-exit] will exit hexl-mode. | |
7632 | |
7633 Note: saving the file with any of the usual Emacs commands | |
7634 will actually convert it back to binary format while saving. | |
7635 | |
7636 You can use \\[hexl-find-file] to visit a file in hexl-mode. | |
7637 | |
7638 \\[describe-bindings] for advanced commands." t nil) | |
7639 | |
7640 (autoload 'hexl-find-file "hexl" "\ | |
7641 Edit file FILENAME in hexl-mode. | |
7642 Switch to a buffer visiting file FILENAME, creating one in none exists." t nil) | |
7643 | |
7644 ;;;*** | |
7645 | |
7646 ;;;### (autoloads (hypropos-popup-menu hypropos-set-variable hyper-describe-function hyper-describe-variable hyper-apropos) "hyper-apropos" "packages/hyper-apropos.el" (12607 29142)) | |
7647 ;;; Generated autoloads from packages/hyper-apropos.el | |
7648 | |
7649 (defvar hypropos-show-brief-docs t "\ | |
7650 *If non-nil, `hyper-apropos' will display some documentation in the | |
7651 \"*Hyper Apropos*\" buffer. Setting this to nil will speed up searches.") | |
7652 | |
7653 (autoload 'hyper-apropos "hyper-apropos" "\ | |
7654 Display lists of functions and variables matching REGEXP | |
7655 in buffer \"*Hyper Apropos*\". If optional prefix arg is given, then the value | |
7656 of `hypropos-programming-apropos' is toggled for this search. | |
7657 See also `hyper-apropos-mode'." t nil) | |
7658 | |
7659 (autoload 'hyper-describe-variable "hyper-apropos" "\ | |
7660 Hypertext drop-in replacement for `describe-variable'. | |
7661 See also `hyper-apropos' and `hyper-describe-function'." t nil) | |
7662 | |
7663 (autoload 'hyper-describe-function "hyper-apropos" "\ | |
7664 Hypertext replacement for `describe-function'. Unlike `describe-function' | |
7665 in that the symbol under the cursor is the default if it is a function. | |
7666 See also `hyper-apropos' and `hyper-describe-variable'." t nil) | |
7667 | |
7668 (autoload 'hypropos-set-variable "hyper-apropos" "\ | |
7669 Interactively set the variable on the current line." t nil) | |
7670 | |
7671 (autoload 'hypropos-popup-menu "hyper-apropos" nil t nil) | |
7672 | |
7673 ;;;*** | |
7674 | |
7675 ;;;### (autoloads (icomplete-minibuffer-setup icomplete-mode) "icomplete" "packages/icomplete.el" (12547 2477)) | |
7676 ;;; Generated autoloads from packages/icomplete.el | |
7677 | |
7678 (autoload 'icomplete-mode "icomplete" "\ | |
7679 Activate incremental minibuffer completion for this emacs session, | |
7680 or deactivate with negative prefix arg." t nil) | |
7681 | |
7682 (autoload 'icomplete-minibuffer-setup "icomplete" "\ | |
7683 Run in minibuffer on activation to establish incremental completion. | |
7684 | |
7685 Usually run by inclusion in minibuffer-setup-hook." nil nil) | |
7686 | |
7687 ;;;*** | |
7688 | |
7689 ;;;### (autoloads (Info-elisp-ref Info-emacs-key Info-goto-emacs-key-command-node Info-goto-emacs-command-node Info-emacs-command Info-search Info-visit-file Info-goto-node Info-query info) "info" "packages/info.el" (12740 25202)) | |
7690 ;;; Generated autoloads from packages/info.el | |
7691 | |
7692 (autoload 'info "info" "\ | |
7693 Enter Info, the documentation browser. | |
7694 Optional argument FILE specifies the file to examine; | |
7695 the default is the top-level directory of Info. | |
7696 | |
7697 In interactive use, a prefix argument directs this command | |
7698 to read a file name from the minibuffer." t nil) | |
7699 | |
7700 (autoload 'Info-query "info" "\ | |
7701 Enter Info, the documentation browser. Prompt for name of Info file." t nil) | |
7702 | |
7703 (autoload 'Info-goto-node "info" "\ | |
7704 Go to info node named NAME. Give just NODENAME or (FILENAME)NODENAME. | |
7705 Actually, the following interpretations of NAME are tried in order: | |
7706 (FILENAME)NODENAME | |
7707 (FILENAME) (using Top node) | |
7708 NODENAME (in current file) | |
7709 TAGNAME (see below) | |
7710 FILENAME (using Top node) | |
7711 where TAGNAME is a string that appears in quotes: \"TAGNAME\", in an | |
7712 annotation for any node of any file. (See `a' and `x' commands.)" t nil) | |
7713 | |
7714 (autoload 'Info-visit-file "info" "\ | |
7715 Directly visit an info file." t nil) | |
7716 | |
7717 (autoload 'Info-search "info" "\ | |
7718 Search for REGEXP, starting from point, and select node it's found in." t nil) | |
7719 | |
7720 (autoload 'Info-emacs-command "info" "\ | |
7721 Look up an Emacs command in the Emacs manual in the Info system. | |
7722 This command is designed to be used whether you are already in Info or not." t nil) | |
7723 | |
7724 (autoload 'Info-goto-emacs-command-node "info" "\ | |
7725 Look up an Emacs command in the Emacs manual in the Info system. | |
7726 This command is designed to be used whether you are already in Info or not." t nil) | |
7727 | |
7728 (autoload 'Info-goto-emacs-key-command-node "info" "\ | |
7729 Look up an Emacs key sequence in the Emacs manual in the Info system. | |
7730 This command is designed to be used whether you are already in Info or not." t nil) | |
7731 | |
7732 (autoload 'Info-emacs-key "info" "\ | |
7733 Look up an Emacs key sequence in the Emacs manual in the Info system. | |
7734 This command is designed to be used whether you are already in Info or not." t nil) | |
7735 | |
7736 (autoload 'Info-elisp-ref "info" "\ | |
7737 Look up an Emacs Lisp function in the Elisp manual in the Info system. | |
7738 This command is designed to be used whether you are already in Info or not." t nil) | |
7739 | |
7740 ;;;*** | |
7741 | |
7742 ;;;### (autoloads (batch-info-validate Info-validate Info-split Info-tagify) "informat" "packages/informat.el" (12547 2425)) | |
7743 ;;; Generated autoloads from packages/informat.el | |
7744 | |
7745 (autoload 'Info-tagify "informat" "\ | |
7746 Create or update Info-file tag table in current buffer." t nil) | |
7747 | |
7748 (autoload 'Info-split "informat" "\ | |
7749 Split an info file into an indirect file plus bounded-size subfiles. | |
7750 Each subfile will be up to 50,000 characters plus one node. | |
7751 | |
7752 To use this command, first visit a large Info file that has a tag | |
7753 table. The buffer is modified into a (small) indirect info file which | |
7754 should be saved in place of the original visited file. | |
7755 | |
7756 The subfiles are written in the same directory the original file is | |
7757 in, with names generated by appending `-' and a number to the original | |
7758 file name. The indirect file still functions as an Info file, but it | |
7759 contains just the tag table and a directory of subfiles." t nil) | |
7760 | |
7761 (autoload 'Info-validate "informat" "\ | |
7762 Check current buffer for validity as an Info file. | |
7763 Check that every node pointer points to an existing node." t nil) | |
7764 | |
7765 (autoload 'batch-info-validate "informat" "\ | |
7766 Runs `Info-validate' on the files remaining on the command line. | |
7767 Must be used only with -batch, and kills Emacs on completion. | |
7768 Each file will be processed even if an error occurred previously. | |
7769 For example, invoke \"emacs -batch -f batch-info-validate $info/ ~/*.info\"" nil nil) | |
7770 | |
7771 ;;;*** | |
7772 | |
7773 ;;;### (autoloads (ispell-message ispell-minor-mode ispell-complete-word-interior-frag ispell-complete-word ispell-continue ispell-buffer ispell-region ispell-change-dictionary ispell-kill-ispell ispell-help ispell-word) "ispell" "packages/ispell.el" (12727 30153)) | |
7774 ;;; Generated autoloads from packages/ispell.el | |
7775 | |
7776 (defvar ispell-personal-dictionary nil "\ | |
7777 *File name of your personal spelling dictionary, or nil. | |
7778 If nil, the default personal dictionary, \"~/.ispell_DICTNAME\" is used, | |
7779 where DICTNAME is the name of your default dictionary.") | |
7780 | |
7781 (defvar ispell-dictionary-alist-1 '((nil "[A-Za-z]" "[^A-Za-z]" "[']" nil ("-B") nil) ("english" "[A-Za-z]" "[^A-Za-z]" "[']" nil ("-B") nil) ("british" "[A-Za-z]" "[^A-Za-z]" "[']" nil ("-B" "-d" "british") nil) ("deutsch" "[a-zA-Z\"]" "[^a-zA-Z\"]" "[']" t ("-C") "~tex") ("deutsch8" "[a-zA-ZÄÖÜäößü]" "[^a-zA-ZÄÖÜäößü]" "[']" t ("-C" "-d" "deutsch") "~latin1") ("nederlands" "[A-Za-zÀ-ÅÇÈ-ÏÒ-ÖÙ-Üà-åçè-ïñò-öù-ü]" "[^A-Za-zÀ-ÅÇÈ-ÏÒ-ÖÙ-Üà-åçè-ïñò-öù-ü]" "[']" t ("-C") nil) ("nederlands8" "[A-Za-zÀ-ÅÇÈ-ÏÒ-ÖÙ-Üà-åçè-ïñò-öù-ü]" "[^A-Za-zÀ-ÅÇÈ-ÏÒ-ÖÙ-Üà-åçè-ïñò-öù-ü]" "[']" t ("-C") nil))) | |
7782 | |
7783 (defvar ispell-dictionary-alist-2 '(("svenska" "[A-Za-z}{|\\133\\135\\\\]" "[^A-Za-z}{|\\133\\135\\\\]" "[']" nil ("-C") nil) ("svenska8" "[A-Za-zåäöÅÄö]" "[^A-Za-zåäöÅÄö]" "[']" nil ("-C" "-d" "svenska") "~list") ("francais7" "[A-Za-z]" "[^A-Za-z]" "[`'^---]" t nil nil) ("francais" "[A-Za-zÀÂÆÇÈÉÊËÎÏÔÙÛÜàâçèéêëîïôùûü]" "[^A-Za-zÀÂÆÇÈÉÊËÎÏÔÙÛÜàâçèéêëîïôùûü]" "[---']" t nil "~list") ("francais-tex" "[A-Za-zÀÂÆÇÈÉÊËÎÏÔÙÛÜàâçèéêëîïôùûü\\]" "[^A-Za-zÀÂÆÇÈÉÊËÎÏÔÙÛÜàâçèéêëîïôùûü\\]" "[---'^`\"]" t nil "~tex") ("dansk" "[A-ZÆØÅa-zæøå]" "[^A-ZÆØÅa-zæøå]" "" nil ("-C") nil))) | |
7784 | |
7785 (defvar ispell-dictionary-alist (append ispell-dictionary-alist-1 ispell-dictionary-alist-2) "\ | |
7786 An alist of dictionaries and their associated parameters. | |
7787 | |
7788 Each element of this list is also a list: | |
7789 | |
7790 \(DICTIONARY-NAME CASECHARS NOT-CASECHARS OTHERCHARS MANY-OTHERCHARS-P | |
7791 ISPELL-ARGS EXTENDED-CHARACTER-MODE) | |
7792 | |
7793 DICTIONARY-NAME is a possible value of variable `ispell-dictionary', nil | |
7794 means the default dictionary. | |
7795 | |
7796 CASECHARS is a regular expression of valid characters that comprise a | |
7797 word. | |
7798 | |
7799 NOT-CASECHARS is the opposite regexp of CASECHARS. | |
7800 | |
7801 OTHERCHARS is a regular expression of other characters that are valid | |
7802 in word constructs. Otherchars cannot be adjacent to each other in a | |
7803 word, nor can they begin or end a word. This implies we can't check | |
7804 \"Stevens'\" as a correct possessive and other correct formations. | |
7805 | |
7806 Hint: regexp syntax requires the hyphen to be declared first here. | |
7807 | |
7808 MANY-OTHERCHARS-P is non-nil if many otherchars are to be allowed in a | |
7809 word instead of only one. | |
7810 | |
7811 ISPELL-ARGS is a list of additional arguments passed to the ispell | |
7812 subprocess. | |
7813 | |
7814 EXTENDED-CHARACTER-MODE should be used when dictionaries are used which | |
7815 have been configured in an Ispell affix file. (For example, umlauts | |
7816 can be encoded as \\\"a, a\\\", \"a, ...) Defaults are ~tex and ~nroff | |
7817 in English. This has the same effect as the command-line `-T' option. | |
7818 The buffer Major Mode controls Ispell's parsing in tex or nroff mode, | |
7819 but the dictionary can control the extended character mode. | |
7820 Both defaults can be overruled in a buffer-local fashion. See | |
7821 `ispell-parsing-keyword' for details on this. | |
7822 | |
7823 Note that the CASECHARS and OTHERCHARS slots of the alist should | |
7824 contain the same character set as casechars and otherchars in the | |
7825 language.aff file (e.g., english.aff).") | |
7826 | |
7827 (defvar ispell-menu-map nil "\ | |
7828 Key map for ispell menu") | |
7829 | |
7830 (defvar ispell-menu-lucid nil "\ | |
7831 Spelling menu for Lucid Emacs.") | |
7832 | |
7833 (defconst ispell-menu-map-needed (and (not ispell-menu-map) (string-lessp "19" emacs-version) (not (string-match "XEmacs" emacs-version)))) | |
7834 | |
7835 (if ispell-menu-map-needed (let ((dicts (reverse (cons (cons "default" nil) ispell-dictionary-alist))) name) (setq ispell-menu-map (make-sparse-keymap "Spell")) (while dicts (setq name (car (car dicts)) dicts (cdr dicts)) (if (stringp name) (define-key ispell-menu-map (vector (intern name)) (cons (concat "Select " (capitalize name)) (list 'lambda nil '(interactive) (list 'ispell-change-dictionary name)))))))) | |
7836 | |
7837 (if ispell-menu-map-needed (progn (define-key ispell-menu-map [ispell-change-dictionary] '("Change Dictionary" . ispell-change-dictionary)) (define-key ispell-menu-map [ispell-kill-ispell] '("Kill Process" . ispell-kill-ispell)) (define-key ispell-menu-map [ispell-pdict-save] '("Save Dictionary" lambda nil (interactive) (ispell-pdict-save t t))) (define-key ispell-menu-map [ispell-complete-word] '("Complete Word" . ispell-complete-word)) (define-key ispell-menu-map [ispell-complete-word-interior-frag] '("Complete Word Frag" . ispell-complete-word-interior-frag)))) | |
7838 | |
7839 (if ispell-menu-map-needed (progn (define-key ispell-menu-map [ispell-continue] '("Continue Check" . ispell-continue)) (define-key ispell-menu-map [ispell-word] '("Check Word" . ispell-word)) (define-key ispell-menu-map [ispell-region] '("Check Region" . ispell-region)) (define-key ispell-menu-map [ispell-buffer] '("Check Buffer" . ispell-buffer)))) | |
7840 | |
7841 (if ispell-menu-map-needed (progn (define-key ispell-menu-map [ispell-message] '("Check Message" . ispell-message)) (define-key ispell-menu-map [ispell-help] '("Help" lambda nil (interactive) (describe-function 'ispell-help))) (put 'ispell-region 'menu-enable 'mark-active) (fset 'ispell-menu-map (symbol-value 'ispell-menu-map)))) | |
7842 | |
7843 (defvar ispell-local-pdict ispell-personal-dictionary "\ | |
7844 A buffer local variable containing the current personal dictionary. | |
7845 If non-nil, the value must be a string, which is a file name. | |
7846 | |
7847 If you specify a personal dictionary for the current buffer which is | |
7848 different from the current personal dictionary, the effect is similar | |
7849 to calling \\[ispell-change-dictionary]. This variable is automatically | |
7850 set when defined in the file with either `ispell-pdict-keyword' or the | |
7851 local variable syntax.") | |
7852 | |
7853 (define-key global-map "¤" 'ispell-word) | |
7854 | |
7855 (autoload 'ispell-word "ispell" "\ | |
7856 Check spelling of word under or before the cursor. | |
7857 If the word is not found in dictionary, display possible corrections | |
7858 in a window allowing you to choose one. | |
7859 | |
7860 With a prefix argument (or if CONTINUE is non-nil), | |
7861 resume interrupted spell-checking of a buffer or region. | |
7862 | |
7863 If optional argument FOLLOWING is non-nil or if `ispell-following-word' | |
7864 is non-nil when called interactively, then the following word | |
7865 \(rather than preceding) is checked when the cursor is not over a word. | |
7866 When the optional argument QUIETLY is non-nil or `ispell-quietly' is non-nil | |
7867 when called interactively, non-corrective messages are suppressed. | |
7868 | |
7869 Word syntax described by `ispell-dictionary-alist' (which see). | |
7870 | |
7871 This will check or reload the dictionary. Use \\[ispell-change-dictionary] | |
7872 or \\[ispell-region] to update the Ispell process." t nil) | |
7873 | |
7874 (autoload 'ispell-help "ispell" "\ | |
7875 Display a list of the options available when a misspelling is encountered. | |
7876 | |
7877 Selections are: | |
7878 | |
7879 DIGIT: Replace the word with a digit offered in the *Choices* buffer. | |
7880 SPC: Accept word this time. | |
7881 `i': Accept word and insert into private dictionary. | |
7882 `a': Accept word for this session. | |
7883 `A': Accept word and place in `buffer-local dictionary'. | |
7884 `r': Replace word with typed-in value. Rechecked. | |
7885 `R': Replace word with typed-in value. Query-replaced in buffer. Rechecked. | |
7886 `?': Show these commands. | |
7887 `x': Exit spelling buffer. Move cursor to original point. | |
7888 `X': Exit spelling buffer. Leaves cursor at the current point, and permits | |
7889 the aborted check to be completed later. | |
7890 `q': Quit spelling session (Kills ispell process). | |
7891 `l': Look up typed-in replacement in alternate dictionary. Wildcards okay. | |
7892 `u': Like `i', but the word is lower-cased first. | |
7893 `m': Like `i', but allows one to include dictionary completion information. | |
7894 `C-l': redraws screen | |
7895 `C-r': recursive edit | |
7896 `C-z': suspend emacs or iconify frame" nil nil) | |
7897 | |
7898 (autoload 'ispell-kill-ispell "ispell" "\ | |
7899 Kill current Ispell process (so that you may start a fresh one). | |
7900 With NO-ERROR, just return non-nil if there was no Ispell running." t nil) | |
7901 | |
7902 (autoload 'ispell-change-dictionary "ispell" "\ | |
7903 Change `ispell-dictionary' (q.v.) and kill old Ispell process. | |
7904 A new one will be started as soon as necessary. | |
7905 | |
7906 By just answering RET you can find out what the current dictionary is. | |
7907 | |
7908 With prefix argument, set the default directory." t nil) | |
7909 | |
7910 (autoload 'ispell-region "ispell" "\ | |
7911 Interactively check a region for spelling errors." t nil) | |
7912 | |
7913 (autoload 'ispell-buffer "ispell" "\ | |
7914 Check the current buffer for spelling errors interactively." t nil) | |
7915 | |
7916 (autoload 'ispell-continue "ispell" nil t nil) | |
7917 | |
7918 (autoload 'ispell-complete-word "ispell" "\ | |
7919 Look up word before or under point in dictionary (see lookup-words command) | |
7920 and try to complete it. If optional INTERIOR-FRAG is non-nil then the word | |
7921 may be a character sequence inside of a word. | |
7922 | |
7923 Standard ispell choices are then available." t nil) | |
7924 | |
7925 (autoload 'ispell-complete-word-interior-frag "ispell" "\ | |
7926 Completes word matching character sequence inside a word." t nil) | |
7927 | |
7928 (autoload 'ispell-minor-mode "ispell" "\ | |
7929 Toggle Ispell minor mode. | |
7930 With prefix arg, turn Ispell minor mode on iff arg is positive. | |
7931 | |
7932 In Ispell minor mode, pressing SPC or RET | |
7933 warns you if the previous word is incorrectly spelled." t nil) | |
7934 | |
7935 (autoload 'ispell-message "ispell" "\ | |
7936 Check the spelling of a mail message or news post. | |
7937 Don't check spelling of message headers except the Subject field. | |
7938 Don't check included messages. | |
7939 | |
7940 To abort spell checking of a message REGION and send the message anyway, | |
7941 use the `x' or `q' command. (Any subsequent regions will be checked.) | |
7942 The `X' command aborts the message send so that you can edit the buffer. | |
7943 | |
7944 To spell-check whenever a message is sent, include the appropriate lines | |
7945 in your .emacs file: | |
7946 (add-hook 'news-inews-hook 'ispell-message) | |
7947 (add-hook 'mail-send-hook 'ispell-message) | |
7948 (add-hook 'mh-before-send-letter-hook 'ispell-message) | |
7949 | |
7950 You can bind this to the key C-c i in GNUS or mail by adding to | |
7951 `news-reply-mode-hook' or `mail-mode-hook' the following lambda expression: | |
7952 (function (lambda () (local-set-key \"\\C-ci\" 'ispell-message)))" t nil) | |
7953 | |
7954 ;;;*** | |
7955 | |
7956 ;;;### (autoloads (jka-compr-install toggle-auto-compression jka-compr-load) "jka-compr" "packages/jka-compr.el" (12639 8598)) | |
7957 ;;; Generated autoloads from packages/jka-compr.el | |
7958 | |
7959 (autoload 'jka-compr-load "jka-compr" "\ | |
7960 Documented as original." nil nil) | |
7961 | |
7962 (autoload 'toggle-auto-compression "jka-compr" "\ | |
7963 Toggle automatic file compression and decompression. | |
7964 With prefix argument ARG, turn auto compression on if positive, else off. | |
7965 Returns the new status of auto compression (non-nil means on)." t nil) | |
7966 | |
7967 (autoload 'jka-compr-install "jka-compr" "\ | |
7968 Install jka-compr. | |
7969 This adds entries to `file-name-handler-alist' and `auto-mode-alist' | |
7970 and `inhibit-first-line-modes-suffixes'." nil nil) | |
7971 | |
7972 ;;;*** | |
7973 | |
7974 ;;;### (autoloads (turn-on-lazy-lock lazy-lock-mode) "lazy-lock" "packages/lazy-lock.el" (12743 11606)) | |
7975 ;;; Generated autoloads from packages/lazy-lock.el | |
7976 | |
7977 (defvar lazy-lock-mode nil) | |
7978 | |
7979 (autoload 'lazy-lock-mode "lazy-lock" "\ | |
7980 Toggle Lazy Lock mode. | |
7981 With arg, turn Lazy Lock mode on if and only if arg is positive and the buffer | |
7982 is at least `lazy-lock-minimum-size' characters long. | |
7983 | |
7984 When Lazy Lock mode is enabled, fontification is demand-driven and stealthy: | |
7985 | |
7986 - Fontification occurs in visible parts of buffers when necessary. | |
7987 Occurs if there is no input after pausing for `lazy-lock-continuity-time'. | |
7988 | |
7989 - Fontification occurs in invisible parts when Emacs has been idle. | |
7990 Occurs if there is no input after pausing for `lazy-lock-stealth-time'. | |
7991 | |
7992 If `lazy-lock-hide-invisible' is non-nil, text is not displayed until it is | |
7993 fontified, otherwise it is displayed in `lazy-lock-invisible-foreground'. | |
7994 | |
7995 See also variables `lazy-lock-walk-windows' and `lazy-lock-ignore-commands' for | |
7996 window (scroll) fontification, and `lazy-lock-stealth-lines', | |
7997 `lazy-lock-stealth-nice' and `lazy-lock-stealth-verbose' for stealth | |
7998 fontification. | |
7999 | |
8000 Use \\[lazy-lock-submit-bug-report] to send bug reports or feedback." t nil) | |
8001 | |
8002 (autoload 'turn-on-lazy-lock "lazy-lock" "\ | |
8003 Unconditionally turn on Lazy Lock mode." nil nil) | |
8004 | |
8005 (add-minor-mode 'lazy-lock-mode " Lazy") | |
8006 | |
8007 ;;;*** | |
8008 | |
8009 ;;;### (autoloads (ledit-from-lisp-mode ledit-mode) "ledit" "packages/ledit.el" (12547 2428)) | |
8010 ;;; Generated autoloads from packages/ledit.el | |
8011 | |
8012 (defconst ledit-save-files t "\ | |
8013 *Non-nil means Ledit should save files before transferring to Lisp.") | |
8014 | |
8015 (defconst ledit-go-to-lisp-string "%?lisp" "\ | |
8016 *Shell commands to execute to resume Lisp job.") | |
8017 | |
8018 (defconst ledit-go-to-liszt-string "%?liszt" "\ | |
8019 *Shell commands to execute to resume Lisp compiler job.") | |
8020 | |
8021 (autoload 'ledit-mode "ledit" "\ | |
8022 \\<ledit-mode-map>Major mode for editing text and stuffing it to a Lisp job. | |
8023 Like Lisp mode, plus these special commands: | |
8024 \\[ledit-save-defun] -- record defun at or after point | |
8025 for later transmission to Lisp job. | |
8026 \\[ledit-save-region] -- record region for later transmission to Lisp job. | |
8027 \\[ledit-go-to-lisp] -- transfer to Lisp job and transmit saved text. | |
8028 \\[ledit-go-to-liszt] -- transfer to Liszt (Lisp compiler) job | |
8029 and transmit saved text. | |
8030 \\{ledit-mode-map} | |
8031 To make Lisp mode automatically change to Ledit mode, | |
8032 do (setq lisp-mode-hook 'ledit-from-lisp-mode)" t nil) | |
8033 | |
8034 (autoload 'ledit-from-lisp-mode "ledit" nil nil nil) | |
8035 | |
8036 ;;;*** | |
8037 | |
8038 ;;;### (autoloads nil "lispm-fonts" "packages/lispm-fonts.el" (12376 19482)) | |
8039 ;;; Generated autoloads from packages/lispm-fonts.el | |
8040 | |
8041 ;;;### (autoloads (print-region lpr-region print-buffer lpr-buffer) "lpr" "packages/lpr.el" (12546 50464)) | |
8042 ;;; Generated autoloads from packages/lpr.el | |
8043 | |
8044 (defvar lpr-switches nil "\ | |
8045 *List of strings to pass as extra switch args to `lpr' when it is invoked.") | |
8046 | |
8047 (defvar lpr-command (if (memq system-type '(usg-unix-v dgux hpux irix)) "lp" "lpr") "\ | |
8048 *Name of program for printing a file.") | |
8049 | |
8050 (autoload 'lpr-buffer "lpr" "\ | |
8051 Print buffer contents as with Unix command `lpr'. | |
8052 `lpr-switches' is a list of extra switches (strings) to pass to lpr." t nil) | |
8053 | |
8054 (autoload 'print-buffer "lpr" "\ | |
8055 Print buffer contents as with Unix command `lpr -p'. | |
8056 `lpr-switches' is a list of extra switches (strings) to pass to lpr." t nil) | |
8057 | |
8058 (autoload 'lpr-region "lpr" "\ | |
8059 Print region contents as with Unix command `lpr'. | |
8060 `lpr-switches' is a list of extra switches (strings) to pass to lpr." t nil) | |
8061 | |
8062 (autoload 'print-region "lpr" "\ | |
8063 Print region contents as with Unix command `lpr -p'. | |
8064 `lpr-switches' is a list of extra switches (strings) to pass to lpr." t nil) | |
8065 | |
8066 ;;;*** | |
8067 | |
8068 ;;;### (autoloads nil "makeinfo" "packages/makeinfo.el" (12547 2422)) | |
8069 ;;; Generated autoloads from packages/makeinfo.el | |
8070 | |
8071 ;;;### (autoloads (make-command-summary) "makesum" "packages/makesum.el" (12547 2408)) | |
8072 ;;; Generated autoloads from packages/makesum.el | |
8073 | |
8074 (autoload 'make-command-summary "makesum" "\ | |
8075 Make a summary of current key bindings in the buffer *Summary*. | |
8076 Previous contents of that buffer are killed first." t nil) | |
8077 | |
8078 ;;;*** | |
8079 | |
8080 ;;;### (autoloads (manual-entry) "man" "packages/man.el" (12727 30154)) | |
8081 ;;; Generated autoloads from packages/man.el | |
8082 | |
8083 (autoload 'manual-entry "man" "\ | |
8084 Display the Unix manual entry (or entries) for TOPIC. | |
8085 If prefix arg is given, modify the search according to the value: | |
8086 2 = complement default exact matching of the TOPIC name; | |
8087 exact matching default is specified by `Manual-match-topic-exactly' | |
8088 3 = force a search of the unformatted man directories | |
8089 4 = both 2 and 3 | |
8090 The manual entries are searched according to the variable | |
8091 Manual-directory-list, which should be a list of directories. If | |
8092 Manual-directory-list is nil, \\[Manual-directory-list-init] is | |
8093 invoked to create this list from the MANPATH environment variable. | |
8094 See the variable Manual-topic-buffer which controls how the buffer | |
8095 is named. See also the variables Manual-match-topic-exactly, | |
8096 Manual-query-multiple-pages, and Manual-buffer-view-mode." t nil) | |
8097 | |
8098 ;;;*** | |
8099 | |
8100 ;;;### (autoloads nil "metamail" "packages/metamail.el" (12547 2454)) | |
8101 ;;; Generated autoloads from packages/metamail.el | |
8102 | |
8103 ;;;*** | |
8104 | |
8105 ;;;### (autoloads nil "mime-compose" "packages/mime-compose.el" (12727 30155)) | |
8106 ;;; Generated autoloads from packages/mime-compose.el | |
8107 | |
8108 ;;;### (autoloads nil "mode-motion+" "packages/mode-motion+.el" (12583 60690)) | |
8109 ;;; Generated autoloads from packages/mode-motion+.el | |
8110 | |
8111 ;;;*** | |
8112 | |
8113 ;;;### (autoloads nil "netunam" "packages/netunam.el" (12547 2429)) | |
8114 ;;; Generated autoloads from packages/netunam.el | |
8115 | |
8116 ;;;*** | |
8117 | |
8118 ;;;### (autoloads nil "page-ext" "packages/page-ext.el" (12547 2433)) | |
8119 ;;; Generated autoloads from packages/page-ext.el | |
8120 | |
8121 ;;;### (autoloads (blink-paren paren-set-mode) "paren" "packages/paren.el" (12648 18575)) | |
8122 ;;; Generated autoloads from packages/paren.el | |
8123 | |
8124 (defvar paren-mode nil "\ | |
8125 *Sets the style of parenthesis highlighting. | |
8126 Valid values are nil, `blink-paren', `paren', and `sexp'. | |
8127 nil no parenthesis highlighting. | |
8128 blink-paren causes the matching paren to blink. | |
8129 paren causes the matching paren to be highlighted but not to blink. | |
8130 sexp whole expression enclosed by the local paren at its mate. | |
8131 nested (not yet implemented) use variable shading to see the | |
8132 nesting of an expression. Also groks regular expressions | |
8133 and shell quoting. | |
8134 | |
8135 This variable is global by default, but you can make it buffer-local and | |
8136 highlight parentheses differrently in different major modes.") | |
8137 | |
8138 (autoload 'paren-set-mode "paren" "\ | |
8139 Cycles through possible values for `paren-mode', force off with negative arg. | |
8140 When called from lisp, a symbolic value for `paren-mode' can be pased directly. | |
8141 See also `paren-mode' and `paren-highlight'." t nil) | |
8142 | |
8143 (make-obsolete 'blink-paren 'paren-set-mode) | |
8144 | |
8145 (autoload 'blink-paren "paren" "\ | |
8146 Obsolete. Use `paren-set-mode' instead." t nil) | |
8147 | |
8148 ;;;*** | |
8149 | |
8150 ;;;### (autoloads (pending-delete pending-delete-off pending-delete-on) "pending-del" "packages/pending-del.el" (12547 2431)) | |
8151 ;;; Generated autoloads from packages/pending-del.el | |
8152 | |
8153 (autoload 'pending-delete-on "pending-del" "\ | |
8154 Turn on pending delete. | |
8155 When it is ON, typed text replaces the selection if the selection is active. | |
8156 When it is OFF, typed text is just inserted at point." t nil) | |
8157 | |
8158 (autoload 'pending-delete-off "pending-del" "\ | |
8159 Turn off pending delete. | |
8160 When it is ON, typed text replaces the selection if the selection is active. | |
8161 When it is OFF, typed text is just inserted at point." t nil) | |
8162 | |
8163 (autoload 'pending-delete "pending-del" "\ | |
8164 Toggle automatic deletion of the selected region. | |
8165 With a positive argument, turns it on. | |
8166 With a non-positive argument, turns it off. | |
8167 When active, typed text replaces the selection." t nil) | |
8168 | |
8169 ;;;*** | |
8170 | |
8171 ;;;### (autoloads (ps-despool ps-spool-region-with-faces ps-spool-region ps-spool-buffer-with-faces ps-spool-buffer ps-print-region-with-faces ps-print-region ps-print-buffer-with-faces ps-print-buffer) "ps-print" "packages/ps-print.el" (12743 11610)) | |
8172 ;;; Generated autoloads from packages/ps-print.el | |
8173 | |
8174 (defvar ps-paper-type 'ps-letter "\ | |
8175 *Specifies the size of paper to format for. Should be one of | |
8176 `ps-letter', `ps-legal', or `ps-a4'.") | |
8177 | |
8178 (defvar ps-print-color-p (and (or (fboundp 'x-color-values) (fboundp 'color-instance-rgb-components)) (fboundp 'float)) "\ | |
8179 *If non-nil, print the buffer's text in color.") | |
8180 | |
8181 (autoload 'ps-print-buffer "ps-print" "\ | |
8182 Generate and print a PostScript image of the buffer. | |
8183 | |
8184 When called with a numeric prefix argument (C-u), prompts the user for | |
8185 the name of a file to save the PostScript image in, instead of sending | |
8186 it to the printer. | |
8187 | |
8188 More specifically, the FILENAME argument is treated as follows: if it | |
8189 is nil, send the image to the printer. If FILENAME is a string, save | |
8190 the PostScript image in a file with that name. If FILENAME is a | |
8191 number, prompt the user for the name of the file to save in." t nil) | |
8192 | |
8193 (autoload 'ps-print-buffer-with-faces "ps-print" "\ | |
8194 Generate and print a PostScript image of the buffer. | |
8195 | |
8196 Like `ps-print-buffer', but includes font, color, and underline | |
8197 information in the generated image." t nil) | |
8198 | |
8199 (autoload 'ps-print-region "ps-print" "\ | |
8200 Generate and print a PostScript image of the region. | |
8201 | |
8202 Like `ps-print-buffer', but prints just the current region." t nil) | |
8203 | |
8204 (autoload 'ps-print-region-with-faces "ps-print" "\ | |
8205 Generate and print a PostScript image of the region. | |
8206 | |
8207 Like `ps-print-region', but includes font, color, and underline | |
8208 information in the generated image." t nil) | |
8209 | |
8210 (autoload 'ps-spool-buffer "ps-print" "\ | |
8211 Generate and spool a PostScript image of the buffer. | |
8212 | |
8213 Like `ps-print-buffer' except that the PostScript image is saved in a | |
8214 local buffer to be sent to the printer later. | |
8215 | |
8216 Use the command `ps-despool' to send the spooled images to the printer." t nil) | |
8217 | |
8218 (autoload 'ps-spool-buffer-with-faces "ps-print" "\ | |
8219 Generate and spool a PostScript image of the buffer. | |
8220 | |
8221 Like `ps-spool-buffer', but includes font, color, and underline | |
8222 information in the generated image. | |
8223 | |
8224 Use the command `ps-despool' to send the spooled images to the printer." t nil) | |
8225 | |
8226 (autoload 'ps-spool-region "ps-print" "\ | |
8227 Generate a PostScript image of the region and spool locally. | |
8228 | |
8229 Like `ps-spool-buffer', but spools just the current region. | |
8230 | |
8231 Use the command `ps-despool' to send the spooled images to the printer." t nil) | |
8232 | |
8233 (autoload 'ps-spool-region-with-faces "ps-print" "\ | |
8234 Generate a PostScript image of the region and spool locally. | |
8235 | |
8236 Like `ps-spool-region', but includes font, color, and underline | |
8237 information in the generated image. | |
8238 | |
8239 Use the command `ps-despool' to send the spooled images to the printer." t nil) | |
8240 | |
8241 (autoload 'ps-despool "ps-print" "\ | |
8242 Send the spooled PostScript to the printer. | |
8243 | |
8244 When called with a numeric prefix argument (C-u), prompt the user for | |
8245 the name of a file to save the spooled PostScript in, instead of sending | |
8246 it to the printer. | |
8247 | |
8248 More specifically, the FILENAME argument is treated as follows: if it | |
8249 is nil, send the image to the printer. If FILENAME is a string, save | |
8250 the PostScript image in a file with that name. If FILENAME is a | |
8251 number, prompt the user for the name of the file to save in." t nil) | |
8252 | |
8253 ;;;*** | |
8254 | |
8255 ;;;### (autoloads (remote-compile) "rcompile" "packages/rcompile.el" (12720 56487)) | |
8256 ;;; Generated autoloads from packages/rcompile.el | |
8257 | |
8258 (autoload 'remote-compile "rcompile" "\ | |
8259 Compile the the current buffer's directory on HOST. Log in as USER. | |
8260 See \\[compile]." t nil) | |
8261 | |
8262 ;;;*** | |
8263 | |
8264 ;;;### (autoloads nil "recent-files" "packages/recent-files.el" (12558 60919)) | |
8265 ;;; Generated autoloads from packages/recent-files.el | |
8266 | |
8267 ;;;*** | |
8268 | |
8269 ;;;### (autoloads nil "refbib" "packages/refbib.el" (12547 2434)) | |
8270 ;;; Generated autoloads from packages/refbib.el | |
8271 | |
8272 ;;;*** | |
8273 | |
8274 ;;;### (autoloads nil "remote" "packages/remote.el" (12547 2435)) | |
8275 ;;; Generated autoloads from packages/remote.el | |
8276 | |
8277 ;;;*** | |
8278 | |
8279 ;;;### (autoloads nil "reportmail" "packages/reportmail.el" (12743 22077)) | |
8280 ;;; Generated autoloads from packages/reportmail.el | |
8281 | |
8282 ;;;### (autoloads nil "resume" "packages/resume.el" (12547 2437)) | |
8283 ;;; Generated autoloads from packages/resume.el | |
8284 | |
8285 ;;;*** | |
8286 | |
8287 ;;;### (autoloads nil "rnews" "packages/rnews.el" (12547 2438)) | |
8288 ;;; Generated autoloads from packages/rnews.el | |
8289 | |
8290 ;;;*** | |
8291 | |
8292 ;;;### (autoloads nil "rnewspost" "packages/rnewspost.el" (12547 2440)) | |
8293 ;;; Generated autoloads from packages/rnewspost.el | |
8294 | |
8295 ;;;*** | |
8296 | |
8297 ;;;### (autoloads nil "saveconf" "packages/saveconf.el" (12547 2439)) | |
8298 ;;; Generated autoloads from packages/saveconf.el | |
8299 | |
8300 ;;;*** | |
8301 | |
8302 ;;;### (autoloads nil "saveplace" "packages/saveplace.el" (12547 2414)) | |
8303 ;;; Generated autoloads from packages/saveplace.el | |
8304 | |
8305 ;;;*** | |
8306 | |
8307 ;;;### (autoloads nil "sccs" "packages/sccs.el" (12547 2430)) | |
8308 ;;; Generated autoloads from packages/sccs.el | |
8309 | |
8310 ;;;*** | |
8311 | |
8312 ;;;### (autoloads nil "scroll-in-place" "packages/scroll-in-place.el" (12547 2457)) | |
8313 ;;; Generated autoloads from packages/scroll-in-place.el | |
8314 | |
8315 ;;;*** | |
8316 | |
8317 ;;;### (autoloads nil "server" "packages/server.el" (12547 2441)) | |
8318 ;;; Generated autoloads from packages/server.el | |
8319 | |
8320 (make-obsolete 'server-start 'gnuserv-start) | |
8321 | |
8322 ;;;*** | |
8323 | |
8324 ;;;### (autoloads nil "session" "packages/session.el" (12547 2442)) | |
8325 ;;; Generated autoloads from packages/session.el | |
8326 | |
8327 ;;;*** | |
8328 | |
8329 ;;;### (autoloads (install-shell-fonts) "shell-font" "packages/shell-font.el" (12547 2438)) | |
8330 ;;; Generated autoloads from packages/shell-font.el | |
8331 | |
8332 (autoload 'install-shell-fonts "shell-font" "\ | |
8333 Decorate the current interaction buffer with fonts. | |
8334 This uses the faces called `shell-prompt', `shell-input' and `shell-output'; | |
8335 you can alter the graphical attributes of those with the normal | |
8336 face-manipulation functions." nil nil) | |
8337 | |
8338 ;;;*** | |
8339 | |
8340 ;;;### (autoloads nil "spell" "packages/spell.el" (12547 2436)) | |
8341 ;;; Generated autoloads from packages/spell.el | |
8342 | |
8343 ;;;*** | |
8344 | |
8345 ;;;### (autoloads nil "supercite" "packages/supercite.el" (12547 2458)) | |
8346 ;;; Generated autoloads from packages/supercite.el | |
8347 | |
8348 ;;;### (autoloads (tar-mode) "tar-mode" "packages/tar-mode.el" (12547 2442)) | |
8349 ;;; Generated autoloads from packages/tar-mode.el | |
8350 | |
8351 (autoload 'tar-mode "tar-mode" "\ | |
8352 Major mode for viewing a tar file as a dired-like listing of its contents. | |
8353 You can move around using the usual cursor motion commands. | |
8354 Letters no longer insert themselves. | |
8355 Type 'e' to pull a file out of the tar file and into its own buffer. | |
8356 Type 'c' to copy an entry from the tar file into another file on disk. | |
8357 | |
8358 If you edit a sub-file of this archive (as with the 'e' command) and | |
8359 save it with Control-X Control-S, the contents of that buffer will be | |
8360 saved back into the tar-file buffer; in this way you can edit a file | |
8361 inside of a tar archive without extracting it and re-archiving it. | |
8362 | |
8363 See also: variables tar-update-datestamp and tar-anal-blocksize. | |
8364 \\{tar-mode-map}" nil nil) | |
8365 | |
8366 ;;;*** | |
8367 | |
8368 ;;;### (autoloads (terminal-emulator) "terminal" "packages/terminal.el" (12743 11605)) | |
8369 ;;; Generated autoloads from packages/terminal.el | |
8370 | |
8371 (autoload 'terminal-emulator "terminal" "\ | |
8372 Under a display-terminal emulator in BUFFER, run PROGRAM on arguments ARGS. | |
8373 ARGS is a list of argument-strings. Remaining arguments are WIDTH and HEIGHT. | |
8374 BUFFER's contents are made an image of the display generated by that program, | |
8375 and any input typed when BUFFER is the current Emacs buffer is sent to that | |
8376 program an keyboard input. | |
8377 | |
8378 Interactively, BUFFER defaults to \"*terminal*\" and PROGRAM and ARGS | |
8379 are parsed from an input-string using your usual shell. | |
8380 WIDTH and HEIGHT are determined from the size of the current window | |
8381 -- WIDTH will be one less than the window's width, HEIGHT will be its height. | |
8382 | |
8383 To switch buffers and leave the emulator, or to give commands | |
8384 to the emulator itself (as opposed to the program running under it), | |
8385 type Control-^. The following character is an emulator command. | |
8386 Type Control-^ twice to send it to the subprogram. | |
8387 This escape character may be changed using the variable `terminal-escape-char'. | |
8388 | |
8389 `Meta' characters may not currently be sent through the terminal emulator. | |
8390 | |
8391 Here is a list of some of the variables which control the behaviour | |
8392 of the emulator -- see their documentation for more information: | |
8393 terminal-escape-char, terminal-scrolling, terminal-more-processing, | |
8394 terminal-redisplay-interval. | |
8395 | |
8396 This function calls the value of terminal-mode-hook if that exists | |
8397 and is non-nil after the terminal buffer has been set up and the | |
8398 subprocess started. | |
8399 | |
8400 Presently with `termcap' only; if somebody sends us code to make this | |
8401 work with `terminfo' we will try to use it." t nil) | |
8402 | |
8403 ;;;*** | |
8404 | |
8405 ;;;### (autoloads nil "tex-latin1" "packages/tex-latin1.el" (12698 33545)) | |
8406 ;;; Generated autoloads from packages/tex-latin1.el | |
8407 | |
8408 ;;;*** | |
8409 | |
8410 ;;;### (autoloads (batch-texinfo-format texinfo-format-region texinfo-format-buffer) "texinfmt" "packages/texinfmt.el" (12547 2445)) | |
8411 ;;; Generated autoloads from packages/texinfmt.el | |
8412 | |
8413 (autoload 'texinfo-format-buffer "texinfmt" "\ | |
8414 Process the current buffer as texinfo code, into an Info file. | |
8415 The Info file output is generated in a buffer visiting the Info file | |
8416 names specified in the @setfilename command. | |
8417 | |
8418 Non-nil argument (prefix, if interactive) means don't make tag table | |
8419 and don't split the file if large. You can use Info-tagify and | |
8420 Info-split to do these manually." t nil) | |
8421 | |
8422 (autoload 'texinfo-format-region "texinfmt" "\ | |
8423 Convert the current region of the Texinfo file to Info format. | |
8424 This lets you see what that part of the file will look like in Info. | |
8425 The command is bound to \\[texinfo-format-region]. The text that is | |
8426 converted to Info is stored in a temporary buffer." t nil) | |
8427 | |
8428 (autoload 'batch-texinfo-format "texinfmt" "\ | |
8429 Runs texinfo-format-buffer on the files remaining on the command line. | |
8430 Must be used only with -batch, and kills emacs on completion. | |
8431 Each file will be processed even if an error occurred previously. | |
8432 For example, invoke | |
8433 \"emacs -batch -funcall batch-texinfo-format $docs/ ~/*.texinfo\"." nil nil) | |
8434 | |
8435 ;;;*** | |
8436 | |
8437 ;;;### (autoloads nil "texnfo-tex" "packages/texnfo-tex.el" (12657 40704)) | |
8438 ;;; Generated autoloads from packages/texnfo-tex.el | |
8439 | |
8440 ;;;### (autoloads (texinfo-sequential-node-update texinfo-every-node-update texinfo-update-node) "texnfo-upd" "packages/texnfo-upd.el" (12547 2451)) | |
8441 ;;; Generated autoloads from packages/texnfo-upd.el | |
8442 | |
8443 (autoload 'texinfo-update-node "texnfo-upd" "\ | |
8444 Without any prefix argument, update the node in which point is located. | |
8445 Non-nil argument (prefix, if interactive) means update the nodes in the | |
8446 marked region. | |
8447 | |
8448 The functions for creating or updating nodes and menus, and their | |
8449 keybindings, are: | |
8450 | |
8451 texinfo-update-node (&optional region-p) \\[texinfo-update-node] | |
8452 texinfo-every-node-update () \\[texinfo-every-node-update] | |
8453 texinfo-sequential-node-update (&optional region-p) | |
8454 | |
8455 texinfo-make-menu (&optional region-p) \\[texinfo-make-menu] | |
8456 texinfo-all-menus-update () \\[texinfo-all-menus-update] | |
8457 texinfo-master-menu () | |
8458 | |
8459 texinfo-indent-menu-description (column &optional region-p) | |
8460 | |
8461 The `texinfo-column-for-description' variable specifies the column to | |
8462 which menu descriptions are indented. Its default value is 32." t nil) | |
8463 | |
8464 (autoload 'texinfo-every-node-update "texnfo-upd" "\ | |
8465 Update every node in a Texinfo file." t nil) | |
8466 | |
8467 (autoload 'texinfo-sequential-node-update "texnfo-upd" "\ | |
8468 Update one node (or many) in a Texinfo file with sequential pointers. | |
8469 | |
8470 This function causes the `Next' or `Previous' pointer to point to the | |
8471 immediately preceding or following node, even if it is at a higher or | |
8472 lower hierarchical level in the document. Continually pressing `n' or | |
8473 `p' takes you straight through the file. | |
8474 | |
8475 Without any prefix argument, update the node in which point is located. | |
8476 Non-nil argument (prefix, if interactive) means update the nodes in the | |
8477 marked region. | |
8478 | |
8479 This command makes it awkward to navigate among sections and | |
8480 subsections; it should be used only for those documents that are meant | |
8481 to be read like a novel rather than a reference, and for which the | |
8482 Info `g*' command is inadequate." t nil) | |
8483 | |
8484 ;;;*** | |
8485 | |
8486 ;;;### (autoloads (time-stamp) "time-stamp" "packages/time-stamp.el" (12547 2415)) | |
8487 ;;; Generated autoloads from packages/time-stamp.el | |
8488 | |
8489 (autoload 'time-stamp "time-stamp" "\ | |
8490 Update the time stamp string in the buffer. | |
8491 Only does its thing if the variable time-stamp-active is non-nil. | |
8492 Typically used on write-file-hooks for automatic time-stamping. | |
8493 The format of the time stamp is determined by the variable | |
8494 time-stamp-format. The first time-stamp-line-limit lines of the | |
8495 buffer (normally 8) are searched for the time stamp template, | |
8496 and if it is found, a new time stamp is written into it." t nil) | |
8497 | |
8498 ;;;*** | |
8499 | |
8500 ;;;### (autoloads (display-time) "time" "packages/time.el" (12546 50463)) | |
8501 ;;; Generated autoloads from packages/time.el | |
8502 | |
8503 (defvar display-time-day-and-date nil "\ | |
8504 *Non-nil means \\[display-time] should display day and date as well as time.") | |
8505 | |
8506 (autoload 'display-time "time" "\ | |
8507 Display current time, load level, and mail flag in mode line of each buffer. | |
8508 Updates automatically every minute. | |
8509 If `display-time-day-and-date' is non-nil, the current day and date | |
8510 are displayed as well. | |
8511 After each update, `display-time-hook' is run with `run-hooks'. | |
8512 If `display-time-echo-area' is non-nil, the time is displayed in the | |
8513 echo area instead of in the mode-line." t nil) | |
8514 | |
8515 ;;;*** | |
8516 | |
8517 ;;;### (autoloads nil "uncompress" "packages/uncompress.el" (12547 2442)) | |
8518 ;;; Generated autoloads from packages/uncompress.el | |
8519 | |
8520 ;;;### (autoloads (ununderline-and-unoverstrike-region overstrike-region unoverstrike-region ununderline-region underline-region) "underline" "packages/underline.el" (12546 50465)) | |
8521 ;;; Generated autoloads from packages/underline.el | |
8522 | |
8523 (autoload 'underline-region "underline" "\ | |
8524 Underline all nonblank characters in the region. | |
8525 Works by overstriking underscores. | |
8526 Called from program, takes two arguments START and END | |
8527 which specify the range to operate on." t nil) | |
8528 | |
8529 (autoload 'ununderline-region "underline" "\ | |
8530 Remove all underlining (overstruck underscores) in the region. | |
8531 Called from program, takes two arguments START and END | |
8532 which specify the range to operate on." t nil) | |
8533 | |
8534 (autoload 'unoverstrike-region "underline" "\ | |
8535 Remove all overstriking (character-backspace-character) in the region. | |
8536 Called from program, takes two arguments START and END which specify the | |
8537 range to operate on." t nil) | |
8538 | |
8539 (autoload 'overstrike-region "underline" "\ | |
8540 Overstrike (character-backspace-character) all nonblank characters in | |
8541 the region. Called from program, takes two arguments START and END which | |
8542 specify the range to operate on." t nil) | |
8543 | |
8544 (autoload 'ununderline-and-unoverstrike-region "underline" "\ | |
8545 Remove underlining and overstriking in the region. Called from a program, | |
8546 takes two arguments START and END which specify the range to operate on." t nil) | |
8547 | |
8548 ;;;*** | |
8549 | |
8550 ;;;### (autoloads (ask-to-update-copyright update-copyright) "upd-copyr" "packages/upd-copyr.el" (12546 50466)) | |
8551 ;;; Generated autoloads from packages/upd-copyr.el | |
8552 | |
8553 (defvar copyright-do-not-disturb "Free Software Foundation, Inc." "\ | |
8554 *If non-nil, the existing copyright holder is checked against this regexp. | |
8555 If it does not match, then a new copyright line is added with the copyright | |
8556 holder set to the value of `copyright-whoami'.") | |
8557 | |
8558 (defvar copyright-whoami nil "\ | |
8559 *A string containing the name of the owner of new copyright notices.") | |
8560 | |
8561 (defvar copyright-notice-file nil "\ | |
8562 *If non-nil, replace copying notices with this file.") | |
8563 | |
8564 (autoload 'update-copyright "upd-copyr" "\ | |
8565 Update the copyright notice at the beginning of the buffer | |
8566 to indicate the current year. If optional arg REPLACE is given | |
8567 \(interactively, with prefix arg) replace the years in the notice | |
8568 rather than adding the current year after them. | |
8569 If `copyright-notice-file' is set, the copying permissions following the | |
8570 copyright are replaced as well. | |
8571 | |
8572 If optional third argument ASK is non-nil, the user is prompted for whether | |
8573 or not to update the copyright. If optional fourth argument ASK-YEAR is | |
8574 non-nil, the user is prompted for whether or not to replace the year rather | |
8575 than adding to it." t nil) | |
8576 | |
8577 (autoload 'ask-to-update-copyright "upd-copyr" "\ | |
8578 If the current buffer contains a copyright notice that is out of date, | |
8579 ask the user if it should be updated with `update-copyright' (which see). | |
8580 Put this on write-file-hooks." nil nil) | |
8581 | |
8582 ;;;*** | |
8583 | |
8584 ;;;### (autoloads nil "vc-hooks" "packages/vc-hooks.el" (12728 13779)) | |
8585 ;;; Generated autoloads from packages/vc-hooks.el | |
8586 | |
8587 ;;;*** | |
8588 | |
8589 ;;;### (autoloads (vc-update-change-log vc-rename-file vc-cancel-version vc-revert-buffer vc-print-log vc-retrieve-snapshot vc-create-snapshot vc-directory vc-insert-headers vc-version-other-window vc-version-diff vc-diff vc-register vc-next-action vc-file-status) "vc" "packages/vc.el" (12675 57076)) | |
8590 ;;; Generated autoloads from packages/vc.el | |
8591 | |
8592 (defvar vc-checkin-hook nil "\ | |
8593 *List of functions called after a checkin is done. See `run-hooks'.") | |
8594 | |
8595 (autoload 'vc-file-status "vc" "\ | |
8596 Display the current status of the file being visited. | |
8597 Currently, this is only defined for CVS. The information provided in the | |
8598 modeline is generally sufficient for RCS and SCCS." t nil) | |
8599 | |
8600 (autoload 'vc-next-action "vc" "\ | |
8601 Do the next logical checkin or checkout operation on the current file. | |
8602 | |
8603 For RCS and SCCS files: | |
8604 If the file is not already registered, this registers it for version | |
8605 control and then retrieves a writable, locked copy for editing. | |
8606 If the file is registered and not locked by anyone, this checks out | |
8607 a writable and locked file ready for editing. | |
8608 If the file is checked out and locked by the calling user, this | |
8609 first checks to see if the file has changed since checkout. If not, | |
8610 it performs a revert. | |
8611 If the file has been changed, this pops up a buffer for entry | |
8612 of a log message; when the message has been entered, it checks in the | |
8613 resulting changes along with the log message as change commentary. If | |
8614 the variable `vc-keep-workfiles' is non-nil (which is its default), a | |
8615 read-only copy of the changed file is left in place afterwards. | |
8616 If the file is registered and locked by someone else, you are given | |
8617 the option to steal the lock. | |
8618 | |
8619 For CVS files: | |
8620 If the file is not already registered, this registers it for version | |
8621 control. This does a \"cvs add\", but no \"cvs commit\". | |
8622 If the file is added but not committed, it is committed. | |
8623 If the file has not been changed, neither in your working area or | |
8624 in the repository, a message is printed and nothing is done. | |
8625 If your working file is changed, but the repository file is | |
8626 unchanged, this pops up a buffer for entry of a log message; when the | |
8627 message has been entered, it checks in the resulting changes along | |
8628 with the logmessage as change commentary. A writable file is retained. | |
8629 If the repository file is changed, you are asked if you want to | |
8630 merge in the changes into your working copy. | |
8631 | |
8632 The following is true regardless of which version control system you | |
8633 are using: | |
8634 | |
8635 If you call this from within a VC dired buffer with no files marked, | |
8636 it will operate on the file in the current line. | |
8637 If you call this from within a VC dired buffer, and one or more | |
8638 files are marked, it will accept a log message and then operate on | |
8639 each one. The log message will be used as a comment for any register | |
8640 or checkin operations, but ignored when doing checkouts. Attempted | |
8641 lock steals will raise an error. | |
8642 | |
8643 For checkin, a prefix argument lets you specify the version number to use." t nil) | |
8644 | |
8645 (autoload 'vc-register "vc" "\ | |
8646 Register the current file into your version-control system." t nil) | |
8647 | |
8648 (autoload 'vc-diff "vc" "\ | |
8649 Display diffs between file versions. | |
8650 Normally this compares the current file and buffer with the most recent | |
8651 checked in version of that file. This uses no arguments. | |
8652 With a prefix argument, it reads the file name to use | |
8653 and two version designators specifying which versions to compare." t nil) | |
8654 | |
8655 (autoload 'vc-version-diff "vc" "\ | |
8656 For FILE, report diffs between two stored versions REL1 and REL2 of it. | |
8657 If FILE is a directory, generate diffs between versions for all registered | |
8658 files in or below it." t nil) | |
8659 | |
8660 (autoload 'vc-version-other-window "vc" "\ | |
8661 Visit version REV of the current buffer in another window. | |
8662 If the current buffer is named `F', the version is named `F.~REV~'. | |
8663 If `F.~REV~' already exists, it is used instead of being re-created." t nil) | |
8664 | |
8665 (autoload 'vc-insert-headers "vc" "\ | |
8666 Insert headers in a file for use with your version-control system. | |
8667 Headers desired are inserted at the start of the buffer, and are pulled from | |
8668 the variable `vc-header-alist'." t nil) | |
8669 | |
8670 (autoload 'vc-directory "vc" "\ | |
8671 Show version-control status of all files in the directory DIR. | |
8672 If the second argument VERBOSE is non-nil, show all files; | |
8673 otherwise show only files that current locked in the version control system. | |
8674 Interactively, supply a prefix arg to make VERBOSE non-nil. | |
8675 | |
8676 If the optional third argument NESTED is non-nil, | |
8677 scan the entire tree of subdirectories of the current directory." t nil) | |
8678 | |
8679 (autoload 'vc-create-snapshot "vc" "\ | |
8680 Make a snapshot called NAME. | |
8681 The snapshot is made from all registered files at or below the current | |
8682 directory. For each file, the version level of its latest | |
8683 version becomes part of the named configuration." t nil) | |
8684 | |
8685 (autoload 'vc-retrieve-snapshot "vc" "\ | |
8686 Retrieve the snapshot called NAME. | |
8687 This function fails if any files are locked at or below the current directory | |
8688 Otherwise, all registered files are checked out (unlocked) at their version | |
8689 levels in the snapshot." t nil) | |
8690 | |
8691 (autoload 'vc-print-log "vc" "\ | |
8692 List the change log of the current buffer in a window." t nil) | |
8693 | |
8694 (autoload 'vc-revert-buffer "vc" "\ | |
8695 Revert the current buffer's file back to the latest checked-in version. | |
8696 This asks for confirmation if the buffer contents are not identical | |
8697 to that version. | |
8698 If the back-end is CVS, this will give you the most recent revision of | |
8699 the file on the branch you are editing." t nil) | |
8700 | |
8701 (autoload 'vc-cancel-version "vc" "\ | |
8702 Get rid of most recently checked in version of this file. | |
8703 A prefix argument means do not revert the buffer afterwards." t nil) | |
8704 | |
8705 (autoload 'vc-rename-file "vc" "\ | |
8706 Rename file OLD to NEW, and rename its master file likewise." t nil) | |
8707 | |
8708 (autoload 'vc-update-change-log "vc" "\ | |
8709 Find change log file and add entries from recent RCS logs. | |
8710 The mark is left at the end of the text prepended to the change log. | |
8711 With prefix arg of C-u, only find log entries for the current buffer's file. | |
8712 With any numeric prefix arg, find log entries for all files currently visited. | |
8713 Otherwise, find log entries for all registered files in the default directory. | |
8714 From a program, any arguments are passed to the `rcs2log' script." t nil) | |
8715 | |
8716 ;;;*** | |
8717 | |
8718 ;;;### (autoloads nil "webster-ucb" "packages/webster-ucb.el" (12547 2446)) | |
8719 ;;; Generated autoloads from packages/webster-ucb.el | |
8720 | |
8721 ;;;### (autoloads (webster-spell webster-endings webster) "webster" "packages/webster.el" (12547 2449)) | |
8722 ;;; Generated autoloads from packages/webster.el | |
8723 | |
8724 (autoload 'webster "webster" "\ | |
8725 Look up a word in the Webster's dictionary. | |
8726 Open a network login connection to a webster host if necessary. | |
8727 Communication with host is recorded in a buffer *webster*." t nil) | |
8728 | |
8729 (autoload 'webster-endings "webster" "\ | |
8730 Look up endings for a word in the Webster's dictionary. | |
8731 Open a network login connection to a webster host if necessary. | |
8732 Communication with host is recorded in a buffer *webster*." t nil) | |
8733 | |
8734 (autoload 'webster-spell "webster" "\ | |
8735 Look spelling for a word in the Webster's dictionary. | |
8736 Open a network login connection to a webster host if necessary. | |
8737 Communication with host is recorded in a buffer *webster*." t nil) | |
8738 | |
8739 ;;;*** | |
8740 | |
8741 ;;;### (autoloads (run-scheme) "xscheme" "packages/xscheme.el" (12547 2448)) | |
8742 ;;; Generated autoloads from packages/xscheme.el | |
8743 | |
8744 (defvar scheme-program-name "scheme" "\ | |
8745 *Program invoked by the `run-scheme' command.") | |
8746 | |
8747 (defvar scheme-band-name nil "\ | |
8748 *Band loaded by the `run-scheme' command.") | |
8749 | |
8750 (defvar scheme-program-arguments nil "\ | |
8751 *Arguments passed to the Scheme program by the `run-scheme' command.") | |
8752 | |
8753 (autoload 'run-scheme "xscheme" "\ | |
8754 Run an inferior Scheme process. | |
8755 Output goes to the buffer `*scheme*'. | |
8756 With argument, asks for a command line." t nil) | |
8757 | |
8758 ;;;*** | |
8759 | |
8760 ;;;### (autoloads nil "compile-all" "pcl-cvs/compile-all.el" (12376 19549)) | |
8761 ;;; Generated autoloads from pcl-cvs/compile-all.el | |
8762 | |
8763 ;;;*** | |
8764 | |
8765 ;;;### (autoloads nil "cookie" "pcl-cvs/cookie.el" (12675 57120)) | |
8766 ;;; Generated autoloads from pcl-cvs/cookie.el | |
8767 | |
8768 ;;;*** | |
8769 | |
8770 ;;;### (autoloads nil "dll-debug" "pcl-cvs/dll-debug.el" (12675 57121)) | |
8771 ;;; Generated autoloads from pcl-cvs/dll-debug.el | |
8772 | |
8773 ;;;*** | |
8774 | |
8775 ;;;### (autoloads nil "dll" "pcl-cvs/dll.el" (12675 57122)) | |
8776 ;;; Generated autoloads from pcl-cvs/dll.el | |
8777 | |
8778 ;;;*** | |
8779 | |
8780 ;;;### (autoloads nil "elib-node" "pcl-cvs/elib-node.el" (12675 57122)) | |
8781 ;;; Generated autoloads from pcl-cvs/elib-node.el | |
8782 | |
8783 ;;;*** | |
8784 | |
8785 ;;;### (autoloads nil "pcl-cvs-lucid" "pcl-cvs/pcl-cvs-lucid.el" (12675 57126)) | |
8786 ;;; Generated autoloads from pcl-cvs/pcl-cvs-lucid.el | |
8787 | |
8788 ;;;*** | |
8789 | |
8790 ;;;### (autoloads nil "pcl-cvs-startup" "pcl-cvs/pcl-cvs-startup.el" (12675 57121)) | |
8791 ;;; Generated autoloads from pcl-cvs/pcl-cvs-startup.el | |
8792 | |
8793 ;;;*** | |
8794 | |
8795 ;;;### (autoloads (pcl-cvs-fontify) "pcl-cvs-xemacs" "pcl-cvs/pcl-cvs-xemacs.el" (12686 31800)) | |
8796 ;;; Generated autoloads from pcl-cvs/pcl-cvs-xemacs.el | |
8797 | |
8798 (autoload 'pcl-cvs-fontify "pcl-cvs-xemacs" nil nil nil) | |
8799 | |
8800 ;;;*** | |
8801 | |
8802 ;;;### (autoloads (cvs-update-other-window cvs-update) "pcl-cvs" "pcl-cvs/pcl-cvs.el" (12686 31728)) | |
8803 ;;; Generated autoloads from pcl-cvs/pcl-cvs.el | |
8804 | |
8805 (autoload 'cvs-update "pcl-cvs" "\ | |
8806 Run a 'cvs update' in the current working directory. Feed the | |
8807 output to a *cvs* buffer and run cvs-mode on it. | |
8808 If optional prefix argument LOCAL is non-nil, 'cvs update -l' is run." t nil) | |
8809 | |
8810 (autoload 'cvs-update-other-window "pcl-cvs" "\ | |
8811 Run a 'cvs update' in the current working directory. Feed the | |
8812 output to a *cvs* buffer, display it in the other window, and run | |
8813 cvs-mode on it. | |
8814 | |
8815 If optional prefix argument LOCAL is non-nil, 'cvs update -l' is run." t nil) | |
8816 | |
8817 ;;;*** | |
8818 | |
8819 ;;;### (autoloads nil "string" "pcl-cvs/string.el" (12675 57127)) | |
8820 ;;; Generated autoloads from pcl-cvs/string.el | |
8821 | |
8822 ;;;*** | |
8823 | |
8824 ;;;### (autoloads (about-xemacs) "about" "prim/about.el" (12748 7624)) | |
8825 ;;; Generated autoloads from prim/about.el | |
8826 | |
8827 (autoload 'about-xemacs "about" nil t nil) | |
8828 | |
8829 ;;;*** | |
8830 | |
8831 ;;;### (autoloads (all-hail-emacs all-hail-xemacs praise-be-unto-emacs praise-be-unto-xemacs) "advocacy" "prim/advocacy.el" (12740 25220)) | |
8832 ;;; Generated autoloads from prim/advocacy.el | |
8833 | |
8834 (defvar xemacs-praise-sound-file "sounds/im_so_happy.au" "\ | |
8835 The name of an audio file containing something to play | |
8836 when praising XEmacs") | |
8837 | |
8838 (defvar xemacs-praise-message "All Hail XEmacs!\n" "\ | |
8839 What to praise XEmacs with") | |
8840 | |
8841 (autoload 'praise-be-unto-xemacs "advocacy" "\ | |
8842 All Hail XEmacs!" t nil) | |
8843 | |
8844 (autoload 'praise-be-unto-emacs "advocacy" nil t nil) | |
8845 | |
8846 (autoload 'all-hail-xemacs "advocacy" "\ | |
8847 All Hail XEmacs!" t nil) | |
8848 | |
8849 (autoload 'all-hail-emacs "advocacy" nil t nil) | |
8850 | |
8851 ;;;*** | |
8852 | |
8853 ;;;### (autoloads nil "backquote" "prim/backquote.el" (12546 50509)) | |
8854 ;;; Generated autoloads from prim/backquote.el | |
8855 | |
8856 ;;;*** | |
8857 | |
8858 ;;;### (autoloads nil "buffer" "prim/buffer.el" (12639 8641)) | |
8859 ;;; Generated autoloads from prim/buffer.el | |
8860 | |
8861 ;;;*** | |
8862 | |
8863 ;;;### (autoloads (describe-buffer-case-table) "case-table" "prim/case-table.el" (12648 18583)) | |
8864 ;;; Generated autoloads from prim/case-table.el | |
8865 | |
8866 (autoload 'describe-buffer-case-table "case-table" "\ | |
8867 Describe the case table of the current buffer." t nil) | |
8868 | |
8869 ;;;*** | |
8870 | |
8871 ;;;### (autoloads nil "cmdloop" "prim/cmdloop.el" (12648 18587)) | |
8872 ;;; Generated autoloads from prim/cmdloop.el | |
8873 | |
8874 ;;;*** | |
8875 | |
8876 ;;;### (autoloads nil "cmdloop1" "prim/cmdloop1.el" (12546 50501)) | |
8877 ;;; Generated autoloads from prim/cmdloop1.el | |
8878 | |
8879 ;;;*** | |
8880 | |
8881 ;;;### (autoloads nil "console" "prim/console.el" (12546 50529)) | |
8882 ;;; Generated autoloads from prim/console.el | |
8883 | |
8884 ;;;### (autoloads nil "curmudgeon" "prim/curmudgeon.el" (12648 454)) | |
8885 ;;; Generated autoloads from prim/curmudgeon.el | |
8886 | |
8887 ;;;### (autoloads (cancel-debug-on-entry debug-on-entry debug) "debug" "prim/debug.el" (12639 8609)) | |
8888 ;;; Generated autoloads from prim/debug.el | |
8889 | |
8890 (autoload 'debug "debug" "\ | |
8891 Enter debugger. To return, type \\<debugger-mode-map>`\\[debugger-continue]'. | |
8892 Arguments are mainly for use when this is called | |
8893 from the internals of the evaluator. | |
8894 You may call with no args, or you may | |
8895 pass nil as the first arg and any other args you like. | |
8896 In that case, the list of args after the first will | |
8897 be printed into the backtrace buffer." t nil) | |
8898 | |
8899 (autoload 'debug-on-entry "debug" "\ | |
8900 Request FUNCTION to invoke debugger each time it is called. | |
8901 If you tell the debugger to continue, FUNCTION's execution proceeds. | |
8902 This works by modifying the definition of FUNCTION, | |
8903 which must be written in Lisp, not predefined. | |
8904 Use \\[cancel-debug-on-entry] to cancel the effect of this command. | |
8905 Redefining FUNCTION also cancels it." t nil) | |
8906 | |
8907 (autoload 'cancel-debug-on-entry "debug" "\ | |
8908 Undo effect of \\[debug-on-entry] on FUNCTION. | |
8909 If argument is nil or an empty string, cancel for all functions." t nil) | |
8910 | |
8911 ;;;*** | |
8912 | |
8913 ;;;### (autoloads nil "device" "prim/device.el" (12573 6019)) | |
8914 ;;; Generated autoloads from prim/device.el | |
8915 | |
8916 ;;;*** | |
8917 | |
8918 ;;;### (autoloads nil "dialog" "prim/dialog.el" (12573 6368)) | |
8919 ;;; Generated autoloads from prim/dialog.el | |
8920 | |
8921 ;;;### (autoloads (standard-display-european standard-display-underline standard-display-graphic standard-display-g1 standard-display-ascii standard-display-default standard-display-8bit make-display-table describe-current-display-table) "disp-table" "prim/disp-table.el" (12648 18591)) | |
8922 ;;; Generated autoloads from prim/disp-table.el | |
8923 | |
8924 (autoload 'describe-current-display-table "disp-table" "\ | |
8925 Describe the display table in use in the selected window and buffer." t nil) | |
8926 | |
8927 (autoload 'make-display-table "disp-table" "\ | |
8928 Return a new, empty display table." nil nil) | |
8929 | |
8930 (autoload 'standard-display-8bit "disp-table" "\ | |
8931 Display characters in the range L to H literally." nil nil) | |
8932 | |
8933 (autoload 'standard-display-default "disp-table" "\ | |
8934 Display characters in the range L to H using the default notation." nil nil) | |
8935 | |
8936 (autoload 'standard-display-ascii "disp-table" "\ | |
8937 Display character C using printable string S." nil nil) | |
8938 | |
8939 (autoload 'standard-display-g1 "disp-table" "\ | |
8940 Display character C as character SC in the g1 character set. | |
8941 This function assumes that your terminal uses the SO/SI characters; | |
8942 it is meaningless for an X frame." nil nil) | |
8943 | |
8944 (autoload 'standard-display-graphic "disp-table" "\ | |
8945 Display character C as character GC in graphics character set. | |
8946 This function assumes VT100-compatible escapes; it is meaningless for an | |
8947 X frame." nil nil) | |
8948 | |
8949 (autoload 'standard-display-underline "disp-table" "\ | |
8950 Display character C as character UC plus underlining." nil nil) | |
8951 | |
8952 (autoload 'standard-display-european "disp-table" "\ | |
8953 Toggle display of European characters encoded with ISO 8859. | |
8954 When enabled, characters in the range of 160 to 255 display not | |
8955 as octal escapes, but as accented characters. | |
8956 With prefix argument, enable European character display iff arg is positive." t nil) | |
8957 | |
8958 ;;;*** | |
8959 | |
8960 ;;;### (autoloads (setenv) "env" "prim/env.el" (12546 50503)) | |
8961 ;;; Generated autoloads from prim/env.el | |
8962 | |
8963 (autoload 'setenv "env" "\ | |
8964 Set the value of the environment variable named VARIABLE to VALUE. | |
8965 VARIABLE should be a string. VALUE is optional; if not provided or is | |
8966 `nil', the environment variable VARIABLE will be removed. | |
8967 | |
8968 Interactively, a prefix argument means to unset the variable. | |
8969 Interactively, the current value (if any) of the variable | |
8970 appears at the front of the history list when you type in the new value. | |
8971 | |
8972 This function works by modifying `process-environment'." t nil) | |
8973 | |
8974 ;;;*** | |
8975 | |
8976 ;;;### (autoloads nil "events" "prim/events.el" (12727 30162)) | |
8977 ;;; Generated autoloads from prim/events.el | |
8978 | |
8979 ;;;*** | |
8980 | |
8981 ;;;### (autoloads nil "extents" "prim/extents.el" (12639 8620)) | |
8982 ;;; Generated autoloads from prim/extents.el | |
8983 | |
8984 ;;;*** | |
8985 | |
8986 ;;;### (autoloads nil "faces" "prim/faces.el" (12743 11619)) | |
8987 ;;; Generated autoloads from prim/faces.el | |
8988 | |
8989 ;;;*** | |
8990 | |
8991 ;;;### (autoloads nil "files" "prim/files.el" (12743 11613)) | |
8992 ;;; Generated autoloads from prim/files.el | |
8993 | |
8994 ;;;*** | |
8995 | |
8996 ;;;### (autoloads nil "fill" "prim/fill.el" (12528 23894)) | |
8997 ;;; Generated autoloads from prim/fill.el | |
8998 | |
8999 ;;;### (autoloads nil "float-sup" "prim/float-sup.el" (12546 50479)) | |
9000 ;;; Generated autoloads from prim/float-sup.el | |
9001 | |
9002 ;;;*** | |
9003 | |
9004 ;;;### (autoloads nil "format" "prim/format.el" (12648 18601)) | |
9005 ;;; Generated autoloads from prim/format.el | |
9006 | |
9007 ;;;*** | |
9008 | |
9009 ;;;### (autoloads nil "frame" "prim/frame.el" (12741 25956)) | |
9010 ;;; Generated autoloads from prim/frame.el | |
9011 | |
9012 ;;;*** | |
9013 | |
9014 ;;;### (autoloads nil "glyphs" "prim/glyphs.el" (12740 25218)) | |
9015 ;;; Generated autoloads from prim/glyphs.el | |
9016 | |
9017 ;;;### (autoloads nil "gui" "prim/gui.el" (12648 18603)) | |
9018 ;;; Generated autoloads from prim/gui.el | |
9019 | |
9020 ;;;*** | |
9021 | |
9022 ;;;### (autoloads nil "help" "prim/help.el" (12747 13261)) | |
9023 ;;; Generated autoloads from prim/help.el | |
9024 | |
9025 ;;;### (autoloads nil "inc-vers" "prim/inc-vers.el" (12546 50487)) | |
9026 ;;; Generated autoloads from prim/inc-vers.el | |
9027 | |
9028 ;;;### (autoloads nil "indent" "prim/indent.el" (12648 18582)) | |
9029 ;;; Generated autoloads from prim/indent.el | |
9030 | |
9031 ;;;*** | |
9032 | |
9033 ;;;### (autoloads nil "isearch-mode" "prim/isearch-mode.el" (12698 33552)) | |
9034 ;;; Generated autoloads from prim/isearch-mode.el | |
9035 | |
9036 ;;;### (autoloads nil "itimer" "prim/itimer.el" (12546 50498)) | |
9037 ;;; Generated autoloads from prim/itimer.el | |
9038 | |
9039 ;;;*** | |
9040 | |
9041 ;;;### (autoloads nil "keydefs" "prim/keydefs.el" (12639 8614)) | |
9042 ;;; Generated autoloads from prim/keydefs.el | |
9043 | |
9044 ;;;*** | |
9045 | |
9046 ;;;### (autoloads nil "keymap" "prim/keymap.el" (12558 60933)) | |
9047 ;;; Generated autoloads from prim/keymap.el | |
9048 | |
9049 ;;;*** | |
9050 | |
9051 ;;;### (autoloads nil "lisp" "prim/lisp.el" (12546 50478)) | |
9052 ;;; Generated autoloads from prim/lisp.el | |
9053 | |
9054 ;;;*** | |
9055 | |
9056 ;;;### (autoloads nil "loaddefs" "prim/loaddefs.el" (12748 8002)) | |
9057 ;;; Generated autoloads from prim/loaddefs.el | |
9058 | |
9059 ;;;*** | |
9060 | |
9061 ;;;### (autoloads nil "loadup-el" "prim/loadup-el.el" (12639 8618)) | |
9062 ;;; Generated autoloads from prim/loadup-el.el | |
9063 | |
9064 ;;;### (autoloads nil "loadup" "prim/loadup.el" (12728 8250)) | |
9065 ;;; Generated autoloads from prim/loadup.el | |
9066 | |
9067 ;;;### (autoloads (apply-macro-to-region-lines kbd-macro-query insert-kbd-macro name-last-kbd-macro) "macros" "prim/macros.el" (12546 50477)) | |
9068 ;;; Generated autoloads from prim/macros.el | |
9069 | |
9070 (autoload 'name-last-kbd-macro "macros" "\ | |
9071 Assign a name to the last keyboard macro defined. | |
9072 Argument SYMBOL is the name to define. | |
9073 The symbol's function definition becomes the keyboard macro string. | |
9074 Such a \"function\" cannot be called from Lisp, but it is a valid | |
9075 editor command." t nil) | |
9076 | |
9077 (autoload 'insert-kbd-macro "macros" "\ | |
9078 Insert in buffer the definition of kbd macro NAME, as Lisp code. | |
9079 Optional second argument KEYS means also record the keys it is on | |
9080 \(this is the prefix argument, when calling interactively). | |
9081 | |
9082 This Lisp code will, when executed, define the kbd macro with the | |
9083 same definition it has now. If you say to record the keys, | |
9084 the Lisp code will also rebind those keys to the macro. | |
9085 Only global key bindings are recorded since executing this Lisp code | |
9086 always makes global bindings. | |
9087 | |
9088 To save a kbd macro, visit a file of Lisp code such as your `~/.emacs', | |
9089 use this command, and then save the file." t nil) | |
9090 | |
9091 (autoload 'kbd-macro-query "macros" "\ | |
9092 Query user during kbd macro execution. | |
9093 With prefix argument, enters recursive edit, | |
9094 reading keyboard commands even within a kbd macro. | |
9095 You can give different commands each time the macro executes. | |
9096 Without prefix argument, asks whether to continue running the macro. | |
9097 Your options are: \\<query-replace-map> | |
9098 \\[act] Finish this iteration normally and continue with the next. | |
9099 \\[skip] Skip the rest of this iteration, and start the next. | |
9100 \\[exit] Stop the macro entirely right now. | |
9101 \\[recenter] Redisplay the frame, then ask again. | |
9102 \\[edit] Enter recursive edit; ask again when you exit from that." t nil) | |
9103 | |
9104 (autoload 'apply-macro-to-region-lines "macros" "\ | |
9105 For each complete line between point and mark, move to the beginning | |
9106 of the line, and run the last keyboard macro. | |
9107 | |
9108 When called from lisp, this function takes two arguments TOP and | |
9109 BOTTOM, describing the current region. TOP must be before BOTTOM. | |
9110 The optional third argument MACRO specifies a keyboard macro to | |
9111 execute. | |
9112 | |
9113 This is useful for quoting or unquoting included text, adding and | |
9114 removing comments, or producing tables where the entries are regular. | |
9115 | |
9116 For example, in Usenet articles, sections of text quoted from another | |
9117 author are indented, or have each line start with `>'. To quote a | |
9118 section of text, define a keyboard macro which inserts `>', put point | |
9119 and mark at opposite ends of the quoted section, and use | |
9120 `\\[apply-macro-to-region-lines]' to mark the entire section. | |
9121 | |
9122 Suppose you wanted to build a keyword table in C where each entry | |
9123 looked like this: | |
9124 | |
9125 { \"foo\", foo_data, foo_function }, | |
9126 { \"bar\", bar_data, bar_function }, | |
9127 { \"baz\", baz_data, baz_function }, | |
9128 | |
9129 You could enter the names in this format: | |
9130 | |
9131 foo | |
9132 bar | |
9133 baz | |
9134 | |
9135 and write a macro to massage a word into a table entry: | |
9136 | |
9137 \\C-x ( | |
9138 \\M-d { \"\\C-y\", \\C-y_data, \\C-y_function }, | |
9139 \\C-x ) | |
9140 | |
9141 and then select the region of un-tablified names and use | |
9142 `\\[apply-macro-to-region-lines]' to build the table from the names. | |
9143 " t nil) | |
9144 | |
9145 ;;;*** | |
9146 | |
9147 ;;;### (autoloads nil "menubar" "prim/menubar.el" (12648 18588)) | |
9148 ;;; Generated autoloads from prim/menubar.el | |
9149 | |
9150 ;;;*** | |
9151 | |
9152 ;;;### (autoloads nil "minibuf" "prim/minibuf.el" (12740 25211)) | |
9153 ;;; Generated autoloads from prim/minibuf.el | |
9154 | |
9155 ;;;*** | |
9156 | |
9157 ;;;### (autoloads nil "misc" "prim/misc.el" (12558 60927)) | |
9158 ;;; Generated autoloads from prim/misc.el | |
9159 | |
9160 ;;;### (autoloads nil "mode-motion" "prim/mode-motion.el" (12657 40715)) | |
9161 ;;; Generated autoloads from prim/mode-motion.el | |
9162 | |
9163 ;;;*** | |
9164 | |
9165 ;;;### (autoloads nil "modeline" "prim/modeline.el" (12730 62103)) | |
9166 ;;; Generated autoloads from prim/modeline.el | |
9167 | |
9168 ;;;*** | |
9169 | |
9170 ;;;### (autoloads nil "mouse" "prim/mouse.el" (12744 55115)) | |
9171 ;;; Generated autoloads from prim/mouse.el | |
9172 | |
9173 ;;;### (autoloads (disable-command enable-command disabled-command-hook) "novice" "prim/novice.el" (12546 50489)) | |
9174 ;;; Generated autoloads from prim/novice.el | |
9175 | |
9176 (autoload 'disabled-command-hook "novice" nil nil nil) | |
9177 | |
9178 (autoload 'enable-command "novice" "\ | |
9179 Allow COMMAND to be executed without special confirmation from now on. | |
9180 The user's .emacs file is altered so that this will apply | |
9181 to future sessions." t nil) | |
9182 | |
9183 (autoload 'disable-command "novice" "\ | |
9184 Require special confirmation to execute COMMAND from now on. | |
9185 The user's .emacs file is altered so that this will apply | |
9186 to future sessions." t nil) | |
9187 | |
9188 ;;;*** | |
9189 | |
9190 ;;;### (autoloads nil "objects" "prim/objects.el" (12573 6927)) | |
9191 ;;; Generated autoloads from prim/objects.el | |
9192 | |
9193 ;;;*** | |
9194 | |
9195 ;;;### (autoloads nil "obsolete" "prim/obsolete.el" (12698 33559)) | |
9196 ;;; Generated autoloads from prim/obsolete.el | |
9197 | |
9198 ;;;*** | |
9199 | |
9200 ;;;### (autoloads (edit-options list-options) "options" "prim/options.el" (12546 50481)) | |
9201 ;;; Generated autoloads from prim/options.el | |
9202 | |
9203 (autoload 'list-options "options" "\ | |
9204 Display a list of XEmacs user options, with values and documentation." t nil) | |
9205 | |
9206 (autoload 'edit-options "options" "\ | |
9207 Edit a list of XEmacs user option values. | |
9208 Selects a buffer containing such a list, | |
9209 in which there are commands to set the option values. | |
9210 Type \\[describe-mode] in that buffer for a list of commands." t nil) | |
9211 | |
9212 ;;;*** | |
9213 | |
9214 ;;;### (autoloads nil "page" "prim/page.el" (12546 50475)) | |
9215 ;;; Generated autoloads from prim/page.el | |
9216 | |
9217 ;;;*** | |
9218 | |
9219 ;;;### (autoloads nil "paragraphs" "prim/paragraphs.el" (12558 60931)) | |
9220 ;;; Generated autoloads from prim/paragraphs.el | |
9221 | |
9222 ;;;*** | |
9223 | |
9224 ;;;### (autoloads nil "process" "prim/process.el" (12727 30162)) | |
9225 ;;; Generated autoloads from prim/process.el | |
9226 | |
9227 ;;;### (autoloads nil "profile" "prim/profile.el" (12607 29210)) | |
9228 ;;; Generated autoloads from prim/profile.el | |
9229 | |
9230 ;;;*** | |
9231 | |
9232 ;;;### (autoloads (clear-rectangle string-rectangle open-rectangle insert-rectangle yank-rectangle kill-rectangle extract-rectangle delete-extract-rectangle delete-rectangle) "rect" "prim/rect.el" (12546 50488)) | |
9233 ;;; Generated autoloads from prim/rect.el | |
9234 | |
9235 (autoload 'delete-rectangle "rect" "\ | |
9236 Delete (don't save) text in rectangle with point and mark as corners. | |
9237 The same range of columns is deleted in each line | |
9238 starting with the line where the region begins | |
9239 and ending with the line where the region ends." t nil) | |
9240 | |
9241 (autoload 'delete-extract-rectangle "rect" "\ | |
9242 Delete contents of rectangle and return it as a list of strings. | |
9243 Arguments START and END are the corners of the rectangle. | |
9244 The value is list of strings, one for each line of the rectangle." nil nil) | |
9245 | |
9246 (autoload 'extract-rectangle "rect" "\ | |
9247 Return contents of rectangle with corners at START and END. | |
9248 Value is list of strings, one for each line of the rectangle." nil nil) | |
9249 | |
9250 (defvar killed-rectangle nil "\ | |
9251 Rectangle for yank-rectangle to insert.") | |
9252 | |
9253 (autoload 'kill-rectangle "rect" "\ | |
9254 Delete rectangle with corners at point and mark; save as last killed one. | |
9255 Calling from program, supply two args START and END, buffer positions. | |
9256 But in programs you might prefer to use `delete-extract-rectangle'." t nil) | |
9257 | |
9258 (autoload 'yank-rectangle "rect" "\ | |
9259 Yank the last killed rectangle with upper left corner at point." t nil) | |
9260 | |
9261 (autoload 'insert-rectangle "rect" "\ | |
9262 Insert text of RECTANGLE with upper left corner at point. | |
9263 RECTANGLE's first line is inserted at point, | |
9264 its second line is inserted at a point vertically under point, etc. | |
9265 RECTANGLE should be a list of strings. | |
9266 After this command, the mark is at the upper left corner | |
9267 and point is at the lower right corner." nil nil) | |
9268 | |
9269 (autoload 'open-rectangle "rect" "\ | |
9270 Blank out rectangle with corners at point and mark, shifting text right. | |
9271 The text previously in the region is not overwritten by the blanks, | |
9272 but instead winds up to the right of the rectangle." t nil) | |
9273 | |
9274 (autoload 'string-rectangle "rect" "\ | |
9275 Insert STRING on each line of the region-rectangle, shifting text right. | |
9276 The left edge of the rectangle specifies the column for insertion. | |
9277 This command does not delete or overwrite any existing text. | |
9278 | |
9279 Called from a program, takes three args; START, END and STRING." t nil) | |
9280 | |
9281 (autoload 'clear-rectangle "rect" "\ | |
9282 Blank out rectangle with corners at point and mark. | |
9283 The text previously in the region is overwritten by the blanks. | |
9284 When called from a program, requires two args which specify the corners." t nil) | |
9285 | |
9286 ;;;*** | |
9287 | |
9288 ;;;### (autoloads nil "register" "prim/register.el" (12540 24673)) | |
9289 ;;; Generated autoloads from prim/register.el | |
9290 | |
9291 ;;;*** | |
9292 | |
9293 ;;;### (autoloads nil "replace" "prim/replace.el" (12740 25219)) | |
9294 ;;; Generated autoloads from prim/replace.el | |
9295 | |
9296 ;;;*** | |
9297 | |
9298 ;;;### (autoloads (reposition-window) "reposition" "prim/reposition.el" (12546 50489)) | |
9299 ;;; Generated autoloads from prim/reposition.el | |
9300 | |
9301 (autoload 'reposition-window "reposition" "\ | |
9302 Make the current definition and/or comment visible. | |
9303 Further invocations move it to the top of the window or toggle the | |
9304 visibility of comments that precede it. | |
9305 Point is left unchanged unless prefix ARG is supplied. | |
9306 If the definition is fully onscreen, it is moved to the top of the | |
9307 window. If it is partly offscreen, the window is scrolled to get the | |
9308 definition (or as much as will fit) onscreen, unless point is in a comment | |
9309 which is also partly offscreen, in which case the scrolling attempts to get | |
9310 as much of the comment onscreen as possible. | |
9311 Initially `reposition-window' attempts to make both the definition and | |
9312 preceding comments visible. Further invocations toggle the visibility of | |
9313 the comment lines. | |
9314 If ARG is non-nil, point may move in order to make the whole defun | |
9315 visible (if only part could otherwise be made so), to make the defun line | |
9316 visible (if point is in code and it could not be made so, or if only | |
9317 comments, including the first comment line, are visible), or to make the | |
9318 first comment line visible (if point is in a comment)." t nil) | |
9319 | |
9320 ;;;*** | |
9321 | |
9322 ;;;### (autoloads nil "scrollbar" "prim/scrollbar.el" (12546 50512)) | |
9323 ;;; Generated autoloads from prim/scrollbar.el | |
9324 | |
9325 ;;;*** | |
9326 | |
9327 ;;;### (autoloads nil "simple" "prim/simple.el" (12690 2179)) | |
9328 ;;; Generated autoloads from prim/simple.el | |
9329 | |
9330 ;;;### (autoloads (reverse-region sort-columns sort-regexp-fields sort-fields sort-float-fields sort-numeric-fields sort-pages sort-paragraphs sort-lines sort-subr) "sort" "prim/sort.el" (12546 50495)) | |
9331 ;;; Generated autoloads from prim/sort.el | |
9332 | |
9333 (autoload 'sort-subr "sort" "\ | |
9334 General text sorting routine to divide buffer into records and sort them. | |
9335 Arguments are REVERSE NEXTRECFUN ENDRECFUN &optional STARTKEYFUN ENDKEYFUN. | |
9336 | |
9337 We divide the accessible portion of the buffer into disjoint pieces | |
9338 called sort records. A portion of each sort record (perhaps all of | |
9339 it) is designated as the sort key. The records are rearranged in the | |
9340 buffer in order by their sort keys. The records may or may not be | |
9341 contiguous. | |
9342 | |
9343 Usually the records are rearranged in order of ascending sort key. | |
9344 If REVERSE is non-nil, they are rearranged in order of descending sort key. | |
9345 | |
9346 The next four arguments are functions to be called to move point | |
9347 across a sort record. They will be called many times from within sort-subr. | |
9348 | |
9349 NEXTRECFUN is called with point at the end of the previous record. | |
9350 It moves point to the start of the next record. | |
9351 It should move point to the end of the buffer if there are no more records. | |
9352 The first record is assumed to start at the position of point when sort-subr | |
9353 is called. | |
9354 | |
9355 ENDRECFUN is called with point within the record. | |
9356 It should move point to the end of the record. | |
9357 | |
9358 STARTKEYFUN moves from the start of the record to the start of the key. | |
9359 It may return either a non-nil value to be used as the key, or | |
9360 else the key is the substring between the values of point after | |
9361 STARTKEYFUN and ENDKEYFUN are called. If STARTKEYFUN is nil, the key | |
9362 starts at the beginning of the record. | |
9363 | |
9364 ENDKEYFUN moves from the start of the sort key to the end of the sort key. | |
9365 ENDKEYFUN may be nil if STARTKEYFUN returns a value or if it would be the | |
9366 same as ENDRECFUN." nil nil) | |
9367 | |
9368 (autoload 'sort-lines "sort" "\ | |
9369 Sort lines in region alphabetically; argument means descending order. | |
9370 Called from a program, there are three arguments: | |
9371 REVERSE (non-nil means reverse order), BEG and END (region to sort)." t nil) | |
9372 | |
9373 (autoload 'sort-paragraphs "sort" "\ | |
9374 Sort paragraphs in region alphabetically; argument means descending order. | |
9375 Called from a program, there are three arguments: | |
9376 REVERSE (non-nil means reverse order), BEG and END (region to sort)." t nil) | |
9377 | |
9378 (autoload 'sort-pages "sort" "\ | |
9379 Sort pages in region alphabetically; argument means descending order. | |
9380 Called from a program, there are three arguments: | |
9381 REVERSE (non-nil means reverse order), BEG and END (region to sort)." t nil) | |
9382 | |
9383 (autoload 'sort-numeric-fields "sort" "\ | |
9384 Sort lines in region numerically by the ARGth field of each line. | |
9385 Fields are separated by whitespace and numbered from 1 up. | |
9386 Specified field must contain a number in each line of the region. | |
9387 With a negative arg, sorts by the ARGth field counted from the right. | |
9388 Called from a program, there are three arguments: | |
9389 FIELD, BEG and END. BEG and END specify region to sort. | |
9390 If you want to sort floating-point numbers, try `sort-float-fields'." t nil) | |
9391 | |
9392 (autoload 'sort-float-fields "sort" "\ | |
9393 Sort lines in region numerically by the ARGth field of each line. | |
9394 Fields are separated by whitespace and numbered from 1 up. Specified field | |
9395 must contain a floating point number in each line of the region. With a | |
9396 negative arg, sorts by the ARGth field counted from the right. Called from a | |
9397 program, there are three arguments: FIELD, BEG and END. BEG and END specify | |
9398 region to sort." t nil) | |
9399 | |
9400 (autoload 'sort-fields "sort" "\ | |
9401 Sort lines in region lexicographically by the ARGth field of each line. | |
9402 Fields are separated by whitespace and numbered from 1 up. | |
9403 With a negative arg, sorts by the ARGth field counted from the right. | |
9404 Called from a program, there are three arguments: | |
9405 FIELD, BEG and END. BEG and END specify region to sort." t nil) | |
9406 | |
9407 (autoload 'sort-regexp-fields "sort" "\ | |
9408 Sort the region lexicographically as specified by RECORD-REGEXP and KEY. | |
9409 RECORD-REGEXP specifies the textual units which should be sorted. | |
9410 For example, to sort lines RECORD-REGEXP would be \"^.*$\" | |
9411 KEY specifies the part of each record (ie each match for RECORD-REGEXP) | |
9412 is to be used for sorting. | |
9413 If it is \"\\\\digit\" then the digit'th \"\\\\(...\\\\)\" match field from | |
9414 RECORD-REGEXP is used. | |
9415 If it is \"\\\\&\" then the whole record is used. | |
9416 Otherwise, it is a regular-expression for which to search within the record. | |
9417 If a match for KEY is not found within a record then that record is ignored. | |
9418 | |
9419 With a negative prefix arg sorts in reverse order. | |
9420 | |
9421 For example: to sort lines in the region by the first word on each line | |
9422 starting with the letter \"f\", | |
9423 RECORD-REGEXP would be \"^.*$\" and KEY would be \"\\\\=\\<f\\\\w*\\\\>\"" t nil) | |
9424 | |
9425 (autoload 'sort-columns "sort" "\ | |
9426 Sort lines in region alphabetically by a certain range of columns. | |
9427 For the purpose of this command, the region includes | |
9428 the entire line that point is in and the entire line the mark is in. | |
9429 The column positions of point and mark bound the range of columns to sort on. | |
9430 A prefix argument means sort into reverse order. | |
9431 | |
9432 Note that `sort-columns' rejects text that contains tabs, | |
9433 because tabs could be split across the specified columns | |
9434 and it doesn't know how to handle that. Also, when possible, | |
9435 it uses the `sort' utility program, which doesn't understand tabs. | |
9436 Use \\[untabify] to convert tabs to spaces before sorting." t nil) | |
9437 | |
9438 (autoload 'reverse-region "sort" "\ | |
9439 Reverse the order of lines in a region. | |
9440 From a program takes two point or marker arguments, BEG and END." t nil) | |
9441 | |
9442 ;;;*** | |
9443 | |
9444 ;;;### (autoloads (load-default-sounds load-sound-file) "sound" "prim/sound.el" (12546 50494)) | |
9445 ;;; Generated autoloads from prim/sound.el | |
9446 | |
9447 (or sound-alist (setq sound-alist '((ready nil) (warp nil)))) | |
9448 | |
9449 (autoload 'load-sound-file "sound" "\ | |
9450 Read in an audio-file and add it to the sound-alist. | |
9451 | |
9452 You can only play sound files if you are running on display 0 of the console | |
9453 of a Sun SparcStation, SGI machine, or HP9000s700, or running a NetAudio | |
9454 server. The sound file must be in the Sun/NeXT U-LAW format." t nil) | |
9455 | |
9456 (autoload 'load-default-sounds "sound" "\ | |
9457 Load and install some sound files as beep-types. | |
9458 This only works if you're on display 0 of a Sun SparcStation, SGI machine, | |
9459 or HP9000s700, or running a NetAudio server." t nil) | |
9460 | |
9461 ;;;*** | |
9462 | |
9463 ;;;### (autoloads nil "specifier" "prim/specifier.el" (12639 8622)) | |
9464 ;;; Generated autoloads from prim/specifier.el | |
9465 | |
9466 ;;;*** | |
9467 | |
9468 ;;;### (autoloads nil "startup" "prim/startup.el" (12740 25213)) | |
9469 ;;; Generated autoloads from prim/startup.el | |
9470 | |
9471 ;;;*** | |
9472 | |
9473 ;;;### (autoloads nil "subr" "prim/subr.el" (12639 8613)) | |
9474 ;;; Generated autoloads from prim/subr.el | |
9475 | |
9476 ;;;*** | |
9477 | |
9478 ;;;### (autoloads nil "symbols" "prim/symbols.el" (12546 50529)) | |
9479 ;;; Generated autoloads from prim/symbols.el | |
9480 | |
9481 ;;;### (autoloads nil "syntax" "prim/syntax.el" (12546 50506)) | |
9482 ;;; Generated autoloads from prim/syntax.el | |
9483 | |
9484 ;;;### (autoloads (tabify untabify) "tabify" "prim/tabify.el" (12639 8615)) | |
9485 ;;; Generated autoloads from prim/tabify.el | |
9486 | |
9487 (autoload 'untabify "tabify" "\ | |
9488 Convert all tabs in region to multiple spaces, preserving columns. | |
9489 Called non-interactively, the region is specified by arguments | |
9490 START and END, rather than by the position of point and mark. | |
9491 The variable `tab-width' controls the spacing of tab stops." t nil) | |
9492 | |
9493 (autoload 'tabify "tabify" "\ | |
9494 Convert multiple spaces in region to tabs when possible. | |
9495 A group of spaces is partially replaced by tabs | |
9496 when this can be done without changing the column they end at. | |
9497 Called non-interactively, the region is specified by arguments | |
9498 START and END, rather than by the position of point and mark. | |
9499 The variable `tab-width' controls the spacing of tab stops." t nil) | |
9500 | |
9501 ;;;*** | |
9502 | |
9503 ;;;### (autoloads nil "toolbar" "prim/toolbar.el" (12573 6011)) | |
9504 ;;; Generated autoloads from prim/toolbar.el | |
9505 | |
9506 ;;;*** | |
9507 | |
9508 ;;;### (autoloads nil "undo-stack" "prim/undo-stack.el" (12639 8852)) | |
9509 ;;; Generated autoloads from prim/undo-stack.el | |
9510 | |
9511 ;;;*** | |
9512 | |
9513 ;;;### (autoloads nil "update-elc" "prim/update-elc.el" (12546 50504)) | |
9514 ;;; Generated autoloads from prim/update-elc.el | |
9515 | |
9516 ;;;*** | |
9517 | |
9518 ;;;### (autoloads (ask-user-about-supersession-threat ask-user-about-lock) "userlock" "prim/userlock.el" (12639 8617)) | |
9519 ;;; Generated autoloads from prim/userlock.el | |
9520 | |
9521 (autoload 'ask-user-about-lock "userlock" "\ | |
9522 Ask user what to do when he wants to edit FILE but it is locked by USER. | |
9523 This function has a choice of three things to do: | |
9524 do (signal 'file-locked (list FILE USER)) | |
9525 to refrain from editing the file | |
9526 return t (grab the lock on the file) | |
9527 return nil (edit the file even though it is locked). | |
9528 You can rewrite it to use any criterion you like to choose which one to do." nil nil) | |
9529 | |
9530 (autoload 'ask-user-about-supersession-threat "userlock" "\ | |
9531 Ask a user who is about to modify an obsolete buffer what to do. | |
9532 This function has two choices: it can return, in which case the modification | |
9533 of the buffer will proceed, or it can (signal 'file-supersession (file)), | |
9534 in which case the proposed buffer modification will not be made. | |
9535 | |
9536 You can rewrite this to use any criterion you like to choose which one to do. | |
9537 The buffer in question is current when this function is called." nil nil) | |
9538 | |
9539 ;;;*** | |
9540 | |
9541 ;;;### (autoloads nil "window" "prim/window.el" (12657 40725)) | |
9542 ;;; Generated autoloads from prim/window.el | |
9543 | |
9544 ;;;*** | |
9545 | |
9546 ;;;### (autoloads nil "iso-sgml" "psgml/iso-sgml.el" (12639 8920)) | |
9547 ;;; Generated autoloads from psgml/iso-sgml.el | |
9548 | |
9549 ;;;*** | |
9550 | |
9551 ;;;### (autoloads nil "psgml-api" "psgml/psgml-api.el" (12639 8921)) | |
9552 ;;; Generated autoloads from psgml/psgml-api.el | |
9553 | |
9554 ;;;*** | |
9555 | |
9556 ;;;### (autoloads nil "psgml-charent" "psgml/psgml-charent.el" (12639 8921)) | |
9557 ;;; Generated autoloads from psgml/psgml-charent.el | |
9558 | |
9559 ;;;*** | |
9560 | |
9561 ;;;### (autoloads nil "psgml-debug" "psgml/psgml-debug.el" (12639 8922)) | |
9562 ;;; Generated autoloads from psgml/psgml-debug.el | |
9563 | |
9564 ;;;*** | |
9565 | |
9566 ;;;### (autoloads nil "psgml-dtd" "psgml/psgml-dtd.el" (12639 8923)) | |
9567 ;;; Generated autoloads from psgml/psgml-dtd.el | |
9568 | |
9569 ;;;*** | |
9570 | |
9571 ;;;### (autoloads nil "psgml-edit" "psgml/psgml-edit.el" (12648 18637)) | |
9572 ;;; Generated autoloads from psgml/psgml-edit.el | |
9573 | |
9574 ;;;### (autoloads (style-format) "psgml-fs" "psgml/psgml-fs.el" (12648 18670)) | |
9575 ;;; Generated autoloads from psgml/psgml-fs.el | |
9576 | |
9577 (autoload 'style-format "psgml-fs" nil t nil) | |
9578 | |
9579 ;;;*** | |
9580 | |
9581 ;;;### (autoloads nil "psgml-html" "psgml/psgml-html.el" (12657 40787)) | |
9582 ;;; Generated autoloads from psgml/psgml-html.el | |
9583 | |
9584 (autoload 'html-mode "psgml-html" "\ | |
9585 HTML mode." t) | |
9586 | |
9587 (autoload 'html3-mode "psgml-html" "\ | |
9588 HTML3 mode." t) | |
9589 | |
9590 ;;;*** | |
9591 | |
9592 ;;;### (autoloads nil "psgml-info" "psgml/psgml-info.el" (12639 8925)) | |
9593 ;;; Generated autoloads from psgml/psgml-info.el | |
9594 | |
9595 ;;;*** | |
9596 | |
9597 ;;;### (autoloads nil "psgml-other" "psgml/psgml-other.el" (12639 8926)) | |
9598 ;;; Generated autoloads from psgml/psgml-other.el | |
9599 | |
9600 ;;;*** | |
9601 | |
9602 ;;;### (autoloads nil "psgml-parse" "psgml/psgml-parse.el" (12639 8928)) | |
9603 ;;; Generated autoloads from psgml/psgml-parse.el | |
9604 | |
9605 ;;;*** | |
9606 | |
9607 ;;;### (autoloads nil "psgml-style" "psgml/psgml-style.el" (12648 18671)) | |
9608 ;;; Generated autoloads from psgml/psgml-style.el | |
9609 | |
9610 ;;;### (autoloads (tmpl-expand-templates-in-buffer tmpl-expand-templates-in-region) "psgml-tmpl-mode" "psgml/psgml-tmpl-mode.el" (12638 54483)) | |
9611 ;;; Generated autoloads from psgml/psgml-tmpl-mode.el | |
9612 | |
9613 (autoload 'tmpl-expand-templates-in-region "psgml-tmpl-mode" "\ | |
9614 Expand the templates in the region from BEGIN to END. | |
9615 If BEGIN and and are nil, then the current region is used." t nil) | |
9616 | |
9617 (autoload 'tmpl-expand-templates-in-buffer "psgml-tmpl-mode" "\ | |
9618 Expand all templates in the current buffer." t nil) | |
9619 | |
9620 ;;;*** | |
9621 | |
9622 ;;;### (autoloads nil "psgml-xemacs" "psgml/psgml-xemacs.el" (12648 18639)) | |
9623 ;;; Generated autoloads from psgml/psgml-xemacs.el | |
9624 | |
9625 ;;;### (autoloads (sgml-mode) "psgml" "psgml/psgml.el" (12648 18638)) | |
9626 ;;; Generated autoloads from psgml/psgml.el | |
9627 | |
9628 (autoload 'sgml-mode "psgml" "\ | |
9629 Major mode for editing SGML.\\<sgml-mode-map> | |
9630 Makes > display the matching <. Makes / display matching /. | |
9631 Use \\[sgml-validate] to validate your document with an SGML parser. | |
9632 | |
9633 You can find information with: | |
9634 \\[sgml-show-context] Show the nesting of elements at cursor position. | |
9635 \\[sgml-list-valid-tags] Show the tags valid at cursor position. | |
9636 | |
9637 Insert tags with completion of contextually valid tags with \\[sgml-insert-tag]. | |
9638 End the current element with \\[sgml-insert-end-tag]. Insert an element (i.e. | |
9639 both start and end tag) with \\[sgml-insert-element]. Or tag a region with | |
9640 \\[sgml-tag-region]. | |
9641 | |
9642 To tag a region with the mouse, use transient mark mode or secondary selection. | |
9643 | |
9644 Structure editing: | |
9645 \\[sgml-backward-element] Moves backwards over the previous element. | |
9646 \\[sgml-forward-element] Moves forward over the nex element. | |
9647 \\[sgml-down-element] Move forward and down one level in the element structure. | |
9648 \\[sgml-backward-up-element] Move backward out of this element level. | |
9649 \\[sgml-beginning-of-element] Move to after the start tag of the current element. | |
9650 \\[sgml-end-of-element] Move to before the end tag of the current element. | |
9651 \\[sgml-kill-element] Kill the element following the cursor. | |
9652 | |
9653 Finding interesting positions | |
9654 \\[sgml-next-data-field] Move forward to next point where data is allowed. | |
9655 \\[sgml-next-trouble-spot] Move forward to next point where something is | |
9656 amiss with the structure. | |
9657 | |
9658 Folding and unfolding | |
9659 \\[sgml-fold-element] Fold the lines comprising the current element, leaving | |
9660 the first line visible. | |
9661 \\[sgml-fold-subelement] Fold the elements in the content of the current element. | |
9662 Leaving the first line of every element visible. | |
9663 \\[sgml-unfold-line] Show hidden lines in current line. | |
9664 | |
9665 User options: | |
9666 | |
9667 sgml-omittag Set this to reflect OMITTAG in the SGML declaration. | |
9668 sgml-shortag Set this to reflect SHORTTAG in the SGML declaration. | |
9669 sgml-auto-insert-required-elements If non-nil, automatically insert required | |
9670 elements in the content of an inserted element. | |
9671 sgml-balanced-tag-edit If non-nil, always insert start-end tag pairs. | |
9672 sgml-omittag-transparent If non-nil, will show legal tags inside elements | |
9673 with omitable start tags and legal tags beyond omitable end tags. | |
9674 sgml-leave-point-after-insert If non-nil, the point will remain after | |
9675 inserted tag(s). | |
9676 sgml-warn-about-undefined-elements If non-nil, print a warning when a tag | |
9677 for a undefined element is found. | |
9678 sgml-max-menu-size Max number of entries in Tags and Entities menus before | |
9679 they are split into several panes. | |
9680 sgml-always-quote-attributes If non-nil, quote all attribute values | |
9681 inserted after finishing edit attributes. | |
9682 sgml-minimize-attributes Determines minimization of attributes inserted by | |
9683 edit-attributes. | |
9684 sgml-normalize-trims If non-nil, sgml-normalize will trim off white space | |
9685 from end of element when adding end tag. | |
9686 sgml-indent-step How much to increament indent for every element level. | |
9687 sgml-indent-data If non-nil, indent in data/mixed context also. | |
9688 sgml-set-face If non-nil, psgml will set the face of parsed markup. | |
9689 sgml-markup-faces The faces used when the above variable is non-nil. | |
9690 sgml-system-path List of directorys used to look for system identifiers. | |
9691 sgml-public-map Mapping from public identifiers to file names. | |
9692 sgml-offer-save If non-nil, ask about saving modified buffers before | |
9693 \\[sgml-validate] is run. | |
9694 | |
9695 All bindings: | |
9696 \\{sgml-mode-map} | |
9697 " t nil) | |
9698 | |
9699 ;;;*** | |
9700 | |
9701 ;;;### (autoloads nil "tempo" "psgml/tempo.el" (12648 18672)) | |
9702 ;;; Generated autoloads from psgml/tempo.el | |
9703 | |
9704 ;;;*** | |
9705 | |
9706 ;;;### (autoloads nil "rmail-kill" "rmail/rmail-kill.el" (11903 15862)) | |
9707 ;;; Generated autoloads from rmail/rmail-kill.el | |
9708 | |
9709 ;;;### (autoloads nil "rmail-lucid" "rmail/rmail-lucid.el" (12376 19553)) | |
9710 ;;; Generated autoloads from rmail/rmail-lucid.el | |
9711 | |
9712 ;;;### (autoloads (rmail-input rmail-mode rmail) "rmail" "rmail/rmail.el" (12727 30166)) | |
9713 ;;; Generated autoloads from rmail/rmail.el | |
9714 | |
9715 (defvar rmail-dont-reply-to-names nil "\ | |
9716 *A regexp specifying names to prune of reply to messages. | |
9717 A value of nil means exclude your own name only.") | |
9718 | |
9719 (defvar rmail-default-dont-reply-to-names "info-" "\ | |
9720 A regular expression specifying part of the value of the default value of | |
9721 the variable `rmail-dont-reply-to-names', for when the user does not set | |
9722 `rmail-dont-reply-to-names' explicitly. (The other part of the default | |
9723 value is the user's name.) | |
9724 It is useful to set this variable in the site customization file.") | |
9725 | |
9726 (defvar rmail-delete-after-output nil "\ | |
9727 *Non-nil means automatically delete a message that is copied to a file.") | |
9728 | |
9729 (defvar rmail-primary-inbox-list nil "\ | |
9730 *List of files which are inboxes for user's primary mail file `~/RMAIL'. | |
9731 `nil' means the default, which is (\"/usr/spool/mail/$USER\") | |
9732 \(the name varies depending on the operating system, | |
9733 and the value of the environment variable MAIL overrides it).") | |
9734 | |
9735 (defvar rmail-mail-new-frame nil "\ | |
9736 *Non-nil means Rmail makes a new frame for composing outgoing mail.") | |
9737 | |
9738 (defvar rmail-retry-setup-hook nil "\ | |
9739 Hook that `rmail-retry-failure' uses in place of `mail-setup-hook'.") | |
9740 | |
9741 (defvar rmail-last-file nil) | |
9742 | |
9743 (autoload 'rmail "rmail" "\ | |
9744 Read and edit incoming mail. | |
9745 Moves messages into file named by `rmail-file-name' (a babyl format file) | |
9746 and edits that file in RMAIL Mode. | |
9747 Type \\[describe-mode] once editing that file, for a list of RMAIL commands. | |
9748 | |
9749 May be called with filename as argument; then performs rmail editing on | |
9750 that file, but does not copy any new mail into the file." t nil) | |
9751 | |
9752 (autoload 'rmail-mode "rmail" "\ | |
9753 Rmail Mode is used by \\<rmail-mode-map>\\[rmail] for editing Rmail files. | |
9754 All normal editing commands are turned off. | |
9755 Instead, these commands are available: | |
9756 | |
9757 \\[rmail-beginning-of-message] Move point to front of this message (same as \\[beginning-of-buffer]). | |
9758 \\[scroll-up] Scroll to next screen of this message. | |
9759 \\[scroll-down] Scroll to previous screen of this message. | |
9760 \\[rmail-next-undeleted-message] Move to Next non-deleted message. | |
9761 \\[rmail-previous-undeleted-message] Move to Previous non-deleted message. | |
9762 \\[rmail-next-message] Move to Next message whether deleted or not. | |
9763 \\[rmail-previous-message] Move to Previous message whether deleted or not. | |
9764 \\[rmail-first-message] Move to the first message in Rmail file. | |
9765 \\[rmail-last-message] Move to the last message in Rmail file. | |
9766 \\[rmail-show-message] Jump to message specified by numeric position in file. | |
9767 \\[rmail-search] Search for string and show message it is found in. | |
9768 \\[rmail-delete-forward] Delete this message, move to next nondeleted. | |
9769 \\[rmail-delete-backward] Delete this message, move to previous nondeleted. | |
9770 \\[rmail-undelete-previous-message] Undelete message. Tries current message, then earlier messages | |
9771 till a deleted message is found. | |
9772 \\[rmail-edit-current-message] Edit the current message. \\[rmail-cease-edit] to return to Rmail. | |
9773 \\[rmail-expunge] Expunge deleted messages. | |
9774 \\[rmail-expunge-and-save] Expunge and save the file. | |
9775 \\[rmail-quit] Quit Rmail: expunge, save, then switch to another buffer. | |
9776 \\[save-buffer] Save without expunging. | |
9777 \\[rmail-get-new-mail] Move new mail from system spool directory into this file. | |
9778 \\[rmail-mail] Mail a message (same as \\[mail-other-window]). | |
9779 \\[rmail-continue] Continue composing outgoing message started before. | |
9780 \\[rmail-reply] Reply to this message. Like \\[rmail-mail] but initializes some fields. | |
9781 \\[rmail-retry-failure] Send this message again. Used on a mailer failure message. | |
9782 \\[rmail-forward] Forward this message to another user. | |
9783 \\[rmail-output-to-rmail-file] Output this message to an Rmail file (append it). | |
9784 \\[rmail-output] Output this message to a Unix-format mail file (append it). | |
9785 \\[rmail-input] Input Rmail file. Run Rmail on that file. | |
9786 \\[rmail-add-label] Add label to message. It will be displayed in the mode line. | |
9787 \\[rmail-kill-label] Kill label. Remove a label from current message. | |
9788 \\[rmail-next-labeled-message] Move to Next message with specified label | |
9789 (label defaults to last one specified). | |
9790 Standard labels: filed, unseen, answered, forwarded, deleted. | |
9791 Any other label is present only if you add it with \\[rmail-add-label]. | |
9792 \\[rmail-previous-labeled-message] Move to Previous message with specified label | |
9793 \\[rmail-summary] Show headers buffer, with a one line summary of each message. | |
9794 \\[rmail-summary-by-labels] Summarize only messages with particular label(s). | |
9795 \\[rmail-summary-by-recipients] Summarize only messages with particular recipient(s). | |
9796 \\[rmail-summary-by-regexp] Summarize only messages with particular regexp(s). | |
9797 \\[rmail-summary-by-topic] Summarize only messages with subject line regexp(s). | |
9798 \\[rmail-toggle-header] Toggle display of complete header." t nil) | |
9799 | |
9800 (autoload 'rmail-input "rmail" "\ | |
9801 Run Rmail on file FILENAME." t nil) | |
9802 | |
9803 ;;;*** | |
9804 | |
9805 ;;;### (autoloads nil "rmailedit" "rmail/rmailedit.el" (12376 19554)) | |
9806 ;;; Generated autoloads from rmail/rmailedit.el | |
9807 | |
9808 ;;;*** | |
9809 | |
9810 ;;;### (autoloads nil "rmailkwd" "rmail/rmailkwd.el" (12376 19555)) | |
9811 ;;; Generated autoloads from rmail/rmailkwd.el | |
9812 | |
9813 ;;;*** | |
9814 | |
9815 ;;;### (autoloads nil "rmailmsc" "rmail/rmailmsc.el" (12376 19555)) | |
9816 ;;; Generated autoloads from rmail/rmailmsc.el | |
9817 | |
9818 ;;;### (autoloads (rmail-file-p) "rmailout" "rmail/rmailout.el" (12376 19556)) | |
9819 ;;; Generated autoloads from rmail/rmailout.el | |
9820 | |
9821 (autoload 'rmail-file-p "rmailout" nil nil nil) | |
9822 | |
9823 ;;;*** | |
9824 | |
9825 ;;;### (autoloads nil "rmailsort" "rmail/rmailsort.el" (12376 19557)) | |
9826 ;;; Generated autoloads from rmail/rmailsort.el | |
9827 | |
9828 ;;;*** | |
9829 | |
9830 ;;;### (autoloads nil "rmailsum" "rmail/rmailsum.el" (12546 50532)) | |
9831 ;;; Generated autoloads from rmail/rmailsum.el | |
9832 | |
9833 ;;;*** | |
9834 | |
9835 ;;;### (autoloads nil "undigest" "rmail/undigest.el" (12546 50532)) | |
9836 ;;; Generated autoloads from rmail/undigest.el | |
9837 | |
9838 ;;;*** | |
9839 | |
9840 ;;;### (autoloads (unrmail batch-unrmail) "unrmail" "rmail/unrmail.el" (12147 25753)) | |
9841 ;;; Generated autoloads from rmail/unrmail.el | |
9842 | |
9843 (autoload 'batch-unrmail "unrmail" "\ | |
9844 Convert Rmail files to mailbox files. | |
9845 Specify the input Rmail file names as command line arguments. | |
9846 For each Rmail file, the corresponding output file name | |
9847 is made by adding `.mail' at the end. | |
9848 For example, invoke `emacs -batch -f batch-unrmail RMAIL'." nil nil) | |
9849 | |
9850 (autoload 'unrmail "unrmail" "\ | |
9851 Convert Rmail file FILE to mailbox-format file TO-FILE." t nil) | |
9852 | |
9853 ;;;*** | |
9854 | |
9855 ;;;### (autoloads nil "eserve" "sunpro/eserve.el" (12690 2205)) | |
9856 ;;; Generated autoloads from sunpro/eserve.el | |
9857 | |
9858 ;;;*** | |
9859 | |
9860 ;;;### (autoloads nil "sunpro-init" "sunpro/sunpro-init.el" (12740 25230)) | |
9861 ;;; Generated autoloads from sunpro/sunpro-init.el | |
9862 | |
9863 ;;;### (autoloads nil "sunpro-keys" "sunpro/sunpro-keys.el" (11903 15927)) | |
9864 ;;; Generated autoloads from sunpro/sunpro-keys.el | |
9865 | |
9866 ;;;*** | |
9867 | |
9868 ;;;### (autoloads nil "sunpro-load" "sunpro/sunpro-load.el" (12256 51714)) | |
9869 ;;; Generated autoloads from sunpro/sunpro-load.el | |
9870 | |
9871 ;;;*** | |
9872 | |
9873 ;;;### (autoloads nil "sunpro-menubar" "sunpro/sunpro-menubar.el" (12740 25229)) | |
9874 ;;; Generated autoloads from sunpro/sunpro-menubar.el | |
9875 | |
9876 ;;;*** | |
9877 | |
9878 ;;;### (autoloads nil "sunpro-sparcworks" "sunpro/sunpro-sparcworks.el" (12740 25231)) | |
9879 ;;; Generated autoloads from sunpro/sunpro-sparcworks.el | |
9880 | |
9881 ;;;*** | |
9882 | |
9883 ;;;### (autoloads nil "workshop" "sunpro/workshop.el" (12690 2204)) | |
9884 ;;; Generated autoloads from sunpro/workshop.el | |
9885 | |
9886 ;;;### (autoloads nil "AT386" "term/AT386.el" (12639 8852)) | |
9887 ;;; Generated autoloads from term/AT386.el | |
9888 | |
9889 ;;;*** | |
9890 | |
9891 ;;;### (autoloads nil "apollo" "term/apollo.el" (12639 8854)) | |
9892 ;;; Generated autoloads from term/apollo.el | |
9893 | |
9894 ;;;*** | |
9895 | |
9896 ;;;### (autoloads nil "bg-mouse" "term/bg-mouse.el" (12639 8854)) | |
9897 ;;; Generated autoloads from term/bg-mouse.el | |
9898 | |
9899 ;;;*** | |
9900 | |
9901 ;;;### (autoloads nil "bobcat" "term/bobcat.el" (12639 8855)) | |
9902 ;;; Generated autoloads from term/bobcat.el | |
9903 | |
9904 ;;;*** | |
9905 | |
9906 ;;;### (autoloads nil "internal" "term/internal.el" (12639 8855)) | |
9907 ;;; Generated autoloads from term/internal.el | |
9908 | |
9909 ;;;*** | |
9910 | |
9911 ;;;### (autoloads nil "keyswap" "term/keyswap.el" (12639 8855)) | |
9912 ;;; Generated autoloads from term/keyswap.el | |
9913 | |
9914 ;;;*** | |
9915 | |
9916 ;;;### (autoloads nil "linux" "term/linux.el" (12639 8856)) | |
9917 ;;; Generated autoloads from term/linux.el | |
9918 | |
9919 ;;;*** | |
9920 | |
9921 ;;;### (autoloads nil "lk201" "term/lk201.el" (12639 8857)) | |
9922 ;;; Generated autoloads from term/lk201.el | |
9923 | |
9924 ;;;*** | |
9925 | |
9926 ;;;### (autoloads nil "news" "term/news.el" (12639 8642)) | |
9927 ;;; Generated autoloads from term/news.el | |
9928 | |
9929 ;;;*** | |
9930 | |
9931 ;;;### (autoloads nil "pc-win" "term/pc-win.el" (12639 8858)) | |
9932 ;;; Generated autoloads from term/pc-win.el | |
9933 | |
9934 ;;;*** | |
9935 | |
9936 ;;;### (autoloads nil "scoansi" "term/scoansi.el" (12740 25282)) | |
9937 ;;; Generated autoloads from term/scoansi.el | |
9938 | |
9939 ;;;### (autoloads nil "sun-mouse" "term/sun-mouse.el" (12639 8860)) | |
9940 ;;; Generated autoloads from term/sun-mouse.el | |
9941 | |
9942 ;;;*** | |
9943 | |
9944 ;;;### (autoloads nil "sun" "term/sun.el" (12639 8861)) | |
9945 ;;; Generated autoloads from term/sun.el | |
9946 | |
9947 ;;;*** | |
9948 | |
9949 ;;;### (autoloads nil "sup-mouse" "term/sup-mouse.el" (12639 8862)) | |
9950 ;;; Generated autoloads from term/sup-mouse.el | |
9951 | |
9952 ;;;*** | |
9953 | |
9954 ;;;### (autoloads nil "tty-init" "term/tty-init.el" (12698 33568)) | |
9955 ;;; Generated autoloads from term/tty-init.el | |
9956 | |
9957 ;;;### (autoloads nil "tvi970" "term/tvi970.el" (12639 8863)) | |
9958 ;;; Generated autoloads from term/tvi970.el | |
9959 | |
9960 ;;;### (autoloads nil "vt-control" "term/vt-control.el" (12376 19561)) | |
9961 ;;; Generated autoloads from term/vt-control.el | |
9962 | |
9963 ;;;*** | |
9964 | |
9965 ;;;### (autoloads nil "vt100-led" "term/vt100-led.el" (12376 19560)) | |
9966 ;;; Generated autoloads from term/vt100-led.el | |
9967 | |
9968 ;;;*** | |
9969 | |
9970 ;;;### (autoloads nil "vt100" "term/vt100.el" (12639 8643)) | |
9971 ;;; Generated autoloads from term/vt100.el | |
9972 | |
9973 ;;;*** | |
9974 | |
9975 ;;;### (autoloads nil "vt102" "term/vt102.el" (12639 8864)) | |
9976 ;;; Generated autoloads from term/vt102.el | |
9977 | |
9978 ;;;*** | |
9979 | |
9980 ;;;### (autoloads nil "vt125" "term/vt125.el" (12639 8864)) | |
9981 ;;; Generated autoloads from term/vt125.el | |
9982 | |
9983 ;;;*** | |
9984 | |
9985 ;;;### (autoloads nil "vt200" "term/vt200.el" (12639 8865)) | |
9986 ;;; Generated autoloads from term/vt200.el | |
9987 | |
9988 ;;;*** | |
9989 | |
9990 ;;;### (autoloads nil "vt201" "term/vt201.el" (12639 8866)) | |
9991 ;;; Generated autoloads from term/vt201.el | |
9992 | |
9993 ;;;*** | |
9994 | |
9995 ;;;### (autoloads nil "vt220" "term/vt220.el" (12639 8867)) | |
9996 ;;; Generated autoloads from term/vt220.el | |
9997 | |
9998 ;;;*** | |
9999 | |
10000 ;;;### (autoloads nil "vt240" "term/vt240.el" (12639 8867)) | |
10001 ;;; Generated autoloads from term/vt240.el | |
10002 | |
10003 ;;;*** | |
10004 | |
10005 ;;;### (autoloads nil "vt300" "term/vt300.el" (12639 8867)) | |
10006 ;;; Generated autoloads from term/vt300.el | |
10007 | |
10008 ;;;*** | |
10009 | |
10010 ;;;### (autoloads nil "vt320" "term/vt320.el" (12639 8868)) | |
10011 ;;; Generated autoloads from term/vt320.el | |
10012 | |
10013 ;;;*** | |
10014 | |
10015 ;;;### (autoloads nil "vt400" "term/vt400.el" (12639 8868)) | |
10016 ;;; Generated autoloads from term/vt400.el | |
10017 | |
10018 ;;;*** | |
10019 | |
10020 ;;;### (autoloads nil "vt420" "term/vt420.el" (12639 8869)) | |
10021 ;;; Generated autoloads from term/vt420.el | |
10022 | |
10023 ;;;*** | |
10024 | |
10025 ;;;### (autoloads nil "win32-win" "term/win32-win.el" (12639 8869)) | |
10026 ;;; Generated autoloads from term/win32-win.el | |
10027 | |
10028 ;;;*** | |
10029 | |
10030 ;;;### (autoloads nil "wyse50" "term/wyse50.el" (12639 8870)) | |
10031 ;;; Generated autoloads from term/wyse50.el | |
10032 | |
10033 ;;;*** | |
10034 | |
10035 ;;;### (autoloads nil "xterm" "term/xterm.el" (12639 8870)) | |
10036 ;;; Generated autoloads from term/xterm.el | |
10037 | |
10038 ;;;*** | |
10039 | |
10040 ;;;### (autoloads nil "tooltalk-init" "tooltalk/tooltalk-init.el" (12714 11728)) | |
10041 ;;; Generated autoloads from tooltalk/tooltalk-init.el | |
10042 | |
10043 ;;;*** | |
10044 | |
10045 ;;;### (autoloads nil "tooltalk-load" "tooltalk/tooltalk-load.el" (12142 8533)) | |
10046 ;;; Generated autoloads from tooltalk/tooltalk-load.el | |
10047 | |
10048 ;;;### (autoloads nil "tooltalk-macros" "tooltalk/tooltalk-macros.el" (12376 19613)) | |
10049 ;;; Generated autoloads from tooltalk/tooltalk-macros.el | |
10050 | |
10051 ;;;*** | |
10052 | |
10053 ;;;### (autoloads nil "tooltalk-util" "tooltalk/tooltalk-util.el" (12376 19611)) | |
10054 ;;; Generated autoloads from tooltalk/tooltalk-util.el | |
10055 | |
10056 ;;;*** | |
10057 | |
10058 ;;;### (autoloads nil "base64" "url/base64.el" (12675 57192)) | |
10059 ;;; Generated autoloads from url/base64.el | |
10060 | |
10061 ;;;*** | |
10062 | |
10063 ;;;### (autoloads nil "md5" "url/md5.el" (12740 27391)) | |
10064 ;;; Generated autoloads from url/md5.el | |
10065 | |
10066 ;;;*** | |
10067 | |
10068 ;;;### (autoloads nil "mm" "url/mm.el" (12715 10594)) | |
10069 ;;; Generated autoloads from url/mm.el | |
10070 | |
10071 ;;;*** | |
10072 | |
10073 ;;;### (autoloads nil "ssl" "url/ssl.el" (12715 10594)) | |
10074 ;;; Generated autoloads from url/ssl.el | |
10075 | |
10076 ;;;*** | |
10077 | |
10078 ;;;### (autoloads nil "url-cookie" "url/url-cookie.el" (12727 30991)) | |
10079 ;;; Generated autoloads from url/url-cookie.el | |
10080 | |
10081 ;;;*** | |
10082 | |
10083 ;;;### (autoloads nil "url-file" "url/url-file.el" (12740 27393)) | |
10084 ;;; Generated autoloads from url/url-file.el | |
10085 | |
10086 ;;;*** | |
10087 | |
10088 ;;;### (autoloads nil "url-gopher" "url/url-gopher.el" (12639 8908)) | |
10089 ;;; Generated autoloads from url/url-gopher.el | |
10090 | |
10091 ;;;### (autoloads nil "url-hash" "url/url-hash.el" (12648 18631)) | |
10092 ;;; Generated autoloads from url/url-hash.el | |
10093 | |
10094 ;;;*** | |
10095 | |
10096 ;;;### (autoloads nil "url-http" "url/url-http.el" (12740 27393)) | |
10097 ;;; Generated autoloads from url/url-http.el | |
10098 | |
10099 ;;;*** | |
10100 | |
10101 ;;;### (autoloads nil "url-irc" "url/url-irc.el" (12740 27199)) | |
10102 ;;; Generated autoloads from url/url-irc.el | |
10103 | |
10104 ;;;### (autoloads nil "url-mail" "url/url-mail.el" (12727 30990)) | |
10105 ;;; Generated autoloads from url/url-mail.el | |
10106 | |
10107 ;;;*** | |
10108 | |
10109 ;;;### (autoloads nil "url-misc" "url/url-misc.el" (12740 27393)) | |
10110 ;;; Generated autoloads from url/url-misc.el | |
10111 | |
10112 ;;;*** | |
10113 | |
10114 ;;;### (autoloads nil "url-news" "url/url-news.el" (12720 56537)) | |
10115 ;;; Generated autoloads from url/url-news.el | |
10116 | |
10117 ;;;*** | |
10118 | |
10119 ;;;### (autoloads nil "url-nfs" "url/url-nfs.el" (12740 27199)) | |
10120 ;;; Generated autoloads from url/url-nfs.el | |
10121 | |
10122 ;;;*** | |
10123 | |
10124 ;;;### (autoloads nil "url-parse" "url/url-parse.el" (12639 8912)) | |
10125 ;;; Generated autoloads from url/url-parse.el | |
10126 | |
10127 ;;;### (autoloads nil "url-pgp" "url/url-pgp.el" (12714 11780)) | |
10128 ;;; Generated autoloads from url/url-pgp.el | |
10129 | |
10130 ;;;*** | |
10131 | |
10132 ;;;### (autoloads nil "url-sysdp" "url/url-sysdp.el" (12727 30990)) | |
10133 ;;; Generated autoloads from url/url-sysdp.el | |
10134 | |
10135 ;;;*** | |
10136 | |
10137 ;;;### (autoloads nil "url-vars" "url/url-vars.el" (12740 27394)) | |
10138 ;;; Generated autoloads from url/url-vars.el | |
10139 | |
10140 ;;;*** | |
10141 | |
10142 ;;;### (autoloads nil "url-wais" "url/url-wais.el" (12714 11783)) | |
10143 ;;; Generated autoloads from url/url-wais.el | |
10144 | |
10145 ;;;### (autoloads (url-retrieve url-cache-expired url-popup-info url-get-url-at-point url-buffer-visiting url-normalize-url url-file-attributes) "url" "url/url.el" (12740 27391)) | |
10146 ;;; Generated autoloads from url/url.el | |
10147 | |
10148 (autoload 'url-file-attributes "url" "\ | |
10149 Return a list of attributes of URL. | |
10150 Value is nil if specified file cannot be opened. | |
10151 Otherwise, list elements are: | |
10152 0. t for directory, string (name linked to) for symbolic link, or nil. | |
10153 1. Number of links to file. | |
10154 2. File uid. | |
10155 3. File gid. | |
10156 4. Last access time, as a list of two integers. | |
10157 First integer has high-order 16 bits of time, second has low 16 bits. | |
10158 5. Last modification time, likewise. | |
10159 6. Last status change time, likewise. | |
10160 7. Size in bytes. (-1, if number is out of range). | |
10161 8. File modes, as a string of ten letters or dashes as in ls -l. | |
10162 If URL is on an http server, this will return the content-type if possible. | |
10163 9. t iff file's gid would change if file were deleted and recreated. | |
10164 10. inode number. | |
10165 11. Device number. | |
10166 | |
10167 If file does not exist, returns nil." nil nil) | |
10168 | |
10169 (autoload 'url-normalize-url "url" "\ | |
10170 Return a 'normalized' version of URL. This strips out default port | |
10171 numbers, etc." nil nil) | |
10172 | |
10173 (autoload 'url-buffer-visiting "url" "\ | |
10174 Return the name of a buffer (if any) that is visiting URL." nil nil) | |
10175 | |
10176 (autoload 'url-get-url-at-point "url" "\ | |
10177 Get the URL closest to point, but don't change your | |
10178 position. Has a preference for looking backward when not | |
10179 directly on a symbol." nil nil) | |
10180 | |
10181 (autoload 'url-popup-info "url" "\ | |
10182 Retrieve the HTTP/1.0 headers and display them in a temp buffer." nil nil) | |
10183 | |
10184 (autoload 'url-cache-expired "url" "\ | |
10185 Return t iff a cached file has expired." nil nil) | |
10186 | |
10187 (autoload 'url-retrieve "url" "\ | |
10188 Retrieve a document over the World Wide Web. | |
10189 The document should be specified by its fully specified | |
10190 Uniform Resource Locator. No parsing is done, just return the | |
10191 document as the server sent it. The document is left in the | |
10192 buffer specified by url-working-buffer. url-working-buffer is killed | |
10193 immediately before starting the transfer, so that no buffer-local | |
10194 variables interfere with the retrieval. HTTP/1.0 redirection will | |
10195 be honored before this function exits." nil nil) | |
10196 | |
10197 ;;;*** | |
10198 | |
10199 ;;;### (autoloads nil "urlauth" "url/urlauth.el" (12639 8898)) | |
10200 ;;; Generated autoloads from url/urlauth.el | |
10201 | |
10202 ;;;*** | |
10203 | |
10204 ;;;### (autoloads nil "abbrevlist" "utils/abbrevlist.el" (12559 34915)) | |
10205 ;;; Generated autoloads from utils/abbrevlist.el | |
10206 | |
10207 ;;;### (autoloads (defadvice ad-add-advice) "advice" "utils/advice.el" (12559 34922)) | |
10208 ;;; Generated autoloads from utils/advice.el | |
10209 | |
10210 (defvar ad-redefinition-action 'warn "\ | |
10211 *Defines what to do with redefinitions during Advice de/activation. | |
10212 Redefinition occurs if a previously activated function that already has an | |
10213 original definition associated with it gets redefined and then de/activated. | |
10214 In such a case we can either accept the current definition as the new | |
10215 original definition, discard the current definition and replace it with the | |
10216 old original, or keep it and raise an error. The values `accept', `discard', | |
10217 `error' or `warn' govern what will be done. `warn' is just like `accept' but | |
10218 it additionally prints a warning message. All other values will be | |
10219 interpreted as `error'.") | |
10220 | |
10221 (defvar ad-default-compilation-action 'maybe "\ | |
10222 *Defines whether to compile advised definitions during activation. | |
10223 A value of `always' will result in unconditional compilation, `never' will | |
10224 always avoid compilation, `maybe' will compile if the byte-compiler is already | |
10225 loaded, and `like-original' will compile if the original definition of the | |
10226 advised function is compiled or a built-in function. Every other value will | |
10227 be interpreted as `maybe'. This variable will only be considered if the | |
10228 COMPILE argument of `ad-activate' was supplied as nil.") | |
10229 | |
10230 (autoload 'ad-add-advice "advice" "\ | |
10231 Adds a piece of ADVICE to FUNCTION's list of advices in CLASS. | |
10232 If FUNCTION already has one or more pieces of advice of the specified | |
10233 CLASS then POSITION determines where the new piece will go. The value | |
10234 of POSITION can either be `first', `last' or a number where 0 corresponds | |
10235 to `first'. Numbers outside the range will be mapped to the closest | |
10236 extreme position. If there was already a piece of ADVICE with the same | |
10237 name, then the position argument will be ignored and the old advice | |
10238 will be overwritten with the new one. | |
10239 If the FUNCTION was not advised already, then its advice info will be | |
10240 initialized. Redefining a piece of advice whose name is part of the cache-id | |
10241 will clear the cache." nil nil) | |
10242 | |
10243 (autoload 'defadvice "advice" "\ | |
10244 Defines a piece of advice for FUNCTION (a symbol). | |
10245 The syntax of `defadvice' is as follows: | |
10246 | |
10247 (defadvice FUNCTION (CLASS NAME [POSITION] [ARGLIST] FLAG...) | |
10248 [DOCSTRING] [INTERACTIVE-FORM] | |
10249 BODY... ) | |
10250 | |
10251 FUNCTION ::= Name of the function to be advised. | |
10252 CLASS ::= `before' | `around' | `after' | `activation' | `deactivation'. | |
10253 NAME ::= Non-nil symbol that names this piece of advice. | |
10254 POSITION ::= `first' | `last' | NUMBER. Optional, defaults to `first', | |
10255 see also `ad-add-advice'. | |
10256 ARGLIST ::= An optional argument list to be used for the advised function | |
10257 instead of the argument list of the original. The first one found in | |
10258 before/around/after-advices will be used. | |
10259 FLAG ::= `protect'|`disable'|`activate'|`compile'|`preactivate'|`freeze'. | |
10260 All flags can be specified with unambiguous initial substrings. | |
10261 DOCSTRING ::= Optional documentation for this piece of advice. | |
10262 INTERACTIVE-FORM ::= Optional interactive form to be used for the advised | |
10263 function. The first one found in before/around/after-advices will be used. | |
10264 BODY ::= Any s-expression. | |
10265 | |
10266 Semantics of the various flags: | |
10267 `protect': The piece of advice will be protected against non-local exits in | |
10268 any code that precedes it. If any around-advice of a function is protected | |
10269 then automatically all around-advices will be protected (the complete onion). | |
10270 | |
10271 `activate': All advice of FUNCTION will be activated immediately if | |
10272 FUNCTION has been properly defined prior to this application of `defadvice'. | |
10273 | |
10274 `compile': In conjunction with `activate' specifies that the resulting | |
10275 advised function should be compiled. | |
10276 | |
10277 `disable': The defined advice will be disabled, hence, it will not be used | |
10278 during activation until somebody enables it. | |
10279 | |
10280 `preactivate': Preactivates the advised FUNCTION at macro-expansion/compile | |
10281 time. This generates a compiled advised definition according to the current | |
10282 advice state that will be used during activation if appropriate. Only use | |
10283 this if the `defadvice' gets actually compiled. | |
10284 | |
10285 `freeze': Expands the `defadvice' into a redefining `defun/defmacro' according | |
10286 to this particular single advice. No other advice information will be saved. | |
10287 Frozen advices cannot be undone, they behave like a hard redefinition of | |
10288 the advised function. `freeze' implies `activate' and `preactivate'. The | |
10289 documentation of the advised function can be dumped onto the `DOC' file | |
10290 during preloading. | |
10291 | |
10292 Look at the file `advice.el' for comprehensive documentation." nil 'macro) | |
10293 | |
10294 ;;;*** | |
10295 | |
10296 ;;;### (autoloads nil "assoc" "utils/assoc.el" (12559 34934)) | |
10297 ;;; Generated autoloads from utils/assoc.el | |
10298 | |
10299 ;;;*** | |
10300 | |
10301 ;;;### (autoloads nil "atomic-extents" "utils/atomic-extents.el" (12639 8649)) | |
10302 ;;; Generated autoloads from utils/atomic-extents.el | |
10303 | |
10304 ;;;*** | |
10305 | |
10306 ;;;### (autoloads (batch-update-autoloads update-directory-autoloads update-autoloads-here update-file-autoloads generate-file-autoloads) "autoload" "utils/autoload.el" (12639 8647)) | |
10307 ;;; Generated autoloads from utils/autoload.el | |
10308 | |
10309 (autoload 'generate-file-autoloads "autoload" "\ | |
10310 Insert at point a loaddefs autoload section for FILE. | |
10311 autoloads are generated for defuns and defmacros in FILE | |
10312 marked by `generate-autoload-cookie' (which see). | |
10313 If FILE is being visited in a buffer, the contents of the buffer | |
10314 are used." t nil) | |
10315 | |
10316 (autoload 'update-file-autoloads "autoload" "\ | |
10317 Update the autoloads for FILE in `generated-autoload-file' | |
10318 \(which FILE might bind in its local variables)." t nil) | |
10319 | |
10320 (autoload 'update-autoloads-here "autoload" "\ | |
10321 Update sections of the current buffer generated by \\[update-file-autoloads]." t nil) | |
10322 | |
10323 (autoload 'update-directory-autoloads "autoload" "\ | |
10324 Run \\[update-file-autoloads] on each .el file in DIR." t nil) | |
10325 | |
10326 (autoload 'batch-update-autoloads "autoload" "\ | |
10327 Update the autoloads for the files or directories on the command line. | |
10328 Runs \\[update-file-autoloads] on files and \\[update-directory-autoloads] | |
10329 on directories. Must be used only with -batch, and kills Emacs on completion. | |
10330 Each file will be processed even if an error occurred previously. | |
10331 For example, invoke `emacs -batch -f batch-update-autoloads *.el'." nil nil) | |
10332 | |
10333 ;;;*** | |
10334 | |
10335 ;;;### (autoloads nil "blessmail" "utils/blessmail.el" (12559 34936)) | |
10336 ;;; Generated autoloads from utils/blessmail.el | |
10337 | |
10338 ;;;*** | |
10339 | |
10340 ;;;### (autoloads (browse-url-lynx-emacs browse-url-lynx-xterm browse-url-w3 browse-url-iximosaic browse-url-grail browse-url-mosaic browse-url-netscape) "browse-url" "utils/browse-url.el" (12745 43114)) | |
10341 ;;; Generated autoloads from utils/browse-url.el | |
10342 | |
10343 (defvar browse-url-browser-function 'browse-url-w3 "\ | |
10344 *Function to display the current buffer in a WWW browser. | |
10345 Used by the `browse-url-at-point', `browse-url-at-mouse', and | |
10346 `browse-url-of-file' commands.") | |
10347 | |
10348 (autoload 'browse-url-netscape "browse-url" "\ | |
10349 Ask the Netscape WWW browser to load URL. | |
10350 | |
10351 Default to the URL around or before point. The strings in variable | |
10352 `browse-url-netscape-arguments' are also passed to Netscape. | |
10353 | |
10354 When called interactively, if variable `browse-url-new-window-p' is | |
10355 non-nil, load the document in a new Netscape window, otherwise use a | |
10356 random existing one. A non-nil interactive prefix argument reverses | |
10357 the effect of browse-url-new-window-p. | |
10358 | |
10359 When called non-interactively, optional second argument NEW-WINDOW is | |
10360 used instead of browse-url-new-window-p." t nil) | |
10361 | |
10362 (autoload 'browse-url-mosaic "browse-url" "\ | |
10363 Ask the XMosaic WWW browser to load URL. | |
10364 Default to the URL around or before point." t nil) | |
10365 | |
10366 (autoload 'browse-url-grail "browse-url" "\ | |
10367 Ask the Grail WWW browser to load URL. | |
10368 Default to the URL around or before point. Runs the program in the | |
10369 variable `browse-url-grail'." t nil) | |
10370 | |
10371 (autoload 'browse-url-iximosaic "browse-url" "\ | |
10372 Ask the IXIMosaic WWW browser to load URL. | |
10373 Default to the URL around or before point." t nil) | |
10374 | |
10375 (autoload 'browse-url-w3 "browse-url" "\ | |
10376 Ask the w3 WWW browser to load URL. | |
10377 Default to the URL around or before point." t nil) | |
10378 | |
10379 (autoload 'browse-url-lynx-xterm "browse-url" "\ | |
10380 Ask the Lynx WWW browser to load URL. | |
10381 Default to the URL around or before point. A new Lynx process is run | |
10382 in an Xterm window." t nil) | |
10383 | |
10384 (autoload 'browse-url-lynx-emacs "browse-url" "\ | |
10385 Ask the Lynx WWW browser to load URL. | |
10386 Default to the URL around or before point. Run a new Lynx process in | |
10387 an Emacs buffer." t nil) | |
10388 | |
10389 ;;;*** | |
10390 | |
10391 ;;;### (autoloads nil "crontab" "utils/crontab.el" (12559 34936)) | |
10392 ;;; Generated autoloads from utils/crontab.el | |
10393 | |
10394 ;;;*** | |
10395 | |
10396 ;;;### (autoloads nil "delbackspace" "utils/delbackspace.el" (12740 50723)) | |
10397 ;;; Generated autoloads from utils/delbackspace.el | |
10398 | |
10399 ;;;### (autoloads nil "derived" "utils/derived.el" (12639 8645)) | |
10400 ;;; Generated autoloads from utils/derived.el | |
10401 | |
10402 ;;;### (autoloads (docref-setup) "docref" "utils/docref.el" (12559 34937)) | |
10403 ;;; Generated autoloads from utils/docref.el | |
10404 | |
10405 (autoload 'docref-setup "docref" "\ | |
10406 Process docref cross-references in the current buffer. | |
10407 See also \\(f@docref-subst)." t nil) | |
10408 | |
10409 ;;;*** | |
10410 | |
10411 ;;;### (autoloads (easy-menu-define) "easymenu" "utils/easymenu.el" (12686 31729)) | |
10412 ;;; Generated autoloads from utils/easymenu.el | |
10413 | |
10414 (autoload 'easy-menu-define "easymenu" "\ | |
10415 Define a menu bar submenu in maps MAPS, according to MENU. | |
10416 The arguments SYMBOL and DOC are ignored; they are present for | |
10417 compatibility only. SYMBOL is not evaluated. In other Emacs versions | |
10418 these arguments may be used as a variable to hold the menu data, and a | |
10419 doc string for that variable. | |
10420 | |
10421 The first element of MENU must be a string. It is the menu bar item name. | |
10422 The rest of the elements are menu items. | |
10423 | |
10424 A menu item is usually a vector of three elements: [NAME CALLBACK ENABLE] | |
10425 | |
10426 NAME is a string--the menu item name. | |
10427 | |
10428 CALLBACK is a command to run when the item is chosen, | |
10429 or a list to evaluate when the item is chosen. | |
10430 | |
10431 ENABLE is an expression; the item is enabled for selection | |
10432 whenever this expression's value is non-nil. | |
10433 | |
10434 Alternatively, a menu item may have the form: | |
10435 | |
10436 [ NAME CALLBACK [ KEYWORD ARG ] ... ] | |
10437 | |
10438 Where KEYWORD is one of the symbol defined below. | |
10439 | |
10440 :keys KEYS | |
10441 | |
10442 KEYS is a string; a complex keyboard equivalent to this menu item. | |
10443 | |
10444 :active ENABLE | |
10445 | |
10446 ENABLE is an expression; the item is enabled for selection | |
10447 whenever this expression's value is non-nil. | |
10448 | |
10449 :suffix NAME | |
10450 | |
10451 NAME is a string; the name of an argument to CALLBACK. | |
10452 | |
10453 :style STYLE | |
10454 | |
10455 STYLE is a symbol describing the type of menu item. The following are | |
10456 defined: | |
10457 | |
10458 toggle: A checkbox. | |
10459 Currently just prepend the name with the string \"Toggle \". | |
10460 radio: A radio button. | |
10461 nil: An ordinary menu item. | |
10462 | |
10463 :selected SELECTED | |
10464 | |
10465 SELECTED is an expression; the checkbox or radio button is selected | |
10466 whenever this expression's value is non-nil. | |
10467 Currently just disable radio buttons, no effect on checkboxes. | |
10468 | |
10469 A menu item can be a string. Then that string appears in the menu as | |
10470 unselectable text. A string consisting solely of hyphens is displayed | |
10471 as a solid horizontal line. | |
10472 | |
10473 A menu item can be a list. It is treated as a submenu. | |
10474 The first element should be the submenu name. That's used as the | |
10475 menu item in the top-level menu. The cdr of the submenu list | |
10476 is a list of menu items, as above." nil 'macro) | |
10477 | |
10478 ;;;*** | |
10479 | |
10480 ;;;### (autoloads (elp-submit-bug-report elp-results elp-instrument-package elp-instrument-list elp-restore-function elp-instrument-function) "elp" "utils/elp.el" (12559 34934)) | |
10481 ;;; Generated autoloads from utils/elp.el | |
10482 | |
10483 (autoload 'elp-instrument-function "elp" "\ | |
10484 Instrument FUNSYM for profiling. | |
10485 FUNSYM must be a symbol of a defined function." t nil) | |
10486 | |
10487 (autoload 'elp-restore-function "elp" "\ | |
10488 Restore an instrumented function to its original definition. | |
10489 Argument FUNSYM is the symbol of a defined function." t nil) | |
10490 | |
10491 (autoload 'elp-instrument-list "elp" "\ | |
10492 Instrument for profiling, all functions in `elp-function-list'. | |
10493 Use optional LIST if provided instead." t nil) | |
10494 | |
10495 (autoload 'elp-instrument-package "elp" "\ | |
10496 Instrument for profiling, all functions which start with PREFIX. | |
10497 For example, to instrument all ELP functions, do the following: | |
10498 | |
10499 \\[elp-instrument-package] RET elp- RET" t nil) | |
10500 | |
10501 (autoload 'elp-results "elp" "\ | |
10502 Display current profiling results. | |
10503 If `elp-reset-after-results' is non-nil, then current profiling | |
10504 information for all instrumented functions are reset after results are | |
10505 displayed." t nil) | |
10506 | |
10507 (autoload 'elp-submit-bug-report "elp" "\ | |
10508 Submit via mail, a bug report on elp." t nil) | |
10509 | |
10510 ;;;*** | |
10511 | |
10512 ;;;### (autoloads (list-colors-display facemenu-read-color list-text-properties-at facemenu-remove-special facemenu-remove-props facemenu-set-read-only facemenu-set-intangible facemenu-set-invisible facemenu-make-much-smaller facemenu-make-much-larger facemenu-make-smaller facemenu-make-larger facemenu-set-size-default facemenu-set-face-from-menu facemenu-set-background facemenu-set-foreground facemenu-set-face) "facemenu" "utils/facemenu.el" (12657 40747)) | |
10513 ;;; Generated autoloads from utils/facemenu.el | |
10514 | |
10515 (defvar facemenu-menu nil "\ | |
10516 Facemenu top-level menu keymap.") | |
10517 | |
10518 (defvar facemenu-keymap (let ((map (make-sparse-keymap "Set face"))) (define-key map 111 'facemenu-set-face) map) "\ | |
10519 Keymap for face-changing commands. | |
10520 `Facemenu-update' fills in the keymap according to the bindings | |
10521 requested in `facemenu-keybindings'.") | |
10522 | |
10523 (autoload 'facemenu-set-face "facemenu" "\ | |
10524 Add FACE to the region or next character typed. | |
10525 It will be added to the top of the face list; any faces lower on the list that | |
10526 will not show through at all will be removed. | |
10527 | |
10528 Interactively, the face to be used is read with the minibuffer. | |
10529 | |
10530 If the region is active and there is no prefix argument, | |
10531 this command sets the region to the requested face. | |
10532 | |
10533 Otherwise, this command specifies the face for the next character | |
10534 inserted. Moving point or switching buffers before | |
10535 typing a character to insert cancels the specification." t nil) | |
10536 | |
10537 (autoload 'facemenu-set-foreground "facemenu" "\ | |
10538 Set the foreground color of the region or next character typed. | |
10539 The color is prompted for. A face named `fg:color' is used (or created). | |
10540 If the region is active, it will be set to the requested face. If | |
10541 it is inactive (even if mark-even-if-inactive is set) the next | |
10542 character that is typed (via `self-insert-command') will be set to | |
10543 the selected face. Moving point or switching buffers before | |
10544 typing a character cancels the request." t nil) | |
10545 | |
10546 (autoload 'facemenu-set-background "facemenu" "\ | |
10547 Set the background color of the region or next character typed. | |
10548 The color is prompted for. A face named `bg:color' is used (or created). | |
10549 If the region is active, it will be set to the requested face. If | |
10550 it is inactive (even if mark-even-if-inactive is set) the next | |
10551 character that is typed (via `self-insert-command') will be set to | |
10552 the selected face. Moving point or switching buffers before | |
10553 typing a character cancels the request." t nil) | |
10554 | |
10555 (autoload 'facemenu-set-face-from-menu "facemenu" "\ | |
10556 Set the face of the region or next character typed. | |
10557 This function is designed to be called from a menu; the face to use | |
10558 is the menu item's name. | |
10559 | |
10560 If the region is active and there is no prefix argument, | |
10561 this command sets the region to the requested face. | |
10562 | |
10563 Otherwise, this command specifies the face for the next character | |
10564 inserted. Moving point or switching buffers before | |
10565 typing a character to insert cancels the specification." nil nil) | |
10566 | |
10567 (autoload 'facemenu-set-size-default "facemenu" nil t nil) | |
10568 | |
10569 (autoload 'facemenu-make-larger "facemenu" nil t nil) | |
10570 | |
10571 (autoload 'facemenu-make-smaller "facemenu" nil t nil) | |
10572 | |
10573 (autoload 'facemenu-make-much-larger "facemenu" nil t nil) | |
10574 | |
10575 (autoload 'facemenu-make-much-smaller "facemenu" nil t nil) | |
10576 | |
10577 (autoload 'facemenu-set-invisible "facemenu" "\ | |
10578 Make the region invisible. | |
10579 This sets the `invisible' text property; it can be undone with | |
10580 `facemenu-remove-special'." t nil) | |
10581 | |
10582 (autoload 'facemenu-set-intangible "facemenu" "\ | |
10583 Make the region intangible: disallow moving into it. | |
10584 This sets the `intangible' text property; it can be undone with | |
10585 `facemenu-remove-special'." t nil) | |
10586 | |
10587 (autoload 'facemenu-set-read-only "facemenu" "\ | |
10588 Make the region unmodifiable. | |
10589 This sets the `read-only' text property; it can be undone with | |
10590 `facemenu-remove-special'." t nil) | |
10591 | |
10592 (autoload 'facemenu-remove-props "facemenu" "\ | |
10593 Remove all text properties that facemenu added to region." t nil) | |
10594 | |
10595 (autoload 'facemenu-remove-special "facemenu" "\ | |
10596 Remove all the \"special\" text properties from the region. | |
10597 These special properties include `invisible', `intangible' and `read-only'." t nil) | |
10598 | |
10599 (autoload 'list-text-properties-at "facemenu" "\ | |
10600 Pop up a buffer listing text-properties at LOCATION." t nil) | |
10601 | |
10602 (autoload 'facemenu-read-color "facemenu" "\ | |
10603 Read a color using the minibuffer." nil nil) | |
10604 | |
10605 (autoload 'list-colors-display "facemenu" "\ | |
10606 Display names of defined colors, and show what they look like. | |
10607 If the optional argument LIST is non-nil, it should be a list of | |
10608 colors to display. Otherwise, this command computes a list | |
10609 of colors that the current display can handle." t nil) | |
10610 | |
10611 ;;;*** | |
10612 | |
10613 ;;;### (autoloads nil "find-gc" "utils/find-gc.el" (12546 50541)) | |
10614 ;;; Generated autoloads from utils/find-gc.el | |
10615 | |
10616 ;;;### (autoloads nil "finder-inf" "utils/finder-inf.el" (12376 19577)) | |
10617 ;;; Generated autoloads from utils/finder-inf.el | |
10618 | |
10619 ;;;*** | |
10620 | |
10621 ;;;### (autoloads nil "finder" "utils/finder.el" (12546 50542)) | |
10622 ;;; Generated autoloads from utils/finder.el | |
10623 | |
10624 ;;;*** | |
10625 | |
10626 ;;;### (autoloads (enable-flow-control-on enable-flow-control) "flow-ctrl" "utils/flow-ctrl.el" (12639 8648)) | |
10627 ;;; Generated autoloads from utils/flow-ctrl.el | |
10628 | |
10629 (autoload 'enable-flow-control "flow-ctrl" "\ | |
10630 Toggle flow control handling. | |
10631 When handling is enabled, user can type C-s as C-\\, and C-q as C-^. | |
10632 With arg, enable flow control mode if arg is positive, otherwise disable." t nil) | |
10633 | |
10634 (autoload 'enable-flow-control-on "flow-ctrl" "\ | |
10635 Enable flow control if using one of a specified set of terminal types. | |
10636 Use `(enable-flow-control-on \"vt100\" \"h19\")' to enable flow control | |
10637 on VT-100 and H19 terminals. When flow control is enabled, | |
10638 you must type C-\\ to get the effect of a C-s, and type C-^ | |
10639 to get the effect of a C-q." nil nil) | |
10640 | |
10641 ;;;*** | |
10642 | |
10643 ;;;### (autoloads nil "foldout" "utils/foldout.el" (12558 60956)) | |
10644 ;;; Generated autoloads from utils/foldout.el | |
10645 | |
10646 ;;;*** | |
10647 | |
10648 ;;;### (autoloads nil "forms-d2" "utils/forms-d2.el" (12559 34931)) | |
10649 ;;; Generated autoloads from utils/forms-d2.el | |
10650 | |
10651 ;;;*** | |
10652 | |
10653 ;;;### (autoloads nil "forms-pass" "utils/forms-pass.el" (12559 34932)) | |
10654 ;;; Generated autoloads from utils/forms-pass.el | |
10655 | |
10656 ;;;### (autoloads (forms-find-file-other-window forms-find-file forms-mode) "forms" "utils/forms.el" (12559 34930)) | |
10657 ;;; Generated autoloads from utils/forms.el | |
10658 | |
10659 (autoload 'forms-mode "forms" "\ | |
10660 Major mode to visit files in a field-structured manner using a form. | |
10661 | |
10662 Commands: Equivalent keys in read-only mode: | |
10663 | |
10664 TAB forms-next-field TAB | |
10665 C-c TAB forms-next-field | |
10666 C-c < forms-first-record < | |
10667 C-c > forms-last-record > | |
10668 C-c ? describe-mode ? | |
10669 C-c C-k forms-delete-record | |
10670 C-c C-q forms-toggle-read-only q | |
10671 C-c C-o forms-insert-record | |
10672 C-c C-l forms-jump-record l | |
10673 C-c C-n forms-next-record n | |
10674 C-c C-p forms-prev-record p | |
10675 C-c C-s forms-search s | |
10676 C-c C-x forms-exit x" t nil) | |
10677 | |
10678 (autoload 'forms-find-file "forms" "\ | |
10679 Visit a file in Forms mode." t nil) | |
10680 | |
10681 (autoload 'forms-find-file-other-window "forms" "\ | |
10682 Visit a file in Forms mode in other window." t nil) | |
10683 | |
10684 ;;;*** | |
10685 | |
10686 ;;;### (autoloads nil "hide-copyleft" "utils/hide-copyleft.el" (12743 20032)) | |
10687 ;;; Generated autoloads from utils/hide-copyleft.el | |
10688 | |
10689 ;;;### (autoloads (highlight-headers-follow-url highlight-headers-follow-url-mosaic highlight-headers-follow-url-netscape highlight-headers) "highlight-headers" "utils/highlight-headers.el" (12743 22083)) | |
10690 ;;; Generated autoloads from utils/highlight-headers.el | |
10691 | |
10692 (autoload 'highlight-headers "highlight-headers" "\ | |
10693 Highlight message headers between start and end. | |
10694 Faces used: | |
10695 message-headers the part before the colon | |
10696 message-header-contents the part after the colon | |
10697 message-highlighted-header-contents contents of \"special\" headers | |
10698 message-cited-text quoted text from other messages | |
10699 | |
10700 Variables used: | |
10701 | |
10702 highlight-headers-regexp what makes a \"special\" header | |
10703 highlight-headers-citation-regexp matches lines of quoted text | |
10704 highlight-headers-citation-header-regexp matches headers for quoted text | |
10705 | |
10706 If HACK-SIG is true,then we search backward from END for something that | |
10707 looks like the beginning of a signature block, and don't consider that a | |
10708 part of the message (this is because signatures are often incorrectly | |
10709 interpreted as cited text.)" nil nil) | |
10710 | |
10711 (autoload 'highlight-headers-follow-url-netscape "highlight-headers" nil nil nil) | |
10712 | |
10713 (autoload 'highlight-headers-follow-url-mosaic "highlight-headers" nil nil nil) | |
10714 | |
10715 (autoload 'highlight-headers-follow-url "highlight-headers" nil t nil) | |
10716 | |
10717 ;;;*** | |
10718 | |
10719 ;;;### (autoloads nil "lib-complete" "utils/lib-complete.el" (12675 57130)) | |
10720 ;;; Generated autoloads from utils/lib-complete.el | |
10721 | |
10722 ;;;*** | |
10723 | |
10724 ;;;### (autoloads nil "live-icon" "utils/live-icon.el" (12657 40747)) | |
10725 ;;; Generated autoloads from utils/live-icon.el | |
10726 | |
10727 ;;;### (autoloads (unload-feature) "loadhist" "utils/loadhist.el" (12558 60957)) | |
10728 ;;; Generated autoloads from utils/loadhist.el | |
10729 | |
10730 (autoload 'unload-feature "loadhist" "\ | |
10731 Unload the library that provided FEATURE, restoring all its autoloads. | |
10732 If the feature is required by any other loaded code, and optional FORCE | |
10733 is nil, raise an error." t nil) | |
10734 | |
10735 ;;;*** | |
10736 | |
10737 ;;;### (autoloads (what-domain mail-extract-address-components) "mail-extr" "utils/mail-extr.el" (12743 22084)) | |
10738 ;;; Generated autoloads from utils/mail-extr.el | |
10739 | |
10740 (autoload 'mail-extract-address-components "mail-extr" "\ | |
10741 Given an RFC-822 ADDRESS, extract full name and canonical address. | |
10742 Returns a list of the form (FULL-NAME CANONICAL-ADDRESS). | |
10743 If no name can be extracted, FULL-NAME will be nil. | |
10744 ADDRESS may be a string or a buffer. If it is a buffer, the visible | |
10745 (narrowed) portion of the buffer will be interpreted as the address. | |
10746 (This feature exists so that the clever caller might be able to avoid | |
10747 consing a string.) | |
10748 If ADDRESS contains more than one RFC-822 address, only the first is | |
10749 returned. Some day this function may be extended to extract multiple | |
10750 addresses, or perhaps return the position at which parsing stopped." nil nil) | |
10751 | |
10752 (autoload 'what-domain "mail-extr" "\ | |
10753 Prompts for a mail domain, and prints the country it corresponds to | |
10754 in the minibuffer." t nil) | |
10755 | |
10756 ;;;*** | |
10757 | |
10758 ;;;### (autoloads (mail-fetch-field mail-file-babyl-p) "mail-utils" "utils/mail-utils.el" (12743 11630)) | |
10759 ;;; Generated autoloads from utils/mail-utils.el | |
10760 | |
10761 (defvar mail-use-rfc822 nil "\ | |
10762 *If non-nil, use a full, hairy RFC822 parser on mail addresses. | |
10763 Otherwise, (the default) use a smaller, somewhat faster, and | |
10764 often correct parser.") | |
10765 | |
10766 (autoload 'mail-file-babyl-p "mail-utils" nil nil nil) | |
10767 | |
10768 (autoload 'mail-fetch-field "mail-utils" "\ | |
10769 Return the value of the header field FIELD-NAME. | |
10770 The buffer is expected to be narrowed to just the headers of the message. | |
10771 If second arg LAST is non-nil, use the last such field if there are several. | |
10772 If third arg ALL is non-nil, concatenate all such fields with commas between." nil nil) | |
10773 | |
10774 ;;;*** | |
10775 | |
10776 ;;;### (autoloads nil "mailpost" "utils/mailpost.el" (12559 46922)) | |
10777 ;;; Generated autoloads from utils/mailpost.el | |
10778 | |
10779 ;;;*** | |
10780 | |
10781 ;;;### (autoloads nil "map-ynp" "utils/map-ynp.el" (12740 25222)) | |
10782 ;;; Generated autoloads from utils/map-ynp.el | |
10783 | |
10784 ;;;### (autoloads nil "meese" "utils/meese.el" (12559 34917)) | |
10785 ;;; Generated autoloads from utils/meese.el | |
10786 | |
10787 ;;;### (autoloads (read-passwd) "passwd" "utils/passwd.el" (12559 34928)) | |
10788 ;;; Generated autoloads from utils/passwd.el | |
10789 | |
10790 (autoload 'read-passwd "passwd" "\ | |
10791 Prompts for a password in the minibuffer, and returns it as a string. | |
10792 If PROMPT may be a prompt string or an alist of elements | |
10793 '(prompt . default). | |
10794 If optional arg CONFIRM is true, then ask the user to type the password | |
10795 again to confirm that they typed it correctly. | |
10796 If optional arg DEFAULT is provided, then it is a string to insert as | |
10797 the default choice (it is not, of course, displayed.) | |
10798 | |
10799 If running under X, the keyboard will be grabbed (with XGrabKeyboard()) | |
10800 to reduce the possibility that evesdropping is occuring. | |
10801 | |
10802 When reading a password, all keys self-insert, except for: | |
10803 \\<read-passwd-map> | |
10804 \\[read-passwd-erase-line] Erase the entire line. | |
10805 \\[quoted-insert] Insert the next character literally. | |
10806 \\[delete-backward-char] Delete the previous character. | |
10807 \\[exit-minibuffer] Accept what you have typed. | |
10808 \\[keyboard-quit] Abort the command. | |
10809 | |
10810 The returned value is always a newly-created string. No additional copies | |
10811 of the password remain after this function has returned. | |
10812 | |
10813 NOTE: unless great care is taken, the typed password will exist in plaintext | |
10814 form in the running image for an arbitrarily long time. Priveleged users may | |
10815 be able to extract it from memory. If emacs crashes, it may appear in the | |
10816 resultant core file. | |
10817 | |
10818 Some steps you can take to prevent the password from being copied around: | |
10819 | |
10820 - as soon as you are done with the returned string, destroy it with | |
10821 (fillarray string 0). The same goes for any default passwords | |
10822 or password histories. | |
10823 | |
10824 - do not copy the string, as with concat or substring - if you do, be | |
10825 sure to keep track of and destroy all copies. | |
10826 | |
10827 - do not insert the password into a buffer - if you do, be sure to | |
10828 overwrite the buffer text before killing it, as with the functions | |
10829 `passwd-erase-buffer' or `passwd-kill-buffer'. Note that deleting | |
10830 the text from the buffer does NOT necessarily remove the text from | |
10831 memory. | |
10832 | |
10833 - be careful of the undo history - if you insert the password into a | |
10834 buffer which has undo recording turned on, the password will be | |
10835 copied onto the undo list, and thus recoverable. | |
10836 | |
10837 - do not pass it as an argument to a shell command - anyone will be | |
10838 able to see it if they run `ps' at the right time. | |
10839 | |
10840 Note that the password will be temporarily recoverable with the `view-lossage' | |
10841 command. This data will not be overwritten until another hundred or so | |
10842 characters are typed. There's not currently a way around this." nil nil) | |
10843 | |
10844 ;;;*** | |
10845 | |
10846 ;;;### (autoloads (pp) "pp" "utils/pp.el" (12559 34933)) | |
10847 ;;; Generated autoloads from utils/pp.el | |
10848 | |
10849 (autoload 'pp "pp" "\ | |
10850 Output the pretty-printed representation of OBJECT, any Lisp object. | |
10851 Quoting characters are printed when needed to make output that `read' | |
10852 can handle, whenever this is possible. | |
10853 Output stream is STREAM, or value of `standard-output' (which see)." nil nil) | |
10854 | |
10855 (defalias 'pprint 'pp) | |
10856 | |
10857 ;;;*** | |
10858 | |
10859 ;;;### (autoloads nil "regi" "utils/regi.el" (12558 60951)) | |
10860 ;;; Generated autoloads from utils/regi.el | |
10861 | |
10862 ;;;*** | |
10863 | |
10864 ;;;### (autoloads (reporter-submit-bug-report) "reporter" "utils/reporter.el" (12559 34929)) | |
10865 ;;; Generated autoloads from utils/reporter.el | |
10866 | |
10867 (autoload 'reporter-submit-bug-report "reporter" nil nil nil) | |
10868 | |
10869 ;;;*** | |
10870 | |
10871 ;;;### (autoloads nil "rfc822" "utils/rfc822.el" (12559 34920)) | |
10872 ;;; Generated autoloads from utils/rfc822.el | |
10873 | |
10874 ;;;*** | |
10875 | |
10876 ;;;### (autoloads nil "shadowfile" "utils/shadowfile.el" (12558 60958)) | |
10877 ;;; Generated autoloads from utils/shadowfile.el | |
10878 | |
10879 ;;;### (autoloads (skeleton-pair-insert-maybe skeleton-insert skeleton-proxy define-skeleton) "skeleton" "utils/skeleton.el" (12675 57223)) | |
10880 ;;; Generated autoloads from utils/skeleton.el | |
10881 | |
10882 (defvar skeleton-filter 'identity "\ | |
10883 Function for transforming a skeleton-proxy's aliases' variable value.") | |
10884 | |
10885 (autoload 'define-skeleton "skeleton" "\ | |
10886 Define a user-configurable COMMAND that enters a statement skeleton. | |
10887 DOCUMENTATION is that of the command, while the variable of the same name, | |
10888 which contains the skeleton, has a documentation to that effect. | |
10889 INTERACTOR and ELEMENT ... are as defined under `skeleton-insert'." nil 'macro) | |
10890 | |
10891 (autoload 'skeleton-proxy "skeleton" "\ | |
10892 Insert skeleton defined by variable of same name (see `skeleton-insert'). | |
10893 Prefix ARG allows wrapping around words or regions (see `skeleton-insert'). | |
10894 This command can also be an abbrev expansion (3rd and 4th columns in | |
10895 \\[edit-abbrevs] buffer: \"\" command-name). | |
10896 | |
10897 When called as a function, optional first argument STR may also be a string | |
10898 which will be the value of `str' whereas the skeleton's interactor is then | |
10899 ignored." t nil) | |
10900 | |
10901 (autoload 'skeleton-insert "skeleton" "\ | |
10902 Insert the complex statement skeleton SKELETON describes very concisely. | |
10903 | |
10904 With optional third REGIONS wrap first interesting point (`_') in skeleton | |
10905 around next REGIONS words, if REGIONS is positive. If REGIONS is negative, | |
10906 wrap REGIONS preceding interregions into first REGIONS interesting positions | |
10907 \(successive `_'s) in skeleton. An interregion is the stretch of text between | |
10908 two contiguous marked points. If you marked A B C [] (where [] is the cursor) | |
10909 in alphabetical order, the 3 interregions are simply the last 3 regions. But | |
10910 if you marked B A [] C, the interregions are B-A, A-[], []-C. | |
10911 | |
10912 Optional fourth STR is the value for the variable `str' within the skeleton. | |
10913 When this is non-`nil' the interactor gets ignored, and this should be a valid | |
10914 skeleton element. | |
10915 | |
10916 SKELETON is made up as (INTERACTOR ELEMENT ...). INTERACTOR may be nil if | |
10917 not needed, a prompt-string or an expression for complex read functions. | |
10918 | |
10919 If ELEMENT is a string or a character it gets inserted (see also | |
10920 `skeleton-transformation'). Other possibilities are: | |
10921 | |
10922 \\n go to next line and indent according to mode | |
10923 _ interesting point, interregion here, point after termination | |
10924 > indent line (or interregion if > _) according to major mode | |
10925 & do next ELEMENT if previous moved point | |
10926 | do next ELEMENT if previous didn't move point | |
10927 -num delete num preceding characters (see `skeleton-untabify') | |
10928 resume: skipped, continue here if quit is signaled | |
10929 nil skipped | |
10930 | |
10931 Further elements can be defined via `skeleton-further-elements'. ELEMENT may | |
10932 itself be a SKELETON with an INTERACTOR. The user is prompted repeatedly for | |
10933 different inputs. The SKELETON is processed as often as the user enters a | |
10934 non-empty string. \\[keyboard-quit] terminates skeleton insertion, but | |
10935 continues after `resume:' and positions at `_' if any. If INTERACTOR in such | |
10936 a subskeleton is a prompt-string which contains a \".. %s ..\" it is | |
10937 formatted with `skeleton-subprompt'. Such an INTERACTOR may also a list of | |
10938 strings with the subskeleton being repeated once for each string. | |
10939 | |
10940 Quoted lisp-expressions are evaluated evaluated for their side-effect. | |
10941 Other lisp-expressions are evaluated and the value treated as above. | |
10942 Note that expressions may not return `t' since this impplies an | |
10943 endless loop. Modes can define other symbols by locally setting them | |
10944 to any valid skeleton element. The following local variables are | |
10945 available: | |
10946 | |
10947 str first time: read a string according to INTERACTOR | |
10948 then: insert previously read string once more | |
10949 help help-form during interaction with the user or `nil' | |
10950 input initial input (string or cons with index) while reading str | |
10951 v1, v2 local variables for memorising anything you want | |
10952 | |
10953 When done with skeleton, but before going back to `_'-point call | |
10954 `skeleton-end-hook' if that is non-`nil'." nil nil) | |
10955 | |
10956 (autoload 'skeleton-pair-insert-maybe "skeleton" "\ | |
10957 Insert the character you type ARG times. | |
10958 | |
10959 With no ARG, if `skeleton-pair' is non-nil, and if | |
10960 `skeleton-pair-on-word' is non-nil or we are not before or inside a | |
10961 word, and if `skeleton-pair-filter' returns nil, pairing is performed. | |
10962 | |
10963 If a match is found in `skeleton-pair-alist', that is inserted, else | |
10964 the defaults are used. These are (), [], {}, <> and `' for the | |
10965 symmetrical ones, and the same character twice for the others." t nil) | |
10966 | |
10967 ;;;*** | |
10968 | |
10969 ;;;### (autoloads nil "soundex" "utils/soundex.el" (12558 60959)) | |
10970 ;;; Generated autoloads from utils/soundex.el | |
10971 | |
10972 ;;;*** | |
10973 | |
10974 ;;;### (autoloads nil "symbol-syntax" "utils/symbol-syntax.el" (12573 6370)) | |
10975 ;;; Generated autoloads from utils/symbol-syntax.el | |
10976 | |
10977 ;;;*** | |
10978 | |
10979 ;;;### (autoloads nil "sysdep" "utils/sysdep.el" (12714 11722)) | |
10980 ;;; Generated autoloads from utils/sysdep.el | |
10981 | |
10982 ;;;### (autoloads nil "text-props" "utils/text-props.el" (12639 8651)) | |
10983 ;;; Generated autoloads from utils/text-props.el | |
10984 | |
10985 ;;;*** | |
10986 | |
10987 ;;;### (autoloads nil "thing" "utils/thing.el" (12558 60956)) | |
10988 ;;; Generated autoloads from utils/thing.el | |
10989 | |
10990 ;;;*** | |
10991 | |
10992 ;;;### (autoloads nil "timezone" "utils/timezone.el" (12546 50543)) | |
10993 ;;; Generated autoloads from utils/timezone.el | |
10994 | |
10995 ;;;### (autoloads (tq-create) "tq" "utils/tq.el" (12558 60960)) | |
10996 ;;; Generated autoloads from utils/tq.el | |
10997 | |
10998 (autoload 'tq-create "tq" "\ | |
10999 Create and return a transaction queue communicating with PROCESS. | |
11000 PROCESS should be a subprocess capable of sending and receiving | |
11001 streams of bytes. It may be a local process, or it may be connected | |
11002 to a tcp server on another machine." nil nil) | |
11003 | |
11004 ;;;*** | |
11005 | |
11006 ;;;### (autoloads (trace-function-background trace-function) "trace" "utils/trace.el" (12546 50540)) | |
11007 ;;; Generated autoloads from utils/trace.el | |
11008 | |
11009 (defvar trace-buffer "*trace-output*" "\ | |
11010 *Trace output will by default go to that buffer.") | |
11011 | |
11012 (autoload 'trace-function "trace" "\ | |
11013 Traces FUNCTION with trace output going to BUFFER. | |
11014 For every call of FUNCTION Lisp-style trace messages that display argument | |
11015 and return values will be inserted into BUFFER. This function generates the | |
11016 trace advice for FUNCTION and activates it together with any other advice | |
11017 there might be!! The trace BUFFER will popup whenever FUNCTION is called. | |
11018 Do not use this to trace functions that switch buffers or do any other | |
11019 display oriented stuff, use `trace-function-background' instead." t nil) | |
11020 | |
11021 (autoload 'trace-function-background "trace" "\ | |
11022 Traces FUNCTION with trace output going quietly to BUFFER. | |
11023 For every call of FUNCTION Lisp-style trace messages that display argument | |
11024 and return values will be inserted into BUFFER. This function generates the | |
11025 trace advice for FUNCTION and activates it together with any other advice | |
11026 there might be!! Trace output will quietly go to BUFFER without changing | |
11027 the window or buffer configuration at all." t nil) | |
11028 | |
11029 ;;;*** | |
11030 | |
11031 ;;;### (autoloads nil "tree-menu" "utils/tree-menu.el" (12558 60954)) | |
11032 ;;; Generated autoloads from utils/tree-menu.el | |
11033 | |
11034 ;;;### (autoloads (y-or-n-p-with-timeout yes-or-no-p-with-timeout with-timeout with-timeout-internal) "with-timeout" "utils/with-timeout.el" (12558 60948)) | |
11035 ;;; Generated autoloads from utils/with-timeout.el | |
11036 | |
11037 (autoload 'with-timeout-internal "with-timeout" nil nil nil) | |
11038 | |
11039 (autoload 'with-timeout "with-timeout" "\ | |
11040 Usage: (with-timeout (seconds &rest timeout-forms) &rest body) | |
11041 This is just like progn, but if the given number of seconds expires before | |
11042 the body returns, then timeout-forms are evaluated and returned instead. | |
11043 The body won't be interrupted in the middle of a computation: the check for | |
11044 the timer expiration only occurs when body does a redisplay, or prompts the | |
11045 user for input, or calls accept-process-output." nil 'macro) | |
11046 | |
11047 (autoload 'yes-or-no-p-with-timeout "with-timeout" "\ | |
11048 Just like yes-or-no-p, but will time out after TIMEOUT seconds | |
11049 if the user has not yes answered, returning DEFAULT-VALUE." nil nil) | |
11050 | |
11051 (autoload 'y-or-n-p-with-timeout "with-timeout" "\ | |
11052 Just like y-or-n-p, but will time out after TIMEOUT seconds | |
11053 if the user has not yes answered, returning DEFAULT-VALUE." nil nil) | |
11054 | |
11055 ;;;*** | |
11056 | |
11057 ;;;### (autoloads (xbm-button-create) "xbm-button" "utils/xbm-button.el" (12639 8650)) | |
11058 ;;; Generated autoloads from utils/xbm-button.el | |
11059 | |
11060 (autoload 'xbm-button-create "xbm-button" "\ | |
11061 Returns a list of XBM image instantiators for a button displaying TEXT. | |
11062 The list is of the form | |
11063 (UP DOWN DISABLED) | |
11064 where UP, DOWN, and DISABLED are the up, down and disabled image | |
11065 instantiators for the button. | |
11066 | |
11067 BORDER-THICKNESS specifies how many pixels should be used for the | |
11068 borders on the edges of the buttons. It should be a positive integer, | |
11069 or 0 to mean no border." nil nil) | |
11070 | |
11071 ;;;*** | |
11072 | |
11073 ;;;### (autoloads (xpm-button-create) "xpm-button" "utils/xpm-button.el" (12648 18605)) | |
11074 ;;; Generated autoloads from utils/xpm-button.el | |
11075 | |
11076 (autoload 'xpm-button-create "xpm-button" "\ | |
11077 Returns a list of XPM image instantiators for a button displaying TEXT. | |
11078 The list is of the form | |
11079 (UP DOWN DISABLED) | |
11080 where UP, DOWN, and DISABLED are the up, down and disabled image | |
11081 instantiators for the button. | |
11082 | |
11083 SHADOW-THICKNESS specifies how many pixels should be used for the | |
11084 shadows on the edges of the buttons. It should be a positive integer, | |
11085 or 0 to mean no shadows on the edges. | |
11086 FG-COLOR is the color used to display the text. It should be a string. | |
11087 BG-COLOR is the background color the text will be displayed upon. | |
11088 It should be a string." nil nil) | |
11089 | |
11090 ;;;*** | |
11091 | |
11092 ;;;### (autoloads nil "viper-ex" "viper/viper-ex.el" (12745 61913)) | |
11093 ;;; Generated autoloads from viper/viper-ex.el | |
11094 | |
11095 ;;;*** | |
11096 | |
11097 ;;;### (autoloads nil "viper-keym" "viper/viper-keym.el" (12639 8723)) | |
11098 ;;; Generated autoloads from viper/viper-keym.el | |
11099 | |
11100 ;;;### (autoloads nil "viper-macs" "viper/viper-macs.el" (12728 13099)) | |
11101 ;;; Generated autoloads from viper/viper-macs.el | |
11102 | |
11103 ;;;*** | |
11104 | |
11105 ;;;### (autoloads nil "viper-mous" "viper/viper-mous.el" (12728 13099)) | |
11106 ;;; Generated autoloads from viper/viper-mous.el | |
11107 | |
11108 ;;;*** | |
11109 | |
11110 ;;;### (autoloads nil "viper-util" "viper/viper-util.el" (12745 61913)) | |
11111 ;;; Generated autoloads from viper/viper-util.el | |
11112 | |
11113 ;;;### (autoloads (viper-mode) "viper" "viper/viper.el" (12745 61914)) | |
11114 ;;; Generated autoloads from viper/viper.el | |
11115 | |
11116 (autoload 'viper-mode "viper" "\ | |
11117 Turn on Viper emulation of Vi." t nil) | |
11118 | |
11119 (defalias 'vip-mode 'viper-mode) | |
11120 | |
11121 ;;;*** | |
11122 | |
11123 ;;;### (autoloads nil "tapestry" "vm/tapestry.el" (12376 19602)) | |
11124 ;;; Generated autoloads from vm/tapestry.el | |
11125 | |
11126 ;;;*** | |
11127 | |
11128 ;;;### (autoloads nil "vm-autoload" "vm/vm-autoload.el" (12744 48175)) | |
11129 ;;; Generated autoloads from vm/vm-autoload.el | |
11130 | |
11131 ;;;*** | |
11132 | |
11133 ;;;### (autoloads nil "vm-byteopts" "vm/vm-byteopts.el" (12244 51680)) | |
11134 ;;; Generated autoloads from vm/vm-byteopts.el | |
11135 | |
11136 ;;;### (autoloads nil "vm-delete" "vm/vm-delete.el" (12740 28348)) | |
11137 ;;; Generated autoloads from vm/vm-delete.el | |
11138 | |
11139 ;;;### (autoloads nil "vm-digest" "vm/vm-digest.el" (12376 19586)) | |
11140 ;;; Generated autoloads from vm/vm-digest.el | |
11141 | |
11142 ;;;### (autoloads (vm-easy-menu-create-keymaps vm-easy-menu-define) "vm-easymenu" "vm/vm-easymenu.el" (12376 19602)) | |
11143 ;;; Generated autoloads from vm/vm-easymenu.el | |
11144 | |
11145 (autoload 'vm-easy-menu-define "vm-easymenu" "\ | |
11146 Define a menu bar submenu in maps MAPS, according to MENU. | |
11147 The menu keymap is stored in symbol SYMBOL, both as its value | |
11148 and as its function definition. DOC is used as the doc string for SYMBOL. | |
11149 | |
11150 The first element of MENU must be a string. It is the menu bar item name. | |
11151 The rest of the elements are menu items. | |
11152 | |
11153 A menu item is usually a vector of three elements: [NAME CALLBACK ENABLE] | |
11154 | |
11155 NAME is a string--the menu item name. | |
11156 | |
11157 CALLBACK is a command to run when the item is chosen, | |
11158 or a list to evaluate when the item is chosen. | |
11159 | |
11160 ENABLE is an expression; the item is enabled for selection | |
11161 whenever this expression's value is non-nil. | |
11162 | |
11163 Alternatively, a menu item may have the form: | |
11164 | |
11165 [ NAME CALLBACK [ KEYWORD ARG ] ... ] | |
11166 | |
11167 Where KEYWORD is one of the symbol defined below. | |
11168 | |
11169 :keys KEYS | |
11170 | |
11171 KEYS is a string; a complex keyboard equivalent to this menu item. | |
11172 This is normally not needed because keyboard equivalents are usually | |
11173 computed automatically. | |
11174 | |
11175 :active ENABLE | |
11176 | |
11177 ENABLE is an expression; the item is enabled for selection | |
11178 whenever this expression's value is non-nil. | |
11179 | |
11180 :suffix NAME | |
11181 | |
11182 NAME is a string; the name of an argument to CALLBACK. | |
11183 | |
11184 :style | |
11185 | |
11186 STYLE is a symbol describing the type of menu item. The following are | |
11187 defined: | |
11188 | |
11189 toggle: A checkbox. | |
11190 Currently just prepend the name with the string \"Toggle \". | |
11191 radio: A radio button. | |
11192 nil: An ordinary menu item. | |
11193 | |
11194 :selected SELECTED | |
11195 | |
11196 SELECTED is an expression; the checkbox or radio button is selected | |
11197 whenever this expression's value is non-nil. | |
11198 Currently just disable radio buttons, no effect on checkboxes. | |
11199 | |
11200 A menu item can be a string. Then that string appears in the menu as | |
11201 unselectable text. A string consisting solely of hyphens is displayed | |
11202 as a solid horizontal line. | |
11203 | |
11204 A menu item can be a list. It is treated as a submenu. | |
11205 The first element should be the submenu name. That's used as the | |
11206 menu item in the top-level menu. The cdr of the submenu list | |
11207 is a list of menu items, as above." nil 'macro) | |
11208 | |
11209 (autoload 'vm-easy-menu-create-keymaps "vm-easymenu" nil nil nil) | |
11210 | |
11211 ;;;*** | |
11212 | |
11213 ;;;### (autoloads nil "vm-edit" "vm/vm-edit.el" (12376 19587)) | |
11214 ;;; Generated autoloads from vm/vm-edit.el | |
11215 | |
11216 ;;;*** | |
11217 | |
11218 ;;;### (autoloads nil "vm-folder" "vm/vm-folder.el" (12740 28349)) | |
11219 ;;; Generated autoloads from vm/vm-folder.el | |
11220 | |
11221 ;;;### (autoloads nil "vm-license" "vm/vm-license.el" (12376 19590)) | |
11222 ;;; Generated autoloads from vm/vm-license.el | |
11223 | |
11224 ;;;*** | |
11225 | |
11226 ;;;### (autoloads nil "vm-mark" "vm/vm-mark.el" (12376 19590)) | |
11227 ;;; Generated autoloads from vm/vm-mark.el | |
11228 | |
11229 ;;;*** | |
11230 | |
11231 ;;;### (autoloads nil "vm-menu" "vm/vm-menu.el" (12376 19592)) | |
11232 ;;; Generated autoloads from vm/vm-menu.el | |
11233 | |
11234 ;;;*** | |
11235 | |
11236 ;;;### (autoloads nil "vm-message" "vm/vm-message.el" (12376 19589)) | |
11237 ;;; Generated autoloads from vm/vm-message.el | |
11238 | |
11239 ;;;*** | |
11240 | |
11241 ;;;### (autoloads nil "vm-minibuf" "vm/vm-minibuf.el" (12376 19600)) | |
11242 ;;; Generated autoloads from vm/vm-minibuf.el | |
11243 | |
11244 ;;;*** | |
11245 | |
11246 ;;;### (autoloads nil "vm-misc" "vm/vm-misc.el" (12740 28349)) | |
11247 ;;; Generated autoloads from vm/vm-misc.el | |
11248 | |
11249 ;;;*** | |
11250 | |
11251 ;;;### (autoloads nil "vm-motion" "vm/vm-motion.el" (12740 28349)) | |
11252 ;;; Generated autoloads from vm/vm-motion.el | |
11253 | |
11254 ;;;### (autoloads nil "vm-mouse" "vm/vm-mouse.el" (12376 19602)) | |
11255 ;;; Generated autoloads from vm/vm-mouse.el | |
11256 | |
11257 ;;;*** | |
11258 | |
11259 ;;;### (autoloads nil "vm-page" "vm/vm-page.el" (12376 19594)) | |
11260 ;;; Generated autoloads from vm/vm-page.el | |
11261 | |
11262 ;;;*** | |
11263 | |
11264 ;;;### (autoloads nil "vm-pop" "vm/vm-pop.el" (12740 28349)) | |
11265 ;;; Generated autoloads from vm/vm-pop.el | |
11266 | |
11267 ;;;### (autoloads nil "vm-reply" "vm/vm-reply.el" (12376 19587)) | |
11268 ;;; Generated autoloads from vm/vm-reply.el | |
11269 | |
11270 ;;;*** | |
11271 | |
11272 ;;;### (autoloads nil "vm-save" "vm/vm-save.el" (12376 19592)) | |
11273 ;;; Generated autoloads from vm/vm-save.el | |
11274 | |
11275 ;;;*** | |
11276 | |
11277 ;;;### (autoloads nil "vm-search" "vm/vm-search.el" (12740 30223)) | |
11278 ;;; Generated autoloads from vm/vm-search.el | |
11279 | |
11280 ;;;### (autoloads nil "vm-search18" "vm/vm-search18.el" (12244 51678)) | |
11281 ;;; Generated autoloads from vm/vm-search18.el | |
11282 | |
11283 ;;;### (autoloads nil "vm-search19" "vm/vm-search19.el" (12376 19598)) | |
11284 ;;; Generated autoloads from vm/vm-search19.el | |
11285 | |
11286 ;;;*** | |
11287 | |
11288 ;;;### (autoloads nil "vm-sort" "vm/vm-sort.el" (12376 19598)) | |
11289 ;;; Generated autoloads from vm/vm-sort.el | |
11290 | |
11291 ;;;*** | |
11292 | |
11293 ;;;### (autoloads nil "vm-startup" "vm/vm-startup.el" (12740 35805)) | |
11294 ;;; Generated autoloads from vm/vm-startup.el | |
11295 | |
11296 ;;;*** | |
11297 | |
11298 ;;;### (autoloads nil "vm-summary" "vm/vm-summary.el" (12740 28349)) | |
11299 ;;; Generated autoloads from vm/vm-summary.el | |
11300 | |
11301 ;;;### (autoloads nil "vm-thread" "vm/vm-thread.el" (12376 19602)) | |
11302 ;;; Generated autoloads from vm/vm-thread.el | |
11303 | |
11304 ;;;*** | |
11305 | |
11306 ;;;### (autoloads nil "vm-toolbar" "vm/vm-toolbar.el" (12714 11723)) | |
11307 ;;; Generated autoloads from vm/vm-toolbar.el | |
11308 | |
11309 ;;;*** | |
11310 | |
11311 ;;;### (autoloads nil "vm-undo" "vm/vm-undo.el" (12244 51671)) | |
11312 ;;; Generated autoloads from vm/vm-undo.el | |
11313 | |
11314 ;;;*** | |
11315 | |
11316 ;;;### (autoloads nil "vm-vars" "vm/vm-vars.el" (12740 28350)) | |
11317 ;;; Generated autoloads from vm/vm-vars.el | |
11318 | |
11319 ;;;*** | |
11320 | |
11321 ;;;### (autoloads nil "vm-version" "vm/vm-version.el" (12740 28351)) | |
11322 ;;; Generated autoloads from vm/vm-version.el | |
11323 | |
11324 ;;;*** | |
11325 | |
11326 ;;;### (autoloads nil "vm-virtual" "vm/vm-virtual.el" (12312 61353)) | |
11327 ;;; Generated autoloads from vm/vm-virtual.el | |
11328 | |
11329 ;;;*** | |
11330 | |
11331 ;;;### (autoloads nil "vm-window" "vm/vm-window.el" (12740 28350)) | |
11332 ;;; Generated autoloads from vm/vm-window.el | |
11333 | |
11334 ;;;*** | |
11335 | |
11336 ;;;### (autoloads nil "docomp" "w3/docomp.el" (12727 30855)) | |
11337 ;;; Generated autoloads from w3/docomp.el | |
11338 | |
11339 ;;;*** | |
11340 | |
11341 ;;;### (autoloads nil "font" "w3/font.el" (12720 56497)) | |
11342 ;;; Generated autoloads from w3/font.el | |
11343 | |
11344 ;;;*** | |
11345 | |
11346 ;;;### (autoloads nil "images" "w3/images.el" (12714 11732)) | |
11347 ;;; Generated autoloads from w3/images.el | |
11348 | |
11349 ;;;*** | |
11350 | |
11351 ;;;### (autoloads nil "w3-about" "w3/w3-about.el" (12745 49143)) | |
11352 ;;; Generated autoloads from w3/w3-about.el | |
11353 | |
11354 ;;;### (autoloads nil "w3-annotat" "w3/w3-annotat.el" (12727 30858)) | |
11355 ;;; Generated autoloads from w3/w3-annotat.el | |
11356 | |
11357 ;;;*** | |
11358 | |
11359 ;;;### (autoloads nil "w3-auto" "w3/w3-auto.el" (12727 30865)) | |
11360 ;;; Generated autoloads from w3/w3-auto.el | |
11361 | |
11362 ;;;### (autoloads nil "w3-beta" "w3/w3-beta.el" (12686 31748)) | |
11363 ;;; Generated autoloads from w3/w3-beta.el | |
11364 | |
11365 ;;;*** | |
11366 | |
11367 ;;;### (autoloads nil "w3-draw" "w3/w3-draw.el" (12727 30859)) | |
11368 ;;; Generated autoloads from w3/w3-draw.el | |
11369 | |
11370 ;;;*** | |
11371 | |
11372 ;;;### (autoloads nil "w3-e19" "w3/w3-e19.el" (12727 30856)) | |
11373 ;;; Generated autoloads from w3/w3-e19.el | |
11374 | |
11375 ;;;*** | |
11376 | |
11377 ;;;### (autoloads nil "w3-emulate" "w3/w3-emulate.el" (12714 11733)) | |
11378 ;;; Generated autoloads from w3/w3-emulate.el | |
11379 | |
11380 ;;;*** | |
11381 | |
11382 ;;;### (autoloads nil "w3-forms" "w3/w3-forms.el" (12740 27003)) | |
11383 ;;; Generated autoloads from w3/w3-forms.el | |
11384 | |
11385 ;;;*** | |
11386 | |
11387 ;;;### (autoloads (w3-use-hotlist) "w3-hot" "w3/w3-hot.el" (12727 30861)) | |
11388 ;;; Generated autoloads from w3/w3-hot.el | |
11389 | |
11390 (autoload 'w3-use-hotlist "w3-hot" "\ | |
11391 Possibly go to a link in your W3/Mosaic hotlist. | |
11392 This is part of the emacs World Wide Web browser. It will prompt for | |
11393 one of the items in your 'hotlist'. A hotlist is a list of often | |
11394 visited or interesting items you have found on the World Wide Web." t nil) | |
11395 | |
11396 ;;;*** | |
11397 | |
11398 ;;;### (autoloads nil "w3-imap" "w3/w3-imap.el" (12715 10457)) | |
11399 ;;; Generated autoloads from w3/w3-imap.el | |
11400 | |
11401 ;;;*** | |
11402 | |
11403 ;;;### (autoloads nil "w3-keyword" "w3/w3-keyword.el" (12727 30860)) | |
11404 ;;; Generated autoloads from w3/w3-keyword.el | |
11405 | |
11406 ;;;*** | |
11407 | |
11408 ;;;### (autoloads nil "w3-latex" "w3/w3-latex.el" (12727 30593)) | |
11409 ;;; Generated autoloads from w3/w3-latex.el | |
11410 | |
11411 ;;;*** | |
11412 | |
11413 ;;;### (autoloads nil "w3-menu" "w3/w3-menu.el" (12727 30864)) | |
11414 ;;; Generated autoloads from w3/w3-menu.el | |
11415 | |
11416 ;;;### (autoloads nil "w3-mouse" "w3/w3-mouse.el" (12720 56526)) | |
11417 ;;; Generated autoloads from w3/w3-mouse.el | |
11418 | |
11419 ;;;*** | |
11420 | |
11421 ;;;### (autoloads nil "w3-mule" "w3/w3-mule.el" (12686 31739)) | |
11422 ;;; Generated autoloads from w3/w3-mule.el | |
11423 | |
11424 ;;;*** | |
11425 | |
11426 ;;;### (autoloads nil "w3-parse" "w3/w3-parse.el" (12727 30863)) | |
11427 ;;; Generated autoloads from w3/w3-parse.el | |
11428 | |
11429 ;;;*** | |
11430 | |
11431 ;;;### (autoloads nil "w3-prefs" "w3/w3-prefs.el" (12740 27017)) | |
11432 ;;; Generated autoloads from w3/w3-prefs.el | |
11433 | |
11434 ;;;### (autoloads nil "w3-print" "w3/w3-print.el" (12727 30863)) | |
11435 ;;; Generated autoloads from w3/w3-print.el | |
11436 | |
11437 ;;;*** | |
11438 | |
11439 ;;;### (autoloads nil "w3-speak" "w3/w3-speak.el" (12740 27018)) | |
11440 ;;; Generated autoloads from w3/w3-speak.el | |
11441 | |
11442 ;;;### (autoloads nil "w3-style" "w3/w3-style.el" (12727 30864)) | |
11443 ;;; Generated autoloads from w3/w3-style.el | |
11444 | |
11445 ;;;*** | |
11446 | |
11447 ;;;### (autoloads nil "w3-sysdp" "w3/w3-sysdp.el" (12727 30857)) | |
11448 ;;; Generated autoloads from w3/w3-sysdp.el | |
11449 | |
11450 ;;;### (autoloads nil "w3-toolbar" "w3/w3-toolbar.el" (12686 31734)) | |
11451 ;;; Generated autoloads from w3/w3-toolbar.el | |
11452 | |
11453 ;;;*** | |
11454 | |
11455 ;;;### (autoloads nil "w3-vars" "w3/w3-vars.el" (12745 49201)) | |
11456 ;;; Generated autoloads from w3/w3-vars.el | |
11457 | |
11458 ;;;*** | |
11459 | |
11460 ;;;### (autoloads nil "w3-widget" "w3/w3-widget.el" (12720 56504)) | |
11461 ;;; Generated autoloads from w3/w3-widget.el | |
11462 | |
11463 ;;;### (autoloads nil "w3-xemac" "w3/w3-xemac.el" (12727 30860)) | |
11464 ;;; Generated autoloads from w3/w3-xemac.el | |
11465 | |
11466 ;;;### (autoloads (w3-follow-link w3-follow-link-other-frame w3-do-setup w3 w3-preview-this-buffer w3-batch-fetch w3-follow-url-at-point w3-follow-url-at-point-other-frame w3-maybe-follow-link w3-maybe-follow-link-mouse w3-fetch w3-fetch-other-frame w3-find-file w3-open-local) "w3" "w3/w3.el" (12740 27016)) | |
11467 ;;; Generated autoloads from w3/w3.el | |
11468 | |
11469 (autoload 'w3-open-local "w3" "\ | |
11470 Find a local file, and interpret it as a hypertext document. | |
11471 It will prompt for an existing file or directory, and retrieve it as a | |
11472 hypertext document. If it is a directory, and url-use-hypertext-dired | |
11473 is non-nil, then an HTML directory listing is created on the fly. | |
11474 Otherwise, dired-mode is used to visit the buffer." t nil) | |
11475 | |
11476 (autoload 'w3-find-file "w3" "\ | |
11477 Find a local file, and interpret it as a hypertext document. | |
11478 It will prompt for an existing file or directory, and retrieve it as a | |
11479 hypertext document. If it is a directory, and url-use-hypertext-dired | |
11480 is non-nil, then an HTML directory listing is created on the fly. | |
11481 Otherwise, dired-mode is used to visit the buffer." t nil) | |
11482 | |
11483 (autoload 'w3-fetch-other-frame "w3" "\ | |
11484 Attempt to follow the hypertext reference under point in a new frame. | |
11485 With prefix-arg P, ignore viewers and dump the link straight | |
11486 to disk." t nil) | |
11487 | |
11488 (autoload 'w3-fetch "w3" "\ | |
11489 Retrieve a document over the World Wide Web. | |
11490 The World Wide Web is a global hypertext system started by CERN in | |
11491 Switzerland in 1991. | |
11492 | |
11493 The document should be specified by its fully specified | |
11494 Uniform Resource Locator. The document will be parsed, printed, or | |
11495 passed to an external viewer as appropriate. Variable | |
11496 `mm-mime-info' specifies viewers for particular file types." t nil) | |
11497 | |
11498 (autoload 'w3-maybe-follow-link-mouse "w3" "\ | |
11499 Maybe follow a hypertext link under point. | |
11500 If there is no link under point, this will try using | |
11501 url-get-url-at-point" t nil) | |
11502 | |
11503 (autoload 'w3-maybe-follow-link "w3" "\ | |
11504 Maybe follow a hypertext link under point. | |
11505 If there is no link under point, this will try using | |
11506 url-get-url-at-point" t nil) | |
11507 | |
11508 (autoload 'w3-follow-url-at-point-other-frame "w3" "\ | |
11509 Follow the URL under PT, defaults to link under (point)" t nil) | |
11510 | |
11511 (autoload 'w3-follow-url-at-point "w3" "\ | |
11512 Follow the URL under PT, defaults to link under (point)" t nil) | |
11513 | |
11514 (autoload 'w3-batch-fetch "w3" "\ | |
11515 Fetch all the URLs on the command line and save them to files in | |
11516 the current directory. The first argument after the -f w3-batch-fetch | |
11517 on the command line should be a string specifying how to save the | |
11518 information retrieved. If it is \"html\", then the page will be | |
11519 unformatted when it is written to disk. If it is \"text\", then the | |
11520 page will be formatted before it is written to disk. If it is | |
11521 \"binary\" it will not mess with the file extensions, and just save | |
11522 the data in raw binary format. If none of those, the default is | |
11523 \"text\", and the first argument is treated as a normal URL." nil nil) | |
11524 | |
11525 (autoload 'w3-preview-this-buffer "w3" "\ | |
11526 See what this buffer will look like when its formatted as HTML. | |
11527 HTML is the HyperText Markup Language used by the World Wide Web to | |
11528 specify formatting for text. More information on HTML can be found at | |
11529 ftp.w3.org:/pub/www/doc." t nil) | |
11530 | |
11531 (autoload 'w3 "w3" "\ | |
11532 Retrieve the default World Wide Web home page. | |
11533 The World Wide Web is a global hypertext system started by CERN in | |
11534 Switzerland in 1991. | |
11535 | |
11536 The home page is specified by the variable w3-default-homepage. The | |
11537 document should be specified by its fully specified Uniform Resource | |
11538 Locator. The document will be parsed as HTML (if appropriate) and | |
11539 displayed in a new buffer." t nil) | |
11540 | |
11541 (autoload 'w3-do-setup "w3" "\ | |
11542 Do setup - this is to avoid conflict with user settings when W3 is | |
11543 dumped with emacs." nil nil) | |
11544 | |
11545 (autoload 'w3-follow-link-other-frame "w3" "\ | |
11546 Attempt to follow the hypertext reference under point in a new frame. | |
11547 With prefix-arg P, ignore viewers and dump the link straight | |
11548 to disk." nil nil) | |
11549 | |
11550 (autoload 'w3-follow-link "w3" "\ | |
11551 Attempt to follow the hypertext reference under point. | |
11552 With prefix-arg P, ignore viewers and dump the link straight | |
11553 to disk." t nil) | |
11554 | |
11555 ;;;*** | |
11556 | |
11557 ;;;### (autoloads nil "widget-edit" "w3/widget-edit.el" (12740 27017)) | |
11558 ;;; Generated autoloads from w3/widget-edit.el | |
11559 | |
11560 ;;;*** | |
11561 | |
11562 ;;;### (autoloads nil "widget" "w3/widget.el" (12720 56523)) | |
11563 ;;; Generated autoloads from w3/widget.el | |
11564 | |
11565 ;;;### (autoloads nil "x-compose" "x11/x-compose.el" (12202 12100)) | |
11566 ;;; Generated autoloads from x11/x-compose.el | |
11567 | |
11568 ;;;### (autoloads nil "x-faces" "x11/x-faces.el" (12698 33571)) | |
11569 ;;; Generated autoloads from x11/x-faces.el | |
11570 | |
11571 ;;;*** | |
11572 | |
11573 ;;;### (autoloads (font-menu-weight-constructor font-menu-size-constructor font-menu-family-constructor reset-device-font-menus) "x-font-menu" "x11/x-font-menu.el" (12675 57137)) | |
11574 ;;; Generated autoloads from x11/x-font-menu.el | |
11575 | |
11576 (defvar font-menu-ignore-scaled-fonts t "\ | |
11577 *If non-nil, then the font menu will try to show only bitmap fonts.") | |
11578 | |
11579 (defvar font-menu-this-frame-only-p t "\ | |
11580 *If non-nil, then changing the default font from the font menu will only | |
11581 affect one frame instead of all frames.") | |
11582 | |
11583 (fset 'install-font-menus 'reset-device-font-menus) | |
11584 | |
11585 (autoload 'reset-device-font-menus "x-font-menu" "\ | |
11586 Generates the `Font', `Size', and `Weight' submenus for the Options menu. | |
11587 This is run the first time that a font-menu is needed for each device. | |
11588 If you don't like the lazy invocation of this function, you can add it to | |
11589 `create-device-hook' and that will make the font menus respond more quickly | |
11590 when they are selected for the first time. If you add fonts to your system, | |
11591 or if you change your font path, you can call this to re-initialize the menus." nil nil) | |
11592 | |
11593 (autoload 'font-menu-family-constructor "x-font-menu" nil nil nil) | |
11594 | |
11595 (autoload 'font-menu-size-constructor "x-font-menu" nil nil nil) | |
11596 | |
11597 (autoload 'font-menu-weight-constructor "x-font-menu" nil nil nil) | |
11598 | |
11599 ;;;*** | |
11600 | |
11601 ;;;### (autoloads nil "x-init" "x11/x-init.el" (12698 33574)) | |
11602 ;;; Generated autoloads from x11/x-init.el | |
11603 | |
11604 ;;;### (autoloads nil "x-iso8859-1" "x11/x-iso8859-1.el" (12639 8655)) | |
11605 ;;; Generated autoloads from x11/x-iso8859-1.el | |
11606 | |
11607 ;;;*** | |
11608 | |
11609 ;;;### (autoloads nil "x-menubar" "x11/x-menubar.el" (12743 24793)) | |
11610 ;;; Generated autoloads from x11/x-menubar.el | |
11611 | |
11612 ;;;### (autoloads nil "x-misc" "x11/x-misc.el" (12639 8659)) | |
11613 ;;; Generated autoloads from x11/x-misc.el | |
11614 | |
11615 ;;;### (autoloads nil "x-mouse" "x11/x-mouse.el" (12698 33572)) | |
11616 ;;; Generated autoloads from x11/x-mouse.el | |
11617 | |
11618 ;;;### (autoloads nil "x-scrollbar" "x11/x-scrollbar.el" (12639 8659)) | |
11619 ;;; Generated autoloads from x11/x-scrollbar.el | |
11620 | |
11621 ;;;*** | |
11622 | |
11623 ;;;### (autoloads nil "x-select" "x11/x-select.el" (12546 50544)) | |
11624 ;;; Generated autoloads from x11/x-select.el | |
11625 | |
11626 ;;;*** | |
11627 | |
11628 ;;;### (autoloads nil "x-toolbar" "x11/x-toolbar.el" (12714 11727)) | |
11629 ;;; Generated autoloads from x11/x-toolbar.el | |
11630 | |
11631 ;;;### (autoloads nil "x-win-sun" "x11/x-win-sun.el" (12690 2180)) | |
11632 ;;; Generated autoloads from x11/x-win-sun.el | |
11633 | |
11634 ;;;### (autoloads nil "x-win-xfree86" "x11/x-win-xfree86.el" (12639 8662)) | |
11635 ;;; Generated autoloads from x11/x-win-xfree86.el | |
11636 | |
11637 ;;; Generated autoloads from x11/x-win-sun.el | |
11638 | |
11639 ;;; Don't make backup versions of this file - most of it is generated | |
11640 ;;; automatically by autoload.el, and what isn't changes rarely. | |
11641 ;;; Local Variables: | |
11642 ;;; version-control: never | |
11643 ;;; no-byte-compile: t | |
11644 ;;; no-update-autoloads: t | |
11645 ;;; End: | |
11646 ;;; loaddefs.el ends here |