12
|
1 ;;; Do NOT edit this file!
|
|
2 ;;; It is automatically generated using "make autoloads"
|
|
3 ;;; See update-autoloads.sh and autoload.el for more details.
|
|
4
|
|
5
|
24
|
6 ;;;### (autoloads (BibTeX-auto-store) "latex" "auctex/latex.el")
|
|
7
|
|
8 (autoload 'BibTeX-auto-store "latex" "\
|
|
9 This function should be called from bibtex-mode-hook.
|
|
10 It will setup BibTeX to store keys in an auto file." nil nil)
|
|
11
|
|
12 ;;;***
|
|
13
|
|
14 ;;;### (autoloads nil "tex-info" "auctex/tex-info.el")
|
|
15
|
|
16 ;;;***
|
|
17
|
|
18 ;;;### (autoloads (TeX-submit-bug-report TeX-insert-quote TeX-auto-generate-global TeX-auto-generate ams-tex-mode) "tex" "auctex/tex.el")
|
|
19
|
|
20 (autoload 'ams-tex-mode "tex" "\
|
|
21 Major mode for editing files of input for AmS TeX.
|
|
22 See info under AUC TeX for documentation.
|
|
23
|
|
24 Special commands:
|
|
25 \\{TeX-mode-map}
|
|
26
|
|
27 Entering AmS-tex-mode calls the value of text-mode-hook,
|
|
28 then the value of TeX-mode-hook, and then the value
|
|
29 of AmS-TeX-mode-hook." t nil)
|
|
30
|
|
31 (autoload 'TeX-auto-generate "tex" "\
|
|
32 Generate style file for TEX and store it in AUTO.
|
|
33 If TEX is a directory, generate style files for all files in the directory." t nil)
|
|
34
|
|
35 (autoload 'TeX-auto-generate-global "tex" "\
|
|
36 Create global auto directory for global TeX macro definitions." t nil)
|
|
37
|
|
38 (autoload 'TeX-insert-quote "tex" "\
|
|
39 Insert the appropriate quote marks for TeX.
|
|
40 Inserts the value of `TeX-open-quote' (normally ``) or `TeX-close-quote'
|
|
41 \(normally '') depending on the context. If `TeX-quote-after-quote'
|
|
42 is non-nil, this insertion works only after \".
|
|
43 With prefix argument, always inserts \" characters." t nil)
|
|
44
|
|
45 (autoload 'TeX-submit-bug-report "tex" "\
|
|
46 Submit via mail a bug report on AUC TeX" t nil)
|
|
47
|
|
48 ;;;***
|
|
49
|
12
|
50 ;;;### (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")
|
|
51
|
|
52 (autoload 'byte-force-recompile "bytecomp" "\
|
|
53 Recompile every `.el' file in DIRECTORY that already has a `.elc' file.
|
|
54 Files in subdirectories of DIRECTORY are processed also." t nil)
|
|
55
|
|
56 (autoload 'byte-recompile-directory "bytecomp" "\
|
|
57 Recompile every `.el' file in DIRECTORY that needs recompilation.
|
|
58 This is if a `.elc' file exists but is older than the `.el' file.
|
|
59 Files in subdirectories of DIRECTORY are processed also unless argument
|
|
60 NORECURSION is non-nil.
|
|
61
|
|
62 If the `.elc' file does not exist, normally the `.el' file is *not* compiled.
|
|
63 But a prefix argument (optional second arg) means ask user,
|
|
64 for each such `.el' file, whether to compile it. Prefix argument 0 means
|
|
65 don't ask and compile the file anyway.
|
|
66
|
|
67 A nonzero prefix argument also means ask about each subdirectory.
|
|
68
|
|
69 If the fourth argument FORCE is non-nil,
|
|
70 recompile every `.el' file that already has a `.elc' file." t nil)
|
|
71
|
|
72 (autoload 'byte-recompile-file "bytecomp" "\
|
|
73 Recompile a file of Lisp code named FILENAME if it needs recompilation.
|
|
74 This is if the `.elc' file exists but is older than the `.el' file.
|
|
75
|
|
76 If the `.elc' file does not exist, normally the `.el' file is *not*
|
|
77 compiled. But a prefix argument (optional second arg) means ask user
|
|
78 whether to compile it. Prefix argument 0 don't ask and recompile anyway." t nil)
|
|
79
|
|
80 (autoload 'byte-compile-file "bytecomp" "\
|
|
81 Compile a file of Lisp code named FILENAME into a file of byte code.
|
|
82 The output file's name is made by appending `c' to the end of FILENAME.
|
|
83 With prefix arg (noninteractively: 2nd arg), load the file after compiling." t nil)
|
|
84
|
|
85 (autoload 'compile-defun "bytecomp" "\
|
|
86 Compile and evaluate the current top-level form.
|
|
87 Print the result in the minibuffer.
|
|
88 With argument, insert value in current buffer after the form." t nil)
|
|
89
|
|
90 (autoload 'byte-compile "bytecomp" "\
|
|
91 If FORM is a symbol, byte-compile its function definition.
|
|
92 If FORM is a lambda or a macro, byte-compile it as a function." nil nil)
|
|
93
|
|
94 (autoload 'byte-compile-sexp "bytecomp" "\
|
|
95 Compile and return SEXP." nil nil)
|
|
96
|
|
97 (autoload 'display-call-tree "bytecomp" "\
|
|
98 Display a call graph of a specified file.
|
|
99 This lists which functions have been called, what functions called
|
|
100 them, and what functions they call. The list includes all functions
|
|
101 whose definitions have been compiled in this Emacs session, as well as
|
|
102 all functions called by those functions.
|
|
103
|
|
104 The call graph does not include macros, inline functions, or
|
|
105 primitives that the byte-code interpreter knows about directly (eq,
|
|
106 cons, etc.).
|
|
107
|
|
108 The call tree also lists those functions which are not known to be called
|
|
109 \(that is, to which no calls have been compiled), and which cannot be
|
|
110 invoked interactively." t nil)
|
|
111
|
|
112 (autoload 'batch-byte-compile "bytecomp" "\
|
|
113 Run `byte-compile-file' on the files remaining on the command line.
|
|
114 Use this from the command line, with `-batch';
|
|
115 it won't work in an interactive Emacs.
|
|
116 Each file is processed even if an error occurred previously.
|
|
117 For example, invoke \"emacs -batch -f batch-byte-compile $emacs/ ~/*.el\"" nil nil)
|
|
118
|
|
119 (autoload 'batch-byte-recompile-directory-norecurse "bytecomp" "\
|
|
120 Same as `batch-byte-recompile-directory' but without recursion." nil nil)
|
|
121
|
|
122 (autoload 'batch-byte-recompile-directory "bytecomp" "\
|
|
123 Runs `byte-recompile-directory' on the dirs remaining on the command line.
|
|
124 Must be used only with `-batch', and kills Emacs on completion.
|
|
125 For example, invoke `xemacs -batch -f batch-byte-recompile-directory .'." nil nil)
|
|
126
|
|
127 ;;;***
|
|
128
|
|
129 ;;;### (autoloads (disassemble) "disass" "bytecomp/disass.el")
|
|
130
|
|
131 (autoload 'disassemble "disass" "\
|
|
132 Print disassembled code for OBJECT in (optional) BUFFER.
|
|
133 OBJECT can be a symbol defined as a function, or a function itself
|
|
134 \(a lambda expression or a compiled-function object).
|
|
135 If OBJECT is not already compiled, we compile it, but do not
|
|
136 redefine OBJECT if it is a symbol." t nil)
|
|
137
|
|
138 ;;;***
|
|
139
|
|
140 ;;;### (autoloads nil "cal-dst" "calendar/cal-dst.el")
|
|
141
|
|
142 (put 'calendar-daylight-savings-starts 'risky-local-variable t)
|
|
143
|
|
144 (put 'calendar-daylight-savings-ends 'risky-local-variable t)
|
|
145
|
|
146 ;;;***
|
|
147
|
|
148 ;;;### (autoloads nil "cal-x" "calendar/cal-x.el")
|
|
149
|
|
150 (defvar calendar-setup 'one-frame "\
|
|
151 The frame set up of the calendar.
|
|
152 The choices are `one-frame' (calendar and diary together in one separate,
|
|
153 dediciated frame) or `two-frames' (calendar and diary in separate, dedicated
|
|
154 frames); with any other value the current frame is used.")
|
|
155
|
|
156 ;;;***
|
|
157
|
|
158 ;;;### (autoloads (list-yahrzeit-dates calendar) "calendar" "calendar/calendar.el")
|
|
159
|
|
160 (defvar calendar-week-start-day 0 "\
|
|
161 *The day of the week on which a week in the calendar begins.
|
|
162 0 means Sunday (default), 1 means Monday, and so on.")
|
|
163
|
|
164 (defvar calendar-offset 0 "\
|
|
165 *The offset of the principal month from the center of the calendar window.
|
|
166 0 means the principal month is in the center (default), -1 means on the left,
|
|
167 +1 means on the right. Larger (or smaller) values push the principal month off
|
|
168 the screen.")
|
|
169
|
|
170 (defvar view-diary-entries-initially nil "\
|
|
171 *Non-nil means display current date's diary entries on entry.
|
|
172 The diary is displayed in another window when the calendar is first displayed,
|
|
173 if the current date is visible. The number of days of diary entries displayed
|
|
174 is governed by the variable `number-of-diary-entries'.")
|
|
175
|
|
176 (defvar number-of-diary-entries 1 "\
|
|
177 *Specifies how many days of diary entries are to be displayed initially.
|
|
178 This variable affects the diary display when the command M-x diary is used,
|
|
179 or if the value of the variable `view-diary-entries-initially' is t. For
|
|
180 example, if the default value 1 is used, then only the current day's diary
|
|
181 entries will be displayed. If the value 2 is used, then both the current
|
|
182 day's and the next day's entries will be displayed.
|
|
183
|
|
184 The value can also be a vector such as [0 2 2 2 2 4 1]; this value
|
|
185 says to display no diary entries on Sunday, the display the entries
|
|
186 for the current date and the day after on Monday through Thursday,
|
|
187 display Friday through Monday's entries on Friday, and display only
|
|
188 Saturday's entries on Saturday.
|
|
189
|
|
190 This variable does not affect the diary display with the `d' command
|
|
191 from the calendar; in that case, the prefix argument controls the
|
|
192 number of days of diary entries displayed.")
|
|
193
|
|
194 (defvar mark-diary-entries-in-calendar nil "\
|
|
195 *Non-nil means mark dates with diary entries, in the calendar window.
|
|
196 The marking symbol is specified by the variable `diary-entry-marker'.")
|
|
197
|
|
198 (defvar view-calendar-holidays-initially nil "\
|
|
199 *Non-nil means display holidays for current three month period on entry.
|
|
200 The holidays are displayed in another window when the calendar is first
|
|
201 displayed.")
|
|
202
|
|
203 (defvar mark-holidays-in-calendar nil "\
|
|
204 *Non-nil means mark dates of holidays in the calendar window.
|
|
205 The marking symbol is specified by the variable `calendar-holiday-marker'.")
|
|
206
|
|
207 (defvar all-hebrew-calendar-holidays nil "\
|
|
208 *If nil, show only major holidays from the Hebrew calendar.
|
|
209 This means only those Jewish holidays that appear on secular calendars.
|
|
210
|
|
211 If t, show all the holidays that would appear in a complete Hebrew calendar.")
|
|
212
|
|
213 (defvar all-christian-calendar-holidays nil "\
|
|
214 *If nil, show only major holidays from the Christian calendar.
|
|
215 This means only those Christian holidays that appear on secular calendars.
|
|
216
|
|
217 If t, show all the holidays that would appear in a complete Christian
|
|
218 calendar.")
|
|
219
|
|
220 (defvar all-islamic-calendar-holidays nil "\
|
|
221 *If nil, show only major holidays from the Islamic calendar.
|
|
222 This means only those Islamic holidays that appear on secular calendars.
|
|
223
|
|
224 If t, show all the holidays that would appear in a complete Islamic
|
|
225 calendar.")
|
|
226
|
|
227 (defvar calendar-load-hook nil "\
|
|
228 *List of functions to be called after the calendar is first loaded.
|
|
229 This is the place to add key bindings to `calendar-mode-map'.")
|
|
230
|
|
231 (defvar initial-calendar-window-hook nil "\
|
|
232 *List of functions to be called when the calendar window is first opened.
|
|
233 The functions invoked are called after the calendar window is opened, but
|
|
234 once opened is never called again. Leaving the calendar with the `q' command
|
|
235 and reentering it will cause these functions to be called again.")
|
|
236
|
|
237 (defvar today-visible-calendar-hook nil "\
|
|
238 *List of functions called whenever the current date is visible.
|
|
239 This can be used, for example, to replace today's date with asterisks; a
|
|
240 function `calendar-star-date' is included for this purpose:
|
|
241 (setq today-visible-calendar-hook 'calendar-star-date)
|
|
242 It can also be used to mark the current date with `calendar-today-marker';
|
|
243 a function is also provided for this:
|
|
244 (setq today-visible-calendar-hook 'calendar-mark-today)
|
|
245
|
|
246 The corresponding variable `today-invisible-calendar-hook' is the list of
|
|
247 functions called when the calendar function was called when the current
|
|
248 date is not visible in the window.
|
|
249
|
|
250 Other than the use of the provided functions, the changing of any
|
|
251 characters in the calendar buffer by the hooks may cause the failure of the
|
|
252 functions that move by days and weeks.")
|
|
253
|
|
254 (defvar today-invisible-calendar-hook nil "\
|
|
255 *List of functions called whenever the current date is not visible.
|
|
256
|
|
257 The corresponding variable `today-visible-calendar-hook' is the list of
|
|
258 functions called when the calendar function was called when the current
|
|
259 date is visible in the window.
|
|
260
|
|
261 Other than the use of the provided functions, the changing of any
|
|
262 characters in the calendar buffer by the hooks may cause the failure of the
|
|
263 functions that move by days and weeks.")
|
|
264
|
|
265 (defvar diary-file "~/diary" "\
|
|
266 *Name of the file in which one's personal diary of dates is kept.
|
|
267
|
|
268 The file's entries are lines in any of the forms
|
|
269
|
|
270 MONTH/DAY
|
|
271 MONTH/DAY/YEAR
|
|
272 MONTHNAME DAY
|
|
273 MONTHNAME DAY, YEAR
|
|
274 DAYNAME
|
|
275
|
|
276 at the beginning of the line; the remainder of the line is the diary entry
|
|
277 string for that date. MONTH and DAY are one or two digit numbers, YEAR is
|
|
278 a number and may be written in full or abbreviated to the final two digits.
|
|
279 If the date does not contain a year, it is generic and applies to any year.
|
|
280 DAYNAME entries apply to any date on which is on that day of the week.
|
|
281 MONTHNAME and DAYNAME can be spelled in full, abbreviated to three
|
|
282 characters (with or without a period), capitalized or not. Any of DAY,
|
|
283 MONTH, or MONTHNAME, YEAR can be `*' which matches any day, month, or year,
|
|
284 respectively.
|
|
285
|
|
286 The European style (in which the day precedes the month) can be used
|
|
287 instead, if you execute `european-calendar' when in the calendar, or set
|
|
288 `european-calendar-style' to t in your .emacs file. The European forms are
|
|
289
|
|
290 DAY/MONTH
|
|
291 DAY/MONTH/YEAR
|
|
292 DAY MONTHNAME
|
|
293 DAY MONTHNAME YEAR
|
|
294 DAYNAME
|
|
295
|
|
296 To revert to the default American style from the European style, execute
|
|
297 `american-calendar' in the calendar.
|
|
298
|
|
299 A diary entry can be preceded by the character
|
|
300 `diary-nonmarking-symbol' (ordinarily `&') to make that entry
|
|
301 nonmarking--that is, it will not be marked on dates in the calendar
|
|
302 window but will appear in a diary window.
|
|
303
|
|
304 Multiline diary entries are made by indenting lines after the first with
|
|
305 either a TAB or one or more spaces.
|
|
306
|
|
307 Lines not in one the above formats are ignored. Here are some sample diary
|
|
308 entries (in the default American style):
|
|
309
|
|
310 12/22/1988 Twentieth wedding anniversary!!
|
|
311 &1/1. Happy New Year!
|
|
312 10/22 Ruth's birthday.
|
|
313 21: Payday
|
|
314 Tuesday--weekly meeting with grad students at 10am
|
|
315 Supowit, Shen, Bitner, and Kapoor to attend.
|
|
316 1/13/89 Friday the thirteenth!!
|
|
317 &thu 4pm squash game with Lloyd.
|
|
318 mar 16 Dad's birthday
|
|
319 April 15, 1989 Income tax due.
|
|
320 &* 15 time cards due.
|
|
321
|
|
322 If the first line of a diary entry consists only of the date or day name with
|
|
323 no trailing blanks or punctuation, then that line is not displayed in the
|
|
324 diary window; only the continuation lines is shown. For example, the
|
|
325 single diary entry
|
|
326
|
|
327 02/11/1989
|
|
328 Bill Blattner visits Princeton today
|
|
329 2pm Cognitive Studies Committee meeting
|
|
330 2:30-5:30 Lizzie at Lawrenceville for `Group Initiative'
|
|
331 4:00pm Jamie Tappenden
|
|
332 7:30pm Dinner at George and Ed's for Alan Ryan
|
|
333 7:30-10:00pm dance at Stewart Country Day School
|
|
334
|
|
335 will appear in the diary window without the date line at the beginning. This
|
|
336 facility allows the diary window to look neater, but can cause confusion if
|
|
337 used with more than one day's entries displayed.
|
|
338
|
|
339 Diary entries can be based on Lisp sexps. For example, the diary entry
|
|
340
|
|
341 %%(diary-block 11 1 1990 11 10 1990) Vacation
|
|
342
|
|
343 causes the diary entry \"Vacation\" to appear from November 1 through November
|
|
344 10, 1990. Other functions available are `diary-float', `diary-anniversary',
|
|
345 `diary-cyclic', `diary-day-of-year', `diary-iso-date', `diary-french-date',
|
|
346 `diary-hebrew-date', `diary-islamic-date', `diary-mayan-date',
|
|
347 `diary-yahrzeit', `diary-sunrise-sunset', `diary-phases-of-moon',
|
|
348 `diary-parasha', `diary-omer', `diary-rosh-hodesh', and
|
|
349 `diary-sabbath-candles'. See the documentation for the function
|
|
350 `list-sexp-diary-entries' for more details.
|
|
351
|
|
352 Diary entries based on the Hebrew and/or the Islamic calendar are also
|
|
353 possible, but because these are somewhat slow, they are ignored
|
|
354 unless you set the `nongregorian-diary-listing-hook' and the
|
|
355 `nongregorian-diary-marking-hook' appropriately. See the documentation
|
|
356 for these functions for details.
|
|
357
|
|
358 Diary files can contain directives to include the contents of other files; for
|
|
359 details, see the documentation for the variable `list-diary-entries-hook'.")
|
|
360
|
|
361 (defvar diary-nonmarking-symbol "&" "\
|
|
362 *Symbol indicating that a diary entry is not to be marked in the calendar.")
|
|
363
|
|
364 (defvar hebrew-diary-entry-symbol "H" "\
|
|
365 *Symbol indicating a diary entry according to the Hebrew calendar.")
|
|
366
|
|
367 (defvar islamic-diary-entry-symbol "I" "\
|
|
368 *Symbol indicating a diary entry according to the Islamic calendar.")
|
|
369
|
|
370 (defvar diary-include-string "#include" "\
|
|
371 *The string indicating inclusion of another file of diary entries.
|
|
372 See the documentation for the function `include-other-diary-files'.")
|
|
373
|
|
374 (defvar sexp-diary-entry-symbol "%%" "\
|
|
375 *The string used to indicate a sexp diary entry in diary-file.
|
|
376 See the documentation for the function `list-sexp-diary-entries'.")
|
|
377
|
|
378 (defvar abbreviated-calendar-year t "\
|
|
379 *Interpret a two-digit year DD in a diary entry as either 19DD or 20DD.
|
|
380 For the Gregorian calendar; similarly for the Hebrew and Islamic calendars.
|
|
381 If this variable is nil, years must be written in full.")
|
|
382
|
|
383 (defvar european-calendar-style nil "\
|
|
384 *Use the European style of dates in the diary and in any displays.
|
|
385 If this variable is t, a date 1/2/1990 would be interpreted as February 1,
|
|
386 1990. The accepted European date styles are
|
|
387
|
|
388 DAY/MONTH
|
|
389 DAY/MONTH/YEAR
|
|
390 DAY MONTHNAME
|
|
391 DAY MONTHNAME YEAR
|
|
392 DAYNAME
|
|
393
|
|
394 Names can be capitalized or not, written in full, or abbreviated to three
|
|
395 characters with or without a period.")
|
|
396
|
|
397 (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")) "\
|
|
398 *List of pseudo-patterns describing the American patterns of date used.
|
|
399 See the documentation of `diary-date-forms' for an explanation.")
|
|
400
|
|
401 (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")) "\
|
|
402 *List of pseudo-patterns describing the European patterns of date used.
|
|
403 See the documentation of `diary-date-forms' for an explanation.")
|
|
404
|
|
405 (defvar european-calendar-display-form '((if dayname (concat dayname ", ")) day " " monthname " " year) "\
|
|
406 *Pseudo-pattern governing the way a date appears in the European style.
|
|
407 See the documentation of calendar-date-display-form for an explanation.")
|
|
408
|
|
409 (defvar american-calendar-display-form '((if dayname (concat dayname ", ")) monthname " " day ", " year) "\
|
|
410 *Pseudo-pattern governing the way a date appears in the American style.
|
|
411 See the documentation of `calendar-date-display-form' for an explanation.")
|
|
412
|
|
413 (defvar print-diary-entries-hook 'lpr-buffer "\
|
|
414 *List of functions called after a temporary diary buffer is prepared.
|
|
415 The buffer shows only the diary entries currently visible in the diary
|
|
416 buffer. The default just does the printing. Other uses might include, for
|
|
417 example, rearranging the lines into order by day and time, saving the buffer
|
|
418 instead of deleting it, or changing the function used to do the printing.")
|
|
419
|
|
420 (defvar list-diary-entries-hook nil "\
|
|
421 *List of functions called after diary file is culled for relevant entries.
|
|
422 It is to be used for diary entries that are not found in the diary file.
|
|
423
|
|
424 A function `include-other-diary-files' is provided for use as the value of
|
|
425 this hook. This function enables you to use shared diary files together
|
|
426 with your own. The files included are specified in the diary file by lines
|
|
427 of the form
|
|
428
|
|
429 #include \"filename\"
|
|
430
|
|
431 This is recursive; that is, #include directives in files thus included are
|
|
432 obeyed. You can change the \"#include\" to some other string by changing
|
|
433 the variable `diary-include-string'. When you use `include-other-diary-files'
|
|
434 as part of the list-diary-entries-hook, you will probably also want to use the
|
|
435 function `mark-included-diary-files' as part of `mark-diary-entries-hook'.
|
|
436
|
|
437 For example, you could use
|
|
438
|
|
439 (setq list-diary-entries-hook
|
|
440 '(include-other-diary-files sort-diary-entries))
|
|
441 (setq diary-display-hook 'fancy-diary-display)
|
|
442
|
|
443 in your `.emacs' file to cause the fancy diary buffer to be displayed with
|
|
444 diary entries from various included files, each day's entries sorted into
|
|
445 lexicographic order.")
|
|
446
|
|
447 (defvar diary-hook nil "\
|
|
448 *List of functions called after the display of the diary.
|
|
449 Can be used for appointment notification.")
|
|
450
|
|
451 (defvar diary-display-hook nil "\
|
|
452 *List of functions that handle the display of the diary.
|
|
453 If nil (the default), `simple-diary-display' is used. Use `ignore' for no
|
|
454 diary display.
|
|
455
|
|
456 Ordinarily, this just displays the diary buffer (with holidays indicated in
|
|
457 the mode line), if there are any relevant entries. At the time these
|
|
458 functions are called, the variable `diary-entries-list' is a list, in order
|
|
459 by date, of all relevant diary entries in the form of ((MONTH DAY YEAR)
|
|
460 STRING), where string is the diary entry for the given date. This can be
|
|
461 used, for example, a different buffer for display (perhaps combined with
|
|
462 holidays), or produce hard copy output.
|
|
463
|
|
464 A function `fancy-diary-display' is provided as an alternative
|
|
465 choice for this hook; this function prepares a special noneditable diary
|
|
466 buffer with the relevant diary entries that has neat day-by-day arrangement
|
|
467 with headings. The fancy diary buffer will show the holidays unless the
|
|
468 variable `holidays-in-diary-buffer' is set to nil. Ordinarily, the fancy
|
|
469 diary buffer will not show days for which there are no diary entries, even
|
|
470 if that day is a holiday; if you want such days to be shown in the fancy
|
|
471 diary buffer, set the variable `diary-list-include-blanks' to t.")
|
|
472
|
|
473 (defvar nongregorian-diary-listing-hook nil "\
|
|
474 *List of functions called for listing diary file and included files.
|
|
475 As the files are processed for diary entries, these functions are used to cull
|
|
476 relevant entries. You can use either or both of `list-hebrew-diary-entries'
|
|
477 and `list-islamic-diary-entries'. The documentation for these functions
|
|
478 describes the style of such diary entries.")
|
|
479
|
|
480 (defvar mark-diary-entries-hook nil "\
|
|
481 *List of functions called after marking diary entries in the calendar.
|
|
482
|
|
483 A function `mark-included-diary-files' is also provided for use as the
|
|
484 mark-diary-entries-hook; it enables you to use shared diary files together
|
|
485 with your own. The files included are specified in the diary file by lines
|
|
486 of the form
|
|
487 #include \"filename\"
|
|
488 This is recursive; that is, #include directives in files thus included are
|
|
489 obeyed. You can change the \"#include\" to some other string by changing the
|
|
490 variable `diary-include-string'. When you use `mark-included-diary-files' as
|
|
491 part of the mark-diary-entries-hook, you will probably also want to use the
|
|
492 function `include-other-diary-files' as part of `list-diary-entries-hook'.")
|
|
493
|
|
494 (defvar nongregorian-diary-marking-hook nil "\
|
|
495 *List of functions called for marking diary file and included files.
|
|
496 As the files are processed for diary entries, these functions are used to cull
|
|
497 relevant entries. You can use either or both of `mark-hebrew-diary-entries'
|
|
498 and `mark-islamic-diary-entries'. The documentation for these functions
|
|
499 describes the style of such diary entries.")
|
|
500
|
|
501 (defvar diary-list-include-blanks nil "\
|
|
502 *If nil, do not include days with no diary entry in the list of diary entries.
|
|
503 Such days will then not be shown in the fancy diary buffer, even if they
|
|
504 are holidays.")
|
|
505
|
|
506 (defvar holidays-in-diary-buffer t "\
|
|
507 *Non-nil means include holidays in the diary display.
|
|
508 The holidays appear in the mode line of the diary buffer, or in the
|
|
509 fancy diary buffer next to the date. This slows down the diary functions
|
|
510 somewhat; setting it to nil makes the diary display faster.")
|
|
511
|
|
512 (put 'general-holidays 'risky-local-variable t)
|
|
513
|
|
514 (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")) "\
|
|
515 *General holidays. Default value is for the United States.
|
|
516 See the documentation for `calendar-holidays' for details.")
|
|
517
|
|
518 (put 'local-holidays 'risky-local-variable t)
|
|
519
|
|
520 (defvar local-holidays nil "\
|
|
521 *Local holidays.
|
|
522 See the documentation for `calendar-holidays' for details.")
|
|
523
|
|
524 (put 'other-holidays 'risky-local-variable t)
|
|
525
|
|
526 (defvar other-holidays nil "\
|
|
527 *User defined holidays.
|
|
528 See the documentation for `calendar-holidays' for details.")
|
|
529
|
|
530 (put 'hebrew-holidays-1 'risky-local-variable t)
|
|
531
|
|
532 (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)"))))
|
|
533
|
|
534 (put 'hebrew-holidays-2 'risky-local-variable t)
|
|
535
|
|
536 (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"))))
|
|
537
|
|
538 (put 'hebrew-holidays-3 'risky-local-variable t)
|
|
539
|
|
540 (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"))))
|
|
541
|
|
542 (put 'hebrew-holidays-4 'risky-local-variable t)
|
|
543
|
|
544 (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))))
|
|
545
|
|
546 (put 'hebrew-holidays 'risky-local-variable t)
|
|
547
|
|
548 (defvar hebrew-holidays (append hebrew-holidays-1 hebrew-holidays-2 hebrew-holidays-3 hebrew-holidays-4) "\
|
|
549 *Jewish holidays.
|
|
550 See the documentation for `calendar-holidays' for details.")
|
|
551
|
|
552 (put 'christian-holidays 'risky-local-variable t)
|
|
553
|
|
554 (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"))) "\
|
|
555 *Christian holidays.
|
|
556 See the documentation for `calendar-holidays' for details.")
|
|
557
|
|
558 (put 'islamic-holidays 'risky-local-variable t)
|
|
559
|
|
560 (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"))) "\
|
|
561 *Islamic holidays.
|
|
562 See the documentation for `calendar-holidays' for details.")
|
|
563
|
|
564 (put 'solar-holidays 'risky-local-variable t)
|
|
565
|
|
566 (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) "")))) "\
|
|
567 *Sun-related holidays.
|
|
568 See the documentation for `calendar-holidays' for details.")
|
|
569
|
|
570 (put 'calendar-holidays 'risky-local-variable t)
|
|
571
|
|
572 (autoload 'calendar "calendar" "\
|
|
573 Display a three-month calendar in another window.
|
|
574 The three months appear side by side, with the current month in the middle
|
|
575 surrounded by the previous and next months. The cursor is put on today's date.
|
|
576
|
|
577 If called with an optional prefix argument, prompts for month and year.
|
|
578
|
|
579 This function is suitable for execution in a .emacs file; appropriate setting
|
|
580 of the variable `view-diary-entries-initially' will cause the diary entries for
|
|
581 the current date to be displayed in another window. The value of the variable
|
|
582 `number-of-diary-entries' controls the number of days of diary entries
|
|
583 displayed upon initial display of the calendar.
|
|
584
|
|
585 An optional prefix argument ARG causes the calendar displayed to be ARG
|
|
586 months in the future if ARG is positive or in the past if ARG is negative;
|
|
587 in this case the cursor goes on the first day of the month.
|
|
588
|
|
589 Once in the calendar window, future or past months can be moved into view.
|
|
590 Arbitrary months can be displayed, or the calendar can be scrolled forward
|
|
591 or backward.
|
|
592
|
|
593 The cursor can be moved forward or backward by one day, one week, one month,
|
|
594 or one year. All of these commands take prefix arguments which, when negative,
|
|
595 cause movement in the opposite direction. For convenience, the digit keys
|
|
596 and the minus sign are automatically prefixes. The window is replotted as
|
|
597 necessary to display the desired date.
|
|
598
|
|
599 Diary entries can be marked on the calendar or displayed in another window.
|
|
600
|
|
601 Use M-x describe-mode for details of the key bindings in the calendar window.
|
|
602
|
|
603 The Gregorian calendar is assumed.
|
|
604
|
|
605 After loading the calendar, the hooks given by the variable
|
|
606 `calendar-load-hook' are run. This is the place to add key bindings to the
|
|
607 calendar-mode-map.
|
|
608
|
|
609 After preparing the calendar window initially, the hooks given by the variable
|
|
610 `initial-calendar-window-hook' are run.
|
|
611
|
|
612 The hooks given by the variable `today-visible-calendar-hook' are run
|
|
613 everytime the calendar window gets scrolled, if the current date is visible
|
|
614 in the window. If it is not visible, the hooks given by the variable
|
|
615 `today-invisible-calendar-hook' are run. Thus, for example, setting
|
|
616 `today-visible-calendar-hook' to 'calendar-star-date will cause today's date
|
|
617 to be replaced by asterisks to highlight it whenever it is in the window." t nil)
|
|
618
|
|
619 (autoload 'list-yahrzeit-dates "calendar" "\
|
|
620 List Yahrzeit dates for *Gregorian* DEATH-DATE from START-YEAR to END-YEAR.
|
|
621 When called interactively from the calendar window, the date of death is taken
|
|
622 from the cursor position." t nil)
|
|
623
|
|
624 ;;;***
|
|
625
|
|
626 ;;;### (autoloads (diary) "diary-lib" "calendar/diary-lib.el")
|
|
627
|
|
628 (autoload 'diary "diary-lib" "\
|
|
629 Generate the diary window for ARG days starting with the current date.
|
|
630 If no argument is provided, the number of days of diary entries is governed
|
|
631 by the variable `number-of-diary-entries'. This function is suitable for
|
|
632 execution in a `.emacs' file." t nil)
|
|
633
|
|
634 ;;;***
|
|
635
|
|
636 ;;;### (autoloads (holidays) "holidays" "calendar/holidays.el")
|
|
637
|
|
638 (autoload 'holidays "holidays" "\
|
|
639 Display the holidays for last month, this month, and next month.
|
|
640 If called with an optional prefix argument, prompts for month and year.
|
|
641
|
|
642 This function is suitable for execution in a .emacs file." t nil)
|
|
643
|
|
644 ;;;***
|
|
645
|
|
646 ;;;### (autoloads (phases-of-moon) "lunar" "calendar/lunar.el")
|
|
647
|
|
648 (autoload 'phases-of-moon "lunar" "\
|
|
649 Display the quarters of the moon for last month, this month, and next month.
|
|
650 If called with an optional prefix argument, prompts for month and year.
|
|
651
|
|
652 This function is suitable for execution in a .emacs file." t nil)
|
|
653
|
|
654 ;;;***
|
|
655
|
|
656 ;;;### (autoloads (solar-equinoxes-solstices sunrise-sunset) "solar" "calendar/solar.el")
|
|
657
|
|
658 (defvar calendar-time-display-form '(12-hours ":" minutes am-pm (if time-zone " (") time-zone (if time-zone ")")) "\
|
|
659 *The pseudo-pattern that governs the way a time of day is formatted.
|
|
660
|
|
661 A pseudo-pattern is a list of expressions that can involve the keywords
|
|
662 `12-hours', `24-hours', and `minutes', all numbers in string form,
|
|
663 and `am-pm' and `time-zone', both alphabetic strings.
|
|
664
|
|
665 For example, the form
|
|
666
|
|
667 '(24-hours \":\" minutes
|
|
668 (if time-zone \" (\") time-zone (if time-zone \")\"))
|
|
669
|
|
670 would give military-style times like `21:07 (UTC)'.")
|
|
671
|
|
672 (defvar calendar-latitude nil "\
|
|
673 *Latitude of `calendar-location-name' in degrees.
|
|
674
|
|
675 The value can be either a decimal fraction (one place of accuracy is
|
|
676 sufficient), + north, - south, such as 40.7 for New York City, or the value
|
|
677 can be a vector [degrees minutes north/south] such as [40 50 north] for New
|
|
678 York City.
|
|
679
|
|
680 This variable should be set in site-local.el.")
|
|
681
|
|
682 (defvar calendar-longitude nil "\
|
|
683 *Longitude of `calendar-location-name' in degrees.
|
|
684
|
|
685 The value can be either a decimal fraction (one place of accuracy is
|
|
686 sufficient), + east, - west, such as -73.9 for New York City, or the value
|
|
687 can be a vector [degrees minutes east/west] such as [73 55 west] for New
|
|
688 York City.
|
|
689
|
|
690 This variable should be set in site-local.el.")
|
|
691
|
|
692 (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")))) "\
|
|
693 *Expression evaluating to name of `calendar-longitude', calendar-latitude'.
|
|
694 For example, \"New York City\". Default value is just the latitude, longitude
|
|
695 pair.
|
|
696
|
|
697 This variable should be set in site-local.el.")
|
|
698
|
|
699 (autoload 'sunrise-sunset "solar" "\
|
|
700 Local time of sunrise and sunset for today. Accurate to +/- 2 minutes.
|
|
701 If called with an optional prefix argument, prompt for date.
|
|
702
|
|
703 If called with an optional double prefix argument, prompt for longitude,
|
|
704 latitude, time zone, and date, and always use standard time.
|
|
705
|
|
706 This function is suitable for execution in a .emacs file." t nil)
|
|
707
|
|
708 (autoload 'solar-equinoxes-solstices "solar" "\
|
|
709 Date and time of equinoxes and solstices, if visible in the calendar window.
|
|
710 Requires floating point." nil nil)
|
|
711
|
|
712 ;;;***
|
|
713
|
|
714 ;;;### (autoloads (comint-dynamic-list-completions comint-dynamic-complete comint-run make-comint) "comint" "comint/comint.el")
|
|
715
|
|
716 (autoload 'make-comint "comint" "\
|
|
717 Make a comint process NAME in a buffer, running PROGRAM.
|
|
718 The name of the buffer is made by surrounding NAME with `*'s.
|
|
719 PROGRAM should be either a string denoting an executable program to create
|
|
720 via `start-process', or a cons pair of the form (HOST . SERVICE) denoting a TCP
|
|
721 connection to be opened via `open-network-stream'. If there is already a
|
|
722 running process in that buffer, it is not restarted. Optional third arg
|
|
723 STARTFILE is the name of a file to send the contents of to the process.
|
|
724
|
|
725 If PROGRAM is a string, any more args are arguments to PROGRAM." nil nil)
|
|
726
|
|
727 (autoload 'comint-run "comint" "\
|
|
728 Run PROGRAM in a comint buffer and switch to it.
|
|
729 The buffer name is made by surrounding the file name of PROGRAM with `*'s.
|
|
730 The file name is used to make a symbol name, such as `comint-sh-hook', and any
|
|
731 hooks on this symbol are run in the buffer.
|
|
732 See `make-comint' and `comint-exec'." t nil)
|
|
733
|
|
734 (autoload 'comint-dynamic-complete "comint" "\
|
|
735 Dynamically perform completion at point.
|
|
736 Calls the functions in `comint-dynamic-complete-functions' to perform
|
|
737 completion until a function returns non-nil, at which point completion is
|
|
738 assumed to have occurred." t nil)
|
|
739
|
|
740 (autoload 'comint-dynamic-list-completions "comint" "\
|
|
741 List in help buffer sorted COMPLETIONS.
|
|
742 Typing SPC flushes the help buffer." nil nil)
|
|
743
|
|
744 ;;;***
|
|
745
|
|
746 ;;;### (autoloads (gdb) "gdb" "comint/gdb.el")
|
|
747
|
|
748 (defvar gdb-command-name "gdb" "\
|
|
749 Pathname for executing gdb.")
|
|
750
|
|
751 (autoload 'gdb "gdb" "\
|
|
752 Run gdb on program FILE in buffer *gdb-FILE*.
|
|
753 The directory containing FILE becomes the initial working directory
|
|
754 and source-file directory for GDB. If you wish to change this, use
|
|
755 the GDB commands `cd DIR' and `directory'." t nil)
|
|
756
|
|
757 ;;;***
|
|
758
|
|
759 ;;;### (autoloads (gdbsrc) "gdbsrc" "comint/gdbsrc.el")
|
|
760
|
|
761 (autoload 'gdbsrc "gdbsrc" "\
|
|
762 Activates a gdb session with gdbsrc-mode turned on. A numeric prefix
|
|
763 argument can be used to specify a running process to attach, and a non-numeric
|
|
764 prefix argument will cause you to be prompted for a core file to debug." t nil)
|
|
765
|
|
766 ;;;***
|
|
767
|
|
768 ;;;### (autoloads (perldb xdb dbx sdb) "gud" "comint/gud.el")
|
|
769
|
|
770 (autoload 'sdb "gud" "\
|
|
771 Run sdb on program FILE in buffer *gud-FILE*.
|
|
772 The directory containing FILE becomes the initial working directory
|
|
773 and source-file directory for your debugger." t nil)
|
|
774
|
|
775 (autoload 'dbx "gud" "\
|
|
776 Run dbx on program FILE in buffer *gud-FILE*.
|
|
777 The directory containing FILE becomes the initial working directory
|
|
778 and source-file directory for your debugger." t nil)
|
|
779
|
|
780 (autoload 'xdb "gud" "\
|
|
781 Run xdb on program FILE in buffer *gud-FILE*.
|
|
782 The directory containing FILE becomes the initial working directory
|
|
783 and source-file directory for your debugger.
|
|
784
|
|
785 You can set the variable 'gud-xdb-directories' to a list of program source
|
|
786 directories if your program contains sources from more than one directory." t nil)
|
|
787
|
|
788 (autoload 'perldb "gud" "\
|
|
789 Run perldb on program FILE in buffer *gud-FILE*.
|
|
790 The directory containing FILE becomes the initial working directory
|
|
791 and source-file directory for your debugger." t nil)
|
|
792
|
|
793 ;;;***
|
|
794
|
|
795 ;;;### (autoloads nil "inf-lisp" "comint/inf-lisp.el")
|
|
796
|
|
797 (add-hook 'same-window-buffer-names "*inferior-lisp*")
|
|
798
|
|
799 ;;;***
|
|
800
|
|
801 ;;;### (autoloads (rlogin) "rlogin" "comint/rlogin.el")
|
|
802
|
|
803 (add-hook 'same-window-regexps "^\\*rlogin-.*\\*\\(\\|<[0-9]+>\\)")
|
|
804
|
|
805 (autoload 'rlogin "rlogin" "\
|
|
806 Open a network login connection to HOST via the `rlogin' program.
|
|
807 Input is sent line-at-a-time to the remote connection.
|
|
808
|
|
809 Communication with the remote host is recorded in a buffer `*rlogin-HOST*'
|
|
810 \(or `*rlogin-USER@HOST*' if the remote username differs).
|
|
811 If a prefix argument is given and the buffer `*rlogin-HOST*' already exists,
|
|
812 a new buffer with a different connection will be made.
|
|
813
|
|
814 When called from a program, if the optional second argument is a string or
|
|
815 buffer, it names the buffer to use.
|
|
816
|
|
817 The variable `rlogin-program' contains the name of the actual program to
|
|
818 run. It can be a relative or absolute path.
|
|
819
|
|
820 The variable `rlogin-explicit-args' is a list of arguments to give to
|
|
821 the rlogin when starting. They are added after any arguments given in
|
|
822 INPUT-ARGS.
|
|
823
|
|
824 If the default value of `rlogin-directory-tracking-mode' is t, then the
|
|
825 default directory in that buffer is set to a remote (FTP) file name to
|
|
826 access your home directory on the remote machine. Occasionally this causes
|
|
827 an error, if you cannot access the home directory on that machine. This
|
|
828 error is harmless as long as you don't try to use that default directory.
|
|
829
|
|
830 If `rlogin-directory-tracking-mode' is neither t nor nil, then the default
|
|
831 directory is initially set up to your (local) home directory.
|
|
832 This is useful if the remote machine and your local machine
|
|
833 share the same files via NFS. This is the default.
|
|
834
|
|
835 If you wish to change directory tracking styles during a session, use the
|
|
836 function `rlogin-directory-tracking-mode' rather than simply setting the
|
|
837 variable." t nil)
|
|
838
|
|
839 ;;;***
|
|
840
|
|
841 ;;;### (autoloads (shell) "shell" "comint/shell.el")
|
|
842
|
|
843 (defvar shell-prompt-pattern (purecopy "^[^#$%>\n]*[#$%>] *") "\
|
|
844 Regexp to match prompts in the inferior shell.
|
|
845 Defaults to \"^[^#$%>\\n]*[#$%>] *\", which works pretty well.
|
|
846 This variable is used to initialise `comint-prompt-regexp' in the
|
|
847 shell buffer.
|
|
848
|
|
849 The pattern should probably not match more than one line. If it does,
|
|
850 shell-mode may become confused trying to distinguish prompt from input
|
|
851 on lines which don't start with a prompt.
|
|
852
|
|
853 This is a fine thing to set in your `.emacs' file.")
|
|
854
|
|
855 (autoload 'shell "shell" "\
|
|
856 Run an inferior shell, with I/O through buffer *shell*.
|
|
857 If buffer exists but shell process is not running, make new shell.
|
|
858 If buffer exists and shell process is running,
|
|
859 just switch to buffer `*shell*'.
|
|
860 Program used comes from variable `explicit-shell-file-name',
|
|
861 or (if that is nil) from the ESHELL environment variable,
|
|
862 or else from SHELL if there is no ESHELL.
|
|
863 If a file `~/.emacs_SHELLNAME' exists, it is given as initial input
|
|
864 (Note that this may lose due to a timing error if the shell
|
|
865 discards input when it starts up.)
|
|
866 The buffer is put in Shell mode, giving commands for sending input
|
|
867 and controlling the subjobs of the shell. See `shell-mode'.
|
|
868 See also the variable `shell-prompt-pattern'.
|
|
869
|
|
870 The shell file name (sans directories) is used to make a symbol name
|
|
871 such as `explicit-csh-args'. If that symbol is a variable,
|
|
872 its value is used as a list of arguments when invoking the shell.
|
|
873 Otherwise, one argument `-i' is passed to the shell.
|
|
874
|
|
875 \(Type \\[describe-mode] in the shell buffer for a list of commands.)" t nil)
|
|
876
|
|
877 (add-hook 'same-window-buffer-names "*shell*")
|
|
878
|
|
879 ;;;***
|
|
880
|
|
881 ;;;### (autoloads (rsh telnet) "telnet" "comint/telnet.el")
|
|
882
|
|
883 (add-hook 'same-window-regexps "\\*telnet-.*\\*\\(\\|<[0-9]+>\\)")
|
|
884
|
|
885 (autoload 'telnet "telnet" "\
|
|
886 Open a network login connection to host named HOST (a string).
|
|
887 With a prefix argument, prompts for the port name or number as well.
|
|
888 Communication with HOST is recorded in a buffer `*HOST-telnet*'.
|
|
889 Normally input is edited in Emacs and sent a line at a time.
|
|
890 See also `\\[rsh]'." t nil)
|
|
891
|
|
892 (add-hook 'same-window-regexps "\\*rsh-[^-]*\\*\\(\\|<[0-9]*>\\)")
|
|
893
|
|
894 (autoload 'rsh "telnet" "\
|
|
895 Open a network login connection to host named HOST (a string).
|
|
896 Communication with HOST is recorded in a buffer `*rsh-HOST*'.
|
|
897 Normally input is edited in Emacs and sent a line at a time.
|
|
898 See also `\\[telnet]'." t nil)
|
|
899
|
|
900 ;;;***
|
|
901
|
28
|
902 ;;;### (autoloads (custom-make-dependencies custom-menu-update custom-buffer-create customize-apropos customize-customized customize-face customize-variable customize) "cus-edit" "custom/cus-edit.el")
|
|
903
|
|
904 (autoload 'customize "cus-edit" "\
|
18
|
905 Customize SYMBOL, which must be a customization group." t nil)
|
|
906
|
28
|
907 (autoload 'customize-variable "cus-edit" "\
|
18
|
908 Customize SYMBOL, which must be a variable." t nil)
|
|
909
|
28
|
910 (autoload 'customize-face "cus-edit" "\
|
26
|
911 Customize SYMBOL, which should be a face name or nil.
|
|
912 If SYMBOL is nil, customize all faces." t nil)
|
18
|
913
|
28
|
914 (autoload 'customize-customized "cus-edit" "\
|
18
|
915 Customize all already customized user options." t nil)
|
|
916
|
28
|
917 (autoload 'customize-apropos "cus-edit" "\
|
18
|
918 Customize all user options matching REGEXP.
|
|
919 If ALL (e.g., started with a prefix key), include options which are not
|
|
920 user-settable." t nil)
|
|
921
|
28
|
922 (autoload 'custom-buffer-create "cus-edit" "\
|
18
|
923 Create a buffer containing OPTIONS.
|
|
924 OPTIONS should be an alist of the form ((SYMBOL WIDGET)...), where
|
|
925 SYMBOL is a customization option, and WIDGET is a widget for editing
|
|
926 that option." nil nil)
|
|
927
|
28
|
928 (autoload 'custom-menu-update "cus-edit" "\
|
18
|
929 Update customize menu." t nil)
|
|
930
|
28
|
931 (autoload 'custom-make-dependencies "cus-edit" "\
|
18
|
932 Batch function to extract custom dependencies from .el files.
|
|
933 Usage: emacs -batch *.el -f custom-make-dependencies > deps.el" nil nil)
|
|
934
|
|
935 ;;;***
|
|
936
|
28
|
937 ;;;### (autoloads (custom-set-faces custom-declare-face) "cus-face" "custom/cus-face.el")
|
|
938
|
|
939 (autoload 'custom-declare-face "cus-face" "\
|
|
940 Like `defface', but FACE is evaluated as a normal argument." nil nil)
|
|
941
|
|
942 (autoload 'custom-set-faces "cus-face" "\
|
|
943 Initialize faces according to user preferences.
|
|
944 The arguments should be a list where each entry has the form:
|
|
945
|
|
946 (FACE SPEC [NOW])
|
|
947
|
|
948 SPEC will be stored as the saved value for FACE. If NOW is present
|
|
949 and non-nil, FACE will also be created according to SPEC.
|
|
950
|
|
951 See `defface' for the format of SPEC." nil nil)
|
|
952
|
|
953 ;;;***
|
|
954
|
|
955 ;;;### (autoloads (widget-browse-at) "wid-browse" "custom/wid-browse.el")
|
|
956
|
|
957 (autoload 'widget-browse-at "wid-browse" "\
|
22
|
958 Browse the widget under point." t nil)
|
18
|
959
|
|
960 ;;;***
|
|
961
|
28
|
962 ;;;### (autoloads (widget-delete widget-create) "wid-edit" "custom/wid-edit.el")
|
|
963
|
|
964 (autoload 'widget-create "wid-edit" "\
|
18
|
965 Create widget of TYPE.
|
|
966 The optional ARGS are additional keyword arguments." nil nil)
|
|
967
|
28
|
968 (autoload 'widget-delete "wid-edit" "\
|
18
|
969 Delete WIDGET." nil nil)
|
|
970
|
|
971 ;;;***
|
|
972
|
12
|
973 ;;;### (autoloads (edebug-eval-top-level-form def-edebug-spec) "edebug" "edebug/edebug.el")
|
|
974
|
|
975 (autoload 'def-edebug-spec "edebug" "\
|
|
976 Set the edebug-form-spec property of SYMBOL according to SPEC.
|
|
977 Both SYMBOL and SPEC are unevaluated. The SPEC can be 0, t, a symbol
|
|
978 \(naming a function), or a list." nil 'macro)
|
|
979
|
|
980 (defalias 'edebug-defun 'edebug-eval-top-level-form)
|
|
981
|
|
982 (autoload 'edebug-eval-top-level-form "edebug" "\
|
|
983 Evaluate a top level form, such as a defun or defmacro.
|
|
984 This is like `eval-defun', but the code is always instrumented for Edebug.
|
|
985 Print its name in the minibuffer and leave point where it is,
|
|
986 or if an error occurs, leave point after it with mark at the original point." t nil)
|
|
987
|
|
988 ;;;***
|
|
989
|
|
990 ;;;### (autoloads (ediff-show-registry) "ediff-mult" "ediff/ediff-mult.el")
|
|
991
|
|
992 (autoload 'ediff-show-registry "ediff-mult" "\
|
|
993 Display Ediff's registry." t nil)
|
|
994
|
|
995 (defalias 'eregistry 'ediff-show-registry)
|
|
996
|
|
997 ;;;***
|
|
998
|
16
|
999 ;;;### (autoloads (ediff-toggle-use-toolbar ediff-toggle-multiframe) "ediff-util" "ediff/ediff-util.el")
|
12
|
1000
|
|
1001 (autoload 'ediff-toggle-multiframe "ediff-util" "\
|
16
|
1002 Switch from multiframe display to single-frame display and back.
|
|
1003 To change the default, set the variable `ediff-window-setup-function',
|
12
|
1004 which see." t nil)
|
|
1005
|
16
|
1006 (autoload 'ediff-toggle-use-toolbar "ediff-util" "\
|
|
1007 Enable or disable Ediff toolbar.
|
|
1008 Works only in versions of Emacs that support toolbars.
|
|
1009 To change the default, set the variable `ediff-use-toolbar-p', which see." t nil)
|
|
1010
|
12
|
1011 ;;;***
|
|
1012
|
|
1013 ;;;### (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")
|
|
1014
|
|
1015 (autoload 'ediff-files "ediff" "\
|
|
1016 Run Ediff on a pair of files, FILE-A and FILE-B." t nil)
|
|
1017
|
|
1018 (autoload 'ediff-files3 "ediff" "\
|
|
1019 Run Ediff on three files, FILE-A, FILE-B, and FILE-C." t nil)
|
|
1020
|
|
1021 (defalias 'ediff3 'ediff-files3)
|
|
1022
|
|
1023 (defalias 'ediff 'ediff-files)
|
|
1024
|
|
1025 (autoload 'ediff-buffers "ediff" "\
|
|
1026 Run Ediff on a pair of buffers, BUFFER-A and BUFFER-B." t nil)
|
|
1027
|
|
1028 (defalias 'ebuffers 'ediff-buffers)
|
|
1029
|
|
1030 (autoload 'ediff-buffers3 "ediff" "\
|
|
1031 Run Ediff on three buffers, BUFFER-A, BUFFER-B, and BUFFER-C." t nil)
|
|
1032
|
|
1033 (defalias 'ebuffers3 'ediff-buffers3)
|
|
1034
|
|
1035 (autoload 'ediff-directories "ediff" "\
|
|
1036 Run Ediff on a pair of directories, DIR1 and DIR2, comparing files that have
|
|
1037 the same name in both. The third argument, REGEXP, is a regular expression that
|
|
1038 can be used to filter out certain file names." t nil)
|
|
1039
|
|
1040 (defalias 'edirs 'ediff-directories)
|
|
1041
|
|
1042 (autoload 'ediff-directory-revisions "ediff" "\
|
|
1043 Run Ediff on a directory, DIR1, comparing its files with their revisions.
|
|
1044 The second argument, REGEXP, is a regular expression that filters the file
|
|
1045 names. Only the files that are under revision control are taken into account." t nil)
|
|
1046
|
|
1047 (defalias 'edir-revisions 'ediff-directory-revisions)
|
|
1048
|
|
1049 (autoload 'ediff-directories3 "ediff" "\
|
|
1050 Run Ediff on three directories, DIR1, DIR2, and DIR3, comparing files that
|
|
1051 have the same name in all three. The last argument, REGEXP, is a regular
|
|
1052 expression that can be used to filter out certain file names." t nil)
|
|
1053
|
|
1054 (defalias 'edirs3 'ediff-directories3)
|
|
1055
|
|
1056 (autoload 'ediff-merge-directories "ediff" "\
|
|
1057 Run Ediff on a pair of directories, DIR1 and DIR2, merging files that have
|
|
1058 the same name in both. The third argument, REGEXP, is a regular expression that
|
|
1059 can be used to filter out certain file names." t nil)
|
|
1060
|
|
1061 (defalias 'edirs-merge 'ediff-merge-directories)
|
|
1062
|
|
1063 (autoload 'ediff-merge-directories-with-ancestor "ediff" "\
|
|
1064 Merge files in directories DIR1 and DIR2 using files in ANCESTOR-DIR as ancestors.
|
|
1065 Ediff merges files that have identical names in DIR1, DIR2. If a pair of files
|
|
1066 in DIR1 and DIR2 doesn't have an ancestor in ANCESTOR-DIR, Ediff will merge
|
|
1067 without ancestor. The fourth argument, REGEXP, is a regular expression that
|
|
1068 can be used to filter out certain file names." t nil)
|
|
1069
|
|
1070 (autoload 'ediff-merge-directory-revisions "ediff" "\
|
|
1071 Run Ediff on a directory, DIR1, merging its files with their revisions.
|
|
1072 The second argument, REGEXP, is a regular expression that filters the file
|
|
1073 names. Only the files that are under revision control are taken into account." t nil)
|
|
1074
|
|
1075 (defalias 'edir-merge-revisions 'ediff-merge-directory-revisions)
|
|
1076
|
|
1077 (autoload 'ediff-merge-directory-revisions-with-ancestor "ediff" "\
|
|
1078 Run Ediff on a directory, DIR1, merging its files with their revisions and ancestors.
|
|
1079 The second argument, REGEXP, is a regular expression that filters the file
|
|
1080 names. Only the files that are under revision control are taken into account." t nil)
|
|
1081
|
|
1082 (defalias 'edir-merge-revisions-with-ancestor 'ediff-merge-directory-revisions-with-ancestor)
|
|
1083
|
|
1084 (defalias 'edirs-merge-with-ancestor 'ediff-merge-directories-with-ancestor)
|
|
1085
|
|
1086 (autoload 'ediff-windows-wordwise "ediff" "\
|
|
1087 Compare WIND-A and WIND-B, which are selected by clicking, wordwise.
|
|
1088 With prefix argument, DUMB-MODE, or on a non-windowing display, works as
|
|
1089 follows:
|
|
1090 If WIND-A is nil, use selected window.
|
|
1091 If WIND-B is nil, use window next to WIND-A." t nil)
|
|
1092
|
|
1093 (autoload 'ediff-windows-linewise "ediff" "\
|
|
1094 Compare WIND-A and WIND-B, which are selected by clicking, linewise.
|
|
1095 With prefix argument, DUMB-MODE, or on a non-windowing display, works as
|
|
1096 follows:
|
|
1097 If WIND-A is nil, use selected window.
|
|
1098 If WIND-B is nil, use window next to WIND-A." t nil)
|
|
1099
|
|
1100 (autoload 'ediff-regions-wordwise "ediff" "\
|
|
1101 Run Ediff on a pair of regions in two different buffers.
|
|
1102 Regions (i.e., point and mark) are assumed to be set in advance.
|
|
1103 This function is effective only for relatively small regions, up to 200
|
|
1104 lines. For large regions, use `ediff-regions-linewise'." t nil)
|
|
1105
|
|
1106 (autoload 'ediff-regions-linewise "ediff" "\
|
|
1107 Run Ediff on a pair of regions in two different buffers.
|
|
1108 Regions (i.e., point and mark) are assumed to be set in advance.
|
|
1109 Each region is enlarged to contain full lines.
|
|
1110 This function is effective for large regions, over 100-200
|
|
1111 lines. For small regions, use `ediff-regions-wordwise'." t nil)
|
|
1112
|
|
1113 (defalias 'ediff-merge 'ediff-merge-files)
|
|
1114
|
|
1115 (autoload 'ediff-merge-files "ediff" "\
|
|
1116 Merge two files without ancestor." t nil)
|
|
1117
|
|
1118 (autoload 'ediff-merge-files-with-ancestor "ediff" "\
|
|
1119 Merge two files with ancestor." t nil)
|
|
1120
|
|
1121 (defalias 'ediff-merge-with-ancestor 'ediff-merge-files-with-ancestor)
|
|
1122
|
|
1123 (autoload 'ediff-merge-buffers "ediff" "\
|
|
1124 Merge buffers without ancestor." t nil)
|
|
1125
|
|
1126 (autoload 'ediff-merge-buffers-with-ancestor "ediff" "\
|
|
1127 Merge buffers with ancestor." t nil)
|
|
1128
|
|
1129 (autoload 'ediff-merge-revisions "ediff" "\
|
|
1130 Run Ediff by merging two revisions of a file.
|
|
1131 The file is the optional FILE argument or the file visited by the current
|
|
1132 buffer." t nil)
|
|
1133
|
|
1134 (autoload 'ediff-merge-revisions-with-ancestor "ediff" "\
|
|
1135 Run Ediff by merging two revisions of a file with a common ancestor.
|
14
|
1136 The file is the the optional FILE argument or the file visited by the current
|
12
|
1137 buffer." t nil)
|
|
1138
|
|
1139 (autoload 'run-ediff-from-cvs-buffer "ediff" "\
|
|
1140 Run Ediff-merge on appropriate revisions of the selected file.
|
|
1141 First run after `M-x cvs-update'. Then place the cursor on a lide describing a
|
|
1142 file and then run `run-ediff-from-cvs-buffer'." t nil)
|
|
1143
|
|
1144 (autoload 'ediff-patch-file "ediff" "\
|
|
1145 Run Ediff by patching SOURCE-FILENAME." t nil)
|
|
1146
|
|
1147 (autoload 'ediff-patch-buffer "ediff" "\
|
|
1148 Run Ediff by patching BUFFER-NAME." t nil)
|
|
1149
|
|
1150 (defalias 'epatch 'ediff-patch-file)
|
|
1151
|
|
1152 (defalias 'epatch-buffer 'ediff-patch-buffer)
|
|
1153
|
|
1154 (autoload 'ediff-revision "ediff" "\
|
|
1155 Run Ediff by comparing versions of a file.
|
|
1156 The file is an optional FILE argument or the file visited by the current
|
|
1157 buffer. Use `vc.el' or `rcs.el' depending on `ediff-version-control-package'." t nil)
|
|
1158
|
|
1159 (autoload 'ediff-version "ediff" "\
|
|
1160 Return string describing the version of Ediff.
|
|
1161 When called interactively, displays the version." t nil)
|
|
1162
|
|
1163 (autoload 'ediff-documentation "ediff" "\
|
|
1164 Display Ediff's manual.
|
|
1165 With optional NODE, goes to that node." t nil)
|
|
1166
|
|
1167 ;;;***
|
|
1168
|
22
|
1169 ;;;### (autoloads nil "default-dir" "efs/default-dir.el")
|
|
1170
|
|
1171 (defvar default-directory-function nil "\
|
|
1172 A function to call to compute the default-directory for the current buffer.
|
|
1173 If this is nil, the function default-directory will return the value of the
|
|
1174 variable default-directory.
|
|
1175 Buffer local.")
|
|
1176
|
|
1177 ;;;***
|
|
1178
|
|
1179 ;;;### (autoloads (dired-jump-back-other-frame dired-jump-back-other-window dired-jump-back dired-noselect dired-other-frame dired-other-window dired) "dired" "efs/dired.el")
|
|
1180
|
|
1181 (defvar dired-compression-method 'compress "\
|
|
1182 *Type of compression program to use.
|
|
1183 Give as a symbol.
|
|
1184 Currently-recognized methods are: gzip pack compact compress.
|
|
1185 To change this variable use \\[dired-do-compress] with a zero prefix.")
|
|
1186
|
|
1187 (defvar dired-compression-method-alist '((gzip ".gz" ("gzip") ("gzip" "-d") "-f") (compress ".Z" ("compress" "-f") ("compress" "-d") "-f") (pack ".z" ("pack" "-f") ("unpack")) (compact ".C" ("compact") ("uncompact"))) "\
|
|
1188 *Association list of compression method descriptions.
|
|
1189 Each element of the table should be a list of the form
|
|
1190
|
|
1191 (compress-type extension (compress-args) (decompress-args) force-flag)
|
|
1192
|
|
1193 where
|
|
1194 `compress-type' is a unique symbol in the alist to which
|
|
1195 `dired-compression-method' can be set;
|
|
1196 `extension' is the file extension (as a string) used by files compressed
|
|
1197 by this method;
|
|
1198 `compress-args' is a list of the path of the compression program and
|
|
1199 flags to pass as separate arguments;
|
|
1200 `decompress-args' is a list of the path of the decompression
|
|
1201 program and flags to pass as separate arguments.
|
|
1202 `force-flag' is the switch to pass to the command to force overwriting
|
|
1203 of existing files.
|
|
1204
|
|
1205 For example:
|
|
1206
|
|
1207 (setq dired-compresssion-method-alist
|
|
1208 (cons '(frobnicate \".frob\" (\"frob\") (\"frob\" \"-d\") \"-f\")
|
|
1209 dired-compression-method-alist))
|
|
1210 => ((frobnicate \".frob\" (\"frob\") (\"frob\" \"-d\"))
|
|
1211 (gzip \".gz\" (\"gzip\") (\"gunzip\"))
|
|
1212 ...)
|
|
1213
|
|
1214 See also: dired-compression-method <V>")
|
|
1215
|
|
1216 (defvar dired-ls-program "ls" "\
|
|
1217 *Absolute or relative name of the ls program used by dired.")
|
|
1218
|
|
1219 (defvar dired-listing-switches "-al" "\
|
|
1220 *Switches passed to ls for dired. MUST contain the `l' option.
|
|
1221 Can contain even `F', `b', `i' and `s'.")
|
|
1222
|
|
1223 (defvar dired-chown-program (if (memq system-type '(hpux dgux usg-unix-v)) "chown" "/etc/chown") "\
|
|
1224 *Name of chown command (usully `chown' or `/etc/chown').")
|
|
1225
|
|
1226 (defvar dired-gnutar-program nil "\
|
|
1227 *If non-nil, name of the GNU tar executable (e.g. \"tar\" or \"gnutar\").
|
|
1228 GNU tar's `z' switch is used for compressed tar files.
|
|
1229 If you don't have GNU tar, set this to nil: a pipe using `zcat' is then used.")
|
|
1230
|
|
1231 (defvar dired-unshar-program nil "\
|
|
1232 *Set to the name of the unshar program, if you have it.")
|
|
1233
|
|
1234 (defvar dired-local-variables-file ".dired" "\
|
|
1235 *If non-nil, filename for local variables for Dired.
|
|
1236 If Dired finds a file with that name in the current directory, it will
|
|
1237 temporarily insert it into the dired buffer and run `hack-local-variables'.
|
|
1238
|
|
1239 Type \\[info] and `g' `(emacs)File Variables' `RET' for more info on
|
|
1240 local variables.")
|
|
1241
|
|
1242 (defvar dired-kept-versions 2 "\
|
|
1243 *When cleaning directory, number of versions to keep.")
|
|
1244
|
|
1245 (defvar dired-find-subdir nil "\
|
|
1246 *Determines whether dired tries to lookup a subdir in existing buffers.
|
|
1247 If non-nil, dired does not make a new buffer for a directory if it can be
|
|
1248 found (perhaps as subdir) in some existing dired buffer. If there are several
|
|
1249 dired buffers for a directory, then the most recently used one is chosen.
|
|
1250
|
|
1251 Dired avoids switching to the current buffer, so that if you have
|
|
1252 a normal and a wildcard buffer for the same directory, C-x d RET will
|
|
1253 toggle between those two.")
|
|
1254
|
|
1255 (defvar dired-use-file-transformers t "\
|
|
1256 *Determines whether dired uses file transformers.
|
|
1257 If non-nil `dired-do-shell-command' will apply file transformers to file names.
|
|
1258 See \\[describe-function] for dired-do-shell-command for more information.")
|
|
1259
|
|
1260 (defvar dired-dwim-target nil "\
|
|
1261 *If non-nil, dired tries to guess a default target directory.
|
|
1262 This means that if there is a dired buffer displayed in the next window,
|
|
1263 use its current subdir, instead of the current subdir of this dired buffer.
|
|
1264 The target is put in the prompt for file copy, rename, etc.")
|
|
1265
|
|
1266 (defvar dired-copy-preserve-time nil "\
|
|
1267 *If non-nil, Dired preserves the last-modified time in a file copy.
|
|
1268 \(This works on only some systems.)\\<dired-mode-map>
|
|
1269 Use `\\[dired-do-copy]' with a zero prefix argument to toggle its value.")
|
|
1270
|
|
1271 (defvar dired-no-confirm nil "\
|
|
1272 *If non-nil, a list of symbols for commands dired should not confirm.
|
|
1273 It can be a sublist of
|
|
1274
|
|
1275 '(byte-compile chgrp chmod chown compress copy delete hardlink load
|
|
1276 move print shell symlink uncompress recursive-delete kill-file-buffer
|
|
1277 kill-dired-buffer patch create-top-dir revert-subdirs)
|
|
1278
|
|
1279 The meanings of most of the symbols are obvious. A few exceptions:
|
|
1280
|
|
1281 'compress applies to compression or decompression by any of the
|
|
1282 compression program in `dired-compression-method-alist'.
|
|
1283
|
|
1284 'kill-dired-buffer applies to offering to kill dired buffers for
|
|
1285 directories which have been deleted.
|
|
1286
|
|
1287 'kill-file-buffer applies to offering to kill buffers visiting files
|
|
1288 which have been deleted.
|
|
1289
|
|
1290 'recursive-delete applies to recursively deleting non-empty
|
|
1291 directories, and all of their contents.
|
|
1292
|
|
1293 'create-top-dir applies to `dired-up-directory' creating a new top level
|
|
1294 directory for the dired buffer.
|
|
1295
|
|
1296 'revert-subdirs applies to re-reading subdirectories which have
|
|
1297 been modified on disk.
|
|
1298
|
|
1299 Note that this list also applies to remote files accessed with efs
|
|
1300 or ange-ftp.")
|
|
1301
|
|
1302 (defvar dired-backup-if-overwrite nil "\
|
|
1303 *Non-nil if Dired should ask about making backups before overwriting files.
|
|
1304 Special value 'always suppresses confirmation.")
|
|
1305
|
|
1306 (defvar dired-omit-files nil "\
|
|
1307 *If non-nil un-interesting files will be omitted from this dired buffer.
|
|
1308 Use \\[dired-omit-toggle] to see these files. (buffer local)")
|
|
1309
|
|
1310 (defvar dired-mail-reader 'rmail "\
|
|
1311 *Mail reader used by dired for dired-read-mail (\\[dired-read-mail]).
|
|
1312 The symbols 'rmail and 'vm are the only two allowed values.")
|
|
1313
|
|
1314 (define-key ctl-x-map "d" 'dired)
|
|
1315
|
|
1316 (autoload 'dired "dired" "\
|
|
1317 \"Edit\" directory DIRNAME--delete, rename, print, etc. some files in it.
|
|
1318 Optional second argument SWITCHES specifies the `ls' options used.
|
|
1319 \(Interactively, use a prefix argument to be able to specify SWITCHES.)
|
|
1320 Dired displays a list of files in DIRNAME (which may also have
|
|
1321 shell wildcards appended to select certain files). If DIRNAME is a cons,
|
|
1322 its first element is taken as the directory name and the resr as an explicit
|
|
1323 list of files to make directory entries for.
|
|
1324 \\<dired-mode-map>You can move around in it with the usual commands.
|
|
1325 You can flag files for deletion with \\[dired-flag-file-deletion] and then
|
|
1326 delete them by typing \\[dired-expunge-deletions].
|
|
1327 Type \\[dired-describe-mode] after entering dired for more info.
|
|
1328
|
|
1329 If DIRNAME is already in a dired buffer, that buffer is used without refresh." t nil)
|
|
1330
|
|
1331 (define-key ctl-x-4-map "d" 'dired-other-window)
|
|
1332
|
|
1333 (autoload 'dired-other-window "dired" "\
|
|
1334 \"Edit\" directory DIRNAME. Like `dired' but selects in another window." t nil)
|
|
1335
|
|
1336 (define-key ctl-x-5-map "d" 'dired-other-frame)
|
|
1337
|
|
1338 (autoload 'dired-other-frame "dired" "\
|
|
1339 \"Edit\" directory DIRNAME. Like `dired' but makes a new frame." t nil)
|
|
1340
|
|
1341 (autoload 'dired-noselect "dired" "\
|
|
1342 Like `dired' but returns the dired buffer as value, does not select it." nil nil)
|
|
1343
|
|
1344 (define-key ctl-x-map "\C-j" 'dired-jump-back)
|
|
1345
|
|
1346 (autoload 'dired-jump-back "dired" "\
|
|
1347 Jump back to dired.
|
|
1348 If in a file, dired the current directory and move to file's line.
|
|
1349 If in dired already, pop up a level and goto old directory's line.
|
|
1350 In case the proper dired file line cannot be found, refresh the dired
|
|
1351 buffer and try again." t nil)
|
|
1352
|
|
1353 (define-key ctl-x-4-map "\C-j" 'dired-jump-back-other-window)
|
|
1354
|
|
1355 (autoload 'dired-jump-back-other-window "dired" "\
|
|
1356 Like \\[dired-jump-back], but to other window." t nil)
|
|
1357
|
|
1358 (define-key ctl-x-5-map "\C-j" 'dired-jump-back-other-frame)
|
|
1359
|
|
1360 (autoload 'dired-jump-back-other-frame "dired" "\
|
|
1361 Like \\[dired-jump-back], but in another frame." t nil)
|
|
1362
|
|
1363 ;;;***
|
|
1364
|
12
|
1365 ;;;### (autoloads (electric-buffer-list) "ebuff-menu" "electric/ebuff-menu.el")
|
|
1366
|
|
1367 (autoload 'electric-buffer-list "ebuff-menu" "\
|
|
1368 Pops up a buffer describing the set of Emacs buffers.
|
|
1369 Vaguely like ITS lunar select buffer; combining typeoutoid buffer
|
|
1370 listing with menuoid buffer selection.
|
|
1371
|
|
1372 If the very next character typed is a space then the buffer list
|
|
1373 window disappears. Otherwise, one may move around in the buffer list
|
|
1374 window, marking buffers to be selected, saved or deleted.
|
|
1375
|
|
1376 To exit and select a new buffer, type a space when the cursor is on
|
|
1377 the appropriate line of the buffer-list window. Other commands are
|
|
1378 much like those of buffer-menu-mode.
|
|
1379
|
|
1380 Calls value of `electric-buffer-menu-mode-hook' on entry if non-nil.
|
|
1381
|
|
1382 Non-null optional arg FILES-ONLY means mention only file buffers.
|
|
1383 When called from Lisp code, FILES-ONLY may be a regular expression,
|
|
1384 in which case only buffers whose names match that expression are listed,
|
|
1385 or an arbitrary predicate function.
|
|
1386
|
|
1387 \\{electric-buffer-menu-mode-map}" t nil)
|
|
1388
|
|
1389 ;;;***
|
|
1390
|
|
1391 ;;;### (autoloads (electric-command-history Electric-command-history-redo-expression) "echistory" "electric/echistory.el")
|
|
1392
|
|
1393 (autoload 'Electric-command-history-redo-expression "echistory" "\
|
|
1394 Edit current history line in minibuffer and execute result.
|
|
1395 With prefix arg NOCONFIRM, execute current line as-is without editing." t nil)
|
|
1396
|
|
1397 (autoload 'electric-command-history "echistory" "\
|
|
1398 \\<electric-history-map>Major mode for examining and redoing commands from `command-history'.
|
|
1399 This pops up a window with the Command History listing.
|
|
1400 The number of command listed is controlled by `list-command-history-max'.
|
|
1401 The command history is filtered by `list-command-history-filter' if non-nil.
|
|
1402 Combines typeout Command History list window with menu like selection
|
|
1403 of an expression from the history for re-evaluation in the *original* buffer.
|
|
1404
|
|
1405 The history displayed is filtered by `list-command-history-filter' if non-nil.
|
|
1406
|
|
1407 Like Emacs-Lisp mode except that characters do not insert themselves and
|
|
1408 Tab and Linefeed do not indent. Instead these commands are provided:
|
|
1409 \\{electric-history-map}
|
|
1410
|
|
1411 Calls the value of `electric-command-history-hook' if that is non-nil.
|
|
1412 The Command History listing is recomputed each time this mode is invoked." t nil)
|
|
1413
|
|
1414 ;;;***
|
|
1415
|
|
1416 ;;;### (autoloads (electric-helpify with-electric-help) "ehelp" "electric/ehelp.el")
|
|
1417
|
|
1418 (autoload 'with-electric-help "ehelp" "\
|
|
1419 Pop up an \"electric\" help buffer.
|
|
1420 The arguments are THUNK &optional BUFFER NOERASE MINHEIGHT.
|
|
1421 THUNK is a function of no arguments which is called to initialize the
|
|
1422 contents of BUFFER. BUFFER defaults to `*Help*'. BUFFER will be
|
|
1423 erased before THUNK is called unless NOERASE is non-nil. THUNK will
|
|
1424 be called while BUFFER is current and with `standard-output' bound to
|
|
1425 the buffer specified by BUFFER.
|
|
1426
|
|
1427 If THUNK returns nil, we display BUFFER starting at the top, and
|
|
1428 shrink the window to fit. If THUNK returns non-nil, we don't do those things.
|
|
1429
|
|
1430 After THUNK has been called, this function \"electrically\" pops up a window
|
|
1431 in which BUFFER is displayed and allows the user to scroll through that buffer
|
|
1432 in electric-help-mode. The window's height will be at least MINHEIGHT if
|
|
1433 this value is non-nil.
|
|
1434
|
|
1435 If THUNK returns nil, we display BUFFER starting at the top, and
|
|
1436 shrink the window to fit. If THUNK returns non-nil, we don't do those
|
|
1437 things.
|
|
1438
|
|
1439 When the user exits (with `electric-help-exit', or otherwise) the help
|
|
1440 buffer's window disappears (i.e., we use `save-window-excursion')
|
|
1441 BUFFER is put into `default-major-mode' (or `fundamental-mode') when we exit." nil nil)
|
|
1442
|
|
1443 (autoload 'electric-helpify "ehelp" nil nil nil)
|
|
1444
|
|
1445 ;;;***
|
|
1446
|
|
1447 ;;;### (autoloads (Helper-help Helper-describe-bindings) "helper" "electric/helper.el")
|
|
1448
|
|
1449 (autoload 'Helper-describe-bindings "helper" "\
|
|
1450 Describe local key bindings of current mode." t nil)
|
|
1451
|
|
1452 (autoload 'Helper-help "helper" "\
|
|
1453 Provide help for current mode." t nil)
|
|
1454
|
|
1455 ;;;***
|
|
1456
|
|
1457 ;;;### (autoloads (edt-emulation-on) "edt" "emulators/edt.el")
|
|
1458
|
|
1459 (autoload 'edt-emulation-on "edt" "\
|
|
1460 Turn on EDT Emulation." t nil)
|
|
1461
|
|
1462 ;;;***
|
|
1463
|
|
1464 ;;;### (autoloads (convert-mocklisp-buffer) "mlconvert" "emulators/mlconvert.el")
|
|
1465
|
|
1466 (autoload 'convert-mocklisp-buffer "mlconvert" "\
|
|
1467 Convert buffer of Mocklisp code to real Lisp that GNU Emacs can run." t nil)
|
|
1468
|
|
1469 ;;;***
|
|
1470
|
|
1471 ;;;### (autoloads (teco-command) "teco" "emulators/teco.el")
|
|
1472
|
|
1473 (autoload 'teco-command "teco" "\
|
|
1474 Read and execute a Teco command string." t nil)
|
|
1475
|
|
1476 ;;;***
|
|
1477
|
|
1478 ;;;### (autoloads (tpu-edt-on) "tpu-edt" "emulators/tpu-edt.el")
|
|
1479
|
|
1480 (fset 'tpu-edt-mode 'tpu-edt-on)
|
|
1481
|
|
1482 (fset 'tpu-edt 'tpu-edt-on)
|
|
1483
|
|
1484 (autoload 'tpu-edt-on "tpu-edt" "\
|
|
1485 Turn on TPU/edt emulation." t nil)
|
|
1486
|
|
1487 ;;;***
|
|
1488
|
|
1489 ;;;### (autoloads (tpu-set-cursor-bound tpu-set-cursor-free tpu-set-scroll-margins) "tpu-extras" "emulators/tpu-extras.el")
|
|
1490
|
|
1491 (autoload 'tpu-set-scroll-margins "tpu-extras" "\
|
|
1492 Set scroll margins." t nil)
|
|
1493
|
|
1494 (autoload 'tpu-set-cursor-free "tpu-extras" "\
|
|
1495 Allow the cursor to move freely about the screen." t nil)
|
|
1496
|
|
1497 (autoload 'tpu-set-cursor-bound "tpu-extras" "\
|
|
1498 Constrain the cursor to the flow of the text." t nil)
|
|
1499
|
|
1500 ;;;***
|
|
1501
|
|
1502 ;;;### (autoloads (wordstar-mode) "ws-mode" "emulators/ws-mode.el")
|
|
1503
|
|
1504 (autoload 'wordstar-mode "ws-mode" "\
|
|
1505 Major mode with WordStar-like key bindings.
|
|
1506
|
|
1507 BUGS:
|
|
1508 - Help menus with WordStar commands (C-j just calls help-for-help)
|
|
1509 are not implemented
|
|
1510 - Options for search and replace
|
|
1511 - Show markers (C-k h) is somewhat strange
|
|
1512 - Search and replace (C-q a) is only available in forward direction
|
|
1513
|
|
1514 No key bindings beginning with ESC are installed, they will work
|
|
1515 Emacs-like.
|
|
1516
|
|
1517 The key bindings are:
|
|
1518
|
|
1519 C-a backward-word
|
|
1520 C-b fill-paragraph
|
|
1521 C-c scroll-up-line
|
|
1522 C-d forward-char
|
|
1523 C-e previous-line
|
|
1524 C-f forward-word
|
|
1525 C-g delete-char
|
|
1526 C-h backward-char
|
|
1527 C-i indent-for-tab-command
|
|
1528 C-j help-for-help
|
|
1529 C-k ordstar-C-k-map
|
|
1530 C-l ws-repeat-search
|
|
1531 C-n open-line
|
|
1532 C-p quoted-insert
|
|
1533 C-r scroll-down-line
|
|
1534 C-s backward-char
|
|
1535 C-t kill-word
|
|
1536 C-u keyboard-quit
|
|
1537 C-v overwrite-mode
|
|
1538 C-w scroll-down
|
|
1539 C-x next-line
|
|
1540 C-y kill-complete-line
|
|
1541 C-z scroll-up
|
|
1542
|
|
1543 C-k 0 ws-set-marker-0
|
|
1544 C-k 1 ws-set-marker-1
|
|
1545 C-k 2 ws-set-marker-2
|
|
1546 C-k 3 ws-set-marker-3
|
|
1547 C-k 4 ws-set-marker-4
|
|
1548 C-k 5 ws-set-marker-5
|
|
1549 C-k 6 ws-set-marker-6
|
|
1550 C-k 7 ws-set-marker-7
|
|
1551 C-k 8 ws-set-marker-8
|
|
1552 C-k 9 ws-set-marker-9
|
|
1553 C-k b ws-begin-block
|
|
1554 C-k c ws-copy-block
|
|
1555 C-k d save-buffers-kill-emacs
|
|
1556 C-k f find-file
|
|
1557 C-k h ws-show-markers
|
|
1558 C-k i ws-indent-block
|
|
1559 C-k k ws-end-block
|
|
1560 C-k p ws-print-block
|
|
1561 C-k q kill-emacs
|
|
1562 C-k r insert-file
|
|
1563 C-k s save-some-buffers
|
|
1564 C-k t ws-mark-word
|
|
1565 C-k u ws-exdent-block
|
|
1566 C-k C-u keyboard-quit
|
|
1567 C-k v ws-move-block
|
|
1568 C-k w ws-write-block
|
|
1569 C-k x kill-emacs
|
|
1570 C-k y ws-delete-block
|
|
1571
|
|
1572 C-o c wordstar-center-line
|
|
1573 C-o b switch-to-buffer
|
|
1574 C-o j justify-current-line
|
|
1575 C-o k kill-buffer
|
|
1576 C-o l list-buffers
|
|
1577 C-o m auto-fill-mode
|
|
1578 C-o r set-fill-column
|
|
1579 C-o C-u keyboard-quit
|
|
1580 C-o wd delete-other-windows
|
|
1581 C-o wh split-window-horizontally
|
|
1582 C-o wo other-window
|
|
1583 C-o wv split-window-vertically
|
|
1584
|
|
1585 C-q 0 ws-find-marker-0
|
|
1586 C-q 1 ws-find-marker-1
|
|
1587 C-q 2 ws-find-marker-2
|
|
1588 C-q 3 ws-find-marker-3
|
|
1589 C-q 4 ws-find-marker-4
|
|
1590 C-q 5 ws-find-marker-5
|
|
1591 C-q 6 ws-find-marker-6
|
|
1592 C-q 7 ws-find-marker-7
|
|
1593 C-q 8 ws-find-marker-8
|
|
1594 C-q 9 ws-find-marker-9
|
|
1595 C-q a ws-query-replace
|
|
1596 C-q b ws-to-block-begin
|
|
1597 C-q c end-of-buffer
|
|
1598 C-q d end-of-line
|
|
1599 C-q f ws-search
|
|
1600 C-q k ws-to-block-end
|
|
1601 C-q l ws-undo
|
|
1602 C-q p ws-last-cursorp
|
|
1603 C-q r beginning-of-buffer
|
|
1604 C-q C-u keyboard-quit
|
|
1605 C-q w ws-last-error
|
|
1606 C-q y ws-kill-eol
|
|
1607 C-q DEL ws-kill-bol
|
|
1608 " t nil)
|
|
1609
|
|
1610 ;;;***
|
|
1611
|
|
1612 ;;;### (autoloads nil "loaddefs-eos" "eos/loaddefs-eos.el")
|
|
1613
|
|
1614 ;;;***
|
|
1615
|
|
1616 ;;;### (autoloads (blackbox) "blackbox" "games/blackbox.el")
|
|
1617
|
|
1618 (autoload 'blackbox "blackbox" "\
|
|
1619 Play blackbox. Optional prefix argument is the number of balls;
|
|
1620 the default is 4.
|
|
1621
|
|
1622 What is blackbox?
|
|
1623
|
|
1624 Blackbox is a game of hide and seek played on an 8 by 8 grid (the
|
|
1625 Blackbox). Your opponent (Emacs, in this case) has hidden several
|
|
1626 balls (usually 4) within this box. By shooting rays into the box and
|
|
1627 observing where they emerge it is possible to deduce the positions of
|
|
1628 the hidden balls. The fewer rays you use to find the balls, the lower
|
|
1629 your score.
|
|
1630
|
|
1631 Overview of play:
|
|
1632
|
|
1633 \\<blackbox-mode-map>To play blackbox, type \\[blackbox]. An optional prefix argument
|
|
1634 specifies the number of balls to be hidden in the box; the default is
|
|
1635 four.
|
|
1636
|
|
1637 The cursor can be moved around the box with the standard cursor
|
|
1638 movement keys.
|
|
1639
|
|
1640 To shoot a ray, move the cursor to the edge of the box and press SPC.
|
|
1641 The result will be determined and the playfield updated.
|
|
1642
|
|
1643 You may place or remove balls in the box by moving the cursor into the
|
|
1644 box and pressing \\[bb-romp].
|
|
1645
|
|
1646 When you think the configuration of balls you have placed is correct,
|
|
1647 press \\[bb-done]. You will be informed whether you are correct or
|
|
1648 not, and be given your score. Your score is the number of letters and
|
|
1649 numbers around the outside of the box plus five for each incorrectly
|
|
1650 placed ball. If you placed any balls incorrectly, they will be
|
|
1651 indicated with `x', and their actual positions indicated with `o'.
|
|
1652
|
|
1653 Details:
|
|
1654
|
|
1655 There are three possible outcomes for each ray you send into the box:
|
|
1656
|
|
1657 Detour: the ray is deflected and emerges somewhere other than
|
|
1658 where you sent it in. On the playfield, detours are
|
|
1659 denoted by matching pairs of numbers -- one where the
|
|
1660 ray went in, and the other where it came out.
|
|
1661
|
|
1662 Reflection: the ray is reflected and emerges in the same place
|
|
1663 it was sent in. On the playfield, reflections are
|
|
1664 denoted by the letter `R'.
|
|
1665
|
|
1666 Hit: the ray strikes a ball directly and is absorbed. It does
|
|
1667 not emerge from the box. On the playfield, hits are
|
|
1668 denoted by the letter `H'.
|
|
1669
|
|
1670 The rules for how balls deflect rays are simple and are best shown by
|
|
1671 example.
|
|
1672
|
|
1673 As a ray approaches a ball it is deflected ninety degrees. Rays can
|
|
1674 be deflected multiple times. In the diagrams below, the dashes
|
|
1675 represent empty box locations and the letter `O' represents a ball.
|
|
1676 The entrance and exit points of each ray are marked with numbers as
|
|
1677 described under \"Detour\" above. Note that the entrance and exit
|
|
1678 points are always interchangeable. `*' denotes the path taken by the
|
|
1679 ray.
|
|
1680
|
|
1681 Note carefully the relative positions of the ball and the ninety
|
|
1682 degree deflection it causes.
|
|
1683
|
|
1684 1
|
|
1685 - * - - - - - - - - - - - - - - - - - - - - - -
|
|
1686 - * - - - - - - - - - - - - - - - - - - - - - -
|
|
1687 1 * * - - - - - - - - - - - - - - - O - - - - O -
|
|
1688 - - O - - - - - - - O - - - - - - - * * * * - -
|
|
1689 - - - - - - - - - - - * * * * * 2 3 * * * - - * - -
|
|
1690 - - - - - - - - - - - * - - - - - - - O - * - -
|
|
1691 - - - - - - - - - - - * - - - - - - - - * * - -
|
|
1692 - - - - - - - - - - - * - - - - - - - - * - O -
|
|
1693 2 3
|
|
1694
|
|
1695 As mentioned above, a reflection occurs when a ray emerges from the same point
|
|
1696 it was sent in. This can happen in several ways:
|
|
1697
|
|
1698
|
|
1699 - - - - - - - - - - - - - - - - - - - - - - - -
|
|
1700 - - - - O - - - - - O - O - - - - - - - - - - -
|
|
1701 R * * * * - - - - - - - * - - - - O - - - - - - -
|
|
1702 - - - - O - - - - - - * - - - - R - - - - - - - -
|
|
1703 - - - - - - - - - - - * - - - - - - - - - - - -
|
|
1704 - - - - - - - - - - - * - - - - - - - - - - - -
|
|
1705 - - - - - - - - R * * * * - - - - - - - - - - - -
|
|
1706 - - - - - - - - - - - - O - - - - - - - - - - -
|
|
1707
|
|
1708 In the first example, the ray is deflected downwards by the upper
|
|
1709 ball, then left by the lower ball, and finally retraces its path to
|
|
1710 its point of origin. The second example is similar. The third
|
|
1711 example is a bit anomalous but can be rationalized by realizing the
|
|
1712 ray never gets a chance to get into the box. Alternatively, the ray
|
|
1713 can be thought of as being deflected downwards and immediately
|
|
1714 emerging from the box.
|
|
1715
|
|
1716 A hit occurs when a ray runs straight into a ball:
|
|
1717
|
|
1718 - - - - - - - - - - - - - - - - - - - - - - - -
|
|
1719 - - - - - - - - - - - - - - - - - - - - O - - -
|
|
1720 - - - - - - - - - - - - O - - - H * * * * - - - -
|
|
1721 - - - - - - - - H * * * * O - - - - - - * - - - -
|
|
1722 - - - - - - - - - - - - O - - - - - - O - - - -
|
|
1723 H * * * O - - - - - - - - - - - - - - - - - - - -
|
|
1724 - - - - - - - - - - - - - - - - - - - - - - - -
|
|
1725 - - - - - - - - - - - - - - - - - - - - - - - -
|
|
1726
|
|
1727 Be sure to compare the second example of a hit with the first example of
|
|
1728 a reflection." t nil)
|
|
1729
|
|
1730 ;;;***
|
|
1731
|
|
1732 ;;;### (autoloads (conx-load conx conx-region conx-buffer) "conx" "games/conx.el")
|
|
1733
|
|
1734 (autoload 'conx-buffer "conx" "\
|
|
1735 Absorb the text in the current buffer into the tree." t nil)
|
|
1736
|
|
1737 (autoload 'conx-region "conx" "\
|
|
1738 Absorb the text in the current region into the tree." t nil)
|
|
1739
|
|
1740 (autoload 'conx "conx" "\
|
|
1741 Generate some random sentences in the *conx* buffer." t nil)
|
|
1742
|
|
1743 (autoload 'conx-load "conx" "\
|
|
1744 Load in a CONX database written by the \\[conx-save] command.
|
|
1745 This clears the database currently in memory." t nil)
|
|
1746
|
|
1747 ;;;***
|
|
1748
|
|
1749 ;;;### (autoloads (shuffle-vector cookie-snarf cookie-insert cookie) "cookie1" "games/cookie1.el")
|
|
1750
|
|
1751 (autoload 'cookie "cookie1" "\
|
|
1752 Return a random phrase from PHRASE-FILE. When the phrase file
|
|
1753 is read in, display STARTMSG at beginning of load, ENDMSG at end." nil nil)
|
|
1754
|
|
1755 (autoload 'cookie-insert "cookie1" "\
|
|
1756 Insert random phrases from PHRASE-FILE; COUNT of them. When the phrase file
|
|
1757 is read in, display STARTMSG at beginning of load, ENDMSG at end." nil nil)
|
|
1758
|
|
1759 (autoload 'cookie-snarf "cookie1" "\
|
|
1760 Reads in the PHRASE-FILE, returns it as a vector of strings.
|
|
1761 Emit STARTMSG and ENDMSG before and after. Caches the result; second
|
|
1762 and subsequent calls on the same file won't go to disk." nil nil)
|
|
1763
|
|
1764 (autoload 'shuffle-vector "cookie1" "\
|
|
1765 Randomly permute the elements of VECTOR (all permutations equally likely)" nil nil)
|
|
1766
|
|
1767 ;;;***
|
|
1768
|
14
|
1769 ;;;### (autoloads (decipher-mode decipher) "decipher" "games/decipher.el")
|
|
1770
|
|
1771 (autoload 'decipher "decipher" "\
|
|
1772 Format a buffer of ciphertext for cryptanalysis and enter Decipher mode." t nil)
|
|
1773
|
|
1774 (autoload 'decipher-mode "decipher" "\
|
|
1775 Major mode for decrypting monoalphabetic substitution ciphers.
|
|
1776 Lower-case letters enter plaintext.
|
|
1777 Upper-case letters are commands.
|
|
1778
|
|
1779 The buffer is made read-only so that normal Emacs commands cannot
|
|
1780 modify it.
|
|
1781
|
|
1782 The most useful commands are:
|
|
1783 \\<decipher-mode-map>
|
|
1784 \\[decipher-digram-list] Display a list of all digrams & their frequency
|
|
1785 \\[decipher-frequency-count] Display the frequency of each ciphertext letter
|
|
1786 \\[decipher-adjacency-list] Show adjacency list for current letter (lists letters appearing next to it)
|
|
1787 \\[decipher-make-checkpoint] Save the current cipher alphabet (checkpoint)
|
|
1788 \\[decipher-restore-checkpoint] Restore a saved cipher alphabet (checkpoint)" t nil)
|
|
1789
|
|
1790 ;;;***
|
|
1791
|
12
|
1792 ;;;### (autoloads (dissociated-press) "dissociate" "games/dissociate.el")
|
|
1793
|
|
1794 (autoload 'dissociated-press "dissociate" "\
|
|
1795 Dissociate the text of the current buffer.
|
|
1796 Output goes in buffer named *Dissociation*,
|
|
1797 which is redisplayed each time text is added to it.
|
|
1798 Every so often the user must say whether to continue.
|
|
1799 If ARG is positive, require ARG chars of continuity.
|
|
1800 If ARG is negative, require -ARG words of continuity.
|
|
1801 Default is 2." t nil)
|
|
1802
|
|
1803 ;;;***
|
|
1804
|
|
1805 ;;;### (autoloads (doctor) "doctor" "games/doctor.el")
|
|
1806
|
|
1807 (autoload 'doctor "doctor" "\
|
|
1808 Switch to *doctor* buffer and start giving psychotherapy." t nil)
|
|
1809
|
|
1810 ;;;***
|
|
1811
|
|
1812 ;;;### (autoloads (dunnet) "dunnet" "games/dunnet.el")
|
|
1813
|
|
1814 (autoload 'dunnet "dunnet" "\
|
|
1815 Switch to *dungeon* buffer and start game." t nil)
|
|
1816
|
|
1817 ;;;***
|
|
1818
|
|
1819 ;;;### (autoloads (flame) "flame" "games/flame.el")
|
|
1820
|
|
1821 (autoload 'flame "flame" "\
|
|
1822 Generate ARG (default 1) sentences of half-crazed gibberish." t nil)
|
|
1823
|
|
1824 ;;;***
|
|
1825
|
|
1826 ;;;### (autoloads (gomoku) "gomoku" "games/gomoku.el")
|
|
1827
|
|
1828 (autoload 'gomoku "gomoku" "\
|
|
1829 Start a Gomoku game between you and Emacs.
|
|
1830 If a game is in progress, this command allow you to resume it.
|
|
1831 If optional arguments N and M are given, an N by M board is used.
|
|
1832 If prefix arg is given for N, M is prompted for.
|
|
1833
|
|
1834 You and Emacs play in turn by marking a free square. You mark it with X
|
|
1835 and Emacs marks it with O. The winner is the first to get five contiguous
|
|
1836 marks horizontally, vertically or in diagonal.
|
|
1837
|
|
1838 You play by moving the cursor over the square you choose and hitting
|
|
1839 \\<gomoku-mode-map>\\[gomoku-human-plays].
|
|
1840 Use \\[describe-mode] for more info." t nil)
|
|
1841
|
|
1842 ;;;***
|
|
1843
|
|
1844 ;;;### (autoloads (hanoi) "hanoi" "games/hanoi.el")
|
|
1845
|
|
1846 (autoload 'hanoi "hanoi" "\
|
|
1847 Towers of Hanoi diversion. Argument is number of rings." t nil)
|
|
1848
|
|
1849 ;;;***
|
|
1850
|
|
1851 ;;;### (autoloads (life) "life" "games/life.el")
|
|
1852
|
|
1853 (autoload 'life "life" "\
|
|
1854 Run Conway's Life simulation.
|
|
1855 The starting pattern is randomly selected. Prefix arg (optional first
|
|
1856 arg non-nil from a program) is the number of seconds to sleep between
|
|
1857 generations (this defaults to 1)." t nil)
|
|
1858
|
|
1859 ;;;***
|
|
1860
|
22
|
1861 ;;;### (autoloads (mine-help mine-version mine) "mine" "games/mine.el")
|
|
1862
|
|
1863 (autoload 'mine "mine" "\
|
|
1864 Play Mine. Optional prefix argument is the number of mines.
|
|
1865
|
|
1866 To play Mine, type `\\[mine]' or `\\[universal-argument] NUM \\[mine]'.
|
|
1867
|
|
1868 An optional prefix argument specifies the number of mines to be hidden
|
|
1869 in the field. If no prefix argument is given, a percentage
|
|
1870 `mine-mines-%' of the field will contain mines.
|
|
1871
|
|
1872 What is Mine?\\<mine-mode-map>
|
|
1873
|
|
1874 Mine is a classical game of hide and seek played on a rectangular grid
|
|
1875 containing `mine-xmax' by `mine-ymax' squares (the mine field).
|
|
1876
|
|
1877 Your opponent (Emacs, in this case) has hidden several mines within
|
|
1878 this field. The object of the game is to find every hidden mine.
|
|
1879
|
|
1880 When you're sure a square does NOT contain a mine, you can hit it:
|
|
1881 move the mouse over the square and press `\\[mine-mouse-hit]' or
|
|
1882 move the cursor with the usual keys and press `\\[mine-hit-curpoint]'.
|
|
1883
|
28
|
1884 If the square is a mine, you lose.
|
22
|
1885 If the square isn't a mine, a number appears which represents
|
|
1886 the number of mines in the surrounding eight squares.
|
|
1887
|
|
1888 When you think a square DOES contain a mine, you can mark it:
|
|
1889 move the mouse over the square and press `\\[mine-mouse-mark]' or
|
|
1890 move the cursor with the usual keys and press `\\[mine-mark-curpoint]'.
|
|
1891
|
|
1892 The number of hidden mines remaining in the mine field is indicated
|
|
1893 inside the buffer. Every time you mark a square as a mine, this
|
|
1894 number decreases by one, even if you incorrectly mark a square.
|
|
1895
|
|
1896 If `mine-torus' is non-nil (the default), the Mine game is played over
|
|
1897 a periodic field (like a torus). Each mine is hidden periodically
|
|
1898 over the mine board `mine-nb-tiles-x' times in the x direction and
|
|
1899 `mine-nb-tiles-y' times in the y direction.
|
|
1900
|
|
1901 If `mine-colorp' is non-nil (the default, if the system allows it),
|
|
1902 the game is displayed with colors. The colors can be chosen with the
|
|
1903 variable `mine-colors'.
|
|
1904
|
|
1905 If the redisplay is not fast enough, increase `mine-level'. If you
|
|
1906 want to see a smoother (slower) redisplay, decrease `mine-level',
|
|
1907 `mine-count1-max' and `mine-count2-max'.
|
|
1908
|
|
1909 You can get help on `mine-mode' and its key bindings by pressing `\\[mine-help]'
|
|
1910 while in the *Mine* buffer.
|
|
1911 " t nil)
|
|
1912
|
|
1913 (autoload 'mine-version "mine" "\
|
|
1914 Return string describing the current version of Mine.
|
|
1915 When called interactively, displays the version." t nil)
|
|
1916
|
|
1917 (autoload 'mine-help "mine" "\
|
|
1918 *Get help on `mine-mode'." t nil)
|
|
1919
|
|
1920 ;;;***
|
|
1921
|
12
|
1922 ;;;### (autoloads (mpuz) "mpuz" "games/mpuz.el")
|
|
1923
|
|
1924 (autoload 'mpuz "mpuz" "\
|
|
1925 Multiplication puzzle with GNU Emacs." t nil)
|
|
1926
|
|
1927 ;;;***
|
|
1928
|
|
1929 ;;;### (autoloads (snarf-spooks spook) "spook" "games/spook.el")
|
|
1930
|
|
1931 (autoload 'spook "spook" "\
|
|
1932 Adds that special touch of class to your outgoing mail." t nil)
|
|
1933
|
|
1934 (autoload 'snarf-spooks "spook" "\
|
|
1935 Return a vector containing the lines from `spook-phrases-file'." nil nil)
|
|
1936
|
|
1937 ;;;***
|
|
1938
|
|
1939 ;;;### (autoloads (psychoanalyze-pinhead apropos-zippy insert-zippyism yow) "yow" "games/yow.el")
|
|
1940
|
|
1941 (autoload 'yow "yow" "\
|
|
1942 Return or display a random Zippy quotation. With prefix arg, insert it." t nil)
|
|
1943
|
|
1944 (autoload 'insert-zippyism "yow" "\
|
|
1945 Prompt with completion for a known Zippy quotation, and insert it at point." t nil)
|
|
1946
|
|
1947 (autoload 'apropos-zippy "yow" "\
|
|
1948 Return a list of all Zippy quotes matching REGEXP.
|
|
1949 If called interactively, display a list of matches." t nil)
|
|
1950
|
|
1951 (autoload 'psychoanalyze-pinhead "yow" "\
|
|
1952 Zippy goes to the analyst." t nil)
|
|
1953
|
|
1954 ;;;***
|
|
1955
|
|
1956 ;;;### (autoloads (gnus-earcon-display) "earcon" "gnus/earcon.el")
|
|
1957
|
|
1958 (autoload 'gnus-earcon-display "earcon" "\
|
|
1959 Play sounds in message buffers." t nil)
|
|
1960
|
|
1961 ;;;***
|
|
1962
|
16
|
1963 ;;;### (autoloads (gnus-audio-play) "gnus-audio" "gnus/gnus-audio.el")
|
|
1964
|
|
1965 (autoload 'gnus-audio-play "gnus-audio" "\
|
|
1966 Play a sound through the speaker." t nil)
|
|
1967
|
|
1968 ;;;***
|
|
1969
|
12
|
1970 ;;;### (autoloads (gnus-cache-generate-nov-databases gnus-cache-generate-active gnus-jog-cache) "gnus-cache" "gnus/gnus-cache.el")
|
|
1971
|
|
1972 (autoload 'gnus-jog-cache "gnus-cache" "\
|
16
|
1973 Go through all groups and put the articles into the cache.
|
|
1974
|
|
1975 Usage:
|
|
1976 $ emacs -batch -l ~/.emacs -l gnus -f gnus-jog-cache" t nil)
|
12
|
1977
|
|
1978 (autoload 'gnus-cache-generate-active "gnus-cache" "\
|
|
1979 Generate the cache active file." t nil)
|
|
1980
|
|
1981 (autoload 'gnus-cache-generate-nov-databases "gnus-cache" "\
|
|
1982 Generate NOV files recursively starting in DIR." t nil)
|
|
1983
|
|
1984 ;;;***
|
|
1985
|
16
|
1986 ;;;### (autoloads (gnus-fetch-group) "gnus-group" "gnus/gnus-group.el")
|
|
1987
|
|
1988 (autoload 'gnus-fetch-group "gnus-group" "\
|
|
1989 Start Gnus if necessary and enter GROUP.
|
|
1990 Returns whether the fetching was successful or not." t nil)
|
|
1991
|
|
1992 ;;;***
|
|
1993
|
|
1994 ;;;### (autoloads (gnus-batch-score) "gnus-kill" "gnus/gnus-kill.el")
|
|
1995
|
|
1996 (defalias 'gnus-batch-kill 'gnus-batch-score)
|
|
1997
|
|
1998 (autoload 'gnus-batch-score "gnus-kill" "\
|
|
1999 Run batched scoring.
|
|
2000 Usage: emacs -batch -l gnus -f gnus-batch-score <newsgroups> ...
|
|
2001 Newsgroups is a list of strings in Bnews format. If you want to score
|
|
2002 the comp hierarchy, you'd say \"comp.all\". If you would not like to
|
|
2003 score the alt hierarchy, you'd say \"!alt.all\"." t nil)
|
|
2004
|
|
2005 ;;;***
|
|
2006
|
|
2007 ;;;### (autoloads (gnus-change-server) "gnus-move" "gnus/gnus-move.el")
|
|
2008
|
|
2009 (autoload 'gnus-change-server "gnus-move" "\
|
|
2010 Move from FROM-SERVER to TO-SERVER.
|
|
2011 Update the .newsrc.eld file to reflect the change of nntp server." t nil)
|
|
2012
|
|
2013 ;;;***
|
|
2014
|
12
|
2015 ;;;### (autoloads (gnus-batch-brew-soup) "gnus-soup" "gnus/gnus-soup.el")
|
|
2016
|
|
2017 (autoload 'gnus-batch-brew-soup "gnus-soup" "\
|
|
2018 Brew a SOUP packet from groups mention on the command line.
|
|
2019 Will use the remaining command line arguments as regular expressions
|
|
2020 for matching on group names.
|
|
2021
|
|
2022 For instance, if you want to brew on all the nnml groups, as well as
|
|
2023 groups with \"emacs\" in the name, you could say something like:
|
|
2024
|
|
2025 $ emacs -batch -f gnus-batch-brew-soup ^nnml \".*emacs.*\"" t nil)
|
|
2026
|
|
2027 ;;;***
|
|
2028
|
16
|
2029 ;;;### (autoloads (gnus-update-format) "gnus-spec" "gnus/gnus-spec.el")
|
|
2030
|
|
2031 (autoload 'gnus-update-format "gnus-spec" "\
|
12
|
2032 Update the format specification near point." t nil)
|
|
2033
|
16
|
2034 ;;;***
|
|
2035
|
|
2036 ;;;### (autoloads (gnus-declare-backend gnus-unload) "gnus-start" "gnus/gnus-start.el")
|
|
2037
|
|
2038 (autoload 'gnus-unload "gnus-start" "\
|
|
2039 Unload all Gnus features." t nil)
|
|
2040
|
|
2041 (autoload 'gnus-declare-backend "gnus-start" "\
|
|
2042 Declare backend NAME with ABILITIES as a Gnus backend." nil nil)
|
|
2043
|
|
2044 ;;;***
|
|
2045
|
|
2046 ;;;### (autoloads (gnus-add-configuration) "gnus-win" "gnus/gnus-win.el")
|
|
2047
|
|
2048 (autoload 'gnus-add-configuration "gnus-win" "\
|
12
|
2049 Add the window configuration CONF to `gnus-buffer-configuration'." nil nil)
|
|
2050
|
16
|
2051 ;;;***
|
|
2052
|
|
2053 ;;;### (autoloads (gnus gnus-other-frame gnus-slave gnus-no-server gnus-slave-no-server) "gnus" "gnus/gnus.el")
|
|
2054
|
12
|
2055 (autoload 'gnus-slave-no-server "gnus" "\
|
|
2056 Read network news as a slave, without connecting to local server" t nil)
|
|
2057
|
|
2058 (autoload 'gnus-no-server "gnus" "\
|
|
2059 Read network news.
|
|
2060 If ARG is a positive number, Gnus will use that as the
|
|
2061 startup level. If ARG is nil, Gnus will be started at level 2.
|
|
2062 If ARG is non-nil and not a positive number, Gnus will
|
|
2063 prompt the user for the name of an NNTP server to use.
|
|
2064 As opposed to `gnus', this command will not connect to the local server." t nil)
|
|
2065
|
|
2066 (autoload 'gnus-slave "gnus" "\
|
|
2067 Read news as a slave." t nil)
|
|
2068
|
|
2069 (autoload 'gnus-other-frame "gnus" "\
|
|
2070 Pop up a frame to read news." t nil)
|
|
2071
|
|
2072 (autoload 'gnus "gnus" "\
|
|
2073 Read network news.
|
|
2074 If ARG is non-nil and a positive number, Gnus will use that as the
|
|
2075 startup level. If ARG is non-nil and not a positive number, Gnus will
|
|
2076 prompt the user for the name of an NNTP server to use." t nil)
|
|
2077
|
|
2078 ;;;***
|
|
2079
|
|
2080 ;;;### (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")
|
|
2081
|
18
|
2082 (defcustom message-fcc-handler-function 'message-output "*A function called to save outgoing articles.\nThis function will be called with the name of the file to store the\narticle in. The default function is `message-output' which saves in Unix\nmailbox format." :type '(radio (function-item message-output) (function :tag "Other")) :group 'message-sending)
|
16
|
2083
|
|
2084 (defcustom message-from-style 'default "*Specifies how \"From\" headers look.\n\nIf `nil', they contain just the return address like:\n king@grassland.com\nIf `parens', they look like:\n king@grassland.com (Elvis Parsley)\nIf `angles', they look like:\n Elvis Parsley <king@grassland.com>\n\nOtherwise, most addresses look like `angles', but they look like\n`parens' if `angles' would need quoting and `parens' would not." :type '(choice (const :tag "simple" nil) (const parens) (const angles) (const default)) :group 'message-headers)
|
|
2085
|
|
2086 (defcustom message-signature-separator "^-- *$" "Regexp matching the signature separator." :type 'regexp :group 'message-various)
|
|
2087
|
|
2088 (defcustom message-user-organization-file "/usr/lib/news/organization" "*Local news organization file." :type 'file :group 'message-headers)
|
|
2089
|
|
2090 (defcustom message-send-mail-function 'message-send-mail-with-sendmail "Function to call to send the current buffer as mail.\nThe headers should be delimited by a line whose contents match the\nvariable `mail-header-separator'.\n\nLegal values include `message-send-mail-with-sendmail' (the default),\n`message-send-mail-with-mh' and `message-send-mail-with-qmail'." :type '(radio (function-item message-send-mail-with-sendmail) (function-item message-send-mail-with-mh) (function-item message-send-mail-with-qmail) (function :tag "Other")) :group 'message-sending :group 'message-mail)
|
|
2091
|
|
2092 (defcustom message-citation-line-function 'message-insert-citation-line "*Function called to insert the \"Whomever writes:\" line." :type 'function :group 'message-insertion)
|
|
2093
|
|
2094 (defcustom message-yank-prefix "> " "*Prefix inserted on the lines of yanked messages.\nnil means use indentation." :type 'string :group 'message-insertion)
|
|
2095
|
|
2096 (defcustom message-cite-function (if (and (boundp 'mail-citation-hook) mail-citation-hook) mail-citation-hook 'message-cite-original) "*Function for citing an original message." :type '(radio (function-item message-cite-original) (function-item sc-cite-original) (function :tag "Other")) :group 'message-insertion)
|
|
2097
|
|
2098 (defcustom message-indent-citation-function 'message-indent-citation "*Function for modifying a citation just inserted in the mail buffer.\nThis can also be a list of functions. Each function can find the\ncitation between (point) and (mark t). And each function should leave\npoint and mark around the citation text as modified." :type 'function :group 'message-insertion)
|
|
2099
|
|
2100 (defcustom message-signature t "*String to be inserted at the end of the message buffer.\nIf t, the `message-signature-file' file will be inserted instead.\nIf a function, the result from the function will be used instead.\nIf a form, the result from the form will be used instead." :type 'sexp :group 'message-insertion)
|
|
2101
|
|
2102 (defcustom message-signature-file "~/.signature" "*File containing the text inserted at end of message buffer." :type 'file :group 'message-insertion)
|
12
|
2103
|
|
2104 (autoload 'message-mode "message" "\
|
|
2105 Major mode for editing mail and news to be sent.
|
|
2106 Like Text Mode but with these additional commands:
|
|
2107 C-c C-s message-send (send the message) C-c C-c message-send-and-exit
|
|
2108 C-c C-f move to a header field (and create it if there isn't):
|
|
2109 C-c C-f C-t move to To C-c C-f C-s move to Subject
|
|
2110 C-c C-f C-c move to Cc C-c C-f C-b move to Bcc
|
16
|
2111 C-c C-f C-w move to Fcc C-c C-f C-r move to Reply-To
|
12
|
2112 C-c C-f C-u move to Summary C-c C-f C-n move to Newsgroups
|
|
2113 C-c C-f C-k move to Keywords C-c C-f C-d move to Distribution
|
16
|
2114 C-c C-f C-f move to Followup-To
|
12
|
2115 C-c C-t message-insert-to (add a To header to a news followup)
|
|
2116 C-c C-n message-insert-newsgroups (add a Newsgroup header to a news reply)
|
|
2117 C-c C-b message-goto-body (move to beginning of message text).
|
|
2118 C-c C-i message-goto-signature (move to the beginning of the signature).
|
|
2119 C-c C-w message-insert-signature (insert `message-signature-file' file).
|
|
2120 C-c C-y message-yank-original (insert current message, if any).
|
|
2121 C-c C-q message-fill-yanked-message (fill what was yanked).
|
16
|
2122 C-c C-e message-elide-region (elide the text between point and mark).
|
|
2123 C-c C-r message-caesar-buffer-body (rot13 the message body)." t nil)
|
12
|
2124
|
|
2125 (autoload 'message-mail "message" "\
|
|
2126 Start editing a mail message to be sent." t nil)
|
|
2127
|
|
2128 (autoload 'message-news "message" "\
|
|
2129 Start editing a news article to be sent." t nil)
|
|
2130
|
|
2131 (autoload 'message-reply "message" "\
|
|
2132 Start editing a reply to the article in the current buffer." t nil)
|
|
2133
|
16
|
2134 (autoload 'message-wide-reply "message" "\
|
|
2135 Make a \"wide\" reply to the message in the current buffer." t nil)
|
|
2136
|
|
2137 (autoload 'message-followup "message" "\
|
|
2138 Follow up to the message in the current buffer.
|
|
2139 If TO-NEWSGROUPS, use that as the new Newsgroups line." t nil)
|
12
|
2140
|
|
2141 (autoload 'message-cancel-news "message" "\
|
|
2142 Cancel an article you posted." t nil)
|
|
2143
|
|
2144 (autoload 'message-supersede "message" "\
|
|
2145 Start composing a message to supersede the current message.
|
|
2146 This is done simply by taking the old article and adding a Supersedes
|
|
2147 header line with the old Message-ID." t nil)
|
|
2148
|
|
2149 (autoload 'message-recover "message" "\
|
|
2150 Reread contents of current buffer from its last auto-save file." t nil)
|
|
2151
|
|
2152 (autoload 'message-forward "message" "\
|
|
2153 Forward the current message via mail.
|
|
2154 Optional NEWS will use news to forward instead of mail." t nil)
|
|
2155
|
|
2156 (autoload 'message-resend "message" "\
|
|
2157 Resend the current article to ADDRESS." t nil)
|
|
2158
|
|
2159 (autoload 'message-bounce "message" "\
|
|
2160 Re-mail the current message.
|
|
2161 This only makes sense if the current message is a bounce message than
|
|
2162 contains some mail you have written which has been bounced back to
|
|
2163 you." t nil)
|
|
2164
|
|
2165 (autoload 'message-mail-other-window "message" "\
|
|
2166 Like `message-mail' command, but display mail buffer in another window." t nil)
|
|
2167
|
|
2168 (autoload 'message-mail-other-frame "message" "\
|
|
2169 Like `message-mail' command, but display mail buffer in another frame." t nil)
|
|
2170
|
|
2171 (autoload 'message-news-other-window "message" "\
|
|
2172 Start editing a news article to be sent." t nil)
|
|
2173
|
|
2174 (autoload 'message-news-other-frame "message" "\
|
|
2175 Start editing a news article to be sent." t nil)
|
|
2176
|
|
2177 (autoload 'bold-region "message" "\
|
|
2178 Bold all nonblank characters in the region.
|
|
2179 Works by overstriking characters.
|
|
2180 Called from program, takes two arguments START and END
|
|
2181 which specify the range to operate on." t nil)
|
|
2182
|
|
2183 (autoload 'unbold-region "message" "\
|
|
2184 Remove all boldness (overstruck characters) in the region.
|
|
2185 Called from program, takes two arguments START and END
|
|
2186 which specify the range to operate on." t nil)
|
|
2187
|
|
2188 ;;;***
|
|
2189
|
16
|
2190 ;;;### (autoloads nil "messcompat" "gnus/messcompat.el")
|
|
2191
|
|
2192 (defvar message-signature-file mail-signature-file "\
|
|
2193 *File containing the text inserted at end of message. buffer.")
|
|
2194
|
|
2195 ;;;***
|
|
2196
|
|
2197 ;;;### (autoloads (nndoc-add-type) "nndoc" "gnus/nndoc.el")
|
|
2198
|
|
2199 (autoload 'nndoc-add-type "nndoc" "\
|
|
2200 Add document DEFINITION to the list of nndoc document definitions.
|
|
2201 If POSITION is nil or `last', the definition will be added
|
|
2202 as the last checked definition, if t or `first', add as the
|
|
2203 first definition, and if any other symbol, add after that
|
|
2204 symbol in the alist." nil nil)
|
|
2205
|
|
2206 ;;;***
|
|
2207
|
12
|
2208 ;;;### (autoloads (nnfolder-generate-active-file) "nnfolder" "gnus/nnfolder.el")
|
|
2209
|
|
2210 (autoload 'nnfolder-generate-active-file "nnfolder" "\
|
|
2211 Look for mbox folders in the nnfolder directory and make them into groups." t nil)
|
|
2212
|
|
2213 ;;;***
|
|
2214
|
|
2215 ;;;### (autoloads (nnkiboze-generate-groups) "nnkiboze" "gnus/nnkiboze.el")
|
|
2216
|
|
2217 (autoload 'nnkiboze-generate-groups "nnkiboze" "\
|
|
2218 Usage: emacs -batch -l nnkiboze -f nnkiboze-generate-groups
|
|
2219 Finds out what articles are to be part of the nnkiboze groups." t nil)
|
|
2220
|
|
2221 ;;;***
|
|
2222
|
|
2223 ;;;### (autoloads (nnml-generate-nov-databases) "nnml" "gnus/nnml.el")
|
|
2224
|
|
2225 (autoload 'nnml-generate-nov-databases "nnml" "\
|
|
2226 Generate nov databases in all nnml directories." t nil)
|
|
2227
|
|
2228 ;;;***
|
|
2229
|
|
2230 ;;;### (autoloads (nnsoup-revert-variables nnsoup-set-variables nnsoup-pack-replies) "nnsoup" "gnus/nnsoup.el")
|
|
2231
|
|
2232 (autoload 'nnsoup-pack-replies "nnsoup" "\
|
|
2233 Make an outbound package of SOUP replies." t nil)
|
|
2234
|
|
2235 (autoload 'nnsoup-set-variables "nnsoup" "\
|
|
2236 Use the SOUP methods for posting news and mailing mail." t nil)
|
|
2237
|
|
2238 (autoload 'nnsoup-revert-variables "nnsoup" "\
|
|
2239 Revert posting and mailing methods to the standard Emacs methods." t nil)
|
|
2240
|
|
2241 ;;;***
|
|
2242
|
|
2243 ;;;### (autoloads (gnus-score-mode) "score-mode" "gnus/score-mode.el")
|
|
2244
|
|
2245 (autoload 'gnus-score-mode "score-mode" "\
|
|
2246 Mode for editing Gnus score files.
|
|
2247 This mode is an extended emacs-lisp mode.
|
|
2248
|
|
2249 \\{gnus-score-mode-map}" t nil)
|
|
2250
|
|
2251 ;;;***
|
|
2252
|
|
2253 ;;;### (autoloads (gnus-smiley-display smiley-buffer smiley-region) "smiley" "gnus/smiley.el")
|
|
2254
|
|
2255 (autoload 'smiley-region "smiley" "\
|
|
2256 Smilify the region between point and mark." t nil)
|
|
2257
|
|
2258 (autoload 'smiley-buffer "smiley" nil t nil)
|
|
2259
|
|
2260 (autoload 'gnus-smiley-display "smiley" nil t nil)
|
|
2261
|
|
2262 ;;;***
|
|
2263
|
|
2264 ;;;### (autoloads (hm--html-minor-mode hm--html-mode) "hm--html-mode" "hm--html-menus/hm--html-mode.el")
|
|
2265
|
|
2266 (autoload 'hm--html-mode "hm--html-mode" "\
|
|
2267 Major mode for editing HTML hypertext documents.
|
|
2268 Special commands:\\{hm--html-mode-map}
|
|
2269 Turning on hm--html-mode calls the value of the variable hm--html-mode-hook,
|
|
2270 if that value is non-nil." t nil)
|
|
2271
|
|
2272 (autoload 'hm--html-minor-mode "hm--html-mode" "\
|
|
2273 Toggle hm--html-minor-mode.
|
|
2274 With arg, turn hm--html-minor-mode on iff arg is positive." t nil)
|
|
2275
|
|
2276 ;;;***
|
|
2277
|
|
2278 ;;;### (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")
|
|
2279
|
|
2280 (autoload 'html-view-start-mosaic "html-view" "\
|
|
2281 Start Mosaic." t nil)
|
|
2282
|
|
2283 (autoload 'html-view-view-file "html-view" "\
|
|
2284 View an html file with Mosaic." t nil)
|
|
2285
|
|
2286 (autoload 'html-view-view-buffer "html-view" "\
|
|
2287 View html buffer with Mosaic.
|
|
2288 If BUFFER-TO-VIEW is nil, then the current buffer is used." t nil)
|
|
2289
|
|
2290 (autoload 'html-view-goto-url "html-view" "\
|
|
2291 Goto an URL in Mosaic." t nil)
|
|
2292
|
|
2293 (autoload 'html-view-get-display "html-view" "\
|
|
2294 Get the display for Mosaic." t nil)
|
|
2295
|
|
2296 ;;;***
|
|
2297
|
22
|
2298 ;;;### (autoloads (tmpl-insert-template-file tmpl-insert-template-file-from-fixed-dirs tmpl-expand-templates-in-buffer tmpl-expand-templates-in-region) "tmpl-minor-mode" "hm--html-menus/tmpl-minor-mode.el")
|
|
2299
|
|
2300 (autoload 'tmpl-expand-templates-in-region "tmpl-minor-mode" "\
|
|
2301 Expand the templates in the region from BEGIN to END.
|
|
2302 If BEGIN and and are nil, then the current region is used." t nil)
|
|
2303
|
|
2304 (autoload 'tmpl-expand-templates-in-buffer "tmpl-minor-mode" "\
|
|
2305 Expand all templates in the current buffer." t nil)
|
|
2306
|
|
2307 (autoload 'tmpl-insert-template-file-from-fixed-dirs "tmpl-minor-mode" "\
|
|
2308 Inserts a template FILE and expands it, if `tmpl-automatic-expand' is t.
|
|
2309 This command tries to read the template file from a list of
|
|
2310 predefined directries (look at `tmpl-template-dir-list') and it filters
|
|
2311 the contents of this directories with the regular expression
|
|
2312 `tmpl-filter-regexp' (look also at this variable).
|
|
2313 The command uses a history variable, which could be changed with the
|
|
2314 variable `tmpl-history-variable-name'.
|
|
2315
|
|
2316 The user of the command is able to change interactive to another
|
|
2317 directory by entering at first the string \"Change the directory\".
|
|
2318 This maybe to difficult for the user. Therefore another command
|
|
2319 called `tmpl-insert-template-file' exist, which doesn't use fixed
|
|
2320 directories and filters." t nil)
|
|
2321
|
|
2322 (autoload 'tmpl-insert-template-file "tmpl-minor-mode" "\
|
|
2323 Insert a template FILE and expand it, if `tmpl-automatic-expand' is t.
|
|
2324 Look also at `tmpl-template-dir-list', to specify a default template directory.
|
|
2325 You should also take a look at `tmpl-insert-template-file-from-fixed-dirs'
|
|
2326 which has additional advantages (and disadvantages :-).
|
|
2327
|
|
2328 ATTENTION: The interface of this function has changed. The old
|
|
2329 function had the argument list (&optional TEMPLATE-DIR AUTOMATIC-EXPAND).
|
|
2330 The variables `tmpl-template-dir-list' and `tmpl-automatic-expand' must
|
|
2331 now be used instead of the args TEMPLATE-DIR and AUTOMATIC-EXPAND." t nil)
|
|
2332
|
|
2333 ;;;***
|
|
2334
|
12
|
2335 ;;;### (autoloads (hmail:compose) "hmail" "hyperbole/hmail.el")
|
|
2336
|
|
2337 (autoload 'hmail:compose "hmail" "\
|
|
2338 Compose mail with ADDRESS and evaluation of EXPR.
|
|
2339 Optional SUBJECT and HELP message may also be given." t nil)
|
|
2340
|
|
2341 ;;;***
|
|
2342
|
|
2343 ;;;### (autoloads (Info-handle-in-note smart-info-assist smart-info) "hmous-info" "hyperbole/hmous-info.el")
|
|
2344
|
|
2345 (autoload 'smart-info "hmous-info" "\
|
|
2346 Walks through Info documentation networks using one key or mouse key.
|
|
2347
|
|
2348 If key is pressed within:
|
|
2349 (1) the first line of an Info Menu Entry or Cross Reference, the desired node
|
|
2350 is found;
|
|
2351 (2) the Up, Next, or Previous entries of a Node Header (first line),
|
|
2352 the desired node is found;
|
|
2353 (3) the File entry of a Node Header (first line),
|
|
2354 the 'Top' node within that file is found;
|
|
2355 (4) at the end of the current node, the Next node is found (this will
|
|
2356 descend subtrees if the function 'Info-global-next' is bound);
|
|
2357 (5) anywhere else (e.g. at the end of a line), the current node entry is
|
|
2358 scrolled up one windowful.
|
|
2359
|
|
2360 Returns t if key is pressed within an Info Node Header, Cross Reference,
|
|
2361 or a Menu; otherwise returns nil." t nil)
|
|
2362
|
|
2363 (autoload 'smart-info-assist "hmous-info" "\
|
|
2364 Walks through Info documentation networks using one assist-key or mouse assist-key.
|
|
2365
|
|
2366 If assist-key is pressed within:
|
|
2367 (1) the first line of an Info Menu Entry or Cross Reference, the desired node
|
|
2368 is found;
|
|
2369 (2) the Up, Next, or Previous entries of a Node Header (first line),
|
|
2370 the last node in the history list is found;
|
|
2371 (3) the File entry of a Node Header (first line),
|
|
2372 the 'DIR' root-level node is found;
|
|
2373 (4) at the end of the current node, the Previous node is found (this will
|
|
2374 return from subtrees if the function 'Info-global-prev is bound);
|
|
2375 (5) anywhere else (e.g. at the end of a line), the current node entry is
|
|
2376 scrolled down one windowful.
|
|
2377
|
|
2378 Returns t if assist-key is pressed within an Info Node Header, Cross Reference,
|
|
2379 or a Menu; otherwise returns nil." t nil)
|
|
2380
|
|
2381 (autoload 'Info-handle-in-note "hmous-info" "\
|
|
2382 Follows an Info cross-reference.
|
|
2383 If point is within the first line of an Info note (cross-reference), follows
|
|
2384 cross-reference and returns t; otherwise returns nil." nil nil)
|
|
2385
|
|
2386 ;;;***
|
|
2387
|
24
|
2388 ;;;### (autoloads (hkey-help-show) "hmouse-drv" "hyperbole/hmouse-drv.el")
|
|
2389
|
|
2390 (autoload 'hkey-help-show "hmouse-drv" "\
|
|
2391 Saves prior frame configuration if BUFFER displays help. Displays BUFFER.
|
|
2392
|
|
2393 Optional second arg CURRENT-WINDOW non-nil forces display of buffer within
|
|
2394 the current window. By default, it is displayed in another window." nil nil)
|
|
2395
|
|
2396 ;;;***
|
|
2397
|
|
2398 ;;;### (autoloads (smart-tags-file smart-tags-file-path smart-objc smart-lisp-mode-p smart-java-at-tag-p smart-java smart-fortran-at-tag-p smart-c++ smart-c-at-tag-p smart-asm-at-tag-p) "hmouse-tag" "hyperbole/hmouse-tag.el")
|
12
|
2399
|
|
2400 (autoload 'smart-asm-at-tag-p "hmouse-tag" "\
|
|
2401 Return assembly tag name that point is within, else nil." nil nil)
|
|
2402
|
|
2403 (autoload 'smart-c-at-tag-p "hmouse-tag" "\
|
|
2404 Return C tag name that point is within, else nil." nil nil)
|
|
2405
|
|
2406 (autoload 'smart-c++ "hmouse-tag" "\
|
|
2407 Jumps to the definition of optional C++ IDENTIFIER or the one at point.
|
|
2408 Optional second arg NEXT means jump to next matching C++ tag.
|
|
2409
|
|
2410 It assumes that its caller has already checked that the key was pressed in an
|
|
2411 appropriate buffer and has moved the cursor to the selected buffer.
|
|
2412
|
|
2413 If:
|
24
|
2414 (1) on a `#include' statement, the include file is displayed;
|
|
2415 Look for include file in directory lists `smart-c-cpp-include-dirs'
|
|
2416 and `smart-c-include-dirs'.
|
12
|
2417 (2) on a C++ identifier, the identifier definition is displayed,
|
24
|
2418 assuming the identifier is found within an `etags' generated tag file
|
12
|
2419 in the current directory or any of its ancestor directories.
|
24
|
2420 (3) if `smart-c-use-lib-man' is non-nil, the C++ identifier is
|
12
|
2421 recognized as a library symbol, and a man page is found for the
|
|
2422 identifier, then the man page is displayed." t nil)
|
|
2423
|
24
|
2424 (autoload 'smart-fortran-at-tag-p "hmouse-tag" "\
|
|
2425 Return Fortran tag name that point is within, else nil." nil nil)
|
|
2426
|
|
2427 (autoload 'smart-java "hmouse-tag" "\
|
|
2428 Jumps to the definition of optional Java IDENTIFIER or the one at point.
|
|
2429 Optional second arg NEXT means jump to next matching Java tag.
|
12
|
2430
|
|
2431 It assumes that its caller has already checked that the key was pressed in an
|
|
2432 appropriate buffer and has moved the cursor to the selected buffer.
|
|
2433
|
24
|
2434 If:
|
|
2435 (1) within a commented @see cross-reference, the referent is displayed;
|
|
2436 (2) on a `package' or `import' statement, the referent is displayed;
|
|
2437 Look for referent files in the directory list `smart-java-package-dirs'.
|
|
2438 (3) on an Java identifier, the identifier definition is displayed,
|
|
2439 assuming the identifier is found within an `etags' generated tag file
|
|
2440 in the current directory or any of its ancestor directories." t nil)
|
|
2441
|
|
2442 (autoload 'smart-java-at-tag-p "hmouse-tag" "\
|
|
2443 Return Java tag name that point is within, else nil." nil nil)
|
|
2444
|
|
2445 (autoload 'smart-lisp-mode-p "hmouse-tag" "\
|
|
2446 Return t if in a mode which uses Lisp symbols." nil nil)
|
12
|
2447
|
|
2448 (autoload 'smart-objc "hmouse-tag" "\
|
|
2449 Jumps to the definition of optional Objective-C IDENTIFIER or the one at point.
|
|
2450 Optional second arg NEXT means jump to next matching Objective-C tag.
|
|
2451
|
|
2452 It assumes that its caller has already checked that the key was pressed in an
|
|
2453 appropriate buffer and has moved the cursor to the selected buffer.
|
|
2454
|
|
2455 If:
|
24
|
2456 (1) on a `#include' statement, the include file is displayed;
|
|
2457 Look for include file in directory lists `smart-c-cpp-include-dirs'
|
|
2458 and `smart-c-include-dirs'.
|
12
|
2459 (2) on an Objective-C identifier, the identifier definition is displayed,
|
24
|
2460 assuming the identifier is found within an `etags' generated tag file
|
12
|
2461 in the current directory or any of its ancestor directories.
|
24
|
2462 (3) if `smart-c-use-lib-man' is non-nil, the Objective-C identifier is
|
12
|
2463 recognized as a library symbol, and a man page is found for the
|
|
2464 identifier, then the man page is displayed." t nil)
|
|
2465
|
|
2466 (autoload 'smart-tags-file-path "hmouse-tag" "\
|
|
2467 Expand relative FILE name by looking it up in the nearest tags file.
|
|
2468 Return FILE unchanged if it exists relative to the current directory or
|
|
2469 cannot be expanded via a tags file." nil nil)
|
|
2470
|
|
2471 (autoload 'smart-tags-file "hmouse-tag" "\
|
24
|
2472 Return appropriate tags file name for CURR-FILENAME or `tags-file-name'.
|
|
2473 Optional NAME-OF-TAGS-FILE is the literal filename for which to look." nil nil)
|
12
|
2474
|
|
2475 ;;;***
|
|
2476
|
|
2477 ;;;### (autoloads (var:append) "hvar" "hyperbole/hvar.el")
|
|
2478
|
|
2479 (autoload 'var:append "hvar" "\
|
|
2480 Appends to value held by VAR-SYMBOL-NAME, LIST-TO-ADD. Returns new value.
|
|
2481 If VAR-SYMBOL-NAME is unbound, it is set to LIST-TO-ADD.
|
|
2482 Often used to append to 'hook' variables." nil nil)
|
|
2483
|
|
2484 ;;;***
|
|
2485
|
24
|
2486 ;;;### (autoloads (hypb:display-file-with-logo hypb:configuration) "hypb" "hyperbole/hypb.el")
|
12
|
2487
|
|
2488 (autoload 'hypb:configuration "hypb" "\
|
|
2489 Insert Emacs configuration information at the end of optional OUT-BUF or the current buffer." nil nil)
|
|
2490
|
24
|
2491 (autoload 'hypb:display-file-with-logo "hypb" "\
|
|
2492 Display an optional text FILE with the InfoDock Associates logo prepended.
|
|
2493 Without file, logo is prepended to the current buffer." nil nil)
|
|
2494
|
12
|
2495 ;;;***
|
|
2496
|
|
2497 ;;;### (autoloads nil "hyperbole" "hyperbole/hyperbole.el")
|
|
2498
|
|
2499 (defvar action-key-url-function 'w3-fetch "\
|
|
2500 Value is a function of one argument, a url, which displays the url referent.
|
|
2501 Possible values are:
|
|
2502 w3-fetch - display using the W3 Emacs web browser;
|
|
2503 highlight-headers-follow-url-netscape - display in Netscape;
|
|
2504 highlight-headers-follow-url-mosaic - display in Mosaic.")
|
|
2505
|
|
2506 (defvar kimport:mode-alist '((t . kimport:text) (outline-mode . kimport:star-outline)) "\
|
|
2507 Alist of (major-mode . importation-function) elements.
|
|
2508 This determines the type of importation done on a file when `kimport:file' is
|
|
2509 called if the major mode of the import file matches the car of an element in
|
|
2510 this list. If there is no match, then `kimport:suffix-alist' is checked. If
|
|
2511 that yields no match, the element in this list whose car is 't is used. It
|
|
2512 normally does an import of a koutline or text file.
|
|
2513
|
|
2514 Each importation-function must take two arguments, a buffer/file to import
|
|
2515 and a buffer/file into which to insert the imported elements and a third
|
|
2516 optional argument, CHILDREN-P, which when non-nil means insert imported cells
|
|
2517 as the initial set of children of the current cell, if any.
|
|
2518
|
|
2519 outline-mode - imported as an Emacs outline whose entries begin with
|
|
2520 asterisks;
|
|
2521 .kot
|
|
2522 .kotl - imported as a structured koutline
|
|
2523
|
|
2524 all others - imported as text.")
|
|
2525
|
|
2526 (defvar kimport:suffix-alist '(("\\.otl$" . kimport:star-outline) ("\\.aug$" . kimport:aug-post-outline)) "\
|
|
2527 Alist of (buffer-name-suffix-regexp . importation-function) elements.
|
|
2528 This determines the type of importation done on a file when `kimport:file' is
|
|
2529 called. Each importation-function must take two arguments, a buffer/file to
|
|
2530 import and a buffer/file into which to insert the imported elements and a
|
|
2531 third optional argument, CHILDREN-P, which when non-nil means insert imported
|
|
2532 cells as the initial set of children of the current cell, if any.
|
|
2533
|
|
2534 .otl - imported as an Emacs outline whose entries begin with asterisks;
|
|
2535 .kot
|
|
2536 .kotl - imported as a structured koutline
|
|
2537 .aug - imported as an Augment post-numbered outline.")
|
|
2538
|
|
2539 ;;;***
|
|
2540
|
|
2541 ;;;### (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")
|
|
2542
|
|
2543 (autoload 'wconfig-add-by-name "wconfig" "\
|
|
2544 Saves the current window configuration under the string NAME.
|
|
2545 When called interactively and a window configuration already exists under
|
|
2546 NAME, confirms whether or not to replace it." t nil)
|
|
2547
|
|
2548 (autoload 'wconfig-delete-by-name "wconfig" "\
|
|
2549 Deletes window configuration saved under NAME." t nil)
|
|
2550
|
|
2551 (autoload 'wconfig-restore-by-name "wconfig" "\
|
|
2552 Restores window configuration saved under NAME." t nil)
|
|
2553
|
|
2554 (autoload 'wconfig-delete-pop "wconfig" "\
|
|
2555 Replaces current window config with most recently saved config in ring.
|
|
2556 Then deletes this new configuration from the ring." t nil)
|
|
2557
|
|
2558 (autoload 'wconfig-ring-save "wconfig" "\
|
|
2559 Saves the current window configuration onto the save ring.
|
|
2560 Use {\\[wconfig-yank-pop]} to restore it at a later time." t nil)
|
|
2561
|
|
2562 (autoload 'wconfig-yank-pop "wconfig" "\
|
|
2563 Replaces current window config with prefix arg Nth prior one in save ring.
|
|
2564 Interactively, default value of N = 1, meaning the last saved window
|
|
2565 configuration is displayed.
|
|
2566
|
|
2567 The sequence of window configurations wraps around, so that after the oldest
|
|
2568 one comes the newest one." t nil)
|
|
2569
|
|
2570 ;;;***
|
|
2571
|
|
2572 ;;;### (autoloads (rolo-logic) "wrolo-logic" "hyperbole/wrolo-logic.el")
|
|
2573
|
|
2574 (autoload 'rolo-logic "wrolo-logic" "\
|
|
2575 Apply FUNC to all entries in optional IN-BUFS, display entries where FUNC is non-nil.
|
|
2576 If IN-BUFS is nil, 'rolo-file-list' is used. If optional COUNT-ONLY is
|
|
2577 non-nil, don't display entries, return count of matching entries only. If
|
|
2578 optional INCLUDE-SUB-ENTRIES flag is non-nil, FUNC will be applied across all
|
|
2579 sub-entries at once. Default is to apply FUNC to each entry and sub-entry
|
|
2580 separately. Entries are displayed with all of their sub-entries unless
|
|
2581 INCLUDE-SUB-ENTRIES is nil and optional NO-SUB-ENTRIES-OUT flag is non-nil.
|
|
2582 FUNC should use the free variables 'start' and 'end' which contain the limits
|
|
2583 of the region on which it should operate. Returns number of applications of
|
|
2584 FUNC that return non-nil." t nil)
|
|
2585
|
|
2586 ;;;***
|
|
2587
|
|
2588 ;;;### (autoloads (rolo-yank rolo-sort rolo-kill rolo-grep rolo-fgrep rolo-edit rolo-display-matches rolo-add) "wrolo" "hyperbole/wrolo.el")
|
|
2589
|
|
2590 (autoload 'rolo-add "wrolo" "\
|
|
2591 Adds a new entry in personal rolodex for NAME.
|
|
2592 Last name first is best, e.g. \"Smith, John\".
|
|
2593 With prefix argument, prompts for optional FILE to add entry within.
|
|
2594 NAME may be of the form: parent/child to insert child below a parent
|
|
2595 entry which begins with the parent string." t nil)
|
|
2596
|
|
2597 (autoload 'rolo-display-matches "wrolo" "\
|
|
2598 Display optional DISPLAY-BUF buffer of previously found rolodex matches.
|
|
2599 If DISPLAY-BUF is nil, use the value in 'rolo-display-buffer'.
|
|
2600 Second arg RETURN-TO-BUFFER is the buffer to leave point within after the display." t nil)
|
|
2601
|
|
2602 (autoload 'rolo-edit "wrolo" "\
|
|
2603 Edits a rolodex entry given by optional NAME within 'rolo-file-list'.
|
|
2604 With prefix argument, prompts for optional FILE to locate entry within.
|
|
2605 With no NAME arg, simply displays FILE or first entry in 'rolo-file-list' in an
|
|
2606 editable mode. NAME may be of the form: parent/child to edit child below a
|
|
2607 parent entry which begins with the parent string." t nil)
|
|
2608
|
|
2609 (autoload 'rolo-fgrep "wrolo" "\
|
|
2610 Display rolodex entries matching STRING.
|
|
2611 To a maximum of optional prefix arg MAX-MATCHES, in file(s) from optional
|
|
2612 ROLO-FILE or rolo-file-list. Default is to find all matching entries. Each
|
|
2613 entry is displayed with all of its sub-entries. Optional COUNT-ONLY non-nil
|
|
2614 means don't retrieve and don't display matching entries. Optional NO-DISPLAY
|
|
2615 non-nil means retrieve entries but don't display.
|
|
2616
|
|
2617 Nil value of MAX-MATCHES means find all matches, t value means find all matches
|
|
2618 but omit file headers, negative values mean find up to the inverse of that
|
|
2619 number of entries and omit file headers.
|
|
2620
|
|
2621 Returns number of entries matched. See also documentation for the variable
|
|
2622 rolo-file-list." t nil)
|
|
2623
|
|
2624 (autoload 'rolo-grep "wrolo" "\
|
|
2625 Display rolodex entries matching REGEXP.
|
|
2626 To a maximum of prefix arg MAX-MATCHES, in buffer(s) from optional ROLO-BUFS or
|
|
2627 rolo-file-list. Default is to find all matching entries. Each entry is
|
|
2628 displayed with all of its sub-entries. Optional COUNT-ONLY non-nil means don't
|
|
2629 retrieve and don't display matching entries. Optional NO-DISPLAY non-nil
|
|
2630 means retrieve entries but don't display.
|
|
2631
|
|
2632 Nil value of MAX-MATCHES means find all matches, t value means find all matches
|
|
2633 but omit file headers, negative values mean find up to the inverse of that
|
|
2634 number of entries and omit file headers.
|
|
2635
|
|
2636 Returns number of entries matched. See also documentation for the variable
|
|
2637 rolo-file-list." t nil)
|
|
2638
|
|
2639 (autoload 'rolo-kill "wrolo" "\
|
|
2640 Kills a rolodex entry given by NAME within 'rolo-file-list'.
|
|
2641 With prefix argument, prompts for optional FILE to locate entry within.
|
|
2642 NAME may be of the form: parent/child to kill child below a parent entry
|
|
2643 which begins with the parent string.
|
|
2644 Returns t if entry is killed, nil otherwise." t nil)
|
|
2645
|
|
2646 (autoload 'rolo-sort "wrolo" "\
|
|
2647 Sorts up to 14 levels of entries in ROLO-FILE (default is personal rolo).
|
|
2648 Assumes entries are delimited by one or more '*'characters.
|
|
2649 Returns list of number of groupings at each entry level." t nil)
|
|
2650
|
|
2651 (autoload 'rolo-yank "wrolo" "\
|
|
2652 Inserts at point the first rolodex entry matching NAME.
|
|
2653 With optional prefix arg, REGEXP-P, treats NAME as a regular expression instead
|
|
2654 of a string." t nil)
|
|
2655
|
|
2656 ;;;***
|
|
2657
|
|
2658 ;;;### (autoloads (iso-accents-mode) "iso-acc" "iso/iso-acc.el")
|
|
2659
|
|
2660 (autoload 'iso-accents-mode "iso-acc" "\
|
|
2661 Toggle ISO Accents mode, in which accents modify the following letter.
|
|
2662 This permits easy insertion of accented characters according to ISO-8859-1.
|
|
2663 When Iso-accents mode is enabled, accent character keys
|
|
2664 \(`, ', \", ^, / and ~) do not self-insert; instead, they modify the following
|
|
2665 letter key so that it inserts an ISO accented letter.
|
|
2666
|
|
2667 You can customize ISO Accents mode to a particular language
|
|
2668 with the command `iso-accents-customize'.
|
|
2669
|
|
2670 Special combinations: ~c gives a c with cedilla,
|
|
2671 ~d gives an Icelandic eth (d with dash).
|
|
2672 ~t gives an Icelandic thorn.
|
|
2673 \"s gives German sharp s.
|
|
2674 /a gives a with ring.
|
|
2675 /e gives an a-e ligature.
|
|
2676 ~< and ~> give guillemots.
|
|
2677 ~! gives an inverted exclamation mark.
|
|
2678 ~? gives an inverted question mark.
|
|
2679
|
|
2680 With an argument, a positive argument enables ISO Accents mode,
|
|
2681 and a negative argument disables it." t nil)
|
|
2682
|
|
2683 ;;;***
|
|
2684
|
|
2685 ;;;### (autoloads (mc-deactivate-passwd mc-install-write-mode mc-install-read-mode) "mailcrypt" "mailcrypt/mailcrypt.el")
|
|
2686
|
|
2687 (autoload 'mc-install-read-mode "mailcrypt" nil t nil)
|
|
2688
|
|
2689 (autoload 'mc-install-write-mode "mailcrypt" nil t nil)
|
|
2690
|
|
2691 (autoload 'mc-deactivate-passwd "mailcrypt" "\
|
|
2692 *Deactivate the passphrase cache." t nil)
|
|
2693
|
|
2694 ;;;***
|
|
2695
|
|
2696 ;;;### (autoloads (mc-pgp-fetch-key mc-scheme-pgp) "mc-pgp" "mailcrypt/mc-pgp.el")
|
|
2697
|
|
2698 (autoload 'mc-scheme-pgp "mc-pgp" nil nil nil)
|
|
2699
|
|
2700 (autoload 'mc-pgp-fetch-key "mc-pgp" "\
|
|
2701 Attempt to fetch a key for addition to PGP keyring. Interactively,
|
|
2702 prompt for string matching key to fetch.
|
|
2703
|
|
2704 Non-interactively, ID must be a pair. The CAR must be a bare Email
|
|
2705 address and the CDR a keyID (with \"0x\" prefix). Either, but not
|
|
2706 both, may be nil.
|
|
2707
|
|
2708 Return t if we think we were successful; nil otherwise. Note that nil
|
|
2709 is not necessarily an error, since we may have merely fired off an Email
|
|
2710 request for the key." t nil)
|
|
2711
|
|
2712 ;;;***
|
|
2713
|
|
2714 ;;;### (autoloads (mc-remailer-insert-response-block mc-remailer-encrypt-for-chain mc-remailer-insert-pseudonym) "mc-remail" "mailcrypt/mc-remail.el")
|
|
2715
|
|
2716 (autoload 'mc-remailer-insert-pseudonym "mc-remail" "\
|
|
2717 Insert pseudonym as a From field in the hash-mark header.
|
|
2718
|
|
2719 See the documentation for the variable `mc-remailer-pseudonyms' for
|
|
2720 more information." t nil)
|
|
2721
|
|
2722 (autoload 'mc-remailer-encrypt-for-chain "mc-remail" "\
|
|
2723 Encrypt message for a remailer chain, prompting for chain to use.
|
|
2724
|
|
2725 With \\[universal-argument], pause before each encryption." t nil)
|
|
2726
|
|
2727 (autoload 'mc-remailer-insert-response-block "mc-remail" "\
|
|
2728 Insert response block at point, prompting for chain to use.
|
|
2729
|
|
2730 With \\[universal-argument], enter a recursive edit of the innermost
|
|
2731 layer of the block before encrypting it." t nil)
|
|
2732
|
|
2733 ;;;***
|
|
2734
|
|
2735 ;;;### (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")
|
|
2736
|
|
2737 (autoload 'mc-cleanup-recipient-headers "mc-toplev" nil nil nil)
|
|
2738
|
|
2739 (autoload 'mc-encrypt "mc-toplev" "\
|
|
2740 *Encrypt the current buffer.
|
|
2741
|
|
2742 Exact behavior depends on current major mode.
|
|
2743
|
|
2744 With \\[universal-argument], prompt for User ID to sign as.
|
|
2745
|
|
2746 With \\[universal-argument] \\[universal-argument], prompt for encryption scheme to use." t nil)
|
|
2747
|
|
2748 (autoload 'mc-encrypt-message "mc-toplev" "\
|
|
2749 *Encrypt a message for RECIPIENTS using the given encryption SCHEME.
|
|
2750 RECIPIENTS is a comma separated string. If SCHEME is nil, use the value
|
|
2751 of `mc-default-scheme'. Returns t on success, nil otherwise." nil nil)
|
|
2752
|
|
2753 (autoload 'mc-decrypt "mc-toplev" "\
|
|
2754 *Decrypt a message in the current buffer.
|
|
2755
|
|
2756 Exact behavior depends on current major mode." t nil)
|
|
2757
|
|
2758 (autoload 'mc-decrypt-message "mc-toplev" "\
|
|
2759 Decrypt whatever message is in the current buffer.
|
|
2760 Returns a pair (SUCCEEDED . VERIFIED) where SUCCEEDED is t if the encryption
|
|
2761 succeeded and VERIFIED is t if it had a valid signature." nil nil)
|
|
2762
|
|
2763 (autoload 'mc-sign "mc-toplev" "\
|
|
2764 *Sign a message in the current buffer.
|
|
2765
|
|
2766 Exact behavior depends on current major mode.
|
|
2767
|
|
2768 With one prefix arg, prompts for private key to use, with two prefix args,
|
|
2769 also prompts for encryption scheme to use. With negative prefix arg,
|
|
2770 inhibits clearsigning (pgp)." t nil)
|
|
2771
|
|
2772 (autoload 'mc-sign-message "mc-toplev" "\
|
|
2773 Clear sign the message." nil nil)
|
|
2774
|
|
2775 (autoload 'mc-verify "mc-toplev" "\
|
|
2776 *Verify a message in the current buffer.
|
|
2777
|
|
2778 Exact behavior depends on current major mode." t nil)
|
|
2779
|
|
2780 (autoload 'mc-verify-signature "mc-toplev" "\
|
|
2781 *Verify the signature of the signed message in the current buffer.
|
|
2782 Show the result as a message in the minibuffer. Returns t if the signature
|
|
2783 is verified." nil nil)
|
|
2784
|
|
2785 (autoload 'mc-insert-public-key "mc-toplev" "\
|
|
2786 *Insert your public key at point.
|
|
2787 With one prefix arg, prompts for user id to use. With two prefix
|
|
2788 args, prompts for encryption scheme." t nil)
|
|
2789
|
|
2790 (autoload 'mc-snarf "mc-toplev" "\
|
|
2791 *Add all public keys in the buffer to your keyring.
|
|
2792
|
|
2793 Exact behavior depends on current major mode." t nil)
|
|
2794
|
|
2795 (autoload 'mc-snarf-keys "mc-toplev" "\
|
|
2796 *Add all public keys in the buffer to your keyring." t nil)
|
|
2797
|
|
2798 (autoload 'mc-rmail-summary-verify-signature "mc-toplev" "\
|
|
2799 *Verify the signature in the current message." t nil)
|
|
2800
|
|
2801 (autoload 'mc-rmail-summary-decrypt-message "mc-toplev" "\
|
|
2802 *Decrypt the contents of this message" t nil)
|
|
2803
|
|
2804 (autoload 'mc-rmail-summary-snarf-keys "mc-toplev" "\
|
|
2805 *Adds keys from current message to public key ring" t nil)
|
|
2806
|
|
2807 (autoload 'mc-rmail-verify-signature "mc-toplev" "\
|
|
2808 *Verify the signature in the current message." t nil)
|
|
2809
|
|
2810 (autoload 'mc-rmail-decrypt-message "mc-toplev" "\
|
|
2811 *Decrypt the contents of this message" t nil)
|
|
2812
|
|
2813 (autoload 'mc-vm-verify-signature "mc-toplev" "\
|
|
2814 *Verify the signature in the current VM message" t nil)
|
|
2815
|
|
2816 (autoload 'mc-vm-decrypt-message "mc-toplev" "\
|
|
2817 *Decrypt the contents of the current VM message" t nil)
|
|
2818
|
|
2819 (autoload 'mc-vm-snarf-keys "mc-toplev" "\
|
|
2820 *Snarf public key from the contents of the current VM message" t nil)
|
|
2821
|
|
2822 (autoload 'mc-gnus-verify-signature "mc-toplev" nil t nil)
|
|
2823
|
|
2824 (autoload 'mc-gnus-snarf-keys "mc-toplev" nil t nil)
|
|
2825
|
|
2826 (autoload 'mc-gnus-decrypt-message "mc-toplev" nil t nil)
|
|
2827
|
|
2828 (autoload 'mc-mh-decrypt-message "mc-toplev" "\
|
|
2829 Decrypt the contents of the current MH message in the show buffer." t nil)
|
|
2830
|
|
2831 (autoload 'mc-mh-verify-signature "mc-toplev" "\
|
|
2832 *Verify the signature in the current MH message." t nil)
|
|
2833
|
|
2834 (autoload 'mc-mh-snarf-keys "mc-toplev" nil t nil)
|
|
2835
|
|
2836 ;;;***
|
|
2837
|
|
2838 ;;;### (autoloads (mh-letter-mode mh-smail-other-window mh-smail-batch mh-smail) "mh-comp" "mh-e/mh-comp.el")
|
|
2839
|
|
2840 (autoload 'mh-smail "mh-comp" "\
|
|
2841 Compose and send mail with the MH mail system.
|
|
2842 This function is an entry point to mh-e, the Emacs front end
|
|
2843 to the MH mail system.
|
|
2844
|
|
2845 See documentation of `\\[mh-send]' for more details on composing mail." t nil)
|
|
2846
|
|
2847 (autoload 'mh-smail-batch "mh-comp" "\
|
|
2848 Set up a mail composition draft with the MH mail system.
|
|
2849 This function is an entry point to mh-e, the Emacs front end
|
|
2850 to the MH mail system. This function does not prompt the user
|
|
2851 for any header fields, and thus is suitable for use by programs
|
|
2852 that want to create a mail buffer.
|
|
2853 Users should use `\\[mh-smail]' to compose mail." nil nil)
|
|
2854
|
|
2855 (autoload 'mh-smail-other-window "mh-comp" "\
|
|
2856 Compose and send mail in other window with the MH mail system.
|
|
2857 This function is an entry point to mh-e, the Emacs front end
|
|
2858 to the MH mail system.
|
|
2859
|
|
2860 See documentation of `\\[mh-send]' for more details on composing mail." t nil)
|
|
2861
|
|
2862 (autoload 'mh-letter-mode "mh-comp" "\
|
|
2863 Mode for composing letters in mh-e.\\<mh-letter-mode-map>
|
|
2864 When you have finished composing, type \\[mh-send-letter] to send the message
|
|
2865 using the MH mail handling system.
|
|
2866 See the documentation for \\[mh-edit-mhn] for information on composing MIME
|
|
2867 messages.
|
|
2868
|
|
2869 \\{mh-letter-mode-map}
|
|
2870
|
|
2871 Variables controlling this mode (defaults in parentheses):
|
|
2872
|
|
2873 mh-delete-yanked-msg-window (nil)
|
|
2874 If non-nil, \\[mh-yank-cur-msg] will delete any windows displaying
|
|
2875 the yanked message.
|
|
2876
|
|
2877 mh-yank-from-start-of-msg (t)
|
|
2878 If non-nil, \\[mh-yank-cur-msg] will include the entire message.
|
|
2879 If `body', just yank the body (no header).
|
|
2880 If nil, only the portion of the message following the point will be yanked.
|
|
2881 If there is a region, this variable is ignored.
|
|
2882
|
|
2883 mh-ins-buf-prefix (\"> \")
|
|
2884 String to insert before each non-blank line of a message as it is
|
|
2885 inserted in a draft letter.
|
|
2886
|
|
2887 mh-signature-file-name (\"~/.signature\")
|
|
2888 File to be inserted into message by \\[mh-insert-signature].
|
|
2889
|
|
2890 Upon invoking mh-letter-mode, text-mode-hook and mh-letter-mode-hook are
|
|
2891 invoked with no args, if those values are non-nil." t nil)
|
|
2892
|
|
2893 ;;;***
|
|
2894
|
|
2895 ;;;### (autoloads (mh-version mh-rmail) "mh-e" "mh-e/mh-e.el")
|
|
2896
|
|
2897 (autoload 'mh-rmail "mh-e" "\
|
|
2898 Inc(orporate) new mail with MH, or, with arg, scan an MH mail folder.
|
|
2899 This function is an entry point to mh-e, the Emacs front end
|
|
2900 to the MH mail system." t nil)
|
|
2901
|
|
2902 (autoload 'mh-version "mh-e" "\
|
|
2903 Display version information about mh-e and the MH mail handling system." t nil)
|
|
2904
|
|
2905 ;;;***
|
|
2906
|
|
2907 ;;;### (autoloads nil "mh-mime" "mh-e/mh-mime.el")
|
|
2908
|
|
2909 (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")) "\
|
|
2910 Legal MIME content types. See documentation for \\[mh-edit-mhn].")
|
|
2911
|
|
2912 ;;;***
|
|
2913
|
|
2914 ;;;### (autoloads nil "mh-utils" "mh-e/mh-utils.el")
|
|
2915
|
|
2916 (put 'mh-progs 'risky-local-variable t)
|
|
2917
|
|
2918 (put 'mh-lib 'risky-local-variable t)
|
|
2919
|
|
2920 ;;;***
|
|
2921
|
|
2922 ;;;### (autoloads nil "abbrev" "modes/abbrev.el")
|
|
2923
|
|
2924 ;;;***
|
|
2925
|
|
2926 ;;;### (autoloads (ada-make-filename-from-adaname ada-mode) "ada-mode" "modes/ada-mode.el")
|
|
2927
|
|
2928 (autoload 'ada-mode "ada-mode" "\
|
|
2929 Ada Mode is the major mode for editing Ada code.
|
|
2930
|
|
2931 Bindings are as follows: (Note: 'LFD' is control-j.)
|
|
2932
|
|
2933 Indent line '\\[ada-tab]'
|
|
2934 Indent line, insert newline and indent the new line. '\\[newline-and-indent]'
|
|
2935
|
|
2936 Re-format the parameter-list point is in '\\[ada-format-paramlist]'
|
|
2937 Indent all lines in region '\\[ada-indent-region]'
|
|
2938 Call external pretty printer program '\\[ada-call-pretty-printer]'
|
|
2939
|
|
2940 Adjust case of identifiers and keywords in region '\\[ada-adjust-case-region]'
|
|
2941 Adjust case of identifiers and keywords in buffer '\\[ada-adjust-case-buffer]'
|
|
2942
|
|
2943 Call EXTERNAL pretty printer (if you have one) '\\[ada-call-pretty-printer]'
|
|
2944
|
|
2945 Fill comment paragraph '\\[ada-fill-comment-paragraph]'
|
|
2946 Fill comment paragraph and justify each line '\\[ada-fill-comment-paragraph-justify]'
|
|
2947 Fill comment paragraph, justify and append postfix '\\[ada-fill-comment-paragraph-postfix]'
|
|
2948
|
|
2949 Next func/proc/task '\\[ada-next-procedure]' Previous func/proc/task '\\[ada-previous-procedure]'
|
|
2950 Next package '\\[ada-next-package]' Previous package '\\[ada-previous-package]'
|
|
2951
|
|
2952 Goto matching start of current 'end ...;' '\\[ada-move-to-start]'
|
|
2953 Goto end of current block '\\[ada-move-to-end]'
|
|
2954
|
|
2955 Comments are handled using standard GNU Emacs conventions, including:
|
|
2956 Start a comment '\\[indent-for-comment]'
|
|
2957 Comment region '\\[comment-region]'
|
|
2958 Uncomment region '\\[ada-uncomment-region]'
|
|
2959 Continue comment on next line '\\[indent-new-comment-line]'
|
|
2960
|
|
2961 If you use imenu.el:
|
|
2962 Display index-menu of functions & procedures '\\[imenu]'
|
|
2963
|
|
2964 If you use find-file.el:
|
|
2965 Switch to other file (Body <-> Spec) '\\[ff-find-other-file]'
|
|
2966 or '\\[ff-mouse-find-other-file]
|
|
2967 Switch to other file in other window '\\[ada-ff-other-window]'
|
|
2968 or '\\[ff-mouse-find-other-file-other-window]
|
|
2969 If you use this function in a spec and no body is available, it gets created
|
|
2970 with body stubs.
|
|
2971
|
|
2972 If you use ada-xref.el:
|
|
2973 Goto declaration: '\\[ada-point-and-xref]' on the identifier
|
|
2974 or '\\[ada-goto-declaration]' with point on the identifier
|
|
2975 Complete identifier: '\\[ada-complete-identifier]'
|
|
2976 Execute Gnatf: '\\[ada-gnatf-current]'" t nil)
|
|
2977
|
|
2978 (autoload 'ada-make-filename-from-adaname "ada-mode" "\
|
|
2979 Determine the filename of a package/procedure from its own Ada name." t nil)
|
|
2980
|
|
2981 ;;;***
|
|
2982
|
|
2983 ;;;### (autoloads (archive-mode) "arc-mode" "modes/arc-mode.el")
|
|
2984
|
|
2985 (autoload 'archive-mode "arc-mode" "\
|
|
2986 Major mode for viewing an archive file in a dired-like way.
|
|
2987 You can move around using the usual cursor motion commands.
|
|
2988 Letters no longer insert themselves.
|
|
2989 Type `e' to pull a file out of the archive and into its own buffer;
|
|
2990 or click mouse-2 on the file's line in the archive mode buffer.
|
|
2991
|
|
2992 If you edit a sub-file of this archive (as with the `e' command) and
|
|
2993 save it, the contents of that buffer will be saved back into the
|
|
2994 archive.
|
|
2995
|
|
2996 \\{archive-mode-map}" nil nil)
|
|
2997
|
|
2998 ;;;***
|
|
2999
|
|
3000 ;;;### (autoloads (asm-mode) "asm-mode" "modes/asm-mode.el")
|
|
3001
|
|
3002 (autoload 'asm-mode "asm-mode" "\
|
|
3003 Major mode for editing typical assembler code.
|
|
3004 Features a private abbrev table and the following bindings:
|
|
3005
|
|
3006 \\[asm-colon] outdent a preceding label, tab to next tab stop.
|
|
3007 \\[tab-to-tab-stop] tab to next tab stop.
|
|
3008 \\[asm-newline] newline, then tab to next tab stop.
|
|
3009 \\[asm-comment] smart placement of assembler comments.
|
|
3010
|
|
3011 The character used for making comments is set by the variable
|
|
3012 `asm-comment-char' (which defaults to `?;').
|
|
3013
|
|
3014 Alternatively, you may set this variable in `asm-mode-set-comment-hook',
|
|
3015 which is called near the beginning of mode initialization.
|
|
3016
|
|
3017 Turning on Asm mode runs the hook `asm-mode-hook' at the end of initialization.
|
|
3018
|
|
3019 Special commands:
|
|
3020 \\{asm-mode-map}
|
|
3021 " t nil)
|
|
3022
|
|
3023 ;;;***
|
|
3024
|
|
3025 ;;;### (autoloads (awk-mode) "awk-mode" "modes/awk-mode.el")
|
|
3026
|
|
3027 (autoload 'awk-mode "awk-mode" "\
|
|
3028 Major mode for editing AWK code.
|
|
3029 This is much like C mode except for the syntax of comments. It uses
|
|
3030 the same keymap as C mode and has the same variables for customizing
|
|
3031 indentation. It has its own abbrev table and its own syntax table.
|
|
3032
|
|
3033 Turning on AWK mode calls the value of the variable `awk-mode-hook'
|
|
3034 with no args, if that value is non-nil." t nil)
|
|
3035
|
|
3036 ;;;***
|
|
3037
|
|
3038 ;;;### (autoloads (bibtex-mode) "bibtex" "modes/bibtex.el")
|
|
3039
|
|
3040 (autoload 'bibtex-mode "bibtex" "\
|
|
3041 Major mode for editing bibtex files.
|
|
3042
|
|
3043 \\{bibtex-mode-map}
|
|
3044
|
|
3045 A command such as \\[bibtex-Book] will outline the fields for a BibTeX book entry.
|
|
3046
|
|
3047 The optional fields start with the string OPT, and thus ignored by BibTeX.
|
|
3048 The OPT string may be removed from a field with \\[bibtex-remove-OPT].
|
|
3049 \\[bibtex-kill-optional-field] kills the current optional field entirely.
|
|
3050 \\[bibtex-remove-double-quotes] removes the double-quotes around the text of
|
|
3051 the current field. \\[bibtex-empty-field] replaces the text of the current
|
|
3052 field with the default \"\".
|
|
3053
|
|
3054 The command \\[bibtex-clean-entry] cleans the current entry, i.e. (i) removes
|
|
3055 double-quotes from entirely numerical fields, (ii) removes OPT from all
|
|
3056 non-empty optional fields, (iii) removes all empty optional fields, and (iv)
|
|
3057 checks that no non-optional fields are empty.
|
|
3058
|
|
3059 Use \\[bibtex-find-text] to position the dot at the end of the current field.
|
|
3060 Use \\[bibtex-next-field] to move to end of the next field.
|
|
3061
|
|
3062 The following may be of interest as well:
|
|
3063
|
|
3064 Functions:
|
|
3065 find-bibtex-duplicates
|
|
3066 find-bibtex-entry-location
|
|
3067 hide-bibtex-entry-bodies
|
|
3068 sort-bibtex-entries
|
|
3069 validate-bibtex-buffer
|
|
3070
|
|
3071 Variables:
|
|
3072 bibtex-clean-entry-zap-empty-opts
|
|
3073 bibtex-entry-field-alist
|
|
3074 bibtex-include-OPTannote
|
|
3075 bibtex-include-OPTcrossref
|
|
3076 bibtex-include-OPTkey
|
|
3077 bibtex-maintain-sorted-entries
|
|
3078 bibtex-mode-user-optional-fields
|
|
3079
|
|
3080 Fields:
|
|
3081 address
|
|
3082 Publisher's address
|
|
3083 annote
|
|
3084 Long annotation used for annotated bibliographies (begins sentence)
|
|
3085 author
|
|
3086 Name(s) of author(s), in BibTeX name format
|
|
3087 booktitle
|
|
3088 Book title when the thing being referenced isn't the whole book.
|
|
3089 For book entries, the title field should be used instead.
|
|
3090 chapter
|
|
3091 Chapter number
|
|
3092 crossref
|
|
3093 The database key of the entry being cross referenced.
|
|
3094 edition
|
|
3095 Edition of a book (e.g., \"second\")
|
|
3096 editor
|
|
3097 Name(s) of editor(s), in BibTeX name format.
|
|
3098 If there is also an author field, then the editor field should be
|
|
3099 for the book or collection that the work appears in
|
|
3100 howpublished
|
|
3101 How something strange has been published (begins sentence)
|
|
3102 institution
|
|
3103 Sponsoring institution
|
|
3104 journal
|
|
3105 Journal name (macros are provided for many)
|
|
3106 key
|
|
3107 Alphabetizing and labeling key (needed when no author or editor)
|
|
3108 month
|
|
3109 Month (macros are provided)
|
|
3110 note
|
|
3111 To help the reader find a reference (begins sentence)
|
|
3112 number
|
|
3113 Number of a journal or technical report
|
|
3114 organization
|
|
3115 Organization (sponsoring a conference)
|
|
3116 pages
|
|
3117 Page number or numbers (use `--' to separate a range)
|
|
3118 publisher
|
|
3119 Publisher name
|
|
3120 school
|
|
3121 School name (for theses)
|
|
3122 series
|
|
3123 The name of a series or set of books.
|
|
3124 An individual book will also have its own title
|
|
3125 title
|
|
3126 The title of the thing being referenced
|
|
3127 type
|
|
3128 Type of a technical report (e.g., \"Research Note\") to be used
|
|
3129 instead of the default \"Technical Report\"
|
|
3130 volume
|
|
3131 Volume of a journal or multivolume work
|
|
3132 year
|
|
3133 Year---should contain only numerals
|
|
3134 ---------------------------------------------------------
|
|
3135 Entry to this mode calls the value of bibtex-mode-hook if that value is
|
|
3136 non-nil." t nil)
|
|
3137
|
|
3138 ;;;***
|
|
3139
|
|
3140 ;;;### (autoloads (c-set-style java-mode objc-mode c++-mode c-mode) "cc-mode" "modes/cc-mode.el")
|
|
3141
|
|
3142 (autoload 'c-mode "cc-mode" "\
|
|
3143 Major mode for editing K&R and ANSI C code.
|
|
3144 To submit a problem report, enter `\\[c-submit-bug-report]' from a
|
|
3145 c-mode buffer. This automatically sets up a mail buffer with version
|
|
3146 information already added. You just need to add a description of the
|
|
3147 problem, including a reproducible test case and send the message.
|
|
3148
|
|
3149 To see what version of cc-mode you are running, enter `\\[c-version]'.
|
|
3150
|
|
3151 The hook variable `c-mode-hook' is run with no args, if that value is
|
|
3152 bound and has a non-nil value. Also the hook `c-mode-common-hook' is
|
|
3153 run first.
|
|
3154
|
|
3155 Key bindings:
|
|
3156 \\{c-mode-map}" t nil)
|
|
3157
|
|
3158 (autoload 'c++-mode "cc-mode" "\
|
|
3159 Major mode for editing C++ code.
|
|
3160 To submit a problem report, enter `\\[c-submit-bug-report]' from a
|
|
3161 c++-mode buffer. This automatically sets up a mail buffer with
|
|
3162 version information already added. You just need to add a description
|
|
3163 of the problem, including a reproducible test case, and send the
|
|
3164 message.
|
|
3165
|
|
3166 To see what version of cc-mode you are running, enter `\\[c-version]'.
|
|
3167
|
|
3168 The hook variable `c++-mode-hook' is run with no args, if that
|
|
3169 variable is bound and has a non-nil value. Also the hook
|
|
3170 `c-mode-common-hook' is run first.
|
|
3171
|
|
3172 Key bindings:
|
|
3173 \\{c++-mode-map}" t nil)
|
|
3174
|
|
3175 (autoload 'objc-mode "cc-mode" "\
|
|
3176 Major mode for editing Objective C code.
|
|
3177 To submit a problem report, enter `\\[c-submit-bug-report]' from an
|
|
3178 objc-mode buffer. This automatically sets up a mail buffer with
|
|
3179 version information already added. You just need to add a description
|
|
3180 of the problem, including a reproducible test case, and send the
|
|
3181 message.
|
|
3182
|
|
3183 To see what version of cc-mode you are running, enter `\\[c-version]'.
|
|
3184
|
|
3185 The hook variable `objc-mode-hook' is run with no args, if that value
|
|
3186 is bound and has a non-nil value. Also the hook `c-mode-common-hook'
|
|
3187 is run first.
|
|
3188
|
|
3189 Key bindings:
|
|
3190 \\{objc-mode-map}" t nil)
|
|
3191
|
|
3192 (autoload 'java-mode "cc-mode" "\
|
|
3193 Major mode for editing Java code.
|
|
3194 To submit a problem report, enter `\\[c-submit-bug-report]' from an
|
|
3195 java-mode buffer. This automatically sets up a mail buffer with
|
|
3196 version information already added. You just need to add a description
|
|
3197 of the problem, including a reproducible test case and send the
|
|
3198 message.
|
|
3199
|
|
3200 To see what version of cc-mode you are running, enter `\\[c-version]'.
|
|
3201
|
|
3202 The hook variable `java-mode-hook' is run with no args, if that value
|
|
3203 is bound and has a non-nil value. Also the common hook
|
|
3204 `c-mode-common-hook' is run first. Note that this mode automatically
|
|
3205 sets the \"java\" style before calling any hooks so be careful if you
|
|
3206 set styles in `c-mode-common-hook'.
|
|
3207
|
|
3208 Key bindings:
|
|
3209 \\{java-mode-map}" t nil)
|
|
3210
|
|
3211 (autoload 'c-set-style "cc-mode" "\
|
|
3212 Set cc-mode variables to use one of several different indentation styles.
|
|
3213 STYLENAME is a string representing the desired style from the list of
|
|
3214 styles described in the variable `c-style-alist'. See that variable
|
|
3215 for details of setting up styles." t nil)
|
|
3216
|
|
3217 (fset 'set-c-style 'c-set-style)
|
|
3218
|
|
3219 ;;;***
|
|
3220
|
|
3221 ;;;### (autoloads (common-lisp-indent-function) "cl-indent" "modes/cl-indent.el")
|
|
3222
|
|
3223 (autoload 'common-lisp-indent-function "cl-indent" nil nil nil)
|
|
3224
|
|
3225 ;;;***
|
|
3226
|
|
3227 ;;;### (autoloads (c-macro-expand) "cmacexp" "modes/cmacexp.el")
|
|
3228
|
|
3229 (autoload 'c-macro-expand "cmacexp" "\
|
|
3230 Expand C macros in the region, using the C preprocessor.
|
|
3231 Normally display output in temp buffer, but
|
|
3232 prefix arg means replace the region with it.
|
|
3233
|
|
3234 `c-macro-preprocessor' specifies the preprocessor to use.
|
|
3235 Prompt for arguments to the preprocessor (e.g. `-DDEBUG -I ./include')
|
|
3236 if the user option `c-macro-prompt-flag' is non-nil.
|
|
3237
|
|
3238 Noninteractive args are START, END, SUBST.
|
|
3239 For use inside Lisp programs, see also `c-macro-expansion'." t nil)
|
|
3240
|
|
3241 ;;;***
|
|
3242
|
|
3243 ;;;### (autoloads (eiffel-mode) "eiffel3" "modes/eiffel3.el")
|
|
3244
|
|
3245 (autoload 'eiffel-mode "eiffel3" "\
|
|
3246 Major mode for editing Eiffel programs." t nil)
|
|
3247
|
|
3248 ;;;***
|
|
3249
|
|
3250 ;;;### (autoloads (enriched-decode enriched-encode enriched-mode) "enriched" "modes/enriched.el")
|
|
3251
|
|
3252 (autoload 'enriched-mode "enriched" "\
|
|
3253 Minor mode for editing text/enriched files.
|
|
3254 These are files with embedded formatting information in the MIME standard
|
|
3255 text/enriched format.
|
|
3256 Turning the mode on runs `enriched-mode-hook'.
|
|
3257
|
|
3258 More information about Enriched mode is available in the file
|
|
3259 etc/enriched.doc in the Emacs distribution directory.
|
|
3260
|
|
3261 Commands:
|
|
3262
|
|
3263 \\<enriched-mode-map>\\{enriched-mode-map}" t nil)
|
|
3264
|
|
3265 (autoload 'enriched-encode "enriched" nil nil nil)
|
|
3266
|
|
3267 (autoload 'enriched-decode "enriched" nil nil nil)
|
|
3268
|
|
3269 ;;;***
|
|
3270
|
|
3271 ;;;### (autoloads (executable-self-display executable-set-magic) "executable" "modes/executable.el")
|
|
3272
|
|
3273 (autoload 'executable-set-magic "executable" "\
|
|
3274 Set this buffer's interpreter to INTERPRETER with optional ARGUMENT.
|
|
3275 The variables `executable-magicless-file-regexp', `executable-prefix',
|
|
3276 `executable-insert', `executable-query' and `executable-chmod' control
|
|
3277 when and how magic numbers are inserted or replaced and scripts made
|
|
3278 executable." t nil)
|
|
3279
|
|
3280 (autoload 'executable-self-display "executable" "\
|
|
3281 Turn a text file into a self-displaying Un*x command.
|
|
3282 The magic number of such a command displays all lines but itself." t nil)
|
|
3283
|
|
3284 ;;;***
|
|
3285
|
|
3286 ;;;### (autoloads (f90-mode) "f90" "modes/f90.el")
|
|
3287
|
|
3288 (autoload 'f90-mode "f90" "\
|
|
3289 Major mode for editing Fortran 90 code in free format.
|
|
3290
|
|
3291 \\[f90-indent-new-line] corrects current indentation and creates new indented line.
|
|
3292 \\[f90-indent-line] indents the current line correctly.
|
|
3293 \\[f90-indent-subprogram] indents the current subprogram.
|
|
3294
|
|
3295 Type `? or `\\[help-command] to display a list of built-in abbrevs for F90 keywords.
|
|
3296
|
|
3297 Key definitions:
|
|
3298 \\{f90-mode-map}
|
|
3299
|
|
3300 Variables controlling indentation style and extra features:
|
|
3301
|
|
3302 f90-do-indent
|
|
3303 Extra indentation within do blocks. (default 3)
|
|
3304 f90-if-indent
|
|
3305 Extra indentation within if/select case/where/forall blocks. (default 3)
|
|
3306 f90-type-indent
|
|
3307 Extra indentation within type/interface/block-data blocks. (default 3)
|
|
3308 f90-program-indent
|
|
3309 Extra indentation within program/module/subroutine/function blocks.
|
|
3310 (default 2)
|
|
3311 f90-continuation-indent
|
|
3312 Extra indentation applied to continuation lines. (default 5)
|
|
3313 f90-comment-region
|
|
3314 String inserted by \\[f90-comment-region] at start of each line in
|
|
3315 region. (default \"!!!$\")
|
|
3316 f90-indented-comment-re
|
|
3317 Regexp determining the type of comment to be intended like code.
|
|
3318 (default \"!\")
|
|
3319 f90-directive-comment-re
|
|
3320 Regexp of comment-like directive like \"!HPF\\\\$\", not to be indented.
|
|
3321 (default \"!hpf\\\\$\")
|
|
3322 f90-break-delimiters
|
|
3323 Regexp holding list of delimiters at which lines may be broken.
|
|
3324 (default \"[-+*/><=,% \\t]\")
|
|
3325 f90-break-before-delimiters
|
|
3326 Non-nil causes `f90-do-auto-fill' to break lines before delimiters.
|
|
3327 (default t)
|
|
3328 f90-beginning-ampersand
|
|
3329 Automatic insertion of & at beginning of continuation lines. (default t)
|
|
3330 f90-smart-end
|
|
3331 From an END statement, check and fill the end using matching block start.
|
|
3332 Allowed values are 'blink, 'no-blink, and nil, which determine
|
|
3333 whether to blink the matching beginning.) (default 'blink)
|
|
3334 f90-auto-keyword-case
|
|
3335 Automatic change of case of keywords. (default nil)
|
|
3336 The possibilities are 'downcase-word, 'upcase-word, 'capitalize-word.
|
|
3337 f90-leave-line-no
|
|
3338 Do not left-justify line numbers. (default nil)
|
|
3339 f90-startup-message
|
|
3340 Set to nil to inhibit message first time F90 mode is used. (default t)
|
|
3341 f90-keywords-re
|
|
3342 List of keywords used for highlighting/upcase-keywords etc.
|
|
3343
|
|
3344 Turning on F90 mode calls the value of the variable `f90-mode-hook'
|
|
3345 with no args, if that value is non-nil." t nil)
|
|
3346
|
|
3347 ;;;***
|
|
3348
|
|
3349 ;;;### (autoloads (follow-delete-other-windows-and-split follow-mode turn-off-follow-mode turn-on-follow-mode) "follow" "modes/follow.el")
|
|
3350
|
|
3351 (add-minor-mode 'follow-mode nil 'follow-mode-map)
|
|
3352
|
|
3353 (autoload 'turn-on-follow-mode "follow" "\
|
|
3354 Turn on Follow mode. Please see the function `follow-mode'." t nil)
|
|
3355
|
|
3356 (autoload 'turn-off-follow-mode "follow" "\
|
|
3357 Turn off Follow mode. Please see the function `follow-mode'." t nil)
|
|
3358
|
|
3359 (autoload 'follow-mode "follow" "\
|
|
3360 Minor mode which combines windows into one tall virtual window.
|
|
3361
|
|
3362 The feeling of a \"virtual window\" has been accomplished by the use
|
|
3363 of two major techniques:
|
|
3364
|
|
3365 * The windows always displays adjacent sections of the buffer.
|
|
3366 This means that whenever one window is moved, all the
|
|
3367 others will follow. (Hence the name Follow Mode.)
|
|
3368
|
|
3369 * Should the point (cursor) end up outside a window, another
|
|
3370 window displaying that point is selected, if possible. This
|
|
3371 makes it possible to walk between windows using normal cursor
|
|
3372 movement commands.
|
|
3373
|
|
3374 Follow mode comes to its prime when used on a large screen and two
|
|
3375 side-by-side window are used. The user can, with the help of Follow
|
|
3376 mode, use two full-height windows as though they would have been
|
|
3377 one. Imagine yourself editing a large function, or section of text,
|
|
3378 and beeing able to use 144 lines instead of the normal 72... (your
|
|
3379 mileage may vary).
|
|
3380
|
|
3381 To split one large window into two side-by-side windows, the commands
|
|
3382 `\\[split-window-horizontally]' or `M-x follow-delete-other-windows-and-split' can be used.
|
|
3383
|
|
3384 Only windows displayed in the same frame follow each-other.
|
|
3385
|
|
3386 If the variable `follow-intercept-processes' is non-nil, Follow mode
|
|
3387 will listen to the output of processes and redisplay accordingly.
|
|
3388 \(This is the default.)
|
|
3389
|
|
3390 When Follow mode is switched on, the hook `follow-mode-hook'
|
|
3391 is called. When turned off, `follow-mode-off-hook' is called.
|
|
3392
|
|
3393 Keys specific to Follow mode:
|
|
3394 \\{follow-mode-map}" t nil)
|
|
3395
|
|
3396 (autoload 'follow-delete-other-windows-and-split "follow" "\
|
|
3397 Create two side by side windows and enter Follow Mode.
|
|
3398
|
|
3399 Execute this command to display as much as possible of the text
|
|
3400 in the selected window. All other windows, in the current
|
|
3401 frame, are deleted and the selected window is split in two
|
|
3402 side-by-side windows. Follow Mode is activated, hence the
|
|
3403 two windows always will display two successive pages.
|
|
3404 \(If one window is moved, the other one will follow.)
|
|
3405
|
|
3406 If ARG is positive, the leftmost window is selected. If it negative,
|
|
3407 the rightmost is selected. If ARG is nil, the leftmost window is
|
|
3408 selected if the original window is the first one in the frame.
|
|
3409
|
|
3410 To bind this command to a hotkey, place the following line
|
|
3411 in your `~/.emacs' file, replacing [f7] by your favourite key:
|
|
3412 (global-set-key [f7] 'follow-delete-other-windows-and-split)" t nil)
|
|
3413
|
|
3414 ;;;***
|
|
3415
|
|
3416 ;;;### (autoloads (fortran-mode) "fortran" "modes/fortran.el")
|
|
3417
|
|
3418 (defvar fortran-tab-mode-default nil "\
|
|
3419 *Default tabbing/carriage control style for empty files in Fortran mode.
|
|
3420 A value of t specifies tab-digit style of continuation control.
|
|
3421 A value of nil specifies that continuation lines are marked
|
|
3422 with a character in column 6.")
|
|
3423
|
|
3424 (autoload 'fortran-mode "fortran" "\
|
|
3425 Major mode for editing Fortran code.
|
|
3426 \\[fortran-indent-line] indents the current Fortran line correctly.
|
|
3427 DO statements must not share a common CONTINUE.
|
|
3428
|
|
3429 Type ;? or ;\\[help-command] to display a list of built-in abbrevs for Fortran keywords.
|
|
3430
|
|
3431 Key definitions:
|
|
3432 \\{fortran-mode-map}
|
|
3433
|
|
3434 Variables controlling indentation style and extra features:
|
|
3435
|
|
3436 comment-start
|
|
3437 Normally nil in Fortran mode. If you want to use comments
|
|
3438 starting with `!', set this to the string \"!\".
|
|
3439 fortran-do-indent
|
|
3440 Extra indentation within do blocks. (default 3)
|
|
3441 fortran-if-indent
|
|
3442 Extra indentation within if blocks. (default 3)
|
|
3443 fortran-structure-indent
|
|
3444 Extra indentation within structure, union, map and interface blocks.
|
|
3445 (default 3)
|
|
3446 fortran-continuation-indent
|
|
3447 Extra indentation applied to continuation statements. (default 5)
|
|
3448 fortran-comment-line-extra-indent
|
|
3449 Amount of extra indentation for text within full-line comments. (default 0)
|
|
3450 fortran-comment-indent-style
|
|
3451 nil means don't change indentation of text in full-line comments,
|
|
3452 fixed means indent that text at `fortran-comment-line-extra-indent' beyond
|
|
3453 the value of `fortran-minimum-statement-indent-fixed' (for fixed
|
|
3454 format continuation style) or `fortran-minimum-statement-indent-tab'
|
|
3455 (for TAB format continuation style).
|
|
3456 relative means indent at `fortran-comment-line-extra-indent' beyond the
|
|
3457 indentation for a line of code.
|
|
3458 (default 'fixed)
|
|
3459 fortran-comment-indent-char
|
|
3460 Single-character string to be inserted instead of space for
|
|
3461 full-line comment indentation. (default \" \")
|
|
3462 fortran-minimum-statement-indent-fixed
|
|
3463 Minimum indentation for Fortran statements in fixed format mode. (def.6)
|
|
3464 fortran-minimum-statement-indent-tab
|
|
3465 Minimum indentation for Fortran statements in TAB format mode. (default 9)
|
|
3466 fortran-line-number-indent
|
|
3467 Maximum indentation for line numbers. A line number will get
|
|
3468 less than this much indentation if necessary to avoid reaching
|
|
3469 column 5. (default 1)
|
|
3470 fortran-check-all-num-for-matching-do
|
|
3471 Non-nil causes all numbered lines to be treated as possible \"continue\"
|
|
3472 statements. (default nil)
|
|
3473 fortran-blink-matching-if
|
|
3474 Non-nil causes \\[fortran-indent-line] on an ENDIF statement to blink on
|
|
3475 matching IF. Also, from an ENDDO statement, blink on matching DO [WHILE]
|
|
3476 statement. (default nil)
|
|
3477 fortran-continuation-string
|
|
3478 Single-character string to be inserted in column 5 of a continuation
|
|
3479 line. (default \"$\")
|
|
3480 fortran-comment-region
|
|
3481 String inserted by \\[fortran-comment-region] at start of each line in
|
|
3482 region. (default \"c$$$\")
|
|
3483 fortran-electric-line-number
|
|
3484 Non-nil causes line number digits to be moved to the correct column
|
|
3485 as typed. (default t)
|
|
3486 fortran-break-before-delimiters
|
|
3487 Non-nil causes `fortran-fill' breaks lines before delimiters.
|
|
3488 (default t)
|
|
3489 fortran-startup-message
|
|
3490 Set to nil to inhibit message first time Fortran mode is used.
|
|
3491
|
|
3492 Turning on Fortran mode calls the value of the variable `fortran-mode-hook'
|
|
3493 with no args, if that value is non-nil." t nil)
|
|
3494
|
|
3495 ;;;***
|
|
3496
|
|
3497 ;;;### (autoloads (hide-ifdef-mode) "hideif" "modes/hideif.el")
|
|
3498
|
|
3499 (add-minor-mode 'hide-ifdef-mode " Ifdef")
|
|
3500
|
|
3501 (autoload 'hide-ifdef-mode "hideif" "\
|
|
3502 Toggle Hide-Ifdef mode. This is a minor mode, albeit a large one.
|
|
3503 With ARG, turn Hide-Ifdef mode on if arg is positive, off otherwise.
|
|
3504 In Hide-Ifdef mode, code within #ifdef constructs that the C preprocessor
|
|
3505 would eliminate may be hidden from view. Several variables affect
|
|
3506 how the hiding is done:
|
|
3507
|
|
3508 hide-ifdef-env
|
|
3509 An association list of defined and undefined symbols for the
|
|
3510 current buffer. Initially, the global value of `hide-ifdef-env'
|
|
3511 is used.
|
|
3512
|
|
3513 hide-ifdef-define-alist
|
|
3514 An association list of defined symbol lists.
|
|
3515 Use `hide-ifdef-set-define-alist' to save the current `hide-ifdef-env'
|
|
3516 and `hide-ifdef-use-define-alist' to set the current `hide-ifdef-env'
|
|
3517 from one of the lists in `hide-ifdef-define-alist'.
|
|
3518
|
|
3519 hide-ifdef-lines
|
|
3520 Set to non-nil to not show #if, #ifdef, #ifndef, #else, and
|
|
3521 #endif lines when hiding.
|
|
3522
|
|
3523 hide-ifdef-initially
|
|
3524 Indicates whether `hide-ifdefs' should be called when Hide-Ifdef mode
|
|
3525 is activated.
|
|
3526
|
|
3527 hide-ifdef-read-only
|
|
3528 Set to non-nil if you want to make buffers read only while hiding.
|
|
3529 After `show-ifdefs', read-only status is restored to previous value.
|
|
3530
|
|
3531 \\{hide-ifdef-mode-map}" t nil)
|
|
3532
|
|
3533 (defvar hide-ifdef-initially nil "\
|
|
3534 *Non-nil means call `hide-ifdefs' when Hide-Ifdef mode is first activated.")
|
|
3535
|
|
3536 (defvar hide-ifdef-read-only nil "\
|
|
3537 *Set to non-nil if you want buffer to be read-only while hiding text.")
|
|
3538
|
|
3539 (defvar hide-ifdef-lines nil "\
|
|
3540 *Non-nil means hide the #ifX, #else, and #endif lines.")
|
|
3541
|
|
3542 ;;;***
|
|
3543
|
|
3544 ;;;### (autoloads (hs-minor-mode hs-hide-block hs-hide-all) "hideshow" "modes/hideshow.el")
|
|
3545
|
|
3546 (defvar hs-minor-mode nil "\
|
|
3547 Non-nil if using hideshow mode as a minor mode of some other mode.
|
|
3548 Use the command `hs-minor-mode' to toggle this variable.")
|
|
3549
|
|
3550 (autoload 'hs-hide-all "hideshow" "\
|
|
3551 Hides all top-level blocks, displaying only first and last lines.
|
|
3552 It moves point to the beginning of the line, and it runs the normal hook
|
|
3553 `hs-hide-hook'. See documentation for `run-hooks'." t nil)
|
|
3554
|
|
3555 (autoload 'hs-hide-block "hideshow" "\
|
|
3556 Selects a block and hides it. With prefix arg, reposition at end.
|
|
3557 Block is defined as a sexp for lispish modes, mode-specific otherwise.
|
|
3558 Comments are blocks, too. Upon completion, point is at repositioned and
|
|
3559 the normal hook `hs-hide-hook' is run. See documentation for `run-hooks'." t nil)
|
|
3560
|
|
3561 (autoload 'hs-minor-mode "hideshow" "\
|
|
3562 Toggle hideshow minor mode.
|
|
3563 With ARG, turn hideshow minor mode on if ARG is positive, off otherwise.
|
|
3564 When hideshow minor mode is on, the menu bar is augmented with hideshow
|
|
3565 commands and the hideshow commands are enabled. The variables
|
|
3566 `selective-display' and `selective-display-ellipses' are set to t.
|
|
3567 Last, the normal hook `hs-minor-mode-hook' is run; see the doc for `run-hooks'.
|
|
3568
|
|
3569 Turning hideshow minor mode off reverts the menu bar and the
|
|
3570 variables to default values and disables the hideshow commands." t nil)
|
|
3571
|
|
3572 (add-minor-mode 'hs-minor-mode " hs" 'hs-minor-mode-map)
|
|
3573
|
|
3574 ;;;***
|
|
3575
|
|
3576 ;;;### (autoloads (icon-mode) "icon" "modes/icon.el")
|
|
3577
|
|
3578 (autoload 'icon-mode "icon" "\
|
|
3579 Major mode for editing Icon code.
|
|
3580 Expression and list commands understand all Icon brackets.
|
|
3581 Tab indents for Icon code.
|
|
3582 Paragraphs are separated by blank lines only.
|
|
3583 Delete converts tabs to spaces as it moves back.
|
|
3584 \\{icon-mode-map}
|
|
3585 Variables controlling indentation style:
|
|
3586 icon-tab-always-indent
|
|
3587 Non-nil means TAB in Icon mode should always reindent the current line,
|
|
3588 regardless of where in the line point is when the TAB command is used.
|
|
3589 icon-auto-newline
|
|
3590 Non-nil means automatically newline before and after braces
|
|
3591 inserted in Icon code.
|
|
3592 icon-indent-level
|
|
3593 Indentation of Icon statements within surrounding block.
|
|
3594 The surrounding block's indentation is the indentation
|
|
3595 of the line on which the open-brace appears.
|
|
3596 icon-continued-statement-offset
|
|
3597 Extra indentation given to a substatement, such as the
|
|
3598 then-clause of an if or body of a while.
|
|
3599 icon-continued-brace-offset
|
|
3600 Extra indentation given to a brace that starts a substatement.
|
|
3601 This is in addition to `icon-continued-statement-offset'.
|
|
3602 icon-brace-offset
|
|
3603 Extra indentation for line if it starts with an open brace.
|
|
3604 icon-brace-imaginary-offset
|
|
3605 An open brace following other text is treated as if it were
|
|
3606 this far to the right of the start of its line.
|
|
3607
|
|
3608 Turning on Icon mode calls the value of the variable `icon-mode-hook'
|
|
3609 with no args, if that value is non-nil." t nil)
|
|
3610
|
|
3611 ;;;***
|
|
3612
|
|
3613 ;;;### (autoloads (imenu imenu-add-to-menubar) "imenu" "modes/imenu.el")
|
|
3614
|
|
3615 (defvar imenu-generic-expression nil "\
|
|
3616 The regex pattern to use for creating a buffer index.
|
|
3617
|
|
3618 If non-nil this pattern is passed to `imenu-create-index-with-pattern'
|
|
3619 to create a buffer index.
|
|
3620
|
|
3621 It is an alist with elements that look like this: (MENU-TITLE
|
|
3622 REGEXP INDEX).
|
|
3623
|
|
3624 MENU-TITLE is a string used as the title for the submenu or nil if the
|
|
3625 entries are not nested.
|
|
3626
|
|
3627 REGEXP is a regexp that should match a construct in the buffer that is
|
|
3628 to be displayed in the menu; i.e., function or variable definitions,
|
|
3629 etc. It contains a substring which is the name to appear in the
|
|
3630 menu. See the info section on Regexps for more information.
|
|
3631
|
|
3632 INDEX points to the substring in REGEXP that contains the name (of the
|
|
3633 function, variable or type) that is to appear in the menu.
|
|
3634
|
|
3635 For emacs-lisp-mode for example PATTERN would look like:
|
|
3636
|
|
3637 '((nil \"^\\\\s-*(def\\\\(un\\\\|subst\\\\|macro\\\\|advice\\\\)\\\\s-+\\\\([-A-Za-z0-9+]+\\\\)\" 2)
|
|
3638 (\"*Vars*\" \"^\\\\s-*(def\\\\(var\\\\|const\\\\)\\\\s-+\\\\([-A-Za-z0-9+]+\\\\)\" 2)
|
|
3639 (\"*Types*\" \"^\\\\s-*(def\\\\(type\\\\|struct\\\\|class\\\\|ine-condition\\\\)\\\\s-+\\\\([-A-Za-z0-9+]+\\\\)\" 2))
|
|
3640
|
|
3641 The variable is buffer-local.")
|
|
3642
|
|
3643 (make-variable-buffer-local 'imenu-generic-expression)
|
|
3644
|
|
3645 (autoload 'imenu-add-to-menubar "imenu" "\
|
|
3646 Adds an `imenu' entry to the menu bar for the current buffer.
|
|
3647 NAME is a string used to name the menu bar item.
|
|
3648 See the command `imenu' for more information." t nil)
|
|
3649
|
|
3650 (autoload 'imenu "imenu" "\
|
|
3651 Jump to a place in the buffer chosen using a buffer menu or mouse menu.
|
|
3652 See `imenu-choose-buffer-index' for more information." t nil)
|
|
3653
|
|
3654 ;;;***
|
|
3655
|
|
3656 ;;;### (autoloads (ksh-mode) "ksh-mode" "modes/ksh-mode.el")
|
|
3657
|
|
3658 (autoload 'ksh-mode "ksh-mode" "\
|
28
|
3659 ksh-mode $Revision: 1.10 $ - Major mode for editing (Bourne, Korn or Bourne again)
|
12
|
3660 shell scripts.
|
|
3661 Special key bindings and commands:
|
|
3662 \\{ksh-mode-map}
|
|
3663 Variables controlling indentation style:
|
|
3664 ksh-indent
|
|
3665 Indentation of ksh statements with respect to containing block.
|
|
3666 Default value is 2.
|
|
3667 ksh-case-indent
|
|
3668 Additional indentation for statements under case items.
|
|
3669 Default value is nil which will align the statements one position
|
|
3670 past the \")\" of the pattern.
|
|
3671 ksh-case-item-offset
|
|
3672 Additional indentation for case items within a case statement.
|
|
3673 Default value is 2.
|
|
3674 ksh-group-offset
|
|
3675 Additional indentation for keywords \"do\" and \"then\".
|
|
3676 Default value is -2.
|
|
3677 ksh-brace-offset
|
|
3678 Additional indentation of \"{\" under functions or brace groupings.
|
|
3679 Default value is 0.
|
|
3680 ksh-multiline-offset
|
|
3681 Additional indentation of line that is preceded of a line ending with a
|
|
3682 \\ to make it continue on next line.
|
|
3683 ksh-tab-always-indent
|
|
3684 Controls the operation of the TAB key. If t (the default), always
|
|
3685 reindent the current line. If nil, indent the current line only if
|
|
3686 point is at the left margin or in the line's indentation; otherwise
|
|
3687 insert a tab.
|
|
3688 ksh-match-and-tell
|
|
3689 If non-nil echo in the minibuffer the matching compound command
|
|
3690 for the \"done\", \"}\", \"fi\", or \"esac\". Default value is t.
|
|
3691
|
|
3692 ksh-align-to-keyword
|
|
3693 Controls whether nested constructs align from the keyword or
|
|
3694 the current indentation. If non-nil, indentation will be relative to
|
|
3695 the column the keyword starts. If nil, indentation will be relative to
|
|
3696 the current indentation of the line the keyword is on.
|
|
3697 The default value is non-nil.
|
|
3698
|
|
3699 ksh-comment-regexp
|
|
3700 Regular expression used to recognize comments. Customize to support
|
|
3701 ksh-like languages. Default value is \"\\s *#\".
|
|
3702
|
|
3703 Style Guide.
|
|
3704 By setting
|
|
3705 (setq ksh-indent default-tab-width)
|
|
3706 (setq ksh-group-offset 0)
|
|
3707
|
|
3708 The following style is obtained:
|
|
3709
|
|
3710 if [ -z $foo ]
|
|
3711 then
|
|
3712 bar # <-- ksh-group-offset is additive to ksh-indent
|
|
3713 foo
|
|
3714 fi
|
|
3715
|
|
3716 By setting
|
|
3717 (setq ksh-indent default-tab-width)
|
|
3718 (setq ksh-group-offset (- 0 ksh-indent))
|
|
3719
|
|
3720 The following style is obtained:
|
|
3721
|
|
3722 if [ -z $foo ]
|
|
3723 then
|
|
3724 bar
|
|
3725 foo
|
|
3726 fi
|
|
3727
|
|
3728 By setting
|
|
3729 (setq ksh-case-item-offset 1)
|
|
3730 (setq ksh-case-indent nil)
|
|
3731
|
|
3732 The following style is obtained:
|
|
3733
|
|
3734 case x in *
|
|
3735 foo) bar # <-- ksh-case-item-offset
|
|
3736 baz;; # <-- ksh-case-indent aligns with \")\"
|
|
3737 foobar) foo
|
|
3738 bar;;
|
|
3739 esac
|
|
3740
|
|
3741 By setting
|
|
3742 (setq ksh-case-item-offset 1)
|
|
3743 (setq ksh-case-indent 6)
|
|
3744
|
|
3745 The following style is obtained:
|
|
3746
|
|
3747 case x in *
|
|
3748 foo) bar # <-- ksh-case-item-offset
|
|
3749 baz;; # <-- ksh-case-indent
|
|
3750 foobar) foo
|
|
3751 bar;;
|
|
3752 esac
|
|
3753
|
|
3754
|
|
3755 Installation:
|
|
3756
|
|
3757 (setq ksh-mode-hook
|
|
3758 (function (lambda ()
|
|
3759 (font-lock-mode 1) ;; font-lock the buffer
|
|
3760 (setq ksh-indent 8)
|
|
3761 (setq ksh-group-offset -8)
|
|
3762 (setq ksh-brace-offset -8)
|
|
3763 (setq ksh-tab-always-indent t)
|
|
3764 (setq ksh-match-and-tell t)
|
|
3765 (setq ksh-align-to-keyword t) ;; Turn on keyword alignment
|
|
3766 )))" t nil)
|
|
3767
|
|
3768 ;;;***
|
|
3769
|
|
3770 ;;;### (autoloads (m4-mode) "m4-mode" "modes/m4-mode.el")
|
|
3771
|
|
3772 (autoload 'm4-mode "m4-mode" "\
|
|
3773 A major-mode to edit m4 macro files
|
|
3774 \\{m4-mode-map}
|
|
3775 " t nil)
|
|
3776
|
|
3777 ;;;***
|
|
3778
|
|
3779 ;;;### (autoloads (define-mail-alias build-mail-aliases mail-aliases-setup) "mail-abbrevs" "modes/mail-abbrevs.el")
|
|
3780
|
|
3781 (defvar mail-abbrev-mailrc-file nil "\
|
|
3782 Name of file with mail aliases. If nil, ~/.mailrc is used.")
|
|
3783
|
|
3784 (defvar mail-aliases nil "\
|
|
3785 Word-abbrev table of mail address aliases.
|
|
3786 If this is nil, it means the aliases have not yet been initialized and
|
|
3787 should be read from the .mailrc file. (This is distinct from there being
|
|
3788 no aliases, which is represented by this being a table with no entries.)")
|
|
3789
|
|
3790 (autoload 'mail-aliases-setup "mail-abbrevs" nil nil nil)
|
|
3791
|
|
3792 (autoload 'build-mail-aliases "mail-abbrevs" "\
|
|
3793 Read mail aliases from .mailrc and set mail-aliases." nil nil)
|
|
3794
|
|
3795 (autoload 'define-mail-alias "mail-abbrevs" "\
|
|
3796 Define NAME as a mail-alias that translates to DEFINITION.
|
|
3797 If DEFINITION contains multiple addresses, separate them with commas." t nil)
|
|
3798
|
|
3799 ;;;***
|
|
3800
|
|
3801 ;;;### (autoloads (makefile-mode) "make-mode" "modes/make-mode.el")
|
|
3802
|
|
3803 (autoload 'makefile-mode "make-mode" "\
|
|
3804 Major mode for editing Makefiles.
|
|
3805 This function ends by invoking the function(s) `makefile-mode-hook'.
|
|
3806
|
|
3807 \\{makefile-mode-map}
|
|
3808
|
|
3809 In the browser, use the following keys:
|
|
3810
|
|
3811 \\{makefile-browser-map}
|
|
3812
|
|
3813 Makefile mode can be configured by modifying the following variables:
|
|
3814
|
|
3815 makefile-browser-buffer-name:
|
|
3816 Name of the macro- and target browser buffer.
|
|
3817
|
|
3818 makefile-target-colon:
|
|
3819 The string that gets appended to all target names
|
|
3820 inserted by `makefile-insert-target'.
|
|
3821 \":\" or \"::\" are quite common values.
|
|
3822
|
|
3823 makefile-macro-assign:
|
|
3824 The string that gets appended to all macro names
|
|
3825 inserted by `makefile-insert-macro'.
|
|
3826 The normal value should be \" = \", since this is what
|
|
3827 standard make expects. However, newer makes such as dmake
|
|
3828 allow a larger variety of different macro assignments, so you
|
|
3829 might prefer to use \" += \" or \" := \" .
|
|
3830
|
|
3831 makefile-tab-after-target-colon:
|
|
3832 If you want a TAB (instead of a space) to be appended after the
|
|
3833 target colon, then set this to a non-nil value.
|
|
3834
|
|
3835 makefile-browser-leftmost-column:
|
|
3836 Number of blanks to the left of the browser selection mark.
|
|
3837
|
|
3838 makefile-browser-cursor-column:
|
|
3839 Column in which the cursor is positioned when it moves
|
|
3840 up or down in the browser.
|
|
3841
|
|
3842 makefile-browser-selected-mark:
|
|
3843 String used to mark selected entries in the browser.
|
|
3844
|
|
3845 makefile-browser-unselected-mark:
|
|
3846 String used to mark unselected entries in the browser.
|
|
3847
|
|
3848 makefile-browser-auto-advance-after-selection-p:
|
|
3849 If this variable is set to a non-nil value the cursor
|
|
3850 will automagically advance to the next line after an item
|
|
3851 has been selected in the browser.
|
|
3852
|
|
3853 makefile-pickup-everything-picks-up-filenames-p:
|
|
3854 If this variable is set to a non-nil value then
|
|
3855 `makefile-pickup-everything' also picks up filenames as targets
|
|
3856 (i.e. it calls `makefile-find-filenames-as-targets'), otherwise
|
|
3857 filenames are omitted.
|
|
3858
|
|
3859 makefile-cleanup-continuations-p:
|
|
3860 If this variable is set to a non-nil value then makefile-mode
|
|
3861 will assure that no line in the file ends with a backslash
|
|
3862 (the continuation character) followed by any whitespace.
|
|
3863 This is done by silently removing the trailing whitespace, leaving
|
|
3864 the backslash itself intact.
|
|
3865 IMPORTANT: Please note that enabling this option causes makefile-mode
|
|
3866 to MODIFY A FILE WITHOUT YOUR CONFIRMATION when \"it seems necessary\".
|
|
3867
|
|
3868 makefile-browser-hook:
|
|
3869 A function or list of functions to be called just before the
|
|
3870 browser is entered. This is executed in the makefile buffer.
|
|
3871
|
|
3872 makefile-special-targets-list:
|
|
3873 List of special targets. You will be offered to complete
|
|
3874 on one of those in the minibuffer whenever you enter a `.'.
|
|
3875 at the beginning of a line in Makefile mode." t nil)
|
|
3876
|
|
3877 ;;;***
|
|
3878
|
|
3879 ;;;### (autoloads (modula-2-mode) "modula2" "modes/modula2.el")
|
|
3880
|
|
3881 (autoload 'modula-2-mode "modula2" "\
|
|
3882 This is a mode intended to support program development in Modula-2.
|
|
3883 All control constructs of Modula-2 can be reached by typing C-c
|
|
3884 followed by the first character of the construct.
|
|
3885 \\<m2-mode-map>
|
|
3886 \\[m2-begin] begin \\[m2-case] case
|
|
3887 \\[m2-definition] definition \\[m2-else] else
|
|
3888 \\[m2-for] for \\[m2-header] header
|
|
3889 \\[m2-if] if \\[m2-module] module
|
|
3890 \\[m2-loop] loop \\[m2-or] or
|
|
3891 \\[m2-procedure] procedure Control-c Control-w with
|
|
3892 \\[m2-record] record \\[m2-stdio] stdio
|
|
3893 \\[m2-type] type \\[m2-until] until
|
|
3894 \\[m2-var] var \\[m2-while] while
|
|
3895 \\[m2-export] export \\[m2-import] import
|
|
3896 \\[m2-begin-comment] begin-comment \\[m2-end-comment] end-comment
|
|
3897 \\[suspend-emacs] suspend Emacs \\[m2-toggle] toggle
|
|
3898 \\[m2-compile] compile \\[m2-next-error] next-error
|
|
3899 \\[m2-link] link
|
|
3900
|
|
3901 `m2-indent' controls the number of spaces for each indentation.
|
|
3902 `m2-compile-command' holds the command to compile a Modula-2 program.
|
|
3903 `m2-link-command' holds the command to link a Modula-2 program." t nil)
|
|
3904
|
|
3905 ;;;***
|
|
3906
|
|
3907 ;;;### (autoloads (electric-nroff-mode nroff-mode) "nroff-mode" "modes/nroff-mode.el")
|
|
3908
|
|
3909 (autoload 'nroff-mode "nroff-mode" "\
|
|
3910 Major mode for editing text intended for nroff to format.
|
|
3911 \\{nroff-mode-map}
|
|
3912 Turning on Nroff mode runs `text-mode-hook', then `nroff-mode-hook'.
|
|
3913 Also, try `nroff-electric-mode', for automatically inserting
|
|
3914 closing requests for requests that are used in matched pairs." t nil)
|
|
3915
|
|
3916 (autoload 'electric-nroff-mode "nroff-mode" "\
|
|
3917 Toggle `nroff-electric-newline' minor mode.
|
|
3918 `nroff-electric-newline' forces Emacs to check for an nroff request at the
|
|
3919 beginning of the line, and insert the matching closing request if necessary.
|
|
3920 This command toggles that mode (off->on, on->off), with an argument,
|
|
3921 turns it on iff arg is positive, otherwise off." t nil)
|
|
3922
|
|
3923 (defvar nroff-electric-mode nil "\
|
|
3924 Non-nil if in electric-nroff minor mode.")
|
|
3925
|
|
3926 (add-minor-mode 'nroff-electric-mode " Electric" nil nil 'electric-nroff-mode)
|
|
3927
|
|
3928 ;;;***
|
|
3929
|
|
3930 ;;;### (autoloads (outl-mouse-minor-mode outl-mouse-mode) "outl-mouse" "modes/outl-mouse.el")
|
|
3931
|
|
3932 (autoload 'outl-mouse-mode "outl-mouse" "\
|
|
3933 Calls outline-mode, with outl-mouse extensions" t nil)
|
|
3934
|
|
3935 (autoload 'outl-mouse-minor-mode "outl-mouse" "\
|
|
3936 Toggles outline-minor-mode, with outl-mouse extensions" t nil)
|
|
3937
|
|
3938 ;;;***
|
|
3939
|
|
3940 ;;;### (autoloads (outline-minor-mode outline-mode) "outline" "modes/outline.el")
|
|
3941
|
|
3942 (defvar outline-minor-mode nil "\
|
|
3943 Non-nil if using Outline mode as a minor mode of some other mode.")
|
|
3944
|
|
3945 (make-variable-buffer-local 'outline-minor-mode)
|
|
3946
|
|
3947 (put 'outline-minor-mode 'permanent-local t)
|
|
3948
|
|
3949 (add-minor-mode 'outline-minor-mode " Outl")
|
|
3950
|
|
3951 (autoload 'outline-mode "outline" "\
|
|
3952 Set major mode for editing outlines with selective display.
|
|
3953 Headings are lines which start with asterisks: one for major headings,
|
|
3954 two for subheadings, etc. Lines not starting with asterisks are body lines.
|
|
3955
|
|
3956 Body text or subheadings under a heading can be made temporarily
|
|
3957 invisible, or visible again. Invisible lines are attached to the end
|
|
3958 of the heading, so they move with it, if the line is killed and yanked
|
|
3959 back. A heading with text hidden under it is marked with an ellipsis (...).
|
|
3960
|
|
3961 Commands:\\<outline-mode-map>
|
|
3962 \\[outline-next-visible-heading] outline-next-visible-heading move by visible headings
|
|
3963 \\[outline-previous-visible-heading] outline-previous-visible-heading
|
|
3964 \\[outline-forward-same-level] outline-forward-same-level similar but skip subheadings
|
|
3965 \\[outline-backward-same-level] outline-backward-same-level
|
|
3966 \\[outline-up-heading] outline-up-heading move from subheading to heading
|
|
3967
|
|
3968 \\[hide-body] make all text invisible (not headings).
|
|
3969 \\[show-all] make everything in buffer visible.
|
|
3970
|
|
3971 The remaining commands are used when point is on a heading line.
|
|
3972 They apply to some of the body or subheadings of that heading.
|
|
3973 \\[hide-subtree] hide-subtree make body and subheadings invisible.
|
|
3974 \\[show-subtree] show-subtree make body and subheadings visible.
|
|
3975 \\[show-children] show-children make direct subheadings visible.
|
|
3976 No effect on body, or subheadings 2 or more levels down.
|
|
3977 With arg N, affects subheadings N levels down.
|
|
3978 \\[hide-entry] make immediately following body invisible.
|
|
3979 \\[show-entry] make it visible.
|
|
3980 \\[hide-leaves] make body under heading and under its subheadings invisible.
|
|
3981 The subheadings remain visible.
|
|
3982 \\[show-branches] make all subheadings at all levels visible.
|
|
3983
|
|
3984 The variable `outline-regexp' can be changed to control what is a heading.
|
|
3985 A line is a heading if `outline-regexp' matches something at the
|
|
3986 beginning of the line. The longer the match, the deeper the level.
|
|
3987
|
|
3988 Turning on outline mode calls the value of `text-mode-hook' and then of
|
|
3989 `outline-mode-hook', if they are non-nil." t nil)
|
|
3990
|
|
3991 (autoload 'outline-minor-mode "outline" "\
|
|
3992 Toggle Outline minor mode.
|
|
3993 With arg, turn Outline minor mode on if arg is positive, off otherwise.
|
|
3994 See the command `outline-mode' for more information on this mode." t nil)
|
|
3995
|
|
3996 ;;;***
|
|
3997
|
|
3998 ;;;### (autoloads (pascal-mode) "pascal" "modes/pascal.el")
|
|
3999
|
|
4000 (autoload 'pascal-mode "pascal" "\
|
|
4001 Major mode for editing Pascal code. \\<pascal-mode-map>
|
|
4002 TAB indents for Pascal code. Delete converts tabs to spaces as it moves back.
|
|
4003
|
|
4004 \\[pascal-complete-word] completes the word around current point with respect to position in code
|
|
4005 \\[pascal-show-completions] shows all possible completions at this point.
|
|
4006
|
|
4007 Other useful functions are:
|
|
4008
|
|
4009 \\[pascal-mark-defun] - Mark function.
|
|
4010 \\[pascal-insert-block] - insert begin ... end;
|
|
4011 \\[pascal-star-comment] - insert (* ... *)
|
|
4012 \\[pascal-comment-area] - Put marked area in a comment, fixing nested comments.
|
|
4013 \\[pascal-uncomment-area] - Uncomment an area commented with \\[pascal-comment-area].
|
|
4014 \\[pascal-beg-of-defun] - Move to beginning of current function.
|
|
4015 \\[pascal-end-of-defun] - Move to end of current function.
|
|
4016 \\[pascal-goto-defun] - Goto function prompted for in the minibuffer.
|
|
4017 \\[pascal-outline] - Enter pascal-outline-mode (see also pascal-outline).
|
|
4018
|
|
4019 Variables controlling indentation/edit style:
|
|
4020
|
|
4021 pascal-indent-level (default 3)
|
|
4022 Indentation of Pascal statements with respect to containing block.
|
|
4023 pascal-case-indent (default 2)
|
|
4024 Indentation for case statements.
|
|
4025 pascal-auto-newline (default nil)
|
|
4026 Non-nil means automatically newline after simcolons and the punctation mark
|
|
4027 after an end.
|
|
4028 pascal-tab-always-indent (default t)
|
|
4029 Non-nil means TAB in Pascal mode should always reindent the current line,
|
|
4030 regardless of where in the line point is when the TAB command is used.
|
|
4031 pascal-auto-endcomments (default t)
|
|
4032 Non-nil means a comment { ... } is set after the ends which ends cases and
|
|
4033 functions. The name of the function or case will be set between the braces.
|
|
4034 pascal-auto-lineup (default t)
|
|
4035 List of contexts where auto lineup of :'s or ='s hould be done.
|
|
4036
|
|
4037 See also the user variables pascal-type-keywords, pascal-start-keywords and
|
|
4038 pascal-separator-keywords.
|
|
4039
|
|
4040 Turning on Pascal mode calls the value of the variable pascal-mode-hook with
|
|
4041 no args, if that value is non-nil." t nil)
|
|
4042
|
|
4043 ;;;***
|
|
4044
|
|
4045 ;;;### (autoloads (perl-mode) "perl-mode" "modes/perl-mode.el")
|
|
4046
|
|
4047 (autoload 'perl-mode "perl-mode" "\
|
|
4048 Major mode for editing Perl code.
|
|
4049 Expression and list commands understand all Perl brackets.
|
|
4050 Tab indents for Perl code.
|
|
4051 Comments are delimited with # ... \\n.
|
|
4052 Paragraphs are separated by blank lines only.
|
|
4053 Delete converts tabs to spaces as it moves back.
|
|
4054 \\{perl-mode-map}
|
|
4055 Variables controlling indentation style:
|
|
4056 perl-tab-always-indent
|
|
4057 Non-nil means TAB in Perl mode should always indent the current line,
|
|
4058 regardless of where in the line point is when the TAB command is used.
|
|
4059 perl-tab-to-comment
|
|
4060 Non-nil means that for lines which don't need indenting, TAB will
|
|
4061 either delete an empty comment, indent an existing comment, move
|
|
4062 to end-of-line, or if at end-of-line already, create a new comment.
|
|
4063 perl-nochange
|
|
4064 Lines starting with this regular expression are not auto-indented.
|
|
4065 perl-indent-level
|
|
4066 Indentation of Perl statements within surrounding block.
|
|
4067 The surrounding block's indentation is the indentation
|
|
4068 of the line on which the open-brace appears.
|
|
4069 perl-continued-statement-offset
|
|
4070 Extra indentation given to a substatement, such as the
|
|
4071 then-clause of an if or body of a while.
|
|
4072 perl-continued-brace-offset
|
|
4073 Extra indentation given to a brace that starts a substatement.
|
|
4074 This is in addition to `perl-continued-statement-offset'.
|
|
4075 perl-brace-offset
|
|
4076 Extra indentation for line if it starts with an open brace.
|
|
4077 perl-brace-imaginary-offset
|
|
4078 An open brace following other text is treated as if it were
|
|
4079 this far to the right of the start of its line.
|
|
4080 perl-label-offset
|
|
4081 Extra indentation for line that is a label.
|
|
4082
|
|
4083 Various indentation styles: K&R BSD BLK GNU LW
|
|
4084 perl-indent-level 5 8 0 2 4
|
|
4085 perl-continued-statement-offset 5 8 4 2 4
|
|
4086 perl-continued-brace-offset 0 0 0 0 -4
|
|
4087 perl-brace-offset -5 -8 0 0 0
|
|
4088 perl-brace-imaginary-offset 0 0 4 0 0
|
|
4089 perl-label-offset -5 -8 -2 -2 -2
|
|
4090
|
|
4091 Turning on Perl mode runs the normal hook `perl-mode-hook'." t nil)
|
|
4092
|
|
4093 ;;;***
|
|
4094
|
|
4095 ;;;### (autoloads (picture-mode) "picture" "modes/picture.el")
|
|
4096
|
|
4097 (autoload 'picture-mode "picture" "\
|
|
4098 Switch to Picture mode, in which a quarter-plane screen model is used.
|
|
4099 Printing characters replace instead of inserting themselves with motion
|
|
4100 afterwards settable by these commands:
|
|
4101 C-c < Move left after insertion.
|
|
4102 C-c > Move right after insertion.
|
|
4103 C-c ^ Move up after insertion.
|
|
4104 C-c . Move down after insertion.
|
|
4105 C-c ` Move northwest (nw) after insertion.
|
|
4106 C-c ' Move northeast (ne) after insertion.
|
|
4107 C-c / Move southwest (sw) after insertion.
|
|
4108 C-c \\ Move southeast (se) after insertion.
|
|
4109 The current direction is displayed in the modeline. The initial
|
|
4110 direction is right. Whitespace is inserted and tabs are changed to
|
|
4111 spaces when required by movement. You can move around in the buffer
|
|
4112 with these commands:
|
|
4113 \\[picture-move-down] Move vertically to SAME column in previous line.
|
|
4114 \\[picture-move-up] Move vertically to SAME column in next line.
|
|
4115 \\[picture-end-of-line] Move to column following last non-whitespace character.
|
|
4116 \\[picture-forward-column] Move right inserting spaces if required.
|
|
4117 \\[picture-backward-column] Move left changing tabs to spaces if required.
|
|
4118 C-c C-f Move in direction of current picture motion.
|
|
4119 C-c C-b Move in opposite direction of current picture motion.
|
|
4120 Return Move to beginning of next line.
|
|
4121 You can edit tabular text with these commands:
|
|
4122 M-Tab Move to column beneath (or at) next interesting character.
|
|
4123 `Indents' relative to a previous line.
|
|
4124 Tab Move to next stop in tab stop list.
|
|
4125 C-c Tab Set tab stops according to context of this line.
|
|
4126 With ARG resets tab stops to default (global) value.
|
|
4127 See also documentation of variable picture-tab-chars
|
|
4128 which defines \"interesting character\". You can manually
|
|
4129 change the tab stop list with command \\[edit-tab-stops].
|
|
4130 You can manipulate text with these commands:
|
|
4131 C-d Clear (replace) ARG columns after point without moving.
|
|
4132 C-c C-d Delete char at point - the command normally assigned to C-d.
|
|
4133 \\[picture-backward-clear-column] Clear (replace) ARG columns before point, moving back over them.
|
|
4134 \\[picture-clear-line] Clear ARG lines, advancing over them. The cleared
|
|
4135 text is saved in the kill ring.
|
|
4136 \\[picture-open-line] Open blank line(s) beneath current line.
|
|
4137 You can manipulate rectangles with these commands:
|
|
4138 C-c C-k Clear (or kill) a rectangle and save it.
|
|
4139 C-c C-w Like C-c C-k except rectangle is saved in named register.
|
|
4140 C-c C-y Overlay (or insert) currently saved rectangle at point.
|
|
4141 C-c C-x Like C-c C-y except rectangle is taken from named register.
|
|
4142 \\[copy-rectangle-to-register] Copies a rectangle to a register.
|
|
4143 \\[advertised-undo] Can undo effects of rectangle overlay commands
|
|
4144 commands if invoked soon enough.
|
|
4145 You can return to the previous mode with:
|
|
4146 C-c C-c Which also strips trailing whitespace from every line.
|
|
4147 Stripping is suppressed by supplying an argument.
|
|
4148
|
|
4149 Entry to this mode calls the value of picture-mode-hook if non-nil.
|
|
4150
|
|
4151 Note that Picture mode commands will work outside of Picture mode, but
|
|
4152 they are not defaultly assigned to keys." t nil)
|
|
4153
|
|
4154 (defalias 'edit-picture 'picture-mode)
|
|
4155
|
|
4156 ;;;***
|
|
4157
|
|
4158 ;;;### (autoloads (postscript-mode) "postscript" "modes/postscript.el")
|
|
4159
|
|
4160 (autoload 'postscript-mode "postscript" "\
|
|
4161 Major mode for editing PostScript files.
|
|
4162
|
|
4163 \\[ps-execute-buffer] will send the contents of the buffer to the NeWS
|
|
4164 server using psh(1). \\[ps-execute-region] sends the current region.
|
|
4165 \\[ps-shell] starts an interactive psh(1) window which will be used for
|
|
4166 subsequent \\[ps-execute-buffer] or \\[ps-execute-region] commands.
|
|
4167
|
|
4168 In this mode, TAB and \\[indent-region] attempt to indent code
|
|
4169 based on the position of {}, [], and begin/end pairs. The variable
|
|
4170 ps-indent-level controls the amount of indentation used inside
|
|
4171 arrays and begin/end pairs.
|
|
4172
|
|
4173 \\{ps-mode-map}
|
|
4174
|
|
4175 \\[postscript-mode] calls the value of the variable postscript-mode-hook
|
|
4176 with no args, if that value is non-nil." t nil)
|
|
4177
|
|
4178 ;;;***
|
|
4179
|
|
4180 ;;;### (autoloads (run-prolog inferior-prolog-mode prolog-mode) "prolog" "modes/prolog.el")
|
|
4181
|
|
4182 (autoload 'prolog-mode "prolog" "\
|
|
4183 Major mode for editing Prolog code for Prologs.
|
|
4184 Blank lines and `%%...' separate paragraphs. `%'s start comments.
|
|
4185 Commands:
|
|
4186 \\{prolog-mode-map}
|
|
4187 Entry to this mode calls the value of `prolog-mode-hook'
|
|
4188 if that value is non-nil." t nil)
|
|
4189
|
|
4190 (autoload 'inferior-prolog-mode "prolog" "\
|
|
4191 Major mode for interacting with an inferior Prolog process.
|
|
4192
|
|
4193 The following commands are available:
|
|
4194 \\{inferior-prolog-mode-map}
|
|
4195
|
|
4196 Entry to this mode calls the value of `prolog-mode-hook' with no arguments,
|
|
4197 if that value is non-nil. Likewise with the value of `comint-mode-hook'.
|
|
4198 `prolog-mode-hook' is called after `comint-mode-hook'.
|
|
4199
|
|
4200 You can send text to the inferior Prolog from other buffers
|
|
4201 using the commands `send-region', `send-string' and \\[prolog-consult-region].
|
|
4202
|
|
4203 Commands:
|
|
4204 Tab indents for Prolog; with argument, shifts rest
|
|
4205 of expression rigidly with the current line.
|
|
4206 Paragraphs are separated only by blank lines and '%%'.
|
|
4207 '%'s start comments.
|
|
4208
|
|
4209 Return at end of buffer sends line as input.
|
|
4210 Return not at end copies rest of line to end and sends it.
|
|
4211 \\[comint-kill-input] and \\[backward-kill-word] are kill commands, imitating normal Unix input editing.
|
|
4212 \\[comint-interrupt-subjob] interrupts the shell or its current subjob if any.
|
|
4213 \\[comint-stop-subjob] stops. \\[comint-quit-subjob] sends quit signal." t nil)
|
|
4214
|
|
4215 (autoload 'run-prolog "prolog" "\
|
|
4216 Run an inferior Prolog process, input and output via buffer *prolog*." t nil)
|
|
4217
|
|
4218 ;;;***
|
|
4219
|
|
4220 ;;;### (autoloads (py-shell python-mode) "python-mode" "modes/python-mode.el")
|
|
4221
|
|
4222 (eval-when-compile (condition-case nil (progn (require 'cl) (require 'imenu)) (error nil)))
|
|
4223
|
|
4224 (autoload 'python-mode "python-mode" "\
|
|
4225 Major mode for editing Python files.
|
|
4226 To submit a problem report, enter `\\[py-submit-bug-report]' from a
|
|
4227 `python-mode' buffer. Do `\\[py-describe-mode]' for detailed
|
|
4228 documentation. To see what version of `python-mode' you are running,
|
|
4229 enter `\\[py-version]'.
|
|
4230
|
|
4231 This mode knows about Python indentation, tokens, comments and
|
|
4232 continuation lines. Paragraphs are separated by blank lines only.
|
|
4233
|
|
4234 COMMANDS
|
|
4235 \\{py-mode-map}
|
|
4236 VARIABLES
|
|
4237
|
|
4238 py-indent-offset indentation increment
|
|
4239 py-block-comment-prefix comment string used by comment-region
|
|
4240 py-python-command shell command to invoke Python interpreter
|
|
4241 py-scroll-process-buffer always scroll Python process buffer
|
|
4242 py-temp-directory directory used for temp files (if needed)
|
|
4243 py-beep-if-tab-change ring the bell if tab-width is changed" t nil)
|
|
4244
|
|
4245 (autoload 'py-shell "python-mode" "\
|
|
4246 Start an interactive Python interpreter in another window.
|
|
4247 This is like Shell mode, except that Python is running in the window
|
|
4248 instead of a shell. See the `Interactive Shell' and `Shell Mode'
|
|
4249 sections of the Emacs manual for details, especially for the key
|
|
4250 bindings active in the `*Python*' buffer.
|
|
4251
|
|
4252 See the docs for variable `py-scroll-buffer' for info on scrolling
|
|
4253 behavior in the process window.
|
|
4254
|
|
4255 Warning: Don't use an interactive Python if you change sys.ps1 or
|
|
4256 sys.ps2 from their default values, or if you're running code that
|
|
4257 prints `>>> ' or `... ' at the start of a line. `python-mode' can't
|
|
4258 distinguish your output from Python's output, and assumes that `>>> '
|
|
4259 at the start of a line is a prompt from Python. Similarly, the Emacs
|
|
4260 Shell mode code assumes that both `>>> ' and `... ' at the start of a
|
|
4261 line are Python prompts. Bad things can happen if you fool either
|
|
4262 mode.
|
|
4263
|
|
4264 Warning: If you do any editing *in* the process buffer *while* the
|
|
4265 buffer is accepting output from Python, do NOT attempt to `undo' the
|
|
4266 changes. Some of the output (nowhere near the parts you changed!) may
|
|
4267 be lost if you do. This appears to be an Emacs bug, an unfortunate
|
|
4268 interaction between undo and process filters; the same problem exists in
|
|
4269 non-Python process buffers using the default (Emacs-supplied) process
|
|
4270 filter." t nil)
|
|
4271
|
|
4272 ;;;***
|
|
4273
|
|
4274 ;;;### (autoloads (rexx-mode) "rexx-mode" "modes/rexx-mode.el")
|
|
4275
|
|
4276 (autoload 'rexx-mode "rexx-mode" "\
|
|
4277 Major mode for editing REXX code.
|
|
4278 \\{rexx-mode-map}
|
|
4279
|
|
4280 Variables controlling indentation style:
|
|
4281 rexx-indent
|
|
4282 The basic indentation for do-blocks.
|
|
4283 rexx-end-indent
|
|
4284 The relative offset of the \"end\" statement. 0 places it in the
|
|
4285 same column as the statements of the block. Setting it to the same
|
|
4286 value as rexx-indent places the \"end\" under the do-line.
|
|
4287 rexx-cont-indent
|
|
4288 The indention for lines following \"then\", \"else\" and \",\"
|
|
4289 (continued) lines.
|
|
4290 rexx-tab-always-indent
|
|
4291 Non-nil means TAB in REXX mode should always reindent the current
|
|
4292 line, regardless of where in the line the point is when the TAB
|
|
4293 command is used.
|
|
4294
|
|
4295 If you have set rexx-end-indent to a nonzero value, you probably want to
|
|
4296 remap RETURN to rexx-indent-newline-indent. It makes sure that lines
|
|
4297 indents correctly when you press RETURN.
|
|
4298
|
|
4299 An extensive abbrevation table consisting of all the keywords of REXX are
|
|
4300 supplied. Expanded keywords are converted into upper case making it
|
|
4301 easier to distinguish them. To use this feature the buffer must be in
|
|
4302 abbrev-mode. (See example below.)
|
|
4303
|
|
4304 Turning on REXX mode calls the value of the variable rexx-mode-hook with
|
|
4305 no args, if that value is non-nil.
|
|
4306
|
|
4307 For example:
|
|
4308 \(setq rexx-mode-hook '(lambda ()
|
|
4309 (setq rexx-indent 4)
|
|
4310 (setq rexx-end-indent 4)
|
|
4311 (setq rexx-cont-indent 4)
|
|
4312 (local-set-key \"\\C-m\" 'rexx-indent-newline-indent)
|
|
4313 (abbrev-mode 1)
|
|
4314 ))
|
|
4315
|
|
4316 will make the END aligned with the DO/SELECT. It will indent blocks and
|
|
4317 IF-statenents four steps and make sure that the END jumps into the
|
|
4318 correct position when RETURN is pressed. Finaly it will use the abbrev
|
|
4319 table to convert all REXX keywords into upper case." t nil)
|
|
4320
|
|
4321 ;;;***
|
|
4322
|
|
4323 ;;;### (autoloads (resize-minibuffer-mode) "rsz-minibuf" "modes/rsz-minibuf.el")
|
|
4324
|
|
4325 (defvar resize-minibuffer-mode nil "\
|
|
4326 *If non-`nil', resize the minibuffer so its entire contents are visible.")
|
|
4327
|
|
4328 (defvar resize-minibuffer-window-max-height nil "\
|
|
4329 *Maximum size the minibuffer window is allowed to become.
|
|
4330 If less than 1 or not a number, the limit is the height of the frame in
|
|
4331 which the active minibuffer window resides.")
|
|
4332
|
|
4333 (defvar resize-minibuffer-window-exactly t "\
|
|
4334 *If non-`nil', make minibuffer exactly the size needed to display all its contents.
|
|
4335 Otherwise, the minibuffer window can temporarily increase in size but
|
|
4336 never get smaller while it is active.")
|
|
4337
|
|
4338 (defvar resize-minibuffer-frame nil "\
|
|
4339 *If non-`nil' and the active minibuffer is the sole window in its frame, allow changing the frame height.")
|
|
4340
|
|
4341 (defvar resize-minibuffer-frame-max-height nil "\
|
|
4342 *Maximum size the minibuffer frame is allowed to become.
|
|
4343 If less than 1 or not a number, there is no limit.")
|
|
4344
|
|
4345 (defvar resize-minibuffer-frame-exactly nil "\
|
|
4346 *If non-`nil', make minibuffer frame exactly the size needed to display all its contents.
|
|
4347 Otherwise, the minibuffer frame can temporarily increase in size but
|
|
4348 never get smaller while it is active.")
|
|
4349
|
|
4350 (autoload 'resize-minibuffer-mode "rsz-minibuf" "\
|
|
4351 Enable or disable resize-minibuffer mode.
|
|
4352 A negative prefix argument disables this mode. A positive argument or
|
|
4353 argument of 0 enables it.
|
|
4354
|
|
4355 When this minor mode is enabled, the minibuffer is dynamically resized to
|
|
4356 contain the entire region of text put in it as you type.
|
|
4357
|
|
4358 The variable `resize-minibuffer-mode' is set to t or nil depending on
|
|
4359 whether this mode is active or not.
|
|
4360
|
|
4361 The maximum height to which the minibuffer can grow is controlled by the
|
|
4362 variable `resize-minibuffer-window-max-height'.
|
|
4363
|
|
4364 The variable `resize-minibuffer-window-exactly' determines whether the
|
|
4365 minibuffer window should ever be shrunk to make it no larger than needed to
|
|
4366 display its contents.
|
|
4367
|
|
4368 When using a window system, it is possible for a minibuffer to tbe the sole
|
|
4369 window in a frame. Since that window is already its maximum size, the only
|
|
4370 way to make more text visible at once is to increase the size of the frame.
|
|
4371 The variable `resize-minibuffer-frame' controls whether this should be
|
|
4372 done. The variables `resize-minibuffer-frame-max-height' and
|
|
4373 `resize-minibuffer-frame-exactly' are analogous to their window
|
|
4374 counterparts." t nil)
|
|
4375
|
|
4376 ;;;***
|
|
4377
|
|
4378 ;;;### (autoloads (scheme-mode) "scheme" "modes/scheme.el")
|
|
4379
|
|
4380 (autoload 'scheme-mode "scheme" "\
|
|
4381 Major mode for editing Scheme code.
|
|
4382 Editing commands are similar to those of lisp-mode.
|
|
4383
|
|
4384 In addition, if an inferior Scheme process is running, some additional
|
|
4385 commands will be defined, for evaluating expressions and controlling
|
|
4386 the interpreter, and the state of the process will be displayed in the
|
|
4387 modeline of all Scheme buffers. The names of commands that interact
|
|
4388 with the Scheme process start with \"xscheme-\". For more information
|
|
4389 see the documentation for xscheme-interaction-mode.
|
|
4390
|
|
4391 Commands:
|
|
4392 Delete converts tabs to spaces as it moves back.
|
|
4393 Blank lines separate paragraphs. Semicolons start comments.
|
|
4394 \\{scheme-mode-map}
|
|
4395 Entry to this mode calls the value of scheme-mode-hook
|
|
4396 if that value is non-nil." t nil)
|
|
4397
|
|
4398 ;;;***
|
|
4399
|
|
4400 ;;;### (autoloads (scribe-mode) "scribe" "modes/scribe.el")
|
|
4401
|
|
4402 (autoload 'scribe-mode "scribe" "\
|
|
4403 Major mode for editing files of Scribe (a text formatter) source.
|
|
4404 Scribe-mode is similar text-mode, with a few extra commands added.
|
|
4405 \\{scribe-mode-map}
|
|
4406
|
|
4407 Interesting variables:
|
|
4408
|
|
4409 scribe-fancy-paragraphs
|
|
4410 Non-nil makes Scribe mode use a different style of paragraph separation.
|
|
4411
|
|
4412 scribe-electric-quote
|
|
4413 Non-nil makes insert of double quote use `` or '' depending on context.
|
|
4414
|
|
4415 scribe-electric-parenthesis
|
|
4416 Non-nil makes an open-parenthesis char (one of `([<{')
|
|
4417 automatically insert its close if typed after an @Command form." t nil)
|
|
4418
|
|
4419 ;;;***
|
|
4420
|
|
4421 ;;;### (autoloads (mail-other-frame mail-other-window mail mail-mode) "sendmail" "modes/sendmail.el")
|
|
4422
|
|
4423 (defvar mail-from-style 'angles "\
|
|
4424 *Specifies how \"From:\" fields look.
|
|
4425
|
|
4426 If `nil', they contain just the return address like:
|
|
4427 king@grassland.com
|
|
4428 If `parens', they look like:
|
|
4429 king@grassland.com (Elvis Parsley)
|
|
4430 If `angles', they look like:
|
|
4431 Elvis Parsley <king@grassland.com>")
|
|
4432
|
|
4433 (defvar mail-self-blind nil "\
|
|
4434 Non-nil means insert BCC to self in messages to be sent.
|
|
4435 This is done when the message is initialized,
|
|
4436 so you can remove or alter the BCC field to override the default.")
|
|
4437
|
|
4438 (defvar mail-interactive nil "\
|
|
4439 Non-nil means when sending a message wait for and display errors.
|
|
4440 nil means let mailer mail back a message to report errors.")
|
|
4441
|
|
4442 (defvar mail-dir nil "\
|
|
4443 *Default directory for saving messages.")
|
|
4444
|
|
4445 (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-") "\\|") "\\)")) "\
|
|
4446 *Gubbish header fields one would rather not see.")
|
|
4447
|
|
4448 (defvar mail-yank-ignored-headers (purecopy (concat rmail-ignored-headers "\\|" "^\\(" (mapconcat 'identity '("Resent-To:" "Resent-By:" "Resent-CC:" "To:" "Subject:" "In-Reply-To:") "\\|") "\\)")) "\
|
|
4449 Delete these headers from old message when it's inserted in a reply.")
|
|
4450
|
|
4451 (defvar send-mail-function 'sendmail-send-it "\
|
|
4452 Function to call to send the current buffer as mail.
|
|
4453 The headers should be delimited by a line whose contents
|
|
4454 match the variable `mail-header-separator'.")
|
|
4455
|
|
4456 (defvar mail-header-separator (purecopy "--text follows this line--") "\
|
|
4457 *Line used to separate headers from text in messages being composed.")
|
|
4458
|
|
4459 (defvar mail-archive-file-name nil "\
|
|
4460 *Name of file to write all outgoing messages in, or nil for none.
|
|
4461 This can be an inbox file or an Rmail file.")
|
|
4462
|
|
4463 (defvar mail-default-reply-to nil "\
|
|
4464 *Address to insert as default Reply-to field of outgoing messages.
|
|
4465 If nil, it will be initialized from the REPLYTO environment variable
|
|
4466 when you first send mail.")
|
|
4467
|
|
4468 (defvar mail-alias-file nil "\
|
|
4469 *If non-nil, the name of a file to use instead of `/usr/lib/aliases'.
|
|
4470 This file defines aliases to be expanded by the mailer; this is a different
|
|
4471 feature from that of defining aliases in `.mailrc' to be expanded in Emacs.
|
|
4472 This variable has no effect unless your system uses sendmail as its mailer.")
|
|
4473
|
|
4474 (defvar mail-yank-prefix "> " "\
|
|
4475 *Prefix insert on lines of yanked message being replied to.
|
|
4476 nil means use indentation.")
|
|
4477
|
|
4478 (defvar mail-signature nil "\
|
|
4479 *Text inserted at end of mail buffer when a message is initialized.
|
|
4480 If t, it means to insert the contents of the file `mail-signature-file'.")
|
|
4481
|
|
4482 (autoload 'mail-mode "sendmail" "\
|
|
4483 Major mode for editing mail to be sent.
|
|
4484 Like Text Mode but with these additional commands:
|
|
4485 C-c C-s mail-send (send the message) C-c C-c mail-send-and-exit
|
|
4486 C-c C-f move to a header field (and create it if there isn't):
|
|
4487 C-c C-f C-t move to To: C-c C-f C-s move to Subj:
|
|
4488 C-c C-f C-b move to BCC: C-c C-f C-c move to CC:
|
|
4489 C-c C-f C-f move to FCC: C-c C-f C-r move to Reply-To:
|
|
4490 C-c C-t mail-text (move to beginning of message text).
|
|
4491 C-c C-w mail-signature (insert `mail-signature-file' file).
|
|
4492 C-c C-y mail-yank-original (insert current message, in Rmail).
|
|
4493 C-c C-q mail-fill-yanked-message (fill what was yanked).
|
|
4494 C-c C-v mail-sent-via (add a sent-via field for each To or CC)." t nil)
|
|
4495
|
|
4496 (autoload 'mail "sendmail" "\
|
|
4497 Edit a message to be sent. Prefix arg means resume editing (don't erase).
|
|
4498 When this function returns, the buffer `*mail*' is selected.
|
|
4499 The value is t if the message was newly initialized; otherwise, nil.
|
|
4500
|
|
4501 Optionally, the signature file `mail-signature-file' can be inserted at the
|
|
4502 end; see the variable `mail-signature'.
|
|
4503
|
|
4504 \\<mail-mode-map>
|
|
4505 While editing message, type \\[mail-send-and-exit] to send the message and exit.
|
|
4506
|
|
4507 Various special commands starting with C-c are available in sendmail mode
|
|
4508 to move to message header fields:
|
|
4509 \\{mail-mode-map}
|
|
4510
|
|
4511 The variable `mail-signature' controls whether the signature file
|
|
4512 `mail-signature-file' is inserted immediately.
|
|
4513
|
|
4514 If `mail-signature' is nil, use \\[mail-signature] to insert the
|
|
4515 signature in `mail-signature-file'.
|
|
4516
|
|
4517 If `mail-self-blind' is non-nil, a BCC to yourself is inserted
|
|
4518 when the message is initialized.
|
|
4519
|
|
4520 If `mail-default-reply-to' is non-nil, it should be an address (a string);
|
|
4521 a Reply-to: field with that address is inserted.
|
|
4522
|
|
4523 If `mail-archive-file-name' is non-nil, an FCC field with that file name
|
|
4524 is inserted.
|
|
4525
|
|
4526 The normal hook `mail-setup-hook' is run after the message is
|
|
4527 initialized. It can add more default fields to the message.
|
|
4528
|
|
4529 When calling from a program, the first argument if non-nil says
|
|
4530 not to erase the existing contents of the `*mail*' buffer.
|
|
4531
|
|
4532 The second through fifth arguments,
|
|
4533 TO, SUBJECT, IN-REPLY-TO and CC, specify if non-nil
|
|
4534 the initial contents of those header fields.
|
|
4535 These arguments should not have final newlines.
|
|
4536 The sixth argument REPLYBUFFER is a buffer whose contents
|
|
4537 should be yanked if the user types C-c C-y.
|
|
4538 The seventh argument ACTIONS is a list of actions to take
|
|
4539 if/when the message is sent. Each action looks like (FUNCTION . ARGS);
|
|
4540 when the message is sent, we apply FUNCTION to ARGS.
|
|
4541 This is how Rmail arranges to mark messages `answered'." t nil)
|
|
4542
|
|
4543 (autoload 'mail-other-window "sendmail" "\
|
|
4544 Like `mail' command, but display mail buffer in another window." t nil)
|
|
4545
|
|
4546 (autoload 'mail-other-frame "sendmail" "\
|
|
4547 Like `mail' command, but display mail buffer in another frame." t nil)
|
|
4548
|
|
4549 (define-key ctl-x-map "m" 'mail)
|
|
4550
|
|
4551 (define-key ctl-x-4-map "m" 'mail-other-window)
|
|
4552
|
|
4553 (define-key ctl-x-5-map "m" 'mail-other-frame)
|
|
4554
|
|
4555 (add-hook 'same-window-buffer-names "*mail*")
|
|
4556
|
|
4557 ;;;***
|
|
4558
|
|
4559 ;;;### (autoloads (sh-mode) "sh-script" "modes/sh-script.el")
|
|
4560
|
|
4561 (put 'sh-mode 'mode-class 'special)
|
|
4562
|
|
4563 (autoload 'sh-mode "sh-script" "\
|
|
4564 Major mode for editing shell scripts.
|
|
4565 This mode works for many shells, since they all have roughly the same syntax,
|
|
4566 as far as commands, arguments, variables, pipes, comments etc. are concerned.
|
|
4567 Unless the file's magic number indicates the shell, your usual shell is
|
|
4568 assumed. Since filenames rarely give a clue, they are not further analyzed.
|
|
4569
|
|
4570 This mode adapts to the variations between shells (see `sh-set-shell') by
|
|
4571 means of an inheritance based feature lookup (see `sh-feature'). This
|
|
4572 mechanism applies to all variables (including skeletons) that pertain to
|
|
4573 shell-specific features.
|
|
4574
|
|
4575 The default style of this mode is that of Rosenblatt's Korn shell book.
|
|
4576 The syntax of the statements varies with the shell being used. The
|
|
4577 following commands are available, based on the current shell's syntax:
|
|
4578
|
|
4579 \\[sh-case] case statement
|
|
4580 \\[sh-for] for loop
|
|
4581 \\[sh-function] function definition
|
|
4582 \\[sh-if] if statement
|
|
4583 \\[sh-indexed-loop] indexed loop from 1 to n
|
|
4584 \\[sh-while-getopts] while getopts loop
|
|
4585 \\[sh-repeat] repeat loop
|
|
4586 \\[sh-select] select loop
|
|
4587 \\[sh-until] until loop
|
|
4588 \\[sh-while] while loop
|
|
4589
|
|
4590 \\[backward-delete-char-untabify] Delete backward one position, even if it was a tab.
|
|
4591 \\[sh-newline-and-indent] Delete unquoted space and indent new line same as this one.
|
|
4592 \\[sh-end-of-command] Go to end of successive commands.
|
|
4593 \\[sh-beginning-of-command] Go to beginning of successive commands.
|
|
4594 \\[sh-set-shell] Set this buffer's shell, and maybe its magic number.
|
|
4595 \\[sh-execute-region] Have optional header and region be executed in a subshell.
|
|
4596
|
|
4597 \\[sh-maybe-here-document] Without prefix, following an unquoted < inserts here document.
|
|
4598 {, (, [, ', \", `
|
|
4599 Unless quoted with \\, insert the pairs {}, (), [], or '', \"\", ``.
|
|
4600
|
|
4601 If you generally program a shell different from your login shell you can
|
|
4602 set `sh-shell-file' accordingly. If your shell's file name doesn't correctly
|
|
4603 indicate what shell it is use `sh-alias-alist' to translate.
|
|
4604
|
|
4605 If your shell gives error messages with line numbers, you can use \\[executable-interpret]
|
|
4606 with your script for an edit-interpret-debug cycle." t nil)
|
|
4607
|
|
4608 (defalias 'shell-script-mode 'sh-mode)
|
|
4609
|
|
4610 ;;;***
|
|
4611
|
|
4612 ;;;### (autoloads (tcl-help-on-word inferior-tcl tcl-mode) "tcl" "modes/tcl.el")
|
|
4613
|
|
4614 (autoload 'tcl-mode "tcl" "\
|
|
4615 Major mode for editing Tcl code.
|
|
4616 Expression and list commands understand all Tcl brackets.
|
|
4617 Tab indents for Tcl code.
|
|
4618 Paragraphs are separated by blank lines only.
|
|
4619 Delete converts tabs to spaces as it moves back.
|
|
4620
|
|
4621 Variables controlling indentation style:
|
|
4622 tcl-indent-level
|
|
4623 Indentation of Tcl statements within surrounding block.
|
|
4624 tcl-continued-indent-level
|
|
4625 Indentation of continuation line relative to first line of command.
|
|
4626
|
|
4627 Variables controlling user interaction with mode (see variable
|
|
4628 documentation for details):
|
|
4629 tcl-tab-always-indent
|
|
4630 Controls action of TAB key.
|
|
4631 tcl-auto-newline
|
|
4632 Non-nil means automatically newline before and after braces, brackets,
|
|
4633 and semicolons inserted in Tcl code.
|
|
4634 tcl-electric-hash-style
|
|
4635 Controls action of `#' key.
|
|
4636 tcl-use-hairy-comment-detector
|
|
4637 If t, use more complicated, but slower, comment detector.
|
|
4638 This variable is only used in GNU Emacs 19.
|
|
4639 tcl-use-smart-word-finder
|
|
4640 If not nil, use a smarter, Tcl-specific way to find the current
|
|
4641 word when looking up help on a Tcl command.
|
|
4642
|
|
4643 Turning on Tcl mode calls the value of the variable `tcl-mode-hook'
|
|
4644 with no args, if that value is non-nil. Read the documentation for
|
|
4645 `tcl-mode-hook' to see what kinds of interesting hook functions
|
|
4646 already exist.
|
|
4647
|
|
4648 Commands:
|
|
4649 \\{tcl-mode-map}" t nil)
|
|
4650
|
|
4651 (autoload 'inferior-tcl "tcl" "\
|
|
4652 Run inferior Tcl process.
|
|
4653 Prefix arg means enter program name interactively.
|
|
4654 See documentation for function `inferior-tcl-mode' for more information." t nil)
|
|
4655
|
|
4656 (autoload 'tcl-help-on-word "tcl" "\
|
|
4657 Get help on Tcl command. Default is word at point.
|
|
4658 Prefix argument means invert sense of `tcl-use-smart-word-finder'." t nil)
|
|
4659
|
|
4660 ;;;***
|
|
4661
|
|
4662 ;;;### (autoloads (latex-mode plain-tex-mode tex-mode) "tex-mode" "modes/tex-mode.el")
|
|
4663
|
|
4664 (autoload 'tex-mode "tex-mode" "\
|
|
4665 Major mode for editing files of input for TeX, LaTeX, or SliTeX.
|
|
4666 Tries to determine (by looking at the beginning of the file) whether
|
|
4667 this file is for plain TeX, LaTeX, or SliTeX and calls plain-tex-mode,
|
|
4668 latex-mode, or slitex-mode, respectively. If it cannot be determined,
|
|
4669 such as if there are no commands in the file, the value of tex-default-mode
|
|
4670 is used." t nil)
|
|
4671
|
|
4672 (fset 'TeX-mode 'tex-mode)
|
|
4673
|
|
4674 (fset 'LaTeX-mode 'latex-mode)
|
|
4675
|
|
4676 (autoload 'plain-tex-mode "tex-mode" "\
|
|
4677 Major mode for editing files of input for plain TeX.
|
|
4678 Makes $ and } display the characters they match.
|
|
4679 Makes \" insert `` when it seems to be the beginning of a quotation,
|
|
4680 and '' when it appears to be the end; it inserts \" only after a \\.
|
|
4681
|
|
4682 Use \\[tex-region] to run TeX on the current region, plus a \"header\"
|
|
4683 copied from the top of the file (containing macro definitions, etc.),
|
|
4684 running TeX under a special subshell. \\[tex-buffer] does the whole buffer.
|
|
4685 \\[tex-file] saves the buffer and then processes the file.
|
|
4686 \\[tex-print] prints the .dvi file made by any of these.
|
|
4687 \\[tex-view] previews the .dvi file made by any of these.
|
|
4688 \\[tex-bibtex-file] runs bibtex on the file of the current buffer.
|
|
4689
|
|
4690 Use \\[validate-tex-buffer] to check buffer for paragraphs containing
|
|
4691 mismatched $'s or braces.
|
|
4692
|
|
4693 Special commands:
|
|
4694 \\{tex-mode-map}
|
|
4695
|
|
4696 Mode variables:
|
|
4697 tex-run-command
|
|
4698 Command string used by \\[tex-region] or \\[tex-buffer].
|
|
4699 tex-directory
|
|
4700 Directory in which to create temporary files for TeX jobs
|
|
4701 run by \\[tex-region] or \\[tex-buffer].
|
|
4702 tex-dvi-print-command
|
|
4703 Command string used by \\[tex-print] to print a .dvi file.
|
|
4704 tex-alt-dvi-print-command
|
|
4705 Alternative command string used by \\[tex-print] (when given a prefix
|
|
4706 argument) to print a .dvi file.
|
|
4707 tex-dvi-view-command
|
|
4708 Command string used by \\[tex-view] to preview a .dvi file.
|
|
4709 tex-show-queue-command
|
|
4710 Command string used by \\[tex-show-print-queue] to show the print
|
|
4711 queue that \\[tex-print] put your job on.
|
|
4712
|
|
4713 Entering Plain-tex mode calls the value of text-mode-hook, then the value of
|
|
4714 tex-mode-hook, and then the value of plain-tex-mode-hook. When the special
|
|
4715 subshell is initiated, the value of tex-shell-hook is called." t nil)
|
|
4716
|
|
4717 (fset 'plain-TeX-mode 'plain-tex-mode)
|
|
4718
|
|
4719 (autoload 'latex-mode "tex-mode" "\
|
|
4720 Major mode for editing files of input for LaTeX.
|
|
4721 Makes $ and } display the characters they match.
|
|
4722 Makes \" insert `` when it seems to be the beginning of a quotation,
|
|
4723 and '' when it appears to be the end; it inserts \" only after a \\.
|
|
4724
|
|
4725 Use \\[tex-region] to run LaTeX on the current region, plus the preamble
|
|
4726 copied from the top of the file (containing \\documentstyle, etc.),
|
|
4727 running LaTeX under a special subshell. \\[tex-buffer] does the whole buffer.
|
|
4728 \\[tex-file] saves the buffer and then processes the file.
|
|
4729 \\[tex-print] prints the .dvi file made by any of these.
|
|
4730 \\[tex-view] previews the .dvi file made by any of these.
|
|
4731 \\[tex-bibtex-file] runs bibtex on the file of the current buffer.
|
|
4732
|
|
4733 Use \\[validate-tex-buffer] to check buffer for paragraphs containing
|
|
4734 mismatched $'s or braces.
|
|
4735
|
|
4736 Special commands:
|
|
4737 \\{tex-mode-map}
|
|
4738
|
|
4739 Mode variables:
|
|
4740 latex-run-command
|
|
4741 Command string used by \\[tex-region] or \\[tex-buffer].
|
|
4742 tex-directory
|
|
4743 Directory in which to create temporary files for LaTeX jobs
|
|
4744 run by \\[tex-region] or \\[tex-buffer].
|
|
4745 tex-dvi-print-command
|
|
4746 Command string used by \\[tex-print] to print a .dvi file.
|
|
4747 tex-alt-dvi-print-command
|
|
4748 Alternative command string used by \\[tex-print] (when given a prefix
|
|
4749 argument) to print a .dvi file.
|
|
4750 tex-dvi-view-command
|
|
4751 Command string used by \\[tex-view] to preview a .dvi file.
|
|
4752 tex-show-queue-command
|
|
4753 Command string used by \\[tex-show-print-queue] to show the print
|
|
4754 queue that \\[tex-print] put your job on.
|
|
4755
|
|
4756 Entering Latex mode calls the value of text-mode-hook, then the value of
|
|
4757 tex-mode-hook, and then the value of latex-mode-hook. When the special
|
|
4758 subshell is initiated, the value of tex-shell-hook is called." t nil)
|
|
4759
|
|
4760 ;;;***
|
|
4761
|
|
4762 ;;;### (autoloads (texinfo-mode) "texinfo" "modes/texinfo.el")
|
|
4763
|
|
4764 (autoload 'texinfo-mode "texinfo" "\
|
|
4765 Major mode for editing Texinfo files.
|
|
4766
|
|
4767 It has these extra commands:
|
|
4768 \\{texinfo-mode-map}
|
|
4769
|
|
4770 These are files that are used as input for TeX to make printed manuals
|
|
4771 and also to be turned into Info files with \\[makeinfo-buffer] or
|
|
4772 the `makeinfo' program. These files must be written in a very restricted and
|
|
4773 modified version of TeX input format.
|
|
4774
|
|
4775 Editing commands are like text-mode except that the syntax table is
|
|
4776 set up so expression commands skip Texinfo bracket groups. To see
|
|
4777 what the Info version of a region of the Texinfo file will look like,
|
|
4778 use \\[makeinfo-region], which runs `makeinfo' on the current region.
|
|
4779
|
|
4780 You can show the structure of a Texinfo file with \\[texinfo-show-structure].
|
|
4781 This command shows the structure of a Texinfo file by listing the
|
|
4782 lines with the @-sign commands for @chapter, @section, and the like.
|
|
4783 These lines are displayed in another window called the *Occur* window.
|
|
4784 In that window, you can position the cursor over one of the lines and
|
|
4785 use \\[occur-mode-goto-occurrence], to jump to the corresponding spot
|
|
4786 in the Texinfo file.
|
|
4787
|
|
4788 In addition, Texinfo mode provides commands that insert various
|
|
4789 frequently used @-sign commands into the buffer. You can use these
|
|
4790 commands to save keystrokes. And you can insert balanced braces with
|
|
4791 \\[texinfo-insert-braces] and later use the command \\[up-list] to
|
|
4792 move forward past the closing brace.
|
|
4793
|
|
4794 Also, Texinfo mode provides functions for automatically creating or
|
|
4795 updating menus and node pointers. These functions
|
|
4796
|
|
4797 * insert the `Next', `Previous' and `Up' pointers of a node,
|
|
4798 * insert or update the menu for a section, and
|
|
4799 * create a master menu for a Texinfo source file.
|
|
4800
|
|
4801 Here are the functions:
|
|
4802
|
|
4803 texinfo-update-node \\[texinfo-update-node]
|
|
4804 texinfo-every-node-update \\[texinfo-every-node-update]
|
|
4805 texinfo-sequential-node-update
|
|
4806
|
|
4807 texinfo-make-menu \\[texinfo-make-menu]
|
|
4808 texinfo-all-menus-update \\[texinfo-all-menus-update]
|
|
4809 texinfo-master-menu
|
|
4810
|
|
4811 texinfo-indent-menu-description (column &optional region-p)
|
|
4812
|
|
4813 The `texinfo-column-for-description' variable specifies the column to
|
|
4814 which menu descriptions are indented.
|
|
4815
|
|
4816 Passed an argument (a prefix argument, if interactive), the
|
|
4817 `texinfo-update-node' and `texinfo-make-menu' functions do their jobs
|
|
4818 in the region.
|
|
4819
|
|
4820 To use the updating commands, you must structure your Texinfo file
|
|
4821 hierarchically, such that each `@node' line, with the exception of the
|
|
4822 Top node, is accompanied by some kind of section line, such as an
|
|
4823 `@chapter' or `@section' line.
|
|
4824
|
|
4825 If the file has a `top' node, it must be called `top' or `Top' and
|
|
4826 be the first node in the file.
|
|
4827
|
|
4828 Entering Texinfo mode calls the value of text-mode-hook, and then the
|
|
4829 value of texinfo-mode-hook." t nil)
|
|
4830
|
|
4831 ;;;***
|
|
4832
|
|
4833 ;;;### (autoloads (2C-split 2C-associate-buffer 2C-two-columns) "two-column" "modes/two-column.el")
|
|
4834
|
|
4835 (autoload '2C-command "two-column" () t 'keymap)
|
|
4836
|
|
4837 (autoload '2C-two-columns "two-column" "\
|
|
4838 Split current window vertically for two-column editing.
|
|
4839 When called the first time, associates a buffer with the current
|
|
4840 buffer in two-column minor mode (see \\[describe-mode] ).
|
|
4841 Runs `2C-other-buffer-hook' in the new buffer.
|
|
4842 When called again, restores the screen layout with the current buffer
|
|
4843 first and the associated buffer to it's right." t nil)
|
|
4844
|
|
4845 (autoload '2C-associate-buffer "two-column" "\
|
|
4846 Associate another buffer with this one in two-column minor mode.
|
|
4847 Can also be used to associate a just previously visited file, by
|
|
4848 accepting the proposed default buffer.
|
|
4849
|
|
4850 \(See \\[describe-mode] .)" t nil)
|
|
4851
|
|
4852 (autoload '2C-split "two-column" "\
|
|
4853 Split a two-column text at point, into two buffers in two-column minor mode.
|
|
4854 Point becomes the local value of `2C-window-width'. Only lines that
|
|
4855 have the ARG same preceding characters at that column get split. The
|
|
4856 ARG preceding characters without any leading whitespace become the local
|
|
4857 value for `2C-separator'. This way lines that continue across both
|
|
4858 columns remain untouched in the first buffer.
|
|
4859
|
|
4860 This function can be used with a prototype line, to set up things. You
|
|
4861 write the first line of each column and then split that line. E.g.:
|
|
4862
|
|
4863 First column's text sSs Second column's text
|
|
4864 \\___/\\
|
|
4865 / \\
|
|
4866 5 character Separator You type M-5 \\[2C-split] with the point here.
|
|
4867
|
|
4868 \(See \\[describe-mode] .)" t nil)
|
|
4869
|
|
4870 ;;;***
|
|
4871
|
22
|
4872 ;;;### (autoloads (verilog-mode) "verilog-mode" "modes/verilog-mode.el")
|
|
4873
|
|
4874 (autoload 'verilog-mode "verilog-mode" "\
|
|
4875 Major mode for editing Verilog code. \\<verilog-mode-map>
|
|
4876 NEWLINE, TAB indents for Verilog code.
|
|
4877 Delete converts tabs to spaces as it moves back.
|
|
4878 Supports highlighting.
|
|
4879
|
|
4880 Variables controlling indentation/edit style:
|
|
4881
|
|
4882 verilog-indent-level (default 3)
|
|
4883 Indentation of Verilog statements with respect to containing block.
|
|
4884 verilog-cexp-indent (default 1)
|
|
4885 Indentation of Verilog statements broken across lines.
|
|
4886 verilog-case-indent (default 2)
|
|
4887 Indentation for case statements.
|
|
4888 verilog-auto-newline (default nil)
|
|
4889 Non-nil means automatically newline after simcolons and the punctation mark
|
|
4890 after an end.
|
|
4891 verilog-auto-indent-on-newline (default t)
|
|
4892 Non-nil means automatically indent line after newline
|
|
4893 verilog-tab-always-indent (default t)
|
|
4894 Non-nil means TAB in Verilog mode should always reindent the current line,
|
|
4895 regardless of where in the line point is when the TAB command is used.
|
|
4896 verilog-indent-begin-after-if (default t)
|
|
4897 Non-nil means to indent begin statements following a preceeding
|
|
4898 if, else, while, for and repeat statements, if any. otherwise,
|
|
4899 the begin is lined up with the preceeding token. If t, you get:
|
|
4900 if (a)
|
|
4901 begin
|
|
4902 otherwise you get:
|
|
4903 if (a)
|
|
4904 begin
|
|
4905 verilog-auto-endcomments (default t)
|
|
4906 Non-nil means a comment /* ... */ is set after the ends which ends cases, tasks, functions and modules.
|
|
4907 The type and name of the object will be set between the braces.
|
|
4908 verilog-auto-lineup (default `(all))
|
|
4909 List of contexts where auto lineup of :'s or ='s should be done.
|
|
4910
|
|
4911 Turning on Verilog mode calls the value of the variable verilog-mode-hook with
|
|
4912 no args, if that value is non-nil.
|
|
4913 Other useful functions are:
|
|
4914 \\[verilog-complete-word] -complete word with appropriate possibilities (functions, verilog keywords...)
|
|
4915 \\[verilog-comment-area] - Put marked area in a comment, fixing nested comments.
|
|
4916 \\[verilog-uncomment-area] - Uncomment an area commented with \\[verilog-comment-area].
|
|
4917 \\[verilog-insert-block] - insert begin ... end;
|
|
4918 \\[verilog-star-comment] - insert /* ... */
|
|
4919 \\[verilog-mark-defun] - Mark function.
|
|
4920 \\[verilog-beg-of-defun] - Move to beginning of current function.
|
|
4921 \\[verilog-end-of-defun] - Move to end of current function.
|
|
4922 \\[verilog-label-be] - Label matching begin ... end, fork ... join and case ... endcase statements;
|
|
4923 " t nil)
|
|
4924
|
|
4925 ;;;***
|
|
4926
|
12
|
4927 ;;;### (autoloads (vhdl-mode) "vhdl-mode" "modes/vhdl-mode.el")
|
|
4928
|
|
4929 (autoload 'vhdl-mode "vhdl-mode" "\
|
|
4930 Major mode for editing VHDL code.
|
28
|
4931 vhdl-mode $Revision: 1.10 $
|
12
|
4932 To submit a problem report, enter `\\[vhdl-submit-bug-report]' from a
|
|
4933 vhdl-mode buffer. This automatically sets up a mail buffer with version
|
|
4934 information already added. You just need to add a description of the
|
|
4935 problem, including a reproducable test case and send the message.
|
|
4936
|
|
4937 Note that the details of configuring vhdl-mode will soon be moved to the
|
|
4938 accompanying texinfo manual. Until then, please read the README file
|
|
4939 that came with the vhdl-mode distribution.
|
|
4940
|
|
4941 The hook variable `vhdl-mode-hook' is run with no args, if that value is
|
|
4942 bound and has a non-nil value.
|
|
4943
|
|
4944 Key bindings:
|
|
4945 \\{vhdl-mode-map}" t nil)
|
|
4946
|
|
4947 ;;;***
|
|
4948
|
|
4949 ;;;### (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")
|
|
4950
|
|
4951 (autoload 'view-file "view-less" "\
|
|
4952 Find FILE, enter view mode. With prefix arg OTHER-P, use other window." t nil)
|
|
4953
|
|
4954 (autoload 'view-buffer "view-less" "\
|
|
4955 Switch to BUF, enter view mode. With prefix arg use other window." t nil)
|
|
4956
|
|
4957 (autoload 'view-file-other-window "view-less" "\
|
|
4958 Find FILE in other window, and enter view mode." t nil)
|
|
4959
|
|
4960 (autoload 'view-buffer-other-window "view-less" "\
|
|
4961 Switch to BUFFER in another window, and enter view mode." t nil)
|
|
4962
|
|
4963 (autoload 'view-minor-mode "view-less" "\
|
|
4964 Minor mode for viewing text, with bindings like `less'.
|
|
4965 Commands are:
|
|
4966 \\<view-minor-mode-map>
|
|
4967 0..9 prefix args
|
|
4968 - prefix minus
|
|
4969 \\[scroll-up] page forward
|
|
4970 \\[scroll-down] page back
|
|
4971 \\[view-scroll-lines-up] scroll prefix-arg lines forward, default 1.
|
|
4972 \\[view-scroll-lines-down] scroll prefix-arg lines backward, default 1.
|
|
4973 \\[view-scroll-some-lines-down] scroll prefix-arg lines backward, default 10.
|
|
4974 \\[view-scroll-some-lines-up] scroll prefix-arg lines forward, default 10.
|
|
4975 \\[what-line] print line number
|
|
4976 \\[view-mode-describe] print this help message
|
|
4977 \\[view-search-forward] regexp search, uses previous string if you just hit RET
|
|
4978 \\[view-search-backward] as above but searches backward
|
|
4979 \\[view-repeat-search] repeat last search
|
|
4980 \\[view-goto-line] goto line prefix-arg, default 1
|
|
4981 \\[view-last-windowful] goto line prefix-arg, default last line
|
|
4982 \\[view-goto-percent] goto a position by percentage
|
|
4983 \\[toggle-truncate-lines] toggle truncate-lines
|
|
4984 \\[view-file] view another file
|
|
4985 \\[view-buffer] view another buffer
|
|
4986 \\[view-cleanup-backspaces] cleanup backspace constructions
|
|
4987 \\[shell-command] execute a shell command
|
|
4988 \\[shell-command-on-region] execute a shell command with the region as input
|
|
4989 \\[view-quit] exit view-mode, and bury the current buffer.
|
|
4990
|
|
4991 If invoked with the optional (prefix) arg non-nil, view-mode cleans up
|
|
4992 backspace constructions.
|
|
4993
|
|
4994 More precisely:
|
|
4995 \\{view-minor-mode-map}" t nil)
|
|
4996
|
|
4997 (autoload 'view-mode "view-less" "\
|
|
4998 View the current buffer using view-minor-mode. This exists to be 99.9%
|
|
4999 compatible with the implementations of `view-mode' in view.el and older
|
|
5000 versions of view-less.el." t nil)
|
|
5001
|
|
5002 (autoload 'view-major-mode "view-less" "\
|
|
5003 View the current buffer using view-mode, as a major mode.
|
|
5004 This function has a nonstandard name because `view-mode' is wrongly
|
|
5005 named but is like this for compatibility reasons." t nil)
|
|
5006
|
|
5007 (autoload 'auto-view-mode "view-less" "\
|
|
5008 If the file of the current buffer is not writable, call view-mode.
|
|
5009 This is meant to be added to `find-file-hooks'." nil nil)
|
|
5010
|
|
5011 ;;;***
|
|
5012
|
|
5013 ;;;### (autoloads (vrml-mode) "vrml-mode" "modes/vrml-mode.el")
|
|
5014
|
|
5015 (autoload 'vrml-mode "vrml-mode" "\
|
|
5016 Major mode for editing VRML code.
|
|
5017 Expression and list commands understand all VRML brackets.
|
|
5018 Tab indents for VRML code.
|
|
5019 Paragraphs are separated by blank lines only.
|
|
5020 Delete converts tabs to spaces as it moves back.
|
|
5021
|
|
5022 Variables controlling indentation style:
|
|
5023 vrml-indent-level
|
|
5024 Indentation of VRML statements within surrounding block.
|
|
5025
|
|
5026 Variables controlling user interaction with mode (see variable
|
|
5027 documentation for details):
|
|
5028 vrml-tab-always-indent
|
|
5029 Controls action of TAB key.
|
|
5030 vrml-auto-newline
|
|
5031 Non-nil means automatically newline before and after braces
|
|
5032 inserted in VRML code.
|
|
5033
|
|
5034 Turning on VRML mode calls the value of the variable `vrml-mode-hook'
|
|
5035 with no args, if that value is non-nil. Read the documentation for
|
|
5036 `vrml-mode-hook' to see what kinds of interesting hook functions
|
|
5037 already exist.
|
|
5038
|
|
5039 Commands:
|
|
5040 \\{vrml-mode-map}" t nil)
|
|
5041
|
|
5042 ;;;***
|
|
5043
|
|
5044 ;;;### (autoloads (xpm-mode) "xpm-mode" "modes/xpm-mode.el")
|
|
5045
|
|
5046 (autoload 'xpm-mode "xpm-mode" "\
|
|
5047 Treat the current buffer as an xpm file and colorize it.
|
|
5048
|
|
5049 Shift-button-1 lets you paint by dragging the mouse. Shift-button-1 on a
|
|
5050 color definition line will change the current painting color to that line's
|
|
5051 value.
|
|
5052
|
|
5053 Characters inserted from the keyboard will NOT be colored properly yet.
|
|
5054 Use the mouse, or do xpm-init (\\[xpm-init]) after making changes.
|
|
5055
|
|
5056 \\[xpm-add-color] Add a new color, prompting for character and value
|
|
5057 \\[xpm-show-image] show the current image at the top of the buffer
|
|
5058 \\[xpm-parse-color] parse the current line's color definition and add
|
|
5059 it to the color table. Provided as a means of changing colors.
|
|
5060 XPM minor mode bindings:
|
|
5061 \\{xpm-mode-map}" t nil)
|
|
5062
|
|
5063 ;;;***
|
|
5064
|
|
5065 ;;;### (autoloads (br-env-load br-env-browse) "br-env" "oobr/br-env.el")
|
|
5066
|
|
5067 (autoload 'br-env-browse "br-env" "\
|
|
5068 Invoke the OO-Browser on an existing or to be created Environment ENV-FILE." t nil)
|
|
5069
|
|
5070 (autoload 'br-env-load "br-env" "\
|
|
5071 Load browser Environment or spec from optional ENV-FILE or 'br-env-file'.
|
|
5072 Non-nil PROMPT means prompt user before building tables.
|
|
5073 Non-nil NO-BUILD means skip build of Environment entirely.
|
|
5074 Return t if load is successful, else nil." t nil)
|
|
5075
|
|
5076 ;;;***
|
|
5077
|
|
5078 ;;;### (autoloads (oo-browser) "br-start" "oobr/br-start.el")
|
|
5079
|
|
5080 (fset 'oobr 'oo-browser)
|
|
5081
|
|
5082 (autoload 'oo-browser "br-start" "\
|
|
5083 Prompt for an Environment and language over which to run the OO-Browser.
|
|
5084 Optional prefix argument SAME-ENV-FLAG means browse the current Environment,
|
|
5085 if any, without prompting." t nil)
|
|
5086
|
|
5087 ;;;***
|
|
5088
|
|
5089 ;;;### (autoloads (br-to-from-viewer br-add-class-file) "br" "oobr/br.el")
|
|
5090
|
|
5091 (autoload 'br-add-class-file "br" "\
|
|
5092 Add a file of classes to the current Environment.
|
|
5093 Interactively or when optional CLASS-PATH is nil, CLASS-PATH defaults to the
|
|
5094 current buffer file pathname. If optional LIB-TABLE-P is non-nil, add to
|
|
5095 Library Environment, otherwise add to System Environment. If optional
|
|
5096 SAVE-FILE is t, the Environment is then stored to the filename given by
|
24
|
5097 `br-env-file'. If SAVE-FILE is non-nil and not t, its string value is used
|
12
|
5098 as the file to which to save the Environment." t nil)
|
|
5099
|
|
5100 (autoload 'br-to-from-viewer "br" "\
|
|
5101 Move point to viewer window or back to last recorded listing window." t nil)
|
|
5102
|
|
5103 ;;;***
|
|
5104
|
|
5105 ;;;### (autoloads (c++-browse) "c++-browse" "oobr/c++-browse.el")
|
|
5106
|
|
5107 (autoload 'c++-browse "c++-browse" "\
|
|
5108 Invoke the C++ OO-Browser.
|
|
5109 This allows browsing through C++ library and system class hierarchies. With
|
|
5110 an optional non-nil prefix argument ENV-FILE, prompt for Environment file to
|
|
5111 use. Alternatively, a string value of ENV-FILE is used as the Environment
|
|
5112 file name. See also the file \"br-help\"." t nil)
|
|
5113
|
|
5114 ;;;***
|
|
5115
|
|
5116 ;;;### (autoloads (clos-browse) "clos-brows" "oobr/clos-brows.el")
|
|
5117
|
|
5118 (autoload 'clos-browse "clos-brows" "\
|
|
5119 Invoke the CLOS OO-Browser.
|
|
5120 This allows browsing through CLOS library and system class hierarchies. With
|
|
5121 an optional non-nil prefix argument ENV-FILE, prompt for Environment file
|
|
5122 to use. Alternatively, a string value of ENV-FILE is used as the
|
|
5123 Environment file name. See also the file \"br-help\"." t nil)
|
|
5124
|
|
5125 ;;;***
|
|
5126
|
|
5127 ;;;### (autoloads (eif-browse) "eif-browse" "oobr/eif-browse.el")
|
|
5128
|
|
5129 (autoload 'eif-browse "eif-browse" "\
|
|
5130 Invoke the Eiffel OO-Browser.
|
|
5131 This allows browsing through Eiffel library and system class hierarchies.
|
|
5132 With an optional prefix arg ENV-FILE equal to t, prompt for Environment file
|
|
5133 to use. Alternatively, a string value of ENV-FILE is used as the Environment
|
|
5134 file name. See also the file \"br-help\"." t nil)
|
|
5135
|
|
5136 ;;;***
|
|
5137
|
|
5138 ;;;### (autoloads (info-browse) "info-brows" "oobr/info-brows.el")
|
|
5139
|
|
5140 (autoload 'info-browse "info-brows" "\
|
|
5141 Invoke the Info OO-Browser.
|
|
5142 This allows browsing through Info library and system class hierarchies. With
|
|
5143 an optional non-nil prefix argument ENV-FILE, prompt for Environment file to
|
|
5144 use. Alternatively, a string value of ENV-FILE is used as the Environment
|
|
5145 file name. See also the file \"br-help\"." t nil)
|
|
5146
|
|
5147 ;;;***
|
|
5148
|
|
5149 ;;;### (autoloads (java-browse) "java-brows" "oobr/java-brows.el")
|
|
5150
|
|
5151 (autoload 'java-browse "java-brows" "\
|
|
5152 Invoke the Java OO-Browser.
|
|
5153 This allows browsing through Java library and system class hierarchies. With
|
|
5154 an optional non-nil prefix argument ENV-FILE, prompt for Environment file to
|
|
5155 use. Alternatively, a string value of ENV-FILE is used as the Environment
|
|
5156 file name. See also the file \"br-help\"." t nil)
|
|
5157
|
|
5158 ;;;***
|
|
5159
|
|
5160 ;;;### (autoloads (objc-browse) "objc-brows" "oobr/objc-brows.el")
|
|
5161
|
|
5162 (autoload 'objc-browse "objc-brows" "\
|
|
5163 Invoke the Objective-C OO-Browser.
|
|
5164 This allows browsing through Objective-C library and system class
|
|
5165 hierarchies. With an optional non-nil prefix argument ENV-FILE, prompt for
|
|
5166 Environment file to use. Alternatively, a string value of ENV-FILE is used
|
|
5167 as the Environment file name. See also the file \"br-help\"." t nil)
|
|
5168
|
|
5169 ;;;***
|
|
5170
|
|
5171 ;;;### (autoloads (python-browse) "python-browse" "oobr/python-browse.el")
|
|
5172
|
|
5173 (autoload 'python-browse "python-browse" "\
|
|
5174 Invoke the Python OO-Browser.
|
|
5175 This allows browsing through Python library and system class hierarchies.
|
|
5176 With an optional non-nil prefix argument ENV-FILE, prompt for Environment
|
|
5177 file to use. Alternatively, a string value of ENV-FILE is used as the
|
|
5178 Environment file name. See also the file \"br-help\"." t nil)
|
|
5179
|
|
5180 ;;;***
|
|
5181
|
|
5182 ;;;### (autoloads (smt-browse) "smt-browse" "oobr/smt-browse.el")
|
|
5183
|
|
5184 (autoload 'smt-browse "smt-browse" "\
|
|
5185 Invoke the Smalltalk OO-Browser.
|
|
5186 This allows browsing through Smalltalk library and system class hierarchies.
|
|
5187 With an optional non-nil prefix argument ENV-FILE, prompt for Environment
|
|
5188 file to use. Alternatively, a string value of ENV-FILE is used as the
|
|
5189 Environment file name. See also the file \"br-help\"." t nil)
|
|
5190
|
|
5191 ;;;***
|
|
5192
|
|
5193 ;;;### (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")
|
|
5194
|
|
5195 (defvar change-log-default-name nil "\
|
|
5196 *Name of a change log file for \\[add-change-log-entry].")
|
|
5197
|
|
5198 (defvar add-log-current-defun-function nil "\
|
|
5199 *If non-nil, function to guess name of current function from surrounding text.
|
|
5200 \\[add-change-log-entry] calls this function (if nil, `add-log-current-defun'
|
|
5201 instead) with no arguments. It returns a string or nil if it cannot guess.")
|
|
5202
|
|
5203 (defvar add-log-full-name nil "\
|
|
5204 *Full name of user, for inclusion in ChangeLog daily headers.
|
|
5205 This defaults to the value returned by the `user-full-name' function.")
|
|
5206
|
|
5207 (defvar add-log-mailing-address nil "\
|
|
5208 *Electronic mail address of user, for inclusion in ChangeLog daily headers.
|
|
5209 This defaults to the value of `user-mail-address'.")
|
|
5210
|
|
5211 (autoload 'prompt-for-change-log-name "add-log" "\
|
|
5212 Prompt for a change log name." nil nil)
|
|
5213
|
|
5214 (autoload 'find-change-log "add-log" "\
|
|
5215 Find a change log file for \\[add-change-log-entry] and return the name.
|
|
5216
|
|
5217 Optional arg FILE-NAME specifies the file to use.
|
|
5218 If FILE-NAME is nil, use the value of `change-log-default-name'.
|
|
5219 If 'change-log-default-name' is nil, behave as though it were 'ChangeLog'
|
|
5220 \(or whatever we use on this operating system).
|
|
5221
|
|
5222 If 'change-log-default-name' contains a leading directory component, then
|
|
5223 simply find it in the current directory. Otherwise, search in the current
|
|
5224 directory and its successive parents for a file so named.
|
|
5225
|
|
5226 Once a file is found, `change-log-default-name' is set locally in the
|
|
5227 current buffer to the complete file name." nil nil)
|
|
5228
|
|
5229 (autoload 'add-change-log-entry "add-log" "\
|
|
5230 Find change log file and add an entry for today.
|
|
5231 Optional arg (interactive prefix) non-nil means prompt for user name and site.
|
|
5232 Second arg is file name of change log. If nil, uses `change-log-default-name'.
|
|
5233 Third arg OTHER-WINDOW non-nil means visit in other window.
|
|
5234 Fourth arg NEW-ENTRY non-nil means always create a new entry at the front;
|
|
5235 never append to an existing entry." t nil)
|
|
5236
|
|
5237 (autoload 'add-change-log-entry-other-window "add-log" "\
|
|
5238 Find change log file in other window and add an entry for today.
|
|
5239 Optional arg (interactive prefix) non-nil means prompt for user name and site.
|
|
5240 Second arg is file name of change log. If nil, uses `change-log-default-name'." t nil)
|
|
5241
|
|
5242 (define-key ctl-x-4-map "a" 'add-change-log-entry-other-window)
|
|
5243
|
|
5244 (autoload 'change-log-mode "add-log" "\
|
|
5245 Major mode for editing change logs; like Indented Text Mode.
|
|
5246 Prevents numeric backups and sets `left-margin' to 8 and `fill-column' to 74.
|
|
5247 New log entries are usually made with \\[add-change-log-entry] or \\[add-change-log-entry-other-window].
|
|
5248 Each entry behaves as a paragraph, and the entries for one day as a page.
|
|
5249 Runs `change-log-mode-hook'." t nil)
|
|
5250
|
|
5251 (autoload 'add-log-current-defun "add-log" "\
|
|
5252 Return name of function definition point is in, or nil.
|
|
5253
|
|
5254 Understands C, Lisp, LaTeX (\"functions\" are chapters, sections, ...),
|
|
5255 Texinfo (@node titles), Perl, and Fortran.
|
|
5256
|
|
5257 Other modes are handled by a heuristic that looks in the 10K before
|
|
5258 point for uppercase headings starting in the first column or
|
|
5259 identifiers followed by `:' or `=', see variable
|
|
5260 `add-log-current-defun-header-regexp'.
|
|
5261
|
|
5262 Has a preference of looking backwards." nil nil)
|
|
5263
|
|
5264 ;;;***
|
|
5265
|
|
5266 ;;;### (autoloads (apropos-documentation apropos-value apropos apropos-command) "apropos" "packages/apropos.el")
|
|
5267
|
|
5268 (fset 'command-apropos 'apropos-command)
|
|
5269
|
|
5270 (autoload 'apropos-command "apropos" "\
|
|
5271 Shows commands (interactively callable functions) that match REGEXP.
|
|
5272 With optional prefix ARG or if `apropos-do-all' is non-nil, also show
|
|
5273 variables." t nil)
|
|
5274
|
|
5275 (autoload 'apropos "apropos" "\
|
|
5276 Show all bound symbols whose names match REGEXP.
|
|
5277 With optional prefix ARG or if `apropos-do-all' is non-nil, also show unbound
|
|
5278 symbols and key bindings, which is a little more time-consuming.
|
|
5279 Returns list of symbols and documentation found." t nil)
|
|
5280
|
|
5281 (autoload 'apropos-value "apropos" "\
|
|
5282 Show all symbols whose value's printed image matches REGEXP.
|
|
5283 With optional prefix ARG or if `apropos-do-all' is non-nil, also looks
|
|
5284 at the function and at the names and values of properties.
|
|
5285 Returns list of symbols and values found." t nil)
|
|
5286
|
|
5287 (autoload 'apropos-documentation "apropos" "\
|
|
5288 Show symbols whose documentation contain matches for REGEXP.
|
|
5289 With optional prefix ARG or if `apropos-do-all' is non-nil, also use
|
|
5290 documentation that is not stored in the documentation file and show key
|
|
5291 bindings.
|
|
5292 Returns list of symbols and documentation found." t nil)
|
|
5293
|
|
5294 ;;;***
|
|
5295
|
|
5296 ;;;### (autoloads (define-auto-insert auto-insert) "autoinsert" "packages/autoinsert.el")
|
|
5297
|
|
5298 (autoload 'auto-insert "autoinsert" "\
|
|
5299 Insert default contents into a new file if `auto-insert' is non-nil.
|
|
5300 Matches the visited file name against the elements of `auto-insert-alist'." t nil)
|
|
5301
|
|
5302 (autoload 'define-auto-insert "autoinsert" "\
|
|
5303 Associate CONDITION with (additional) ACTION in `auto-insert-alist'.
|
|
5304 Optional AFTER means to insert action after all existing actions for CONDITION,
|
|
5305 or if CONDITION had no actions, after all other CONDITIONs." nil nil)
|
|
5306
|
|
5307 ;;;***
|
|
5308
|
|
5309 ;;;### (autoloads (mouse-avoidance-mode) "avoid" "packages/avoid.el")
|
|
5310
|
14
|
5311 (defvar mouse-avoidance-mode nil "\
|
|
5312 Value is t or a symbol if the mouse pointer should avoid the cursor.
|
|
5313 See function `mouse-avoidance-mode' for possible values. Changing this
|
|
5314 variable is NOT the recommended way to change modes; use that function
|
|
5315 instead.")
|
|
5316
|
12
|
5317 (autoload 'mouse-avoidance-mode "avoid" "\
|
|
5318 Set cursor avoidance mode to MODE.
|
|
5319 MODE should be one of the symbols `banish', `exile', `jump', `animate',
|
|
5320 `cat-and-mouse', `proteus', or `none'.
|
|
5321
|
|
5322 If MODE is nil, toggle mouse avoidance between `none` and `banish'
|
|
5323 modes. Positive numbers and symbols other than the above are treated
|
|
5324 as equivalent to `banish'; negative numbers and `-' are equivalent to `none'.
|
|
5325
|
|
5326 Effects of the different modes:
|
|
5327 * banish: Move the mouse to the upper-right corner on any keypress.
|
|
5328 * exile: Move the mouse to the corner only if the cursor gets too close,
|
|
5329 and allow it to return once the cursor is out of the way.
|
|
5330 * jump: If the cursor gets too close to the mouse, displace the mouse
|
|
5331 a random distance & direction.
|
|
5332 * animate: As `jump', but shows steps along the way for illusion of motion.
|
|
5333 * cat-and-mouse: Same as `animate'.
|
|
5334 * proteus: As `animate', but changes the shape of the mouse pointer too.
|
|
5335
|
|
5336 Whenever the mouse is moved, the frame is also raised.
|
|
5337
|
|
5338 \(see `mouse-avoidance-threshold' for definition of \"too close\",
|
|
5339 and `mouse-avoidance-nudge-dist' and `mouse-avoidance-nudge-var' for
|
|
5340 definition of \"random distance\".)" t nil)
|
|
5341
|
|
5342 (add-minor-mode 'mouse-avoidance-mode " Avoid")
|
|
5343
|
|
5344 ;;;***
|
|
5345
|
|
5346 ;;;### (autoloads (blink-cursor-mode) "blink-cursor" "packages/blink-cursor.el")
|
|
5347
|
|
5348 (autoload 'blink-cursor-mode "blink-cursor" "\
|
|
5349 Enable or disable a blinking cursor.
|
|
5350 If TIMEOUT is nil, toggle on or off.
|
|
5351 If TIMEOUT is t, enable with the previous timeout value.
|
|
5352 If TIMEOUT is 0, disable.
|
|
5353 If TIMEOUT is greater than 0, then the cursor will blink once
|
|
5354 each TIMEOUT secs (can be a float)." t nil)
|
|
5355
|
|
5356 ;;;***
|
|
5357
|
|
5358 ;;;### (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")
|
|
5359
|
|
5360 (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)))
|
|
5361
|
|
5362 (defvar bookmark-map nil "\
|
|
5363 Keymap containing bindings to bookmark functions.
|
|
5364 It is not bound to any key by default: to bind it
|
|
5365 so that you have a bookmark prefix, just use `global-set-key' and bind a
|
|
5366 key of your choice to `bookmark-map'. All interactive bookmark
|
|
5367 functions have a binding in this keymap.")
|
|
5368
|
|
5369 (define-prefix-command 'bookmark-map)
|
|
5370
|
|
5371 (define-key bookmark-map "x" 'bookmark-set)
|
|
5372
|
|
5373 (define-key bookmark-map "m" 'bookmark-set)
|
|
5374
|
|
5375 (define-key bookmark-map "j" 'bookmark-jump)
|
|
5376
|
|
5377 (define-key bookmark-map "g" 'bookmark-jump)
|
|
5378
|
|
5379 (define-key bookmark-map "i" 'bookmark-insert)
|
|
5380
|
|
5381 (define-key bookmark-map "e" 'edit-bookmarks)
|
|
5382
|
|
5383 (define-key bookmark-map "f" 'bookmark-insert-location)
|
|
5384
|
|
5385 (define-key bookmark-map "r" 'bookmark-rename)
|
|
5386
|
|
5387 (define-key bookmark-map "d" 'bookmark-delete)
|
|
5388
|
|
5389 (define-key bookmark-map "l" 'bookmark-load)
|
|
5390
|
|
5391 (define-key bookmark-map "w" 'bookmark-write)
|
|
5392
|
|
5393 (define-key bookmark-map "s" 'bookmark-save)
|
|
5394
|
|
5395 (autoload 'bookmark-set "bookmark" "\
|
|
5396 Set a bookmark named NAME inside a file.
|
|
5397 If name is nil, then the user will be prompted.
|
|
5398 With prefix arg, will not overwrite a bookmark that has the same name
|
|
5399 as NAME if such a bookmark already exists, but instead will \"push\"
|
|
5400 the new bookmark onto the bookmark alist. Thus the most recently set
|
|
5401 bookmark with name NAME would be the one in effect at any given time,
|
|
5402 but the others are still there, should you decide to delete the most
|
|
5403 recent one.
|
|
5404
|
|
5405 To yank words from the text of the buffer and use them as part of the
|
|
5406 bookmark name, type C-w while setting a bookmark. Successive C-w's
|
|
5407 yank successive words.
|
|
5408
|
|
5409 Typing C-u inserts the name of the last bookmark used in the buffer
|
|
5410 \(as an aid in using a single bookmark name to track your progress
|
|
5411 through a large file). If no bookmark was used, then C-u inserts the
|
|
5412 name of the file being visited.
|
|
5413
|
|
5414 Use \\[bookmark-delete] to remove bookmarks (you give it a name,
|
|
5415 and it removes only the first instance of a bookmark with that name from
|
|
5416 the list of bookmarks.)" t nil)
|
|
5417
|
|
5418 (autoload 'bookmark-jump "bookmark" "\
|
|
5419 Jump to bookmark BOOKMARK (a point in some file).
|
|
5420 You may have a problem using this function if the value of variable
|
|
5421 `bookmark-alist' is nil. If that happens, you need to load in some
|
|
5422 bookmarks. See help on function `bookmark-load' for more about
|
|
5423 this.
|
|
5424
|
|
5425 If the file pointed to by BOOKMARK no longer exists, you will be asked
|
|
5426 if you wish to give the bookmark a new location, and bookmark-jump
|
|
5427 will then jump to the new location, as well as recording it in place
|
|
5428 of the old one in the permanent bookmark record." t nil)
|
|
5429
|
|
5430 (autoload 'bookmark-relocate "bookmark" "\
|
|
5431 Relocate BOOKMARK -- prompts for a filename, and makes an already
|
|
5432 existing bookmark point to that file, instead of the one it used to
|
|
5433 point at. Useful when a file has been renamed after a bookmark was
|
|
5434 set in it." t nil)
|
|
5435
|
|
5436 (autoload 'bookmark-insert-location "bookmark" "\
|
|
5437 Insert the name of the file associated with BOOKMARK.
|
|
5438 Optional second arg NO-HISTORY means don't record this in the
|
|
5439 minibuffer history list `bookmark-history'." t nil)
|
|
5440
|
|
5441 (autoload 'bookmark-rename "bookmark" "\
|
|
5442 Change the name of OLD bookmark to NEW name. If called from
|
|
5443 keyboard, prompts for OLD and NEW. If called from menubar, OLD is
|
|
5444 selected from a menu, and prompts for NEW.
|
|
5445
|
|
5446 If called from Lisp, prompts for NEW if only OLD was passed as an
|
|
5447 argument. If called with two strings, then no prompting is done. You
|
|
5448 must pass at least OLD when calling from Lisp.
|
|
5449
|
|
5450 While you are entering the new name, consecutive C-w's insert
|
|
5451 consectutive words from the text of the buffer into the new bookmark
|
|
5452 name." t nil)
|
|
5453
|
|
5454 (autoload 'bookmark-insert "bookmark" "\
|
|
5455 Insert the text of the file pointed to by bookmark BOOKMARK.
|
|
5456 You may have a problem using this function if the value of variable
|
|
5457 `bookmark-alist' is nil. If that happens, you need to load in some
|
|
5458 bookmarks. See help on function `bookmark-load' for more about
|
|
5459 this." t nil)
|
|
5460
|
|
5461 (autoload 'bookmark-delete "bookmark" "\
|
|
5462 Delete BOOKMARK from the bookmark list.
|
|
5463 Removes only the first instance of a bookmark with that name. If
|
|
5464 there are one or more other bookmarks with the same name, they will
|
|
5465 not be deleted. Defaults to the \"current\" bookmark (that is, the
|
|
5466 one most recently used in this file, if any).
|
|
5467 Optional second arg BATCH means don't update the bookmark list buffer,
|
|
5468 probably because we were called from there." t nil)
|
|
5469
|
|
5470 (autoload 'bookmark-write "bookmark" "\
|
|
5471 Write bookmarks to a file (for which the user will be prompted
|
|
5472 interactively). Don't use this in Lisp programs; use bookmark-save
|
|
5473 instead." t nil)
|
|
5474
|
|
5475 (autoload 'bookmark-save "bookmark" "\
|
|
5476 Save currently defined bookmarks.
|
|
5477 Saves by default in the file defined by the variable
|
|
5478 `bookmark-default-file'. With a prefix arg, save it in file FILE
|
|
5479 \(second argument).
|
|
5480
|
|
5481 If you are calling this from Lisp, the two arguments are PREFIX-ARG
|
|
5482 and FILE, and if you just want it to write to the default file, then
|
|
5483 pass no arguments. Or pass in nil and FILE, and it will save in FILE
|
|
5484 instead. If you pass in one argument, and it is non-nil, then the
|
|
5485 user will be interactively queried for a file to save in.
|
|
5486
|
|
5487 When you want to load in the bookmarks from a file, use
|
|
5488 `bookmark-load', \\[bookmark-load]. That function will prompt you
|
|
5489 for a file, defaulting to the file defined by variable
|
|
5490 `bookmark-default-file'." t nil)
|
|
5491
|
|
5492 (autoload 'bookmark-load "bookmark" "\
|
|
5493 Load bookmarks from FILE (which must be in bookmark format).
|
|
5494 Appends loaded bookmarks to the front of the list of bookmarks. If
|
|
5495 optional second argument REVERT is non-nil, existing bookmarks are
|
|
5496 destroyed. Optional third arg NO-MSG means don't display any messages
|
|
5497 while loading.
|
|
5498
|
|
5499 If you load a file that doesn't contain a proper bookmark alist, you
|
|
5500 will corrupt Emacs's bookmark list. Generally, you should only load
|
|
5501 in files that were created with the bookmark functions in the first
|
|
5502 place. Your own personal bookmark file, `~/.emacs.bmk', is
|
|
5503 maintained automatically by Emacs; you shouldn't need to load it
|
|
5504 explicitly." t nil)
|
|
5505
|
|
5506 (autoload 'bookmark-bmenu-list "bookmark" "\
|
|
5507 Display a list of existing bookmarks.
|
|
5508 The list is displayed in a buffer named `*Bookmark List*'.
|
|
5509 The leftmost column displays a D if the bookmark is flagged for
|
|
5510 deletion, or > if it is flagged for displaying." t nil)
|
|
5511
|
|
5512 (defalias 'list-bookmarks 'bookmark-bmenu-list)
|
|
5513
|
|
5514 (defalias 'edit-bookmarks 'bookmark-bmenu-list)
|
|
5515
|
|
5516 (autoload 'bookmark-menu-insert "bookmark" "\
|
|
5517 Insert the text of the file pointed to by bookmark BOOKMARK.
|
|
5518 You may have a problem using this function if the value of variable
|
|
5519 `bookmark-alist' is nil. If that happens, you need to load in some
|
|
5520 bookmarks. See help on function `bookmark-load' for more about
|
|
5521 this.
|
|
5522
|
|
5523 Warning: this function only takes an EVENT as argument. Use the
|
|
5524 corresponding bookmark function from Lisp (the one without the
|
|
5525 \"-menu-\" in its name)." t nil)
|
|
5526
|
|
5527 (autoload 'bookmark-menu-jump "bookmark" "\
|
|
5528 Jump to bookmark BOOKMARK (a point in some file).
|
|
5529 You may have a problem using this function if the value of variable
|
|
5530 `bookmark-alist' is nil. If that happens, you need to load in some
|
|
5531 bookmarks. See help on function `bookmark-load' for more about
|
|
5532 this.
|
|
5533
|
|
5534 Warning: this function only takes an EVENT as argument. Use the
|
|
5535 corresponding bookmark function from Lisp (the one without the
|
|
5536 \"-menu-\" in its name)." t nil)
|
|
5537
|
|
5538 (autoload 'bookmark-menu-locate "bookmark" "\
|
|
5539 Insert the name of the file associated with BOOKMARK.
|
|
5540 \(This is not the same as the contents of that file).
|
|
5541
|
|
5542 Warning: this function only takes an EVENT as argument. Use the
|
|
5543 corresponding bookmark function from Lisp (the one without the
|
|
5544 \"-menu-\" in its name)." t nil)
|
|
5545
|
|
5546 (autoload 'bookmark-menu-rename "bookmark" "\
|
|
5547 Change the name of OLD-BOOKMARK to NEWNAME.
|
|
5548 If called from keyboard, prompts for OLD-BOOKMARK and NEWNAME.
|
|
5549 If called from menubar, OLD-BOOKMARK is selected from a menu, and
|
|
5550 prompts for NEWNAME.
|
|
5551 If called from Lisp, prompts for NEWNAME if only OLD-BOOKMARK was
|
|
5552 passed as an argument. If called with two strings, then no prompting
|
|
5553 is done. You must pass at least OLD-BOOKMARK when calling from Lisp.
|
|
5554
|
|
5555 While you are entering the new name, consecutive C-w's insert
|
|
5556 consectutive words from the text of the buffer into the new bookmark
|
|
5557 name.
|
|
5558
|
|
5559 Warning: this function only takes an EVENT as argument. Use the
|
|
5560 corresponding bookmark function from Lisp (the one without the
|
|
5561 \"-menu-\" in its name)." t nil)
|
|
5562
|
|
5563 (autoload 'bookmark-menu-delete "bookmark" "\
|
|
5564 Delete the bookmark named NAME from the bookmark list.
|
|
5565 Removes only the first instance of a bookmark with that name. If
|
|
5566 there are one or more other bookmarks with the same name, they will
|
|
5567 not be deleted. Defaults to the \"current\" bookmark (that is, the
|
|
5568 one most recently used in this file, if any).
|
|
5569
|
|
5570 Warning: this function only takes an EVENT as argument. Use the
|
|
5571 corresponding bookmark function from Lisp (the one without the
|
|
5572 \"-menu-\" in its name)." t nil)
|
|
5573
|
|
5574 ;;;***
|
|
5575
|
|
5576 ;;;### (autoloads nil "buff-menu" "packages/buff-menu.el")
|
|
5577
|
|
5578 (defvar list-buffers-directory nil)
|
|
5579
|
|
5580 (make-variable-buffer-local 'list-buffers-directory)
|
|
5581
|
|
5582 ;;;***
|
|
5583
|
|
5584 ;;;### (autoloads (command-history-mode list-command-history repeat-matching-complex-command) "chistory" "packages/chistory.el")
|
|
5585
|
|
5586 (autoload 'repeat-matching-complex-command "chistory" "\
|
|
5587 Edit and re-evaluate complex command with name matching PATTERN.
|
|
5588 Matching occurrences are displayed, most recent first, until you select
|
|
5589 a form for evaluation. If PATTERN is empty (or nil), every form in the
|
|
5590 command history is offered. The form is placed in the minibuffer for
|
|
5591 editing and the result is evaluated." t nil)
|
|
5592
|
|
5593 (autoload 'list-command-history "chistory" "\
|
|
5594 List history of commands typed to minibuffer.
|
|
5595 The number of commands listed is controlled by `list-command-history-max'.
|
|
5596 Calls value of `list-command-history-filter' (if non-nil) on each history
|
|
5597 element to judge if that element should be excluded from the list.
|
|
5598
|
|
5599 The buffer is left in Command History mode." t nil)
|
|
5600
|
|
5601 (autoload 'command-history-mode "chistory" "\
|
|
5602 Major mode for examining commands from `command-history'.
|
|
5603 The number of commands listed is controlled by `list-command-history-max'.
|
|
5604 The command history is filtered by `list-command-history-filter' if non-nil.
|
|
5605 Use \\<command-history-map>\\[command-history-repeat] to repeat the command on the current line.
|
|
5606
|
|
5607 Otherwise much like Emacs-Lisp Mode except that there is no self-insertion
|
|
5608 and digits provide prefix arguments. Tab does not indent.
|
|
5609 \\{command-history-map}
|
|
5610 Calls the value of `command-history-hook' if that is non-nil.
|
|
5611 The Command History listing is recomputed each time this mode is invoked." t nil)
|
|
5612
|
|
5613 ;;;***
|
|
5614
|
|
5615 ;;;### (autoloads nil "cmuscheme" "packages/cmuscheme.el")
|
|
5616
|
|
5617 (add-hook 'same-window-buffer-names "*scheme*")
|
|
5618
|
|
5619 ;;;***
|
|
5620
|
|
5621 ;;;### (autoloads (compare-windows) "compare-w" "packages/compare-w.el")
|
|
5622
|
|
5623 (autoload 'compare-windows "compare-w" "\
|
|
5624 Compare text in current window with text in next window.
|
|
5625 Compares the text starting at point in each window,
|
|
5626 moving over text in each one as far as they match.
|
|
5627
|
|
5628 This command pushes the mark in each window
|
|
5629 at the prior location of point in that window.
|
|
5630 If both windows display the same buffer,
|
|
5631 the mark is pushed twice in that buffer:
|
|
5632 first in the other window, then in the selected window.
|
|
5633
|
|
5634 A prefix arg means ignore changes in whitespace.
|
|
5635 The variable `compare-windows-whitespace' controls how whitespace is skipped.
|
|
5636 If `compare-ignore-case' is non-nil, changes in case are also ignored." t nil)
|
|
5637
|
|
5638 ;;;***
|
|
5639
|
|
5640 ;;;### (autoloads (first-error previous-error next-error compilation-minor-mode grep compile) "compile" "packages/compile.el")
|
|
5641
|
|
5642 (defvar compilation-mode-hook nil "\
|
|
5643 *List of hook functions run by `compilation-mode' (see `run-hooks').")
|
|
5644
|
|
5645 (defvar compilation-window-height nil "\
|
|
5646 *Number of lines in a compilation window. If nil, use Emacs default.")
|
|
5647
|
|
5648 (defvar compilation-buffer-name-function nil "\
|
|
5649 Function to compute the name of a compilation buffer.
|
|
5650 The function receives one argument, the name of the major mode of the
|
|
5651 compilation buffer. It should return a string.
|
|
5652 nil means compute the name with `(concat \"*\" (downcase major-mode) \"*\")'.")
|
|
5653
|
|
5654 (defvar compilation-finish-function nil "\
|
|
5655 *Function to call when a compilation process finishes.
|
|
5656 It is called with two arguments: the compilation buffer, and a string
|
|
5657 describing how the process finished.")
|
|
5658
|
|
5659 (defvar compilation-search-path '(nil) "\
|
|
5660 *List of directories to search for source files named in error messages.
|
|
5661 Elements should be directory names, not file names of directories.
|
|
5662 nil as an element means to try the default directory.")
|
|
5663
|
|
5664 (autoload 'compile "compile" "\
|
|
5665 Compile the program including the current buffer. Default: run `make'.
|
|
5666 Runs COMMAND, a shell command, in a separate process asynchronously
|
|
5667 with output going to the buffer `*compilation*'.
|
|
5668
|
|
5669 You can then use the command \\[next-error] to find the next error message
|
|
5670 and move to the source code that caused it.
|
|
5671
|
|
5672 Interactively, prompts for the command if `compilation-read-command' is
|
|
5673 non-nil; otherwise uses `compile-command'. With prefix arg, always prompts.
|
|
5674
|
|
5675 To run more than one compilation at once, start one and rename the
|
|
5676 `*compilation*' buffer to some other name with \\[rename-buffer].
|
|
5677 Then start the next one.
|
|
5678
|
|
5679 The name used for the buffer is actually whatever is returned by
|
|
5680 the function in `compilation-buffer-name-function', so you can set that
|
|
5681 to a function that generates a unique name." t nil)
|
|
5682
|
|
5683 (autoload 'grep "compile" "\
|
|
5684 Run grep, with user-specified args, and collect output in a buffer.
|
|
5685 While grep runs asynchronously, you can use the \\[next-error] command
|
|
5686 to find the text that grep hits refer to.
|
|
5687
|
|
5688 This command uses a special history list for its arguments, so you can
|
|
5689 easily repeat a grep command." t nil)
|
|
5690
|
|
5691 (autoload 'compilation-minor-mode "compile" "\
|
|
5692 Toggle compilation minor mode.
|
|
5693 With arg, turn compilation mode on if and only if arg is positive.
|
|
5694 See `compilation-mode'.
|
|
5695 ! \\{compilation-mode-map}" t nil)
|
|
5696
|
|
5697 (autoload 'next-error "compile" "\
|
|
5698 Visit next compilation error message and corresponding source code.
|
|
5699 This operates on the output from the \\[compile] command.
|
|
5700 If all preparsed error messages have been processed,
|
|
5701 the error message buffer is checked for new ones.
|
|
5702
|
|
5703 A prefix arg specifies how many error messages to move;
|
|
5704 negative means move back to previous error messages.
|
|
5705 Just C-u as a prefix means reparse the error message buffer
|
|
5706 and start at the first error.
|
|
5707
|
|
5708 \\[next-error] normally applies to the most recent compilation started,
|
|
5709 but as long as you are in the middle of parsing errors from one compilation
|
|
5710 output buffer, you stay with that compilation output buffer.
|
|
5711
|
|
5712 Use \\[next-error] in a compilation output buffer to switch to
|
|
5713 processing errors from that compilation.
|
|
5714
|
|
5715 See variables `compilation-parse-errors-function' and
|
|
5716 `compilation-error-regexp-alist' for customization ideas." t nil)
|
|
5717
|
|
5718 (define-key ctl-x-map "`" 'next-error)
|
|
5719
|
|
5720 (autoload 'previous-error "compile" "\
|
|
5721 Visit previous compilation error message and corresponding source code.
|
|
5722 This operates on the output from the \\[compile] command." t nil)
|
|
5723
|
|
5724 (autoload 'first-error "compile" "\
|
|
5725 Reparse the error message buffer and start at the first error
|
|
5726 Visit corresponding source code.
|
|
5727 This operates on the output from the \\[compile] command." t nil)
|
|
5728
|
|
5729 ;;;***
|
|
5730
|
26
|
5731 ;;;### (autoloads (cu-edit-faces) "cu-edit-faces" "packages/cu-edit-faces.el")
|
|
5732
|
|
5733 (autoload 'cu-edit-faces "cu-edit-faces" nil t nil)
|
|
5734
|
|
5735 ;;;***
|
|
5736
|
12
|
5737 ;;;### (autoloads (dabbrev-expand dabbrev-completion) "dabbrev" "packages/dabbrev.el")
|
|
5738
|
|
5739 (define-key global-map [(meta /)] 'dabbrev-expand)
|
|
5740
|
|
5741 (define-key global-map [(meta control /)] 'dabbrev-completion)
|
|
5742
|
|
5743 (autoload 'dabbrev-completion "dabbrev" "\
|
|
5744 Completion on current word.
|
|
5745 Like \\[dabbrev-expand] but finds all expansions in the current buffer
|
|
5746 and presents suggestions for completion.
|
|
5747
|
|
5748 With a prefix argument, it searches all buffers accepted by the
|
|
5749 function pointed out by `dabbrev-friend-buffer-function' to find the
|
|
5750 completions.
|
|
5751
|
|
5752 If the prefix argument is 16 (which comes from C-u C-u),
|
|
5753 then it searches *all* buffers.
|
|
5754
|
|
5755 With no prefix argument, it reuses an old completion list
|
|
5756 if there is a suitable one already." t nil)
|
|
5757
|
|
5758 (autoload 'dabbrev-expand "dabbrev" "\
|
|
5759 Expand previous word \"dynamically\".
|
|
5760
|
|
5761 Expands to the most recent, preceding word for which this is a prefix.
|
|
5762 If no suitable preceding word is found, words following point are
|
|
5763 considered. If still no suitable word is found, then look in the
|
|
5764 buffers accepted by the function pointed out by variable
|
|
5765 `dabbrev-friend-buffer-function'.
|
|
5766
|
|
5767 A positive prefix argument, N, says to take the Nth backward *distinct*
|
|
5768 possibility. A negative argument says search forward.
|
|
5769
|
|
5770 If the cursor has not moved from the end of the previous expansion and
|
|
5771 no argument is given, replace the previously-made expansion
|
|
5772 with the next possible expansion not yet tried.
|
|
5773
|
|
5774 The variable `dabbrev-backward-only' may be used to limit the
|
|
5775 direction of search to backward if set non-nil.
|
|
5776
|
|
5777 See also `dabbrev-abbrev-char-regexp' and \\[dabbrev-completion]." t nil)
|
|
5778
|
|
5779 ;;;***
|
|
5780
|
26
|
5781 ;;;### (autoloads (diff-backup diff) "diff" "packages/diff.el")
|
|
5782
|
|
5783 (defvar diff-switches nil "\
|
|
5784 *A list of switches (strings) to pass to the diff program.")
|
|
5785
|
|
5786 (autoload 'diff "diff" "\
|
|
5787 Find and display the differences between OLD and NEW files.
|
|
5788 Interactively you are prompted with the current buffer's file name for NEW
|
|
5789 and what appears to be its backup for OLD." t nil)
|
|
5790
|
|
5791 (autoload 'diff-backup "diff" "\
|
|
5792 Diff this file with its backup file or vice versa.
|
|
5793 Uses the latest backup, if there are several numerical backups.
|
|
5794 If this file is a backup, diff it with its original.
|
|
5795 The backup file is the first file given to `diff'." t nil)
|
|
5796
|
|
5797 ;;;***
|
|
5798
|
12
|
5799 ;;;### (autoloads (edit-faces) "edit-faces" "packages/edit-faces.el")
|
|
5800
|
|
5801 (autoload 'edit-faces "edit-faces" "\
|
|
5802 Alter face characteristics by editing a list of defined faces.
|
|
5803 Pops up a buffer containing a list of defined faces.
|
|
5804
|
|
5805 Editing commands:
|
|
5806
|
|
5807 \\{edit-faces-mode-map}" t nil)
|
|
5808
|
|
5809 ;;;***
|
|
5810
|
|
5811 ;;;### (autoloads (report-xemacs-bug) "emacsbug" "packages/emacsbug.el")
|
|
5812
|
|
5813 (autoload 'report-xemacs-bug "emacsbug" "\
|
|
5814 Report a bug in XEmacs.
|
|
5815 Prompts for bug subject. Leaves you in a mail buffer." t nil)
|
|
5816
|
|
5817 ;;;***
|
|
5818
|
|
5819 ;;;### (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")
|
|
5820
|
|
5821 (autoload 'emerge-files "emerge" "\
|
|
5822 Run Emerge on two files." t nil)
|
|
5823
|
|
5824 (fset 'emerge 'emerge-files)
|
|
5825
|
|
5826 (autoload 'emerge-files-with-ancestor "emerge" "\
|
|
5827 Run Emerge on two files, giving another file as the ancestor." t nil)
|
|
5828
|
|
5829 (autoload 'emerge-buffers "emerge" "\
|
|
5830 Run Emerge on two buffers." t nil)
|
|
5831
|
|
5832 (autoload 'emerge-buffers-with-ancestor "emerge" "\
|
|
5833 Run Emerge on two buffers, giving another buffer as the ancestor." t nil)
|
|
5834
|
|
5835 (autoload 'emerge-files-command "emerge" nil nil nil)
|
|
5836
|
|
5837 (autoload 'emerge-files-with-ancestor-command "emerge" nil nil nil)
|
|
5838
|
|
5839 (autoload 'emerge-files-remote "emerge" nil nil nil)
|
|
5840
|
|
5841 (autoload 'emerge-files-with-ancestor-remote "emerge" nil nil nil)
|
|
5842
|
|
5843 (autoload 'emerge-revisions "emerge" "\
|
|
5844 Emerge two RCS revisions of a file." t nil)
|
|
5845
|
|
5846 (autoload 'emerge-revisions-with-ancestor "emerge" "\
|
|
5847 Emerge two RCS revisions of a file, with another revision as ancestor." t nil)
|
|
5848
|
|
5849 (autoload 'emerge-merge-directories "emerge" nil t nil)
|
|
5850
|
|
5851 ;;;***
|
|
5852
|
|
5853 ;;;### (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")
|
|
5854
|
|
5855 (defvar tags-build-completion-table 'ask "\
|
|
5856 *If this variable is nil, then tags completion is disabled.
|
|
5857 If this variable is t, then things which prompt for tags will do so with
|
|
5858 completion across all known tags.
|
|
5859 If this variable is the symbol `ask', then you will be asked whether each
|
|
5860 tags table should be added to the completion list as it is read in.
|
|
5861 (With the exception that for very small tags tables, you will not be asked,
|
|
5862 since they can be parsed quickly.)")
|
|
5863
|
|
5864 (defvar tags-always-exact nil "\
|
|
5865 *If this variable is non-nil, then tags always looks for exact matches.")
|
|
5866
|
|
5867 (defvar tag-table-alist nil "\
|
|
5868 *A list which determines which tags files should be active for a
|
|
5869 given buffer. This is not really an association list, in that all
|
|
5870 elements are checked. The CAR of each element of this list is a
|
|
5871 pattern against which the buffer's file name is compared; if it
|
|
5872 matches, then the CDR of the list should be the name of the tags
|
|
5873 table to use. If more than one element of this list matches the
|
|
5874 buffer's file name, then all of the associated tags tables will be
|
|
5875 used. Earlier ones will be searched first.
|
|
5876
|
|
5877 If the CAR of elements of this list are strings, then they are treated
|
|
5878 as regular-expressions against which the file is compared (like the
|
|
5879 auto-mode-alist). If they are not strings, then they are evaluated.
|
|
5880 If they evaluate to non-nil, then the current buffer is considered to
|
|
5881 match.
|
|
5882
|
|
5883 If the CDR of the elements of this list are strings, then they are
|
|
5884 assumed to name a TAGS file. If they name a directory, then the string
|
|
5885 \"TAGS\" is appended to them to get the file name. If they are not
|
|
5886 strings, then they are evaluated, and must return an appropriate string.
|
|
5887
|
|
5888 For example:
|
|
5889 (setq tag-table-alist
|
|
5890 '((\"/usr/src/public/perl/\" . \"/usr/src/public/perl/perl-3.0/\")
|
|
5891 (\"\\\\.el$\" . \"/usr/local/emacs/src/\")
|
|
5892 (\"/jbw/gnu/\" . \"/usr15/degree/stud/jbw/gnu/\")
|
|
5893 (\"\" . \"/usr/local/emacs/src/\")
|
|
5894 ))
|
|
5895
|
|
5896 This means that anything in the /usr/src/public/perl/ directory should use
|
|
5897 the TAGS file /usr/src/public/perl/perl-3.0/TAGS; and file ending in .el should
|
|
5898 use the TAGS file /usr/local/emacs/src/TAGS; and anything in or below the
|
|
5899 directory /jbw/gnu/ should use the TAGS file /usr15/degree/stud/jbw/gnu/TAGS.
|
|
5900 A file called something like \"/usr/jbw/foo.el\" would use both the TAGS files
|
|
5901 /usr/local/emacs/src/TAGS and /usr15/degree/stud/jbw/gnu/TAGS (in that order)
|
|
5902 because it matches both patterns.
|
|
5903
|
|
5904 If the buffer-local variable `buffer-tag-table' is set, then it names a tags
|
|
5905 table that is searched before all others when find-tag is executed from this
|
|
5906 buffer.
|
|
5907
|
|
5908 If there is a file called \"TAGS\" in the same directory as the file in
|
|
5909 question, then that tags file will always be used as well (after the
|
|
5910 `buffer-tag-table' but before the tables specified by this list.)
|
|
5911
|
|
5912 If the variable tags-file-name is set, then the tags file it names will apply
|
|
5913 to all buffers (for backwards compatibility.) It is searched first.
|
|
5914 ")
|
|
5915
|
|
5916 (autoload 'visit-tags-table "etags" "\
|
|
5917 Tell tags commands to use tags table file FILE first.
|
|
5918 FILE should be the name of a file created with the `etags' program.
|
|
5919 A directory name is ok too; it means file TAGS in that directory." t nil)
|
|
5920
|
|
5921 (autoload 'find-tag "etags" "\
|
|
5922 *Find tag whose name contains TAGNAME.
|
|
5923 Selects the buffer that the tag is contained in
|
|
5924 and puts point at its definition.
|
|
5925 If TAGNAME is a null string, the expression in the buffer
|
|
5926 around or before point is used as the tag name.
|
|
5927 If called interactively with a numeric argument, searches for the next tag
|
|
5928 in the tag table that matches the tagname used in the previous find-tag.
|
|
5929 If second arg OTHER-WINDOW is non-nil, uses another window to display
|
|
5930 the tag.
|
|
5931
|
|
5932 This version of this function supports multiple active tags tables,
|
|
5933 and completion.
|
|
5934
|
|
5935 Variables of note:
|
|
5936
|
|
5937 tag-table-alist controls which tables apply to which buffers
|
|
5938 tags-file-name a default tags table
|
|
5939 tags-build-completion-table controls completion behavior
|
|
5940 buffer-tag-table another way of specifying a buffer-local table
|
|
5941 make-tags-files-invisible whether tags tables should be very hidden
|
|
5942 tag-mark-stack-max how many tags-based hops to remember" t nil)
|
|
5943
|
|
5944 (autoload 'find-tag-other-window "etags" "\
|
|
5945 *Find tag whose name contains TAGNAME.
|
|
5946 Selects the buffer that the tag is contained in in another window
|
|
5947 and puts point at its definition.
|
|
5948 If TAGNAME is a null string, the expression in the buffer
|
|
5949 around or before point is used as the tag name.
|
|
5950 If second arg NEXT is non-nil (interactively, with prefix arg),
|
|
5951 searches for the next tag in the tag table
|
|
5952 that matches the tagname used in the previous find-tag.
|
|
5953
|
|
5954 This version of this function supports multiple active tags tables,
|
|
5955 and completion.
|
|
5956
|
|
5957 Variables of note:
|
|
5958
|
|
5959 tag-table-alist controls which tables apply to which buffers
|
|
5960 tags-file-name a default tags table
|
|
5961 tags-build-completion-table controls completion behavior
|
|
5962 buffer-tag-table another way of specifying a buffer-local table
|
|
5963 make-tags-files-invisible whether tags tables should be very hidden
|
|
5964 tag-mark-stack-max how many tags-based hops to remember" t nil)
|
|
5965
|
|
5966 (autoload 'next-file "etags" "\
|
|
5967 Select next file among files in current tag table(s).
|
|
5968
|
|
5969 A first argument of t (prefix arg, if interactive) initializes to the
|
|
5970 beginning of the list of files in the (first) tags table. If the argument
|
|
5971 is neither nil nor t, it is evalled to initialize the list of files.
|
|
5972
|
|
5973 Non-nil second argument NOVISIT means use a temporary buffer
|
|
5974 to save time and avoid uninteresting warnings.
|
|
5975
|
|
5976 Value is nil if the file was already visited;
|
|
5977 if the file was newly read in, the value is the filename." t nil)
|
|
5978
|
|
5979 (autoload 'tags-loop-continue "etags" "\
|
|
5980 Continue last \\[tags-search] or \\[tags-query-replace] command.
|
|
5981 Used noninteractively with non-nil argument to begin such a command (the
|
|
5982 argument is passed to `next-file', which see).
|
|
5983 Two variables control the processing we do on each file:
|
|
5984 the value of `tags-loop-scan' is a form to be executed on each file
|
|
5985 to see if it is interesting (it returns non-nil if so)
|
|
5986 and `tags-loop-operate' is a form to execute to operate on an interesting file
|
|
5987 If the latter returns non-nil, we exit; otherwise we scan the next file." t nil)
|
|
5988
|
|
5989 (autoload 'tags-search "etags" "\
|
|
5990 Search through all files listed in tags table for match for REGEXP.
|
|
5991 Stops when a match is found.
|
|
5992 To continue searching for next match, use command \\[tags-loop-continue].
|
|
5993
|
|
5994 See documentation of variable `tag-table-alist'." t nil)
|
|
5995
|
|
5996 (autoload 'tags-query-replace "etags" "\
|
|
5997 Query-replace-regexp FROM with TO through all files listed in tags table.
|
|
5998 Third arg DELIMITED (prefix arg) means replace only word-delimited matches.
|
|
5999 If you exit (\\[keyboard-quit] or ESC), you can resume the query-replace
|
|
6000 with the command \\[tags-loop-continue].
|
|
6001
|
|
6002 See documentation of variable `tag-table-alist'." t nil)
|
|
6003
|
|
6004 (autoload 'list-tags "etags" "\
|
|
6005 Display list of tags in file FILE.
|
|
6006 FILE should not contain a directory spec
|
|
6007 unless it has one in the tag table." t nil)
|
|
6008
|
|
6009 (autoload 'tags-apropos "etags" "\
|
|
6010 Display list of all tags in tag table REGEXP matches." t nil)
|
|
6011
|
|
6012 ;;;***
|
|
6013
|
|
6014 ;;;### (autoloads (turn-on-fast-lock fast-lock-mode) "fast-lock" "packages/fast-lock.el")
|
|
6015
|
|
6016 (autoload 'fast-lock-mode "fast-lock" "\
|
|
6017 Toggle Fast Lock mode.
|
|
6018 With arg, turn Fast Lock mode on if and only if arg is positive and the buffer
|
|
6019 is associated with a file. Enable it automatically in your `~/.emacs' by:
|
|
6020
|
|
6021 (setq font-lock-support-mode 'fast-lock-mode)
|
|
6022
|
|
6023 If Fast Lock mode is enabled, and the current buffer does not contain any text
|
|
6024 properties, any associated Font Lock cache is used if its timestamp matches the
|
|
6025 buffer's file, and its `font-lock-keywords' match those that you are using.
|
|
6026
|
|
6027 Font Lock caches may be saved:
|
24
|
6028 - When you save the file's buffer.
|
|
6029 - When you kill an unmodified file's buffer.
|
|
6030 - When you exit Emacs, for all unmodified or saved buffers.
|
12
|
6031 Depending on the value of `fast-lock-save-events'.
|
|
6032 See also the commands `fast-lock-read-cache' and `fast-lock-save-cache'.
|
|
6033
|
|
6034 Use \\[font-lock-fontify-buffer] to fontify the buffer if the cache is bad.
|
|
6035
|
|
6036 Various methods of control are provided for the Font Lock cache. In general,
|
|
6037 see variable `fast-lock-cache-directories' and function `fast-lock-cache-name'.
|
|
6038 For saving, see variables `fast-lock-minimum-size', `fast-lock-save-events',
|
22
|
6039 `fast-lock-save-others' and `fast-lock-save-faces'." t nil)
|
12
|
6040
|
|
6041 (autoload 'turn-on-fast-lock "fast-lock" "\
|
|
6042 Unconditionally turn on Fast Lock mode." nil nil)
|
|
6043
|
24
|
6044 (when (fboundp 'add-minor-mode) (defvar fast-lock-mode nil) (add-minor-mode 'fast-lock-mode nil))
|
12
|
6045
|
|
6046 ;;;***
|
|
6047
|
|
6048 ;;;### (autoloads (feedmail-send-it) "feedmail" "packages/feedmail.el")
|
|
6049
|
|
6050 (autoload 'feedmail-send-it "feedmail" nil nil nil)
|
|
6051
|
|
6052 ;;;***
|
|
6053
|
|
6054 ;;;### (autoloads (make-file-part) "file-part" "packages/file-part.el")
|
|
6055
|
|
6056 (autoload 'make-file-part "file-part" "\
|
|
6057 Make a file part on buffer BUFFER out of the region. Call it NAME.
|
|
6058 This command creates a new buffer containing the contents of the
|
|
6059 region and marks the buffer as referring to the specified buffer,
|
|
6060 called the `master buffer'. When the file-part buffer is saved,
|
|
6061 its changes are integrated back into the master buffer. When the
|
|
6062 master buffer is deleted, all file parts are deleted with it.
|
|
6063
|
|
6064 When called from a function, expects four arguments, START, END,
|
|
6065 NAME, and BUFFER, all of which are optional and default to the
|
|
6066 beginning of BUFFER, the end of BUFFER, a name generated from
|
|
6067 BUFFER's name, and the current buffer, respectively." t nil)
|
|
6068
|
|
6069 ;;;***
|
|
6070
|
|
6071 ;;;### (autoloads (font-lock-fontify-buffer turn-off-font-lock turn-on-font-lock font-lock-mode) "font-lock" "packages/font-lock.el")
|
|
6072
|
|
6073 (defvar font-lock-auto-fontify t "\
|
|
6074 *Whether font-lock should automatically fontify files as they're loaded.
|
|
6075 This will only happen if font-lock has fontifying keywords for the major
|
|
6076 mode of the file. You can get finer-grained control over auto-fontification
|
|
6077 by using this variable in combination with `font-lock-mode-enable-list' or
|
|
6078 `font-lock-mode-disable-list'.")
|
|
6079
|
|
6080 (defvar font-lock-mode-enable-list nil "\
|
|
6081 *List of modes to auto-fontify, if `font-lock-auto-fontify' is nil.")
|
|
6082
|
|
6083 (defvar font-lock-mode-disable-list nil "\
|
|
6084 *List of modes not to auto-fontify, if `font-lock-auto-fontify' is t.")
|
|
6085
|
|
6086 (defvar font-lock-use-colors '(color) "\
|
|
6087 *Specification for when Font Lock will set up color defaults.
|
|
6088 Normally this should be '(color), meaning that Font Lock will set up
|
|
6089 color defaults that are only used on color displays. Set this to nil
|
|
6090 if you don't want Font Lock to set up color defaults at all. This
|
|
6091 should be one of
|
|
6092
|
|
6093 -- a list of valid tags, meaning that the color defaults will be used
|
|
6094 when all of the tags apply. (e.g. '(color x))
|
|
6095 -- a list whose first element is 'or and whose remaining elements are
|
|
6096 lists of valid tags, meaning that the defaults will be used when
|
|
6097 any of the tag lists apply.
|
|
6098 -- nil, meaning that the defaults should not be set up at all.
|
|
6099
|
|
6100 \(If you specify face values in your init file, they will override any
|
|
6101 that Font Lock specifies, regardless of whether you specify the face
|
|
6102 values before or after loading Font Lock.)
|
|
6103
|
|
6104 See also `font-lock-use-fonts'. If you want more control over the faces
|
|
6105 used for fontification, see the documentation of `font-lock-mode' for
|
|
6106 how to do it.")
|
|
6107
|
|
6108 (defvar font-lock-use-fonts '(or (mono) (grayscale)) "\
|
|
6109 *Specification for when Font Lock will set up non-color defaults.
|
|
6110
|
|
6111 Normally this should be '(or (mono) (grayscale)), meaning that Font
|
|
6112 Lock will set up non-color defaults that are only used on either mono
|
|
6113 or grayscale displays. Set this to nil if you don't want Font Lock to
|
|
6114 set up non-color defaults at all. This should be one of
|
|
6115
|
|
6116 -- a list of valid tags, meaning that the non-color defaults will be used
|
|
6117 when all of the tags apply. (e.g. '(grayscale x))
|
|
6118 -- a list whose first element is 'or and whose remaining elements are
|
|
6119 lists of valid tags, meaning that the defaults will be used when
|
|
6120 any of the tag lists apply.
|
|
6121 -- nil, meaning that the defaults should not be set up at all.
|
|
6122
|
|
6123 \(If you specify face values in your init file, they will override any
|
|
6124 that Font Lock specifies, regardless of whether you specify the face
|
|
6125 values before or after loading Font Lock.)
|
|
6126
|
|
6127 See also `font-lock-use-colors'. If you want more control over the faces
|
|
6128 used for fontification, see the documentation of `font-lock-mode' for
|
|
6129 how to do it.")
|
|
6130
|
|
6131 (defvar font-lock-maximum-decoration nil "\
|
|
6132 *If non-nil, the maximum decoration level for fontifying.
|
|
6133 If nil, use the minimum decoration (equivalent to level 0).
|
|
6134 If t, use the maximum decoration available.
|
|
6135 If a number, use that level of decoration (or if not available the maximum).
|
|
6136 If a list, each element should be a cons pair of the form (MAJOR-MODE . LEVEL),
|
|
6137 where MAJOR-MODE is a symbol or t (meaning the default). For example:
|
|
6138 ((c++-mode . 2) (c-mode . t) (t . 1))
|
|
6139 means use level 2 decoration for buffers in `c++-mode', the maximum decoration
|
|
6140 available for buffers in `c-mode', and level 1 decoration otherwise.")
|
|
6141
|
|
6142 (define-obsolete-variable-alias 'font-lock-use-maximal-decoration 'font-lock-maximum-decoration)
|
|
6143
|
|
6144 (defvar font-lock-maximum-size (* 250 1024) "\
|
|
6145 *If non-nil, the maximum size for buffers for fontifying.
|
|
6146 Only buffers less than this can be fontified when Font Lock mode is turned on.
|
|
6147 If nil, means size is irrelevant.
|
|
6148 If a list, each element should be a cons pair of the form (MAJOR-MODE . SIZE),
|
|
6149 where MAJOR-MODE is a symbol or t (meaning the default). For example:
|
|
6150 ((c++-mode . 256000) (c-mode . 256000) (rmail-mode . 1048576))
|
|
6151 means that the maximum size is 250K for buffers in `c++-mode' or `c-mode', one
|
|
6152 megabyte for buffers in `rmail-mode', and size is irrelevant otherwise.")
|
|
6153
|
|
6154 (defvar font-lock-keywords nil "\
|
|
6155 *A list of the keywords to highlight.
|
|
6156 Each element should be of the form:
|
|
6157
|
|
6158 MATCHER
|
|
6159 (MATCHER . MATCH)
|
|
6160 (MATCHER . FACENAME)
|
|
6161 (MATCHER . HIGHLIGHT)
|
|
6162 (MATCHER HIGHLIGHT ...)
|
|
6163
|
|
6164 where HIGHLIGHT should be either MATCH-HIGHLIGHT or MATCH-ANCHORED.
|
|
6165
|
|
6166 For highlighting single items, typically only MATCH-HIGHLIGHT is required.
|
|
6167 However, if an item or (typically) items is to be hightlighted following the
|
|
6168 instance of another item (the anchor) then MATCH-ANCHORED may be required.
|
|
6169
|
|
6170 MATCH-HIGHLIGHT should be of the form:
|
|
6171
|
|
6172 (MATCH FACENAME OVERRIDE LAXMATCH)
|
|
6173
|
26
|
6174 Where MATCHER can be either the regexp to search for, a variable
|
|
6175 containing the regexp to search for, or the function to call to make
|
|
6176 the search (called with one argument, the limit of the search). MATCH
|
|
6177 is the subexpression of MATCHER to be highlighted. FACENAME is either
|
|
6178 a symbol naming a face, or an expression whose value is the face name
|
|
6179 to use. If you want FACENAME to be a symbol that evaluates to a face,
|
|
6180 use a form like \"(progn sym)\".
|
12
|
6181
|
|
6182 OVERRIDE and LAXMATCH are flags. If OVERRIDE is t, existing fontification may
|
|
6183 be overwritten. If `keep', only parts not already fontified are highlighted.
|
|
6184 If `prepend' or `append', existing fontification is merged with the new, in
|
|
6185 which the new or existing fontification, respectively, takes precedence.
|
|
6186 If LAXMATCH is non-nil, no error is signalled if there is no MATCH in MATCHER.
|
|
6187
|
|
6188 For example, an element of the form highlights (if not already highlighted):
|
|
6189
|
|
6190 \"\\\\\\=<foo\\\\\\=>\" Discrete occurrences of \"foo\" in the value of the
|
|
6191 variable `font-lock-keyword-face'.
|
|
6192 (\"fu\\\\(bar\\\\)\" . 1) Substring \"bar\" within all occurrences of \"fubar\" in
|
|
6193 the value of `font-lock-keyword-face'.
|
|
6194 (\"fubar\" . fubar-face) Occurrences of \"fubar\" in the value of `fubar-face'.
|
|
6195 (\"foo\\\\|bar\" 0 foo-bar-face t)
|
|
6196 Occurrences of either \"foo\" or \"bar\" in the value
|
|
6197 of `foo-bar-face', even if already highlighted.
|
|
6198
|
|
6199 MATCH-ANCHORED should be of the form:
|
|
6200
|
|
6201 (MATCHER PRE-MATCH-FORM POST-MATCH-FORM MATCH-HIGHLIGHT ...)
|
|
6202
|
|
6203 Where MATCHER is as for MATCH-HIGHLIGHT with one exception. The limit of the
|
|
6204 search is currently guaranteed to be (no greater than) the end of the line.
|
|
6205 PRE-MATCH-FORM and POST-MATCH-FORM are evaluated before the first, and after
|
|
6206 the last, instance MATCH-ANCHORED's MATCHER is used. Therefore they can be
|
|
6207 used to initialise before, and cleanup after, MATCHER is used. Typically,
|
|
6208 PRE-MATCH-FORM is used to move to some position relative to the original
|
|
6209 MATCHER, before starting with MATCH-ANCHORED's MATCHER. POST-MATCH-FORM might
|
|
6210 be used to move, before resuming with MATCH-ANCHORED's parent's MATCHER.
|
|
6211
|
|
6212 For example, an element of the form highlights (if not already highlighted):
|
|
6213
|
|
6214 (\"\\\\\\=<anchor\\\\\\=>\" (0 anchor-face) (\"\\\\\\=<item\\\\\\=>\" nil nil (0 item-face)))
|
|
6215
|
|
6216 Discrete occurrences of \"anchor\" in the value of `anchor-face', and subsequent
|
|
6217 discrete occurrences of \"item\" (on the same line) in the value of `item-face'.
|
|
6218 (Here PRE-MATCH-FORM and POST-MATCH-FORM are nil. Therefore \"item\" is
|
|
6219 initially searched for starting from the end of the match of \"anchor\", and
|
|
6220 searching for subsequent instance of \"anchor\" resumes from where searching
|
|
6221 for \"item\" concluded.)
|
|
6222
|
|
6223 Note that the MATCH-ANCHORED feature is experimental; in the future, we may
|
|
6224 replace it with other ways of providing this functionality.
|
|
6225
|
|
6226 These regular expressions should not match text which spans lines. While
|
|
6227 \\[font-lock-fontify-buffer] handles multi-line patterns correctly, updating
|
|
6228 when you edit the buffer does not, since it considers text one line at a time.
|
|
6229
|
|
6230 Be very careful composing regexps for this list;
|
|
6231 the wrong pattern can dramatically slow things down!")
|
|
6232
|
|
6233 (make-variable-buffer-local 'font-lock-keywords)
|
|
6234
|
|
6235 (defvar font-lock-mode nil)
|
|
6236
|
|
6237 (defvar font-lock-mode-hook nil "\
|
|
6238 Function or functions to run on entry to font-lock-mode.")
|
|
6239
|
|
6240 (autoload 'font-lock-mode "font-lock" "\
|
|
6241 Toggle Font Lock Mode.
|
|
6242 With arg, turn font-lock mode on if and only if arg is positive.
|
|
6243
|
|
6244 When Font Lock mode is enabled, text is fontified as you type it:
|
|
6245
|
|
6246 - Comments are displayed in `font-lock-comment-face';
|
|
6247 - Strings are displayed in `font-lock-string-face';
|
|
6248 - Documentation strings (in Lisp-like languages) are displayed in
|
|
6249 `font-lock-doc-string-face';
|
|
6250 - Language keywords (\"reserved words\") are displayed in
|
|
6251 `font-lock-keyword-face';
|
|
6252 - Function names in their defining form are displayed in
|
|
6253 `font-lock-function-name-face';
|
|
6254 - Variable names in their defining form are displayed in
|
|
6255 `font-lock-variable-name-face';
|
|
6256 - Type names are displayed in `font-lock-type-face';
|
|
6257 - References appearing in help files and the like are displayed
|
|
6258 in `font-lock-reference-face';
|
|
6259 - Preprocessor declarations are displayed in
|
|
6260 `font-lock-preprocessor-face';
|
|
6261
|
|
6262 and
|
|
6263
|
|
6264 - Certain other expressions are displayed in other faces according
|
|
6265 to the value of the variable `font-lock-keywords'.
|
|
6266
|
|
6267 Where modes support different levels of fontification, you can use the variable
|
|
6268 `font-lock-maximum-decoration' to specify which level you generally prefer.
|
|
6269 When you turn Font Lock mode on/off the buffer is fontified/defontified, though
|
|
6270 fontification occurs only if the buffer is less than `font-lock-maximum-size'.
|
|
6271 To fontify a buffer without turning on Font Lock mode, and regardless of buffer
|
|
6272 size, you can use \\[font-lock-fontify-buffer].
|
|
6273
|
|
6274 See the variable `font-lock-keywords' for customization." t nil)
|
|
6275
|
|
6276 (autoload 'turn-on-font-lock "font-lock" "\
|
|
6277 Unconditionally turn on Font Lock mode." nil nil)
|
|
6278
|
|
6279 (autoload 'turn-off-font-lock "font-lock" "\
|
|
6280 Unconditionally turn off Font Lock mode." nil nil)
|
|
6281
|
|
6282 (autoload 'font-lock-fontify-buffer "font-lock" "\
|
|
6283 Fontify the current buffer the way `font-lock-mode' would.
|
|
6284 See `font-lock-mode' for details.
|
|
6285
|
|
6286 This can take a while for large buffers." t nil)
|
|
6287
|
|
6288 (add-minor-mode 'font-lock-mode " Font")
|
|
6289
|
|
6290 ;;;***
|
|
6291
|
|
6292 ;;;### (autoloads (sc-mode) "generic-sc" "packages/generic-sc.el")
|
|
6293
|
|
6294 (autoload 'sc-mode "generic-sc" "\
|
|
6295 Toggle sc-mode.
|
|
6296 SYSTEM can be sccs, rcs or cvs.
|
|
6297 Cvs requires the pcl-cvs package.
|
|
6298
|
|
6299 The following commands are available
|
|
6300 \\[sc-next-operation] perform next logical source control operation on current file
|
|
6301 \\[sc-show-changes] compare the version being edited with an older one
|
|
6302 \\[sc-version-diff-file] compare two older versions of a file
|
|
6303 \\[sc-show-history] display change history of current file
|
|
6304 \\[sc-visit-previous-revision] display an older revision of current file
|
|
6305 \\[sc-revert-file] revert buffer to last checked-in version
|
|
6306 \\[sc-list-all-locked-files] show all files locked in current directory
|
|
6307 \\[sc-list-locked-files] show all files locked by you in current directory
|
|
6308 \\[sc-list-registered-files] show all files under source control in current directory
|
|
6309 \\[sc-update-directory] get fresh copies of files checked-in by others in current directory
|
|
6310 \\[sc-rename-file] rename the current file and its source control file
|
|
6311
|
|
6312
|
|
6313 While you are entering a change log message for a check in, sc-log-entry-mode
|
|
6314 will be in effect.
|
|
6315
|
|
6316 Global user options:
|
|
6317 sc-diff-command A list consisting of the command and flags
|
|
6318 to be used for generating context diffs.
|
|
6319 sc-mode-expert suppresses some conformation prompts,
|
|
6320 notably for delta aborts and file saves.
|
|
6321 sc-max-log-size specifies the maximum allowable size
|
|
6322 of a log message plus one.
|
|
6323
|
|
6324
|
|
6325 When using SCCS you have additional commands and options
|
|
6326
|
|
6327 \\[sccs-insert-headers] insert source control headers in current file
|
|
6328
|
|
6329 When you generate headers into a buffer using \\[sccs-insert-headers],
|
|
6330 the value of sc-insert-headers-hook is called before insertion. If the
|
|
6331 file is recognized a C or Lisp source, sc-insert-c-header-hook or
|
|
6332 sc-insert-lisp-header-hook is called after insertion respectively.
|
|
6333
|
|
6334 sccs-headers-wanted which %-keywords to insert when adding
|
|
6335 headers with C-c h
|
|
6336 sccs-insert-static if non-nil, keywords inserted in C files
|
|
6337 get stuffed in a static string area so that
|
|
6338 what(1) can see them in the compiled object code.
|
|
6339
|
|
6340 When using CVS you have additional commands
|
|
6341
|
|
6342 \\[sc-cvs-update-directory] update the current directory using pcl-cvs
|
|
6343 \\[sc-cvs-file-status] show the CVS status of current file
|
|
6344 " t nil)
|
|
6345
|
|
6346 ;;;***
|
|
6347
|
|
6348 ;;;### (autoloads (gnuserv-start) "gnuserv" "packages/gnuserv.el")
|
|
6349
|
|
6350 (defvar gnuserv-frame nil "\
|
|
6351 *If non-nil, the frame to be used to display all edited files.
|
|
6352 If nil, then a new frame is created for each file edited.
|
|
6353 This variable has no effect in XEmacs versions older than 19.9.")
|
|
6354
|
|
6355 (autoload 'gnuserv-start "gnuserv" "\
|
|
6356 Allow this Emacs process to be a server for client processes.
|
|
6357 This starts a server communications subprocess through which
|
|
6358 client \"editors\" (gnuclient and gnudoit) can send editing commands to
|
|
6359 this Emacs job. See the gnuserv(1) manual page for more details.
|
|
6360
|
|
6361 Prefix arg means just kill any existing server communications subprocess." t nil)
|
|
6362
|
|
6363 ;;;***
|
|
6364
|
|
6365 ;;;### (autoloads (gopher-atpoint gopher) "gopher" "packages/gopher.el")
|
|
6366
|
|
6367 (autoload 'gopher "gopher" "\
|
|
6368 Start a gopher session. With C-u, prompt for a gopher server." t nil)
|
|
6369
|
|
6370 (autoload 'gopher-atpoint "gopher" "\
|
|
6371 Try to interpret the text around point as a gopher bookmark, and dispatch
|
|
6372 to that object." t nil)
|
|
6373
|
|
6374 ;;;***
|
|
6375
|
|
6376 ;;;### (autoloads (hexlify-buffer hexl-find-file hexl-mode) "hexl" "packages/hexl.el")
|
|
6377
|
|
6378 (autoload 'hexl-mode "hexl" "\
|
|
6379 \\<hexl-mode-map>
|
|
6380 A major mode for editing binary files in hex dump format.
|
|
6381
|
|
6382 This function automatically converts a buffer into the hexl format
|
|
6383 using the function `hexlify-buffer'.
|
|
6384
|
|
6385 Each line in the buffer has an \"address\" (displayed in hexadecimal)
|
|
6386 representing the offset into the file that the characters on this line
|
|
6387 are at and 16 characters from the file (displayed as hexadecimal
|
|
6388 values grouped every 16 bits) and as their ASCII values.
|
|
6389
|
|
6390 If any of the characters (displayed as ASCII characters) are
|
|
6391 unprintable (control or meta characters) they will be replaced as
|
|
6392 periods.
|
|
6393
|
|
6394 If `hexl-mode' is invoked with an argument the buffer is assumed to be
|
|
6395 in hexl format.
|
|
6396
|
|
6397 A sample format:
|
|
6398
|
|
6399 HEX ADDR: 0001 0203 0405 0607 0809 0a0b 0c0d 0e0f ASCII-TEXT
|
|
6400 -------- ---- ---- ---- ---- ---- ---- ---- ---- ----------------
|
|
6401 00000000: 5468 6973 2069 7320 6865 786c 2d6d 6f64 This is hexl-mod
|
|
6402 00000010: 652e 2020 4561 6368 206c 696e 6520 7265 e. Each line re
|
|
6403 00000020: 7072 6573 656e 7473 2031 3620 6279 7465 presents 16 byte
|
|
6404 00000030: 7320 6173 2068 6578 6164 6563 696d 616c s as hexadecimal
|
|
6405 00000040: 2041 5343 4949 0a61 6e64 2070 7269 6e74 ASCII.and print
|
|
6406 00000050: 6162 6c65 2041 5343 4949 2063 6861 7261 able ASCII chara
|
|
6407 00000060: 6374 6572 732e 2020 416e 7920 636f 6e74 cters. Any cont
|
|
6408 00000070: 726f 6c20 6f72 206e 6f6e 2d41 5343 4949 rol or non-ASCII
|
|
6409 00000080: 2063 6861 7261 6374 6572 730a 6172 6520 characters.are
|
|
6410 00000090: 6469 7370 6c61 7965 6420 6173 2070 6572 displayed as per
|
|
6411 000000a0: 696f 6473 2069 6e20 7468 6520 7072 696e iods in the prin
|
|
6412 000000b0: 7461 626c 6520 6368 6172 6163 7465 7220 table character
|
|
6413 000000c0: 7265 6769 6f6e 2e0a region..
|
|
6414
|
|
6415 Movement is as simple as movement in a normal emacs text buffer. Most
|
|
6416 cursor movement bindings are the same (ie. Use \\[hexl-backward-char], \\[hexl-forward-char], \\[hexl-next-line], and \\[hexl-previous-line]
|
|
6417 to move the cursor left, right, down, and up).
|
|
6418
|
|
6419 Advanced cursor movement commands (ala \\[hexl-beginning-of-line], \\[hexl-end-of-line], \\[hexl-beginning-of-buffer], and \\[hexl-end-of-buffer]) are
|
|
6420 also supported.
|
|
6421
|
|
6422 There are several ways to change text in hexl mode:
|
|
6423
|
|
6424 ASCII characters (character between space (0x20) and tilde (0x7E)) are
|
|
6425 bound to self-insert so you can simply type the character and it will
|
|
6426 insert itself (actually overstrike) into the buffer.
|
|
6427
|
|
6428 \\[hexl-quoted-insert] followed by another keystroke allows you to insert the key even if
|
|
6429 it isn't bound to self-insert. An octal number can be supplied in place
|
|
6430 of another key to insert the octal number's ASCII representation.
|
|
6431
|
|
6432 \\[hexl-insert-hex-char] will insert a given hexadecimal value (if it is between 0 and 0xFF)
|
|
6433 into the buffer at the current point.
|
|
6434
|
|
6435 \\[hexl-insert-octal-char] will insert a given octal value (if it is between 0 and 0377)
|
|
6436 into the buffer at the current point.
|
|
6437
|
|
6438 \\[hexl-insert-decimal-char] will insert a given decimal value (if it is between 0 and 255)
|
|
6439 into the buffer at the current point.
|
|
6440
|
|
6441 \\[hexl-mode-exit] will exit hexl-mode.
|
|
6442
|
|
6443 Note: saving the file with any of the usual Emacs commands
|
|
6444 will actually convert it back to binary format while saving.
|
|
6445
|
|
6446 You can use \\[hexl-find-file] to visit a file in hexl-mode.
|
|
6447
|
|
6448 \\[describe-bindings] for advanced commands." t nil)
|
|
6449
|
|
6450 (autoload 'hexl-find-file "hexl" "\
|
|
6451 Edit file FILENAME in hexl-mode.
|
|
6452 Switch to a buffer visiting file FILENAME, creating one in none exists." t nil)
|
|
6453
|
|
6454 (autoload 'hexlify-buffer "hexl" "\
|
|
6455 Convert a binary buffer to hexl format.
|
|
6456 This discards the buffer's undo information." t nil)
|
|
6457
|
|
6458 ;;;***
|
|
6459
|
|
6460 ;;;### (autoloads (hypropos-popup-menu hypropos-set-variable hyper-describe-function hyper-describe-variable hyper-apropos) "hyper-apropos" "packages/hyper-apropos.el")
|
|
6461
|
|
6462 (defvar hypropos-show-brief-docs t "\
|
|
6463 *If non-nil, `hyper-apropos' will display some documentation in the
|
|
6464 \"*Hyper Apropos*\" buffer. Setting this to nil will speed up searches.")
|
|
6465
|
|
6466 (autoload 'hyper-apropos "hyper-apropos" "\
|
|
6467 Display lists of functions and variables matching REGEXP
|
|
6468 in buffer \"*Hyper Apropos*\". If optional prefix arg is given, then the value
|
|
6469 of `hypropos-programming-apropos' is toggled for this search.
|
|
6470 See also `hyper-apropos-mode'." t nil)
|
|
6471
|
|
6472 (autoload 'hyper-describe-variable "hyper-apropos" "\
|
|
6473 Hypertext drop-in replacement for `describe-variable'.
|
|
6474 See also `hyper-apropos' and `hyper-describe-function'." t nil)
|
|
6475
|
|
6476 (autoload 'hyper-describe-function "hyper-apropos" "\
|
|
6477 Hypertext replacement for `describe-function'. Unlike `describe-function'
|
|
6478 in that the symbol under the cursor is the default if it is a function.
|
|
6479 See also `hyper-apropos' and `hyper-describe-variable'." t nil)
|
|
6480
|
|
6481 (autoload 'hypropos-set-variable "hyper-apropos" "\
|
|
6482 Interactively set the variable on the current line." t nil)
|
|
6483
|
|
6484 (autoload 'hypropos-popup-menu "hyper-apropos" nil t nil)
|
|
6485
|
|
6486 ;;;***
|
|
6487
|
|
6488 ;;;### (autoloads (icomplete-minibuffer-setup icomplete-mode) "icomplete" "packages/icomplete.el")
|
|
6489
|
|
6490 (autoload 'icomplete-mode "icomplete" "\
|
|
6491 Activate incremental minibuffer completion for this emacs session,
|
|
6492 or deactivate with negative prefix arg." t nil)
|
|
6493
|
|
6494 (autoload 'icomplete-minibuffer-setup "icomplete" "\
|
|
6495 Run in minibuffer on activation to establish incremental completion.
|
|
6496 Usually run by inclusion in `minibuffer-setup-hook'." nil nil)
|
|
6497
|
|
6498 ;;;***
|
|
6499
|
24
|
6500 ;;;### (autoloads (dired-do-igrep-find dired-do-igrep igrep-find-define igrep-find igrep-define igrep) "igrep" "packages/igrep.el")
|
|
6501
|
|
6502 (autoload 'igrep "igrep" "\
|
|
6503 *Run `grep` PROGRAM to match EXPRESSION in FILES.
|
|
6504 The output is displayed in the *igrep* buffer, which \\[next-error] and
|
|
6505 \\[compile-goto-error] parse to find each line of matched text.
|
|
6506
|
|
6507 PROGRAM may be nil, in which case it defaults to `igrep-program'.
|
|
6508
|
|
6509 EXPRESSION is automatically delimited by `igrep-expression-quote-char'.
|
|
6510
|
|
6511 FILES is either a file name pattern (expanded by the shell named by
|
|
6512 `shell-file-name') or a list of file name patterns.
|
|
6513
|
|
6514 Optional OPTIONS is also passed to PROGRAM; it defaults to `igrep-options'.
|
|
6515
|
|
6516 If a prefix argument (\\[universal-argument]) is given when called interactively,
|
|
6517 or if `igrep-read-options' is set, OPTIONS is read from the minibuffer.
|
|
6518
|
|
6519 If two prefix arguments (\\[universal-argument] \\[universal-argument]) are given when called interactively,
|
|
6520 or if `igrep-read-multiple-files' is set, FILES is read from the minibuffer
|
|
6521 multiple times.
|
|
6522
|
|
6523 If three prefix arguments (\\[universal-argument] \\[universal-argument] \\[universal-argument]) are given when called interactively,
|
|
6524 or if `igrep-read-options' and `igrep-read-multiple-files' are set,
|
|
6525 OPTIONS is read and FILES is read multiple times.
|
|
6526
|
|
6527 If `igrep-find' is non-nil, the directory or directories
|
|
6528 containing FILES is recursively searched for files whose name matches
|
|
6529 the file name component of FILES (and whose contents match
|
|
6530 EXPRESSION)." t nil)
|
|
6531
|
|
6532 (autoload 'igrep-define "igrep" "\
|
|
6533 Define ANALOGUE-COMMAND as an `igrep' analogue command.
|
|
6534 Optional (VARIABLE VALUE) arguments specify temporary bindings for the command." nil 'macro)
|
|
6535
|
|
6536 (autoload 'igrep-find "igrep" "\
|
|
6537 *Run `grep` via `find`; see \\[igrep] and `igrep-find'.
|
|
6538 All arguments (including prefix arguments, when called interactively)
|
|
6539 are handled by `igrep'." t nil)
|
|
6540
|
|
6541 (autoload 'igrep-find-define "igrep" "\
|
|
6542 Define ANALOGUE-COMMAND-find as an `igrep' analogue `find` command.
|
|
6543 Optional (VARIABLE VALUE) arguments specify temporary bindings for the command." nil 'macro)
|
|
6544
|
|
6545 (autoload 'dired-do-igrep "igrep" "\
|
|
6546 *Run `grep` PROGRAM to match EXPRESSION (with optional OPTIONS)
|
|
6547 on the marked (or next prefix ARG) files." t nil)
|
|
6548
|
|
6549 (defalias 'dired-do-grep 'dired-do-igrep)
|
|
6550
|
|
6551 (autoload 'dired-do-igrep-find "igrep" "\
|
|
6552 *Run `grep` PROGRAM to match EXPRESSION (with optional OPTIONS)
|
|
6553 on the marked (or next prefix ARG) directories." t nil)
|
|
6554
|
|
6555 (defalias 'dired-do-grep-find 'dired-do-igrep-find)
|
|
6556
|
|
6557 ;;;***
|
|
6558
|
12
|
6559 ;;;### (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")
|
|
6560
|
|
6561 (autoload 'info "info" "\
|
|
6562 Enter Info, the documentation browser.
|
|
6563 Optional argument FILE specifies the file to examine;
|
|
6564 the default is the top-level directory of Info.
|
|
6565
|
|
6566 In interactive use, a prefix argument directs this command
|
|
6567 to read a file name from the minibuffer." t nil)
|
|
6568
|
|
6569 (autoload 'Info-query "info" "\
|
|
6570 Enter Info, the documentation browser. Prompt for name of Info file." t nil)
|
|
6571
|
|
6572 (autoload 'Info-goto-node "info" "\
|
|
6573 Go to info node named NAME. Give just NODENAME or (FILENAME)NODENAME.
|
|
6574 Actually, the following interpretations of NAME are tried in order:
|
|
6575 (FILENAME)NODENAME
|
|
6576 (FILENAME) (using Top node)
|
|
6577 NODENAME (in current file)
|
|
6578 TAGNAME (see below)
|
|
6579 FILENAME (using Top node)
|
|
6580 where TAGNAME is a string that appears in quotes: \"TAGNAME\", in an
|
|
6581 annotation for any node of any file. (See `a' and `x' commands.)" t nil)
|
|
6582
|
|
6583 (autoload 'Info-visit-file "info" "\
|
|
6584 Directly visit an info file." t nil)
|
|
6585
|
|
6586 (autoload 'Info-search "info" "\
|
|
6587 Search for REGEXP, starting from point, and select node it's found in." t nil)
|
|
6588
|
|
6589 (autoload 'Info-emacs-command "info" "\
|
|
6590 Look up an Emacs command in the Emacs manual in the Info system.
|
|
6591 This command is designed to be used whether you are already in Info or not." t nil)
|
|
6592
|
|
6593 (autoload 'Info-goto-emacs-command-node "info" "\
|
|
6594 Look up an Emacs command in the Emacs manual in the Info system.
|
|
6595 This command is designed to be used whether you are already in Info or not." t nil)
|
|
6596
|
|
6597 (autoload 'Info-goto-emacs-key-command-node "info" "\
|
|
6598 Look up an Emacs key sequence in the Emacs manual in the Info system.
|
|
6599 This command is designed to be used whether you are already in Info or not." t nil)
|
|
6600
|
|
6601 (autoload 'Info-emacs-key "info" "\
|
|
6602 Look up an Emacs key sequence in the Emacs manual in the Info system.
|
|
6603 This command is designed to be used whether you are already in Info or not." t nil)
|
|
6604
|
|
6605 (autoload 'Info-elisp-ref "info" "\
|
|
6606 Look up an Emacs Lisp function in the Elisp manual in the Info system.
|
|
6607 This command is designed to be used whether you are already in Info or not." t nil)
|
|
6608
|
|
6609 ;;;***
|
|
6610
|
|
6611 ;;;### (autoloads (batch-info-validate Info-validate Info-split Info-tagify) "informat" "packages/informat.el")
|
|
6612
|
|
6613 (autoload 'Info-tagify "informat" "\
|
|
6614 Create or update Info-file tag table in current buffer." t nil)
|
|
6615
|
|
6616 (autoload 'Info-split "informat" "\
|
|
6617 Split an info file into an indirect file plus bounded-size subfiles.
|
|
6618 Each subfile will be up to 50,000 characters plus one node.
|
|
6619
|
|
6620 To use this command, first visit a large Info file that has a tag
|
|
6621 table. The buffer is modified into a (small) indirect info file which
|
|
6622 should be saved in place of the original visited file.
|
|
6623
|
|
6624 The subfiles are written in the same directory the original file is
|
|
6625 in, with names generated by appending `-' and a number to the original
|
|
6626 file name. The indirect file still functions as an Info file, but it
|
|
6627 contains just the tag table and a directory of subfiles." t nil)
|
|
6628
|
|
6629 (autoload 'Info-validate "informat" "\
|
|
6630 Check current buffer for validity as an Info file.
|
|
6631 Check that every node pointer points to an existing node." t nil)
|
|
6632
|
|
6633 (autoload 'batch-info-validate "informat" "\
|
|
6634 Runs `Info-validate' on the files remaining on the command line.
|
|
6635 Must be used only with -batch, and kills Emacs on completion.
|
|
6636 Each file will be processed even if an error occurred previously.
|
|
6637 For example, invoke \"emacs -batch -f batch-info-validate $info/ ~/*.info\"" nil nil)
|
|
6638
|
|
6639 ;;;***
|
|
6640
|
|
6641 ;;;### (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")
|
|
6642
|
|
6643 (defvar ispell-personal-dictionary nil "\
|
|
6644 *File name of your personal spelling dictionary, or nil.
|
|
6645 If nil, the default personal dictionary, \"~/.ispell_DICTNAME\" is used,
|
|
6646 where DICTNAME is the name of your default dictionary.")
|
|
6647
|
|
6648 (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)))
|
|
6649
|
|
6650 (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)))
|
|
6651
|
|
6652 (defvar ispell-dictionary-alist (append ispell-dictionary-alist-1 ispell-dictionary-alist-2) "\
|
|
6653 An alist of dictionaries and their associated parameters.
|
|
6654
|
|
6655 Each element of this list is also a list:
|
|
6656
|
|
6657 \(DICTIONARY-NAME CASECHARS NOT-CASECHARS OTHERCHARS MANY-OTHERCHARS-P
|
|
6658 ISPELL-ARGS EXTENDED-CHARACTER-MODE)
|
|
6659
|
|
6660 DICTIONARY-NAME is a possible value of variable `ispell-dictionary', nil
|
|
6661 means the default dictionary.
|
|
6662
|
|
6663 CASECHARS is a regular expression of valid characters that comprise a
|
|
6664 word.
|
|
6665
|
|
6666 NOT-CASECHARS is the opposite regexp of CASECHARS.
|
|
6667
|
|
6668 OTHERCHARS is a regular expression of other characters that are valid
|
|
6669 in word constructs. Otherchars cannot be adjacent to each other in a
|
|
6670 word, nor can they begin or end a word. This implies we can't check
|
|
6671 \"Stevens'\" as a correct possessive and other correct formations.
|
|
6672
|
|
6673 Hint: regexp syntax requires the hyphen to be declared first here.
|
|
6674
|
|
6675 MANY-OTHERCHARS-P is non-nil if many otherchars are to be allowed in a
|
|
6676 word instead of only one.
|
|
6677
|
|
6678 ISPELL-ARGS is a list of additional arguments passed to the ispell
|
|
6679 subprocess.
|
|
6680
|
|
6681 EXTENDED-CHARACTER-MODE should be used when dictionaries are used which
|
|
6682 have been configured in an Ispell affix file. (For example, umlauts
|
|
6683 can be encoded as \\\"a, a\\\", \"a, ...) Defaults are ~tex and ~nroff
|
|
6684 in English. This has the same effect as the command-line `-T' option.
|
|
6685 The buffer Major Mode controls Ispell's parsing in tex or nroff mode,
|
|
6686 but the dictionary can control the extended character mode.
|
|
6687 Both defaults can be overruled in a buffer-local fashion. See
|
|
6688 `ispell-parsing-keyword' for details on this.
|
|
6689
|
|
6690 Note that the CASECHARS and OTHERCHARS slots of the alist should
|
|
6691 contain the same character set as casechars and otherchars in the
|
|
6692 language.aff file (e.g., english.aff).")
|
|
6693
|
|
6694 (defvar ispell-menu-map nil "\
|
|
6695 Key map for ispell menu")
|
|
6696
|
|
6697 (defvar ispell-menu-xemacs nil "\
|
|
6698 Spelling menu for XEmacs.")
|
|
6699
|
|
6700 (defconst ispell-menu-map-needed (and (not ispell-menu-map) (string-lessp "19" emacs-version) (not (string-match "XEmacs" emacs-version))))
|
|
6701
|
|
6702 (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))))))))
|
|
6703
|
|
6704 (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))))
|
|
6705
|
|
6706 (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))))
|
|
6707
|
|
6708 (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))))
|
|
6709
|
|
6710 (defvar ispell-local-pdict ispell-personal-dictionary "\
|
|
6711 A buffer local variable containing the current personal dictionary.
|
|
6712 If non-nil, the value must be a string, which is a file name.
|
|
6713
|
|
6714 If you specify a personal dictionary for the current buffer which is
|
|
6715 different from the current personal dictionary, the effect is similar
|
|
6716 to calling \\[ispell-change-dictionary]. This variable is automatically
|
|
6717 set when defined in the file with either `ispell-pdict-keyword' or the
|
|
6718 local variable syntax.")
|
|
6719
|
|
6720 (define-key global-map [(meta 36)] 'ispell-word)
|
|
6721
|
|
6722 (autoload 'ispell-word "ispell" "\
|
|
6723 Check spelling of word under or before the cursor.
|
|
6724 If the word is not found in dictionary, display possible corrections
|
|
6725 in a window allowing you to choose one.
|
|
6726
|
|
6727 With a prefix argument (or if CONTINUE is non-nil),
|
|
6728 resume interrupted spell-checking of a buffer or region.
|
|
6729
|
|
6730 If optional argument FOLLOWING is non-nil or if `ispell-following-word'
|
|
6731 is non-nil when called interactively, then the following word
|
|
6732 \(rather than preceding) is checked when the cursor is not over a word.
|
|
6733 When the optional argument QUIETLY is non-nil or `ispell-quietly' is non-nil
|
|
6734 when called interactively, non-corrective messages are suppressed.
|
|
6735
|
|
6736 Word syntax described by `ispell-dictionary-alist' (which see).
|
|
6737
|
|
6738 This will check or reload the dictionary. Use \\[ispell-change-dictionary]
|
|
6739 or \\[ispell-region] to update the Ispell process." t nil)
|
|
6740
|
|
6741 (autoload 'ispell-help "ispell" "\
|
|
6742 Display a list of the options available when a misspelling is encountered.
|
|
6743
|
|
6744 Selections are:
|
|
6745
|
|
6746 DIGIT: Replace the word with a digit offered in the *Choices* buffer.
|
|
6747 SPC: Accept word this time.
|
|
6748 `i': Accept word and insert into private dictionary.
|
|
6749 `a': Accept word for this session.
|
|
6750 `A': Accept word and place in `buffer-local dictionary'.
|
|
6751 `r': Replace word with typed-in value. Rechecked.
|
|
6752 `R': Replace word with typed-in value. Query-replaced in buffer. Rechecked.
|
|
6753 `?': Show these commands.
|
|
6754 `x': Exit spelling buffer. Move cursor to original point.
|
|
6755 `X': Exit spelling buffer. Leaves cursor at the current point, and permits
|
|
6756 the aborted check to be completed later.
|
|
6757 `q': Quit spelling session (Kills ispell process).
|
|
6758 `l': Look up typed-in replacement in alternate dictionary. Wildcards okay.
|
|
6759 `u': Like `i', but the word is lower-cased first.
|
|
6760 `m': Like `i', but allows one to include dictionary completion information.
|
|
6761 `C-l': redraws screen
|
|
6762 `C-r': recursive edit
|
|
6763 `C-z': suspend emacs or iconify frame" nil nil)
|
|
6764
|
|
6765 (autoload 'ispell-kill-ispell "ispell" "\
|
|
6766 Kill current Ispell process (so that you may start a fresh one).
|
|
6767 With NO-ERROR, just return non-nil if there was no Ispell running." t nil)
|
|
6768
|
|
6769 (autoload 'ispell-change-dictionary "ispell" "\
|
|
6770 Change `ispell-dictionary' (q.v.) and kill old Ispell process.
|
|
6771 A new one will be started as soon as necessary.
|
|
6772
|
|
6773 By just answering RET you can find out what the current dictionary is.
|
|
6774
|
|
6775 With prefix argument, set the default directory." t nil)
|
|
6776
|
|
6777 (autoload 'ispell-region "ispell" "\
|
|
6778 Interactively check a region for spelling errors." t nil)
|
|
6779
|
|
6780 (autoload 'ispell-buffer "ispell" "\
|
|
6781 Check the current buffer for spelling errors interactively." t nil)
|
|
6782
|
|
6783 (autoload 'ispell-continue "ispell" nil t nil)
|
|
6784
|
|
6785 (autoload 'ispell-complete-word "ispell" "\
|
|
6786 Look up word before or under point in dictionary (see lookup-words command)
|
|
6787 and try to complete it. If optional INTERIOR-FRAG is non-nil then the word
|
|
6788 may be a character sequence inside of a word.
|
|
6789
|
|
6790 Standard ispell choices are then available." t nil)
|
|
6791
|
|
6792 (autoload 'ispell-complete-word-interior-frag "ispell" "\
|
|
6793 Completes word matching character sequence inside a word." t nil)
|
|
6794
|
|
6795 (autoload 'ispell-minor-mode "ispell" "\
|
|
6796 Toggle Ispell minor mode.
|
|
6797 With prefix arg, turn Ispell minor mode on iff arg is positive.
|
|
6798
|
|
6799 In Ispell minor mode, pressing SPC or RET
|
|
6800 warns you if the previous word is incorrectly spelled." t nil)
|
|
6801
|
|
6802 (autoload 'ispell-message "ispell" "\
|
|
6803 Check the spelling of a mail message or news post.
|
|
6804 Don't check spelling of message headers except the Subject field.
|
|
6805 Don't check included messages.
|
|
6806
|
|
6807 To abort spell checking of a message region and send the message anyway,
|
|
6808 use the `x' or `q' command. (Any subsequent regions will be checked.)
|
|
6809 The `X' command aborts the message send so that you can edit the buffer.
|
|
6810
|
|
6811 To spell-check whenever a message is sent, include the appropriate lines
|
|
6812 in your .emacs file:
|
|
6813 (add-hook 'message-send-hook 'ispell-message)
|
|
6814 (add-hook 'mail-send-hook 'ispell-message)
|
|
6815 (add-hook 'mh-before-send-letter-hook 'ispell-message)
|
|
6816
|
|
6817 You can bind this to the key C-c i in GNUS or mail by adding to
|
|
6818 `news-reply-mode-hook' or `mail-mode-hook' the following lambda expression:
|
|
6819 (function (lambda () (local-set-key \"\\C-ci\" 'ispell-message)))" t nil)
|
|
6820
|
|
6821 ;;;***
|
|
6822
|
|
6823 ;;;### (autoloads (jka-compr-install toggle-auto-compression jka-compr-load) "jka-compr" "packages/jka-compr.el")
|
|
6824
|
|
6825 (autoload 'jka-compr-load "jka-compr" "\
|
|
6826 Documented as original." nil nil)
|
|
6827
|
|
6828 (autoload 'toggle-auto-compression "jka-compr" "\
|
|
6829 Toggle automatic file compression and uncompression.
|
|
6830 With prefix argument ARG, turn auto compression on if positive, else off.
|
|
6831 Returns the new status of auto compression (non-nil means on).
|
|
6832 If the argument MESSAGE is non-nil, it means to print a message
|
|
6833 saying whether the mode is now on or off." t nil)
|
|
6834
|
|
6835 (autoload 'jka-compr-install "jka-compr" "\
|
|
6836 Install jka-compr.
|
|
6837 This adds entries to `file-name-handler-alist' and `auto-mode-alist'
|
|
6838 and `inhibit-first-line-modes-suffixes'." nil nil)
|
|
6839
|
|
6840 ;;;***
|
|
6841
|
|
6842 ;;;### (autoloads (turn-on-lazy-lock lazy-lock-mode) "lazy-lock" "packages/lazy-lock.el")
|
|
6843
|
|
6844 (autoload 'lazy-lock-mode "lazy-lock" "\
|
|
6845 Toggle Lazy Lock mode.
|
|
6846 With arg, turn Lazy Lock mode on if and only if arg is positive and the buffer
|
|
6847 is at least `lazy-lock-minimum-size' characters long.
|
|
6848
|
|
6849 When Lazy Lock mode is enabled, fontification is demand-driven and stealthy:
|
|
6850
|
|
6851 - Fontification occurs in visible parts of buffers when necessary.
|
|
6852 Occurs if there is no input after pausing for `lazy-lock-continuity-time'.
|
|
6853
|
|
6854 - Fontification occurs in invisible parts when Emacs has been idle.
|
|
6855 Occurs if there is no input after pausing for `lazy-lock-stealth-time'.
|
|
6856
|
|
6857 If `lazy-lock-hide-invisible' is non-nil, text is not displayed until it is
|
|
6858 fontified, otherwise it is displayed in `lazy-lock-invisible-foreground'.
|
|
6859
|
|
6860 See also variables `lazy-lock-walk-windows' and `lazy-lock-ignore-commands' for
|
|
6861 window (scroll) fontification, and `lazy-lock-stealth-lines',
|
|
6862 `lazy-lock-stealth-nice' and `lazy-lock-stealth-verbose' for stealth
|
|
6863 fontification.
|
|
6864
|
|
6865 Use \\[lazy-lock-submit-bug-report] to send bug reports or feedback." t nil)
|
|
6866
|
|
6867 (autoload 'turn-on-lazy-lock "lazy-lock" "\
|
|
6868 Unconditionally turn on Lazy Lock mode." nil nil)
|
|
6869
|
24
|
6870 (when (fboundp 'add-minor-mode) (defvar lazy-lock-mode nil) (add-minor-mode 'lazy-lock-mode nil))
|
12
|
6871
|
|
6872 ;;;***
|
|
6873
|
|
6874 ;;;### (autoloads (ledit-from-lisp-mode ledit-mode) "ledit" "packages/ledit.el")
|
|
6875
|
|
6876 (defconst ledit-save-files t "\
|
|
6877 *Non-nil means Ledit should save files before transferring to Lisp.")
|
|
6878
|
|
6879 (defconst ledit-go-to-lisp-string "%?lisp" "\
|
|
6880 *Shell commands to execute to resume Lisp job.")
|
|
6881
|
|
6882 (defconst ledit-go-to-liszt-string "%?liszt" "\
|
|
6883 *Shell commands to execute to resume Lisp compiler job.")
|
|
6884
|
|
6885 (autoload 'ledit-mode "ledit" "\
|
|
6886 \\<ledit-mode-map>Major mode for editing text and stuffing it to a Lisp job.
|
|
6887 Like Lisp mode, plus these special commands:
|
|
6888 \\[ledit-save-defun] -- record defun at or after point
|
|
6889 for later transmission to Lisp job.
|
|
6890 \\[ledit-save-region] -- record region for later transmission to Lisp job.
|
|
6891 \\[ledit-go-to-lisp] -- transfer to Lisp job and transmit saved text.
|
|
6892 \\[ledit-go-to-liszt] -- transfer to Liszt (Lisp compiler) job
|
|
6893 and transmit saved text.
|
|
6894 \\{ledit-mode-map}
|
|
6895 To make Lisp mode automatically change to Ledit mode,
|
|
6896 do (setq lisp-mode-hook 'ledit-from-lisp-mode)" t nil)
|
|
6897
|
|
6898 (autoload 'ledit-from-lisp-mode "ledit" nil nil nil)
|
|
6899
|
|
6900 ;;;***
|
|
6901
|
|
6902 ;;;### (autoloads (print-region lpr-region print-buffer lpr-buffer) "lpr" "packages/lpr.el")
|
|
6903
|
|
6904 (defvar lpr-switches nil "\
|
|
6905 *List of strings to pass as extra options for the printer program.
|
|
6906 See `lpr-command'.")
|
|
6907
|
|
6908 (defvar lpr-command (if (memq system-type '(usg-unix-v dgux hpux irix)) "lp" "lpr") "\
|
|
6909 *Name of program for printing a file.")
|
|
6910
|
|
6911 (autoload 'lpr-buffer "lpr" "\
|
|
6912 Print buffer contents as with Unix command `lpr'.
|
|
6913 `lpr-switches' is a list of extra switches (strings) to pass to lpr." t nil)
|
|
6914
|
|
6915 (autoload 'print-buffer "lpr" "\
|
|
6916 Print buffer contents as with Unix command `lpr -p'.
|
|
6917 `lpr-switches' is a list of extra switches (strings) to pass to lpr." t nil)
|
|
6918
|
|
6919 (autoload 'lpr-region "lpr" "\
|
|
6920 Print region contents as with Unix command `lpr'.
|
|
6921 `lpr-switches' is a list of extra switches (strings) to pass to lpr." t nil)
|
|
6922
|
|
6923 (autoload 'print-region "lpr" "\
|
|
6924 Print region contents as with Unix command `lpr -p'.
|
|
6925 `lpr-switches' is a list of extra switches (strings) to pass to lpr." t nil)
|
|
6926
|
|
6927 ;;;***
|
|
6928
|
|
6929 ;;;### (autoloads (make-command-summary) "makesum" "packages/makesum.el")
|
|
6930
|
|
6931 (autoload 'make-command-summary "makesum" "\
|
|
6932 Make a summary of current key bindings in the buffer *Summary*.
|
|
6933 Previous contents of that buffer are killed first." t nil)
|
|
6934
|
|
6935 ;;;***
|
|
6936
|
|
6937 ;;;### (autoloads (manual-entry) "man" "packages/man.el")
|
|
6938
|
|
6939 (autoload 'manual-entry "man" "\
|
24
|
6940 Display the Unix manual entry (or entries) for TOPIC." t nil)
|
12
|
6941
|
|
6942 ;;;***
|
|
6943
|
|
6944 ;;;### (autoloads (metamail-region metamail-buffer metamail-interpret-body metamail-interpret-header) "metamail" "packages/metamail.el")
|
|
6945
|
|
6946 (autoload 'metamail-interpret-header "metamail" "\
|
|
6947 Interpret a header part of a MIME message in current buffer.
|
|
6948 Its body part is not interpreted at all." t nil)
|
|
6949
|
|
6950 (autoload 'metamail-interpret-body "metamail" "\
|
|
6951 Interpret a body part of a MIME message in current buffer.
|
|
6952 Optional argument VIEWMODE specifies the value of the
|
|
6953 EMACS_VIEW_MODE environment variable (defaulted to 1).
|
|
6954 Optional argument NODISPLAY non-nil means buffer is not
|
|
6955 redisplayed as output is inserted.
|
|
6956 Its header part is not interpreted at all." t nil)
|
|
6957
|
|
6958 (autoload 'metamail-buffer "metamail" "\
|
|
6959 Process current buffer through `metamail'.
|
|
6960 Optional argument VIEWMODE specifies the value of the
|
|
6961 EMACS_VIEW_MODE environment variable (defaulted to 1).
|
|
6962 Optional argument BUFFER specifies a buffer to be filled (nil
|
|
6963 means current).
|
|
6964 Optional argument NODISPLAY non-nil means buffer is not
|
|
6965 redisplayed as output is inserted." t nil)
|
|
6966
|
|
6967 (autoload 'metamail-region "metamail" "\
|
|
6968 Process current region through 'metamail'.
|
|
6969 Optional argument VIEWMODE specifies the value of the
|
|
6970 EMACS_VIEW_MODE environment variable (defaulted to 1).
|
|
6971 Optional argument BUFFER specifies a buffer to be filled (nil
|
|
6972 means current).
|
|
6973 Optional argument NODISPLAY non-nil means buffer is not
|
|
6974 redisplayed as output is inserted." t nil)
|
|
6975
|
|
6976 ;;;***
|
|
6977
|
|
6978 ;;;### (autoloads (blink-paren paren-set-mode) "paren" "packages/paren.el")
|
|
6979
|
|
6980 (defvar paren-mode nil "\
|
|
6981 *Sets the style of parenthesis highlighting.
|
|
6982 Valid values are nil, `blink-paren', `paren', and `sexp'.
|
|
6983 nil no parenthesis highlighting.
|
|
6984 blink-paren causes the matching paren to blink.
|
|
6985 paren causes the matching paren to be highlighted but not to blink.
|
|
6986 sexp whole expression enclosed by the local paren at its mate.
|
|
6987 nested (not yet implemented) use variable shading to see the
|
|
6988 nesting of an expression. Also groks regular expressions
|
|
6989 and shell quoting.
|
|
6990
|
|
6991 This variable is global by default, but you can make it buffer-local and
|
|
6992 highlight parentheses differrently in different major modes.")
|
|
6993
|
|
6994 (autoload 'paren-set-mode "paren" "\
|
|
6995 Cycles through possible values for `paren-mode', force off with negative arg.
|
|
6996 When called from lisp, a symbolic value for `paren-mode' can be pased directly.
|
|
6997 See also `paren-mode' and `paren-highlight'." t nil)
|
|
6998
|
|
6999 (make-obsolete 'blink-paren 'paren-set-mode)
|
|
7000
|
|
7001 (autoload 'blink-paren "paren" "\
|
|
7002 Obsolete. Use `paren-set-mode' instead." t nil)
|
|
7003
|
|
7004 ;;;***
|
|
7005
|
|
7006 ;;;### (autoloads (pending-delete pending-delete-off pending-delete-on) "pending-del" "packages/pending-del.el")
|
|
7007
|
|
7008 (autoload 'pending-delete-on "pending-del" "\
|
|
7009 Turn on pending delete.
|
|
7010 When it is ON, typed text replaces the selection if the selection is active.
|
|
7011 When it is OFF, typed text is just inserted at point." t nil)
|
|
7012
|
|
7013 (autoload 'pending-delete-off "pending-del" "\
|
|
7014 Turn off pending delete.
|
|
7015 When it is ON, typed text replaces the selection if the selection is active.
|
|
7016 When it is OFF, typed text is just inserted at point." t nil)
|
|
7017
|
|
7018 (autoload 'pending-delete "pending-del" "\
|
|
7019 Toggle automatic deletion of the selected region.
|
|
7020 With a positive argument, turns it on.
|
|
7021 With a non-positive argument, turns it off.
|
|
7022 When active, typed text replaces the selection." t nil)
|
|
7023
|
|
7024 ;;;***
|
|
7025
|
16
|
7026 ;;;### (autoloads (ps-setup ps-nb-pages-region ps-nb-pages-buffer ps-line-lengths 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")
|
|
7027
|
|
7028 (defvar ps-paper-type 'letter "\
|
|
7029 *Specifies the size of paper to format for.
|
|
7030 Should be one of the paper types defined in `ps-page-dimensions-database', for
|
|
7031 example `letter', `legal' or `a4'.")
|
|
7032
|
|
7033 (defvar ps-print-color-p (or (fboundp 'x-color-values) (fboundp 'color-instance-rgb-components)) "\
|
12
|
7034 *If non-nil, print the buffer's text in color.")
|
|
7035
|
|
7036 (autoload 'ps-print-buffer "ps-print" "\
|
|
7037 Generate and print a PostScript image of the buffer.
|
|
7038
|
|
7039 When called with a numeric prefix argument (C-u), prompts the user for
|
|
7040 the name of a file to save the PostScript image in, instead of sending
|
|
7041 it to the printer.
|
|
7042
|
|
7043 More specifically, the FILENAME argument is treated as follows: if it
|
|
7044 is nil, send the image to the printer. If FILENAME is a string, save
|
|
7045 the PostScript image in a file with that name. If FILENAME is a
|
|
7046 number, prompt the user for the name of the file to save in." t nil)
|
|
7047
|
|
7048 (autoload 'ps-print-buffer-with-faces "ps-print" "\
|
|
7049 Generate and print a PostScript image of the buffer.
|
|
7050 Like `ps-print-buffer', but includes font, color, and underline
|
|
7051 information in the generated image. This command works only if you
|
|
7052 are using a window system, so it has a way to determine color values." t nil)
|
|
7053
|
|
7054 (autoload 'ps-print-region "ps-print" "\
|
|
7055 Generate and print a PostScript image of the region.
|
|
7056 Like `ps-print-buffer', but prints just the current region." t nil)
|
|
7057
|
|
7058 (autoload 'ps-print-region-with-faces "ps-print" "\
|
|
7059 Generate and print a PostScript image of the region.
|
|
7060 Like `ps-print-region', but includes font, color, and underline
|
|
7061 information in the generated image. This command works only if you
|
|
7062 are using a window system, so it has a way to determine color values." t nil)
|
|
7063
|
|
7064 (autoload 'ps-spool-buffer "ps-print" "\
|
|
7065 Generate and spool a PostScript image of the buffer.
|
|
7066 Like `ps-print-buffer' except that the PostScript image is saved in a
|
|
7067 local buffer to be sent to the printer later.
|
|
7068
|
|
7069 Use the command `ps-despool' to send the spooled images to the printer." t nil)
|
|
7070
|
|
7071 (autoload 'ps-spool-buffer-with-faces "ps-print" "\
|
|
7072 Generate and spool a PostScript image of the buffer.
|
|
7073 Like `ps-spool-buffer', but includes font, color, and underline
|
|
7074 information in the generated image. This command works only if you
|
|
7075 are using a window system, so it has a way to determine color values.
|
|
7076
|
|
7077 Use the command `ps-despool' to send the spooled images to the printer." t nil)
|
|
7078
|
|
7079 (autoload 'ps-spool-region "ps-print" "\
|
|
7080 Generate a PostScript image of the region and spool locally.
|
|
7081 Like `ps-spool-buffer', but spools just the current region.
|
|
7082
|
|
7083 Use the command `ps-despool' to send the spooled images to the printer." t nil)
|
|
7084
|
|
7085 (autoload 'ps-spool-region-with-faces "ps-print" "\
|
|
7086 Generate a PostScript image of the region and spool locally.
|
|
7087 Like `ps-spool-region', but includes font, color, and underline
|
|
7088 information in the generated image. This command works only if you
|
|
7089 are using a window system, so it has a way to determine color values.
|
|
7090
|
|
7091 Use the command `ps-despool' to send the spooled images to the printer." t nil)
|
|
7092
|
|
7093 (autoload 'ps-despool "ps-print" "\
|
|
7094 Send the spooled PostScript to the printer.
|
|
7095
|
|
7096 When called with a numeric prefix argument (C-u), prompt the user for
|
|
7097 the name of a file to save the spooled PostScript in, instead of sending
|
|
7098 it to the printer.
|
|
7099
|
|
7100 More specifically, the FILENAME argument is treated as follows: if it
|
|
7101 is nil, send the image to the printer. If FILENAME is a string, save
|
|
7102 the PostScript image in a file with that name. If FILENAME is a
|
|
7103 number, prompt the user for the name of the file to save in." t nil)
|
|
7104
|
16
|
7105 (autoload 'ps-line-lengths "ps-print" "\
|
|
7106 *Display the correspondence between a line length and a font size,
|
|
7107 using the current ps-print setup.
|
|
7108 Try: pr -t file | awk '{printf \"%3d %s
|
|
7109 \", length($0), $0}' | sort -r | head" t nil)
|
|
7110
|
|
7111 (autoload 'ps-nb-pages-buffer "ps-print" "\
|
|
7112 *Display an approximate correspondence between a font size and the number
|
|
7113 of pages the current buffer would require to print
|
|
7114 using the current ps-print setup." t nil)
|
|
7115
|
|
7116 (autoload 'ps-nb-pages-region "ps-print" "\
|
|
7117 *Display an approximate correspondence between a font size and the number
|
|
7118 of pages the current region would require to print
|
|
7119 using the current ps-print setup." t nil)
|
|
7120
|
|
7121 (autoload 'ps-setup "ps-print" "\
|
|
7122 *Return the current setup" nil nil)
|
|
7123
|
12
|
7124 ;;;***
|
|
7125
|
|
7126 ;;;### (autoloads (remote-compile) "rcompile" "packages/rcompile.el")
|
|
7127
|
|
7128 (autoload 'remote-compile "rcompile" "\
|
|
7129 Compile the current buffer's directory on HOST. Log in as USER.
|
|
7130 See \\[compile]." t nil)
|
|
7131
|
|
7132 ;;;***
|
|
7133
|
|
7134 ;;;### (autoloads (resume-suspend-hook) "resume" "packages/resume.el")
|
|
7135
|
|
7136 (autoload 'resume-suspend-hook "resume" "\
|
|
7137 Clear out the file used for transmitting args when Emacs resumes." nil nil)
|
|
7138
|
|
7139 ;;;***
|
|
7140
|
|
7141 ;;;### (autoloads nil "server" "packages/server.el")
|
|
7142
|
|
7143 (make-obsolete 'server-start 'gnuserv-start)
|
|
7144
|
|
7145 ;;;***
|
|
7146
|
|
7147 ;;;### (autoloads (install-shell-fonts) "shell-font" "packages/shell-font.el")
|
|
7148
|
|
7149 (autoload 'install-shell-fonts "shell-font" "\
|
|
7150 Decorate the current interaction buffer with fonts.
|
|
7151 This uses the faces called `shell-prompt', `shell-input' and `shell-output';
|
|
7152 you can alter the graphical attributes of those with the normal
|
|
7153 face-manipulation functions." nil nil)
|
|
7154
|
|
7155 ;;;***
|
|
7156
|
|
7157 ;;;### (autoloads (spell-string spell-region spell-word spell-buffer) "spell" "packages/spell.el")
|
|
7158
|
|
7159 (put 'spell-filter 'risky-local-variable t)
|
|
7160
|
|
7161 (autoload 'spell-buffer "spell" "\
|
|
7162 Check spelling of every word in the buffer.
|
|
7163 For each incorrect word, you are asked for the correct spelling
|
|
7164 and then put into a query-replace to fix some or all occurrences.
|
|
7165 If you do not want to change a word, just give the same word
|
|
7166 as its \"correct\" spelling; then the query replace is skipped." t nil)
|
|
7167
|
|
7168 (autoload 'spell-word "spell" "\
|
|
7169 Check spelling of word at or before point.
|
|
7170 If it is not correct, ask user for the correct spelling
|
|
7171 and `query-replace' the entire buffer to substitute it." t nil)
|
|
7172
|
|
7173 (autoload 'spell-region "spell" "\
|
|
7174 Like `spell-buffer' but applies only to region.
|
|
7175 Used in a program, applies from START to END.
|
|
7176 DESCRIPTION is an optional string naming the unit being checked:
|
|
7177 for example, \"word\"." t nil)
|
|
7178
|
|
7179 (autoload 'spell-string "spell" "\
|
|
7180 Check spelling of string supplied as argument." t nil)
|
|
7181
|
|
7182 ;;;***
|
|
7183
|
|
7184 ;;;### (autoloads (tar-mode) "tar-mode" "packages/tar-mode.el")
|
|
7185
|
|
7186 (autoload 'tar-mode "tar-mode" "\
|
|
7187 Major mode for viewing a tar file as a dired-like listing of its contents.
|
|
7188 You can move around using the usual cursor motion commands.
|
|
7189 Letters no longer insert themselves.
|
|
7190 Type 'e' to pull a file out of the tar file and into its own buffer.
|
|
7191 Type 'c' to copy an entry from the tar file into another file on disk.
|
|
7192
|
|
7193 If you edit a sub-file of this archive (as with the 'e' command) and
|
|
7194 save it with Control-X Control-S, the contents of that buffer will be
|
|
7195 saved back into the tar-file buffer; in this way you can edit a file
|
|
7196 inside of a tar archive without extracting it and re-archiving it.
|
|
7197
|
|
7198 See also: variables tar-update-datestamp and tar-anal-blocksize.
|
|
7199 \\{tar-mode-map}" nil nil)
|
|
7200
|
|
7201 ;;;***
|
|
7202
|
|
7203 ;;;### (autoloads (terminal-emulator) "terminal" "packages/terminal.el")
|
|
7204
|
|
7205 (autoload 'terminal-emulator "terminal" "\
|
|
7206 Under a display-terminal emulator in BUFFER, run PROGRAM on arguments ARGS.
|
|
7207 ARGS is a list of argument-strings. Remaining arguments are WIDTH and HEIGHT.
|
|
7208 BUFFER's contents are made an image of the display generated by that program,
|
|
7209 and any input typed when BUFFER is the current Emacs buffer is sent to that
|
|
7210 program an keyboard input.
|
|
7211
|
|
7212 Interactively, BUFFER defaults to \"*terminal*\" and PROGRAM and ARGS
|
|
7213 are parsed from an input-string using your usual shell.
|
|
7214 WIDTH and HEIGHT are determined from the size of the current window
|
|
7215 -- WIDTH will be one less than the window's width, HEIGHT will be its height.
|
|
7216
|
|
7217 To switch buffers and leave the emulator, or to give commands
|
|
7218 to the emulator itself (as opposed to the program running under it),
|
|
7219 type Control-^. The following character is an emulator command.
|
|
7220 Type Control-^ twice to send it to the subprogram.
|
|
7221 This escape character may be changed using the variable `terminal-escape-char'.
|
|
7222
|
|
7223 `Meta' characters may not currently be sent through the terminal emulator.
|
|
7224
|
|
7225 Here is a list of some of the variables which control the behaviour
|
|
7226 of the emulator -- see their documentation for more information:
|
|
7227 terminal-escape-char, terminal-scrolling, terminal-more-processing,
|
|
7228 terminal-redisplay-interval.
|
|
7229
|
|
7230 This function calls the value of terminal-mode-hook if that exists
|
|
7231 and is non-nil after the terminal buffer has been set up and the
|
|
7232 subprocess started.
|
|
7233
|
|
7234 Presently with `termcap' only; if somebody sends us code to make this
|
|
7235 work with `terminfo' we will try to use it." t nil)
|
|
7236
|
|
7237 ;;;***
|
|
7238
|
|
7239 ;;;### (autoloads (batch-texinfo-format texinfo-format-region texinfo-format-buffer) "texinfmt" "packages/texinfmt.el")
|
|
7240
|
|
7241 (autoload 'texinfo-format-buffer "texinfmt" "\
|
|
7242 Process the current buffer as texinfo code, into an Info file.
|
|
7243 The Info file output is generated in a buffer visiting the Info file
|
|
7244 names specified in the @setfilename command.
|
|
7245
|
|
7246 Non-nil argument (prefix, if interactive) means don't make tag table
|
|
7247 and don't split the file if large. You can use Info-tagify and
|
|
7248 Info-split to do these manually." t nil)
|
|
7249
|
|
7250 (autoload 'texinfo-format-region "texinfmt" "\
|
|
7251 Convert the current region of the Texinfo file to Info format.
|
|
7252 This lets you see what that part of the file will look like in Info.
|
|
7253 The command is bound to \\[texinfo-format-region]. The text that is
|
|
7254 converted to Info is stored in a temporary buffer." t nil)
|
|
7255
|
|
7256 (autoload 'batch-texinfo-format "texinfmt" "\
|
|
7257 Runs texinfo-format-buffer on the files remaining on the command line.
|
|
7258 Must be used only with -batch, and kills emacs on completion.
|
|
7259 Each file will be processed even if an error occurred previously.
|
|
7260 For example, invoke
|
|
7261 \"emacs -batch -funcall batch-texinfo-format $docs/ ~/*.texinfo\"." nil nil)
|
|
7262
|
|
7263 ;;;***
|
|
7264
|
|
7265 ;;;### (autoloads (texinfo-sequential-node-update texinfo-every-node-update texinfo-update-node) "texnfo-upd" "packages/texnfo-upd.el")
|
|
7266
|
|
7267 (autoload 'texinfo-update-node "texnfo-upd" "\
|
|
7268 Without any prefix argument, update the node in which point is located.
|
|
7269 Non-nil argument (prefix, if interactive) means update the nodes in the
|
|
7270 marked region.
|
|
7271
|
|
7272 The functions for creating or updating nodes and menus, and their
|
|
7273 keybindings, are:
|
|
7274
|
|
7275 texinfo-update-node (&optional region-p) \\[texinfo-update-node]
|
|
7276 texinfo-every-node-update () \\[texinfo-every-node-update]
|
|
7277 texinfo-sequential-node-update (&optional region-p)
|
|
7278
|
|
7279 texinfo-make-menu (&optional region-p) \\[texinfo-make-menu]
|
|
7280 texinfo-all-menus-update () \\[texinfo-all-menus-update]
|
|
7281 texinfo-master-menu ()
|
|
7282
|
|
7283 texinfo-indent-menu-description (column &optional region-p)
|
|
7284
|
|
7285 The `texinfo-column-for-description' variable specifies the column to
|
|
7286 which menu descriptions are indented. Its default value is 32." t nil)
|
|
7287
|
|
7288 (autoload 'texinfo-every-node-update "texnfo-upd" "\
|
|
7289 Update every node in a Texinfo file." t nil)
|
|
7290
|
|
7291 (autoload 'texinfo-sequential-node-update "texnfo-upd" "\
|
|
7292 Update one node (or many) in a Texinfo file with sequential pointers.
|
|
7293
|
|
7294 This function causes the `Next' or `Previous' pointer to point to the
|
|
7295 immediately preceding or following node, even if it is at a higher or
|
|
7296 lower hierarchical level in the document. Continually pressing `n' or
|
|
7297 `p' takes you straight through the file.
|
|
7298
|
|
7299 Without any prefix argument, update the node in which point is located.
|
|
7300 Non-nil argument (prefix, if interactive) means update the nodes in the
|
|
7301 marked region.
|
|
7302
|
|
7303 This command makes it awkward to navigate among sections and
|
|
7304 subsections; it should be used only for those documents that are meant
|
|
7305 to be read like a novel rather than a reference, and for which the
|
|
7306 Info `g*' command is inadequate." t nil)
|
|
7307
|
|
7308 ;;;***
|
|
7309
|
|
7310 ;;;### (autoloads (time-stamp-toggle-active time-stamp) "time-stamp" "packages/time-stamp.el")
|
|
7311
|
|
7312 (autoload 'time-stamp "time-stamp" "\
|
|
7313 Update the time stamp string in the buffer.
|
|
7314 If you put a time stamp template anywhere in the first 8 lines of a file,
|
|
7315 it can be updated every time you save the file. See the top of
|
|
7316 `time-stamp.el' for a sample. The template looks like one of the following:
|
|
7317 Time-stamp: <>
|
|
7318 Time-stamp: \" \"
|
|
7319 The time stamp is written between the brackets or quotes, resulting in
|
|
7320 Time-stamp: <95/01/18 10:20:51 gildea>
|
|
7321 Only does its thing if the variable time-stamp-active is non-nil.
|
|
7322 Typically used on write-file-hooks for automatic time-stamping.
|
|
7323 The format of the time stamp is determined by the variable time-stamp-format.
|
|
7324 The variables time-stamp-line-limit, time-stamp-start, and time-stamp-end
|
|
7325 control finding the template." t nil)
|
|
7326
|
|
7327 (autoload 'time-stamp-toggle-active "time-stamp" "\
|
|
7328 Toggle time-stamp-active, setting whether \\[time-stamp] updates a buffer.
|
|
7329 With arg, turn time stamping on if and only if arg is positive." t nil)
|
|
7330
|
|
7331 ;;;***
|
|
7332
|
|
7333 ;;;### (autoloads (display-time) "time" "packages/time.el")
|
|
7334
|
|
7335 (defvar display-time-day-and-date nil "\
|
|
7336 *Non-nil means \\[display-time] should display day and date as well as time.")
|
|
7337
|
|
7338 (autoload 'display-time "time" "\
|
|
7339 Display current time, load level, and mail flag in mode line of each buffer.
|
|
7340 Updates automatically every minute.
|
|
7341 If `display-time-day-and-date' is non-nil, the current day and date
|
|
7342 are displayed as well.
|
|
7343 After each update, `display-time-hook' is run with `run-hooks'.
|
|
7344 If `display-time-echo-area' is non-nil, the time is displayed in the
|
|
7345 echo area instead of in the mode-line." t nil)
|
|
7346
|
|
7347 ;;;***
|
|
7348
|
|
7349 ;;;### (autoloads (ununderline-and-unoverstrike-region overstrike-region unoverstrike-region ununderline-region underline-region) "underline" "packages/underline.el")
|
|
7350
|
|
7351 (autoload 'underline-region "underline" "\
|
|
7352 Underline all nonblank characters in the region.
|
|
7353 Works by overstriking underscores.
|
|
7354 Called from program, takes two arguments START and END
|
|
7355 which specify the range to operate on." t nil)
|
|
7356
|
|
7357 (autoload 'ununderline-region "underline" "\
|
|
7358 Remove all underlining (overstruck underscores) in the region.
|
|
7359 Called from program, takes two arguments START and END
|
|
7360 which specify the range to operate on." t nil)
|
|
7361
|
|
7362 (autoload 'unoverstrike-region "underline" "\
|
|
7363 Remove all overstriking (character-backspace-character) in the region.
|
|
7364 Called from program, takes two arguments START and END which specify the
|
|
7365 range to operate on." t nil)
|
|
7366
|
|
7367 (autoload 'overstrike-region "underline" "\
|
|
7368 Overstrike (character-backspace-character) all nonblank characters in
|
|
7369 the region. Called from program, takes two arguments START and END which
|
|
7370 specify the range to operate on." t nil)
|
|
7371
|
|
7372 (autoload 'ununderline-and-unoverstrike-region "underline" "\
|
|
7373 Remove underlining and overstriking in the region. Called from a program,
|
|
7374 takes two arguments START and END which specify the range to operate on." t nil)
|
|
7375
|
|
7376 ;;;***
|
|
7377
|
|
7378 ;;;### (autoloads (ask-to-update-copyright update-copyright) "upd-copyr" "packages/upd-copyr.el")
|
|
7379
|
|
7380 (defvar copyright-do-not-disturb "Free Software Foundation, Inc." "\
|
|
7381 *If non-nil, the existing copyright holder is checked against this regexp.
|
|
7382 If it does not match, then a new copyright line is added with the copyright
|
|
7383 holder set to the value of `copyright-whoami'.")
|
|
7384
|
|
7385 (defvar copyright-whoami nil "\
|
|
7386 *A string containing the name of the owner of new copyright notices.")
|
|
7387
|
|
7388 (defvar copyright-notice-file nil "\
|
|
7389 *If non-nil, replace copying notices with this file.")
|
|
7390
|
|
7391 (autoload 'update-copyright "upd-copyr" "\
|
|
7392 Update the copyright notice at the beginning of the buffer
|
|
7393 to indicate the current year. If optional arg REPLACE is given
|
|
7394 \(interactively, with prefix arg) replace the years in the notice
|
|
7395 rather than adding the current year after them.
|
|
7396 If `copyright-notice-file' is set, the copying permissions following the
|
|
7397 copyright are replaced as well.
|
|
7398
|
|
7399 If optional third argument ASK is non-nil, the user is prompted for whether
|
|
7400 or not to update the copyright. If optional fourth argument ASK-YEAR is
|
|
7401 non-nil, the user is prompted for whether or not to replace the year rather
|
|
7402 than adding to it." t nil)
|
|
7403
|
|
7404 (autoload 'ask-to-update-copyright "upd-copyr" "\
|
|
7405 If the current buffer contains a copyright notice that is out of date,
|
|
7406 ask the user if it should be updated with `update-copyright' (which see).
|
|
7407 Put this on write-file-hooks." nil nil)
|
|
7408
|
|
7409 ;;;***
|
|
7410
|
|
7411 ;;;### (autoloads (vc-update-change-log vc-rename-this-file 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")
|
|
7412
|
|
7413 (defvar vc-checkin-hook nil "\
|
|
7414 *List of functions called after a checkin is done. See `run-hooks'.")
|
|
7415
|
|
7416 (autoload 'vc-file-status "vc" "\
|
|
7417 Display the current status of the file being visited.
|
|
7418 Currently, this is only defined for CVS. The information provided in the
|
|
7419 modeline is generally sufficient for RCS and SCCS." t nil)
|
|
7420
|
|
7421 (autoload 'vc-next-action "vc" "\
|
|
7422 Do the next logical checkin or checkout operation on the current file.
|
|
7423
|
|
7424 For RCS and SCCS files:
|
|
7425 If the file is not already registered, this registers it for version
|
|
7426 control and then retrieves a writable, locked copy for editing.
|
|
7427 If the file is registered and not locked by anyone, this checks out
|
|
7428 a writable and locked file ready for editing.
|
|
7429 If the file is checked out and locked by the calling user, this
|
|
7430 first checks to see if the file has changed since checkout. If not,
|
|
7431 it performs a revert.
|
|
7432 If the file has been changed, this pops up a buffer for entry
|
|
7433 of a log message; when the message has been entered, it checks in the
|
|
7434 resulting changes along with the log message as change commentary. If
|
|
7435 the variable `vc-keep-workfiles' is non-nil (which is its default), a
|
|
7436 read-only copy of the changed file is left in place afterwards.
|
|
7437 If the file is registered and locked by someone else, you are given
|
|
7438 the option to steal the lock.
|
|
7439
|
|
7440 For CVS files:
|
|
7441 If the file is not already registered, this registers it for version
|
|
7442 control. This does a \"cvs add\", but no \"cvs commit\".
|
|
7443 If the file is added but not committed, it is committed.
|
|
7444 If the file has not been changed, neither in your working area or
|
|
7445 in the repository, a message is printed and nothing is done.
|
|
7446 If your working file is changed, but the repository file is
|
|
7447 unchanged, this pops up a buffer for entry of a log message; when the
|
|
7448 message has been entered, it checks in the resulting changes along
|
|
7449 with the logmessage as change commentary. A writable file is retained.
|
|
7450 If the repository file is changed, you are asked if you want to
|
|
7451 merge in the changes into your working copy.
|
|
7452
|
|
7453 The following is true regardless of which version control system you
|
|
7454 are using:
|
|
7455
|
|
7456 If you call this from within a VC dired buffer with no files marked,
|
|
7457 it will operate on the file in the current line.
|
|
7458 If you call this from within a VC dired buffer, and one or more
|
|
7459 files are marked, it will accept a log message and then operate on
|
|
7460 each one. The log message will be used as a comment for any register
|
|
7461 or checkin operations, but ignored when doing checkouts. Attempted
|
|
7462 lock steals will raise an error.
|
|
7463
|
|
7464 For checkin, a prefix argument lets you specify the version number to use." t nil)
|
|
7465
|
|
7466 (autoload 'vc-register "vc" "\
|
|
7467 Register the current file into your version-control system." t nil)
|
|
7468
|
|
7469 (autoload 'vc-diff "vc" "\
|
|
7470 Display diffs between file versions.
|
|
7471 Normally this compares the current file and buffer with the most recent
|
|
7472 checked in version of that file. This uses no arguments.
|
|
7473 With a prefix argument, it reads the file name to use
|
|
7474 and two version designators specifying which versions to compare." t nil)
|
|
7475
|
|
7476 (autoload 'vc-version-diff "vc" "\
|
|
7477 For FILE, report diffs between two stored versions REL1 and REL2 of it.
|
|
7478 If FILE is a directory, generate diffs between versions for all registered
|
|
7479 files in or below it." t nil)
|
|
7480
|
|
7481 (autoload 'vc-version-other-window "vc" "\
|
|
7482 Visit version REV of the current buffer in another window.
|
|
7483 If the current buffer is named `F', the version is named `F.~REV~'.
|
|
7484 If `F.~REV~' already exists, it is used instead of being re-created." t nil)
|
|
7485
|
|
7486 (autoload 'vc-insert-headers "vc" "\
|
|
7487 Insert headers in a file for use with your version-control system.
|
|
7488 Headers desired are inserted at the start of the buffer, and are pulled from
|
|
7489 the variable `vc-header-alist'." t nil)
|
|
7490
|
|
7491 (autoload 'vc-directory "vc" "\
|
|
7492 Show version-control status of all files in the directory DIR.
|
|
7493 If the second argument VERBOSE is non-nil, show all files;
|
|
7494 otherwise show only files that current locked in the version control system.
|
|
7495 Interactively, supply a prefix arg to make VERBOSE non-nil.
|
|
7496
|
|
7497 If the optional third argument NESTED is non-nil,
|
|
7498 scan the entire tree of subdirectories of the current directory." t nil)
|
|
7499
|
|
7500 (autoload 'vc-create-snapshot "vc" "\
|
|
7501 Make a snapshot called NAME.
|
|
7502 The snapshot is made from all registered files at or below the current
|
|
7503 directory. For each file, the version level of its latest
|
|
7504 version becomes part of the named configuration." t nil)
|
|
7505
|
|
7506 (autoload 'vc-retrieve-snapshot "vc" "\
|
|
7507 Retrieve the snapshot called NAME.
|
|
7508 This function fails if any files are locked at or below the current directory
|
|
7509 Otherwise, all registered files are checked out (unlocked) at their version
|
|
7510 levels in the snapshot." t nil)
|
|
7511
|
|
7512 (autoload 'vc-print-log "vc" "\
|
|
7513 List the change log of the current buffer in a window." t nil)
|
|
7514
|
|
7515 (autoload 'vc-revert-buffer "vc" "\
|
|
7516 Revert the current buffer's file back to the latest checked-in version.
|
|
7517 This asks for confirmation if the buffer contents are not identical
|
|
7518 to that version.
|
|
7519 If the back-end is CVS, this will give you the most recent revision of
|
|
7520 the file on the branch you are editing." t nil)
|
|
7521
|
|
7522 (autoload 'vc-cancel-version "vc" "\
|
|
7523 Get rid of most recently checked in version of this file.
|
|
7524 A prefix argument means do not revert the buffer afterwards." t nil)
|
|
7525
|
|
7526 (autoload 'vc-rename-file "vc" "\
|
|
7527 Rename file OLD to NEW, and rename its master file likewise." t nil)
|
|
7528
|
|
7529 (autoload 'vc-rename-this-file "vc" nil t nil)
|
|
7530
|
|
7531 (autoload 'vc-update-change-log "vc" "\
|
|
7532 Find change log file and add entries from recent RCS logs.
|
|
7533 The mark is left at the end of the text prepended to the change log.
|
|
7534 With prefix arg of C-u, only find log entries for the current buffer's file.
|
|
7535 With any numeric prefix arg, find log entries for all files currently visited.
|
|
7536 Otherwise, find log entries for all registered files in the default directory.
|
|
7537 From a program, any arguments are passed to the `rcs2log' script." t nil)
|
|
7538
|
|
7539 ;;;***
|
|
7540
|
22
|
7541 ;;;### (autoloads (webjump) "webjump" "packages/webjump.el")
|
|
7542
|
|
7543 (autoload 'webjump "webjump" "\
|
|
7544 Jumps to a Web site from a programmable hotlist.
|
|
7545
|
|
7546 See the documentation for the `webjump-sites' variable for how to customize the
|
|
7547 hotlist.
|
|
7548
|
|
7549 Feedback on WebJump can be sent to the author, Neil W. Van Dyke <nwv@acm.org>,
|
|
7550 or submitted via `\\[webjump-submit-bug-report]'. The latest version can be
|
|
7551 gotten from `http://www.cs.brown.edu/people/nwv/'." t nil)
|
|
7552
|
|
7553 ;;;***
|
|
7554
|
12
|
7555 ;;;### (autoloads (webster-spell webster-endings webster) "webster" "packages/webster.el")
|
|
7556
|
|
7557 (autoload 'webster "webster" "\
|
|
7558 Look up a word in the Webster's dictionary.
|
|
7559 Open a network login connection to a webster host if necessary.
|
|
7560 Communication with host is recorded in a buffer *webster*." t nil)
|
|
7561
|
|
7562 (autoload 'webster-endings "webster" "\
|
|
7563 Look up endings for a word in the Webster's dictionary.
|
|
7564 Open a network login connection to a webster host if necessary.
|
|
7565 Communication with host is recorded in a buffer *webster*." t nil)
|
|
7566
|
|
7567 (autoload 'webster-spell "webster" "\
|
|
7568 Look spelling for a word in the Webster's dictionary.
|
|
7569 Open a network login connection to a webster host if necessary.
|
|
7570 Communication with host is recorded in a buffer *webster*." t nil)
|
|
7571
|
|
7572 ;;;***
|
|
7573
|
|
7574 ;;;### (autoloads (run-scheme) "xscheme" "packages/xscheme.el")
|
|
7575
|
|
7576 (defvar scheme-program-name "scheme" "\
|
|
7577 *Program invoked by the `run-scheme' command.")
|
|
7578
|
|
7579 (defvar scheme-band-name nil "\
|
|
7580 *Band loaded by the `run-scheme' command.")
|
|
7581
|
|
7582 (defvar scheme-program-arguments nil "\
|
|
7583 *Arguments passed to the Scheme program by the `run-scheme' command.")
|
|
7584
|
|
7585 (autoload 'run-scheme "xscheme" "\
|
|
7586 Run an inferior Scheme process.
|
|
7587 Output goes to the buffer `*scheme*'.
|
|
7588 With argument, asks for a command line." t nil)
|
|
7589
|
|
7590 ;;;***
|
|
7591
|
|
7592 ;;;### (autoloads (pcl-cvs-fontify) "pcl-cvs-xemacs" "pcl-cvs/pcl-cvs-xemacs.el")
|
|
7593
|
|
7594 (autoload 'pcl-cvs-fontify "pcl-cvs-xemacs" nil nil nil)
|
|
7595
|
|
7596 ;;;***
|
|
7597
|
|
7598 ;;;### (autoloads (cvs-update-other-window cvs-update) "pcl-cvs" "pcl-cvs/pcl-cvs.el")
|
|
7599
|
|
7600 (autoload 'cvs-update "pcl-cvs" "\
|
|
7601 Run a 'cvs update' in the current working directory. Feed the
|
|
7602 output to a *cvs* buffer and run cvs-mode on it.
|
|
7603 If optional prefix argument LOCAL is non-nil, 'cvs update -l' is run." t nil)
|
|
7604
|
|
7605 (autoload 'cvs-update-other-window "pcl-cvs" "\
|
|
7606 Run a 'cvs update' in the current working directory. Feed the
|
|
7607 output to a *cvs* buffer, display it in the other window, and run
|
|
7608 cvs-mode on it.
|
|
7609
|
|
7610 If optional prefix argument LOCAL is non-nil, 'cvs update -l' is run." t nil)
|
|
7611
|
|
7612 ;;;***
|
|
7613
|
|
7614 ;;;### (autoloads (about-xemacs) "about" "prim/about.el")
|
|
7615
|
|
7616 (autoload 'about-xemacs "about" nil t nil)
|
|
7617
|
|
7618 ;;;***
|
|
7619
|
|
7620 ;;;### (autoloads (all-hail-emacs all-hail-xemacs praise-be-unto-emacs praise-be-unto-xemacs) "advocacy" "prim/advocacy.el")
|
|
7621
|
|
7622 (defvar xemacs-praise-sound-file "sounds/im_so_happy.au" "\
|
|
7623 The name of an audio file containing something to play
|
|
7624 when praising XEmacs")
|
|
7625
|
|
7626 (defvar xemacs-praise-message "All Hail XEmacs!\n" "\
|
|
7627 What to praise XEmacs with")
|
|
7628
|
|
7629 (autoload 'praise-be-unto-xemacs "advocacy" "\
|
|
7630 All Hail XEmacs!" t nil)
|
|
7631
|
|
7632 (autoload 'praise-be-unto-emacs "advocacy" nil t nil)
|
|
7633
|
|
7634 (autoload 'all-hail-xemacs "advocacy" "\
|
|
7635 All Hail XEmacs!" t nil)
|
|
7636
|
|
7637 (autoload 'all-hail-emacs "advocacy" nil t nil)
|
|
7638
|
|
7639 ;;;***
|
|
7640
|
|
7641 ;;;### (autoloads (describe-buffer-case-table) "case-table" "prim/case-table.el")
|
|
7642
|
|
7643 (autoload 'describe-buffer-case-table "case-table" "\
|
|
7644 Describe the case table of the current buffer." t nil)
|
|
7645
|
|
7646 ;;;***
|
|
7647
|
|
7648 ;;;### (autoloads (cancel-debug-on-entry debug-on-entry debug) "debug" "prim/debug.el")
|
|
7649
|
|
7650 (autoload 'debug "debug" "\
|
|
7651 Enter debugger. To return, type \\<debugger-mode-map>`\\[debugger-continue]'.
|
|
7652 Arguments are mainly for use when this is called from the internals
|
|
7653 of the evaluator.
|
|
7654
|
|
7655 You may call with no args, or you may pass nil as the first arg and
|
|
7656 any other args you like. In that case, the list of args after the
|
|
7657 first will be printed into the backtrace buffer." t nil)
|
|
7658
|
|
7659 (autoload 'debug-on-entry "debug" "\
|
|
7660 Request FUNCTION to invoke debugger each time it is called.
|
|
7661 If you tell the debugger to continue, FUNCTION's execution proceeds.
|
|
7662 This works by modifying the definition of FUNCTION,
|
|
7663 which must be written in Lisp, not predefined.
|
|
7664 Use \\[cancel-debug-on-entry] to cancel the effect of this command.
|
|
7665 Redefining FUNCTION also cancels it." t nil)
|
|
7666
|
|
7667 (autoload 'cancel-debug-on-entry "debug" "\
|
|
7668 Undo effect of \\[debug-on-entry] on FUNCTION.
|
|
7669 If argument is nil or an empty string, cancel for all functions." t nil)
|
|
7670
|
|
7671 ;;;***
|
|
7672
|
|
7673 ;;;### (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")
|
|
7674
|
|
7675 (autoload 'describe-current-display-table "disp-table" "\
|
|
7676 Describe the display table in use in the selected window and buffer." t nil)
|
|
7677
|
|
7678 (autoload 'make-display-table "disp-table" "\
|
|
7679 Return a new, empty display table." nil nil)
|
|
7680
|
|
7681 (autoload 'standard-display-8bit "disp-table" "\
|
|
7682 Display characters in the range L to H literally." nil nil)
|
|
7683
|
|
7684 (autoload 'standard-display-default "disp-table" "\
|
|
7685 Display characters in the range L to H using the default notation." nil nil)
|
|
7686
|
|
7687 (autoload 'standard-display-ascii "disp-table" "\
|
|
7688 Display character C using printable string S." nil nil)
|
|
7689
|
|
7690 (autoload 'standard-display-g1 "disp-table" "\
|
|
7691 Display character C as character SC in the g1 character set.
|
|
7692 This function assumes that your terminal uses the SO/SI characters;
|
|
7693 it is meaningless for an X frame." nil nil)
|
|
7694
|
|
7695 (autoload 'standard-display-graphic "disp-table" "\
|
|
7696 Display character C as character GC in graphics character set.
|
|
7697 This function assumes VT100-compatible escapes; it is meaningless for an
|
|
7698 X frame." nil nil)
|
|
7699
|
|
7700 (autoload 'standard-display-underline "disp-table" "\
|
|
7701 Display character C as character UC plus underlining." nil nil)
|
|
7702
|
|
7703 (autoload 'standard-display-european "disp-table" "\
|
|
7704 Toggle display of European characters encoded with ISO 8859.
|
|
7705 When enabled, characters in the range of 160 to 255 display not
|
|
7706 as octal escapes, but as accented characters.
|
|
7707 With prefix argument, enable European character display iff arg is positive." t nil)
|
|
7708
|
|
7709 ;;;***
|
|
7710
|
|
7711 ;;;### (autoloads (setenv) "env" "prim/env.el")
|
|
7712
|
|
7713 (autoload 'setenv "env" "\
|
|
7714 Set the value of the environment variable named VARIABLE to VALUE.
|
|
7715 VARIABLE should be a string. VALUE is optional; if not provided or is
|
|
7716 `nil', the environment variable VARIABLE will be removed.
|
|
7717
|
|
7718 Interactively, a prefix argument means to unset the variable.
|
|
7719 Interactively, the current value (if any) of the variable
|
|
7720 appears at the front of the history list when you type in the new value.
|
|
7721
|
|
7722 This function works by modifying `process-environment'." t nil)
|
|
7723
|
|
7724 ;;;***
|
|
7725
|
26
|
7726 ;;;### (autoloads nil "itimer-autosave" "prim/itimer-autosave.el")
|
12
|
7727
|
|
7728 ;;;***
|
|
7729
|
|
7730 ;;;### (autoloads nil "loaddefs" "prim/loaddefs.el")
|
|
7731
|
|
7732 ;;;***
|
|
7733
|
22
|
7734 ;;;### (autoloads (apply-macro-to-region-lines kbd-macro-query name-last-kbd-macro) "macros" "prim/macros.el")
|
12
|
7735
|
|
7736 (autoload 'name-last-kbd-macro "macros" "\
|
|
7737 Assign a name to the last keyboard macro defined.
|
|
7738 Argument SYMBOL is the name to define.
|
|
7739 The symbol's function definition becomes the keyboard macro string.
|
|
7740 Such a \"function\" cannot be called from Lisp, but it is a valid
|
|
7741 editor command." t nil)
|
|
7742
|
|
7743 (autoload 'kbd-macro-query "macros" "\
|
|
7744 Query user during kbd macro execution.
|
|
7745 With prefix argument, enters recursive edit,
|
|
7746 reading keyboard commands even within a kbd macro.
|
|
7747 You can give different commands each time the macro executes.
|
|
7748 Without prefix argument, asks whether to continue running the macro.
|
|
7749 Your options are: \\<query-replace-map>
|
|
7750 \\[act] Finish this iteration normally and continue with the next.
|
|
7751 \\[skip] Skip the rest of this iteration, and start the next.
|
|
7752 \\[exit] Stop the macro entirely right now.
|
|
7753 \\[recenter] Redisplay the frame, then ask again.
|
|
7754 \\[edit] Enter recursive edit; ask again when you exit from that." t nil)
|
|
7755
|
|
7756 (autoload 'apply-macro-to-region-lines "macros" "\
|
|
7757 For each complete line between point and mark, move to the beginning
|
|
7758 of the line, and run the last keyboard macro.
|
|
7759
|
|
7760 When called from lisp, this function takes two arguments TOP and
|
|
7761 BOTTOM, describing the current region. TOP must be before BOTTOM.
|
|
7762 The optional third argument MACRO specifies a keyboard macro to
|
|
7763 execute.
|
|
7764
|
|
7765 This is useful for quoting or unquoting included text, adding and
|
|
7766 removing comments, or producing tables where the entries are regular.
|
|
7767
|
|
7768 For example, in Usenet articles, sections of text quoted from another
|
|
7769 author are indented, or have each line start with `>'. To quote a
|
|
7770 section of text, define a keyboard macro which inserts `>', put point
|
|
7771 and mark at opposite ends of the quoted section, and use
|
|
7772 `\\[apply-macro-to-region-lines]' to mark the entire section.
|
|
7773
|
|
7774 Suppose you wanted to build a keyword table in C where each entry
|
|
7775 looked like this:
|
|
7776
|
|
7777 { \"foo\", foo_data, foo_function },
|
|
7778 { \"bar\", bar_data, bar_function },
|
|
7779 { \"baz\", baz_data, baz_function },
|
|
7780
|
|
7781 You could enter the names in this format:
|
|
7782
|
|
7783 foo
|
|
7784 bar
|
|
7785 baz
|
|
7786
|
|
7787 and write a macro to massage a word into a table entry:
|
|
7788
|
|
7789 \\C-x (
|
|
7790 \\M-d { \"\\C-y\", \\C-y_data, \\C-y_function },
|
|
7791 \\C-x )
|
|
7792
|
|
7793 and then select the region of un-tablified names and use
|
|
7794 `\\[apply-macro-to-region-lines]' to build the table from the names.
|
|
7795 " t nil)
|
|
7796
|
|
7797 ;;;***
|
|
7798
|
|
7799 ;;;### (autoloads (disable-command enable-command disabled-command-hook) "novice" "prim/novice.el")
|
|
7800
|
|
7801 (autoload 'disabled-command-hook "novice" nil nil nil)
|
|
7802
|
|
7803 (autoload 'enable-command "novice" "\
|
|
7804 Allow COMMAND to be executed without special confirmation from now on.
|
|
7805 The user's .emacs file is altered so that this will apply
|
|
7806 to future sessions." t nil)
|
|
7807
|
|
7808 (autoload 'disable-command "novice" "\
|
|
7809 Require special confirmation to execute COMMAND from now on.
|
|
7810 The user's .emacs file is altered so that this will apply
|
|
7811 to future sessions." t nil)
|
|
7812
|
|
7813 ;;;***
|
|
7814
|
|
7815 ;;;### (autoloads (edit-options list-options) "options" "prim/options.el")
|
|
7816
|
|
7817 (autoload 'list-options "options" "\
|
|
7818 Display a list of XEmacs user options, with values and documentation." t nil)
|
|
7819
|
|
7820 (autoload 'edit-options "options" "\
|
|
7821 Edit a list of XEmacs user option values.
|
|
7822 Selects a buffer containing such a list,
|
|
7823 in which there are commands to set the option values.
|
|
7824 Type \\[describe-mode] in that buffer for a list of commands." t nil)
|
|
7825
|
|
7826 ;;;***
|
|
7827
|
|
7828 ;;;### (autoloads (clear-rectangle string-rectangle open-rectangle insert-rectangle yank-rectangle kill-rectangle extract-rectangle delete-extract-rectangle delete-rectangle) "rect" "prim/rect.el")
|
|
7829
|
|
7830 (autoload 'delete-rectangle "rect" "\
|
|
7831 Delete (don't save) text in rectangle with point and mark as corners.
|
|
7832 The same range of columns is deleted in each line starting with the line
|
|
7833 where the region begins and ending with the line where the region ends." t nil)
|
|
7834
|
|
7835 (autoload 'delete-extract-rectangle "rect" "\
|
|
7836 Delete contents of rectangle and return it as a list of strings.
|
|
7837 Arguments START and END are the corners of the rectangle.
|
|
7838 The value is list of strings, one for each line of the rectangle." nil nil)
|
|
7839
|
|
7840 (autoload 'extract-rectangle "rect" "\
|
|
7841 Return contents of rectangle with corners at START and END.
|
|
7842 Value is list of strings, one for each line of the rectangle." nil nil)
|
|
7843
|
|
7844 (defvar killed-rectangle nil "\
|
|
7845 Rectangle for yank-rectangle to insert.")
|
|
7846
|
|
7847 (autoload 'kill-rectangle "rect" "\
|
|
7848 Delete rectangle with corners at point and mark; save as last killed one.
|
|
7849 Calling from program, supply two args START and END, buffer positions.
|
|
7850 But in programs you might prefer to use `delete-extract-rectangle'." t nil)
|
|
7851
|
|
7852 (autoload 'yank-rectangle "rect" "\
|
|
7853 Yank the last killed rectangle with upper left corner at point." t nil)
|
|
7854
|
|
7855 (autoload 'insert-rectangle "rect" "\
|
|
7856 Insert text of RECTANGLE with upper left corner at point.
|
|
7857 RECTANGLE's first line is inserted at point, its second
|
|
7858 line is inserted at a point vertically under point, etc.
|
|
7859 RECTANGLE should be a list of strings.
|
|
7860 After this command, the mark is at the upper left corner
|
|
7861 and point is at the lower right corner." nil nil)
|
|
7862
|
|
7863 (autoload 'open-rectangle "rect" "\
|
|
7864 Blank out rectangle with corners at point and mark, shifting text right.
|
|
7865 The text previously in the region is not overwritten by the blanks,
|
|
7866 but instead winds up to the right of the rectangle." t nil)
|
|
7867
|
|
7868 (autoload 'string-rectangle "rect" "\
|
|
7869 Insert STRING on each line of the region-rectangle, shifting text right.
|
|
7870 The left edge of the rectangle specifies the column for insertion.
|
|
7871 This command does not delete or overwrite any existing text.
|
|
7872
|
|
7873 Called from a program, takes three args; START, END and STRING." t nil)
|
|
7874
|
|
7875 (autoload 'clear-rectangle "rect" "\
|
|
7876 Blank out rectangle with corners at point and mark.
|
|
7877 The text previously in the region is overwritten by the blanks.
|
|
7878 When called from a program, requires two args which specify the corners." t nil)
|
|
7879
|
|
7880 ;;;***
|
|
7881
|
|
7882 ;;;### (autoloads (reposition-window) "reposition" "prim/reposition.el")
|
|
7883
|
|
7884 (autoload 'reposition-window "reposition" "\
|
|
7885 Make the current definition and/or comment visible.
|
|
7886 Further invocations move it to the top of the window or toggle the
|
|
7887 visibility of comments that precede it.
|
|
7888 Point is left unchanged unless prefix ARG is supplied.
|
|
7889 If the definition is fully onscreen, it is moved to the top of the
|
|
7890 window. If it is partly offscreen, the window is scrolled to get the
|
|
7891 definition (or as much as will fit) onscreen, unless point is in a comment
|
|
7892 which is also partly offscreen, in which case the scrolling attempts to get
|
|
7893 as much of the comment onscreen as possible.
|
|
7894 Initially `reposition-window' attempts to make both the definition and
|
|
7895 preceding comments visible. Further invocations toggle the visibility of
|
|
7896 the comment lines.
|
|
7897 If ARG is non-nil, point may move in order to make the whole defun
|
|
7898 visible (if only part could otherwise be made so), to make the defun line
|
|
7899 visible (if point is in code and it could not be made so, or if only
|
|
7900 comments, including the first comment line, are visible), or to make the
|
|
7901 first comment line visible (if point is in a comment)." t nil)
|
|
7902
|
|
7903 ;;;***
|
|
7904
|
|
7905 ;;;### (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")
|
|
7906
|
|
7907 (autoload 'sort-subr "sort" "\
|
|
7908 General text sorting routine to divide buffer into records and sort them.
|
|
7909 Arguments are REVERSE NEXTRECFUN ENDRECFUN &optional STARTKEYFUN ENDKEYFUN.
|
|
7910
|
|
7911 We divide the accessible portion of the buffer into disjoint pieces
|
|
7912 called sort records. A portion of each sort record (perhaps all of
|
|
7913 it) is designated as the sort key. The records are rearranged in the
|
|
7914 buffer in order by their sort keys. The records may or may not be
|
|
7915 contiguous.
|
|
7916
|
|
7917 Usually the records are rearranged in order of ascending sort key.
|
|
7918 If REVERSE is non-nil, they are rearranged in order of descending sort key.
|
|
7919 The variable `sort-fold-case' determines whether alphabetic case affects
|
|
7920 the sort order.
|
|
7921
|
|
7922 The next four arguments are functions to be called to move point
|
|
7923 across a sort record. They will be called many times from within sort-subr.
|
|
7924
|
|
7925 NEXTRECFUN is called with point at the end of the previous record.
|
|
7926 It moves point to the start of the next record.
|
|
7927 It should move point to the end of the buffer if there are no more records.
|
|
7928 The first record is assumed to start at the position of point when sort-subr
|
|
7929 is called.
|
|
7930
|
|
7931 ENDRECFUN is called with point within the record.
|
|
7932 It should move point to the end of the record.
|
|
7933
|
|
7934 STARTKEYFUN moves from the start of the record to the start of the key.
|
|
7935 It may return either a non-nil value to be used as the key, or
|
|
7936 else the key is the substring between the values of point after
|
|
7937 STARTKEYFUN and ENDKEYFUN are called. If STARTKEYFUN is nil, the key
|
|
7938 starts at the beginning of the record.
|
|
7939
|
|
7940 ENDKEYFUN moves from the start of the sort key to the end of the sort key.
|
|
7941 ENDKEYFUN may be nil if STARTKEYFUN returns a value or if it would be the
|
|
7942 same as ENDRECFUN." nil nil)
|
|
7943
|
|
7944 (autoload 'sort-lines "sort" "\
|
|
7945 Sort lines in region alphabetically; argument means descending order.
|
|
7946 Called from a program, there are three arguments:
|
|
7947 REVERSE (non-nil means reverse order), BEG and END (region to sort).
|
|
7948 The variable `sort-fold-case' determines whether alphabetic case affects
|
|
7949 the sort order." t nil)
|
|
7950
|
|
7951 (autoload 'sort-paragraphs "sort" "\
|
|
7952 Sort paragraphs in region alphabetically; argument means descending order.
|
|
7953 Called from a program, there are three arguments:
|
|
7954 REVERSE (non-nil means reverse order), BEG and END (region to sort).
|
|
7955 The variable `sort-fold-case' determines whether alphabetic case affects
|
|
7956 the sort order." t nil)
|
|
7957
|
|
7958 (autoload 'sort-pages "sort" "\
|
|
7959 Sort pages in region alphabetically; argument means descending order.
|
|
7960 Called from a program, there are three arguments:
|
|
7961 REVERSE (non-nil means reverse order), BEG and END (region to sort).
|
|
7962 The variable `sort-fold-case' determines whether alphabetic case affects
|
|
7963 the sort order." t nil)
|
|
7964
|
|
7965 (autoload 'sort-numeric-fields "sort" "\
|
|
7966 Sort lines in region numerically by the ARGth field of each line.
|
|
7967 Fields are separated by whitespace and numbered from 1 up.
|
|
7968 Specified field must contain a number in each line of the region.
|
|
7969 With a negative arg, sorts by the ARGth field counted from the right.
|
|
7970 Called from a program, there are three arguments:
|
|
7971 FIELD, BEG and END. BEG and END specify region to sort.
|
|
7972 The variable `sort-fold-case' determines whether alphabetic case affects
|
|
7973 the sort order.
|
|
7974 If you want to sort floating-point numbers, try `sort-float-fields'." t nil)
|
|
7975
|
|
7976 (autoload 'sort-float-fields "sort" "\
|
|
7977 Sort lines in region numerically by the ARGth field of each line.
|
|
7978 Fields are separated by whitespace and numbered from 1 up. Specified field
|
|
7979 must contain a floating point number in each line of the region. With a
|
|
7980 negative arg, sorts by the ARGth field counted from the right. Called from a
|
|
7981 program, there are three arguments: FIELD, BEG and END. BEG and END specify
|
|
7982 region to sort." t nil)
|
|
7983
|
|
7984 (autoload 'sort-fields "sort" "\
|
|
7985 Sort lines in region lexicographically by the ARGth field of each line.
|
|
7986 Fields are separated by whitespace and numbered from 1 up.
|
|
7987 With a negative arg, sorts by the ARGth field counted from the right.
|
|
7988 Called from a program, there are three arguments:
|
|
7989 FIELD, BEG and END. BEG and END specify region to sort." t nil)
|
|
7990
|
|
7991 (autoload 'sort-regexp-fields "sort" "\
|
|
7992 Sort the region lexicographically as specified by RECORD-REGEXP and KEY.
|
|
7993 RECORD-REGEXP specifies the textual units which should be sorted.
|
|
7994 For example, to sort lines RECORD-REGEXP would be \"^.*$\"
|
|
7995 KEY specifies the part of each record (ie each match for RECORD-REGEXP)
|
|
7996 is to be used for sorting.
|
|
7997 If it is \"\\\\digit\" then the digit'th \"\\\\(...\\\\)\" match field from
|
|
7998 RECORD-REGEXP is used.
|
|
7999 If it is \"\\\\&\" then the whole record is used.
|
|
8000 Otherwise, it is a regular-expression for which to search within the record.
|
|
8001 If a match for KEY is not found within a record then that record is ignored.
|
|
8002
|
|
8003 With a negative prefix arg sorts in reverse order.
|
|
8004
|
|
8005 The variable `sort-fold-case' determines whether alphabetic case affects
|
|
8006 the sort order.
|
|
8007
|
|
8008 For example: to sort lines in the region by the first word on each line
|
|
8009 starting with the letter \"f\",
|
|
8010 RECORD-REGEXP would be \"^.*$\" and KEY would be \"\\\\=\\<f\\\\w*\\\\>\"" t nil)
|
|
8011
|
|
8012 (autoload 'sort-columns "sort" "\
|
|
8013 Sort lines in region alphabetically by a certain range of columns.
|
|
8014 For the purpose of this command, the region includes
|
|
8015 the entire line that point is in and the entire line the mark is in.
|
|
8016 The column positions of point and mark bound the range of columns to sort on.
|
|
8017 A prefix argument means sort into reverse order.
|
|
8018 The variable `sort-fold-case' determines whether alphabetic case affects
|
|
8019 the sort order.
|
|
8020
|
|
8021 Note that `sort-columns' rejects text that contains tabs,
|
|
8022 because tabs could be split across the specified columns
|
|
8023 and it doesn't know how to handle that. Also, when possible,
|
|
8024 it uses the `sort' utility program, which doesn't understand tabs.
|
|
8025 Use \\[untabify] to convert tabs to spaces before sorting." t nil)
|
|
8026
|
|
8027 (autoload 'reverse-region "sort" "\
|
|
8028 Reverse the order of lines in a region.
|
|
8029 From a program takes two point or marker arguments, BEG and END." t nil)
|
|
8030
|
|
8031 ;;;***
|
|
8032
|
|
8033 ;;;### (autoloads (load-default-sounds load-sound-file) "sound" "prim/sound.el")
|
|
8034
|
|
8035 (or sound-alist (setq sound-alist '((ready nil) (warp nil))))
|
|
8036
|
|
8037 (autoload 'load-sound-file "sound" "\
|
|
8038 Read in an audio-file and add it to the sound-alist.
|
|
8039
|
22
|
8040 You can only play sound files if you are running on display 0 of the
|
|
8041 console of a machine with native sound support or running a NetAudio
|
|
8042 server and XEmacs has the necessary sound support compiled in.
|
|
8043
|
|
8044 The sound file must be in the Sun/NeXT U-LAW format." t nil)
|
12
|
8045
|
|
8046 (autoload 'load-default-sounds "sound" "\
|
|
8047 Load and install some sound files as beep-types.
|
|
8048 This only works if you're on display 0 of a Sun SparcStation, SGI machine,
|
|
8049 or HP9000s700, or running a NetAudio server." t nil)
|
|
8050
|
|
8051 ;;;***
|
|
8052
|
|
8053 ;;;### (autoloads (tabify untabify) "tabify" "prim/tabify.el")
|
|
8054
|
|
8055 (autoload 'untabify "tabify" "\
|
|
8056 Convert all tabs in region to multiple spaces, preserving columns.
|
|
8057 Called non-interactively, the region is specified by arguments
|
|
8058 START and END, rather than by the position of point and mark.
|
|
8059 The variable `tab-width' controls the spacing of tab stops." t nil)
|
|
8060
|
|
8061 (autoload 'tabify "tabify" "\
|
|
8062 Convert multiple spaces in region to tabs when possible.
|
|
8063 A group of spaces is partially replaced by tabs
|
|
8064 when this can be done without changing the column they end at.
|
|
8065 Called non-interactively, the region is specified by arguments
|
|
8066 START and END, rather than by the position of point and mark.
|
|
8067 The variable `tab-width' controls the spacing of tab stops." t nil)
|
|
8068
|
|
8069 ;;;***
|
|
8070
|
|
8071 ;;;### (autoloads (ask-user-about-supersession-threat ask-user-about-lock) "userlock" "prim/userlock.el")
|
|
8072
|
|
8073 (autoload 'ask-user-about-lock "userlock" "\
|
|
8074 Ask user what to do when he wants to edit FILE but it is locked by USER.
|
|
8075 This function has a choice of three things to do:
|
|
8076 do (signal 'file-locked (list FILE USER))
|
|
8077 to refrain from editing the file
|
|
8078 return t (grab the lock on the file)
|
|
8079 return nil (edit the file even though it is locked).
|
|
8080 You can rewrite it to use any criterion you like to choose which one to do." nil nil)
|
|
8081
|
|
8082 (autoload 'ask-user-about-supersession-threat "userlock" "\
|
|
8083 Ask a user who is about to modify an obsolete buffer what to do.
|
|
8084 This function has two choices: it can return, in which case the modification
|
|
8085 of the buffer will proceed, or it can (signal 'file-supersession (file)),
|
|
8086 in which case the proposed buffer modification will not be made.
|
|
8087
|
|
8088 You can rewrite this to use any criterion you like to choose which one to do.
|
|
8089 The buffer in question is current when this function is called." nil nil)
|
|
8090
|
|
8091 ;;;***
|
|
8092
|
|
8093 ;;;### (autoloads (style-format) "psgml-fs" "psgml/psgml-fs.el")
|
|
8094
|
|
8095 (autoload 'style-format "psgml-fs" nil t nil)
|
|
8096
|
|
8097 ;;;***
|
|
8098
|
|
8099 ;;;### (autoloads nil "psgml-html" "psgml/psgml-html.el")
|
|
8100
|
|
8101 (autoload 'html-mode "psgml-html" "\
|
|
8102 HTML mode." t)
|
|
8103
|
|
8104 (autoload 'html3-mode "psgml-html" "\
|
|
8105 HTML3 mode." t)
|
|
8106
|
|
8107 ;;;***
|
|
8108
|
|
8109 ;;;### (autoloads (sgml-mode) "psgml" "psgml/psgml.el")
|
|
8110
|
|
8111 (autoload 'sgml-mode "psgml" "\
|
|
8112 Major mode for editing SGML.\\<sgml-mode-map>
|
|
8113 Makes > display the matching <. Makes / display matching /.
|
|
8114 Use \\[sgml-validate] to validate your document with an SGML parser.
|
|
8115
|
|
8116 You can find information with:
|
|
8117 \\[sgml-show-context] Show the nesting of elements at cursor position.
|
|
8118 \\[sgml-list-valid-tags] Show the tags valid at cursor position.
|
|
8119
|
|
8120 Insert tags with completion of contextually valid tags with \\[sgml-insert-tag].
|
|
8121 End the current element with \\[sgml-insert-end-tag]. Insert an element (i.e.
|
|
8122 both start and end tag) with \\[sgml-insert-element]. Or tag a region with
|
|
8123 \\[sgml-tag-region].
|
|
8124
|
|
8125 To tag a region with the mouse, use transient mark mode or secondary selection.
|
|
8126
|
|
8127 Structure editing:
|
|
8128 \\[sgml-backward-element] Moves backwards over the previous element.
|
|
8129 \\[sgml-forward-element] Moves forward over the nex element.
|
|
8130 \\[sgml-down-element] Move forward and down one level in the element structure.
|
|
8131 \\[sgml-backward-up-element] Move backward out of this element level.
|
|
8132 \\[sgml-beginning-of-element] Move to after the start tag of the current element.
|
|
8133 \\[sgml-end-of-element] Move to before the end tag of the current element.
|
|
8134 \\[sgml-kill-element] Kill the element following the cursor.
|
|
8135
|
|
8136 Finding interesting positions
|
|
8137 \\[sgml-next-data-field] Move forward to next point where data is allowed.
|
|
8138 \\[sgml-next-trouble-spot] Move forward to next point where something is
|
|
8139 amiss with the structure.
|
|
8140
|
|
8141 Folding and unfolding
|
|
8142 \\[sgml-fold-element] Fold the lines comprising the current element, leaving
|
|
8143 the first line visible.
|
|
8144 \\[sgml-fold-subelement] Fold the elements in the content of the current element.
|
|
8145 Leaving the first line of every element visible.
|
|
8146 \\[sgml-unfold-line] Show hidden lines in current line.
|
|
8147
|
|
8148 User options:
|
|
8149
|
|
8150 sgml-omittag Set this to reflect OMITTAG in the SGML declaration.
|
|
8151 sgml-shortag Set this to reflect SHORTTAG in the SGML declaration.
|
|
8152 sgml-auto-insert-required-elements If non-nil, automatically insert required
|
|
8153 elements in the content of an inserted element.
|
|
8154 sgml-balanced-tag-edit If non-nil, always insert start-end tag pairs.
|
|
8155 sgml-omittag-transparent If non-nil, will show legal tags inside elements
|
|
8156 with omitable start tags and legal tags beyond omitable end tags.
|
|
8157 sgml-leave-point-after-insert If non-nil, the point will remain after
|
|
8158 inserted tag(s).
|
|
8159 sgml-warn-about-undefined-elements If non-nil, print a warning when a tag
|
|
8160 for a undefined element is found.
|
|
8161 sgml-max-menu-size Max number of entries in Tags and Entities menus before
|
|
8162 they are split into several panes.
|
|
8163 sgml-always-quote-attributes If non-nil, quote all attribute values
|
|
8164 inserted after finishing edit attributes.
|
|
8165 sgml-minimize-attributes Determines minimization of attributes inserted by
|
|
8166 edit-attributes.
|
|
8167 sgml-normalize-trims If non-nil, sgml-normalize will trim off white space
|
|
8168 from end of element when adding end tag.
|
|
8169 sgml-indent-step How much to increament indent for every element level.
|
|
8170 sgml-indent-data If non-nil, indent in data/mixed context also.
|
|
8171 sgml-set-face If non-nil, psgml will set the face of parsed markup.
|
|
8172 sgml-markup-faces The faces used when the above variable is non-nil.
|
|
8173 sgml-system-path List of directorys used to look for system identifiers.
|
|
8174 sgml-public-map Mapping from public identifiers to file names.
|
|
8175 sgml-offer-save If non-nil, ask about saving modified buffers before
|
|
8176 \\[sgml-validate] is run.
|
|
8177
|
|
8178 All bindings:
|
|
8179 \\{sgml-mode-map}
|
|
8180 " t nil)
|
|
8181
|
|
8182 ;;;***
|
|
8183
|
|
8184 ;;;### (autoloads (rmail-input rmail-mode rmail) "rmail" "rmail/rmail.el")
|
|
8185
|
|
8186 (defvar rmail-dont-reply-to-names nil "\
|
|
8187 *A regexp specifying names to prune of reply to messages.
|
|
8188 A value of nil means exclude your own name only.")
|
|
8189
|
|
8190 (defvar rmail-default-dont-reply-to-names "info-" "\
|
|
8191 A regular expression specifying part of the value of the default value of
|
|
8192 the variable `rmail-dont-reply-to-names', for when the user does not set
|
|
8193 `rmail-dont-reply-to-names' explicitly. (The other part of the default
|
|
8194 value is the user's name.)
|
|
8195 It is useful to set this variable in the site customization file.")
|
|
8196
|
|
8197 (defvar rmail-displayed-headers nil "\
|
|
8198 *Regexp to match Header fields that Rmail should display.
|
|
8199 If nil, display all header fields except those matched by
|
|
8200 `rmail-ignored-headers'.")
|
|
8201
|
|
8202 (defvar rmail-retry-ignored-headers nil "\
|
|
8203 *Headers that should be stripped when retrying a failed message.")
|
|
8204
|
|
8205 (defvar rmail-highlighted-headers "^From:\\|^Subject:" "\
|
|
8206 *Regexp to match Header fields that Rmail should normally highlight.
|
|
8207 A value of nil means don't highlight.
|
|
8208 See also `rmail-highlight-face'.")
|
|
8209
|
|
8210 (defvar rmail-highlight-face nil "\
|
|
8211 *Face used by Rmail for highlighting headers.")
|
|
8212
|
|
8213 (defvar rmail-delete-after-output nil "\
|
|
8214 *Non-nil means automatically delete a message that is copied to a file.")
|
|
8215
|
|
8216 (defvar rmail-primary-inbox-list nil "\
|
|
8217 *List of files which are inboxes for user's primary mail file `~/RMAIL'.
|
|
8218 `nil' means the default, which is (\"/usr/spool/mail/$USER\")
|
|
8219 \(the name varies depending on the operating system,
|
|
8220 and the value of the environment variable MAIL overrides it).")
|
|
8221
|
|
8222 (defvar rmail-mail-new-frame nil "\
|
|
8223 *Non-nil means Rmail makes a new frame for composing outgoing mail.")
|
|
8224
|
|
8225 (defvar rmail-retry-setup-hook nil "\
|
|
8226 Hook that `rmail-retry-failure' uses in place of `mail-setup-hook'.")
|
|
8227
|
|
8228 (defvar rmail-last-file nil)
|
|
8229
|
|
8230 (autoload 'rmail "rmail" "\
|
|
8231 Read and edit incoming mail.
|
|
8232 Moves messages into file named by `rmail-file-name' (a babyl format file)
|
|
8233 and edits that file in RMAIL Mode.
|
|
8234 Type \\[describe-mode] once editing that file, for a list of RMAIL commands.
|
|
8235
|
|
8236 May be called with filename as argument; then performs rmail editing on
|
|
8237 that file, but does not copy any new mail into the file." t nil)
|
|
8238
|
|
8239 (autoload 'rmail-mode "rmail" "\
|
|
8240 Rmail Mode is used by \\<rmail-mode-map>\\[rmail] for editing Rmail files.
|
|
8241 All normal editing commands are turned off.
|
|
8242 Instead, these commands are available:
|
|
8243
|
|
8244 \\[rmail-beginning-of-message] Move point to front of this message (same as \\[beginning-of-buffer]).
|
|
8245 \\[scroll-up] Scroll to next screen of this message.
|
|
8246 \\[scroll-down] Scroll to previous screen of this message.
|
|
8247 \\[rmail-next-undeleted-message] Move to Next non-deleted message.
|
|
8248 \\[rmail-previous-undeleted-message] Move to Previous non-deleted message.
|
|
8249 \\[rmail-next-message] Move to Next message whether deleted or not.
|
|
8250 \\[rmail-previous-message] Move to Previous message whether deleted or not.
|
|
8251 \\[rmail-first-message] Move to the first message in Rmail file.
|
|
8252 \\[rmail-last-message] Move to the last message in Rmail file.
|
|
8253 \\[rmail-show-message] Jump to message specified by numeric position in file.
|
|
8254 \\[rmail-search] Search for string and show message it is found in.
|
|
8255 \\[rmail-delete-forward] Delete this message, move to next nondeleted.
|
|
8256 \\[rmail-delete-backward] Delete this message, move to previous nondeleted.
|
|
8257 \\[rmail-undelete-previous-message] Undelete message. Tries current message, then earlier messages
|
|
8258 till a deleted message is found.
|
|
8259 \\[rmail-edit-current-message] Edit the current message. \\[rmail-cease-edit] to return to Rmail.
|
|
8260 \\[rmail-expunge] Expunge deleted messages.
|
|
8261 \\[rmail-expunge-and-save] Expunge and save the file.
|
|
8262 \\[rmail-quit] Quit Rmail: expunge, save, then switch to another buffer.
|
|
8263 \\[save-buffer] Save without expunging.
|
|
8264 \\[rmail-get-new-mail] Move new mail from system spool directory into this file.
|
|
8265 \\[rmail-mail] Mail a message (same as \\[mail-other-window]).
|
|
8266 \\[rmail-continue] Continue composing outgoing message started before.
|
|
8267 \\[rmail-reply] Reply to this message. Like \\[rmail-mail] but initializes some fields.
|
|
8268 \\[rmail-retry-failure] Send this message again. Used on a mailer failure message.
|
|
8269 \\[rmail-forward] Forward this message to another user.
|
|
8270 \\[rmail-output-to-rmail-file] Output this message to an Rmail file (append it).
|
|
8271 \\[rmail-output] Output this message to a Unix-format mail file (append it).
|
|
8272 \\[rmail-input] Input Rmail file. Run Rmail on that file.
|
|
8273 \\[rmail-add-label] Add label to message. It will be displayed in the mode line.
|
|
8274 \\[rmail-kill-label] Kill label. Remove a label from current message.
|
|
8275 \\[rmail-next-labeled-message] Move to Next message with specified label
|
|
8276 (label defaults to last one specified).
|
|
8277 Standard labels: filed, unseen, answered, forwarded, deleted.
|
|
8278 Any other label is present only if you add it with \\[rmail-add-label].
|
|
8279 \\[rmail-previous-labeled-message] Move to Previous message with specified label
|
|
8280 \\[rmail-summary] Show headers buffer, with a one line summary of each message.
|
|
8281 \\[rmail-summary-by-labels] Summarize only messages with particular label(s).
|
|
8282 \\[rmail-summary-by-recipients] Summarize only messages with particular recipient(s).
|
|
8283 \\[rmail-summary-by-regexp] Summarize only messages with particular regexp(s).
|
|
8284 \\[rmail-summary-by-topic] Summarize only messages with subject line regexp(s).
|
|
8285 \\[rmail-toggle-header] Toggle display of complete header." t nil)
|
|
8286
|
|
8287 (autoload 'rmail-input "rmail" "\
|
|
8288 Run Rmail on file FILENAME." t nil)
|
|
8289
|
|
8290 ;;;***
|
|
8291
|
|
8292 ;;;### (autoloads (rmail-file-p) "rmailout" "rmail/rmailout.el")
|
|
8293
|
|
8294 (autoload 'rmail-file-p "rmailout" nil nil nil)
|
|
8295
|
|
8296 ;;;***
|
|
8297
|
|
8298 ;;;### (autoloads (unrmail batch-unrmail) "unrmail" "rmail/unrmail.el")
|
|
8299
|
|
8300 (autoload 'batch-unrmail "unrmail" "\
|
|
8301 Convert Rmail files to mailbox files.
|
|
8302 Specify the input Rmail file names as command line arguments.
|
|
8303 For each Rmail file, the corresponding output file name
|
|
8304 is made by adding `.mail' at the end.
|
|
8305 For example, invoke `emacs -batch -f batch-unrmail RMAIL'." nil nil)
|
|
8306
|
|
8307 (autoload 'unrmail "unrmail" "\
|
|
8308 Convert Rmail file FILE to mailbox-format file TO-FILE." t nil)
|
|
8309
|
|
8310 ;;;***
|
|
8311
|
|
8312 ;;;### (autoloads (mime/editor-mode) "tm-edit" "tm/tm-edit.el")
|
|
8313
|
|
8314 (autoload 'mime/editor-mode "tm-edit" "\
|
|
8315 MIME minor mode for editing the tagged MIME message.
|
|
8316
|
|
8317 In this mode, basically, the message is composed in the tagged MIME
|
|
8318 format. The message tag looks like:
|
|
8319
|
|
8320 --[[text/plain; charset=ISO-2022-JP][7bit]]
|
|
8321
|
|
8322 The tag specifies the MIME content type, subtype, optional parameters
|
|
8323 and transfer encoding of the message following the tag. Messages
|
|
8324 without any tag are treated as `text/plain' by default. Charset and
|
|
8325 transfer encoding are automatically defined unless explicitly
|
|
8326 specified. Binary messages such as audio and image are usually hidden.
|
|
8327 The messages in the tagged MIME format are automatically translated
|
|
8328 into a MIME compliant message when exiting this mode.
|
|
8329
|
|
8330 Available charsets depend on Emacs version being used. The following
|
|
8331 lists the available charsets of each emacs.
|
|
8332
|
|
8333 EMACS 18: US-ASCII is only available.
|
|
8334 NEmacs: US-ASCII and ISO-2022-JP are available.
|
|
8335 EMACS 19: US-ASCII and ISO-8859-1 (or other charset) are available.
|
|
8336 XEmacs 19: US-ASCII and ISO-8859-1 (or other charset) are available.
|
|
8337 Mule: US-ASCII, ISO-8859-* (except for ISO-8859-5), KOI8-R,
|
|
8338 ISO-2022-JP, ISO-2022-JP-2, ISO-2022-KR, BIG5 and
|
|
8339 ISO-2022-INT-1 are available.
|
|
8340
|
|
8341 ISO-2022-JP-2 and ISO-2022-INT-1 charsets used in mule is expected to
|
|
8342 be used to represent multilingual text in intermixed manner. Any
|
|
8343 languages that has no registered charset are represented as either
|
|
8344 ISO-2022-JP-2 or ISO-2022-INT-1 in mule.
|
|
8345
|
|
8346 If you want to use non-ISO-8859-1 charset in EMACS 19 or XEmacs 19,
|
|
8347 please set variable `default-mime-charset'. This variable must be
|
|
8348 symbol of which name is a MIME charset.
|
|
8349
|
|
8350 If you want to add more charsets in mule, please set variable
|
|
8351 `charsets-mime-charset-alist'. This variable must be alist of which
|
|
8352 key is list of leading-char/charset and value is symbol of MIME
|
|
8353 charset. (leading-char is a term of MULE 1.* and 2.*. charset is a
|
|
8354 term of XEmacs/mule, mule merged EMACS and MULE 3.*) If name of
|
|
8355 coding-system is different as MIME charset, please set variable
|
|
8356 `mime-charset-coding-system-alist'. This variable must be alist of
|
|
8357 which key is MIME charset and value is coding-system.
|
|
8358
|
|
8359 Following commands are available in addition to major mode commands:
|
|
8360
|
|
8361 [make single part]
|
|
8362 \\[mime-editor/insert-text] insert a text message.
|
|
8363 \\[mime-editor/insert-file] insert a (binary) file.
|
|
8364 \\[mime-editor/insert-external] insert a reference to external body.
|
|
8365 \\[mime-editor/insert-voice] insert a voice message.
|
|
8366 \\[mime-editor/insert-message] insert a mail or news message.
|
|
8367 \\[mime-editor/insert-mail] insert a mail message.
|
|
8368 \\[mime-editor/insert-signature] insert a signature file at end.
|
|
8369 \\[mime-editor/insert-key] insert PGP public key.
|
|
8370 \\[mime-editor/insert-tag] insert a new MIME tag.
|
|
8371
|
|
8372 [make enclosure (maybe multipart)]
|
|
8373 \\[mime-editor/enclose-alternative-region] enclose as multipart/alternative.
|
|
8374 \\[mime-editor/enclose-parallel-region] enclose as multipart/parallel.
|
|
8375 \\[mime-editor/enclose-mixed-region] enclose as multipart/mixed.
|
|
8376 \\[mime-editor/enclose-digest-region] enclose as multipart/digest.
|
|
8377 \\[mime-editor/enclose-signed-region] enclose as PGP signed.
|
|
8378 \\[mime-editor/enclose-encrypted-region] enclose as PGP encrypted.
|
|
8379 \\[mime-editor/enclose-quote-region] enclose as verbose mode (to avoid to expand tags)
|
|
8380
|
|
8381 [other commands]
|
|
8382 \\[mime-editor/set-transfer-level-7bit] set transfer-level as 7.
|
|
8383 \\[mime-editor/set-transfer-level-8bit] set transfer-level as 8.
|
|
8384 \\[mime-editor/set-split] set message splitting mode.
|
|
8385 \\[mime-editor/set-sign] set PGP-sign mode.
|
|
8386 \\[mime-editor/set-encrypt] set PGP-encryption mode.
|
|
8387 \\[mime-editor/preview-message] preview editing MIME message.
|
|
8388 \\[mime-editor/exit] exit and translate into a MIME compliant message.
|
|
8389 \\[mime-editor/help] show this help.
|
|
8390 \\[mime-editor/maybe-translate] exit and translate if in MIME mode, then split.
|
|
8391
|
|
8392 Additional commands are available in some major modes:
|
|
8393 C-c C-c exit, translate and run the original command.
|
|
8394 C-c C-s exit, translate and run the original command.
|
|
8395
|
|
8396 The following is a message example written in the tagged MIME format.
|
|
8397 TABs at the beginning of the line are not a part of the message:
|
|
8398
|
|
8399 This is a conventional plain text. It should be translated
|
|
8400 into text/plain.
|
|
8401 --[[text/plain]]
|
|
8402 This is also a plain text. But, it is explicitly specified as
|
|
8403 is.
|
16
|
8404 --[[text/plain; charset=ISO-8859-1]]
|
|
8405 This is also a plain text. But charset is specified as
|
|
8406 iso-8859-1.
|
|
8407
|
|
8408 ¡Hola! Buenos días. ¿Cómo está usted?
|
|
8409 --[[text/enriched]]
|
|
8410 This is a <bold>enriched text</bold>.
|
|
8411 --[[image/gif][base64]]...image encoded in base64 here...
|
|
8412 --[[audio/basic][base64]]...audio encoded in base64 here...
|
12
|
8413
|
|
8414 User customizable variables (not documented all of them):
|
|
8415 mime-prefix
|
|
8416 Specifies a key prefix for MIME minor mode commands.
|
|
8417
|
|
8418 mime-ignore-preceding-spaces
|
|
8419 Preceding white spaces in a message body are ignored if non-nil.
|
|
8420
|
|
8421 mime-ignore-trailing-spaces
|
|
8422 Trailing white spaces in a message body are ignored if non-nil.
|
|
8423
|
|
8424 mime-auto-hide-body
|
|
8425 Hide a non-textual body message encoded in base64 after insertion
|
|
8426 if non-nil.
|
|
8427
|
|
8428 mime-editor/transfer-level
|
|
8429 A number of network transfer level. It should be bigger than 7.
|
|
8430 If you are in 8bit-through environment, please set 8.
|
|
8431
|
|
8432 mime-editor/voice-recorder
|
|
8433 Specifies a function to record a voice message and encode it.
|
|
8434 The function `mime-editor/voice-recorder-for-sun' is for Sun
|
|
8435 SparcStations.
|
|
8436
|
|
8437 mime/editor-mode-hook
|
|
8438 Turning on MIME mode calls the value of mime/editor-mode-hook, if
|
|
8439 it is non-nil.
|
|
8440
|
|
8441 mime-editor/translate-hook
|
|
8442 The value of mime-editor/translate-hook is called just before translating
|
|
8443 the tagged MIME format into a MIME compliant message if it is
|
|
8444 non-nil. If the hook call the function mime-editor/insert-signature,
|
|
8445 the signature file will be inserted automatically.
|
|
8446
|
|
8447 mime-editor/exit-hook
|
|
8448 Turning off MIME mode calls the value of mime-editor/exit-hook, if it is
|
|
8449 non-nil." t nil)
|
|
8450
|
|
8451 (defalias 'edit-mime 'mime/editor-mode)
|
|
8452
|
|
8453 ;;;***
|
|
8454
|
|
8455 ;;;### (autoloads (defadvice ad-add-advice) "advice" "utils/advice.el")
|
|
8456
|
|
8457 (defvar ad-redefinition-action 'warn "\
|
|
8458 *Defines what to do with redefinitions during Advice de/activation.
|
|
8459 Redefinition occurs if a previously activated function that already has an
|
|
8460 original definition associated with it gets redefined and then de/activated.
|
|
8461 In such a case we can either accept the current definition as the new
|
|
8462 original definition, discard the current definition and replace it with the
|
|
8463 old original, or keep it and raise an error. The values `accept', `discard',
|
|
8464 `error' or `warn' govern what will be done. `warn' is just like `accept' but
|
|
8465 it additionally prints a warning message. All other values will be
|
|
8466 interpreted as `error'.")
|
|
8467
|
|
8468 (defvar ad-default-compilation-action 'maybe "\
|
|
8469 *Defines whether to compile advised definitions during activation.
|
|
8470 A value of `always' will result in unconditional compilation, `never' will
|
|
8471 always avoid compilation, `maybe' will compile if the byte-compiler is already
|
|
8472 loaded, and `like-original' will compile if the original definition of the
|
|
8473 advised function is compiled or a built-in function. Every other value will
|
|
8474 be interpreted as `maybe'. This variable will only be considered if the
|
|
8475 COMPILE argument of `ad-activate' was supplied as nil.")
|
|
8476
|
|
8477 (autoload 'ad-add-advice "advice" "\
|
|
8478 Adds a piece of ADVICE to FUNCTION's list of advices in CLASS.
|
|
8479 If FUNCTION already has one or more pieces of advice of the specified
|
|
8480 CLASS then POSITION determines where the new piece will go. The value
|
|
8481 of POSITION can either be `first', `last' or a number where 0 corresponds
|
|
8482 to `first'. Numbers outside the range will be mapped to the closest
|
|
8483 extreme position. If there was already a piece of ADVICE with the same
|
|
8484 name, then the position argument will be ignored and the old advice
|
|
8485 will be overwritten with the new one.
|
|
8486 If the FUNCTION was not advised already, then its advice info will be
|
|
8487 initialized. Redefining a piece of advice whose name is part of the cache-id
|
|
8488 will clear the cache." nil nil)
|
|
8489
|
|
8490 (autoload 'defadvice "advice" "\
|
|
8491 Defines a piece of advice for FUNCTION (a symbol).
|
|
8492 The syntax of `defadvice' is as follows:
|
|
8493
|
|
8494 (defadvice FUNCTION (CLASS NAME [POSITION] [ARGLIST] FLAG...)
|
|
8495 [DOCSTRING] [INTERACTIVE-FORM]
|
|
8496 BODY... )
|
|
8497
|
|
8498 FUNCTION ::= Name of the function to be advised.
|
|
8499 CLASS ::= `before' | `around' | `after' | `activation' | `deactivation'.
|
|
8500 NAME ::= Non-nil symbol that names this piece of advice.
|
|
8501 POSITION ::= `first' | `last' | NUMBER. Optional, defaults to `first',
|
|
8502 see also `ad-add-advice'.
|
|
8503 ARGLIST ::= An optional argument list to be used for the advised function
|
|
8504 instead of the argument list of the original. The first one found in
|
|
8505 before/around/after-advices will be used.
|
|
8506 FLAG ::= `protect'|`disable'|`activate'|`compile'|`preactivate'|`freeze'.
|
|
8507 All flags can be specified with unambiguous initial substrings.
|
|
8508 DOCSTRING ::= Optional documentation for this piece of advice.
|
|
8509 INTERACTIVE-FORM ::= Optional interactive form to be used for the advised
|
|
8510 function. The first one found in before/around/after-advices will be used.
|
|
8511 BODY ::= Any s-expression.
|
|
8512
|
|
8513 Semantics of the various flags:
|
|
8514 `protect': The piece of advice will be protected against non-local exits in
|
|
8515 any code that precedes it. If any around-advice of a function is protected
|
|
8516 then automatically all around-advices will be protected (the complete onion).
|
|
8517
|
|
8518 `activate': All advice of FUNCTION will be activated immediately if
|
|
8519 FUNCTION has been properly defined prior to this application of `defadvice'.
|
|
8520
|
|
8521 `compile': In conjunction with `activate' specifies that the resulting
|
|
8522 advised function should be compiled.
|
|
8523
|
|
8524 `disable': The defined advice will be disabled, hence, it will not be used
|
|
8525 during activation until somebody enables it.
|
|
8526
|
|
8527 `preactivate': Preactivates the advised FUNCTION at macro-expansion/compile
|
|
8528 time. This generates a compiled advised definition according to the current
|
|
8529 advice state that will be used during activation if appropriate. Only use
|
|
8530 this if the `defadvice' gets actually compiled.
|
|
8531
|
|
8532 `freeze': Expands the `defadvice' into a redefining `defun/defmacro' according
|
|
8533 to this particular single advice. No other advice information will be saved.
|
|
8534 Frozen advices cannot be undone, they behave like a hard redefinition of
|
|
8535 the advised function. `freeze' implies `activate' and `preactivate'. The
|
|
8536 documentation of the advised function can be dumped onto the `DOC' file
|
|
8537 during preloading.
|
|
8538
|
|
8539 Look at the file `advice.el' for comprehensive documentation." nil 'macro)
|
|
8540
|
|
8541 ;;;***
|
|
8542
|
|
8543 ;;;### (autoloads (all-annotations annotation-list annotations-at annotations-in-region annotation-at annotationp delete-annotation make-annotation) "annotations" "utils/annotations.el")
|
|
8544
|
|
8545 (defvar make-annotation-hook nil "\
|
|
8546 *Function or functions to run immediately after creating an annotation.")
|
|
8547
|
|
8548 (defvar before-delete-annotation-hook nil "\
|
|
8549 *Function or functions to run immediately before deleting an annotation.")
|
|
8550
|
|
8551 (defvar after-delete-annotation-hook nil "\
|
|
8552 *Function or functions to run immediately after deleting an annotation.")
|
|
8553
|
|
8554 (autoload 'make-annotation "annotations" "\
|
|
8555 Create a marginal annotation, displayed using GLYPH, at position POS.
|
|
8556 GLYPH may be either a glyph object or a string. Use layout policy
|
|
8557 LAYOUT and place the annotation in buffer BUFFER. If POS is nil, point is
|
|
8558 used. If LAYOUT is nil, `whitespace' is used. If BUFFER is nil, the
|
|
8559 current buffer is used. If WITH-EVENT is non-nil, then when an annotation
|
|
8560 is activated, the triggering event is passed as the second arg to the
|
|
8561 annotation function. If D-GLYPH is non-nil then it is used as the glyph
|
|
8562 that will be displayed when button1 is down. If RIGHTP is non-nil then
|
|
8563 the glyph will be displayed on the right side of the buffer instead of the
|
|
8564 left." nil nil)
|
|
8565
|
|
8566 (autoload 'delete-annotation "annotations" "\
|
|
8567 Remove ANNOTATION from its buffer. This does not modify the buffer text." nil nil)
|
|
8568
|
|
8569 (autoload 'annotationp "annotations" "\
|
|
8570 T if OBJECT is an annotation." nil nil)
|
|
8571
|
|
8572 (autoload 'annotation-at "annotations" "\
|
|
8573 Return the first annotation at POS in BUFFER.
|
|
8574 BUFFER defaults to the current buffer. POS defaults to point in BUFFER." nil nil)
|
|
8575
|
|
8576 (autoload 'annotations-in-region "annotations" "\
|
|
8577 Return all annotations in BUFFER between START and END inclusively." nil nil)
|
|
8578
|
|
8579 (autoload 'annotations-at "annotations" "\
|
|
8580 Return a list of all annotations at POS in BUFFER.
|
|
8581 If BUFFER is nil, the current buffer is used. If POS is nil, point is used." nil nil)
|
|
8582
|
|
8583 (autoload 'annotation-list "annotations" "\
|
|
8584 Return a list of all annotations in BUFFER.
|
|
8585 If BUFFER is nil, the current buffer is used." nil nil)
|
|
8586
|
|
8587 (autoload 'all-annotations "annotations" "\
|
|
8588 Return a list of all annotations in existence." nil nil)
|
|
8589
|
|
8590 ;;;***
|
|
8591
|
|
8592 ;;;### (autoloads (batch-update-autoloads update-autoloads-from-directory update-autoloads-here update-file-autoloads generate-file-autoloads) "autoload" "utils/autoload.el")
|
|
8593
|
|
8594 (autoload 'generate-file-autoloads "autoload" "\
|
|
8595 Insert at point a loaddefs autoload section for FILE.
|
|
8596 autoloads are generated for defuns and defmacros in FILE
|
|
8597 marked by `generate-autoload-cookie' (which see).
|
|
8598 If FILE is being visited in a buffer, the contents of the buffer
|
|
8599 are used." t nil)
|
|
8600
|
|
8601 (autoload 'update-file-autoloads "autoload" "\
|
|
8602 Update the autoloads for FILE in `generated-autoload-file'
|
|
8603 \(which FILE might bind in its local variables)." t nil)
|
|
8604
|
|
8605 (autoload 'update-autoloads-here "autoload" "\
|
|
8606 Update sections of the current buffer generated by `update-file-autoloads'." t nil)
|
|
8607
|
|
8608 (autoload 'update-autoloads-from-directory "autoload" "\
|
|
8609 Update `generated-autoload-file' with all the current autoloads from DIR.
|
|
8610 This runs `update-file-autoloads' on each .el file in DIR.
|
|
8611 Obsolete autoload entries for files that no longer exist are deleted." t nil)
|
|
8612
|
|
8613 (autoload 'batch-update-autoloads "autoload" "\
|
|
8614 Update the autoloads for the files or directories on the command line.
|
|
8615 Runs `update-file-autoloads' on files and `update-directory-autoloads'
|
|
8616 on directories. Must be used only with -batch, and kills Emacs on completion.
|
|
8617 Each file will be processed even if an error occurred previously.
|
|
8618 For example, invoke `xemacs -batch -f batch-update-autoloads *.el'." nil nil)
|
|
8619
|
|
8620 ;;;***
|
|
8621
|
|
8622 ;;;### (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")
|
|
8623
|
|
8624 (defvar browse-url-browser-function 'browse-url-w3 "\
|
|
8625 *Function to display the current buffer in a WWW browser.
|
|
8626 Used by the `browse-url-at-point', `browse-url-at-mouse', and
|
|
8627 `browse-url-of-file' commands.")
|
|
8628
|
|
8629 (autoload 'browse-url-netscape "browse-url" "\
|
|
8630 Ask the Netscape WWW browser to load URL.
|
|
8631
|
|
8632 Default to the URL around or before point. The strings in variable
|
|
8633 `browse-url-netscape-arguments' are also passed to Netscape.
|
|
8634
|
|
8635 When called interactively, if variable `browse-url-new-window-p' is
|
|
8636 non-nil, load the document in a new Netscape window, otherwise use a
|
|
8637 random existing one. A non-nil interactive prefix argument reverses
|
|
8638 the effect of browse-url-new-window-p.
|
|
8639
|
|
8640 When called non-interactively, optional second argument NEW-WINDOW is
|
|
8641 used instead of browse-url-new-window-p." t nil)
|
|
8642
|
|
8643 (autoload 'browse-url-mosaic "browse-url" "\
|
|
8644 Ask the XMosaic WWW browser to load URL.
|
|
8645 Default to the URL around or before point." t nil)
|
|
8646
|
|
8647 (autoload 'browse-url-grail "browse-url" "\
|
|
8648 Ask the Grail WWW browser to load URL.
|
|
8649 Default to the URL around or before point. Runs the program in the
|
|
8650 variable `browse-url-grail'." t nil)
|
|
8651
|
|
8652 (autoload 'browse-url-iximosaic "browse-url" "\
|
|
8653 Ask the IXIMosaic WWW browser to load URL.
|
|
8654 Default to the URL around or before point." t nil)
|
|
8655
|
|
8656 (autoload 'browse-url-w3 "browse-url" "\
|
|
8657 Ask the w3 WWW browser to load URL.
|
|
8658 Default to the URL around or before point." t nil)
|
|
8659
|
|
8660 (autoload 'browse-url-lynx-xterm "browse-url" "\
|
|
8661 Ask the Lynx WWW browser to load URL.
|
|
8662 Default to the URL around or before point. A new Lynx process is run
|
|
8663 in an Xterm window." t nil)
|
|
8664
|
|
8665 (autoload 'browse-url-lynx-emacs "browse-url" "\
|
|
8666 Ask the Lynx WWW browser to load URL.
|
|
8667 Default to the URL around or before point. Run a new Lynx process in
|
|
8668 an Emacs buffer." t nil)
|
|
8669
|
|
8670 ;;;***
|
|
8671
|
|
8672 ;;;### (autoloads (docref-setup) "docref" "utils/docref.el")
|
|
8673
|
|
8674 (autoload 'docref-setup "docref" "\
|
|
8675 Process docref cross-references in the current buffer.
|
|
8676 See also \\(f@docref-subst)." t nil)
|
|
8677
|
|
8678 ;;;***
|
|
8679
|
|
8680 ;;;### (autoloads (easy-menu-define) "easymenu" "utils/easymenu.el")
|
|
8681
|
|
8682 (autoload 'easy-menu-define "easymenu" "\
|
|
8683 Define a menu bar submenu in maps MAPS, according to MENU.
|
|
8684 The arguments SYMBOL and DOC are ignored; they are present for
|
|
8685 compatibility only. SYMBOL is not evaluated. In other Emacs versions
|
|
8686 these arguments may be used as a variable to hold the menu data, and a
|
|
8687 doc string for that variable.
|
|
8688
|
|
8689 The first element of MENU must be a string. It is the menu bar item name.
|
|
8690 The rest of the elements are menu items.
|
|
8691
|
|
8692 A menu item is usually a vector of three elements: [NAME CALLBACK ENABLE]
|
|
8693
|
|
8694 NAME is a string--the menu item name.
|
|
8695
|
|
8696 CALLBACK is a command to run when the item is chosen,
|
|
8697 or a list to evaluate when the item is chosen.
|
|
8698
|
|
8699 ENABLE is an expression; the item is enabled for selection
|
|
8700 whenever this expression's value is non-nil.
|
|
8701
|
|
8702 Alternatively, a menu item may have the form:
|
|
8703
|
|
8704 [ NAME CALLBACK [ KEYWORD ARG ] ... ]
|
|
8705
|
|
8706 Where KEYWORD is one of the symbol defined below.
|
|
8707
|
|
8708 :keys KEYS
|
|
8709
|
|
8710 KEYS is a string; a complex keyboard equivalent to this menu item.
|
|
8711
|
|
8712 :active ENABLE
|
|
8713
|
|
8714 ENABLE is an expression; the item is enabled for selection
|
|
8715 whenever this expression's value is non-nil.
|
|
8716
|
|
8717 :suffix NAME
|
|
8718
|
|
8719 NAME is a string; the name of an argument to CALLBACK.
|
|
8720
|
|
8721 :style STYLE
|
|
8722
|
|
8723 STYLE is a symbol describing the type of menu item. The following are
|
|
8724 defined:
|
|
8725
|
|
8726 toggle: A checkbox.
|
|
8727 Currently just prepend the name with the string \"Toggle \".
|
|
8728 radio: A radio button.
|
|
8729 nil: An ordinary menu item.
|
|
8730
|
|
8731 :selected SELECTED
|
|
8732
|
|
8733 SELECTED is an expression; the checkbox or radio button is selected
|
|
8734 whenever this expression's value is non-nil.
|
|
8735 Currently just disable radio buttons, no effect on checkboxes.
|
|
8736
|
|
8737 A menu item can be a string. Then that string appears in the menu as
|
|
8738 unselectable text. A string consisting solely of hyphens is displayed
|
|
8739 as a solid horizontal line.
|
|
8740
|
|
8741 A menu item can be a list. It is treated as a submenu.
|
|
8742 The first element should be the submenu name. That's used as the
|
|
8743 menu item in the top-level menu. The cdr of the submenu list
|
|
8744 is a list of menu items, as above." nil 'macro)
|
|
8745
|
|
8746 ;;;***
|
|
8747
|
22
|
8748 ;;;### (autoloads (insert-kbd-macro format-kbd-macro read-kbd-macro edit-named-kbd-macro edit-last-kbd-macro edit-kbd-macro) "edmacro" "utils/edmacro.el")
|
|
8749
|
|
8750 (define-key ctl-x-map "\C-k" 'edit-kbd-macro)
|
|
8751
|
|
8752 (defvar edmacro-eight-bits nil "\
|
|
8753 *Non-nil if edit-kbd-macro should leave 8-bit characters intact.
|
|
8754 Default nil means to write characters above \\177 in octal notation.")
|
|
8755
|
|
8756 (autoload 'edit-kbd-macro "edmacro" "\
|
|
8757 Edit a keyboard macro.
|
|
8758 At the prompt, type any key sequence which is bound to a keyboard macro.
|
|
8759 Or, type `C-x e' or RET to edit the last keyboard macro, `C-h l' to edit
|
|
8760 the last 100 keystrokes as a keyboard macro, or `M-x' to edit a macro by
|
|
8761 its command name.
|
|
8762 With a prefix argument, format the macro in a more concise way." t nil)
|
|
8763
|
|
8764 (autoload 'edit-last-kbd-macro "edmacro" "\
|
|
8765 Edit the most recently defined keyboard macro." t nil)
|
|
8766
|
|
8767 (autoload 'edit-named-kbd-macro "edmacro" "\
|
|
8768 Edit a keyboard macro which has been given a name by `name-last-kbd-macro'." t nil)
|
|
8769
|
|
8770 (autoload 'read-kbd-macro "edmacro" "\
|
|
8771 Read the region as a keyboard macro definition.
|
|
8772 The region is interpreted as spelled-out keystrokes, e.g., \"M-x abc RET\".
|
|
8773 See documentation for `edmacro-mode' for details.
|
|
8774 Leading/trailing \"C-x (\" and \"C-x )\" in the text are allowed and ignored.
|
|
8775 The resulting macro is installed as the \"current\" keyboard macro.
|
|
8776
|
|
8777 In Lisp, may also be called with a single STRING argument in which case
|
|
8778 the result is returned rather than being installed as the current macro.
|
|
8779 The result will be a string if possible, otherwise an event vector.
|
|
8780 Second argument NEED-VECTOR means to return an event vector always." t nil)
|
|
8781
|
|
8782 (autoload 'format-kbd-macro "edmacro" "\
|
|
8783 Return the keyboard macro MACRO as a human-readable string.
|
|
8784 This string is suitable for passing to `read-kbd-macro'.
|
|
8785 Second argument VERBOSE means to put one command per line with comments.
|
|
8786 If VERBOSE is `1', put everything on one line. If VERBOSE is omitted
|
|
8787 or nil, use a compact 80-column format." nil nil)
|
|
8788
|
|
8789 (autoload 'insert-kbd-macro "edmacro" "\
|
|
8790 Insert in buffer the definition of kbd macro NAME, as Lisp code.
|
|
8791 Optional second arg KEYS means also record the keys it is on
|
|
8792 \(this is the prefix argument, when calling interactively).
|
|
8793
|
|
8794 This Lisp code will, when executed, define the kbd macro with the same
|
|
8795 definition it has now. If you say to record the keys, the Lisp code
|
|
8796 will also rebind those keys to the macro. Only global key bindings
|
|
8797 are recorded since executing this Lisp code always makes global
|
|
8798 bindings.
|
|
8799
|
|
8800 To save a kbd macro, visit a file of Lisp code such as your `~/.emacs',
|
|
8801 use this command, and then save the file." t nil)
|
|
8802
|
|
8803 ;;;***
|
|
8804
|
|
8805 ;;;### (autoloads (turn-on-eldoc-mode eldoc-mode) "eldoc" "utils/eldoc.el")
|
|
8806
|
|
8807 (defvar eldoc-mode nil "\
|
|
8808 *If non-nil, show the defined parameters for the elisp function near point.
|
|
8809
|
|
8810 For the emacs lisp function at the beginning of the sexp which point is
|
|
8811 within, show the defined parameters for the function in the echo area.
|
|
8812 This information is extracted directly from the function or macro if it is
|
|
8813 in pure lisp. If the emacs function is a subr, the parameters are obtained
|
|
8814 from the documentation string if possible.
|
|
8815
|
|
8816 If point is over a documented variable, print that variable's docstring
|
|
8817 instead.
|
|
8818
|
|
8819 This variable is buffer-local.")
|
|
8820
|
|
8821 (autoload 'eldoc-mode "eldoc" "\
|
|
8822 *Enable or disable eldoc mode.
|
|
8823 See documentation for the variable of the same name for more details.
|
|
8824
|
|
8825 If called interactively with no prefix argument, toggle current condition
|
|
8826 of the mode.
|
|
8827 If called with a positive or negative prefix argument, enable or disable
|
|
8828 the mode, respectively." t nil)
|
|
8829
|
|
8830 (autoload 'turn-on-eldoc-mode "eldoc" "\
|
|
8831 Unequivocally turn on eldoc-mode (see variable documentation)." t nil)
|
|
8832
|
|
8833 ;;;***
|
|
8834
|
12
|
8835 ;;;### (autoloads (elp-submit-bug-report elp-results elp-instrument-package elp-instrument-list elp-restore-function elp-instrument-function) "elp" "utils/elp.el")
|
|
8836
|
|
8837 (autoload 'elp-instrument-function "elp" "\
|
|
8838 Instrument FUNSYM for profiling.
|
|
8839 FUNSYM must be a symbol of a defined function." t nil)
|
|
8840
|
|
8841 (autoload 'elp-restore-function "elp" "\
|
|
8842 Restore an instrumented function to its original definition.
|
|
8843 Argument FUNSYM is the symbol of a defined function." t nil)
|
|
8844
|
|
8845 (autoload 'elp-instrument-list "elp" "\
|
|
8846 Instrument for profiling, all functions in `elp-function-list'.
|
|
8847 Use optional LIST if provided instead." t nil)
|
|
8848
|
|
8849 (autoload 'elp-instrument-package "elp" "\
|
|
8850 Instrument for profiling, all functions which start with PREFIX.
|
|
8851 For example, to instrument all ELP functions, do the following:
|
|
8852
|
|
8853 \\[elp-instrument-package] RET elp- RET" t nil)
|
|
8854
|
|
8855 (autoload 'elp-results "elp" "\
|
|
8856 Display current profiling results.
|
|
8857 If `elp-reset-after-results' is non-nil, then current profiling
|
|
8858 information for all instrumented functions are reset after results are
|
|
8859 displayed." t nil)
|
|
8860
|
|
8861 (autoload 'elp-submit-bug-report "elp" "\
|
|
8862 Submit via mail, a bug report on elp." t nil)
|
|
8863
|
|
8864 ;;;***
|
|
8865
|
|
8866 ;;;### (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")
|
|
8867
|
|
8868 (defvar facemenu-menu nil "\
|
|
8869 Facemenu top-level menu keymap.")
|
|
8870
|
|
8871 (defvar facemenu-keymap (let ((map (make-sparse-keymap "Set face"))) (define-key map 111 'facemenu-set-face) map) "\
|
|
8872 Keymap for face-changing commands.
|
|
8873 `Facemenu-update' fills in the keymap according to the bindings
|
|
8874 requested in `facemenu-keybindings'.")
|
|
8875
|
|
8876 (autoload 'facemenu-set-face "facemenu" "\
|
|
8877 Add FACE to the region or next character typed.
|
|
8878 It will be added to the top of the face list; any faces lower on the list that
|
|
8879 will not show through at all will be removed.
|
|
8880
|
|
8881 Interactively, the face to be used is read with the minibuffer.
|
|
8882
|
|
8883 If the region is active and there is no prefix argument,
|
|
8884 this command sets the region to the requested face.
|
|
8885
|
|
8886 Otherwise, this command specifies the face for the next character
|
|
8887 inserted. Moving point or switching buffers before
|
|
8888 typing a character to insert cancels the specification." t nil)
|
|
8889
|
|
8890 (autoload 'facemenu-set-foreground "facemenu" "\
|
|
8891 Set the foreground color of the region or next character typed.
|
|
8892 The color is prompted for. A face named `fg:color' is used (or created).
|
|
8893 If the region is active, it will be set to the requested face. If
|
|
8894 it is inactive (even if mark-even-if-inactive is set) the next
|
|
8895 character that is typed (via `self-insert-command') will be set to
|
|
8896 the selected face. Moving point or switching buffers before
|
|
8897 typing a character cancels the request." t nil)
|
|
8898
|
|
8899 (autoload 'facemenu-set-background "facemenu" "\
|
|
8900 Set the background color of the region or next character typed.
|
|
8901 The color is prompted for. A face named `bg:color' is used (or created).
|
|
8902 If the region is active, it will be set to the requested face. If
|
|
8903 it is inactive (even if mark-even-if-inactive is set) the next
|
|
8904 character that is typed (via `self-insert-command') will be set to
|
|
8905 the selected face. Moving point or switching buffers before
|
|
8906 typing a character cancels the request." t nil)
|
|
8907
|
|
8908 (autoload 'facemenu-set-face-from-menu "facemenu" "\
|
|
8909 Set the face of the region or next character typed.
|
|
8910 This function is designed to be called from a menu; the face to use
|
|
8911 is the menu item's name.
|
|
8912
|
|
8913 If the region is active and there is no prefix argument,
|
|
8914 this command sets the region to the requested face.
|
|
8915
|
|
8916 Otherwise, this command specifies the face for the next character
|
|
8917 inserted. Moving point or switching buffers before
|
24
|
8918 typing a character to insert cancels the specification." t nil)
|
12
|
8919
|
|
8920 (autoload 'facemenu-set-size-default "facemenu" nil t nil)
|
|
8921
|
|
8922 (autoload 'facemenu-make-larger "facemenu" nil t nil)
|
|
8923
|
|
8924 (autoload 'facemenu-make-smaller "facemenu" nil t nil)
|
|
8925
|
|
8926 (autoload 'facemenu-make-much-larger "facemenu" nil t nil)
|
|
8927
|
|
8928 (autoload 'facemenu-make-much-smaller "facemenu" nil t nil)
|
|
8929
|
|
8930 (autoload 'facemenu-set-invisible "facemenu" "\
|
|
8931 Make the region invisible.
|
|
8932 This sets the `invisible' text property; it can be undone with
|
|
8933 `facemenu-remove-special'." t nil)
|
|
8934
|
|
8935 (autoload 'facemenu-set-intangible "facemenu" "\
|
|
8936 Make the region intangible: disallow moving into it.
|
|
8937 This sets the `intangible' text property; it can be undone with
|
|
8938 `facemenu-remove-special'." t nil)
|
|
8939
|
|
8940 (autoload 'facemenu-set-read-only "facemenu" "\
|
|
8941 Make the region unmodifiable.
|
|
8942 This sets the `read-only' text property; it can be undone with
|
|
8943 `facemenu-remove-special'." t nil)
|
|
8944
|
|
8945 (autoload 'facemenu-remove-props "facemenu" "\
|
|
8946 Remove all text properties that facemenu added to region." t nil)
|
|
8947
|
|
8948 (autoload 'facemenu-remove-special "facemenu" "\
|
|
8949 Remove all the \"special\" text properties from the region.
|
|
8950 These special properties include `invisible', `intangible' and `read-only'." t nil)
|
|
8951
|
|
8952 (autoload 'list-text-properties-at "facemenu" "\
|
|
8953 Pop up a buffer listing text-properties at LOCATION." t nil)
|
|
8954
|
|
8955 (autoload 'facemenu-read-color "facemenu" "\
|
|
8956 Read a color using the minibuffer." nil nil)
|
|
8957
|
|
8958 (autoload 'list-colors-display "facemenu" "\
|
|
8959 Display names of defined colors, and show what they look like.
|
|
8960 If the optional argument LIST is non-nil, it should be a list of
|
|
8961 colors to display. Otherwise, this command computes a list
|
|
8962 of colors that the current display can handle." t nil)
|
|
8963
|
|
8964 ;;;***
|
|
8965
|
22
|
8966 ;;;### (autoloads (floating-toolbar-from-extent-or-popup-mode-menu floating-toolbar-or-popup-mode-menu floating-toolbar) "floating-toolbar" "utils/floating-toolbar.el")
|
|
8967
|
|
8968 (autoload 'floating-toolbar "floating-toolbar" "\
|
|
8969 Popup a toolbar near the current mouse position.
|
|
8970 The toolbar instantiator used is taken from the 'floating-toolbar
|
|
8971 property of any extent under the mouse. If no such non-nil
|
|
8972 property exists for any extent under the mouse, then the value of the
|
|
8973 variable `floating-toolbar' is checked. If its value si nil, then
|
|
8974 no toolbar will be displayed.
|
|
8975
|
|
8976 This command should be bound to a button press event.
|
|
8977
|
|
8978 When called from a program, first arg EVENT should be the button
|
|
8979 press event. Optional second arg EXTENT-LOCAL-ONLY specifies
|
|
8980 that only extent local toolbars should be used; this means the
|
|
8981 `floating-toolbar' variable will not be consulted." t nil)
|
|
8982
|
|
8983 (autoload 'floating-toolbar-or-popup-mode-menu "floating-toolbar" "\
|
|
8984 Like floating-toolbar, but if no toolbar is displayed
|
|
8985 run popup-mode-menu." t nil)
|
|
8986
|
|
8987 (autoload 'floating-toolbar-from-extent-or-popup-mode-menu "floating-toolbar" "\
|
|
8988 Like floating-toolbar-or-popup-mode-menu, but search only for an
|
|
8989 extent local toolbar." t nil)
|
|
8990
|
|
8991 ;;;***
|
|
8992
|
12
|
8993 ;;;### (autoloads (enable-flow-control-on enable-flow-control) "flow-ctrl" "utils/flow-ctrl.el")
|
|
8994
|
|
8995 (autoload 'enable-flow-control "flow-ctrl" "\
|
|
8996 Toggle flow control handling.
|
|
8997 When handling is enabled, user can type C-s as C-\\, and C-q as C-^.
|
|
8998 With arg, enable flow control mode if arg is positive, otherwise disable." t nil)
|
|
8999
|
|
9000 (autoload 'enable-flow-control-on "flow-ctrl" "\
|
|
9001 Enable flow control if using one of a specified set of terminal types.
|
|
9002 Use `(enable-flow-control-on \"vt100\" \"h19\")' to enable flow control
|
|
9003 on VT-100 and H19 terminals. When flow control is enabled,
|
|
9004 you must type C-\\ to get the effect of a C-s, and type C-^
|
|
9005 to get the effect of a C-q.
|
|
9006
|
|
9007 This function has no effect unless the current device is a tty.
|
|
9008
|
|
9009 The tty terminal type is determined from the TERM environment variable.
|
|
9010 Trailing hyphens and everything following is stripped, so a TERM
|
|
9011 value of \"vt100-nam\" is treated the same as \"vt100\"." nil nil)
|
|
9012
|
|
9013 ;;;***
|
|
9014
|
|
9015 ;;;### (autoloads (forms-find-file-other-window forms-find-file forms-mode) "forms" "utils/forms.el")
|
|
9016
|
|
9017 (autoload 'forms-mode "forms" "\
|
|
9018 Major mode to visit files in a field-structured manner using a form.
|
|
9019
|
|
9020 Commands: Equivalent keys in read-only mode:
|
|
9021 TAB forms-next-field TAB
|
|
9022 \\C-c TAB forms-next-field
|
|
9023 \\C-c < forms-first-record <
|
|
9024 \\C-c > forms-last-record >
|
|
9025 \\C-c ? describe-mode ?
|
|
9026 \\C-c \\C-k forms-delete-record
|
|
9027 \\C-c \\C-q forms-toggle-read-only q
|
|
9028 \\C-c \\C-o forms-insert-record
|
|
9029 \\C-c \\C-l forms-jump-record l
|
|
9030 \\C-c \\C-n forms-next-record n
|
|
9031 \\C-c \\C-p forms-prev-record p
|
|
9032 \\C-c \\C-r forms-search-backward r
|
|
9033 \\C-c \\C-s forms-search-forward s
|
|
9034 \\C-c \\C-x forms-exit x
|
|
9035 " t nil)
|
|
9036
|
|
9037 (autoload 'forms-find-file "forms" "\
|
|
9038 Visit a file in Forms mode." t nil)
|
|
9039
|
|
9040 (autoload 'forms-find-file-other-window "forms" "\
|
|
9041 Visit a file in Forms mode in other window." t nil)
|
|
9042
|
|
9043 ;;;***
|
|
9044
|
|
9045 ;;;### (autoloads (highlight-headers-follow-url highlight-headers-follow-url-mosaic highlight-headers-follow-url-netscape highlight-headers) "highlight-headers" "utils/highlight-headers.el")
|
|
9046
|
|
9047 (autoload 'highlight-headers "highlight-headers" "\
|
|
9048 Highlight message headers between start and end.
|
|
9049 Faces used:
|
|
9050 message-headers the part before the colon
|
|
9051 message-header-contents the part after the colon
|
|
9052 message-highlighted-header-contents contents of \"special\" headers
|
|
9053 message-cited-text quoted text from other messages
|
|
9054
|
|
9055 Variables used:
|
|
9056
|
|
9057 highlight-headers-regexp what makes a \"special\" header
|
|
9058 highlight-headers-citation-regexp matches lines of quoted text
|
|
9059 highlight-headers-citation-header-regexp matches headers for quoted text
|
|
9060
|
|
9061 If HACK-SIG is true,then we search backward from END for something that
|
|
9062 looks like the beginning of a signature block, and don't consider that a
|
|
9063 part of the message (this is because signatures are often incorrectly
|
|
9064 interpreted as cited text.)" nil nil)
|
|
9065
|
|
9066 (autoload 'highlight-headers-follow-url-netscape "highlight-headers" nil nil nil)
|
|
9067
|
|
9068 (autoload 'highlight-headers-follow-url-mosaic "highlight-headers" nil nil nil)
|
|
9069
|
|
9070 (autoload 'highlight-headers-follow-url "highlight-headers" nil t nil)
|
|
9071
|
|
9072 ;;;***
|
|
9073
|
|
9074 ;;;### (autoloads (id-select-double-click-hook id-select-and-kill-thing id-select-and-copy-thing id-select-goto-matching-tag id-select-thing-with-mouse id-select-thing) "id-select" "utils/id-select.el")
|
|
9075
|
|
9076 (autoload 'id-select-thing "id-select" "\
|
|
9077 Mark the region selected by the syntax of the thing at point.
|
|
9078 If invoked repeatedly, selects bigger and bigger things.
|
|
9079 If `id-select-display-type' is non-nil, the type of selection is displayed in
|
|
9080 the minibuffer." t nil)
|
|
9081
|
|
9082 (autoload 'id-select-thing-with-mouse "id-select" "\
|
|
9083 Select a region based on the syntax of the character from a mouse click.
|
|
9084 If the click occurs at the same point as the last click, select
|
|
9085 the next larger syntactic structure. If `id-select-display-type' is non-nil,
|
|
9086 the type of selection is displayed in the minibuffer." t nil)
|
|
9087
|
|
9088 (autoload 'id-select-goto-matching-tag "id-select" "\
|
|
9089 If in a major mode listed in `id-select-markup-modes,' moves point to the start of the tag paired with the closest tag that point is within or precedes.
|
|
9090 Returns t if point is moved, else nil.
|
|
9091 Signals an error if no tag is found following point or if the closing tag
|
|
9092 does not have a `>' terminator character." t nil)
|
|
9093
|
|
9094 (autoload 'id-select-and-copy-thing "id-select" "\
|
|
9095 Copy the region surrounding the syntactical unit at point." t nil)
|
|
9096
|
|
9097 (autoload 'id-select-and-kill-thing "id-select" "\
|
|
9098 Kill the region surrounding the syntactical unit at point." t nil)
|
|
9099
|
|
9100 (autoload 'id-select-double-click-hook "id-select" "\
|
|
9101 Select a region based on the syntax of the character wherever the mouse is double-clicked.
|
|
9102 If the double-click occurs at the same point as the last double-click, select
|
|
9103 the next larger syntactic structure. If `id-select-display-type' is non-nil,
|
|
9104 the type of selection is displayed in the minibuffer." nil nil)
|
|
9105
|
|
9106 ;;;***
|
|
9107
|
|
9108 ;;;### (autoloads (unload-feature) "loadhist" "utils/loadhist.el")
|
|
9109
|
|
9110 (autoload 'unload-feature "loadhist" "\
|
|
9111 Unload the library that provided FEATURE, restoring all its autoloads.
|
|
9112 If the feature is required by any other loaded code, and optional FORCE
|
|
9113 is nil, raise an error." t nil)
|
|
9114
|
|
9115 ;;;***
|
|
9116
|
|
9117 ;;;### (autoloads (what-domain mail-extract-address-components) "mail-extr" "utils/mail-extr.el")
|
|
9118
|
|
9119 (autoload 'mail-extract-address-components "mail-extr" "\
|
|
9120 Given an RFC-822 ADDRESS, extract full name and canonical address.
|
|
9121 Returns a list of the form (FULL-NAME CANONICAL-ADDRESS).
|
|
9122 If no name can be extracted, FULL-NAME will be nil.
|
|
9123 ADDRESS may be a string or a buffer. If it is a buffer, the visible
|
|
9124 (narrowed) portion of the buffer will be interpreted as the address.
|
|
9125 (This feature exists so that the clever caller might be able to avoid
|
|
9126 consing a string.)
|
|
9127 If ADDRESS contains more than one RFC-822 address, only the first is
|
|
9128 returned. Some day this function may be extended to extract multiple
|
|
9129 addresses, or perhaps return the position at which parsing stopped." nil nil)
|
|
9130
|
|
9131 (autoload 'what-domain "mail-extr" "\
|
|
9132 Prompts for a mail domain, and prints the country it corresponds to
|
|
9133 in the minibuffer." t nil)
|
|
9134
|
|
9135 ;;;***
|
|
9136
|
|
9137 ;;;### (autoloads (mail-fetch-field mail-file-babyl-p) "mail-utils" "utils/mail-utils.el")
|
|
9138
|
|
9139 (defvar mail-use-rfc822 nil "\
|
|
9140 *If non-nil, use a full, hairy RFC822 parser on mail addresses.
|
|
9141 Otherwise, (the default) use a smaller, somewhat faster, and
|
|
9142 often correct parser.")
|
|
9143
|
|
9144 (autoload 'mail-file-babyl-p "mail-utils" nil nil nil)
|
|
9145
|
|
9146 (autoload 'mail-fetch-field "mail-utils" "\
|
|
9147 Return the value of the header field FIELD-NAME.
|
|
9148 The buffer is expected to be narrowed to just the headers of the message.
|
|
9149 If second arg LAST is non-nil, use the last such field if there are several.
|
|
9150 If third arg ALL is non-nil, concatenate all such fields with commas between." nil nil)
|
|
9151
|
|
9152 ;;;***
|
|
9153
|
|
9154 ;;;### (autoloads (read-passwd) "passwd" "utils/passwd.el")
|
|
9155
|
|
9156 (autoload 'read-passwd "passwd" "\
|
|
9157 Prompts for a password in the minibuffer, and returns it as a string.
|
|
9158 If PROMPT may be a prompt string or an alist of elements
|
|
9159 '(prompt . default).
|
|
9160 If optional arg CONFIRM is true, then ask the user to type the password
|
|
9161 again to confirm that they typed it correctly.
|
|
9162 If optional arg DEFAULT is provided, then it is a string to insert as
|
|
9163 the default choice (it is not, of course, displayed.)
|
|
9164
|
|
9165 If running under X, the keyboard will be grabbed (with XGrabKeyboard())
|
|
9166 to reduce the possibility that evesdropping is occuring.
|
|
9167
|
|
9168 When reading a password, all keys self-insert, except for:
|
|
9169 \\<read-passwd-map>
|
|
9170 \\[read-passwd-erase-line] Erase the entire line.
|
|
9171 \\[quoted-insert] Insert the next character literally.
|
|
9172 \\[delete-backward-char] Delete the previous character.
|
|
9173 \\[exit-minibuffer] Accept what you have typed.
|
|
9174 \\[keyboard-quit] Abort the command.
|
|
9175
|
|
9176 The returned value is always a newly-created string. No additional copies
|
|
9177 of the password remain after this function has returned.
|
|
9178
|
|
9179 NOTE: unless great care is taken, the typed password will exist in plaintext
|
|
9180 form in the running image for an arbitrarily long time. Priveleged users may
|
|
9181 be able to extract it from memory. If emacs crashes, it may appear in the
|
|
9182 resultant core file.
|
|
9183
|
|
9184 Some steps you can take to prevent the password from being copied around:
|
|
9185
|
|
9186 - as soon as you are done with the returned string, destroy it with
|
|
9187 (fillarray string 0). The same goes for any default passwords
|
|
9188 or password histories.
|
|
9189
|
|
9190 - do not copy the string, as with concat or substring - if you do, be
|
|
9191 sure to keep track of and destroy all copies.
|
|
9192
|
|
9193 - do not insert the password into a buffer - if you do, be sure to
|
|
9194 overwrite the buffer text before killing it, as with the functions
|
|
9195 `passwd-erase-buffer' or `passwd-kill-buffer'. Note that deleting
|
|
9196 the text from the buffer does NOT necessarily remove the text from
|
|
9197 memory.
|
|
9198
|
|
9199 - be careful of the undo history - if you insert the password into a
|
|
9200 buffer which has undo recording turned on, the password will be
|
|
9201 copied onto the undo list, and thus recoverable.
|
|
9202
|
|
9203 - do not pass it as an argument to a shell command - anyone will be
|
|
9204 able to see it if they run `ps' at the right time.
|
|
9205
|
|
9206 Note that the password will be temporarily recoverable with the `view-lossage'
|
|
9207 command. This data will not be overwritten until another hundred or so
|
|
9208 characters are typed. There's not currently a way around this." nil nil)
|
|
9209
|
|
9210 ;;;***
|
|
9211
|
|
9212 ;;;### (autoloads (pp-eval-last-sexp pp-eval-expression pp) "pp" "utils/pp.el")
|
|
9213
|
|
9214 (defalias 'pprint 'pp)
|
|
9215
|
|
9216 (autoload 'pp "pp" "\
|
|
9217 Output the pretty-printed representation of OBJECT, any Lisp object.
|
|
9218 Quoting characters are printed when needed to make output that `read'
|
|
9219 can handle, whenever this is possible.
|
|
9220 Output stream is STREAM, or value of `standard-output' (which see)." nil nil)
|
|
9221
|
|
9222 (autoload 'pp-eval-expression "pp" "\
|
|
9223 Evaluate EXPRESSION and pretty-print value into a new display buffer.
|
|
9224 If the pretty-printed value fits on one line, the message line is used
|
|
9225 instead. Value is also consed on to front of variable values 's
|
|
9226 value." t nil)
|
|
9227
|
|
9228 (autoload 'pp-eval-last-sexp "pp" "\
|
|
9229 Run `pp-eval-expression' on sexp before point (which see).
|
|
9230 With argument, pretty-print output into current buffer.
|
|
9231 Ignores leading comment characters." t nil)
|
|
9232
|
|
9233 ;;;***
|
|
9234
|
|
9235 ;;;### (autoloads (prettyexpand-all-sexp prettyexpand-sexp macroexpand-all-sexp macroexpand-sexp pp-plist pp-variable pp-function) "pretty-print" "utils/pretty-print.el")
|
|
9236
|
|
9237 (autoload 'pp-function "pretty-print" "\
|
|
9238 Pretty print the function definition of SYMBOL in a seperate buffer" t nil)
|
|
9239
|
|
9240 (autoload 'pp-variable "pretty-print" "\
|
|
9241 Pretty print the variable value of SYMBOL in a seperate buffer" t nil)
|
|
9242
|
|
9243 (autoload 'pp-plist "pretty-print" "\
|
|
9244 Pretty print the property list of SYMBOL in a seperate buffer" t nil)
|
|
9245
|
|
9246 (autoload 'macroexpand-sexp "pretty-print" "\
|
|
9247 Macro expand the sexpression following point. Pretty print expansion in a
|
|
9248 temporary buffer. With prefix argument, replace the original
|
|
9249 sexpression by its expansion in the current buffer." t nil)
|
|
9250
|
|
9251 (autoload 'macroexpand-all-sexp "pretty-print" "\
|
|
9252 Macro expand recursively the sexpression following point. Pretty print
|
|
9253 expansion in a temporary buffer. With prefix argument, replace the
|
|
9254 original sexpression by its expansion in the current buffer." t nil)
|
|
9255
|
|
9256 (autoload 'prettyexpand-sexp "pretty-print" "\
|
|
9257 Macro expand the sexpression following point. Pretty print expansion
|
|
9258 in a temporary buffer. With prefix argument, replace the original
|
|
9259 sexpression by its expansion in the current buffer.
|
|
9260 However, calls to macros specified in the variable
|
|
9261 `pp-shadow-expansion-list' are not expanded, in order to make the code
|
|
9262 look nicer." t nil)
|
|
9263
|
|
9264 (autoload 'prettyexpand-all-sexp "pretty-print" "\
|
|
9265 Macro expand recursively the sexpression following point. Pretty print
|
|
9266 expansion in a temporary buffer. With prefix argument, replace the
|
|
9267 original sexpression by its expansion in the current buffer.
|
|
9268 However, calls to macros specified in the variable
|
|
9269 `pp-shadow-expansion-list' are not expanded, in order to make the code
|
|
9270 look nicer." t nil)
|
|
9271
|
|
9272 ;;;***
|
|
9273
|
|
9274 ;;;### (autoloads (reporter-submit-bug-report) "reporter" "utils/reporter.el")
|
|
9275
|
|
9276 (autoload 'reporter-submit-bug-report "reporter" nil nil nil)
|
|
9277
|
|
9278 ;;;***
|
|
9279
|
|
9280 ;;;### (autoloads (make-ring ringp) "ring" "utils/ring.el")
|
|
9281
|
|
9282 (autoload 'ringp "ring" "\
|
|
9283 Returns t if X is a ring; nil otherwise." nil nil)
|
|
9284
|
|
9285 (define-obsolete-function-alias 'ring-p 'ringp)
|
|
9286
|
|
9287 (autoload 'make-ring "ring" "\
|
|
9288 Make a ring that can contain SIZE elements." nil nil)
|
|
9289
|
|
9290 ;;;***
|
|
9291
|
|
9292 ;;;### (autoloads (skeleton-pair-insert-maybe skeleton-insert skeleton-proxy skeleton-proxy-new define-skeleton) "skeleton" "utils/skeleton.el")
|
|
9293
|
|
9294 (defvar skeleton-filter 'identity "\
|
|
9295 Function for transforming a skeleton proxy's aliases' variable value.")
|
|
9296
|
|
9297 (autoload 'define-skeleton "skeleton" "\
|
|
9298 Define a user-configurable COMMAND that enters a statement skeleton.
|
|
9299 DOCUMENTATION is that of the command, while the variable of the same name,
|
|
9300 which contains the skeleton, has a documentation to that effect.
|
|
9301 INTERACTOR and ELEMENT ... are as defined under `skeleton-insert'." nil 'macro)
|
|
9302
|
|
9303 (autoload 'skeleton-proxy-new "skeleton" "\
|
|
9304 Insert skeleton defined by variable of same name (see `skeleton-insert').
|
|
9305 Prefix ARG allows wrapping around words or regions (see `skeleton-insert').
|
|
9306 If no ARG was given, but the region is visible, ARG defaults to -1 depending
|
|
9307 on `skeleton-autowrap'. An ARG of M-0 will prevent this just for once.
|
|
9308 This command can also be an abbrev expansion (3rd and 4th columns in
|
|
9309 \\[edit-abbrevs] buffer: \"\" command-name).
|
|
9310
|
|
9311 When called as a function, optional first argument STR may also be a string
|
|
9312 which will be the value of `str' whereas the skeleton's interactor is then
|
|
9313 ignored." t nil)
|
|
9314
|
|
9315 (autoload 'skeleton-proxy "skeleton" "\
|
|
9316 Insert skeleton defined by variable of same name (see `skeleton-insert').
|
|
9317 Prefix ARG allows wrapping around words or regions (see `skeleton-insert').
|
|
9318 If no ARG was given, but the region is visible, ARG defaults to -1 depending
|
|
9319 on `skeleton-autowrap'. An ARG of M-0 will prevent this just for once.
|
|
9320 This command can also be an abbrev expansion (3rd and 4th columns in
|
|
9321 \\[edit-abbrevs] buffer: \"\" command-name).
|
|
9322
|
|
9323 When called as a function, optional first argument STR may also be a string
|
|
9324 which will be the value of `str' whereas the skeleton's interactor is then
|
|
9325 ignored." t nil)
|
|
9326
|
|
9327 (autoload 'skeleton-insert "skeleton" "\
|
|
9328 Insert the complex statement skeleton SKELETON describes very concisely.
|
|
9329
|
|
9330 With optional third REGIONS wrap first interesting point (`_') in skeleton
|
|
9331 around next REGIONS words, if REGIONS is positive. If REGIONS is negative,
|
|
9332 wrap REGIONS preceding interregions into first REGIONS interesting positions
|
|
9333 \(successive `_'s) in skeleton. An interregion is the stretch of text between
|
|
9334 two contiguous marked points. If you marked A B C [] (where [] is the cursor)
|
|
9335 in alphabetical order, the 3 interregions are simply the last 3 regions. But
|
|
9336 if you marked B A [] C, the interregions are B-A, A-[], []-C.
|
|
9337
|
|
9338 Optional fourth STR is the value for the variable `str' within the skeleton.
|
|
9339 When this is non-`nil' the interactor gets ignored, and this should be a valid
|
|
9340 skeleton element.
|
|
9341
|
|
9342 SKELETON is made up as (INTERACTOR ELEMENT ...). INTERACTOR may be nil if
|
|
9343 not needed, a prompt-string or an expression for complex read functions.
|
|
9344
|
|
9345 If ELEMENT is a string or a character it gets inserted (see also
|
|
9346 `skeleton-transformation'). Other possibilities are:
|
|
9347
|
|
9348 \\n go to next line and indent according to mode
|
|
9349 _ interesting point, interregion here, point after termination
|
|
9350 > indent line (or interregion if > _) according to major mode
|
|
9351 & do next ELEMENT if previous moved point
|
|
9352 | do next ELEMENT if previous didn't move point
|
|
9353 -num delete num preceding characters (see `skeleton-untabify')
|
|
9354 resume: skipped, continue here if quit is signaled
|
|
9355 nil skipped
|
|
9356
|
|
9357 Further elements can be defined via `skeleton-further-elements'. ELEMENT may
|
|
9358 itself be a SKELETON with an INTERACTOR. The user is prompted repeatedly for
|
|
9359 different inputs. The SKELETON is processed as often as the user enters a
|
|
9360 non-empty string. \\[keyboard-quit] terminates skeleton insertion, but
|
|
9361 continues after `resume:' and positions at `_' if any. If INTERACTOR in such
|
|
9362 a subskeleton is a prompt-string which contains a \".. %s ..\" it is
|
|
9363 formatted with `skeleton-subprompt'. Such an INTERACTOR may also a list of
|
|
9364 strings with the subskeleton being repeated once for each string.
|
|
9365
|
|
9366 Quoted Lisp expressions are evaluated evaluated for their side-effect.
|
|
9367 Other Lisp expressions are evaluated and the value treated as above.
|
|
9368 Note that expressions may not return `t' since this implies an
|
|
9369 endless loop. Modes can define other symbols by locally setting them
|
|
9370 to any valid skeleton element. The following local variables are
|
|
9371 available:
|
|
9372
|
|
9373 str first time: read a string according to INTERACTOR
|
|
9374 then: insert previously read string once more
|
|
9375 help help-form during interaction with the user or `nil'
|
|
9376 input initial input (string or cons with index) while reading str
|
|
9377 v1, v2 local variables for memorizing anything you want
|
|
9378
|
|
9379 When done with skeleton, but before going back to `_'-point call
|
|
9380 `skeleton-end-hook' if that is non-`nil'." nil nil)
|
|
9381
|
|
9382 (autoload 'skeleton-pair-insert-maybe "skeleton" "\
|
|
9383 Insert the character you type ARG times.
|
|
9384
|
|
9385 With no ARG, if `skeleton-pair' is non-nil, pairing can occur. If the region
|
|
9386 is visible the pair is wrapped around it depending on `skeleton-autowrap'.
|
|
9387 Else, if `skeleton-pair-on-word' is non-nil or we are not before or inside a
|
|
9388 word, and if `skeleton-pair-filter' returns nil, pairing is performed.
|
|
9389
|
|
9390 If a match is found in `skeleton-pair-alist', that is inserted, else
|
|
9391 the defaults are used. These are (), [], {}, <> and `' for the
|
|
9392 symmetrical ones, and the same character twice for the others." t nil)
|
|
9393
|
|
9394 ;;;***
|
|
9395
|
24
|
9396 ;;;### (autoloads (speedbar-frame-mode) "speedbar" "utils/speedbar.el")
|
|
9397
|
|
9398 (autoload 'speedbar-frame-mode "speedbar" "\
|
|
9399 Enable or disable use of a speedbar. Positive number means turn
|
|
9400 on, negative turns speedbar off, and nil means toggle. Once the
|
|
9401 speedbar frame is activated, a buffer in `speedbar-mode' will be
|
|
9402 displayed. Currently, only one speedbar is supported at a time." t nil)
|
|
9403
|
|
9404 ;;;***
|
|
9405
|
16
|
9406 ;;;### (autoloads nil "timezone" "utils/timezone.el")
|
|
9407
|
|
9408 (define-error 'invalid-date "Invalid date string")
|
|
9409
|
|
9410 ;;;***
|
|
9411
|
12
|
9412 ;;;### (autoloads (tq-create) "tq" "utils/tq.el")
|
|
9413
|
|
9414 (autoload 'tq-create "tq" "\
|
|
9415 Create and return a transaction queue communicating with PROCESS.
|
|
9416 PROCESS should be a subprocess capable of sending and receiving
|
|
9417 streams of bytes. It may be a local process, or it may be connected
|
|
9418 to a tcp server on another machine." nil nil)
|
|
9419
|
|
9420 ;;;***
|
|
9421
|
|
9422 ;;;### (autoloads (trace-function-background trace-function) "trace" "utils/trace.el")
|
|
9423
|
|
9424 (defvar trace-buffer "*trace-output*" "\
|
|
9425 *Trace output will by default go to that buffer.")
|
|
9426
|
|
9427 (autoload 'trace-function "trace" "\
|
|
9428 Traces FUNCTION with trace output going to BUFFER.
|
|
9429 For every call of FUNCTION Lisp-style trace messages that display argument
|
|
9430 and return values will be inserted into BUFFER. This function generates the
|
|
9431 trace advice for FUNCTION and activates it together with any other advice
|
|
9432 there might be!! The trace BUFFER will popup whenever FUNCTION is called.
|
|
9433 Do not use this to trace functions that switch buffers or do any other
|
|
9434 display oriented stuff, use `trace-function-background' instead." t nil)
|
|
9435
|
|
9436 (autoload 'trace-function-background "trace" "\
|
|
9437 Traces FUNCTION with trace output going quietly to BUFFER.
|
|
9438 For every call of FUNCTION Lisp-style trace messages that display argument
|
|
9439 and return values will be inserted into BUFFER. This function generates the
|
|
9440 trace advice for FUNCTION and activates it together with any other advice
|
|
9441 there might be!! Trace output will quietly go to BUFFER without changing
|
|
9442 the window or buffer configuration at all." t nil)
|
|
9443
|
|
9444 ;;;***
|
|
9445
|
|
9446 ;;;### (autoloads (y-or-n-p-with-timeout yes-or-no-p-with-timeout with-timeout with-timeout-internal) "with-timeout" "utils/with-timeout.el")
|
|
9447
|
|
9448 (autoload 'with-timeout-internal "with-timeout" nil nil nil)
|
|
9449
|
|
9450 (autoload 'with-timeout "with-timeout" "\
|
|
9451 Usage: (with-timeout (seconds &rest timeout-forms) &rest body)
|
|
9452 This is just like progn, but if the given number of seconds expires before
|
|
9453 the body returns, then timeout-forms are evaluated and returned instead.
|
|
9454 The body won't be interrupted in the middle of a computation: the check for
|
|
9455 the timer expiration only occurs when body does a redisplay, or prompts the
|
|
9456 user for input, or calls accept-process-output." nil 'macro)
|
|
9457
|
|
9458 (autoload 'yes-or-no-p-with-timeout "with-timeout" "\
|
|
9459 Just like yes-or-no-p, but will time out after TIMEOUT seconds
|
|
9460 if the user has not yes answered, returning DEFAULT-VALUE." nil nil)
|
|
9461
|
|
9462 (autoload 'y-or-n-p-with-timeout "with-timeout" "\
|
|
9463 Just like y-or-n-p, but will time out after TIMEOUT seconds
|
|
9464 if the user has not yes answered, returning DEFAULT-VALUE." nil nil)
|
|
9465
|
|
9466 ;;;***
|
|
9467
|
|
9468 ;;;### (autoloads (xbm-button-create) "xbm-button" "utils/xbm-button.el")
|
|
9469
|
|
9470 (autoload 'xbm-button-create "xbm-button" "\
|
|
9471 Returns a list of XBM image instantiators for a button displaying TEXT.
|
|
9472 The list is of the form
|
|
9473 (UP DOWN DISABLED)
|
|
9474 where UP, DOWN, and DISABLED are the up, down and disabled image
|
|
9475 instantiators for the button.
|
|
9476
|
|
9477 BORDER-THICKNESS specifies how many pixels should be used for the
|
|
9478 borders on the edges of the buttons. It should be a positive integer,
|
|
9479 or 0 to mean no border." nil nil)
|
|
9480
|
|
9481 ;;;***
|
|
9482
|
|
9483 ;;;### (autoloads (xpm-button-create) "xpm-button" "utils/xpm-button.el")
|
|
9484
|
|
9485 (autoload 'xpm-button-create "xpm-button" "\
|
|
9486 Returns a list of XPM image instantiators for a button displaying TEXT.
|
|
9487 The list is of the form
|
|
9488 (UP DOWN DISABLED)
|
|
9489 where UP, DOWN, and DISABLED are the up, down and disabled image
|
|
9490 instantiators for the button.
|
|
9491
|
|
9492 SHADOW-THICKNESS specifies how many pixels should be used for the
|
|
9493 shadows on the edges of the buttons. It should be a positive integer,
|
|
9494 or 0 to mean no shadows on the edges.
|
|
9495 FG-COLOR is the color used to display the text. It should be a string.
|
|
9496 BG-COLOR is the background color the text will be displayed upon.
|
|
9497 It should be a string." nil nil)
|
|
9498
|
|
9499 ;;;***
|
|
9500
|
|
9501 ;;;### (autoloads (viper-mode) "viper" "viper/viper.el")
|
|
9502
|
|
9503 (autoload 'viper-mode "viper" "\
|
|
9504 Turn on Viper emulation of Vi." t nil)
|
|
9505
|
|
9506 (defalias 'vip-mode 'viper-mode)
|
|
9507
|
|
9508 ;;;***
|
|
9509
|
|
9510 ;;;### (autoloads (vm-easy-menu-create-keymaps vm-easy-menu-define) "vm-easymenu" "vm/vm-easymenu.el")
|
|
9511
|
|
9512 (autoload 'vm-easy-menu-define "vm-easymenu" "\
|
|
9513 Define a menu bar submenu in maps MAPS, according to MENU.
|
|
9514 The menu keymap is stored in symbol SYMBOL, both as its value
|
|
9515 and as its function definition. DOC is used as the doc string for SYMBOL.
|
|
9516
|
|
9517 The first element of MENU must be a string. It is the menu bar item name.
|
|
9518 The rest of the elements are menu items.
|
|
9519
|
|
9520 A menu item is usually a vector of three elements: [NAME CALLBACK ENABLE]
|
|
9521
|
|
9522 NAME is a string--the menu item name.
|
|
9523
|
|
9524 CALLBACK is a command to run when the item is chosen,
|
|
9525 or a list to evaluate when the item is chosen.
|
|
9526
|
|
9527 ENABLE is an expression; the item is enabled for selection
|
|
9528 whenever this expression's value is non-nil.
|
|
9529
|
|
9530 Alternatively, a menu item may have the form:
|
|
9531
|
|
9532 [ NAME CALLBACK [ KEYWORD ARG ] ... ]
|
|
9533
|
|
9534 Where KEYWORD is one of the symbol defined below.
|
|
9535
|
|
9536 :keys KEYS
|
|
9537
|
|
9538 KEYS is a string; a complex keyboard equivalent to this menu item.
|
|
9539 This is normally not needed because keyboard equivalents are usually
|
|
9540 computed automatically.
|
|
9541
|
|
9542 :active ENABLE
|
|
9543
|
|
9544 ENABLE is an expression; the item is enabled for selection
|
|
9545 whenever this expression's value is non-nil.
|
|
9546
|
|
9547 :suffix NAME
|
|
9548
|
|
9549 NAME is a string; the name of an argument to CALLBACK.
|
|
9550
|
|
9551 :style
|
|
9552
|
|
9553 STYLE is a symbol describing the type of menu item. The following are
|
|
9554 defined:
|
|
9555
|
|
9556 toggle: A checkbox.
|
|
9557 Currently just prepend the name with the string \"Toggle \".
|
|
9558 radio: A radio button.
|
|
9559 nil: An ordinary menu item.
|
|
9560
|
|
9561 :selected SELECTED
|
|
9562
|
|
9563 SELECTED is an expression; the checkbox or radio button is selected
|
|
9564 whenever this expression's value is non-nil.
|
|
9565 Currently just disable radio buttons, no effect on checkboxes.
|
|
9566
|
|
9567 A menu item can be a string. Then that string appears in the menu as
|
|
9568 unselectable text. A string consisting solely of hyphens is displayed
|
|
9569 as a solid horizontal line.
|
|
9570
|
|
9571 A menu item can be a list. It is treated as a submenu.
|
|
9572 The first element should be the submenu name. That's used as the
|
|
9573 menu item in the top-level menu. The cdr of the submenu list
|
|
9574 is a list of menu items, as above." nil 'macro)
|
|
9575
|
|
9576 (autoload 'vm-easy-menu-create-keymaps "vm-easymenu" nil nil nil)
|
|
9577
|
|
9578 ;;;***
|
|
9579
|
26
|
9580 ;;;### (autoloads (url-cache-expired url-extract-from-cache url-create-cached-filename url-is-cached url-store-in-cache) "url-cache" "w3/url-cache.el")
|
|
9581
|
|
9582 (autoload 'url-store-in-cache "url-cache" "\
|
|
9583 Store buffer BUFF in the cache" nil nil)
|
|
9584
|
|
9585 (autoload 'url-is-cached "url-cache" "\
|
|
9586 Return non-nil if the URL is cached." nil nil)
|
|
9587
|
|
9588 (autoload 'url-create-cached-filename "url-cache" "\
|
|
9589 Return a filename in the local cache for URL" nil nil)
|
|
9590
|
|
9591 (autoload 'url-extract-from-cache "url-cache" "\
|
|
9592 Extract FNAM from the local disk cache" nil nil)
|
|
9593
|
|
9594 (autoload 'url-cache-expired "url-cache" "\
|
|
9595 Return t iff a cached file has expired." nil nil)
|
|
9596
|
|
9597 ;;;***
|
|
9598
|
|
9599 ;;;### (autoloads (url-retrieve url-popup-info url-get-url-at-point url-buffer-visiting url-normalize-url url-file-attributes) "url" "w3/url.el")
|
14
|
9600
|
|
9601 (autoload 'url-file-attributes "url" "\
|
|
9602 Return a list of attributes of URL.
|
|
9603 Value is nil if specified file cannot be opened.
|
|
9604 Otherwise, list elements are:
|
|
9605 0. t for directory, string (name linked to) for symbolic link, or nil.
|
|
9606 1. Number of links to file.
|
|
9607 2. File uid.
|
|
9608 3. File gid.
|
|
9609 4. Last access time, as a list of two integers.
|
|
9610 First integer has high-order 16 bits of time, second has low 16 bits.
|
|
9611 5. Last modification time, likewise.
|
|
9612 6. Last status change time, likewise.
|
|
9613 7. Size in bytes. (-1, if number is out of range).
|
|
9614 8. File modes, as a string of ten letters or dashes as in ls -l.
|
|
9615 If URL is on an http server, this will return the content-type if possible.
|
|
9616 9. t iff file's gid would change if file were deleted and recreated.
|
|
9617 10. inode number.
|
|
9618 11. Device number.
|
|
9619
|
|
9620 If file does not exist, returns nil." nil nil)
|
|
9621
|
|
9622 (autoload 'url-normalize-url "url" "\
|
|
9623 Return a 'normalized' version of URL. This strips out default port
|
|
9624 numbers, etc." nil nil)
|
|
9625
|
|
9626 (autoload 'url-buffer-visiting "url" "\
|
|
9627 Return the name of a buffer (if any) that is visiting URL." nil nil)
|
|
9628
|
|
9629 (autoload 'url-get-url-at-point "url" "\
|
|
9630 Get the URL closest to point, but don't change your
|
|
9631 position. Has a preference for looking backward when not
|
|
9632 directly on a symbol." nil nil)
|
|
9633
|
|
9634 (autoload 'url-popup-info "url" "\
|
|
9635 Retrieve the HTTP/1.0 headers and display them in a temp buffer." nil nil)
|
|
9636
|
|
9637 (autoload 'url-retrieve "url" "\
|
|
9638 Retrieve a document over the World Wide Web.
|
|
9639 The document should be specified by its fully specified
|
|
9640 Uniform Resource Locator. No parsing is done, just return the
|
|
9641 document as the server sent it. The document is left in the
|
|
9642 buffer specified by url-working-buffer. url-working-buffer is killed
|
|
9643 immediately before starting the transfer, so that no buffer-local
|
|
9644 variables interfere with the retrieval. HTTP/1.0 redirection will
|
|
9645 be honored before this function exits." nil nil)
|
|
9646
|
|
9647 ;;;***
|
|
9648
|
12
|
9649 ;;;### (autoloads (w3-use-hotlist) "w3-hot" "w3/w3-hot.el")
|
|
9650
|
|
9651 (autoload 'w3-use-hotlist "w3-hot" "\
|
|
9652 Possibly go to a link in your W3/Mosaic hotlist.
|
|
9653 This is part of the emacs World Wide Web browser. It will prompt for
|
|
9654 one of the items in your 'hotlist'. A hotlist is a list of often
|
|
9655 visited or interesting items you have found on the World Wide Web." t nil)
|
|
9656
|
|
9657 ;;;***
|
|
9658
|
26
|
9659 ;;;### (autoloads (w3-follow-link w3-follow-link-other-frame w3-do-setup w3 w3-preview-this-buffer 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")
|
12
|
9660
|
|
9661 (autoload 'w3-open-local "w3" "\
|
|
9662 Find a local file, and interpret it as a hypertext document.
|
|
9663 It will prompt for an existing file or directory, and retrieve it as a
|
22
|
9664 hypertext document." t nil)
|
12
|
9665
|
|
9666 (autoload 'w3-find-file "w3" "\
|
|
9667 Find a local file, and interpret it as a hypertext document.
|
|
9668 It will prompt for an existing file or directory, and retrieve it as a
|
22
|
9669 hypertext document." t nil)
|
12
|
9670
|
|
9671 (autoload 'w3-fetch-other-frame "w3" "\
|
|
9672 Attempt to follow the hypertext reference under point in a new frame.
|
|
9673 With prefix-arg P, ignore viewers and dump the link straight
|
|
9674 to disk." t nil)
|
|
9675
|
|
9676 (autoload 'w3-fetch "w3" "\
|
|
9677 Retrieve a document over the World Wide Web.
|
16
|
9678 Defaults to URL of the current document, if any.
|
|
9679 With prefix argument, use the URL of the hyperlink under point instead." t nil)
|
12
|
9680
|
|
9681 (autoload 'w3-maybe-follow-link-mouse "w3" "\
|
|
9682 Maybe follow a hypertext link under point.
|
|
9683 If there is no link under point, this will try using
|
|
9684 url-get-url-at-point" t nil)
|
|
9685
|
|
9686 (autoload 'w3-maybe-follow-link "w3" "\
|
|
9687 Maybe follow a hypertext link under point.
|
|
9688 If there is no link under point, this will try using
|
|
9689 url-get-url-at-point" t nil)
|
|
9690
|
|
9691 (autoload 'w3-follow-url-at-point-other-frame "w3" "\
|
|
9692 Follow the URL under PT, defaults to link under (point)" t nil)
|
|
9693
|
|
9694 (autoload 'w3-follow-url-at-point "w3" "\
|
|
9695 Follow the URL under PT, defaults to link under (point)" t nil)
|
|
9696
|
|
9697 (autoload 'w3-preview-this-buffer "w3" "\
|
|
9698 See what this buffer will look like when its formatted as HTML.
|
|
9699 HTML is the HyperText Markup Language used by the World Wide Web to
|
|
9700 specify formatting for text. More information on HTML can be found at
|
|
9701 ftp.w3.org:/pub/www/doc." t nil)
|
|
9702
|
|
9703 (autoload 'w3 "w3" "\
|
|
9704 Retrieve the default World Wide Web home page.
|
|
9705 The World Wide Web is a global hypertext system started by CERN in
|
|
9706 Switzerland in 1991.
|
|
9707
|
|
9708 The home page is specified by the variable w3-default-homepage. The
|
|
9709 document should be specified by its fully specified Uniform Resource
|
|
9710 Locator. The document will be parsed as HTML (if appropriate) and
|
|
9711 displayed in a new buffer." t nil)
|
|
9712
|
|
9713 (autoload 'w3-do-setup "w3" "\
|
|
9714 Do setup - this is to avoid conflict with user settings when W3 is
|
|
9715 dumped with emacs." nil nil)
|
|
9716
|
|
9717 (autoload 'w3-follow-link-other-frame "w3" "\
|
|
9718 Attempt to follow the hypertext reference under point in a new frame.
|
|
9719 With prefix-arg P, ignore viewers and dump the link straight
|
|
9720 to disk." nil nil)
|
|
9721
|
|
9722 (autoload 'w3-follow-link "w3" "\
|
|
9723 Attempt to follow the hypertext reference under point.
|
|
9724 With prefix-arg P, ignore viewers and dump the link straight
|
|
9725 to disk." t nil)
|
|
9726
|
|
9727 ;;;***
|
|
9728
|
|
9729 ;;;### (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")
|
|
9730
|
|
9731 (defvar font-menu-ignore-scaled-fonts t "\
|
|
9732 *If non-nil, then the font menu will try to show only bitmap fonts.")
|
|
9733
|
|
9734 (defvar font-menu-this-frame-only-p nil "\
|
|
9735 *If non-nil, then changing the default font from the font menu will only
|
|
9736 affect one frame instead of all frames.")
|
|
9737
|
|
9738 (fset 'install-font-menus 'reset-device-font-menus)
|
|
9739
|
|
9740 (autoload 'reset-device-font-menus "x-font-menu" "\
|
|
9741 Generates the `Font', `Size', and `Weight' submenus for the Options menu.
|
|
9742 This is run the first time that a font-menu is needed for each device.
|
|
9743 If you don't like the lazy invocation of this function, you can add it to
|
|
9744 `create-device-hook' and that will make the font menus respond more quickly
|
|
9745 when they are selected for the first time. If you add fonts to your system,
|
|
9746 or if you change your font path, you can call this to re-initialize the menus." nil nil)
|
|
9747
|
|
9748 (autoload 'font-menu-family-constructor "x-font-menu" nil nil nil)
|
|
9749
|
|
9750 (autoload 'font-menu-size-constructor "x-font-menu" nil nil nil)
|
|
9751
|
|
9752 (autoload 'font-menu-weight-constructor "x-font-menu" nil nil nil)
|
|
9753
|
|
9754 ;;;***
|