78
|
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
|
100
|
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 (japanese-latex-mode japanese-plain-tex-mode) "tex-jp" "auctex/tex-jp.el")
|
|
19
|
|
20 (autoload 'japanese-plain-tex-mode "tex-jp" "\
|
|
21 Major mode for editing files of input for Japanese plain TeX.
|
|
22 Set japanese-TeX-mode to t, and enters plain-tex-mode." t nil)
|
|
23
|
|
24 (autoload 'japanese-latex-mode "tex-jp" "\
|
|
25 Major mode for editing files of input for Japanese plain TeX.
|
|
26 Set japanese-TeX-mode to t, and enters latex-mode." t nil)
|
|
27
|
|
28 ;;;***
|
|
29
|
|
30 ;;;### (autoloads (TeX-submit-bug-report TeX-insert-quote TeX-auto-generate-global TeX-auto-generate ams-tex-mode) "tex" "auctex/tex.el")
|
|
31
|
|
32 (autoload 'ams-tex-mode "tex" "\
|
|
33 Major mode for editing files of input for AmS TeX.
|
|
34 See info under AUC TeX for documentation.
|
|
35
|
|
36 Special commands:
|
|
37 \\{TeX-mode-map}
|
|
38
|
|
39 Entering AmS-tex-mode calls the value of text-mode-hook,
|
|
40 then the value of TeX-mode-hook, and then the value
|
|
41 of AmS-TeX-mode-hook." t nil)
|
|
42
|
|
43 (autoload 'TeX-auto-generate "tex" "\
|
|
44 Generate style file for TEX and store it in AUTO.
|
|
45 If TEX is a directory, generate style files for all files in the directory." t nil)
|
|
46
|
|
47 (autoload 'TeX-auto-generate-global "tex" "\
|
|
48 Create global auto directory for global TeX macro definitions." t nil)
|
|
49
|
|
50 (autoload 'TeX-insert-quote "tex" "\
|
|
51 Insert the appropriate quote marks for TeX.
|
|
52 Inserts the value of `TeX-open-quote' (normally ``) or `TeX-close-quote'
|
|
53 \(normally '') depending on the context. If `TeX-quote-after-quote'
|
|
54 is non-nil, this insertion works only after \".
|
|
55 With prefix argument, always inserts \" characters." t nil)
|
|
56
|
|
57 (autoload 'TeX-submit-bug-report "tex" "\
|
|
58 Submit via mail a bug report on AUC TeX" t nil)
|
|
59
|
|
60 ;;;***
|
|
61
|
78
|
62 ;;;### (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")
|
|
63
|
|
64 (autoload 'byte-force-recompile "bytecomp" "\
|
|
65 Recompile every `.el' file in DIRECTORY that already has a `.elc' file.
|
|
66 Files in subdirectories of DIRECTORY are processed also." t nil)
|
|
67
|
|
68 (autoload 'byte-recompile-directory "bytecomp" "\
|
|
69 Recompile every `.el' file in DIRECTORY that needs recompilation.
|
|
70 This is if a `.elc' file exists but is older than the `.el' file.
|
|
71 Files in subdirectories of DIRECTORY are processed also unless argument
|
|
72 NORECURSION is non-nil.
|
|
73
|
|
74 If the `.elc' file does not exist, normally the `.el' file is *not* compiled.
|
|
75 But a prefix argument (optional second arg) means ask user,
|
|
76 for each such `.el' file, whether to compile it. Prefix argument 0 means
|
|
77 don't ask and compile the file anyway.
|
|
78
|
|
79 A nonzero prefix argument also means ask about each subdirectory.
|
|
80
|
|
81 If the fourth argument FORCE is non-nil,
|
|
82 recompile every `.el' file that already has a `.elc' file." t nil)
|
|
83
|
|
84 (autoload 'byte-recompile-file "bytecomp" "\
|
|
85 Recompile a file of Lisp code named FILENAME if it needs recompilation.
|
|
86 This is if the `.elc' file exists but is older than the `.el' file.
|
|
87
|
|
88 If the `.elc' file does not exist, normally the `.el' file is *not*
|
|
89 compiled. But a prefix argument (optional second arg) means ask user
|
|
90 whether to compile it. Prefix argument 0 don't ask and recompile anyway." t nil)
|
|
91
|
|
92 (autoload 'byte-compile-file "bytecomp" "\
|
|
93 Compile a file of Lisp code named FILENAME into a file of byte code.
|
|
94 The output file's name is made by appending `c' to the end of FILENAME.
|
|
95 With prefix arg (noninteractively: 2nd arg), load the file after compiling." t nil)
|
|
96
|
|
97 (autoload 'compile-defun "bytecomp" "\
|
|
98 Compile and evaluate the current top-level form.
|
|
99 Print the result in the minibuffer.
|
|
100 With argument, insert value in current buffer after the form." t nil)
|
|
101
|
|
102 (autoload 'byte-compile "bytecomp" "\
|
|
103 If FORM is a symbol, byte-compile its function definition.
|
|
104 If FORM is a lambda or a macro, byte-compile it as a function." nil nil)
|
|
105
|
|
106 (autoload 'byte-compile-sexp "bytecomp" "\
|
|
107 Compile and return SEXP." nil nil)
|
|
108
|
|
109 (autoload 'display-call-tree "bytecomp" "\
|
|
110 Display a call graph of a specified file.
|
|
111 This lists which functions have been called, what functions called
|
|
112 them, and what functions they call. The list includes all functions
|
|
113 whose definitions have been compiled in this Emacs session, as well as
|
|
114 all functions called by those functions.
|
|
115
|
|
116 The call graph does not include macros, inline functions, or
|
|
117 primitives that the byte-code interpreter knows about directly (eq,
|
|
118 cons, etc.).
|
|
119
|
|
120 The call tree also lists those functions which are not known to be called
|
|
121 \(that is, to which no calls have been compiled), and which cannot be
|
|
122 invoked interactively." t nil)
|
|
123
|
|
124 (autoload 'batch-byte-compile "bytecomp" "\
|
|
125 Run `byte-compile-file' on the files remaining on the command line.
|
|
126 Use this from the command line, with `-batch';
|
|
127 it won't work in an interactive Emacs.
|
|
128 Each file is processed even if an error occurred previously.
|
|
129 For example, invoke \"emacs -batch -f batch-byte-compile $emacs/ ~/*.el\"" nil nil)
|
|
130
|
|
131 (autoload 'batch-byte-recompile-directory-norecurse "bytecomp" "\
|
|
132 Same as `batch-byte-recompile-directory' but without recursion." nil nil)
|
|
133
|
|
134 (autoload 'batch-byte-recompile-directory "bytecomp" "\
|
|
135 Runs `byte-recompile-directory' on the dirs remaining on the command line.
|
|
136 Must be used only with `-batch', and kills Emacs on completion.
|
|
137 For example, invoke `xemacs -batch -f batch-byte-recompile-directory .'." nil nil)
|
|
138
|
|
139 ;;;***
|
|
140
|
|
141 ;;;### (autoloads (disassemble) "disass" "bytecomp/disass.el")
|
|
142
|
|
143 (autoload 'disassemble "disass" "\
|
|
144 Print disassembled code for OBJECT in (optional) BUFFER.
|
|
145 OBJECT can be a symbol defined as a function, or a function itself
|
|
146 \(a lambda expression or a compiled-function object).
|
|
147 If OBJECT is not already compiled, we compile it, but do not
|
|
148 redefine OBJECT if it is a symbol." t nil)
|
|
149
|
|
150 ;;;***
|
|
151
|
|
152 ;;;### (autoloads nil "cal-dst" "calendar/cal-dst.el")
|
|
153
|
|
154 (put 'calendar-daylight-savings-starts 'risky-local-variable t)
|
|
155
|
|
156 (put 'calendar-daylight-savings-ends 'risky-local-variable t)
|
|
157
|
|
158 ;;;***
|
|
159
|
|
160 ;;;### (autoloads nil "cal-x" "calendar/cal-x.el")
|
|
161
|
|
162 (defvar calendar-setup 'one-frame "\
|
|
163 The frame set up of the calendar.
|
|
164 The choices are `one-frame' (calendar and diary together in one separate,
|
|
165 dediciated frame) or `two-frames' (calendar and diary in separate, dedicated
|
|
166 frames); with any other value the current frame is used.")
|
|
167
|
|
168 ;;;***
|
|
169
|
|
170 ;;;### (autoloads (list-yahrzeit-dates calendar) "calendar" "calendar/calendar.el")
|
|
171
|
|
172 (defvar calendar-week-start-day 0 "\
|
|
173 *The day of the week on which a week in the calendar begins.
|
|
174 0 means Sunday (default), 1 means Monday, and so on.")
|
|
175
|
|
176 (defvar calendar-offset 0 "\
|
|
177 *The offset of the principal month from the center of the calendar window.
|
|
178 0 means the principal month is in the center (default), -1 means on the left,
|
|
179 +1 means on the right. Larger (or smaller) values push the principal month off
|
|
180 the screen.")
|
|
181
|
|
182 (defvar view-diary-entries-initially nil "\
|
|
183 *Non-nil means display current date's diary entries on entry.
|
|
184 The diary is displayed in another window when the calendar is first displayed,
|
|
185 if the current date is visible. The number of days of diary entries displayed
|
|
186 is governed by the variable `number-of-diary-entries'.")
|
|
187
|
|
188 (defvar number-of-diary-entries 1 "\
|
|
189 *Specifies how many days of diary entries are to be displayed initially.
|
|
190 This variable affects the diary display when the command M-x diary is used,
|
|
191 or if the value of the variable `view-diary-entries-initially' is t. For
|
|
192 example, if the default value 1 is used, then only the current day's diary
|
|
193 entries will be displayed. If the value 2 is used, then both the current
|
|
194 day's and the next day's entries will be displayed.
|
|
195
|
|
196 The value can also be a vector such as [0 2 2 2 2 4 1]; this value
|
|
197 says to display no diary entries on Sunday, the display the entries
|
|
198 for the current date and the day after on Monday through Thursday,
|
|
199 display Friday through Monday's entries on Friday, and display only
|
|
200 Saturday's entries on Saturday.
|
|
201
|
|
202 This variable does not affect the diary display with the `d' command
|
|
203 from the calendar; in that case, the prefix argument controls the
|
|
204 number of days of diary entries displayed.")
|
|
205
|
|
206 (defvar mark-diary-entries-in-calendar nil "\
|
|
207 *Non-nil means mark dates with diary entries, in the calendar window.
|
|
208 The marking symbol is specified by the variable `diary-entry-marker'.")
|
|
209
|
|
210 (defvar view-calendar-holidays-initially nil "\
|
|
211 *Non-nil means display holidays for current three month period on entry.
|
|
212 The holidays are displayed in another window when the calendar is first
|
|
213 displayed.")
|
|
214
|
|
215 (defvar mark-holidays-in-calendar nil "\
|
|
216 *Non-nil means mark dates of holidays in the calendar window.
|
|
217 The marking symbol is specified by the variable `calendar-holiday-marker'.")
|
|
218
|
|
219 (defvar all-hebrew-calendar-holidays nil "\
|
|
220 *If nil, show only major holidays from the Hebrew calendar.
|
|
221 This means only those Jewish holidays that appear on secular calendars.
|
|
222
|
|
223 If t, show all the holidays that would appear in a complete Hebrew calendar.")
|
|
224
|
|
225 (defvar all-christian-calendar-holidays nil "\
|
|
226 *If nil, show only major holidays from the Christian calendar.
|
|
227 This means only those Christian holidays that appear on secular calendars.
|
|
228
|
|
229 If t, show all the holidays that would appear in a complete Christian
|
|
230 calendar.")
|
|
231
|
|
232 (defvar all-islamic-calendar-holidays nil "\
|
|
233 *If nil, show only major holidays from the Islamic calendar.
|
|
234 This means only those Islamic holidays that appear on secular calendars.
|
|
235
|
|
236 If t, show all the holidays that would appear in a complete Islamic
|
|
237 calendar.")
|
|
238
|
|
239 (defvar calendar-load-hook nil "\
|
|
240 *List of functions to be called after the calendar is first loaded.
|
|
241 This is the place to add key bindings to `calendar-mode-map'.")
|
|
242
|
|
243 (defvar initial-calendar-window-hook nil "\
|
|
244 *List of functions to be called when the calendar window is first opened.
|
|
245 The functions invoked are called after the calendar window is opened, but
|
|
246 once opened is never called again. Leaving the calendar with the `q' command
|
|
247 and reentering it will cause these functions to be called again.")
|
|
248
|
|
249 (defvar today-visible-calendar-hook nil "\
|
|
250 *List of functions called whenever the current date is visible.
|
|
251 This can be used, for example, to replace today's date with asterisks; a
|
|
252 function `calendar-star-date' is included for this purpose:
|
|
253 (setq today-visible-calendar-hook 'calendar-star-date)
|
|
254 It can also be used to mark the current date with `calendar-today-marker';
|
|
255 a function is also provided for this:
|
|
256 (setq today-visible-calendar-hook 'calendar-mark-today)
|
|
257
|
|
258 The corresponding variable `today-invisible-calendar-hook' is the list of
|
|
259 functions called when the calendar function was called when the current
|
|
260 date is not visible in the window.
|
|
261
|
|
262 Other than the use of the provided functions, the changing of any
|
|
263 characters in the calendar buffer by the hooks may cause the failure of the
|
|
264 functions that move by days and weeks.")
|
|
265
|
|
266 (defvar today-invisible-calendar-hook nil "\
|
|
267 *List of functions called whenever the current date is not visible.
|
|
268
|
|
269 The corresponding variable `today-visible-calendar-hook' is the list of
|
|
270 functions called when the calendar function was called when the current
|
|
271 date is visible in the window.
|
|
272
|
|
273 Other than the use of the provided functions, the changing of any
|
|
274 characters in the calendar buffer by the hooks may cause the failure of the
|
|
275 functions that move by days and weeks.")
|
|
276
|
|
277 (defvar diary-file "~/diary" "\
|
|
278 *Name of the file in which one's personal diary of dates is kept.
|
|
279
|
|
280 The file's entries are lines in any of the forms
|
|
281
|
|
282 MONTH/DAY
|
|
283 MONTH/DAY/YEAR
|
|
284 MONTHNAME DAY
|
|
285 MONTHNAME DAY, YEAR
|
|
286 DAYNAME
|
|
287
|
|
288 at the beginning of the line; the remainder of the line is the diary entry
|
|
289 string for that date. MONTH and DAY are one or two digit numbers, YEAR is
|
|
290 a number and may be written in full or abbreviated to the final two digits.
|
|
291 If the date does not contain a year, it is generic and applies to any year.
|
|
292 DAYNAME entries apply to any date on which is on that day of the week.
|
|
293 MONTHNAME and DAYNAME can be spelled in full, abbreviated to three
|
|
294 characters (with or without a period), capitalized or not. Any of DAY,
|
|
295 MONTH, or MONTHNAME, YEAR can be `*' which matches any day, month, or year,
|
|
296 respectively.
|
|
297
|
|
298 The European style (in which the day precedes the month) can be used
|
|
299 instead, if you execute `european-calendar' when in the calendar, or set
|
|
300 `european-calendar-style' to t in your .emacs file. The European forms are
|
|
301
|
|
302 DAY/MONTH
|
|
303 DAY/MONTH/YEAR
|
|
304 DAY MONTHNAME
|
|
305 DAY MONTHNAME YEAR
|
|
306 DAYNAME
|
|
307
|
|
308 To revert to the default American style from the European style, execute
|
|
309 `american-calendar' in the calendar.
|
|
310
|
|
311 A diary entry can be preceded by the character
|
|
312 `diary-nonmarking-symbol' (ordinarily `&') to make that entry
|
|
313 nonmarking--that is, it will not be marked on dates in the calendar
|
|
314 window but will appear in a diary window.
|
|
315
|
|
316 Multiline diary entries are made by indenting lines after the first with
|
|
317 either a TAB or one or more spaces.
|
|
318
|
|
319 Lines not in one the above formats are ignored. Here are some sample diary
|
|
320 entries (in the default American style):
|
|
321
|
|
322 12/22/1988 Twentieth wedding anniversary!!
|
|
323 &1/1. Happy New Year!
|
|
324 10/22 Ruth's birthday.
|
|
325 21: Payday
|
|
326 Tuesday--weekly meeting with grad students at 10am
|
|
327 Supowit, Shen, Bitner, and Kapoor to attend.
|
|
328 1/13/89 Friday the thirteenth!!
|
|
329 &thu 4pm squash game with Lloyd.
|
|
330 mar 16 Dad's birthday
|
|
331 April 15, 1989 Income tax due.
|
|
332 &* 15 time cards due.
|
|
333
|
|
334 If the first line of a diary entry consists only of the date or day name with
|
|
335 no trailing blanks or punctuation, then that line is not displayed in the
|
|
336 diary window; only the continuation lines is shown. For example, the
|
|
337 single diary entry
|
|
338
|
|
339 02/11/1989
|
|
340 Bill Blattner visits Princeton today
|
|
341 2pm Cognitive Studies Committee meeting
|
|
342 2:30-5:30 Lizzie at Lawrenceville for `Group Initiative'
|
|
343 4:00pm Jamie Tappenden
|
|
344 7:30pm Dinner at George and Ed's for Alan Ryan
|
|
345 7:30-10:00pm dance at Stewart Country Day School
|
|
346
|
|
347 will appear in the diary window without the date line at the beginning. This
|
|
348 facility allows the diary window to look neater, but can cause confusion if
|
|
349 used with more than one day's entries displayed.
|
|
350
|
|
351 Diary entries can be based on Lisp sexps. For example, the diary entry
|
|
352
|
|
353 %%(diary-block 11 1 1990 11 10 1990) Vacation
|
|
354
|
|
355 causes the diary entry \"Vacation\" to appear from November 1 through November
|
|
356 10, 1990. Other functions available are `diary-float', `diary-anniversary',
|
|
357 `diary-cyclic', `diary-day-of-year', `diary-iso-date', `diary-french-date',
|
|
358 `diary-hebrew-date', `diary-islamic-date', `diary-mayan-date',
|
|
359 `diary-yahrzeit', `diary-sunrise-sunset', `diary-phases-of-moon',
|
|
360 `diary-parasha', `diary-omer', `diary-rosh-hodesh', and
|
|
361 `diary-sabbath-candles'. See the documentation for the function
|
|
362 `list-sexp-diary-entries' for more details.
|
|
363
|
|
364 Diary entries based on the Hebrew and/or the Islamic calendar are also
|
|
365 possible, but because these are somewhat slow, they are ignored
|
|
366 unless you set the `nongregorian-diary-listing-hook' and the
|
|
367 `nongregorian-diary-marking-hook' appropriately. See the documentation
|
|
368 for these functions for details.
|
|
369
|
|
370 Diary files can contain directives to include the contents of other files; for
|
|
371 details, see the documentation for the variable `list-diary-entries-hook'.")
|
|
372
|
|
373 (defvar diary-nonmarking-symbol "&" "\
|
|
374 *Symbol indicating that a diary entry is not to be marked in the calendar.")
|
|
375
|
|
376 (defvar hebrew-diary-entry-symbol "H" "\
|
|
377 *Symbol indicating a diary entry according to the Hebrew calendar.")
|
|
378
|
|
379 (defvar islamic-diary-entry-symbol "I" "\
|
|
380 *Symbol indicating a diary entry according to the Islamic calendar.")
|
|
381
|
|
382 (defvar diary-include-string "#include" "\
|
|
383 *The string indicating inclusion of another file of diary entries.
|
|
384 See the documentation for the function `include-other-diary-files'.")
|
|
385
|
|
386 (defvar sexp-diary-entry-symbol "%%" "\
|
|
387 *The string used to indicate a sexp diary entry in diary-file.
|
|
388 See the documentation for the function `list-sexp-diary-entries'.")
|
|
389
|
|
390 (defvar abbreviated-calendar-year t "\
|
|
391 *Interpret a two-digit year DD in a diary entry as either 19DD or 20DD.
|
|
392 For the Gregorian calendar; similarly for the Hebrew and Islamic calendars.
|
|
393 If this variable is nil, years must be written in full.")
|
|
394
|
|
395 (defvar european-calendar-style nil "\
|
|
396 *Use the European style of dates in the diary and in any displays.
|
|
397 If this variable is t, a date 1/2/1990 would be interpreted as February 1,
|
|
398 1990. The accepted European date styles are
|
|
399
|
|
400 DAY/MONTH
|
|
401 DAY/MONTH/YEAR
|
|
402 DAY MONTHNAME
|
|
403 DAY MONTHNAME YEAR
|
|
404 DAYNAME
|
|
405
|
|
406 Names can be capitalized or not, written in full, or abbreviated to three
|
|
407 characters with or without a period.")
|
|
408
|
|
409 (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")) "\
|
|
410 *List of pseudo-patterns describing the American patterns of date used.
|
|
411 See the documentation of `diary-date-forms' for an explanation.")
|
|
412
|
|
413 (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")) "\
|
|
414 *List of pseudo-patterns describing the European patterns of date used.
|
|
415 See the documentation of `diary-date-forms' for an explanation.")
|
|
416
|
|
417 (defvar european-calendar-display-form '((if dayname (concat dayname ", ")) day " " monthname " " year) "\
|
|
418 *Pseudo-pattern governing the way a date appears in the European style.
|
|
419 See the documentation of calendar-date-display-form for an explanation.")
|
|
420
|
|
421 (defvar american-calendar-display-form '((if dayname (concat dayname ", ")) monthname " " day ", " year) "\
|
|
422 *Pseudo-pattern governing the way a date appears in the American style.
|
|
423 See the documentation of `calendar-date-display-form' for an explanation.")
|
|
424
|
|
425 (defvar print-diary-entries-hook 'lpr-buffer "\
|
|
426 *List of functions called after a temporary diary buffer is prepared.
|
|
427 The buffer shows only the diary entries currently visible in the diary
|
|
428 buffer. The default just does the printing. Other uses might include, for
|
|
429 example, rearranging the lines into order by day and time, saving the buffer
|
|
430 instead of deleting it, or changing the function used to do the printing.")
|
|
431
|
|
432 (defvar list-diary-entries-hook nil "\
|
|
433 *List of functions called after diary file is culled for relevant entries.
|
|
434 It is to be used for diary entries that are not found in the diary file.
|
|
435
|
|
436 A function `include-other-diary-files' is provided for use as the value of
|
|
437 this hook. This function enables you to use shared diary files together
|
|
438 with your own. The files included are specified in the diary file by lines
|
|
439 of the form
|
|
440
|
|
441 #include \"filename\"
|
|
442
|
|
443 This is recursive; that is, #include directives in files thus included are
|
|
444 obeyed. You can change the \"#include\" to some other string by changing
|
|
445 the variable `diary-include-string'. When you use `include-other-diary-files'
|
|
446 as part of the list-diary-entries-hook, you will probably also want to use the
|
|
447 function `mark-included-diary-files' as part of `mark-diary-entries-hook'.
|
|
448
|
|
449 For example, you could use
|
|
450
|
|
451 (setq list-diary-entries-hook
|
|
452 '(include-other-diary-files sort-diary-entries))
|
|
453 (setq diary-display-hook 'fancy-diary-display)
|
|
454
|
|
455 in your `.emacs' file to cause the fancy diary buffer to be displayed with
|
|
456 diary entries from various included files, each day's entries sorted into
|
|
457 lexicographic order.")
|
|
458
|
|
459 (defvar diary-hook nil "\
|
|
460 *List of functions called after the display of the diary.
|
|
461 Can be used for appointment notification.")
|
|
462
|
|
463 (defvar diary-display-hook nil "\
|
|
464 *List of functions that handle the display of the diary.
|
|
465 If nil (the default), `simple-diary-display' is used. Use `ignore' for no
|
|
466 diary display.
|
|
467
|
|
468 Ordinarily, this just displays the diary buffer (with holidays indicated in
|
|
469 the mode line), if there are any relevant entries. At the time these
|
|
470 functions are called, the variable `diary-entries-list' is a list, in order
|
|
471 by date, of all relevant diary entries in the form of ((MONTH DAY YEAR)
|
|
472 STRING), where string is the diary entry for the given date. This can be
|
|
473 used, for example, a different buffer for display (perhaps combined with
|
|
474 holidays), or produce hard copy output.
|
|
475
|
|
476 A function `fancy-diary-display' is provided as an alternative
|
|
477 choice for this hook; this function prepares a special noneditable diary
|
|
478 buffer with the relevant diary entries that has neat day-by-day arrangement
|
|
479 with headings. The fancy diary buffer will show the holidays unless the
|
|
480 variable `holidays-in-diary-buffer' is set to nil. Ordinarily, the fancy
|
|
481 diary buffer will not show days for which there are no diary entries, even
|
|
482 if that day is a holiday; if you want such days to be shown in the fancy
|
|
483 diary buffer, set the variable `diary-list-include-blanks' to t.")
|
|
484
|
|
485 (defvar nongregorian-diary-listing-hook nil "\
|
|
486 *List of functions called for listing diary file and included files.
|
|
487 As the files are processed for diary entries, these functions are used to cull
|
|
488 relevant entries. You can use either or both of `list-hebrew-diary-entries'
|
|
489 and `list-islamic-diary-entries'. The documentation for these functions
|
|
490 describes the style of such diary entries.")
|
|
491
|
|
492 (defvar mark-diary-entries-hook nil "\
|
|
493 *List of functions called after marking diary entries in the calendar.
|
|
494
|
|
495 A function `mark-included-diary-files' is also provided for use as the
|
|
496 mark-diary-entries-hook; it enables you to use shared diary files together
|
|
497 with your own. The files included are specified in the diary file by lines
|
|
498 of the form
|
|
499 #include \"filename\"
|
|
500 This is recursive; that is, #include directives in files thus included are
|
|
501 obeyed. You can change the \"#include\" to some other string by changing the
|
|
502 variable `diary-include-string'. When you use `mark-included-diary-files' as
|
|
503 part of the mark-diary-entries-hook, you will probably also want to use the
|
|
504 function `include-other-diary-files' as part of `list-diary-entries-hook'.")
|
|
505
|
|
506 (defvar nongregorian-diary-marking-hook nil "\
|
|
507 *List of functions called for marking diary file and included files.
|
|
508 As the files are processed for diary entries, these functions are used to cull
|
|
509 relevant entries. You can use either or both of `mark-hebrew-diary-entries'
|
|
510 and `mark-islamic-diary-entries'. The documentation for these functions
|
|
511 describes the style of such diary entries.")
|
|
512
|
|
513 (defvar diary-list-include-blanks nil "\
|
|
514 *If nil, do not include days with no diary entry in the list of diary entries.
|
|
515 Such days will then not be shown in the fancy diary buffer, even if they
|
|
516 are holidays.")
|
|
517
|
|
518 (defvar holidays-in-diary-buffer t "\
|
|
519 *Non-nil means include holidays in the diary display.
|
|
520 The holidays appear in the mode line of the diary buffer, or in the
|
|
521 fancy diary buffer next to the date. This slows down the diary functions
|
|
522 somewhat; setting it to nil makes the diary display faster.")
|
|
523
|
|
524 (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")) "\
|
|
525 *General holidays. Default value is for the United States.
|
|
526 See the documentation for `calendar-holidays' for details.")
|
|
527
|
|
528 (put 'general-holidays 'risky-local-variable t)
|
|
529
|
|
530 (defvar local-holidays nil "\
|
|
531 *Local holidays.
|
|
532 See the documentation for `calendar-holidays' for details.")
|
|
533
|
|
534 (put 'local-holidays 'risky-local-variable t)
|
|
535
|
|
536 (defvar other-holidays nil "\
|
|
537 *User defined holidays.
|
|
538 See the documentation for `calendar-holidays' for details.")
|
|
539
|
|
540 (put 'other-holidays 'risky-local-variable t)
|
|
541
|
|
542 (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)"))))
|
|
543
|
|
544 (put 'hebrew-holidays-1 'risky-local-variable t)
|
|
545
|
|
546 (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"))))
|
|
547
|
|
548 (put 'hebrew-holidays-2 'risky-local-variable t)
|
|
549
|
|
550 (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"))))
|
|
551
|
|
552 (put 'hebrew-holidays-3 'risky-local-variable t)
|
|
553
|
|
554 (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))))
|
|
555
|
|
556 (put 'hebrew-holidays-4 'risky-local-variable t)
|
|
557
|
|
558 (defvar hebrew-holidays (append hebrew-holidays-1 hebrew-holidays-2 hebrew-holidays-3 hebrew-holidays-4) "\
|
|
559 *Jewish holidays.
|
|
560 See the documentation for `calendar-holidays' for details.")
|
|
561
|
|
562 (put 'hebrew-holidays 'risky-local-variable t)
|
|
563
|
|
564 (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"))) "\
|
|
565 *Christian holidays.
|
|
566 See the documentation for `calendar-holidays' for details.")
|
|
567
|
|
568 (put 'christian-holidays 'risky-local-variable t)
|
|
569
|
|
570 (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"))) "\
|
|
571 *Islamic holidays.
|
|
572 See the documentation for `calendar-holidays' for details.")
|
|
573
|
|
574 (put 'islamic-holidays 'risky-local-variable t)
|
|
575
|
|
576 (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) "")))) "\
|
|
577 *Sun-related holidays.
|
|
578 See the documentation for `calendar-holidays' for details.")
|
|
579
|
|
580 (put 'solar-holidays 'risky-local-variable t)
|
|
581
|
|
582 (defvar calendar-holidays (append general-holidays local-holidays other-holidays christian-holidays hebrew-holidays islamic-holidays solar-holidays) "\
|
|
583 *List of notable days for the command M-x holidays.
|
|
584
|
|
585 Additional holidays are easy to add to the list, just put them in the list
|
|
586 `other-holidays' in your .emacs file. Similarly, by setting any of
|
|
587 `general-holidays', `local-holidays' `christian-holidays', `hebrew-holidays',
|
|
588 `islamic-holidays', or `solar-holidays' to nil in your .emacs file, you can
|
|
589 eliminate unwanted categories of holidays. The intention is that (in the US)
|
|
590 `local-holidays' be set in site-init.el and `other-holidays' be set by the
|
|
591 user.
|
|
592
|
|
593 Entries on the list are expressions that return (possibly empty) lists of
|
|
594 items of the form ((month day year) string) of a holiday in the in the
|
|
595 three-month period centered around `displayed-month' of `displayed-year'.
|
|
596 Several basic functions are provided for this purpose:
|
|
597
|
|
598 (holiday-fixed MONTH DAY STRING) is a fixed date on the Gregorian calendar
|
|
599 (holiday-float MONTH DAYNAME K STRING &optional day) is the Kth DAYNAME in
|
|
600 MONTH on the Gregorian calendar (0 for Sunday,
|
|
601 etc.); K<0 means count back from the end of the
|
|
602 month. An optional parameter DAY means the Kth
|
|
603 DAYNAME after/before MONTH DAY.
|
|
604 (holiday-hebrew MONTH DAY STRING) a fixed date on the Hebrew calendar
|
|
605 (holiday-islamic MONTH DAY STRING) a fixed date on the Islamic calendar
|
|
606 (holiday-julian MONTH DAY STRING) a fixed date on the Julian calendar
|
|
607 (holiday-sexp SEXP STRING) SEXP is a Gregorian-date-valued expression
|
|
608 in the variable `year'; if it evaluates to
|
|
609 a visible date, that's the holiday; if it
|
|
610 evaluates to nil, there's no holiday. STRING
|
|
611 is an expression in the variable `date'.
|
|
612
|
|
613 For example, to add Bastille Day, celebrated in France on July 14, add
|
|
614
|
|
615 (holiday-fixed 7 14 \"Bastille Day\")
|
|
616
|
|
617 to the list. To add Hurricane Supplication Day, celebrated in the Virgin
|
|
618 Islands on the fourth Monday in August, add
|
|
619
|
|
620 (holiday-float 8 1 4 \"Hurricane Supplication Day\")
|
|
621
|
|
622 to the list (the last Monday would be specified with `-1' instead of `4').
|
|
623 To add the last day of Hanukkah to the list, use
|
|
624
|
|
625 (holiday-hebrew 10 2 \"Last day of Hanukkah\")
|
|
626
|
|
627 since the Hebrew months are numbered with 1 starting from Nisan, while to
|
|
628 add the Islamic feast celebrating Mohammed's birthday use
|
|
629
|
|
630 (holiday-islamic 3 12 \"Mohammed's Birthday\")
|
|
631
|
|
632 since the Islamic months are numbered from 1 starting with Muharram. To
|
|
633 add Thomas Jefferson's birthday, April 2, 1743 (Julian), use
|
|
634
|
|
635 (holiday-julian 4 2 \"Jefferson's Birthday\")
|
|
636
|
|
637 To include a holiday conditionally, use the sexp form or a conditional. For
|
|
638 example, to include American presidential elections, which occur on the first
|
|
639 Tuesday after the first Monday in November of years divisible by 4, add
|
|
640
|
|
641 (holiday-sexp
|
|
642 (if (zerop (% year 4))
|
|
643 (calendar-gregorian-from-absolute
|
|
644 (1+ (calendar-dayname-on-or-before
|
|
645 1 (+ 6 (calendar-absolute-from-gregorian
|
|
646 (list 11 1 year)))))))
|
|
647 \"US Presidential Election\")
|
|
648
|
|
649 or
|
|
650
|
|
651 (if (zerop (% displayed-year 4))
|
|
652 (holiday-fixed 11
|
|
653 (extract-calendar-day
|
|
654 (calendar-gregorian-from-absolute
|
|
655 (1+ (calendar-dayname-on-or-before
|
|
656 1 (+ 6 (calendar-absolute-from-gregorian
|
|
657 (list 11 1 displayed-year)))))))
|
|
658 \"US Presidential Election\"))
|
|
659
|
|
660 to the list. To include the phases of the moon, add
|
|
661
|
|
662 (lunar-phases)
|
|
663
|
|
664 to the holiday list, where `lunar-phases' is an Emacs-Lisp function that
|
|
665 you've written to return a (possibly empty) list of the relevant VISIBLE dates
|
|
666 with descriptive strings such as
|
|
667
|
|
668 (((2 6 1989) \"New Moon\") ((2 12 1989) \"First Quarter Moon\") ... ).")
|
|
669
|
|
670 (put 'calendar-holidays 'risky-local-variable t)
|
|
671
|
|
672 (autoload 'calendar "calendar" "\
|
|
673 Display a three-month calendar in another window.
|
|
674 The three months appear side by side, with the current month in the middle
|
|
675 surrounded by the previous and next months. The cursor is put on today's date.
|
|
676
|
|
677 If called with an optional prefix argument, prompts for month and year.
|
|
678
|
|
679 This function is suitable for execution in a .emacs file; appropriate setting
|
|
680 of the variable `view-diary-entries-initially' will cause the diary entries for
|
|
681 the current date to be displayed in another window. The value of the variable
|
|
682 `number-of-diary-entries' controls the number of days of diary entries
|
|
683 displayed upon initial display of the calendar.
|
|
684
|
|
685 An optional prefix argument ARG causes the calendar displayed to be ARG
|
|
686 months in the future if ARG is positive or in the past if ARG is negative;
|
|
687 in this case the cursor goes on the first day of the month.
|
|
688
|
|
689 Once in the calendar window, future or past months can be moved into view.
|
|
690 Arbitrary months can be displayed, or the calendar can be scrolled forward
|
|
691 or backward.
|
|
692
|
|
693 The cursor can be moved forward or backward by one day, one week, one month,
|
|
694 or one year. All of these commands take prefix arguments which, when negative,
|
|
695 cause movement in the opposite direction. For convenience, the digit keys
|
|
696 and the minus sign are automatically prefixes. The window is replotted as
|
|
697 necessary to display the desired date.
|
|
698
|
|
699 Diary entries can be marked on the calendar or displayed in another window.
|
|
700
|
|
701 Use M-x describe-mode for details of the key bindings in the calendar window.
|
|
702
|
|
703 The Gregorian calendar is assumed.
|
|
704
|
|
705 After loading the calendar, the hooks given by the variable
|
|
706 `calendar-load-hook' are run. This is the place to add key bindings to the
|
|
707 calendar-mode-map.
|
|
708
|
|
709 After preparing the calendar window initially, the hooks given by the variable
|
|
710 `initial-calendar-window-hook' are run.
|
|
711
|
|
712 The hooks given by the variable `today-visible-calendar-hook' are run
|
|
713 everytime the calendar window gets scrolled, if the current date is visible
|
|
714 in the window. If it is not visible, the hooks given by the variable
|
|
715 `today-invisible-calendar-hook' are run. Thus, for example, setting
|
|
716 `today-visible-calendar-hook' to 'calendar-star-date will cause today's date
|
|
717 to be replaced by asterisks to highlight it whenever it is in the window." t nil)
|
|
718
|
|
719 (autoload 'list-yahrzeit-dates "calendar" "\
|
|
720 List Yahrzeit dates for *Gregorian* DEATH-DATE from START-YEAR to END-YEAR.
|
|
721 When called interactively from the calendar window, the date of death is taken
|
|
722 from the cursor position." t nil)
|
|
723
|
|
724 ;;;***
|
|
725
|
|
726 ;;;### (autoloads (diary) "diary-lib" "calendar/diary-lib.el")
|
|
727
|
|
728 (autoload 'diary "diary-lib" "\
|
|
729 Generate the diary window for ARG days starting with the current date.
|
|
730 If no argument is provided, the number of days of diary entries is governed
|
|
731 by the variable `number-of-diary-entries'. This function is suitable for
|
|
732 execution in a `.emacs' file." t nil)
|
|
733
|
|
734 ;;;***
|
|
735
|
|
736 ;;;### (autoloads (holidays) "holidays" "calendar/holidays.el")
|
|
737
|
|
738 (autoload 'holidays "holidays" "\
|
|
739 Display the holidays for last month, this month, and next month.
|
|
740 If called with an optional prefix argument, prompts for month and year.
|
|
741
|
|
742 This function is suitable for execution in a .emacs file." t nil)
|
|
743
|
|
744 ;;;***
|
|
745
|
|
746 ;;;### (autoloads (phases-of-moon) "lunar" "calendar/lunar.el")
|
|
747
|
|
748 (autoload 'phases-of-moon "lunar" "\
|
|
749 Display the quarters of the moon for last month, this month, and next month.
|
|
750 If called with an optional prefix argument, prompts for month and year.
|
|
751
|
|
752 This function is suitable for execution in a .emacs file." t nil)
|
|
753
|
|
754 ;;;***
|
|
755
|
|
756 ;;;### (autoloads (solar-equinoxes-solstices sunrise-sunset) "solar" "calendar/solar.el")
|
|
757
|
|
758 (defvar calendar-time-display-form '(12-hours ":" minutes am-pm (if time-zone " (") time-zone (if time-zone ")")) "\
|
|
759 *The pseudo-pattern that governs the way a time of day is formatted.
|
|
760
|
|
761 A pseudo-pattern is a list of expressions that can involve the keywords
|
|
762 `12-hours', `24-hours', and `minutes', all numbers in string form,
|
|
763 and `am-pm' and `time-zone', both alphabetic strings.
|
|
764
|
|
765 For example, the form
|
|
766
|
|
767 '(24-hours \":\" minutes
|
|
768 (if time-zone \" (\") time-zone (if time-zone \")\"))
|
|
769
|
|
770 would give military-style times like `21:07 (UTC)'.")
|
|
771
|
|
772 (defvar calendar-latitude nil "\
|
|
773 *Latitude of `calendar-location-name' in degrees.
|
|
774
|
|
775 The value can be either a decimal fraction (one place of accuracy is
|
|
776 sufficient), + north, - south, such as 40.7 for New York City, or the value
|
|
777 can be a vector [degrees minutes north/south] such as [40 50 north] for New
|
|
778 York City.
|
|
779
|
|
780 This variable should be set in site-local.el.")
|
|
781
|
|
782 (defvar calendar-longitude nil "\
|
|
783 *Longitude of `calendar-location-name' in degrees.
|
|
784
|
|
785 The value can be either a decimal fraction (one place of accuracy is
|
|
786 sufficient), + east, - west, such as -73.9 for New York City, or the value
|
|
787 can be a vector [degrees minutes east/west] such as [73 55 west] for New
|
|
788 York City.
|
|
789
|
|
790 This variable should be set in site-local.el.")
|
|
791
|
|
792 (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")))) "\
|
|
793 *Expression evaluating to name of `calendar-longitude', calendar-latitude'.
|
|
794 For example, \"New York City\". Default value is just the latitude, longitude
|
|
795 pair.
|
|
796
|
|
797 This variable should be set in site-local.el.")
|
|
798
|
|
799 (autoload 'sunrise-sunset "solar" "\
|
|
800 Local time of sunrise and sunset for today. Accurate to +/- 2 minutes.
|
|
801 If called with an optional prefix argument, prompt for date.
|
|
802
|
|
803 If called with an optional double prefix argument, prompt for longitude,
|
|
804 latitude, time zone, and date, and always use standard time.
|
|
805
|
|
806 This function is suitable for execution in a .emacs file." t nil)
|
|
807
|
|
808 (autoload 'solar-equinoxes-solstices "solar" "\
|
|
809 Date and time of equinoxes and solstices, if visible in the calendar window.
|
|
810 Requires floating point." nil nil)
|
|
811
|
|
812 ;;;***
|
|
813
|
|
814 ;;;### (autoloads (comint-dynamic-list-completions comint-dynamic-complete comint-run make-comint) "comint" "comint/comint.el")
|
|
815
|
|
816 (autoload 'make-comint "comint" "\
|
|
817 Make a comint process NAME in a buffer, running PROGRAM.
|
|
818 The name of the buffer is made by surrounding NAME with `*'s.
|
|
819 PROGRAM should be either a string denoting an executable program to create
|
|
820 via `start-process', or a cons pair of the form (HOST . SERVICE) denoting a TCP
|
|
821 connection to be opened via `open-network-stream'. If there is already a
|
|
822 running process in that buffer, it is not restarted. Optional third arg
|
|
823 STARTFILE is the name of a file to send the contents of to the process.
|
|
824
|
|
825 If PROGRAM is a string, any more args are arguments to PROGRAM." nil nil)
|
|
826
|
|
827 (autoload 'comint-run "comint" "\
|
|
828 Run PROGRAM in a comint buffer and switch to it.
|
|
829 The buffer name is made by surrounding the file name of PROGRAM with `*'s.
|
|
830 The file name is used to make a symbol name, such as `comint-sh-hook', and any
|
|
831 hooks on this symbol are run in the buffer.
|
|
832 See `make-comint' and `comint-exec'." t nil)
|
|
833
|
|
834 (autoload 'comint-dynamic-complete "comint" "\
|
|
835 Dynamically perform completion at point.
|
|
836 Calls the functions in `comint-dynamic-complete-functions' to perform
|
|
837 completion until a function returns non-nil, at which point completion is
|
|
838 assumed to have occurred." t nil)
|
|
839
|
|
840 (autoload 'comint-dynamic-list-completions "comint" "\
|
|
841 List in help buffer sorted COMPLETIONS.
|
|
842 Typing SPC flushes the help buffer." nil nil)
|
|
843
|
|
844 ;;;***
|
|
845
|
|
846 ;;;### (autoloads (gdb) "gdb" "comint/gdb.el")
|
|
847
|
|
848 (defvar gdb-command-name "gdb" "\
|
|
849 Pathname for executing gdb.")
|
|
850
|
|
851 (autoload 'gdb "gdb" "\
|
|
852 Run gdb on program FILE in buffer *gdb-FILE*.
|
|
853 The directory containing FILE becomes the initial working directory
|
|
854 and source-file directory for GDB. If you wish to change this, use
|
|
855 the GDB commands `cd DIR' and `directory'." t nil)
|
|
856
|
|
857 ;;;***
|
|
858
|
|
859 ;;;### (autoloads (gdbsrc) "gdbsrc" "comint/gdbsrc.el")
|
|
860
|
|
861 (autoload 'gdbsrc "gdbsrc" "\
|
|
862 Activates a gdb session with gdbsrc-mode turned on. A numeric prefix
|
|
863 argument can be used to specify a running process to attach, and a non-numeric
|
|
864 prefix argument will cause you to be prompted for a core file to debug." t nil)
|
|
865
|
|
866 ;;;***
|
|
867
|
|
868 ;;;### (autoloads (perldb xdb dbx sdb) "gud" "comint/gud.el")
|
|
869
|
|
870 (autoload 'sdb "gud" "\
|
|
871 Run sdb on program FILE in buffer *gud-FILE*.
|
|
872 The directory containing FILE becomes the initial working directory
|
|
873 and source-file directory for your debugger." t nil)
|
|
874
|
|
875 (autoload 'dbx "gud" "\
|
|
876 Run dbx on program FILE in buffer *gud-FILE*.
|
|
877 The directory containing FILE becomes the initial working directory
|
|
878 and source-file directory for your debugger." t nil)
|
|
879
|
|
880 (autoload 'xdb "gud" "\
|
|
881 Run xdb on program FILE in buffer *gud-FILE*.
|
|
882 The directory containing FILE becomes the initial working directory
|
|
883 and source-file directory for your debugger.
|
|
884
|
|
885 You can set the variable 'gud-xdb-directories' to a list of program source
|
|
886 directories if your program contains sources from more than one directory." t nil)
|
|
887
|
|
888 (autoload 'perldb "gud" "\
|
|
889 Run perldb on program FILE in buffer *gud-FILE*.
|
|
890 The directory containing FILE becomes the initial working directory
|
|
891 and source-file directory for your debugger." t nil)
|
|
892
|
|
893 ;;;***
|
|
894
|
|
895 ;;;### (autoloads nil "inf-lisp" "comint/inf-lisp.el")
|
|
896
|
|
897 (add-hook 'same-window-buffer-names "*inferior-lisp*")
|
|
898
|
|
899 ;;;***
|
|
900
|
|
901 ;;;### (autoloads (rlogin) "rlogin" "comint/rlogin.el")
|
|
902
|
|
903 (add-hook 'same-window-regexps "^\\*rlogin-.*\\*\\(\\|<[0-9]+>\\)")
|
|
904
|
|
905 (autoload 'rlogin "rlogin" "\
|
|
906 Open a network login connection to HOST via the `rlogin' program.
|
|
907 Input is sent line-at-a-time to the remote connection.
|
|
908
|
|
909 Communication with the remote host is recorded in a buffer `*rlogin-HOST*'
|
|
910 \(or `*rlogin-USER@HOST*' if the remote username differs).
|
|
911 If a prefix argument is given and the buffer `*rlogin-HOST*' already exists,
|
|
912 a new buffer with a different connection will be made.
|
|
913
|
|
914 When called from a program, if the optional second argument is a string or
|
|
915 buffer, it names the buffer to use.
|
|
916
|
|
917 The variable `rlogin-program' contains the name of the actual program to
|
|
918 run. It can be a relative or absolute path.
|
|
919
|
|
920 The variable `rlogin-explicit-args' is a list of arguments to give to
|
|
921 the rlogin when starting. They are added after any arguments given in
|
|
922 INPUT-ARGS.
|
|
923
|
|
924 If the default value of `rlogin-directory-tracking-mode' is t, then the
|
|
925 default directory in that buffer is set to a remote (FTP) file name to
|
|
926 access your home directory on the remote machine. Occasionally this causes
|
|
927 an error, if you cannot access the home directory on that machine. This
|
|
928 error is harmless as long as you don't try to use that default directory.
|
|
929
|
|
930 If `rlogin-directory-tracking-mode' is neither t nor nil, then the default
|
|
931 directory is initially set up to your (local) home directory.
|
|
932 This is useful if the remote machine and your local machine
|
|
933 share the same files via NFS. This is the default.
|
|
934
|
|
935 If you wish to change directory tracking styles during a session, use the
|
|
936 function `rlogin-directory-tracking-mode' rather than simply setting the
|
|
937 variable." t nil)
|
|
938
|
|
939 ;;;***
|
|
940
|
|
941 ;;;### (autoloads (shell) "shell" "comint/shell.el")
|
|
942
|
|
943 (defvar shell-prompt-pattern (purecopy "^[^#$%>\n]*[#$%>] *") "\
|
|
944 Regexp to match prompts in the inferior shell.
|
|
945 Defaults to \"^[^#$%>\\n]*[#$%>] *\", which works pretty well.
|
|
946 This variable is used to initialise `comint-prompt-regexp' in the
|
|
947 shell buffer.
|
|
948
|
|
949 The pattern should probably not match more than one line. If it does,
|
|
950 shell-mode may become confused trying to distinguish prompt from input
|
|
951 on lines which don't start with a prompt.
|
|
952
|
|
953 This is a fine thing to set in your `.emacs' file.")
|
|
954
|
|
955 (autoload 'shell "shell" "\
|
|
956 Run an inferior shell, with I/O through buffer *shell*.
|
|
957 If buffer exists but shell process is not running, make new shell.
|
|
958 If buffer exists and shell process is running,
|
|
959 just switch to buffer `*shell*'.
|
|
960 Program used comes from variable `explicit-shell-file-name',
|
|
961 or (if that is nil) from the ESHELL environment variable,
|
|
962 or else from SHELL if there is no ESHELL.
|
|
963 If a file `~/.emacs_SHELLNAME' exists, it is given as initial input
|
|
964 (Note that this may lose due to a timing error if the shell
|
|
965 discards input when it starts up.)
|
|
966 The buffer is put in Shell mode, giving commands for sending input
|
|
967 and controlling the subjobs of the shell. See `shell-mode'.
|
|
968 See also the variable `shell-prompt-pattern'.
|
|
969
|
|
970 The shell file name (sans directories) is used to make a symbol name
|
|
971 such as `explicit-csh-args'. If that symbol is a variable,
|
|
972 its value is used as a list of arguments when invoking the shell.
|
|
973 Otherwise, one argument `-i' is passed to the shell.
|
|
974
|
|
975 \(Type \\[describe-mode] in the shell buffer for a list of commands.)" t nil)
|
|
976
|
|
977 (add-hook 'same-window-buffer-names "*shell*")
|
|
978
|
|
979 ;;;***
|
|
980
|
|
981 ;;;### (autoloads (rsh telnet) "telnet" "comint/telnet.el")
|
|
982
|
|
983 (add-hook 'same-window-regexps "\\*telnet-.*\\*\\(\\|<[0-9]+>\\)")
|
|
984
|
|
985 (autoload 'telnet "telnet" "\
|
|
986 Open a network login connection to host named HOST (a string).
|
|
987 With a prefix argument, prompts for the port name or number as well.
|
|
988 Communication with HOST is recorded in a buffer `*HOST-telnet*'.
|
|
989 Normally input is edited in Emacs and sent a line at a time.
|
|
990 See also `\\[rsh]'." t nil)
|
|
991
|
|
992 (add-hook 'same-window-regexps "\\*rsh-[^-]*\\*\\(\\|<[0-9]*>\\)")
|
|
993
|
|
994 (autoload 'rsh "telnet" "\
|
|
995 Open a network login connection to host named HOST (a string).
|
|
996 Communication with HOST is recorded in a buffer `*rsh-HOST*'.
|
|
997 Normally input is edited in Emacs and sent a line at a time.
|
|
998 See also `\\[telnet]'." t nil)
|
|
999
|
|
1000 ;;;***
|
|
1001
|
120
|
1002 ;;;### (autoloads (custom-make-dependencies custom-menu-create custom-save-all custom-buffer-create customize-apropos customize-customized customize-face customize-variable customize) "cus-edit" "custom/cus-edit.el")
|
106
|
1003
|
|
1004 (autoload 'customize "cus-edit" "\
|
98
|
1005 Customize SYMBOL, which must be a customization group." t nil)
|
|
1006
|
106
|
1007 (autoload 'customize-variable "cus-edit" "\
|
98
|
1008 Customize SYMBOL, which must be a variable." t nil)
|
|
1009
|
106
|
1010 (autoload 'customize-face "cus-edit" "\
|
102
|
1011 Customize SYMBOL, which should be a face name or nil.
|
|
1012 If SYMBOL is nil, customize all faces." t nil)
|
98
|
1013
|
106
|
1014 (autoload 'customize-customized "cus-edit" "\
|
98
|
1015 Customize all already customized user options." t nil)
|
|
1016
|
106
|
1017 (autoload 'customize-apropos "cus-edit" "\
|
98
|
1018 Customize all user options matching REGEXP.
|
|
1019 If ALL (e.g., started with a prefix key), include options which are not
|
|
1020 user-settable." t nil)
|
|
1021
|
106
|
1022 (autoload 'custom-buffer-create "cus-edit" "\
|
98
|
1023 Create a buffer containing OPTIONS.
|
|
1024 OPTIONS should be an alist of the form ((SYMBOL WIDGET)...), where
|
|
1025 SYMBOL is a customization option, and WIDGET is a widget for editing
|
|
1026 that option." nil nil)
|
|
1027
|
116
|
1028 (autoload 'custom-save-all "cus-edit" "\
|
|
1029 Save all customizations in `custom-file'." nil nil)
|
|
1030
|
120
|
1031 (autoload 'custom-menu-create "cus-edit" "\
|
|
1032 Create menu for customization group SYMBOL.
|
|
1033 If optional NAME is given, use that as the name of the menu.
|
|
1034 Otherwise make up a name from SYMBOL.
|
|
1035 The menu is in a format applicable to `easy-menu-define'." nil nil)
|
98
|
1036
|
106
|
1037 (autoload 'custom-make-dependencies "cus-edit" "\
|
98
|
1038 Batch function to extract custom dependencies from .el files.
|
|
1039 Usage: emacs -batch *.el -f custom-make-dependencies > deps.el" nil nil)
|
|
1040
|
|
1041 ;;;***
|
|
1042
|
106
|
1043 ;;;### (autoloads (custom-set-faces custom-declare-face) "cus-face" "custom/cus-face.el")
|
|
1044
|
|
1045 (autoload 'custom-declare-face "cus-face" "\
|
|
1046 Like `defface', but FACE is evaluated as a normal argument." nil nil)
|
|
1047
|
|
1048 (autoload 'custom-set-faces "cus-face" "\
|
|
1049 Initialize faces according to user preferences.
|
|
1050 The arguments should be a list where each entry has the form:
|
|
1051
|
|
1052 (FACE SPEC [NOW])
|
|
1053
|
|
1054 SPEC will be stored as the saved value for FACE. If NOW is present
|
|
1055 and non-nil, FACE will also be created according to SPEC.
|
|
1056
|
|
1057 See `defface' for the format of SPEC." nil nil)
|
|
1058
|
|
1059 ;;;***
|
|
1060
|
|
1061 ;;;### (autoloads (widget-browse-at) "wid-browse" "custom/wid-browse.el")
|
|
1062
|
|
1063 (autoload 'widget-browse-at "wid-browse" "\
|
98
|
1064 Browse the widget under point." t nil)
|
|
1065
|
|
1066 ;;;***
|
|
1067
|
118
|
1068 ;;;### (autoloads (widget-delete widget-create widget-apply) "wid-edit" "custom/wid-edit.el")
|
|
1069
|
|
1070 (autoload 'widget-apply "wid-edit" "\
|
|
1071 Apply the value of WIDGET's PROPERTY to the widget itself.
|
|
1072 ARGS are passed as extra arguments to the function." nil nil)
|
110
|
1073
|
|
1074 (autoload 'widget-create "wid-edit" "\
|
|
1075 Create widget of TYPE.
|
|
1076 The optional ARGS are additional keyword arguments." nil nil)
|
|
1077
|
|
1078 (autoload 'widget-delete "wid-edit" "\
|
|
1079 Delete WIDGET." nil nil)
|
|
1080
|
|
1081 ;;;***
|
|
1082
|
78
|
1083 ;;;### (autoloads (edebug-eval-top-level-form def-edebug-spec) "edebug" "edebug/edebug.el")
|
|
1084
|
|
1085 (autoload 'def-edebug-spec "edebug" "\
|
|
1086 Set the edebug-form-spec property of SYMBOL according to SPEC.
|
|
1087 Both SYMBOL and SPEC are unevaluated. The SPEC can be 0, t, a symbol
|
|
1088 \(naming a function), or a list." nil 'macro)
|
|
1089
|
|
1090 (defalias 'edebug-defun 'edebug-eval-top-level-form)
|
|
1091
|
|
1092 (autoload 'edebug-eval-top-level-form "edebug" "\
|
|
1093 Evaluate a top level form, such as a defun or defmacro.
|
|
1094 This is like `eval-defun', but the code is always instrumented for Edebug.
|
|
1095 Print its name in the minibuffer and leave point where it is,
|
|
1096 or if an error occurs, leave point after it with mark at the original point." t nil)
|
|
1097
|
|
1098 ;;;***
|
|
1099
|
|
1100 ;;;### (autoloads (ediff-show-registry) "ediff-mult" "ediff/ediff-mult.el")
|
|
1101
|
|
1102 (autoload 'ediff-show-registry "ediff-mult" "\
|
|
1103 Display Ediff's registry." t nil)
|
|
1104
|
|
1105 (defalias 'eregistry 'ediff-show-registry)
|
|
1106
|
|
1107 ;;;***
|
|
1108
|
82
|
1109 ;;;### (autoloads (ediff-toggle-use-toolbar ediff-toggle-multiframe) "ediff-util" "ediff/ediff-util.el")
|
78
|
1110
|
|
1111 (autoload 'ediff-toggle-multiframe "ediff-util" "\
|
82
|
1112 Switch from multiframe display to single-frame display and back.
|
|
1113 To change the default, set the variable `ediff-window-setup-function',
|
78
|
1114 which see." t nil)
|
|
1115
|
82
|
1116 (autoload 'ediff-toggle-use-toolbar "ediff-util" "\
|
|
1117 Enable or disable Ediff toolbar.
|
|
1118 Works only in versions of Emacs that support toolbars.
|
|
1119 To change the default, set the variable `ediff-use-toolbar-p', which see." t nil)
|
|
1120
|
78
|
1121 ;;;***
|
|
1122
|
|
1123 ;;;### (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")
|
|
1124
|
|
1125 (autoload 'ediff-files "ediff" "\
|
|
1126 Run Ediff on a pair of files, FILE-A and FILE-B." t nil)
|
|
1127
|
|
1128 (autoload 'ediff-files3 "ediff" "\
|
|
1129 Run Ediff on three files, FILE-A, FILE-B, and FILE-C." t nil)
|
|
1130
|
|
1131 (defalias 'ediff3 'ediff-files3)
|
|
1132
|
|
1133 (defalias 'ediff 'ediff-files)
|
|
1134
|
|
1135 (autoload 'ediff-buffers "ediff" "\
|
|
1136 Run Ediff on a pair of buffers, BUFFER-A and BUFFER-B." t nil)
|
|
1137
|
|
1138 (defalias 'ebuffers 'ediff-buffers)
|
|
1139
|
|
1140 (autoload 'ediff-buffers3 "ediff" "\
|
|
1141 Run Ediff on three buffers, BUFFER-A, BUFFER-B, and BUFFER-C." t nil)
|
|
1142
|
|
1143 (defalias 'ebuffers3 'ediff-buffers3)
|
|
1144
|
|
1145 (autoload 'ediff-directories "ediff" "\
|
|
1146 Run Ediff on a pair of directories, DIR1 and DIR2, comparing files that have
|
|
1147 the same name in both. The third argument, REGEXP, is a regular expression that
|
|
1148 can be used to filter out certain file names." t nil)
|
|
1149
|
|
1150 (defalias 'edirs 'ediff-directories)
|
|
1151
|
|
1152 (autoload 'ediff-directory-revisions "ediff" "\
|
|
1153 Run Ediff on a directory, DIR1, comparing its files with their revisions.
|
|
1154 The second argument, REGEXP, is a regular expression that filters the file
|
|
1155 names. Only the files that are under revision control are taken into account." t nil)
|
|
1156
|
|
1157 (defalias 'edir-revisions 'ediff-directory-revisions)
|
|
1158
|
|
1159 (autoload 'ediff-directories3 "ediff" "\
|
|
1160 Run Ediff on three directories, DIR1, DIR2, and DIR3, comparing files that
|
|
1161 have the same name in all three. The last argument, REGEXP, is a regular
|
|
1162 expression that can be used to filter out certain file names." t nil)
|
|
1163
|
|
1164 (defalias 'edirs3 'ediff-directories3)
|
|
1165
|
|
1166 (autoload 'ediff-merge-directories "ediff" "\
|
|
1167 Run Ediff on a pair of directories, DIR1 and DIR2, merging files that have
|
|
1168 the same name in both. The third argument, REGEXP, is a regular expression that
|
|
1169 can be used to filter out certain file names." t nil)
|
|
1170
|
|
1171 (defalias 'edirs-merge 'ediff-merge-directories)
|
|
1172
|
|
1173 (autoload 'ediff-merge-directories-with-ancestor "ediff" "\
|
|
1174 Merge files in directories DIR1 and DIR2 using files in ANCESTOR-DIR as ancestors.
|
|
1175 Ediff merges files that have identical names in DIR1, DIR2. If a pair of files
|
|
1176 in DIR1 and DIR2 doesn't have an ancestor in ANCESTOR-DIR, Ediff will merge
|
|
1177 without ancestor. The fourth argument, REGEXP, is a regular expression that
|
|
1178 can be used to filter out certain file names." t nil)
|
|
1179
|
|
1180 (autoload 'ediff-merge-directory-revisions "ediff" "\
|
|
1181 Run Ediff on a directory, DIR1, merging its files with their revisions.
|
|
1182 The second argument, REGEXP, is a regular expression that filters the file
|
|
1183 names. Only the files that are under revision control are taken into account." t nil)
|
|
1184
|
|
1185 (defalias 'edir-merge-revisions 'ediff-merge-directory-revisions)
|
|
1186
|
|
1187 (autoload 'ediff-merge-directory-revisions-with-ancestor "ediff" "\
|
|
1188 Run Ediff on a directory, DIR1, merging its files with their revisions and ancestors.
|
|
1189 The second argument, REGEXP, is a regular expression that filters the file
|
|
1190 names. Only the files that are under revision control are taken into account." t nil)
|
|
1191
|
|
1192 (defalias 'edir-merge-revisions-with-ancestor 'ediff-merge-directory-revisions-with-ancestor)
|
|
1193
|
|
1194 (defalias 'edirs-merge-with-ancestor 'ediff-merge-directories-with-ancestor)
|
|
1195
|
|
1196 (autoload 'ediff-windows-wordwise "ediff" "\
|
|
1197 Compare WIND-A and WIND-B, which are selected by clicking, wordwise.
|
|
1198 With prefix argument, DUMB-MODE, or on a non-windowing display, works as
|
|
1199 follows:
|
|
1200 If WIND-A is nil, use selected window.
|
|
1201 If WIND-B is nil, use window next to WIND-A." t nil)
|
|
1202
|
|
1203 (autoload 'ediff-windows-linewise "ediff" "\
|
|
1204 Compare WIND-A and WIND-B, which are selected by clicking, linewise.
|
|
1205 With prefix argument, DUMB-MODE, or on a non-windowing display, works as
|
|
1206 follows:
|
|
1207 If WIND-A is nil, use selected window.
|
|
1208 If WIND-B is nil, use window next to WIND-A." t nil)
|
|
1209
|
|
1210 (autoload 'ediff-regions-wordwise "ediff" "\
|
|
1211 Run Ediff on a pair of regions in two different buffers.
|
|
1212 Regions (i.e., point and mark) are assumed to be set in advance.
|
|
1213 This function is effective only for relatively small regions, up to 200
|
|
1214 lines. For large regions, use `ediff-regions-linewise'." t nil)
|
|
1215
|
|
1216 (autoload 'ediff-regions-linewise "ediff" "\
|
|
1217 Run Ediff on a pair of regions in two different buffers.
|
|
1218 Regions (i.e., point and mark) are assumed to be set in advance.
|
|
1219 Each region is enlarged to contain full lines.
|
|
1220 This function is effective for large regions, over 100-200
|
|
1221 lines. For small regions, use `ediff-regions-wordwise'." t nil)
|
|
1222
|
|
1223 (defalias 'ediff-merge 'ediff-merge-files)
|
|
1224
|
|
1225 (autoload 'ediff-merge-files "ediff" "\
|
|
1226 Merge two files without ancestor." t nil)
|
|
1227
|
|
1228 (autoload 'ediff-merge-files-with-ancestor "ediff" "\
|
|
1229 Merge two files with ancestor." t nil)
|
|
1230
|
|
1231 (defalias 'ediff-merge-with-ancestor 'ediff-merge-files-with-ancestor)
|
|
1232
|
|
1233 (autoload 'ediff-merge-buffers "ediff" "\
|
|
1234 Merge buffers without ancestor." t nil)
|
|
1235
|
|
1236 (autoload 'ediff-merge-buffers-with-ancestor "ediff" "\
|
|
1237 Merge buffers with ancestor." t nil)
|
|
1238
|
|
1239 (autoload 'ediff-merge-revisions "ediff" "\
|
|
1240 Run Ediff by merging two revisions of a file.
|
|
1241 The file is the optional FILE argument or the file visited by the current
|
|
1242 buffer." t nil)
|
|
1243
|
|
1244 (autoload 'ediff-merge-revisions-with-ancestor "ediff" "\
|
|
1245 Run Ediff by merging two revisions of a file with a common ancestor.
|
80
|
1246 The file is the the optional FILE argument or the file visited by the current
|
78
|
1247 buffer." t nil)
|
|
1248
|
|
1249 (autoload 'run-ediff-from-cvs-buffer "ediff" "\
|
|
1250 Run Ediff-merge on appropriate revisions of the selected file.
|
|
1251 First run after `M-x cvs-update'. Then place the cursor on a lide describing a
|
|
1252 file and then run `run-ediff-from-cvs-buffer'." t nil)
|
|
1253
|
|
1254 (autoload 'ediff-patch-file "ediff" "\
|
|
1255 Run Ediff by patching SOURCE-FILENAME." t nil)
|
|
1256
|
|
1257 (autoload 'ediff-patch-buffer "ediff" "\
|
|
1258 Run Ediff by patching BUFFER-NAME." t nil)
|
|
1259
|
|
1260 (defalias 'epatch 'ediff-patch-file)
|
|
1261
|
|
1262 (defalias 'epatch-buffer 'ediff-patch-buffer)
|
|
1263
|
|
1264 (autoload 'ediff-revision "ediff" "\
|
|
1265 Run Ediff by comparing versions of a file.
|
|
1266 The file is an optional FILE argument or the file visited by the current
|
|
1267 buffer. Use `vc.el' or `rcs.el' depending on `ediff-version-control-package'." t nil)
|
|
1268
|
|
1269 (autoload 'ediff-version "ediff" "\
|
|
1270 Return string describing the version of Ediff.
|
|
1271 When called interactively, displays the version." t nil)
|
|
1272
|
|
1273 (autoload 'ediff-documentation "ediff" "\
|
|
1274 Display Ediff's manual.
|
|
1275 With optional NODE, goes to that node." t nil)
|
|
1276
|
|
1277 ;;;***
|
|
1278
|
98
|
1279 ;;;### (autoloads nil "default-dir" "efs/default-dir.el")
|
|
1280
|
|
1281 (defvar default-directory-function nil "\
|
|
1282 A function to call to compute the default-directory for the current buffer.
|
|
1283 If this is nil, the function default-directory will return the value of the
|
|
1284 variable default-directory.
|
|
1285 Buffer local.")
|
|
1286
|
|
1287 ;;;***
|
|
1288
|
|
1289 ;;;### (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")
|
|
1290
|
|
1291 (defvar dired-compression-method 'compress "\
|
|
1292 *Type of compression program to use.
|
|
1293 Give as a symbol.
|
|
1294 Currently-recognized methods are: gzip pack compact compress.
|
|
1295 To change this variable use \\[dired-do-compress] with a zero prefix.")
|
|
1296
|
|
1297 (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"))) "\
|
|
1298 *Association list of compression method descriptions.
|
|
1299 Each element of the table should be a list of the form
|
|
1300
|
|
1301 (compress-type extension (compress-args) (decompress-args) force-flag)
|
|
1302
|
|
1303 where
|
|
1304 `compress-type' is a unique symbol in the alist to which
|
|
1305 `dired-compression-method' can be set;
|
|
1306 `extension' is the file extension (as a string) used by files compressed
|
|
1307 by this method;
|
|
1308 `compress-args' is a list of the path of the compression program and
|
|
1309 flags to pass as separate arguments;
|
|
1310 `decompress-args' is a list of the path of the decompression
|
|
1311 program and flags to pass as separate arguments.
|
|
1312 `force-flag' is the switch to pass to the command to force overwriting
|
|
1313 of existing files.
|
|
1314
|
|
1315 For example:
|
|
1316
|
114
|
1317 (setq dired-compression-method-alist
|
98
|
1318 (cons '(frobnicate \".frob\" (\"frob\") (\"frob\" \"-d\") \"-f\")
|
|
1319 dired-compression-method-alist))
|
|
1320 => ((frobnicate \".frob\" (\"frob\") (\"frob\" \"-d\"))
|
|
1321 (gzip \".gz\" (\"gzip\") (\"gunzip\"))
|
|
1322 ...)
|
|
1323
|
|
1324 See also: dired-compression-method <V>")
|
|
1325
|
|
1326 (defvar dired-ls-program "ls" "\
|
|
1327 *Absolute or relative name of the ls program used by dired.")
|
|
1328
|
|
1329 (defvar dired-listing-switches "-al" "\
|
|
1330 *Switches passed to ls for dired. MUST contain the `l' option.
|
|
1331 Can contain even `F', `b', `i' and `s'.")
|
|
1332
|
|
1333 (defvar dired-chown-program (if (memq system-type '(hpux dgux usg-unix-v)) "chown" "/etc/chown") "\
|
114
|
1334 *Name of chown command (usually `chown' or `/etc/chown').")
|
98
|
1335
|
|
1336 (defvar dired-gnutar-program nil "\
|
|
1337 *If non-nil, name of the GNU tar executable (e.g. \"tar\" or \"gnutar\").
|
|
1338 GNU tar's `z' switch is used for compressed tar files.
|
|
1339 If you don't have GNU tar, set this to nil: a pipe using `zcat' is then used.")
|
|
1340
|
|
1341 (defvar dired-unshar-program nil "\
|
|
1342 *Set to the name of the unshar program, if you have it.")
|
|
1343
|
|
1344 (defvar dired-local-variables-file ".dired" "\
|
|
1345 *If non-nil, filename for local variables for Dired.
|
|
1346 If Dired finds a file with that name in the current directory, it will
|
|
1347 temporarily insert it into the dired buffer and run `hack-local-variables'.
|
|
1348
|
|
1349 Type \\[info] and `g' `(emacs)File Variables' `RET' for more info on
|
|
1350 local variables.")
|
|
1351
|
|
1352 (defvar dired-kept-versions 2 "\
|
|
1353 *When cleaning directory, number of versions to keep.")
|
|
1354
|
|
1355 (defvar dired-find-subdir nil "\
|
|
1356 *Determines whether dired tries to lookup a subdir in existing buffers.
|
|
1357 If non-nil, dired does not make a new buffer for a directory if it can be
|
|
1358 found (perhaps as subdir) in some existing dired buffer. If there are several
|
|
1359 dired buffers for a directory, then the most recently used one is chosen.
|
|
1360
|
|
1361 Dired avoids switching to the current buffer, so that if you have
|
|
1362 a normal and a wildcard buffer for the same directory, C-x d RET will
|
|
1363 toggle between those two.")
|
|
1364
|
|
1365 (defvar dired-use-file-transformers t "\
|
|
1366 *Determines whether dired uses file transformers.
|
|
1367 If non-nil `dired-do-shell-command' will apply file transformers to file names.
|
|
1368 See \\[describe-function] for dired-do-shell-command for more information.")
|
|
1369
|
|
1370 (defvar dired-dwim-target nil "\
|
|
1371 *If non-nil, dired tries to guess a default target directory.
|
|
1372 This means that if there is a dired buffer displayed in the next window,
|
|
1373 use its current subdir, instead of the current subdir of this dired buffer.
|
|
1374 The target is put in the prompt for file copy, rename, etc.")
|
|
1375
|
|
1376 (defvar dired-copy-preserve-time nil "\
|
|
1377 *If non-nil, Dired preserves the last-modified time in a file copy.
|
|
1378 \(This works on only some systems.)\\<dired-mode-map>
|
|
1379 Use `\\[dired-do-copy]' with a zero prefix argument to toggle its value.")
|
|
1380
|
|
1381 (defvar dired-no-confirm nil "\
|
|
1382 *If non-nil, a list of symbols for commands dired should not confirm.
|
|
1383 It can be a sublist of
|
|
1384
|
|
1385 '(byte-compile chgrp chmod chown compress copy delete hardlink load
|
|
1386 move print shell symlink uncompress recursive-delete kill-file-buffer
|
|
1387 kill-dired-buffer patch create-top-dir revert-subdirs)
|
|
1388
|
|
1389 The meanings of most of the symbols are obvious. A few exceptions:
|
|
1390
|
|
1391 'compress applies to compression or decompression by any of the
|
|
1392 compression program in `dired-compression-method-alist'.
|
|
1393
|
|
1394 'kill-dired-buffer applies to offering to kill dired buffers for
|
|
1395 directories which have been deleted.
|
|
1396
|
|
1397 'kill-file-buffer applies to offering to kill buffers visiting files
|
|
1398 which have been deleted.
|
|
1399
|
|
1400 'recursive-delete applies to recursively deleting non-empty
|
|
1401 directories, and all of their contents.
|
|
1402
|
|
1403 'create-top-dir applies to `dired-up-directory' creating a new top level
|
|
1404 directory for the dired buffer.
|
|
1405
|
|
1406 'revert-subdirs applies to re-reading subdirectories which have
|
|
1407 been modified on disk.
|
|
1408
|
|
1409 Note that this list also applies to remote files accessed with efs
|
|
1410 or ange-ftp.")
|
|
1411
|
|
1412 (defvar dired-backup-if-overwrite nil "\
|
|
1413 *Non-nil if Dired should ask about making backups before overwriting files.
|
|
1414 Special value 'always suppresses confirmation.")
|
|
1415
|
|
1416 (defvar dired-omit-files nil "\
|
|
1417 *If non-nil un-interesting files will be omitted from this dired buffer.
|
|
1418 Use \\[dired-omit-toggle] to see these files. (buffer local)")
|
|
1419
|
|
1420 (defvar dired-mail-reader 'rmail "\
|
|
1421 *Mail reader used by dired for dired-read-mail (\\[dired-read-mail]).
|
|
1422 The symbols 'rmail and 'vm are the only two allowed values.")
|
|
1423
|
118
|
1424 (defvar dired-refresh-automatically t "\
|
|
1425 *If non-nil, refresh dired buffers automatically after file operations.")
|
|
1426
|
98
|
1427 (define-key ctl-x-map "d" 'dired)
|
|
1428
|
|
1429 (autoload 'dired "dired" "\
|
|
1430 \"Edit\" directory DIRNAME--delete, rename, print, etc. some files in it.
|
|
1431 Optional second argument SWITCHES specifies the `ls' options used.
|
|
1432 \(Interactively, use a prefix argument to be able to specify SWITCHES.)
|
|
1433 Dired displays a list of files in DIRNAME (which may also have
|
|
1434 shell wildcards appended to select certain files). If DIRNAME is a cons,
|
|
1435 its first element is taken as the directory name and the resr as an explicit
|
|
1436 list of files to make directory entries for.
|
|
1437 \\<dired-mode-map>You can move around in it with the usual commands.
|
|
1438 You can flag files for deletion with \\[dired-flag-file-deletion] and then
|
|
1439 delete them by typing \\[dired-expunge-deletions].
|
|
1440 Type \\[dired-describe-mode] after entering dired for more info.
|
|
1441
|
|
1442 If DIRNAME is already in a dired buffer, that buffer is used without refresh." t nil)
|
|
1443
|
|
1444 (define-key ctl-x-4-map "d" 'dired-other-window)
|
|
1445
|
|
1446 (autoload 'dired-other-window "dired" "\
|
|
1447 \"Edit\" directory DIRNAME. Like `dired' but selects in another window." t nil)
|
|
1448
|
|
1449 (define-key ctl-x-5-map "d" 'dired-other-frame)
|
|
1450
|
|
1451 (autoload 'dired-other-frame "dired" "\
|
|
1452 \"Edit\" directory DIRNAME. Like `dired' but makes a new frame." t nil)
|
|
1453
|
|
1454 (autoload 'dired-noselect "dired" "\
|
|
1455 Like `dired' but returns the dired buffer as value, does not select it." nil nil)
|
|
1456
|
|
1457 (define-key ctl-x-map "\C-j" 'dired-jump-back)
|
|
1458
|
|
1459 (autoload 'dired-jump-back "dired" "\
|
|
1460 Jump back to dired.
|
|
1461 If in a file, dired the current directory and move to file's line.
|
|
1462 If in dired already, pop up a level and goto old directory's line.
|
|
1463 In case the proper dired file line cannot be found, refresh the dired
|
|
1464 buffer and try again." t nil)
|
|
1465
|
|
1466 (define-key ctl-x-4-map "\C-j" 'dired-jump-back-other-window)
|
|
1467
|
|
1468 (autoload 'dired-jump-back-other-window "dired" "\
|
|
1469 Like \\[dired-jump-back], but to other window." t nil)
|
|
1470
|
|
1471 (define-key ctl-x-5-map "\C-j" 'dired-jump-back-other-frame)
|
|
1472
|
|
1473 (autoload 'dired-jump-back-other-frame "dired" "\
|
|
1474 Like \\[dired-jump-back], but in another frame." t nil)
|
|
1475
|
|
1476 ;;;***
|
|
1477
|
116
|
1478 ;;;### (autoloads (efs-ftp-path) "efs-cu" "efs/efs-cu.el")
|
114
|
1479
|
|
1480 (defvar efs-path-root-regexp "^/[^/:]+:" "\
|
|
1481 Regexp to match the `/user@host:' root of an efs full path.")
|
|
1482
|
116
|
1483 (autoload 'efs-ftp-path "efs-cu" "\
|
|
1484 Parse PATH according to efs-path-regexp.
|
|
1485 Returns a list (HOST USER PATH), or nil if PATH does not match the format." nil nil)
|
|
1486
|
|
1487 ;;;***
|
|
1488
|
|
1489 ;;;### (autoloads (remote-path-file-handler-function) "efs-dump" "efs/efs-dump.el")
|
|
1490
|
|
1491 (or (assoc efs-path-root-regexp file-name-handler-alist) (setq file-name-handler-alist (cons (cons efs-path-root-regexp 'remote-path-file-handler-function) file-name-handler-alist)))
|
|
1492
|
|
1493 (autoload 'remote-path-file-handler-function "efs-dump" "\
|
|
1494 Function to call special file handlers for remote files." nil nil)
|
114
|
1495
|
|
1496 ;;;***
|
|
1497
|
118
|
1498 ;;;### (autoloads nil "efs-fnh" "efs/efs-fnh.el")
|
|
1499
|
|
1500 (defvar allow-remote-paths t "\
|
|
1501 *Set this to nil if you don't want remote paths to access
|
|
1502 remote files.")
|
|
1503
|
|
1504 ;;;***
|
|
1505
|
114
|
1506 ;;;### (autoloads (efs-root-file-name-completion efs-root-file-name-all-completions efs-set-passwd) "efs-netrc" "efs/efs-netrc.el")
|
|
1507
|
|
1508 (autoload 'efs-set-passwd "efs-netrc" "\
|
|
1509 For a given HOST and USER, set or change the associated PASSWORD." t nil)
|
|
1510
|
|
1511 (autoload 'efs-root-file-name-all-completions "efs-netrc" nil nil nil)
|
|
1512
|
|
1513 (autoload 'efs-root-file-name-completion "efs-netrc" nil nil nil)
|
|
1514
|
|
1515 ;;;***
|
|
1516
|
|
1517 ;;;### (autoloads (efs-report-bug) "efs-report" "efs/efs-report.el")
|
|
1518
|
|
1519 (autoload 'efs-report-bug "efs-report" "\
|
|
1520 Submit a bug report for efs." t nil)
|
|
1521
|
|
1522 ;;;***
|
|
1523
|
116
|
1524 ;;;### (autoloads (efs-file-handler-function efs-nslookup-host efs-display-ftp-activity) "efs" "efs/efs.el")
|
|
1525
|
|
1526 (autoload 'efs-display-ftp-activity "efs" "\
|
|
1527 Displays the number of active background ftp sessions in the modeline.
|
|
1528 Uses the variable `efs-mode-line-format' to determine how this will be
|
|
1529 displayed." t nil)
|
114
|
1530
|
|
1531 (autoload 'efs-nslookup-host "efs" "\
|
|
1532 Attempt to resolve the given HOSTNAME using nslookup if possible." t nil)
|
|
1533
|
|
1534 (autoload 'efs-file-handler-function "efs" "\
|
|
1535 Function to call special file handlers for remote files." nil nil)
|
|
1536
|
|
1537 ;;;***
|
|
1538
|
78
|
1539 ;;;### (autoloads (electric-buffer-list) "ebuff-menu" "electric/ebuff-menu.el")
|
|
1540
|
|
1541 (autoload 'electric-buffer-list "ebuff-menu" "\
|
|
1542 Pops up a buffer describing the set of Emacs buffers.
|
|
1543 Vaguely like ITS lunar select buffer; combining typeoutoid buffer
|
|
1544 listing with menuoid buffer selection.
|
|
1545
|
|
1546 If the very next character typed is a space then the buffer list
|
|
1547 window disappears. Otherwise, one may move around in the buffer list
|
|
1548 window, marking buffers to be selected, saved or deleted.
|
|
1549
|
|
1550 To exit and select a new buffer, type a space when the cursor is on
|
|
1551 the appropriate line of the buffer-list window. Other commands are
|
|
1552 much like those of buffer-menu-mode.
|
|
1553
|
|
1554 Calls value of `electric-buffer-menu-mode-hook' on entry if non-nil.
|
|
1555
|
|
1556 Non-null optional arg FILES-ONLY means mention only file buffers.
|
|
1557 When called from Lisp code, FILES-ONLY may be a regular expression,
|
|
1558 in which case only buffers whose names match that expression are listed,
|
|
1559 or an arbitrary predicate function.
|
|
1560
|
|
1561 \\{electric-buffer-menu-mode-map}" t nil)
|
|
1562
|
|
1563 ;;;***
|
|
1564
|
|
1565 ;;;### (autoloads (electric-command-history Electric-command-history-redo-expression) "echistory" "electric/echistory.el")
|
|
1566
|
|
1567 (autoload 'Electric-command-history-redo-expression "echistory" "\
|
|
1568 Edit current history line in minibuffer and execute result.
|
|
1569 With prefix arg NOCONFIRM, execute current line as-is without editing." t nil)
|
|
1570
|
|
1571 (autoload 'electric-command-history "echistory" "\
|
|
1572 \\<electric-history-map>Major mode for examining and redoing commands from `command-history'.
|
|
1573 This pops up a window with the Command History listing.
|
|
1574 The number of command listed is controlled by `list-command-history-max'.
|
|
1575 The command history is filtered by `list-command-history-filter' if non-nil.
|
|
1576 Combines typeout Command History list window with menu like selection
|
|
1577 of an expression from the history for re-evaluation in the *original* buffer.
|
|
1578
|
|
1579 The history displayed is filtered by `list-command-history-filter' if non-nil.
|
|
1580
|
|
1581 Like Emacs-Lisp mode except that characters do not insert themselves and
|
|
1582 Tab and Linefeed do not indent. Instead these commands are provided:
|
|
1583 \\{electric-history-map}
|
|
1584
|
|
1585 Calls the value of `electric-command-history-hook' if that is non-nil.
|
|
1586 The Command History listing is recomputed each time this mode is invoked." t nil)
|
|
1587
|
|
1588 ;;;***
|
|
1589
|
|
1590 ;;;### (autoloads (electric-helpify with-electric-help) "ehelp" "electric/ehelp.el")
|
|
1591
|
|
1592 (autoload 'with-electric-help "ehelp" "\
|
|
1593 Pop up an \"electric\" help buffer.
|
|
1594 The arguments are THUNK &optional BUFFER NOERASE MINHEIGHT.
|
|
1595 THUNK is a function of no arguments which is called to initialize the
|
|
1596 contents of BUFFER. BUFFER defaults to `*Help*'. BUFFER will be
|
|
1597 erased before THUNK is called unless NOERASE is non-nil. THUNK will
|
|
1598 be called while BUFFER is current and with `standard-output' bound to
|
|
1599 the buffer specified by BUFFER.
|
|
1600
|
|
1601 If THUNK returns nil, we display BUFFER starting at the top, and
|
|
1602 shrink the window to fit. If THUNK returns non-nil, we don't do those things.
|
|
1603
|
|
1604 After THUNK has been called, this function \"electrically\" pops up a window
|
|
1605 in which BUFFER is displayed and allows the user to scroll through that buffer
|
|
1606 in electric-help-mode. The window's height will be at least MINHEIGHT if
|
|
1607 this value is non-nil.
|
|
1608
|
|
1609 If THUNK returns nil, we display BUFFER starting at the top, and
|
|
1610 shrink the window to fit. If THUNK returns non-nil, we don't do those
|
|
1611 things.
|
|
1612
|
|
1613 When the user exits (with `electric-help-exit', or otherwise) the help
|
|
1614 buffer's window disappears (i.e., we use `save-window-excursion')
|
|
1615 BUFFER is put into `default-major-mode' (or `fundamental-mode') when we exit." nil nil)
|
|
1616
|
|
1617 (autoload 'electric-helpify "ehelp" nil nil nil)
|
|
1618
|
|
1619 ;;;***
|
|
1620
|
|
1621 ;;;### (autoloads (Helper-help Helper-describe-bindings) "helper" "electric/helper.el")
|
|
1622
|
|
1623 (autoload 'Helper-describe-bindings "helper" "\
|
|
1624 Describe local key bindings of current mode." t nil)
|
|
1625
|
|
1626 (autoload 'Helper-help "helper" "\
|
|
1627 Provide help for current mode." t nil)
|
|
1628
|
|
1629 ;;;***
|
|
1630
|
|
1631 ;;;### (autoloads (edt-emulation-on) "edt" "emulators/edt.el")
|
|
1632
|
|
1633 (autoload 'edt-emulation-on "edt" "\
|
|
1634 Turn on EDT Emulation." t nil)
|
|
1635
|
|
1636 ;;;***
|
|
1637
|
|
1638 ;;;### (autoloads (convert-mocklisp-buffer) "mlconvert" "emulators/mlconvert.el")
|
|
1639
|
|
1640 (autoload 'convert-mocklisp-buffer "mlconvert" "\
|
|
1641 Convert buffer of Mocklisp code to real Lisp that GNU Emacs can run." t nil)
|
|
1642
|
|
1643 ;;;***
|
|
1644
|
|
1645 ;;;### (autoloads (teco-command) "teco" "emulators/teco.el")
|
|
1646
|
|
1647 (autoload 'teco-command "teco" "\
|
|
1648 Read and execute a Teco command string." t nil)
|
|
1649
|
|
1650 ;;;***
|
|
1651
|
|
1652 ;;;### (autoloads (tpu-edt-on) "tpu-edt" "emulators/tpu-edt.el")
|
|
1653
|
|
1654 (fset 'tpu-edt-mode 'tpu-edt-on)
|
|
1655
|
|
1656 (fset 'tpu-edt 'tpu-edt-on)
|
|
1657
|
|
1658 (autoload 'tpu-edt-on "tpu-edt" "\
|
|
1659 Turn on TPU/edt emulation." t nil)
|
|
1660
|
|
1661 ;;;***
|
|
1662
|
|
1663 ;;;### (autoloads (tpu-set-cursor-bound tpu-set-cursor-free tpu-set-scroll-margins) "tpu-extras" "emulators/tpu-extras.el")
|
|
1664
|
|
1665 (autoload 'tpu-set-scroll-margins "tpu-extras" "\
|
|
1666 Set scroll margins." t nil)
|
|
1667
|
|
1668 (autoload 'tpu-set-cursor-free "tpu-extras" "\
|
|
1669 Allow the cursor to move freely about the screen." t nil)
|
|
1670
|
|
1671 (autoload 'tpu-set-cursor-bound "tpu-extras" "\
|
|
1672 Constrain the cursor to the flow of the text." t nil)
|
|
1673
|
|
1674 ;;;***
|
|
1675
|
|
1676 ;;;### (autoloads (wordstar-mode) "ws-mode" "emulators/ws-mode.el")
|
|
1677
|
|
1678 (autoload 'wordstar-mode "ws-mode" "\
|
|
1679 Major mode with WordStar-like key bindings.
|
|
1680
|
|
1681 BUGS:
|
|
1682 - Help menus with WordStar commands (C-j just calls help-for-help)
|
|
1683 are not implemented
|
|
1684 - Options for search and replace
|
|
1685 - Show markers (C-k h) is somewhat strange
|
|
1686 - Search and replace (C-q a) is only available in forward direction
|
|
1687
|
|
1688 No key bindings beginning with ESC are installed, they will work
|
|
1689 Emacs-like.
|
|
1690
|
|
1691 The key bindings are:
|
|
1692
|
|
1693 C-a backward-word
|
|
1694 C-b fill-paragraph
|
|
1695 C-c scroll-up-line
|
|
1696 C-d forward-char
|
|
1697 C-e previous-line
|
|
1698 C-f forward-word
|
|
1699 C-g delete-char
|
|
1700 C-h backward-char
|
|
1701 C-i indent-for-tab-command
|
|
1702 C-j help-for-help
|
|
1703 C-k ordstar-C-k-map
|
|
1704 C-l ws-repeat-search
|
|
1705 C-n open-line
|
|
1706 C-p quoted-insert
|
|
1707 C-r scroll-down-line
|
|
1708 C-s backward-char
|
|
1709 C-t kill-word
|
|
1710 C-u keyboard-quit
|
|
1711 C-v overwrite-mode
|
|
1712 C-w scroll-down
|
|
1713 C-x next-line
|
|
1714 C-y kill-complete-line
|
|
1715 C-z scroll-up
|
|
1716
|
|
1717 C-k 0 ws-set-marker-0
|
|
1718 C-k 1 ws-set-marker-1
|
|
1719 C-k 2 ws-set-marker-2
|
|
1720 C-k 3 ws-set-marker-3
|
|
1721 C-k 4 ws-set-marker-4
|
|
1722 C-k 5 ws-set-marker-5
|
|
1723 C-k 6 ws-set-marker-6
|
|
1724 C-k 7 ws-set-marker-7
|
|
1725 C-k 8 ws-set-marker-8
|
|
1726 C-k 9 ws-set-marker-9
|
|
1727 C-k b ws-begin-block
|
|
1728 C-k c ws-copy-block
|
|
1729 C-k d save-buffers-kill-emacs
|
|
1730 C-k f find-file
|
|
1731 C-k h ws-show-markers
|
|
1732 C-k i ws-indent-block
|
|
1733 C-k k ws-end-block
|
|
1734 C-k p ws-print-block
|
|
1735 C-k q kill-emacs
|
|
1736 C-k r insert-file
|
|
1737 C-k s save-some-buffers
|
|
1738 C-k t ws-mark-word
|
|
1739 C-k u ws-exdent-block
|
|
1740 C-k C-u keyboard-quit
|
|
1741 C-k v ws-move-block
|
|
1742 C-k w ws-write-block
|
|
1743 C-k x kill-emacs
|
|
1744 C-k y ws-delete-block
|
|
1745
|
|
1746 C-o c wordstar-center-line
|
|
1747 C-o b switch-to-buffer
|
|
1748 C-o j justify-current-line
|
|
1749 C-o k kill-buffer
|
|
1750 C-o l list-buffers
|
|
1751 C-o m auto-fill-mode
|
|
1752 C-o r set-fill-column
|
|
1753 C-o C-u keyboard-quit
|
|
1754 C-o wd delete-other-windows
|
|
1755 C-o wh split-window-horizontally
|
|
1756 C-o wo other-window
|
|
1757 C-o wv split-window-vertically
|
|
1758
|
|
1759 C-q 0 ws-find-marker-0
|
|
1760 C-q 1 ws-find-marker-1
|
|
1761 C-q 2 ws-find-marker-2
|
|
1762 C-q 3 ws-find-marker-3
|
|
1763 C-q 4 ws-find-marker-4
|
|
1764 C-q 5 ws-find-marker-5
|
|
1765 C-q 6 ws-find-marker-6
|
|
1766 C-q 7 ws-find-marker-7
|
|
1767 C-q 8 ws-find-marker-8
|
|
1768 C-q 9 ws-find-marker-9
|
|
1769 C-q a ws-query-replace
|
|
1770 C-q b ws-to-block-begin
|
|
1771 C-q c end-of-buffer
|
|
1772 C-q d end-of-line
|
|
1773 C-q f ws-search
|
|
1774 C-q k ws-to-block-end
|
|
1775 C-q l ws-undo
|
|
1776 C-q p ws-last-cursorp
|
|
1777 C-q r beginning-of-buffer
|
|
1778 C-q C-u keyboard-quit
|
|
1779 C-q w ws-last-error
|
|
1780 C-q y ws-kill-eol
|
|
1781 C-q DEL ws-kill-bol
|
|
1782 " t nil)
|
|
1783
|
|
1784 ;;;***
|
|
1785
|
|
1786 ;;;### (autoloads nil "loaddefs-eos" "eos/loaddefs-eos.el")
|
|
1787
|
|
1788 ;;;***
|
|
1789
|
|
1790 ;;;### (autoloads (blackbox) "blackbox" "games/blackbox.el")
|
|
1791
|
|
1792 (autoload 'blackbox "blackbox" "\
|
|
1793 Play blackbox. Optional prefix argument is the number of balls;
|
|
1794 the default is 4.
|
|
1795
|
|
1796 What is blackbox?
|
|
1797
|
|
1798 Blackbox is a game of hide and seek played on an 8 by 8 grid (the
|
|
1799 Blackbox). Your opponent (Emacs, in this case) has hidden several
|
|
1800 balls (usually 4) within this box. By shooting rays into the box and
|
|
1801 observing where they emerge it is possible to deduce the positions of
|
|
1802 the hidden balls. The fewer rays you use to find the balls, the lower
|
|
1803 your score.
|
|
1804
|
|
1805 Overview of play:
|
|
1806
|
|
1807 \\<blackbox-mode-map>To play blackbox, type \\[blackbox]. An optional prefix argument
|
|
1808 specifies the number of balls to be hidden in the box; the default is
|
|
1809 four.
|
|
1810
|
|
1811 The cursor can be moved around the box with the standard cursor
|
|
1812 movement keys.
|
|
1813
|
|
1814 To shoot a ray, move the cursor to the edge of the box and press SPC.
|
|
1815 The result will be determined and the playfield updated.
|
|
1816
|
|
1817 You may place or remove balls in the box by moving the cursor into the
|
|
1818 box and pressing \\[bb-romp].
|
|
1819
|
|
1820 When you think the configuration of balls you have placed is correct,
|
|
1821 press \\[bb-done]. You will be informed whether you are correct or
|
|
1822 not, and be given your score. Your score is the number of letters and
|
|
1823 numbers around the outside of the box plus five for each incorrectly
|
|
1824 placed ball. If you placed any balls incorrectly, they will be
|
|
1825 indicated with `x', and their actual positions indicated with `o'.
|
|
1826
|
|
1827 Details:
|
|
1828
|
|
1829 There are three possible outcomes for each ray you send into the box:
|
|
1830
|
|
1831 Detour: the ray is deflected and emerges somewhere other than
|
|
1832 where you sent it in. On the playfield, detours are
|
|
1833 denoted by matching pairs of numbers -- one where the
|
|
1834 ray went in, and the other where it came out.
|
|
1835
|
|
1836 Reflection: the ray is reflected and emerges in the same place
|
|
1837 it was sent in. On the playfield, reflections are
|
|
1838 denoted by the letter `R'.
|
|
1839
|
|
1840 Hit: the ray strikes a ball directly and is absorbed. It does
|
|
1841 not emerge from the box. On the playfield, hits are
|
|
1842 denoted by the letter `H'.
|
|
1843
|
|
1844 The rules for how balls deflect rays are simple and are best shown by
|
|
1845 example.
|
|
1846
|
|
1847 As a ray approaches a ball it is deflected ninety degrees. Rays can
|
|
1848 be deflected multiple times. In the diagrams below, the dashes
|
|
1849 represent empty box locations and the letter `O' represents a ball.
|
|
1850 The entrance and exit points of each ray are marked with numbers as
|
|
1851 described under \"Detour\" above. Note that the entrance and exit
|
|
1852 points are always interchangeable. `*' denotes the path taken by the
|
|
1853 ray.
|
|
1854
|
|
1855 Note carefully the relative positions of the ball and the ninety
|
|
1856 degree deflection it causes.
|
|
1857
|
|
1858 1
|
|
1859 - * - - - - - - - - - - - - - - - - - - - - - -
|
|
1860 - * - - - - - - - - - - - - - - - - - - - - - -
|
|
1861 1 * * - - - - - - - - - - - - - - - O - - - - O -
|
|
1862 - - O - - - - - - - O - - - - - - - * * * * - -
|
|
1863 - - - - - - - - - - - * * * * * 2 3 * * * - - * - -
|
|
1864 - - - - - - - - - - - * - - - - - - - O - * - -
|
|
1865 - - - - - - - - - - - * - - - - - - - - * * - -
|
|
1866 - - - - - - - - - - - * - - - - - - - - * - O -
|
|
1867 2 3
|
|
1868
|
|
1869 As mentioned above, a reflection occurs when a ray emerges from the same point
|
|
1870 it was sent in. This can happen in several ways:
|
|
1871
|
|
1872
|
|
1873 - - - - - - - - - - - - - - - - - - - - - - - -
|
|
1874 - - - - O - - - - - O - O - - - - - - - - - - -
|
|
1875 R * * * * - - - - - - - * - - - - O - - - - - - -
|
|
1876 - - - - O - - - - - - * - - - - R - - - - - - - -
|
|
1877 - - - - - - - - - - - * - - - - - - - - - - - -
|
|
1878 - - - - - - - - - - - * - - - - - - - - - - - -
|
|
1879 - - - - - - - - R * * * * - - - - - - - - - - - -
|
|
1880 - - - - - - - - - - - - O - - - - - - - - - - -
|
|
1881
|
|
1882 In the first example, the ray is deflected downwards by the upper
|
|
1883 ball, then left by the lower ball, and finally retraces its path to
|
|
1884 its point of origin. The second example is similar. The third
|
|
1885 example is a bit anomalous but can be rationalized by realizing the
|
|
1886 ray never gets a chance to get into the box. Alternatively, the ray
|
|
1887 can be thought of as being deflected downwards and immediately
|
|
1888 emerging from the box.
|
|
1889
|
|
1890 A hit occurs when a ray runs straight into a ball:
|
|
1891
|
|
1892 - - - - - - - - - - - - - - - - - - - - - - - -
|
|
1893 - - - - - - - - - - - - - - - - - - - - O - - -
|
|
1894 - - - - - - - - - - - - O - - - H * * * * - - - -
|
|
1895 - - - - - - - - H * * * * O - - - - - - * - - - -
|
|
1896 - - - - - - - - - - - - O - - - - - - O - - - -
|
|
1897 H * * * O - - - - - - - - - - - - - - - - - - - -
|
|
1898 - - - - - - - - - - - - - - - - - - - - - - - -
|
|
1899 - - - - - - - - - - - - - - - - - - - - - - - -
|
|
1900
|
|
1901 Be sure to compare the second example of a hit with the first example of
|
|
1902 a reflection." t nil)
|
|
1903
|
|
1904 ;;;***
|
|
1905
|
|
1906 ;;;### (autoloads (conx-load conx conx-region conx-buffer) "conx" "games/conx.el")
|
|
1907
|
|
1908 (autoload 'conx-buffer "conx" "\
|
|
1909 Absorb the text in the current buffer into the tree." t nil)
|
|
1910
|
|
1911 (autoload 'conx-region "conx" "\
|
|
1912 Absorb the text in the current region into the tree." t nil)
|
|
1913
|
|
1914 (autoload 'conx "conx" "\
|
|
1915 Generate some random sentences in the *conx* buffer." t nil)
|
|
1916
|
|
1917 (autoload 'conx-load "conx" "\
|
|
1918 Load in a CONX database written by the \\[conx-save] command.
|
|
1919 This clears the database currently in memory." t nil)
|
|
1920
|
|
1921 ;;;***
|
|
1922
|
|
1923 ;;;### (autoloads (shuffle-vector cookie-snarf cookie-insert cookie) "cookie1" "games/cookie1.el")
|
|
1924
|
|
1925 (autoload 'cookie "cookie1" "\
|
|
1926 Return a random phrase from PHRASE-FILE. When the phrase file
|
|
1927 is read in, display STARTMSG at beginning of load, ENDMSG at end." nil nil)
|
|
1928
|
|
1929 (autoload 'cookie-insert "cookie1" "\
|
|
1930 Insert random phrases from PHRASE-FILE; COUNT of them. When the phrase file
|
|
1931 is read in, display STARTMSG at beginning of load, ENDMSG at end." nil nil)
|
|
1932
|
|
1933 (autoload 'cookie-snarf "cookie1" "\
|
|
1934 Reads in the PHRASE-FILE, returns it as a vector of strings.
|
|
1935 Emit STARTMSG and ENDMSG before and after. Caches the result; second
|
|
1936 and subsequent calls on the same file won't go to disk." nil nil)
|
|
1937
|
|
1938 (autoload 'shuffle-vector "cookie1" "\
|
|
1939 Randomly permute the elements of VECTOR (all permutations equally likely)" nil nil)
|
|
1940
|
|
1941 ;;;***
|
|
1942
|
80
|
1943 ;;;### (autoloads (decipher-mode decipher) "decipher" "games/decipher.el")
|
|
1944
|
|
1945 (autoload 'decipher "decipher" "\
|
|
1946 Format a buffer of ciphertext for cryptanalysis and enter Decipher mode." t nil)
|
|
1947
|
|
1948 (autoload 'decipher-mode "decipher" "\
|
|
1949 Major mode for decrypting monoalphabetic substitution ciphers.
|
|
1950 Lower-case letters enter plaintext.
|
|
1951 Upper-case letters are commands.
|
|
1952
|
|
1953 The buffer is made read-only so that normal Emacs commands cannot
|
|
1954 modify it.
|
|
1955
|
|
1956 The most useful commands are:
|
|
1957 \\<decipher-mode-map>
|
|
1958 \\[decipher-digram-list] Display a list of all digrams & their frequency
|
|
1959 \\[decipher-frequency-count] Display the frequency of each ciphertext letter
|
|
1960 \\[decipher-adjacency-list] Show adjacency list for current letter (lists letters appearing next to it)
|
|
1961 \\[decipher-make-checkpoint] Save the current cipher alphabet (checkpoint)
|
|
1962 \\[decipher-restore-checkpoint] Restore a saved cipher alphabet (checkpoint)" t nil)
|
|
1963
|
|
1964 ;;;***
|
|
1965
|
78
|
1966 ;;;### (autoloads (dissociated-press) "dissociate" "games/dissociate.el")
|
|
1967
|
|
1968 (autoload 'dissociated-press "dissociate" "\
|
|
1969 Dissociate the text of the current buffer.
|
|
1970 Output goes in buffer named *Dissociation*,
|
|
1971 which is redisplayed each time text is added to it.
|
|
1972 Every so often the user must say whether to continue.
|
|
1973 If ARG is positive, require ARG chars of continuity.
|
|
1974 If ARG is negative, require -ARG words of continuity.
|
|
1975 Default is 2." t nil)
|
|
1976
|
|
1977 ;;;***
|
|
1978
|
|
1979 ;;;### (autoloads (doctor) "doctor" "games/doctor.el")
|
|
1980
|
|
1981 (autoload 'doctor "doctor" "\
|
|
1982 Switch to *doctor* buffer and start giving psychotherapy." t nil)
|
|
1983
|
|
1984 ;;;***
|
|
1985
|
|
1986 ;;;### (autoloads (dunnet) "dunnet" "games/dunnet.el")
|
|
1987
|
|
1988 (autoload 'dunnet "dunnet" "\
|
|
1989 Switch to *dungeon* buffer and start game." t nil)
|
|
1990
|
|
1991 ;;;***
|
|
1992
|
|
1993 ;;;### (autoloads (flame) "flame" "games/flame.el")
|
|
1994
|
|
1995 (autoload 'flame "flame" "\
|
|
1996 Generate ARG (default 1) sentences of half-crazed gibberish." t nil)
|
|
1997
|
|
1998 ;;;***
|
|
1999
|
|
2000 ;;;### (autoloads (gomoku) "gomoku" "games/gomoku.el")
|
|
2001
|
|
2002 (autoload 'gomoku "gomoku" "\
|
|
2003 Start a Gomoku game between you and Emacs.
|
|
2004 If a game is in progress, this command allow you to resume it.
|
|
2005 If optional arguments N and M are given, an N by M board is used.
|
|
2006
|
|
2007 You and Emacs play in turn by marking a free square. You mark it with X
|
|
2008 and Emacs marks it with O. The winner is the first to get five contiguous
|
|
2009 marks horizontally, vertically or in diagonal.
|
|
2010 You play by moving the cursor over the square you choose and hitting
|
|
2011 \\<gomoku-mode-map>\\[gomoku-human-plays].
|
|
2012 Use \\[describe-mode] for more info." t nil)
|
|
2013
|
|
2014 ;;;***
|
|
2015
|
|
2016 ;;;### (autoloads (hanoi) "hanoi" "games/hanoi.el")
|
|
2017
|
|
2018 (autoload 'hanoi "hanoi" "\
|
|
2019 Towers of Hanoi diversion. Argument is number of rings." t nil)
|
|
2020
|
|
2021 ;;;***
|
|
2022
|
|
2023 ;;;### (autoloads (life) "life" "games/life.el")
|
|
2024
|
|
2025 (autoload 'life "life" "\
|
|
2026 Run Conway's Life simulation.
|
|
2027 The starting pattern is randomly selected. Prefix arg (optional first
|
|
2028 arg non-nil from a program) is the number of seconds to sleep between
|
|
2029 generations (this defaults to 1)." t nil)
|
|
2030
|
|
2031 ;;;***
|
|
2032
|
|
2033 ;;;### (autoloads (mpuz) "mpuz" "games/mpuz.el")
|
|
2034
|
|
2035 (autoload 'mpuz "mpuz" "\
|
|
2036 Multiplication puzzle with GNU Emacs." t nil)
|
|
2037
|
|
2038 ;;;***
|
|
2039
|
|
2040 ;;;### (autoloads (snarf-spooks spook) "spook" "games/spook.el")
|
|
2041
|
|
2042 (autoload 'spook "spook" "\
|
|
2043 Adds that special touch of class to your outgoing mail." t nil)
|
|
2044
|
|
2045 (autoload 'snarf-spooks "spook" "\
|
|
2046 Return a vector containing the lines from `spook-phrases-file'." nil nil)
|
|
2047
|
|
2048 ;;;***
|
|
2049
|
120
|
2050 ;;;### (autoloads (xmine-mode) "xmine" "games/xmine.el")
|
|
2051
|
|
2052 (autoload 'xmine-mode "xmine" "\
|
|
2053 A mode for playing the well known mine searching game.
|
|
2054
|
|
2055 `\\<annotation-local-map-default>\\[xmine-activate-function-button1]' or `\\<xmine-keymap>\\[xmine-key-action1]' unhides a tile,
|
|
2056 `\\<annotation-local-map-default>\\[xmine-activate-function-button2]' or `\\<xmine-keymap>\\[xmine-key-action2]' unhides all neighbours of a tile,
|
|
2057 `\\<annotation-local-map-default>\\[xmine-activate-function-button3]' or `\\<xmine-keymap>\\[xmine-key-action3]' (un)flagges a tile to hold a mine.
|
|
2058
|
|
2059 `\\[xmine-key-new]' starts a new game.
|
|
2060 `\\[xmine-key-quit]' ends a game.
|
|
2061
|
|
2062 All keybindings (with alternatives) currently in effect:
|
|
2063 \\{xmine-keymap}
|
|
2064
|
|
2065 The rules are quite easy: You start by unhiding (random) tiles. An unhidden
|
|
2066 tile showing a number tells you something about the number of mines in it's
|
|
2067 neighborhood, where the neighborhood are all 8 tiles (or less if it's
|
|
2068 at a border) around the tile.
|
|
2069
|
|
2070 E.g. a \"1\" shows you that there is only one mine in the neighborhood of
|
|
2071 this tile. Empty tiles have no mines around them, and empty tiles in
|
|
2072 the neighborhood of another empty tile are all automatically unhidden
|
|
2073 if you unhide one of them. You need to find a strategy to use the
|
|
2074 information you have from the numbers to \"flag\" the tiles with mines
|
|
2075 under them and unhide all other tiles. If you correctly made this
|
|
2076 without accidently unhiding a mine, you've won.
|
|
2077
|
|
2078 If you are sure you have correctly flagged all mines around a unhidden tile,
|
|
2079 you can use Button-2 or \\[xmine-key-action2] on it to unhide all it's
|
|
2080 neighbors. But beware: If you made a mistake by flagging the wrong mines,
|
|
2081 you'll blow up!
|
|
2082
|
|
2083 Have Fun." t nil)
|
|
2084
|
|
2085 (fset 'xmine 'xmine-mode)
|
|
2086
|
|
2087 ;;;***
|
|
2088
|
78
|
2089 ;;;### (autoloads (psychoanalyze-pinhead apropos-zippy insert-zippyism yow) "yow" "games/yow.el")
|
|
2090
|
|
2091 (autoload 'yow "yow" "\
|
|
2092 Return or display a random Zippy quotation. With prefix arg, insert it." t nil)
|
|
2093
|
|
2094 (autoload 'insert-zippyism "yow" "\
|
|
2095 Prompt with completion for a known Zippy quotation, and insert it at point." t nil)
|
|
2096
|
|
2097 (autoload 'apropos-zippy "yow" "\
|
|
2098 Return a list of all Zippy quotes matching REGEXP.
|
|
2099 If called interactively, display a list of matches." t nil)
|
|
2100
|
|
2101 (autoload 'psychoanalyze-pinhead "yow" "\
|
|
2102 Zippy goes to the analyst." t nil)
|
|
2103
|
|
2104 ;;;***
|
|
2105
|
110
|
2106 ;;;### (autoloads (gnats:summ-pr gnats:query-pr gnats:edit-pr gnats:view-pr gnats:gnats-mode) "gnats" "gnats/gnats.el")
|
|
2107
|
|
2108 (defvar gnats::mode-name nil "\
|
|
2109 Name of the GNATS mode.")
|
|
2110
|
|
2111 (setq gnats::mode-name 'gnats:gnats-mode)
|
|
2112
|
|
2113 (fset 'gnats-mode gnats::mode-name)
|
|
2114
|
|
2115 (autoload 'gnats:gnats-mode "gnats" "\
|
|
2116 Major mode for editing problem reports.
|
|
2117 For information about the form see gnats(1) and pr_form(5).
|
|
2118
|
|
2119 When you are finished editing the buffer, type \\[gnats:submit-pr] to commit
|
|
2120 your changes to the PR database. To abort the edit, type
|
|
2121 \\[gnats:unlock-buffer].
|
|
2122
|
|
2123 Special commands:
|
|
2124 \\{gnats-mode-map}
|
|
2125 Turning on gnats-mode calls the value of the variable gnats-mode-hook,
|
|
2126 if it is not nil." nil nil)
|
|
2127
|
|
2128 (fset 'view-pr 'gnats:view-pr)
|
|
2129
|
|
2130 (autoload 'gnats:view-pr "gnats" "\
|
|
2131 Visit the problem report named by the string ID. While viewing, press
|
|
2132 'e' to edit the currently viewed PR." t nil)
|
|
2133
|
|
2134 (fset 'edit-pr 'gnats:edit-pr)
|
|
2135
|
|
2136 (autoload 'gnats:edit-pr "gnats" "\
|
|
2137 Edit the problem report named by the string ID." t nil)
|
|
2138
|
|
2139 (fset 'query-pr 'gnats:query-pr)
|
|
2140
|
|
2141 (autoload 'gnats:query-pr "gnats" "\
|
|
2142 Run query-pr, with user-specified args, and collect output in a buffer.
|
|
2143 While query-pr runs asynchronously, you can use the \\[next-error] command
|
|
2144 to find the text that the hits refer to." t nil)
|
|
2145
|
|
2146 (fset 'summ-pr 'gnats:summ-pr)
|
|
2147
|
|
2148 (autoload 'gnats:summ-pr "gnats" "\
|
|
2149 Run query-pr, with user-specified args, and display a pretty summary.
|
|
2150 Well, display a summary, at least." t nil)
|
|
2151
|
|
2152 ;;;***
|
|
2153
|
|
2154 ;;;### (autoloads (send-pr:send-pr-mode send-pr:send-pr) "send-pr" "gnats/send-pr.el")
|
|
2155
|
|
2156 (fset 'send-pr 'send-pr:send-pr)
|
|
2157
|
|
2158 (autoload 'send-pr:send-pr "send-pr" "\
|
|
2159 Create a buffer and read in the result of `send-pr -P'.
|
|
2160 When finished with editing the problem report use \\[send-pr:submit-pr]
|
|
2161 to send the PR with `send-pr -b -f -'." t nil)
|
|
2162
|
|
2163 (fset 'send-pr-mode 'send-pr:send-pr-mode)
|
|
2164
|
|
2165 (autoload 'send-pr:send-pr-mode "send-pr" "\
|
|
2166 Major mode for submitting problem reports.
|
|
2167 For information about the form see gnats(1) and send-pr(1).
|
|
2168 Special commands: \\{send-pr-mode-map}
|
|
2169 Turning on send-pr-mode calls the value of the variable send-pr-mode-hook,
|
|
2170 if it is not nil." t nil)
|
|
2171
|
|
2172 ;;;***
|
|
2173
|
78
|
2174 ;;;### (autoloads (gnus-earcon-display) "earcon" "gnus/earcon.el")
|
|
2175
|
|
2176 (autoload 'gnus-earcon-display "earcon" "\
|
|
2177 Play sounds in message buffers." t nil)
|
|
2178
|
|
2179 ;;;***
|
|
2180
|
98
|
2181 ;;;### (autoloads (gnus-audio-play) "gnus-audio" "gnus/gnus-audio.el")
|
|
2182
|
|
2183 (autoload 'gnus-audio-play "gnus-audio" "\
|
|
2184 Play a sound through the speaker." t nil)
|
|
2185
|
|
2186 ;;;***
|
|
2187
|
78
|
2188 ;;;### (autoloads (gnus-cache-generate-nov-databases gnus-cache-generate-active gnus-jog-cache) "gnus-cache" "gnus/gnus-cache.el")
|
|
2189
|
|
2190 (autoload 'gnus-jog-cache "gnus-cache" "\
|
98
|
2191 Go through all groups and put the articles into the cache.
|
|
2192
|
|
2193 Usage:
|
|
2194 $ emacs -batch -l ~/.emacs -l gnus -f gnus-jog-cache" t nil)
|
78
|
2195
|
|
2196 (autoload 'gnus-cache-generate-active "gnus-cache" "\
|
|
2197 Generate the cache active file." t nil)
|
|
2198
|
|
2199 (autoload 'gnus-cache-generate-nov-databases "gnus-cache" "\
|
|
2200 Generate NOV files recursively starting in DIR." t nil)
|
|
2201
|
|
2202 ;;;***
|
|
2203
|
98
|
2204 ;;;### (autoloads (gnus-fetch-group) "gnus-group" "gnus/gnus-group.el")
|
|
2205
|
|
2206 (autoload 'gnus-fetch-group "gnus-group" "\
|
|
2207 Start Gnus if necessary and enter GROUP.
|
|
2208 Returns whether the fetching was successful or not." t nil)
|
|
2209
|
|
2210 ;;;***
|
|
2211
|
|
2212 ;;;### (autoloads (gnus-batch-score) "gnus-kill" "gnus/gnus-kill.el")
|
|
2213
|
|
2214 (defalias 'gnus-batch-kill 'gnus-batch-score)
|
|
2215
|
|
2216 (autoload 'gnus-batch-score "gnus-kill" "\
|
|
2217 Run batched scoring.
|
|
2218 Usage: emacs -batch -l gnus -f gnus-batch-score <newsgroups> ...
|
|
2219 Newsgroups is a list of strings in Bnews format. If you want to score
|
|
2220 the comp hierarchy, you'd say \"comp.all\". If you would not like to
|
|
2221 score the alt hierarchy, you'd say \"!alt.all\"." t nil)
|
|
2222
|
|
2223 ;;;***
|
|
2224
|
|
2225 ;;;### (autoloads (gnus-change-server) "gnus-move" "gnus/gnus-move.el")
|
|
2226
|
|
2227 (autoload 'gnus-change-server "gnus-move" "\
|
|
2228 Move from FROM-SERVER to TO-SERVER.
|
|
2229 Update the .newsrc.eld file to reflect the change of nntp server." t nil)
|
78
|
2230
|
|
2231 ;;;***
|
|
2232
|
|
2233 ;;;### (autoloads (gnus-batch-brew-soup) "gnus-soup" "gnus/gnus-soup.el")
|
|
2234
|
|
2235 (autoload 'gnus-batch-brew-soup "gnus-soup" "\
|
|
2236 Brew a SOUP packet from groups mention on the command line.
|
|
2237 Will use the remaining command line arguments as regular expressions
|
|
2238 for matching on group names.
|
|
2239
|
|
2240 For instance, if you want to brew on all the nnml groups, as well as
|
|
2241 groups with \"emacs\" in the name, you could say something like:
|
|
2242
|
|
2243 $ emacs -batch -f gnus-batch-brew-soup ^nnml \".*emacs.*\"" t nil)
|
|
2244
|
|
2245 ;;;***
|
|
2246
|
98
|
2247 ;;;### (autoloads (gnus-update-format) "gnus-spec" "gnus/gnus-spec.el")
|
|
2248
|
|
2249 (autoload 'gnus-update-format "gnus-spec" "\
|
78
|
2250 Update the format specification near point." t nil)
|
|
2251
|
98
|
2252 ;;;***
|
|
2253
|
|
2254 ;;;### (autoloads (gnus-declare-backend gnus-unload) "gnus-start" "gnus/gnus-start.el")
|
|
2255
|
|
2256 (autoload 'gnus-unload "gnus-start" "\
|
|
2257 Unload all Gnus features." t nil)
|
|
2258
|
|
2259 (autoload 'gnus-declare-backend "gnus-start" "\
|
|
2260 Declare backend NAME with ABILITIES as a Gnus backend." nil nil)
|
|
2261
|
|
2262 ;;;***
|
|
2263
|
|
2264 ;;;### (autoloads (gnus-add-configuration) "gnus-win" "gnus/gnus-win.el")
|
|
2265
|
|
2266 (autoload 'gnus-add-configuration "gnus-win" "\
|
78
|
2267 Add the window configuration CONF to `gnus-buffer-configuration'." nil nil)
|
|
2268
|
98
|
2269 ;;;***
|
|
2270
|
|
2271 ;;;### (autoloads (gnus gnus-other-frame gnus-slave gnus-no-server gnus-slave-no-server) "gnus" "gnus/gnus.el")
|
|
2272
|
78
|
2273 (autoload 'gnus-slave-no-server "gnus" "\
|
|
2274 Read network news as a slave, without connecting to local server" t nil)
|
|
2275
|
|
2276 (autoload 'gnus-no-server "gnus" "\
|
|
2277 Read network news.
|
|
2278 If ARG is a positive number, Gnus will use that as the
|
|
2279 startup level. If ARG is nil, Gnus will be started at level 2.
|
|
2280 If ARG is non-nil and not a positive number, Gnus will
|
|
2281 prompt the user for the name of an NNTP server to use.
|
|
2282 As opposed to `gnus', this command will not connect to the local server." t nil)
|
|
2283
|
|
2284 (autoload 'gnus-slave "gnus" "\
|
|
2285 Read news as a slave." t nil)
|
|
2286
|
|
2287 (autoload 'gnus-other-frame "gnus" "\
|
|
2288 Pop up a frame to read news." t nil)
|
|
2289
|
|
2290 (autoload 'gnus "gnus" "\
|
|
2291 Read network news.
|
|
2292 If ARG is non-nil and a positive number, Gnus will use that as the
|
|
2293 startup level. If ARG is non-nil and not a positive number, Gnus will
|
|
2294 prompt the user for the name of an NNTP server to use." t nil)
|
|
2295
|
|
2296 ;;;***
|
|
2297
|
|
2298 ;;;### (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")
|
|
2299
|
98
|
2300 (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)
|
|
2301
|
|
2302 (defcustom message-signature-separator "^-- *$" "Regexp matching the signature separator." :type 'regexp :group 'message-various)
|
|
2303
|
|
2304 (defcustom message-user-organization-file "/usr/lib/news/organization" "*Local news organization file." :type 'file :group 'message-headers)
|
|
2305
|
|
2306 (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)
|
|
2307
|
|
2308 (defcustom message-citation-line-function 'message-insert-citation-line "*Function called to insert the \"Whomever writes:\" line." :type 'function :group 'message-insertion)
|
|
2309
|
|
2310 (defcustom message-yank-prefix "> " "*Prefix inserted on the lines of yanked messages.\nnil means use indentation." :type 'string :group 'message-insertion)
|
|
2311
|
|
2312 (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)
|
|
2313
|
|
2314 (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)
|
|
2315
|
|
2316 (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)
|
|
2317
|
|
2318 (defcustom message-signature-file "~/.signature" "*File containing the text inserted at end of message buffer." :type 'file :group 'message-insertion)
|
78
|
2319
|
|
2320 (autoload 'message-mode "message" "\
|
|
2321 Major mode for editing mail and news to be sent.
|
|
2322 Like Text Mode but with these additional commands:
|
|
2323 C-c C-s message-send (send the message) C-c C-c message-send-and-exit
|
|
2324 C-c C-f move to a header field (and create it if there isn't):
|
|
2325 C-c C-f C-t move to To C-c C-f C-s move to Subject
|
|
2326 C-c C-f C-c move to Cc C-c C-f C-b move to Bcc
|
98
|
2327 C-c C-f C-w move to Fcc C-c C-f C-r move to Reply-To
|
78
|
2328 C-c C-f C-u move to Summary C-c C-f C-n move to Newsgroups
|
|
2329 C-c C-f C-k move to Keywords C-c C-f C-d move to Distribution
|
98
|
2330 C-c C-f C-f move to Followup-To
|
78
|
2331 C-c C-t message-insert-to (add a To header to a news followup)
|
|
2332 C-c C-n message-insert-newsgroups (add a Newsgroup header to a news reply)
|
|
2333 C-c C-b message-goto-body (move to beginning of message text).
|
|
2334 C-c C-i message-goto-signature (move to the beginning of the signature).
|
|
2335 C-c C-w message-insert-signature (insert `message-signature-file' file).
|
|
2336 C-c C-y message-yank-original (insert current message, if any).
|
|
2337 C-c C-q message-fill-yanked-message (fill what was yanked).
|
98
|
2338 C-c C-e message-elide-region (elide the text between point and mark).
|
|
2339 C-c C-r message-caesar-buffer-body (rot13 the message body)." t nil)
|
78
|
2340
|
|
2341 (autoload 'message-mail "message" "\
|
|
2342 Start editing a mail message to be sent." t nil)
|
|
2343
|
|
2344 (autoload 'message-news "message" "\
|
|
2345 Start editing a news article to be sent." t nil)
|
|
2346
|
|
2347 (autoload 'message-reply "message" "\
|
|
2348 Start editing a reply to the article in the current buffer." t nil)
|
|
2349
|
98
|
2350 (autoload 'message-wide-reply "message" "\
|
|
2351 Make a \"wide\" reply to the message in the current buffer." t nil)
|
|
2352
|
|
2353 (autoload 'message-followup "message" "\
|
|
2354 Follow up to the message in the current buffer.
|
|
2355 If TO-NEWSGROUPS, use that as the new Newsgroups line." t nil)
|
78
|
2356
|
|
2357 (autoload 'message-cancel-news "message" "\
|
|
2358 Cancel an article you posted." t nil)
|
|
2359
|
|
2360 (autoload 'message-supersede "message" "\
|
|
2361 Start composing a message to supersede the current message.
|
|
2362 This is done simply by taking the old article and adding a Supersedes
|
|
2363 header line with the old Message-ID." t nil)
|
|
2364
|
|
2365 (autoload 'message-recover "message" "\
|
|
2366 Reread contents of current buffer from its last auto-save file." t nil)
|
|
2367
|
|
2368 (autoload 'message-forward "message" "\
|
108
|
2369 Forward the current message via mail.
|
78
|
2370 Optional NEWS will use news to forward instead of mail." t nil)
|
|
2371
|
|
2372 (autoload 'message-resend "message" "\
|
|
2373 Resend the current article to ADDRESS." t nil)
|
|
2374
|
|
2375 (autoload 'message-bounce "message" "\
|
|
2376 Re-mail the current message.
|
|
2377 This only makes sense if the current message is a bounce message than
|
|
2378 contains some mail you have written which has been bounced back to
|
|
2379 you." t nil)
|
|
2380
|
|
2381 (autoload 'message-mail-other-window "message" "\
|
|
2382 Like `message-mail' command, but display mail buffer in another window." t nil)
|
|
2383
|
|
2384 (autoload 'message-mail-other-frame "message" "\
|
|
2385 Like `message-mail' command, but display mail buffer in another frame." t nil)
|
|
2386
|
|
2387 (autoload 'message-news-other-window "message" "\
|
|
2388 Start editing a news article to be sent." t nil)
|
|
2389
|
|
2390 (autoload 'message-news-other-frame "message" "\
|
|
2391 Start editing a news article to be sent." t nil)
|
|
2392
|
|
2393 (autoload 'bold-region "message" "\
|
|
2394 Bold all nonblank characters in the region.
|
|
2395 Works by overstriking characters.
|
|
2396 Called from program, takes two arguments START and END
|
|
2397 which specify the range to operate on." t nil)
|
|
2398
|
|
2399 (autoload 'unbold-region "message" "\
|
|
2400 Remove all boldness (overstruck characters) in the region.
|
|
2401 Called from program, takes two arguments START and END
|
|
2402 which specify the range to operate on." t nil)
|
|
2403
|
|
2404 ;;;***
|
|
2405
|
98
|
2406 ;;;### (autoloads nil "messcompat" "gnus/messcompat.el")
|
|
2407
|
|
2408 (defvar message-signature-file mail-signature-file "\
|
|
2409 *File containing the text inserted at end of message. buffer.")
|
|
2410
|
|
2411 ;;;***
|
|
2412
|
|
2413 ;;;### (autoloads (nndoc-add-type) "nndoc" "gnus/nndoc.el")
|
|
2414
|
|
2415 (autoload 'nndoc-add-type "nndoc" "\
|
|
2416 Add document DEFINITION to the list of nndoc document definitions.
|
|
2417 If POSITION is nil or `last', the definition will be added
|
|
2418 as the last checked definition, if t or `first', add as the
|
|
2419 first definition, and if any other symbol, add after that
|
|
2420 symbol in the alist." nil nil)
|
|
2421
|
|
2422 ;;;***
|
|
2423
|
78
|
2424 ;;;### (autoloads (nnfolder-generate-active-file) "nnfolder" "gnus/nnfolder.el")
|
|
2425
|
|
2426 (autoload 'nnfolder-generate-active-file "nnfolder" "\
|
|
2427 Look for mbox folders in the nnfolder directory and make them into groups." t nil)
|
|
2428
|
|
2429 ;;;***
|
|
2430
|
|
2431 ;;;### (autoloads (nnkiboze-generate-groups) "nnkiboze" "gnus/nnkiboze.el")
|
|
2432
|
|
2433 (autoload 'nnkiboze-generate-groups "nnkiboze" "\
|
|
2434 Usage: emacs -batch -l nnkiboze -f nnkiboze-generate-groups
|
|
2435 Finds out what articles are to be part of the nnkiboze groups." t nil)
|
|
2436
|
|
2437 ;;;***
|
|
2438
|
|
2439 ;;;### (autoloads (nnml-generate-nov-databases) "nnml" "gnus/nnml.el")
|
|
2440
|
|
2441 (autoload 'nnml-generate-nov-databases "nnml" "\
|
112
|
2442 Generate NOV databases in all nnml directories." t nil)
|
78
|
2443
|
|
2444 ;;;***
|
|
2445
|
|
2446 ;;;### (autoloads (nnsoup-revert-variables nnsoup-set-variables nnsoup-pack-replies) "nnsoup" "gnus/nnsoup.el")
|
|
2447
|
|
2448 (autoload 'nnsoup-pack-replies "nnsoup" "\
|
|
2449 Make an outbound package of SOUP replies." t nil)
|
|
2450
|
|
2451 (autoload 'nnsoup-set-variables "nnsoup" "\
|
|
2452 Use the SOUP methods for posting news and mailing mail." t nil)
|
|
2453
|
|
2454 (autoload 'nnsoup-revert-variables "nnsoup" "\
|
|
2455 Revert posting and mailing methods to the standard Emacs methods." t nil)
|
|
2456
|
|
2457 ;;;***
|
|
2458
|
|
2459 ;;;### (autoloads (gnus-score-mode) "score-mode" "gnus/score-mode.el")
|
|
2460
|
|
2461 (autoload 'gnus-score-mode "score-mode" "\
|
|
2462 Mode for editing Gnus score files.
|
|
2463 This mode is an extended emacs-lisp mode.
|
|
2464
|
|
2465 \\{gnus-score-mode-map}" t nil)
|
|
2466
|
|
2467 ;;;***
|
|
2468
|
|
2469 ;;;### (autoloads (gnus-smiley-display smiley-buffer smiley-region) "smiley" "gnus/smiley.el")
|
|
2470
|
|
2471 (autoload 'smiley-region "smiley" "\
|
|
2472 Smilify the region between point and mark." t nil)
|
|
2473
|
|
2474 (autoload 'smiley-buffer "smiley" nil t nil)
|
|
2475
|
|
2476 (autoload 'gnus-smiley-display "smiley" nil t nil)
|
|
2477
|
|
2478 ;;;***
|
|
2479
|
|
2480 ;;;### (autoloads (hm--html-minor-mode hm--html-mode) "hm--html-mode" "hm--html-menus/hm--html-mode.el")
|
|
2481
|
|
2482 (autoload 'hm--html-mode "hm--html-mode" "\
|
|
2483 Major mode for editing HTML hypertext documents.
|
|
2484 Special commands:\\{hm--html-mode-map}
|
|
2485 Turning on hm--html-mode calls the value of the variable hm--html-mode-hook,
|
|
2486 if that value is non-nil." t nil)
|
|
2487
|
|
2488 (autoload 'hm--html-minor-mode "hm--html-mode" "\
|
|
2489 Toggle hm--html-minor-mode.
|
|
2490 With arg, turn hm--html-minor-mode on iff arg is positive." t nil)
|
|
2491
|
|
2492 ;;;***
|
|
2493
|
|
2494 ;;;### (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")
|
|
2495
|
|
2496 (autoload 'html-view-start-mosaic "html-view" "\
|
|
2497 Start Mosaic." t nil)
|
|
2498
|
|
2499 (autoload 'html-view-view-file "html-view" "\
|
|
2500 View an html file with Mosaic." t nil)
|
|
2501
|
|
2502 (autoload 'html-view-view-buffer "html-view" "\
|
|
2503 View html buffer with Mosaic.
|
|
2504 If BUFFER-TO-VIEW is nil, then the current buffer is used." t nil)
|
|
2505
|
|
2506 (autoload 'html-view-goto-url "html-view" "\
|
|
2507 Goto an URL in Mosaic." t nil)
|
|
2508
|
|
2509 (autoload 'html-view-get-display "html-view" "\
|
|
2510 Get the display for Mosaic." t nil)
|
|
2511
|
|
2512 ;;;***
|
|
2513
|
98
|
2514 ;;;### (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")
|
|
2515
|
|
2516 (autoload 'tmpl-expand-templates-in-region "tmpl-minor-mode" "\
|
116
|
2517 Expands the templates in the region from BEGIN to END.
|
|
2518 If BEGIN and END are nil, then the current region is used." t nil)
|
98
|
2519
|
|
2520 (autoload 'tmpl-expand-templates-in-buffer "tmpl-minor-mode" "\
|
116
|
2521 Expands all templates in the current buffer." t nil)
|
98
|
2522
|
|
2523 (autoload 'tmpl-insert-template-file-from-fixed-dirs "tmpl-minor-mode" "\
|
|
2524 Inserts a template FILE and expands it, if `tmpl-automatic-expand' is t.
|
|
2525 This command tries to read the template file from a list of
|
116
|
2526 predefined directories (look at `tmpl-template-dir-list') and it filters
|
|
2527 the contents of these directories with the regular expression
|
98
|
2528 `tmpl-filter-regexp' (look also at this variable).
|
|
2529 The command uses a history variable, which could be changed with the
|
|
2530 variable `tmpl-history-variable-name'.
|
|
2531
|
116
|
2532 The user of the command is able to change interactively to another
|
98
|
2533 directory by entering at first the string \"Change the directory\".
|
116
|
2534 This may be too difficult for the user. Therefore another command
|
98
|
2535 called `tmpl-insert-template-file' exist, which doesn't use fixed
|
|
2536 directories and filters." t nil)
|
|
2537
|
|
2538 (autoload 'tmpl-insert-template-file "tmpl-minor-mode" "\
|
116
|
2539 Inserts a template FILE and expand it, if `tmpl-automatic-expand' is t.
|
98
|
2540 Look also at `tmpl-template-dir-list', to specify a default template directory.
|
|
2541 You should also take a look at `tmpl-insert-template-file-from-fixed-dirs'
|
|
2542 which has additional advantages (and disadvantages :-).
|
|
2543
|
|
2544 ATTENTION: The interface of this function has changed. The old
|
|
2545 function had the argument list (&optional TEMPLATE-DIR AUTOMATIC-EXPAND).
|
|
2546 The variables `tmpl-template-dir-list' and `tmpl-automatic-expand' must
|
|
2547 now be used instead of the args TEMPLATE-DIR and AUTOMATIC-EXPAND." t nil)
|
|
2548
|
|
2549 ;;;***
|
|
2550
|
78
|
2551 ;;;### (autoloads (hmail:compose) "hmail" "hyperbole/hmail.el")
|
|
2552
|
|
2553 (autoload 'hmail:compose "hmail" "\
|
|
2554 Compose mail with ADDRESS and evaluation of EXPR.
|
|
2555 Optional SUBJECT and HELP message may also be given." t nil)
|
|
2556
|
|
2557 ;;;***
|
|
2558
|
|
2559 ;;;### (autoloads (Info-handle-in-note smart-info-assist smart-info) "hmous-info" "hyperbole/hmous-info.el")
|
|
2560
|
|
2561 (autoload 'smart-info "hmous-info" "\
|
|
2562 Walks through Info documentation networks using one key or mouse key.
|
|
2563
|
|
2564 If key is pressed within:
|
|
2565 (1) the first line of an Info Menu Entry or Cross Reference, the desired node
|
|
2566 is found;
|
|
2567 (2) the Up, Next, or Previous entries of a Node Header (first line),
|
|
2568 the desired node is found;
|
|
2569 (3) the File entry of a Node Header (first line),
|
|
2570 the 'Top' node within that file is found;
|
|
2571 (4) at the end of the current node, the Next node is found (this will
|
|
2572 descend subtrees if the function 'Info-global-next' is bound);
|
|
2573 (5) anywhere else (e.g. at the end of a line), the current node entry is
|
|
2574 scrolled up one windowful.
|
|
2575
|
|
2576 Returns t if key is pressed within an Info Node Header, Cross Reference,
|
|
2577 or a Menu; otherwise returns nil." t nil)
|
|
2578
|
|
2579 (autoload 'smart-info-assist "hmous-info" "\
|
|
2580 Walks through Info documentation networks using one assist-key or mouse assist-key.
|
|
2581
|
|
2582 If assist-key is pressed within:
|
|
2583 (1) the first line of an Info Menu Entry or Cross Reference, the desired node
|
|
2584 is found;
|
|
2585 (2) the Up, Next, or Previous entries of a Node Header (first line),
|
|
2586 the last node in the history list is found;
|
|
2587 (3) the File entry of a Node Header (first line),
|
|
2588 the 'DIR' root-level node is found;
|
|
2589 (4) at the end of the current node, the Previous node is found (this will
|
|
2590 return from subtrees if the function 'Info-global-prev is bound);
|
|
2591 (5) anywhere else (e.g. at the end of a line), the current node entry is
|
|
2592 scrolled down one windowful.
|
|
2593
|
|
2594 Returns t if assist-key is pressed within an Info Node Header, Cross Reference,
|
|
2595 or a Menu; otherwise returns nil." t nil)
|
|
2596
|
|
2597 (autoload 'Info-handle-in-note "hmous-info" "\
|
|
2598 Follows an Info cross-reference.
|
|
2599 If point is within the first line of an Info note (cross-reference), follows
|
|
2600 cross-reference and returns t; otherwise returns nil." nil nil)
|
|
2601
|
|
2602 ;;;***
|
|
2603
|
100
|
2604 ;;;### (autoloads (hkey-help-show) "hmouse-drv" "hyperbole/hmouse-drv.el")
|
|
2605
|
|
2606 (autoload 'hkey-help-show "hmouse-drv" "\
|
|
2607 Saves prior frame configuration if BUFFER displays help. Displays BUFFER.
|
|
2608
|
|
2609 Optional second arg CURRENT-WINDOW non-nil forces display of buffer within
|
|
2610 the current window. By default, it is displayed in another window." nil nil)
|
|
2611
|
|
2612 ;;;***
|
|
2613
|
|
2614 ;;;### (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")
|
78
|
2615
|
|
2616 (autoload 'smart-asm-at-tag-p "hmouse-tag" "\
|
|
2617 Return assembly tag name that point is within, else nil." nil nil)
|
|
2618
|
|
2619 (autoload 'smart-c-at-tag-p "hmouse-tag" "\
|
|
2620 Return C tag name that point is within, else nil." nil nil)
|
|
2621
|
|
2622 (autoload 'smart-c++ "hmouse-tag" "\
|
|
2623 Jumps to the definition of optional C++ IDENTIFIER or the one at point.
|
|
2624 Optional second arg NEXT means jump to next matching C++ tag.
|
|
2625
|
|
2626 It assumes that its caller has already checked that the key was pressed in an
|
|
2627 appropriate buffer and has moved the cursor to the selected buffer.
|
|
2628
|
|
2629 If:
|
100
|
2630 (1) on a `#include' statement, the include file is displayed;
|
|
2631 Look for include file in directory lists `smart-c-cpp-include-dirs'
|
|
2632 and `smart-c-include-dirs'.
|
78
|
2633 (2) on a C++ identifier, the identifier definition is displayed,
|
100
|
2634 assuming the identifier is found within an `etags' generated tag file
|
78
|
2635 in the current directory or any of its ancestor directories.
|
100
|
2636 (3) if `smart-c-use-lib-man' is non-nil, the C++ identifier is
|
78
|
2637 recognized as a library symbol, and a man page is found for the
|
|
2638 identifier, then the man page is displayed." t nil)
|
|
2639
|
100
|
2640 (autoload 'smart-fortran-at-tag-p "hmouse-tag" "\
|
|
2641 Return Fortran tag name that point is within, else nil." nil nil)
|
|
2642
|
|
2643 (autoload 'smart-java "hmouse-tag" "\
|
|
2644 Jumps to the definition of optional Java IDENTIFIER or the one at point.
|
|
2645 Optional second arg NEXT means jump to next matching Java tag.
|
78
|
2646
|
|
2647 It assumes that its caller has already checked that the key was pressed in an
|
|
2648 appropriate buffer and has moved the cursor to the selected buffer.
|
|
2649
|
100
|
2650 If:
|
|
2651 (1) within a commented @see cross-reference, the referent is displayed;
|
|
2652 (2) on a `package' or `import' statement, the referent is displayed;
|
|
2653 Look for referent files in the directory list `smart-java-package-dirs'.
|
|
2654 (3) on an Java identifier, the identifier definition is displayed,
|
|
2655 assuming the identifier is found within an `etags' generated tag file
|
|
2656 in the current directory or any of its ancestor directories." t nil)
|
|
2657
|
|
2658 (autoload 'smart-java-at-tag-p "hmouse-tag" "\
|
|
2659 Return Java tag name that point is within, else nil." nil nil)
|
|
2660
|
|
2661 (autoload 'smart-lisp-mode-p "hmouse-tag" "\
|
|
2662 Return t if in a mode which uses Lisp symbols." nil nil)
|
78
|
2663
|
|
2664 (autoload 'smart-objc "hmouse-tag" "\
|
|
2665 Jumps to the definition of optional Objective-C IDENTIFIER or the one at point.
|
|
2666 Optional second arg NEXT means jump to next matching Objective-C tag.
|
|
2667
|
|
2668 It assumes that its caller has already checked that the key was pressed in an
|
|
2669 appropriate buffer and has moved the cursor to the selected buffer.
|
|
2670
|
|
2671 If:
|
100
|
2672 (1) on a `#include' statement, the include file is displayed;
|
|
2673 Look for include file in directory lists `smart-c-cpp-include-dirs'
|
|
2674 and `smart-c-include-dirs'.
|
78
|
2675 (2) on an Objective-C identifier, the identifier definition is displayed,
|
100
|
2676 assuming the identifier is found within an `etags' generated tag file
|
78
|
2677 in the current directory or any of its ancestor directories.
|
100
|
2678 (3) if `smart-c-use-lib-man' is non-nil, the Objective-C identifier is
|
78
|
2679 recognized as a library symbol, and a man page is found for the
|
|
2680 identifier, then the man page is displayed." t nil)
|
|
2681
|
|
2682 (autoload 'smart-tags-file-path "hmouse-tag" "\
|
|
2683 Expand relative FILE name by looking it up in the nearest tags file.
|
|
2684 Return FILE unchanged if it exists relative to the current directory or
|
|
2685 cannot be expanded via a tags file." nil nil)
|
|
2686
|
|
2687 (autoload 'smart-tags-file "hmouse-tag" "\
|
100
|
2688 Return appropriate tags file name for CURR-FILENAME or `tags-file-name'.
|
|
2689 Optional NAME-OF-TAGS-FILE is the literal filename for which to look." nil nil)
|
78
|
2690
|
|
2691 ;;;***
|
|
2692
|
108
|
2693 ;;;### (autoloads (hyperbole) "hui-mini" "hyperbole/hui-mini.el")
|
|
2694
|
|
2695 (autoload 'hyperbole "hui-mini" "\
|
|
2696 Invokes default Hyperbole menu user interface when not already active.
|
|
2697 Suitable for binding to a key, e.g. {C-h h}.
|
|
2698 Non-interactively, returns t if menu is actually invoked by call, else nil.
|
|
2699
|
|
2700 Two optional arguments may be given to invoke alternative menus.
|
|
2701 MENU (a symbol) specifies the menu to invoke from MENU-LIST, (a
|
|
2702 Hyperbole menu list structure). MENU defaults to 'hyperbole and MENU-LIST
|
|
2703 to `hui:menus'. See `hui:menus' definition for the format of the menu list
|
|
2704 structure." t nil)
|
|
2705
|
|
2706 ;;;***
|
|
2707
|
78
|
2708 ;;;### (autoloads (var:append) "hvar" "hyperbole/hvar.el")
|
|
2709
|
|
2710 (autoload 'var:append "hvar" "\
|
|
2711 Appends to value held by VAR-SYMBOL-NAME, LIST-TO-ADD. Returns new value.
|
|
2712 If VAR-SYMBOL-NAME is unbound, it is set to LIST-TO-ADD.
|
|
2713 Often used to append to 'hook' variables." nil nil)
|
|
2714
|
|
2715 ;;;***
|
|
2716
|
100
|
2717 ;;;### (autoloads (hypb:display-file-with-logo hypb:configuration) "hypb" "hyperbole/hypb.el")
|
78
|
2718
|
|
2719 (autoload 'hypb:configuration "hypb" "\
|
|
2720 Insert Emacs configuration information at the end of optional OUT-BUF or the current buffer." nil nil)
|
|
2721
|
100
|
2722 (autoload 'hypb:display-file-with-logo "hypb" "\
|
|
2723 Display an optional text FILE with the InfoDock Associates logo prepended.
|
|
2724 Without file, logo is prepended to the current buffer." nil nil)
|
|
2725
|
78
|
2726 ;;;***
|
|
2727
|
|
2728 ;;;### (autoloads nil "hyperbole" "hyperbole/hyperbole.el")
|
|
2729
|
|
2730 (defvar action-key-url-function 'w3-fetch "\
|
|
2731 Value is a function of one argument, a url, which displays the url referent.
|
|
2732 Possible values are:
|
|
2733 w3-fetch - display using the W3 Emacs web browser;
|
|
2734 highlight-headers-follow-url-netscape - display in Netscape;
|
|
2735 highlight-headers-follow-url-mosaic - display in Mosaic.")
|
|
2736
|
|
2737 (defvar kimport:mode-alist '((t . kimport:text) (outline-mode . kimport:star-outline)) "\
|
|
2738 Alist of (major-mode . importation-function) elements.
|
|
2739 This determines the type of importation done on a file when `kimport:file' is
|
|
2740 called if the major mode of the import file matches the car of an element in
|
|
2741 this list. If there is no match, then `kimport:suffix-alist' is checked. If
|
|
2742 that yields no match, the element in this list whose car is 't is used. It
|
|
2743 normally does an import of a koutline or text file.
|
|
2744
|
|
2745 Each importation-function must take two arguments, a buffer/file to import
|
|
2746 and a buffer/file into which to insert the imported elements and a third
|
|
2747 optional argument, CHILDREN-P, which when non-nil means insert imported cells
|
|
2748 as the initial set of children of the current cell, if any.
|
|
2749
|
|
2750 outline-mode - imported as an Emacs outline whose entries begin with
|
|
2751 asterisks;
|
|
2752 .kot
|
|
2753 .kotl - imported as a structured koutline
|
|
2754
|
|
2755 all others - imported as text.")
|
|
2756
|
|
2757 (defvar kimport:suffix-alist '(("\\.otl$" . kimport:star-outline) ("\\.aug$" . kimport:aug-post-outline)) "\
|
|
2758 Alist of (buffer-name-suffix-regexp . importation-function) elements.
|
|
2759 This determines the type of importation done on a file when `kimport:file' is
|
|
2760 called. Each importation-function must take two arguments, a buffer/file to
|
|
2761 import and a buffer/file into which to insert the imported elements and a
|
|
2762 third optional argument, CHILDREN-P, which when non-nil means insert imported
|
|
2763 cells as the initial set of children of the current cell, if any.
|
|
2764
|
|
2765 .otl - imported as an Emacs outline whose entries begin with asterisks;
|
|
2766 .kot
|
|
2767 .kotl - imported as a structured koutline
|
|
2768 .aug - imported as an Augment post-numbered outline.")
|
|
2769
|
|
2770 ;;;***
|
|
2771
|
|
2772 ;;;### (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")
|
|
2773
|
|
2774 (autoload 'wconfig-add-by-name "wconfig" "\
|
|
2775 Saves the current window configuration under the string NAME.
|
|
2776 When called interactively and a window configuration already exists under
|
|
2777 NAME, confirms whether or not to replace it." t nil)
|
|
2778
|
|
2779 (autoload 'wconfig-delete-by-name "wconfig" "\
|
|
2780 Deletes window configuration saved under NAME." t nil)
|
|
2781
|
|
2782 (autoload 'wconfig-restore-by-name "wconfig" "\
|
|
2783 Restores window configuration saved under NAME." t nil)
|
|
2784
|
|
2785 (autoload 'wconfig-delete-pop "wconfig" "\
|
|
2786 Replaces current window config with most recently saved config in ring.
|
|
2787 Then deletes this new configuration from the ring." t nil)
|
|
2788
|
|
2789 (autoload 'wconfig-ring-save "wconfig" "\
|
|
2790 Saves the current window configuration onto the save ring.
|
|
2791 Use {\\[wconfig-yank-pop]} to restore it at a later time." t nil)
|
|
2792
|
|
2793 (autoload 'wconfig-yank-pop "wconfig" "\
|
|
2794 Replaces current window config with prefix arg Nth prior one in save ring.
|
|
2795 Interactively, default value of N = 1, meaning the last saved window
|
|
2796 configuration is displayed.
|
|
2797
|
|
2798 The sequence of window configurations wraps around, so that after the oldest
|
|
2799 one comes the newest one." t nil)
|
|
2800
|
|
2801 ;;;***
|
|
2802
|
|
2803 ;;;### (autoloads (rolo-logic) "wrolo-logic" "hyperbole/wrolo-logic.el")
|
|
2804
|
|
2805 (autoload 'rolo-logic "wrolo-logic" "\
|
|
2806 Apply FUNC to all entries in optional IN-BUFS, display entries where FUNC is non-nil.
|
|
2807 If IN-BUFS is nil, 'rolo-file-list' is used. If optional COUNT-ONLY is
|
|
2808 non-nil, don't display entries, return count of matching entries only. If
|
|
2809 optional INCLUDE-SUB-ENTRIES flag is non-nil, FUNC will be applied across all
|
|
2810 sub-entries at once. Default is to apply FUNC to each entry and sub-entry
|
|
2811 separately. Entries are displayed with all of their sub-entries unless
|
|
2812 INCLUDE-SUB-ENTRIES is nil and optional NO-SUB-ENTRIES-OUT flag is non-nil.
|
|
2813 FUNC should use the free variables 'start' and 'end' which contain the limits
|
|
2814 of the region on which it should operate. Returns number of applications of
|
|
2815 FUNC that return non-nil." t nil)
|
|
2816
|
|
2817 ;;;***
|
|
2818
|
114
|
2819 ;;;### (autoloads (rolo-yank rolo-toggle-datestamps rolo-sort rolo-kill rolo-grep rolo-fgrep rolo-edit rolo-display-matches rolo-add) "wrolo" "hyperbole/wrolo.el")
|
78
|
2820
|
|
2821 (autoload 'rolo-add "wrolo" "\
|
|
2822 Adds a new entry in personal rolodex for NAME.
|
|
2823 Last name first is best, e.g. \"Smith, John\".
|
|
2824 With prefix argument, prompts for optional FILE to add entry within.
|
|
2825 NAME may be of the form: parent/child to insert child below a parent
|
|
2826 entry which begins with the parent string." t nil)
|
|
2827
|
|
2828 (autoload 'rolo-display-matches "wrolo" "\
|
|
2829 Display optional DISPLAY-BUF buffer of previously found rolodex matches.
|
114
|
2830 If DISPLAY-BUF is nil, use the value in `rolo-display-buffer'.
|
78
|
2831 Second arg RETURN-TO-BUFFER is the buffer to leave point within after the display." t nil)
|
|
2832
|
|
2833 (autoload 'rolo-edit "wrolo" "\
|
114
|
2834 Edits a rolodex entry given by optional NAME within `rolo-file-list'.
|
78
|
2835 With prefix argument, prompts for optional FILE to locate entry within.
|
114
|
2836 With no NAME arg, simply displays FILE or first entry in `rolo-file-list' in an
|
78
|
2837 editable mode. NAME may be of the form: parent/child to edit child below a
|
|
2838 parent entry which begins with the parent string." t nil)
|
|
2839
|
|
2840 (autoload 'rolo-fgrep "wrolo" "\
|
|
2841 Display rolodex entries matching STRING.
|
|
2842 To a maximum of optional prefix arg MAX-MATCHES, in file(s) from optional
|
|
2843 ROLO-FILE or rolo-file-list. Default is to find all matching entries. Each
|
|
2844 entry is displayed with all of its sub-entries. Optional COUNT-ONLY non-nil
|
|
2845 means don't retrieve and don't display matching entries. Optional NO-DISPLAY
|
|
2846 non-nil means retrieve entries but don't display.
|
|
2847
|
|
2848 Nil value of MAX-MATCHES means find all matches, t value means find all matches
|
|
2849 but omit file headers, negative values mean find up to the inverse of that
|
|
2850 number of entries and omit file headers.
|
|
2851
|
|
2852 Returns number of entries matched. See also documentation for the variable
|
|
2853 rolo-file-list." t nil)
|
|
2854
|
|
2855 (autoload 'rolo-grep "wrolo" "\
|
|
2856 Display rolodex entries matching REGEXP.
|
|
2857 To a maximum of prefix arg MAX-MATCHES, in buffer(s) from optional ROLO-BUFS or
|
|
2858 rolo-file-list. Default is to find all matching entries. Each entry is
|
|
2859 displayed with all of its sub-entries. Optional COUNT-ONLY non-nil means don't
|
|
2860 retrieve and don't display matching entries. Optional NO-DISPLAY non-nil
|
|
2861 means retrieve entries but don't display.
|
|
2862
|
|
2863 Nil value of MAX-MATCHES means find all matches, t value means find all matches
|
|
2864 but omit file headers, negative values mean find up to the inverse of that
|
|
2865 number of entries and omit file headers.
|
|
2866
|
|
2867 Returns number of entries matched. See also documentation for the variable
|
|
2868 rolo-file-list." t nil)
|
|
2869
|
|
2870 (autoload 'rolo-kill "wrolo" "\
|
114
|
2871 Kills a rolodex entry given by NAME within `rolo-file-list'.
|
78
|
2872 With prefix argument, prompts for optional FILE to locate entry within.
|
|
2873 NAME may be of the form: parent/child to kill child below a parent entry
|
|
2874 which begins with the parent string.
|
|
2875 Returns t if entry is killed, nil otherwise." t nil)
|
|
2876
|
|
2877 (autoload 'rolo-sort "wrolo" "\
|
|
2878 Sorts up to 14 levels of entries in ROLO-FILE (default is personal rolo).
|
114
|
2879 Assumes entries are delimited by one or more `*'characters.
|
78
|
2880 Returns list of number of groupings at each entry level." t nil)
|
|
2881
|
114
|
2882 (autoload 'rolo-toggle-datestamps "wrolo" "\
|
|
2883 Toggle whether datestamps are updated when rolodex entries are modified.
|
|
2884 With optional ARG, turn them on iff ARG is positive." t nil)
|
|
2885
|
78
|
2886 (autoload 'rolo-yank "wrolo" "\
|
|
2887 Inserts at point the first rolodex entry matching NAME.
|
|
2888 With optional prefix arg, REGEXP-P, treats NAME as a regular expression instead
|
|
2889 of a string." t nil)
|
|
2890
|
|
2891 ;;;***
|
|
2892
|
|
2893 ;;;### (autoloads (iso-accents-mode) "iso-acc" "iso/iso-acc.el")
|
|
2894
|
|
2895 (autoload 'iso-accents-mode "iso-acc" "\
|
|
2896 Toggle ISO Accents mode, in which accents modify the following letter.
|
|
2897 This permits easy insertion of accented characters according to ISO-8859-1.
|
|
2898 When Iso-accents mode is enabled, accent character keys
|
|
2899 \(`, ', \", ^, / and ~) do not self-insert; instead, they modify the following
|
|
2900 letter key so that it inserts an ISO accented letter.
|
|
2901
|
|
2902 You can customize ISO Accents mode to a particular language
|
|
2903 with the command `iso-accents-customize'.
|
|
2904
|
|
2905 Special combinations: ~c gives a c with cedilla,
|
|
2906 ~d gives an Icelandic eth (d with dash).
|
|
2907 ~t gives an Icelandic thorn.
|
|
2908 \"s gives German sharp s.
|
|
2909 /a gives a with ring.
|
|
2910 /e gives an a-e ligature.
|
|
2911 ~< and ~> give guillemots.
|
|
2912 ~! gives an inverted exclamation mark.
|
|
2913 ~? gives an inverted question mark.
|
|
2914
|
|
2915 With an argument, a positive argument enables ISO Accents mode,
|
|
2916 and a negative argument disables it." t nil)
|
|
2917
|
|
2918 ;;;***
|
|
2919
|
|
2920 ;;;### (autoloads (mc-deactivate-passwd mc-install-write-mode mc-install-read-mode) "mailcrypt" "mailcrypt/mailcrypt.el")
|
|
2921
|
|
2922 (autoload 'mc-install-read-mode "mailcrypt" nil t nil)
|
|
2923
|
|
2924 (autoload 'mc-install-write-mode "mailcrypt" nil t nil)
|
|
2925
|
|
2926 (autoload 'mc-deactivate-passwd "mailcrypt" "\
|
|
2927 *Deactivate the passphrase cache." t nil)
|
|
2928
|
|
2929 ;;;***
|
|
2930
|
|
2931 ;;;### (autoloads (mc-pgp-fetch-key mc-scheme-pgp) "mc-pgp" "mailcrypt/mc-pgp.el")
|
|
2932
|
|
2933 (autoload 'mc-scheme-pgp "mc-pgp" nil nil nil)
|
|
2934
|
|
2935 (autoload 'mc-pgp-fetch-key "mc-pgp" "\
|
|
2936 Attempt to fetch a key for addition to PGP keyring. Interactively,
|
|
2937 prompt for string matching key to fetch.
|
|
2938
|
|
2939 Non-interactively, ID must be a pair. The CAR must be a bare Email
|
|
2940 address and the CDR a keyID (with \"0x\" prefix). Either, but not
|
|
2941 both, may be nil.
|
|
2942
|
|
2943 Return t if we think we were successful; nil otherwise. Note that nil
|
|
2944 is not necessarily an error, since we may have merely fired off an Email
|
|
2945 request for the key." t nil)
|
|
2946
|
|
2947 ;;;***
|
|
2948
|
|
2949 ;;;### (autoloads (mc-remailer-insert-response-block mc-remailer-encrypt-for-chain mc-remailer-insert-pseudonym) "mc-remail" "mailcrypt/mc-remail.el")
|
|
2950
|
|
2951 (autoload 'mc-remailer-insert-pseudonym "mc-remail" "\
|
|
2952 Insert pseudonym as a From field in the hash-mark header.
|
|
2953
|
|
2954 See the documentation for the variable `mc-remailer-pseudonyms' for
|
|
2955 more information." t nil)
|
|
2956
|
|
2957 (autoload 'mc-remailer-encrypt-for-chain "mc-remail" "\
|
|
2958 Encrypt message for a remailer chain, prompting for chain to use.
|
|
2959
|
|
2960 With \\[universal-argument], pause before each encryption." t nil)
|
|
2961
|
|
2962 (autoload 'mc-remailer-insert-response-block "mc-remail" "\
|
|
2963 Insert response block at point, prompting for chain to use.
|
|
2964
|
|
2965 With \\[universal-argument], enter a recursive edit of the innermost
|
|
2966 layer of the block before encrypting it." t nil)
|
|
2967
|
|
2968 ;;;***
|
|
2969
|
|
2970 ;;;### (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")
|
|
2971
|
|
2972 (autoload 'mc-cleanup-recipient-headers "mc-toplev" nil nil nil)
|
|
2973
|
|
2974 (autoload 'mc-encrypt "mc-toplev" "\
|
|
2975 *Encrypt the current buffer.
|
|
2976
|
|
2977 Exact behavior depends on current major mode.
|
|
2978
|
|
2979 With \\[universal-argument], prompt for User ID to sign as.
|
|
2980
|
|
2981 With \\[universal-argument] \\[universal-argument], prompt for encryption scheme to use." t nil)
|
|
2982
|
|
2983 (autoload 'mc-encrypt-message "mc-toplev" "\
|
|
2984 *Encrypt a message for RECIPIENTS using the given encryption SCHEME.
|
|
2985 RECIPIENTS is a comma separated string. If SCHEME is nil, use the value
|
|
2986 of `mc-default-scheme'. Returns t on success, nil otherwise." nil nil)
|
|
2987
|
|
2988 (autoload 'mc-decrypt "mc-toplev" "\
|
|
2989 *Decrypt a message in the current buffer.
|
|
2990
|
|
2991 Exact behavior depends on current major mode." t nil)
|
|
2992
|
|
2993 (autoload 'mc-decrypt-message "mc-toplev" "\
|
|
2994 Decrypt whatever message is in the current buffer.
|
|
2995 Returns a pair (SUCCEEDED . VERIFIED) where SUCCEEDED is t if the encryption
|
|
2996 succeeded and VERIFIED is t if it had a valid signature." nil nil)
|
|
2997
|
|
2998 (autoload 'mc-sign "mc-toplev" "\
|
|
2999 *Sign a message in the current buffer.
|
|
3000
|
|
3001 Exact behavior depends on current major mode.
|
|
3002
|
|
3003 With one prefix arg, prompts for private key to use, with two prefix args,
|
|
3004 also prompts for encryption scheme to use. With negative prefix arg,
|
|
3005 inhibits clearsigning (pgp)." t nil)
|
|
3006
|
|
3007 (autoload 'mc-sign-message "mc-toplev" "\
|
|
3008 Clear sign the message." nil nil)
|
|
3009
|
|
3010 (autoload 'mc-verify "mc-toplev" "\
|
|
3011 *Verify a message in the current buffer.
|
|
3012
|
|
3013 Exact behavior depends on current major mode." t nil)
|
|
3014
|
|
3015 (autoload 'mc-verify-signature "mc-toplev" "\
|
|
3016 *Verify the signature of the signed message in the current buffer.
|
|
3017 Show the result as a message in the minibuffer. Returns t if the signature
|
|
3018 is verified." nil nil)
|
|
3019
|
|
3020 (autoload 'mc-insert-public-key "mc-toplev" "\
|
|
3021 *Insert your public key at point.
|
|
3022 With one prefix arg, prompts for user id to use. With two prefix
|
|
3023 args, prompts for encryption scheme." t nil)
|
|
3024
|
|
3025 (autoload 'mc-snarf "mc-toplev" "\
|
|
3026 *Add all public keys in the buffer to your keyring.
|
|
3027
|
|
3028 Exact behavior depends on current major mode." t nil)
|
|
3029
|
|
3030 (autoload 'mc-snarf-keys "mc-toplev" "\
|
|
3031 *Add all public keys in the buffer to your keyring." t nil)
|
|
3032
|
|
3033 (autoload 'mc-rmail-summary-verify-signature "mc-toplev" "\
|
|
3034 *Verify the signature in the current message." t nil)
|
|
3035
|
|
3036 (autoload 'mc-rmail-summary-decrypt-message "mc-toplev" "\
|
|
3037 *Decrypt the contents of this message" t nil)
|
|
3038
|
|
3039 (autoload 'mc-rmail-summary-snarf-keys "mc-toplev" "\
|
|
3040 *Adds keys from current message to public key ring" t nil)
|
|
3041
|
|
3042 (autoload 'mc-rmail-verify-signature "mc-toplev" "\
|
|
3043 *Verify the signature in the current message." t nil)
|
|
3044
|
|
3045 (autoload 'mc-rmail-decrypt-message "mc-toplev" "\
|
|
3046 *Decrypt the contents of this message" t nil)
|
|
3047
|
|
3048 (autoload 'mc-vm-verify-signature "mc-toplev" "\
|
|
3049 *Verify the signature in the current VM message" t nil)
|
|
3050
|
|
3051 (autoload 'mc-vm-decrypt-message "mc-toplev" "\
|
|
3052 *Decrypt the contents of the current VM message" t nil)
|
|
3053
|
|
3054 (autoload 'mc-vm-snarf-keys "mc-toplev" "\
|
|
3055 *Snarf public key from the contents of the current VM message" t nil)
|
|
3056
|
|
3057 (autoload 'mc-gnus-verify-signature "mc-toplev" nil t nil)
|
|
3058
|
|
3059 (autoload 'mc-gnus-snarf-keys "mc-toplev" nil t nil)
|
|
3060
|
|
3061 (autoload 'mc-gnus-decrypt-message "mc-toplev" nil t nil)
|
|
3062
|
|
3063 (autoload 'mc-mh-decrypt-message "mc-toplev" "\
|
|
3064 Decrypt the contents of the current MH message in the show buffer." t nil)
|
|
3065
|
|
3066 (autoload 'mc-mh-verify-signature "mc-toplev" "\
|
|
3067 *Verify the signature in the current MH message." t nil)
|
|
3068
|
|
3069 (autoload 'mc-mh-snarf-keys "mc-toplev" nil t nil)
|
|
3070
|
|
3071 ;;;***
|
|
3072
|
|
3073 ;;;### (autoloads (mh-letter-mode mh-smail-other-window mh-smail-batch mh-smail) "mh-comp" "mh-e/mh-comp.el")
|
|
3074
|
|
3075 (autoload 'mh-smail "mh-comp" "\
|
|
3076 Compose and send mail with the MH mail system.
|
|
3077 This function is an entry point to mh-e, the Emacs front end
|
|
3078 to the MH mail system.
|
|
3079
|
|
3080 See documentation of `\\[mh-send]' for more details on composing mail." t nil)
|
|
3081
|
|
3082 (autoload 'mh-smail-batch "mh-comp" "\
|
|
3083 Set up a mail composition draft with the MH mail system.
|
|
3084 This function is an entry point to mh-e, the Emacs front end
|
|
3085 to the MH mail system. This function does not prompt the user
|
|
3086 for any header fields, and thus is suitable for use by programs
|
|
3087 that want to create a mail buffer.
|
|
3088 Users should use `\\[mh-smail]' to compose mail." nil nil)
|
|
3089
|
|
3090 (autoload 'mh-smail-other-window "mh-comp" "\
|
|
3091 Compose and send mail in other window with the MH mail system.
|
|
3092 This function is an entry point to mh-e, the Emacs front end
|
|
3093 to the MH mail system.
|
|
3094
|
|
3095 See documentation of `\\[mh-send]' for more details on composing mail." t nil)
|
|
3096
|
|
3097 (autoload 'mh-letter-mode "mh-comp" "\
|
|
3098 Mode for composing letters in mh-e.\\<mh-letter-mode-map>
|
|
3099 When you have finished composing, type \\[mh-send-letter] to send the message
|
|
3100 using the MH mail handling system.
|
|
3101 See the documentation for \\[mh-edit-mhn] for information on composing MIME
|
|
3102 messages.
|
|
3103
|
|
3104 \\{mh-letter-mode-map}
|
|
3105
|
|
3106 Variables controlling this mode (defaults in parentheses):
|
|
3107
|
|
3108 mh-delete-yanked-msg-window (nil)
|
|
3109 If non-nil, \\[mh-yank-cur-msg] will delete any windows displaying
|
|
3110 the yanked message.
|
|
3111
|
|
3112 mh-yank-from-start-of-msg (t)
|
|
3113 If non-nil, \\[mh-yank-cur-msg] will include the entire message.
|
|
3114 If `body', just yank the body (no header).
|
|
3115 If nil, only the portion of the message following the point will be yanked.
|
|
3116 If there is a region, this variable is ignored.
|
|
3117
|
|
3118 mh-ins-buf-prefix (\"> \")
|
|
3119 String to insert before each non-blank line of a message as it is
|
|
3120 inserted in a draft letter.
|
|
3121
|
|
3122 mh-signature-file-name (\"~/.signature\")
|
|
3123 File to be inserted into message by \\[mh-insert-signature].
|
|
3124
|
|
3125 Upon invoking mh-letter-mode, text-mode-hook and mh-letter-mode-hook are
|
|
3126 invoked with no args, if those values are non-nil." t nil)
|
|
3127
|
|
3128 ;;;***
|
|
3129
|
|
3130 ;;;### (autoloads (mh-version mh-rmail) "mh-e" "mh-e/mh-e.el")
|
|
3131
|
|
3132 (autoload 'mh-rmail "mh-e" "\
|
|
3133 Inc(orporate) new mail with MH, or, with arg, scan an MH mail folder.
|
|
3134 This function is an entry point to mh-e, the Emacs front end
|
|
3135 to the MH mail system." t nil)
|
|
3136
|
|
3137 (autoload 'mh-version "mh-e" "\
|
|
3138 Display version information about mh-e and the MH mail handling system." t nil)
|
|
3139
|
|
3140 ;;;***
|
|
3141
|
|
3142 ;;;### (autoloads nil "mh-mime" "mh-e/mh-mime.el")
|
|
3143
|
|
3144 (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")) "\
|
|
3145 Legal MIME content types. See documentation for \\[mh-edit-mhn].")
|
|
3146
|
|
3147 ;;;***
|
|
3148
|
|
3149 ;;;### (autoloads nil "mh-utils" "mh-e/mh-utils.el")
|
|
3150
|
|
3151 (put 'mh-progs 'risky-local-variable t)
|
|
3152
|
|
3153 (put 'mh-lib 'risky-local-variable t)
|
|
3154
|
|
3155 ;;;***
|
|
3156
|
|
3157 ;;;### (autoloads nil "abbrev" "modes/abbrev.el")
|
|
3158
|
|
3159 ;;;***
|
|
3160
|
|
3161 ;;;### (autoloads (ada-make-filename-from-adaname ada-mode) "ada-mode" "modes/ada-mode.el")
|
|
3162
|
|
3163 (autoload 'ada-mode "ada-mode" "\
|
|
3164 Ada Mode is the major mode for editing Ada code.
|
|
3165
|
|
3166 Bindings are as follows: (Note: 'LFD' is control-j.)
|
|
3167
|
|
3168 Indent line '\\[ada-tab]'
|
|
3169 Indent line, insert newline and indent the new line. '\\[newline-and-indent]'
|
|
3170
|
|
3171 Re-format the parameter-list point is in '\\[ada-format-paramlist]'
|
|
3172 Indent all lines in region '\\[ada-indent-region]'
|
|
3173 Call external pretty printer program '\\[ada-call-pretty-printer]'
|
|
3174
|
|
3175 Adjust case of identifiers and keywords in region '\\[ada-adjust-case-region]'
|
|
3176 Adjust case of identifiers and keywords in buffer '\\[ada-adjust-case-buffer]'
|
|
3177
|
|
3178 Call EXTERNAL pretty printer (if you have one) '\\[ada-call-pretty-printer]'
|
|
3179
|
|
3180 Fill comment paragraph '\\[ada-fill-comment-paragraph]'
|
|
3181 Fill comment paragraph and justify each line '\\[ada-fill-comment-paragraph-justify]'
|
|
3182 Fill comment paragraph, justify and append postfix '\\[ada-fill-comment-paragraph-postfix]'
|
|
3183
|
|
3184 Next func/proc/task '\\[ada-next-procedure]' Previous func/proc/task '\\[ada-previous-procedure]'
|
|
3185 Next package '\\[ada-next-package]' Previous package '\\[ada-previous-package]'
|
|
3186
|
|
3187 Goto matching start of current 'end ...;' '\\[ada-move-to-start]'
|
|
3188 Goto end of current block '\\[ada-move-to-end]'
|
|
3189
|
|
3190 Comments are handled using standard GNU Emacs conventions, including:
|
|
3191 Start a comment '\\[indent-for-comment]'
|
|
3192 Comment region '\\[comment-region]'
|
|
3193 Uncomment region '\\[ada-uncomment-region]'
|
|
3194 Continue comment on next line '\\[indent-new-comment-line]'
|
|
3195
|
|
3196 If you use imenu.el:
|
|
3197 Display index-menu of functions & procedures '\\[imenu]'
|
|
3198
|
|
3199 If you use find-file.el:
|
|
3200 Switch to other file (Body <-> Spec) '\\[ff-find-other-file]'
|
|
3201 or '\\[ff-mouse-find-other-file]
|
|
3202 Switch to other file in other window '\\[ada-ff-other-window]'
|
|
3203 or '\\[ff-mouse-find-other-file-other-window]
|
|
3204 If you use this function in a spec and no body is available, it gets created
|
|
3205 with body stubs.
|
|
3206
|
|
3207 If you use ada-xref.el:
|
|
3208 Goto declaration: '\\[ada-point-and-xref]' on the identifier
|
|
3209 or '\\[ada-goto-declaration]' with point on the identifier
|
|
3210 Complete identifier: '\\[ada-complete-identifier]'
|
|
3211 Execute Gnatf: '\\[ada-gnatf-current]'" t nil)
|
|
3212
|
|
3213 (autoload 'ada-make-filename-from-adaname "ada-mode" "\
|
|
3214 Determine the filename of a package/procedure from its own Ada name." t nil)
|
|
3215
|
|
3216 ;;;***
|
|
3217
|
|
3218 ;;;### (autoloads (archive-mode) "arc-mode" "modes/arc-mode.el")
|
|
3219
|
|
3220 (autoload 'archive-mode "arc-mode" "\
|
|
3221 Major mode for viewing an archive file in a dired-like way.
|
|
3222 You can move around using the usual cursor motion commands.
|
|
3223 Letters no longer insert themselves.
|
|
3224 Type `e' to pull a file out of the archive and into its own buffer;
|
|
3225 or click mouse-2 on the file's line in the archive mode buffer.
|
|
3226
|
|
3227 If you edit a sub-file of this archive (as with the `e' command) and
|
|
3228 save it, the contents of that buffer will be saved back into the
|
|
3229 archive.
|
|
3230
|
|
3231 \\{archive-mode-map}" nil nil)
|
|
3232
|
|
3233 ;;;***
|
|
3234
|
|
3235 ;;;### (autoloads (asm-mode) "asm-mode" "modes/asm-mode.el")
|
|
3236
|
|
3237 (autoload 'asm-mode "asm-mode" "\
|
|
3238 Major mode for editing typical assembler code.
|
|
3239 Features a private abbrev table and the following bindings:
|
|
3240
|
|
3241 \\[asm-colon] outdent a preceding label, tab to next tab stop.
|
|
3242 \\[tab-to-tab-stop] tab to next tab stop.
|
|
3243 \\[asm-newline] newline, then tab to next tab stop.
|
|
3244 \\[asm-comment] smart placement of assembler comments.
|
|
3245
|
|
3246 The character used for making comments is set by the variable
|
|
3247 `asm-comment-char' (which defaults to `?;').
|
|
3248
|
|
3249 Alternatively, you may set this variable in `asm-mode-set-comment-hook',
|
|
3250 which is called near the beginning of mode initialization.
|
|
3251
|
|
3252 Turning on Asm mode runs the hook `asm-mode-hook' at the end of initialization.
|
|
3253
|
|
3254 Special commands:
|
|
3255 \\{asm-mode-map}
|
|
3256 " t nil)
|
|
3257
|
|
3258 ;;;***
|
|
3259
|
|
3260 ;;;### (autoloads (awk-mode) "awk-mode" "modes/awk-mode.el")
|
|
3261
|
|
3262 (autoload 'awk-mode "awk-mode" "\
|
|
3263 Major mode for editing AWK code.
|
|
3264 This is much like C mode except for the syntax of comments. It uses
|
|
3265 the same keymap as C mode and has the same variables for customizing
|
|
3266 indentation. It has its own abbrev table and its own syntax table.
|
|
3267
|
|
3268 Turning on AWK mode calls the value of the variable `awk-mode-hook'
|
|
3269 with no args, if that value is non-nil." t nil)
|
|
3270
|
|
3271 ;;;***
|
|
3272
|
|
3273 ;;;### (autoloads (bibtex-mode) "bibtex" "modes/bibtex.el")
|
|
3274
|
|
3275 (autoload 'bibtex-mode "bibtex" "\
|
|
3276 Major mode for editing bibtex files.
|
|
3277
|
|
3278 \\{bibtex-mode-map}
|
|
3279
|
|
3280 A command such as \\[bibtex-Book] will outline the fields for a BibTeX book entry.
|
|
3281
|
|
3282 The optional fields start with the string OPT, and thus ignored by BibTeX.
|
|
3283 The OPT string may be removed from a field with \\[bibtex-remove-OPT].
|
|
3284 \\[bibtex-kill-optional-field] kills the current optional field entirely.
|
|
3285 \\[bibtex-remove-double-quotes] removes the double-quotes around the text of
|
|
3286 the current field. \\[bibtex-empty-field] replaces the text of the current
|
|
3287 field with the default \"\".
|
|
3288
|
|
3289 The command \\[bibtex-clean-entry] cleans the current entry, i.e. (i) removes
|
|
3290 double-quotes from entirely numerical fields, (ii) removes OPT from all
|
|
3291 non-empty optional fields, (iii) removes all empty optional fields, and (iv)
|
|
3292 checks that no non-optional fields are empty.
|
|
3293
|
|
3294 Use \\[bibtex-find-text] to position the dot at the end of the current field.
|
|
3295 Use \\[bibtex-next-field] to move to end of the next field.
|
|
3296
|
|
3297 The following may be of interest as well:
|
|
3298
|
|
3299 Functions:
|
|
3300 find-bibtex-duplicates
|
|
3301 find-bibtex-entry-location
|
|
3302 hide-bibtex-entry-bodies
|
|
3303 sort-bibtex-entries
|
|
3304 validate-bibtex-buffer
|
|
3305
|
|
3306 Variables:
|
|
3307 bibtex-clean-entry-zap-empty-opts
|
|
3308 bibtex-entry-field-alist
|
|
3309 bibtex-include-OPTannote
|
|
3310 bibtex-include-OPTcrossref
|
|
3311 bibtex-include-OPTkey
|
|
3312 bibtex-maintain-sorted-entries
|
|
3313 bibtex-mode-user-optional-fields
|
|
3314
|
|
3315 Fields:
|
|
3316 address
|
|
3317 Publisher's address
|
|
3318 annote
|
|
3319 Long annotation used for annotated bibliographies (begins sentence)
|
|
3320 author
|
|
3321 Name(s) of author(s), in BibTeX name format
|
|
3322 booktitle
|
|
3323 Book title when the thing being referenced isn't the whole book.
|
|
3324 For book entries, the title field should be used instead.
|
|
3325 chapter
|
|
3326 Chapter number
|
|
3327 crossref
|
|
3328 The database key of the entry being cross referenced.
|
|
3329 edition
|
|
3330 Edition of a book (e.g., \"second\")
|
|
3331 editor
|
|
3332 Name(s) of editor(s), in BibTeX name format.
|
|
3333 If there is also an author field, then the editor field should be
|
|
3334 for the book or collection that the work appears in
|
|
3335 howpublished
|
|
3336 How something strange has been published (begins sentence)
|
|
3337 institution
|
|
3338 Sponsoring institution
|
|
3339 journal
|
|
3340 Journal name (macros are provided for many)
|
|
3341 key
|
|
3342 Alphabetizing and labeling key (needed when no author or editor)
|
|
3343 month
|
|
3344 Month (macros are provided)
|
|
3345 note
|
|
3346 To help the reader find a reference (begins sentence)
|
|
3347 number
|
|
3348 Number of a journal or technical report
|
|
3349 organization
|
|
3350 Organization (sponsoring a conference)
|
|
3351 pages
|
|
3352 Page number or numbers (use `--' to separate a range)
|
|
3353 publisher
|
|
3354 Publisher name
|
|
3355 school
|
|
3356 School name (for theses)
|
|
3357 series
|
|
3358 The name of a series or set of books.
|
|
3359 An individual book will also have its own title
|
|
3360 title
|
|
3361 The title of the thing being referenced
|
|
3362 type
|
|
3363 Type of a technical report (e.g., \"Research Note\") to be used
|
|
3364 instead of the default \"Technical Report\"
|
|
3365 volume
|
|
3366 Volume of a journal or multivolume work
|
|
3367 year
|
|
3368 Year---should contain only numerals
|
|
3369 ---------------------------------------------------------
|
|
3370 Entry to this mode calls the value of bibtex-mode-hook if that value is
|
|
3371 non-nil." t nil)
|
|
3372
|
|
3373 ;;;***
|
|
3374
|
118
|
3375 ;;;### (autoloads (c-add-style c-set-style java-mode objc-mode c++-mode c-mode) "cc-mode" "modes/cc-mode.el")
|
78
|
3376
|
|
3377 (autoload 'c-mode "cc-mode" "\
|
|
3378 Major mode for editing K&R and ANSI C code.
|
|
3379 To submit a problem report, enter `\\[c-submit-bug-report]' from a
|
|
3380 c-mode buffer. This automatically sets up a mail buffer with version
|
|
3381 information already added. You just need to add a description of the
|
|
3382 problem, including a reproducible test case and send the message.
|
|
3383
|
110
|
3384 To see what version of CC Mode you are running, enter `\\[c-version]'.
|
78
|
3385
|
|
3386 The hook variable `c-mode-hook' is run with no args, if that value is
|
|
3387 bound and has a non-nil value. Also the hook `c-mode-common-hook' is
|
|
3388 run first.
|
|
3389
|
|
3390 Key bindings:
|
|
3391 \\{c-mode-map}" t nil)
|
|
3392
|
|
3393 (autoload 'c++-mode "cc-mode" "\
|
|
3394 Major mode for editing C++ code.
|
|
3395 To submit a problem report, enter `\\[c-submit-bug-report]' from a
|
|
3396 c++-mode buffer. This automatically sets up a mail buffer with
|
|
3397 version information already added. You just need to add a description
|
|
3398 of the problem, including a reproducible test case, and send the
|
|
3399 message.
|
|
3400
|
110
|
3401 To see what version of CC Mode you are running, enter `\\[c-version]'.
|
78
|
3402
|
|
3403 The hook variable `c++-mode-hook' is run with no args, if that
|
|
3404 variable is bound and has a non-nil value. Also the hook
|
|
3405 `c-mode-common-hook' is run first.
|
|
3406
|
|
3407 Key bindings:
|
|
3408 \\{c++-mode-map}" t nil)
|
|
3409
|
|
3410 (autoload 'objc-mode "cc-mode" "\
|
|
3411 Major mode for editing Objective C code.
|
|
3412 To submit a problem report, enter `\\[c-submit-bug-report]' from an
|
|
3413 objc-mode buffer. This automatically sets up a mail buffer with
|
|
3414 version information already added. You just need to add a description
|
|
3415 of the problem, including a reproducible test case, and send the
|
|
3416 message.
|
|
3417
|
110
|
3418 To see what version of CC Mode you are running, enter `\\[c-version]'.
|
78
|
3419
|
|
3420 The hook variable `objc-mode-hook' is run with no args, if that value
|
|
3421 is bound and has a non-nil value. Also the hook `c-mode-common-hook'
|
|
3422 is run first.
|
|
3423
|
|
3424 Key bindings:
|
|
3425 \\{objc-mode-map}" t nil)
|
|
3426
|
|
3427 (autoload 'java-mode "cc-mode" "\
|
|
3428 Major mode for editing Java code.
|
|
3429 To submit a problem report, enter `\\[c-submit-bug-report]' from an
|
|
3430 java-mode buffer. This automatically sets up a mail buffer with
|
|
3431 version information already added. You just need to add a description
|
|
3432 of the problem, including a reproducible test case and send the
|
|
3433 message.
|
|
3434
|
110
|
3435 To see what version of CC Mode you are running, enter `\\[c-version]'.
|
78
|
3436
|
|
3437 The hook variable `java-mode-hook' is run with no args, if that value
|
|
3438 is bound and has a non-nil value. Also the common hook
|
|
3439 `c-mode-common-hook' is run first. Note that this mode automatically
|
|
3440 sets the \"java\" style before calling any hooks so be careful if you
|
|
3441 set styles in `c-mode-common-hook'.
|
|
3442
|
|
3443 Key bindings:
|
|
3444 \\{java-mode-map}" t nil)
|
|
3445
|
|
3446 (autoload 'c-set-style "cc-mode" "\
|
110
|
3447 Set CC Mode variables to use one of several different indentation styles.
|
78
|
3448 STYLENAME is a string representing the desired style from the list of
|
|
3449 styles described in the variable `c-style-alist'. See that variable
|
110
|
3450 for details of setting up styles.
|
|
3451
|
|
3452 The variable `c-indentation-style' always contains the buffer's current
|
|
3453 style name." t nil)
|
78
|
3454
|
118
|
3455 (autoload 'c-add-style "cc-mode" "\
|
|
3456 Adds a style to `c-style-alist', or updates an existing one.
|
|
3457 STYLE is a string identifying the style to add or update. DESCRIP is
|
|
3458 an association list describing the style and must be of the form:
|
|
3459
|
|
3460 ((VARIABLE . VALUE) [(VARIABLE . VALUE) ...])
|
|
3461
|
|
3462 See the variable `c-style-alist' for the semantics of VARIABLE and
|
|
3463 VALUE. This function also sets the current style to STYLE using
|
|
3464 `c-set-style' if the optional SET-P flag is non-nil." t nil)
|
|
3465
|
78
|
3466 (fset 'set-c-style 'c-set-style)
|
|
3467
|
|
3468 ;;;***
|
|
3469
|
|
3470 ;;;### (autoloads (common-lisp-indent-function) "cl-indent" "modes/cl-indent.el")
|
|
3471
|
|
3472 (autoload 'common-lisp-indent-function "cl-indent" nil nil nil)
|
|
3473
|
|
3474 ;;;***
|
|
3475
|
|
3476 ;;;### (autoloads (c-macro-expand) "cmacexp" "modes/cmacexp.el")
|
|
3477
|
|
3478 (autoload 'c-macro-expand "cmacexp" "\
|
|
3479 Expand C macros in the region, using the C preprocessor.
|
|
3480 Normally display output in temp buffer, but
|
|
3481 prefix arg means replace the region with it.
|
|
3482
|
|
3483 `c-macro-preprocessor' specifies the preprocessor to use.
|
|
3484 Prompt for arguments to the preprocessor (e.g. `-DDEBUG -I ./include')
|
|
3485 if the user option `c-macro-prompt-flag' is non-nil.
|
|
3486
|
|
3487 Noninteractive args are START, END, SUBST.
|
|
3488 For use inside Lisp programs, see also `c-macro-expansion'." t nil)
|
|
3489
|
|
3490 ;;;***
|
|
3491
|
|
3492 ;;;### (autoloads (eiffel-mode) "eiffel3" "modes/eiffel3.el")
|
|
3493
|
|
3494 (autoload 'eiffel-mode "eiffel3" "\
|
|
3495 Major mode for editing Eiffel programs." t nil)
|
|
3496
|
|
3497 ;;;***
|
|
3498
|
|
3499 ;;;### (autoloads (enriched-decode enriched-encode enriched-mode) "enriched" "modes/enriched.el")
|
|
3500
|
|
3501 (autoload 'enriched-mode "enriched" "\
|
|
3502 Minor mode for editing text/enriched files.
|
|
3503 These are files with embedded formatting information in the MIME standard
|
|
3504 text/enriched format.
|
|
3505 Turning the mode on runs `enriched-mode-hook'.
|
|
3506
|
|
3507 More information about Enriched mode is available in the file
|
|
3508 etc/enriched.doc in the Emacs distribution directory.
|
|
3509
|
|
3510 Commands:
|
|
3511
|
|
3512 \\<enriched-mode-map>\\{enriched-mode-map}" t nil)
|
|
3513
|
|
3514 (autoload 'enriched-encode "enriched" nil nil nil)
|
|
3515
|
|
3516 (autoload 'enriched-decode "enriched" nil nil nil)
|
|
3517
|
|
3518 ;;;***
|
|
3519
|
|
3520 ;;;### (autoloads (executable-self-display executable-set-magic) "executable" "modes/executable.el")
|
|
3521
|
|
3522 (autoload 'executable-set-magic "executable" "\
|
|
3523 Set this buffer's interpreter to INTERPRETER with optional ARGUMENT.
|
|
3524 The variables `executable-magicless-file-regexp', `executable-prefix',
|
|
3525 `executable-insert', `executable-query' and `executable-chmod' control
|
|
3526 when and how magic numbers are inserted or replaced and scripts made
|
|
3527 executable." t nil)
|
|
3528
|
|
3529 (autoload 'executable-self-display "executable" "\
|
|
3530 Turn a text file into a self-displaying Un*x command.
|
|
3531 The magic number of such a command displays all lines but itself." t nil)
|
|
3532
|
|
3533 ;;;***
|
|
3534
|
|
3535 ;;;### (autoloads (f90-mode) "f90" "modes/f90.el")
|
|
3536
|
|
3537 (autoload 'f90-mode "f90" "\
|
|
3538 Major mode for editing Fortran 90 code in free format.
|
|
3539
|
|
3540 \\[f90-indent-new-line] corrects current indentation and creates new indented line.
|
|
3541 \\[f90-indent-line] indents the current line correctly.
|
|
3542 \\[f90-indent-subprogram] indents the current subprogram.
|
|
3543
|
|
3544 Type `? or `\\[help-command] to display a list of built-in abbrevs for F90 keywords.
|
|
3545
|
|
3546 Key definitions:
|
|
3547 \\{f90-mode-map}
|
|
3548
|
|
3549 Variables controlling indentation style and extra features:
|
|
3550
|
|
3551 f90-do-indent
|
|
3552 Extra indentation within do blocks. (default 3)
|
|
3553 f90-if-indent
|
|
3554 Extra indentation within if/select case/where/forall blocks. (default 3)
|
|
3555 f90-type-indent
|
|
3556 Extra indentation within type/interface/block-data blocks. (default 3)
|
|
3557 f90-program-indent
|
|
3558 Extra indentation within program/module/subroutine/function blocks.
|
|
3559 (default 2)
|
|
3560 f90-continuation-indent
|
|
3561 Extra indentation applied to continuation lines. (default 5)
|
|
3562 f90-comment-region
|
|
3563 String inserted by \\[f90-comment-region] at start of each line in
|
|
3564 region. (default \"!!!$\")
|
|
3565 f90-indented-comment-re
|
|
3566 Regexp determining the type of comment to be intended like code.
|
|
3567 (default \"!\")
|
|
3568 f90-directive-comment-re
|
|
3569 Regexp of comment-like directive like \"!HPF\\\\$\", not to be indented.
|
|
3570 (default \"!hpf\\\\$\")
|
|
3571 f90-break-delimiters
|
|
3572 Regexp holding list of delimiters at which lines may be broken.
|
|
3573 (default \"[-+*/><=,% \\t]\")
|
|
3574 f90-break-before-delimiters
|
|
3575 Non-nil causes `f90-do-auto-fill' to break lines before delimiters.
|
|
3576 (default t)
|
|
3577 f90-beginning-ampersand
|
|
3578 Automatic insertion of & at beginning of continuation lines. (default t)
|
|
3579 f90-smart-end
|
|
3580 From an END statement, check and fill the end using matching block start.
|
|
3581 Allowed values are 'blink, 'no-blink, and nil, which determine
|
|
3582 whether to blink the matching beginning.) (default 'blink)
|
|
3583 f90-auto-keyword-case
|
|
3584 Automatic change of case of keywords. (default nil)
|
|
3585 The possibilities are 'downcase-word, 'upcase-word, 'capitalize-word.
|
|
3586 f90-leave-line-no
|
|
3587 Do not left-justify line numbers. (default nil)
|
|
3588 f90-startup-message
|
|
3589 Set to nil to inhibit message first time F90 mode is used. (default t)
|
|
3590 f90-keywords-re
|
|
3591 List of keywords used for highlighting/upcase-keywords etc.
|
|
3592
|
|
3593 Turning on F90 mode calls the value of the variable `f90-mode-hook'
|
|
3594 with no args, if that value is non-nil." t nil)
|
|
3595
|
|
3596 ;;;***
|
|
3597
|
|
3598 ;;;### (autoloads (follow-delete-other-windows-and-split follow-mode turn-off-follow-mode turn-on-follow-mode) "follow" "modes/follow.el")
|
|
3599
|
|
3600 (add-minor-mode 'follow-mode nil 'follow-mode-map)
|
|
3601
|
|
3602 (autoload 'turn-on-follow-mode "follow" "\
|
|
3603 Turn on Follow mode. Please see the function `follow-mode'." t nil)
|
|
3604
|
|
3605 (autoload 'turn-off-follow-mode "follow" "\
|
|
3606 Turn off Follow mode. Please see the function `follow-mode'." t nil)
|
|
3607
|
|
3608 (autoload 'follow-mode "follow" "\
|
|
3609 Minor mode which combines windows into one tall virtual window.
|
|
3610
|
|
3611 The feeling of a \"virtual window\" has been accomplished by the use
|
|
3612 of two major techniques:
|
|
3613
|
|
3614 * The windows always displays adjacent sections of the buffer.
|
|
3615 This means that whenever one window is moved, all the
|
|
3616 others will follow. (Hence the name Follow Mode.)
|
|
3617
|
|
3618 * Should the point (cursor) end up outside a window, another
|
|
3619 window displaying that point is selected, if possible. This
|
|
3620 makes it possible to walk between windows using normal cursor
|
|
3621 movement commands.
|
|
3622
|
|
3623 Follow mode comes to its prime when used on a large screen and two
|
|
3624 side-by-side window are used. The user can, with the help of Follow
|
|
3625 mode, use two full-height windows as though they would have been
|
|
3626 one. Imagine yourself editing a large function, or section of text,
|
108
|
3627 and being able to use 144 lines instead of the normal 72... (your
|
78
|
3628 mileage may vary).
|
|
3629
|
|
3630 To split one large window into two side-by-side windows, the commands
|
|
3631 `\\[split-window-horizontally]' or `M-x follow-delete-other-windows-and-split' can be used.
|
|
3632
|
|
3633 Only windows displayed in the same frame follow each-other.
|
|
3634
|
|
3635 If the variable `follow-intercept-processes' is non-nil, Follow mode
|
|
3636 will listen to the output of processes and redisplay accordingly.
|
|
3637 \(This is the default.)
|
|
3638
|
|
3639 When Follow mode is switched on, the hook `follow-mode-hook'
|
|
3640 is called. When turned off, `follow-mode-off-hook' is called.
|
|
3641
|
|
3642 Keys specific to Follow mode:
|
|
3643 \\{follow-mode-map}" t nil)
|
|
3644
|
|
3645 (autoload 'follow-delete-other-windows-and-split "follow" "\
|
|
3646 Create two side by side windows and enter Follow Mode.
|
|
3647
|
|
3648 Execute this command to display as much as possible of the text
|
|
3649 in the selected window. All other windows, in the current
|
|
3650 frame, are deleted and the selected window is split in two
|
|
3651 side-by-side windows. Follow Mode is activated, hence the
|
|
3652 two windows always will display two successive pages.
|
|
3653 \(If one window is moved, the other one will follow.)
|
|
3654
|
|
3655 If ARG is positive, the leftmost window is selected. If it negative,
|
|
3656 the rightmost is selected. If ARG is nil, the leftmost window is
|
|
3657 selected if the original window is the first one in the frame.
|
|
3658
|
|
3659 To bind this command to a hotkey, place the following line
|
|
3660 in your `~/.emacs' file, replacing [f7] by your favourite key:
|
|
3661 (global-set-key [f7] 'follow-delete-other-windows-and-split)" t nil)
|
|
3662
|
|
3663 ;;;***
|
|
3664
|
|
3665 ;;;### (autoloads (fortran-mode) "fortran" "modes/fortran.el")
|
|
3666
|
|
3667 (defvar fortran-tab-mode-default nil "\
|
|
3668 *Default tabbing/carriage control style for empty files in Fortran mode.
|
|
3669 A value of t specifies tab-digit style of continuation control.
|
|
3670 A value of nil specifies that continuation lines are marked
|
|
3671 with a character in column 6.")
|
|
3672
|
|
3673 (autoload 'fortran-mode "fortran" "\
|
|
3674 Major mode for editing Fortran code.
|
|
3675 \\[fortran-indent-line] indents the current Fortran line correctly.
|
|
3676 DO statements must not share a common CONTINUE.
|
|
3677
|
|
3678 Type ;? or ;\\[help-command] to display a list of built-in abbrevs for Fortran keywords.
|
|
3679
|
|
3680 Key definitions:
|
|
3681 \\{fortran-mode-map}
|
|
3682
|
|
3683 Variables controlling indentation style and extra features:
|
|
3684
|
|
3685 comment-start
|
|
3686 Normally nil in Fortran mode. If you want to use comments
|
|
3687 starting with `!', set this to the string \"!\".
|
|
3688 fortran-do-indent
|
|
3689 Extra indentation within do blocks. (default 3)
|
|
3690 fortran-if-indent
|
|
3691 Extra indentation within if blocks. (default 3)
|
|
3692 fortran-structure-indent
|
|
3693 Extra indentation within structure, union, map and interface blocks.
|
|
3694 (default 3)
|
|
3695 fortran-continuation-indent
|
|
3696 Extra indentation applied to continuation statements. (default 5)
|
|
3697 fortran-comment-line-extra-indent
|
|
3698 Amount of extra indentation for text within full-line comments. (default 0)
|
|
3699 fortran-comment-indent-style
|
|
3700 nil means don't change indentation of text in full-line comments,
|
|
3701 fixed means indent that text at `fortran-comment-line-extra-indent' beyond
|
|
3702 the value of `fortran-minimum-statement-indent-fixed' (for fixed
|
|
3703 format continuation style) or `fortran-minimum-statement-indent-tab'
|
|
3704 (for TAB format continuation style).
|
|
3705 relative means indent at `fortran-comment-line-extra-indent' beyond the
|
|
3706 indentation for a line of code.
|
|
3707 (default 'fixed)
|
|
3708 fortran-comment-indent-char
|
|
3709 Single-character string to be inserted instead of space for
|
|
3710 full-line comment indentation. (default \" \")
|
|
3711 fortran-minimum-statement-indent-fixed
|
|
3712 Minimum indentation for Fortran statements in fixed format mode. (def.6)
|
|
3713 fortran-minimum-statement-indent-tab
|
|
3714 Minimum indentation for Fortran statements in TAB format mode. (default 9)
|
|
3715 fortran-line-number-indent
|
|
3716 Maximum indentation for line numbers. A line number will get
|
|
3717 less than this much indentation if necessary to avoid reaching
|
|
3718 column 5. (default 1)
|
|
3719 fortran-check-all-num-for-matching-do
|
|
3720 Non-nil causes all numbered lines to be treated as possible \"continue\"
|
|
3721 statements. (default nil)
|
|
3722 fortran-blink-matching-if
|
|
3723 Non-nil causes \\[fortran-indent-line] on an ENDIF statement to blink on
|
|
3724 matching IF. Also, from an ENDDO statement, blink on matching DO [WHILE]
|
|
3725 statement. (default nil)
|
|
3726 fortran-continuation-string
|
|
3727 Single-character string to be inserted in column 5 of a continuation
|
|
3728 line. (default \"$\")
|
|
3729 fortran-comment-region
|
|
3730 String inserted by \\[fortran-comment-region] at start of each line in
|
|
3731 region. (default \"c$$$\")
|
|
3732 fortran-electric-line-number
|
|
3733 Non-nil causes line number digits to be moved to the correct column
|
|
3734 as typed. (default t)
|
|
3735 fortran-break-before-delimiters
|
|
3736 Non-nil causes `fortran-fill' breaks lines before delimiters.
|
|
3737 (default t)
|
|
3738 fortran-startup-message
|
|
3739 Set to nil to inhibit message first time Fortran mode is used.
|
|
3740
|
|
3741 Turning on Fortran mode calls the value of the variable `fortran-mode-hook'
|
|
3742 with no args, if that value is non-nil." t nil)
|
|
3743
|
|
3744 ;;;***
|
|
3745
|
|
3746 ;;;### (autoloads (hide-ifdef-mode) "hideif" "modes/hideif.el")
|
|
3747
|
|
3748 (add-minor-mode 'hide-ifdef-mode " Ifdef")
|
|
3749
|
|
3750 (autoload 'hide-ifdef-mode "hideif" "\
|
|
3751 Toggle Hide-Ifdef mode. This is a minor mode, albeit a large one.
|
|
3752 With ARG, turn Hide-Ifdef mode on if arg is positive, off otherwise.
|
|
3753 In Hide-Ifdef mode, code within #ifdef constructs that the C preprocessor
|
|
3754 would eliminate may be hidden from view. Several variables affect
|
|
3755 how the hiding is done:
|
|
3756
|
|
3757 hide-ifdef-env
|
|
3758 An association list of defined and undefined symbols for the
|
|
3759 current buffer. Initially, the global value of `hide-ifdef-env'
|
|
3760 is used.
|
|
3761
|
|
3762 hide-ifdef-define-alist
|
|
3763 An association list of defined symbol lists.
|
|
3764 Use `hide-ifdef-set-define-alist' to save the current `hide-ifdef-env'
|
|
3765 and `hide-ifdef-use-define-alist' to set the current `hide-ifdef-env'
|
|
3766 from one of the lists in `hide-ifdef-define-alist'.
|
|
3767
|
|
3768 hide-ifdef-lines
|
|
3769 Set to non-nil to not show #if, #ifdef, #ifndef, #else, and
|
|
3770 #endif lines when hiding.
|
|
3771
|
|
3772 hide-ifdef-initially
|
|
3773 Indicates whether `hide-ifdefs' should be called when Hide-Ifdef mode
|
|
3774 is activated.
|
|
3775
|
|
3776 hide-ifdef-read-only
|
|
3777 Set to non-nil if you want to make buffers read only while hiding.
|
|
3778 After `show-ifdefs', read-only status is restored to previous value.
|
|
3779
|
|
3780 \\{hide-ifdef-mode-map}" t nil)
|
|
3781
|
|
3782 (defvar hide-ifdef-initially nil "\
|
|
3783 *Non-nil means call `hide-ifdefs' when Hide-Ifdef mode is first activated.")
|
|
3784
|
|
3785 (defvar hide-ifdef-read-only nil "\
|
|
3786 *Set to non-nil if you want buffer to be read-only while hiding text.")
|
|
3787
|
|
3788 (defvar hide-ifdef-lines nil "\
|
|
3789 *Non-nil means hide the #ifX, #else, and #endif lines.")
|
|
3790
|
|
3791 ;;;***
|
|
3792
|
|
3793 ;;;### (autoloads (hs-minor-mode hs-hide-block hs-hide-all) "hideshow" "modes/hideshow.el")
|
|
3794
|
|
3795 (defvar hs-minor-mode nil "\
|
|
3796 Non-nil if using hideshow mode as a minor mode of some other mode.
|
|
3797 Use the command `hs-minor-mode' to toggle this variable.")
|
|
3798
|
|
3799 (autoload 'hs-hide-all "hideshow" "\
|
|
3800 Hides all top-level blocks, displaying only first and last lines.
|
|
3801 It moves point to the beginning of the line, and it runs the normal hook
|
|
3802 `hs-hide-hook'. See documentation for `run-hooks'." t nil)
|
|
3803
|
|
3804 (autoload 'hs-hide-block "hideshow" "\
|
|
3805 Selects a block and hides it. With prefix arg, reposition at end.
|
|
3806 Block is defined as a sexp for lispish modes, mode-specific otherwise.
|
|
3807 Comments are blocks, too. Upon completion, point is at repositioned and
|
|
3808 the normal hook `hs-hide-hook' is run. See documentation for `run-hooks'." t nil)
|
|
3809
|
|
3810 (autoload 'hs-minor-mode "hideshow" "\
|
|
3811 Toggle hideshow minor mode.
|
|
3812 With ARG, turn hideshow minor mode on if ARG is positive, off otherwise.
|
|
3813 When hideshow minor mode is on, the menu bar is augmented with hideshow
|
|
3814 commands and the hideshow commands are enabled. The variables
|
|
3815 `selective-display' and `selective-display-ellipses' are set to t.
|
|
3816 Last, the normal hook `hs-minor-mode-hook' is run; see the doc for `run-hooks'.
|
|
3817
|
|
3818 Turning hideshow minor mode off reverts the menu bar and the
|
|
3819 variables to default values and disables the hideshow commands." t nil)
|
|
3820
|
|
3821 (add-minor-mode 'hs-minor-mode " hs" 'hs-minor-mode-map)
|
|
3822
|
|
3823 ;;;***
|
|
3824
|
|
3825 ;;;### (autoloads (icon-mode) "icon" "modes/icon.el")
|
|
3826
|
|
3827 (autoload 'icon-mode "icon" "\
|
|
3828 Major mode for editing Icon code.
|
|
3829 Expression and list commands understand all Icon brackets.
|
|
3830 Tab indents for Icon code.
|
|
3831 Paragraphs are separated by blank lines only.
|
|
3832 Delete converts tabs to spaces as it moves back.
|
|
3833 \\{icon-mode-map}
|
|
3834 Variables controlling indentation style:
|
|
3835 icon-tab-always-indent
|
|
3836 Non-nil means TAB in Icon mode should always reindent the current line,
|
|
3837 regardless of where in the line point is when the TAB command is used.
|
|
3838 icon-auto-newline
|
|
3839 Non-nil means automatically newline before and after braces
|
|
3840 inserted in Icon code.
|
|
3841 icon-indent-level
|
|
3842 Indentation of Icon statements within surrounding block.
|
|
3843 The surrounding block's indentation is the indentation
|
|
3844 of the line on which the open-brace appears.
|
|
3845 icon-continued-statement-offset
|
|
3846 Extra indentation given to a substatement, such as the
|
|
3847 then-clause of an if or body of a while.
|
|
3848 icon-continued-brace-offset
|
|
3849 Extra indentation given to a brace that starts a substatement.
|
|
3850 This is in addition to `icon-continued-statement-offset'.
|
|
3851 icon-brace-offset
|
|
3852 Extra indentation for line if it starts with an open brace.
|
|
3853 icon-brace-imaginary-offset
|
|
3854 An open brace following other text is treated as if it were
|
|
3855 this far to the right of the start of its line.
|
|
3856
|
|
3857 Turning on Icon mode calls the value of the variable `icon-mode-hook'
|
|
3858 with no args, if that value is non-nil." t nil)
|
|
3859
|
|
3860 ;;;***
|
|
3861
|
|
3862 ;;;### (autoloads (imenu imenu-add-to-menubar) "imenu" "modes/imenu.el")
|
|
3863
|
|
3864 (defvar imenu-generic-expression nil "\
|
|
3865 The regex pattern to use for creating a buffer index.
|
|
3866
|
|
3867 If non-nil this pattern is passed to `imenu-create-index-with-pattern'
|
|
3868 to create a buffer index.
|
|
3869
|
|
3870 It is an alist with elements that look like this: (MENU-TITLE
|
|
3871 REGEXP INDEX).
|
|
3872
|
|
3873 MENU-TITLE is a string used as the title for the submenu or nil if the
|
|
3874 entries are not nested.
|
|
3875
|
|
3876 REGEXP is a regexp that should match a construct in the buffer that is
|
|
3877 to be displayed in the menu; i.e., function or variable definitions,
|
|
3878 etc. It contains a substring which is the name to appear in the
|
|
3879 menu. See the info section on Regexps for more information.
|
|
3880
|
|
3881 INDEX points to the substring in REGEXP that contains the name (of the
|
|
3882 function, variable or type) that is to appear in the menu.
|
|
3883
|
|
3884 For emacs-lisp-mode for example PATTERN would look like:
|
|
3885
|
|
3886 '((nil \"^\\\\s-*(def\\\\(un\\\\|subst\\\\|macro\\\\|advice\\\\)\\\\s-+\\\\([-A-Za-z0-9+]+\\\\)\" 2)
|
|
3887 (\"*Vars*\" \"^\\\\s-*(def\\\\(var\\\\|const\\\\)\\\\s-+\\\\([-A-Za-z0-9+]+\\\\)\" 2)
|
|
3888 (\"*Types*\" \"^\\\\s-*(def\\\\(type\\\\|struct\\\\|class\\\\|ine-condition\\\\)\\\\s-+\\\\([-A-Za-z0-9+]+\\\\)\" 2))
|
|
3889
|
|
3890 The variable is buffer-local.")
|
|
3891
|
|
3892 (make-variable-buffer-local 'imenu-generic-expression)
|
|
3893
|
|
3894 (autoload 'imenu-add-to-menubar "imenu" "\
|
|
3895 Adds an `imenu' entry to the menu bar for the current buffer.
|
|
3896 NAME is a string used to name the menu bar item.
|
|
3897 See the command `imenu' for more information." t nil)
|
|
3898
|
|
3899 (autoload 'imenu "imenu" "\
|
|
3900 Jump to a place in the buffer chosen using a buffer menu or mouse menu.
|
|
3901 See `imenu-choose-buffer-index' for more information." t nil)
|
|
3902
|
|
3903 ;;;***
|
|
3904
|
|
3905 ;;;### (autoloads (ksh-mode) "ksh-mode" "modes/ksh-mode.el")
|
|
3906
|
|
3907 (autoload 'ksh-mode "ksh-mode" "\
|
120
|
3908 ksh-mode $Revision: 1.20 $ - Major mode for editing (Bourne, Korn or Bourne again)
|
78
|
3909 shell scripts.
|
|
3910 Special key bindings and commands:
|
|
3911 \\{ksh-mode-map}
|
|
3912 Variables controlling indentation style:
|
|
3913 ksh-indent
|
|
3914 Indentation of ksh statements with respect to containing block.
|
|
3915 Default value is 2.
|
|
3916 ksh-case-indent
|
|
3917 Additional indentation for statements under case items.
|
|
3918 Default value is nil which will align the statements one position
|
|
3919 past the \")\" of the pattern.
|
|
3920 ksh-case-item-offset
|
|
3921 Additional indentation for case items within a case statement.
|
|
3922 Default value is 2.
|
|
3923 ksh-group-offset
|
|
3924 Additional indentation for keywords \"do\" and \"then\".
|
|
3925 Default value is -2.
|
|
3926 ksh-brace-offset
|
|
3927 Additional indentation of \"{\" under functions or brace groupings.
|
|
3928 Default value is 0.
|
|
3929 ksh-multiline-offset
|
|
3930 Additional indentation of line that is preceded of a line ending with a
|
|
3931 \\ to make it continue on next line.
|
|
3932 ksh-tab-always-indent
|
|
3933 Controls the operation of the TAB key. If t (the default), always
|
|
3934 reindent the current line. If nil, indent the current line only if
|
|
3935 point is at the left margin or in the line's indentation; otherwise
|
|
3936 insert a tab.
|
|
3937 ksh-match-and-tell
|
|
3938 If non-nil echo in the minibuffer the matching compound command
|
|
3939 for the \"done\", \"}\", \"fi\", or \"esac\". Default value is t.
|
|
3940
|
|
3941 ksh-align-to-keyword
|
|
3942 Controls whether nested constructs align from the keyword or
|
|
3943 the current indentation. If non-nil, indentation will be relative to
|
|
3944 the column the keyword starts. If nil, indentation will be relative to
|
|
3945 the current indentation of the line the keyword is on.
|
|
3946 The default value is non-nil.
|
|
3947
|
|
3948 ksh-comment-regexp
|
|
3949 Regular expression used to recognize comments. Customize to support
|
|
3950 ksh-like languages. Default value is \"\\s *#\".
|
|
3951
|
|
3952 Style Guide.
|
|
3953 By setting
|
|
3954 (setq ksh-indent default-tab-width)
|
|
3955 (setq ksh-group-offset 0)
|
|
3956
|
|
3957 The following style is obtained:
|
|
3958
|
|
3959 if [ -z $foo ]
|
|
3960 then
|
|
3961 bar # <-- ksh-group-offset is additive to ksh-indent
|
|
3962 foo
|
|
3963 fi
|
|
3964
|
|
3965 By setting
|
|
3966 (setq ksh-indent default-tab-width)
|
|
3967 (setq ksh-group-offset (- 0 ksh-indent))
|
|
3968
|
|
3969 The following style is obtained:
|
|
3970
|
|
3971 if [ -z $foo ]
|
|
3972 then
|
|
3973 bar
|
|
3974 foo
|
|
3975 fi
|
|
3976
|
|
3977 By setting
|
|
3978 (setq ksh-case-item-offset 1)
|
|
3979 (setq ksh-case-indent nil)
|
|
3980
|
|
3981 The following style is obtained:
|
|
3982
|
|
3983 case x in *
|
|
3984 foo) bar # <-- ksh-case-item-offset
|
|
3985 baz;; # <-- ksh-case-indent aligns with \")\"
|
|
3986 foobar) foo
|
|
3987 bar;;
|
|
3988 esac
|
|
3989
|
|
3990 By setting
|
|
3991 (setq ksh-case-item-offset 1)
|
|
3992 (setq ksh-case-indent 6)
|
|
3993
|
|
3994 The following style is obtained:
|
|
3995
|
|
3996 case x in *
|
|
3997 foo) bar # <-- ksh-case-item-offset
|
|
3998 baz;; # <-- ksh-case-indent
|
|
3999 foobar) foo
|
|
4000 bar;;
|
|
4001 esac
|
|
4002
|
|
4003
|
|
4004 Installation:
|
|
4005
|
|
4006 (setq ksh-mode-hook
|
|
4007 (function (lambda ()
|
|
4008 (font-lock-mode 1) ;; font-lock the buffer
|
|
4009 (setq ksh-indent 8)
|
|
4010 (setq ksh-group-offset -8)
|
|
4011 (setq ksh-brace-offset -8)
|
|
4012 (setq ksh-tab-always-indent t)
|
|
4013 (setq ksh-match-and-tell t)
|
|
4014 (setq ksh-align-to-keyword t) ;; Turn on keyword alignment
|
|
4015 )))" t nil)
|
|
4016
|
|
4017 ;;;***
|
|
4018
|
|
4019 ;;;### (autoloads (m4-mode) "m4-mode" "modes/m4-mode.el")
|
|
4020
|
|
4021 (autoload 'm4-mode "m4-mode" "\
|
|
4022 A major-mode to edit m4 macro files
|
|
4023 \\{m4-mode-map}
|
|
4024 " t nil)
|
|
4025
|
|
4026 ;;;***
|
|
4027
|
|
4028 ;;;### (autoloads (define-mail-alias build-mail-aliases mail-aliases-setup) "mail-abbrevs" "modes/mail-abbrevs.el")
|
|
4029
|
120
|
4030 (defcustom mail-abbrev-mailrc-file nil "Name of file with mail aliases. If nil, ~/.mailrc is used." :type '(choice (const :tag "Default" nil) file) :group 'mail-abbrevs)
|
78
|
4031
|
|
4032 (defvar mail-aliases nil "\
|
|
4033 Word-abbrev table of mail address aliases.
|
|
4034 If this is nil, it means the aliases have not yet been initialized and
|
|
4035 should be read from the .mailrc file. (This is distinct from there being
|
|
4036 no aliases, which is represented by this being a table with no entries.)")
|
|
4037
|
|
4038 (autoload 'mail-aliases-setup "mail-abbrevs" nil nil nil)
|
|
4039
|
|
4040 (autoload 'build-mail-aliases "mail-abbrevs" "\
|
|
4041 Read mail aliases from .mailrc and set mail-aliases." nil nil)
|
|
4042
|
|
4043 (autoload 'define-mail-alias "mail-abbrevs" "\
|
|
4044 Define NAME as a mail-alias that translates to DEFINITION.
|
|
4045 If DEFINITION contains multiple addresses, separate them with commas." t nil)
|
|
4046
|
|
4047 ;;;***
|
|
4048
|
|
4049 ;;;### (autoloads (makefile-mode) "make-mode" "modes/make-mode.el")
|
|
4050
|
|
4051 (autoload 'makefile-mode "make-mode" "\
|
|
4052 Major mode for editing Makefiles.
|
|
4053 This function ends by invoking the function(s) `makefile-mode-hook'.
|
|
4054
|
|
4055 \\{makefile-mode-map}
|
|
4056
|
|
4057 In the browser, use the following keys:
|
|
4058
|
|
4059 \\{makefile-browser-map}
|
|
4060
|
|
4061 Makefile mode can be configured by modifying the following variables:
|
|
4062
|
|
4063 makefile-browser-buffer-name:
|
|
4064 Name of the macro- and target browser buffer.
|
|
4065
|
|
4066 makefile-target-colon:
|
|
4067 The string that gets appended to all target names
|
|
4068 inserted by `makefile-insert-target'.
|
|
4069 \":\" or \"::\" are quite common values.
|
|
4070
|
|
4071 makefile-macro-assign:
|
|
4072 The string that gets appended to all macro names
|
|
4073 inserted by `makefile-insert-macro'.
|
|
4074 The normal value should be \" = \", since this is what
|
|
4075 standard make expects. However, newer makes such as dmake
|
|
4076 allow a larger variety of different macro assignments, so you
|
|
4077 might prefer to use \" += \" or \" := \" .
|
|
4078
|
|
4079 makefile-tab-after-target-colon:
|
|
4080 If you want a TAB (instead of a space) to be appended after the
|
|
4081 target colon, then set this to a non-nil value.
|
|
4082
|
|
4083 makefile-browser-leftmost-column:
|
|
4084 Number of blanks to the left of the browser selection mark.
|
|
4085
|
|
4086 makefile-browser-cursor-column:
|
|
4087 Column in which the cursor is positioned when it moves
|
|
4088 up or down in the browser.
|
|
4089
|
|
4090 makefile-browser-selected-mark:
|
|
4091 String used to mark selected entries in the browser.
|
|
4092
|
|
4093 makefile-browser-unselected-mark:
|
|
4094 String used to mark unselected entries in the browser.
|
|
4095
|
|
4096 makefile-browser-auto-advance-after-selection-p:
|
|
4097 If this variable is set to a non-nil value the cursor
|
|
4098 will automagically advance to the next line after an item
|
|
4099 has been selected in the browser.
|
|
4100
|
|
4101 makefile-pickup-everything-picks-up-filenames-p:
|
|
4102 If this variable is set to a non-nil value then
|
|
4103 `makefile-pickup-everything' also picks up filenames as targets
|
|
4104 (i.e. it calls `makefile-find-filenames-as-targets'), otherwise
|
|
4105 filenames are omitted.
|
|
4106
|
|
4107 makefile-cleanup-continuations-p:
|
|
4108 If this variable is set to a non-nil value then makefile-mode
|
|
4109 will assure that no line in the file ends with a backslash
|
|
4110 (the continuation character) followed by any whitespace.
|
|
4111 This is done by silently removing the trailing whitespace, leaving
|
|
4112 the backslash itself intact.
|
|
4113 IMPORTANT: Please note that enabling this option causes makefile-mode
|
|
4114 to MODIFY A FILE WITHOUT YOUR CONFIRMATION when \"it seems necessary\".
|
|
4115
|
|
4116 makefile-browser-hook:
|
|
4117 A function or list of functions to be called just before the
|
|
4118 browser is entered. This is executed in the makefile buffer.
|
|
4119
|
|
4120 makefile-special-targets-list:
|
|
4121 List of special targets. You will be offered to complete
|
|
4122 on one of those in the minibuffer whenever you enter a `.'.
|
|
4123 at the beginning of a line in Makefile mode." t nil)
|
|
4124
|
|
4125 ;;;***
|
|
4126
|
|
4127 ;;;### (autoloads (modula-2-mode) "modula2" "modes/modula2.el")
|
|
4128
|
|
4129 (autoload 'modula-2-mode "modula2" "\
|
|
4130 This is a mode intended to support program development in Modula-2.
|
|
4131 All control constructs of Modula-2 can be reached by typing C-c
|
|
4132 followed by the first character of the construct.
|
|
4133 \\<m2-mode-map>
|
|
4134 \\[m2-begin] begin \\[m2-case] case
|
|
4135 \\[m2-definition] definition \\[m2-else] else
|
|
4136 \\[m2-for] for \\[m2-header] header
|
|
4137 \\[m2-if] if \\[m2-module] module
|
|
4138 \\[m2-loop] loop \\[m2-or] or
|
|
4139 \\[m2-procedure] procedure Control-c Control-w with
|
|
4140 \\[m2-record] record \\[m2-stdio] stdio
|
|
4141 \\[m2-type] type \\[m2-until] until
|
|
4142 \\[m2-var] var \\[m2-while] while
|
|
4143 \\[m2-export] export \\[m2-import] import
|
|
4144 \\[m2-begin-comment] begin-comment \\[m2-end-comment] end-comment
|
|
4145 \\[suspend-emacs] suspend Emacs \\[m2-toggle] toggle
|
|
4146 \\[m2-compile] compile \\[m2-next-error] next-error
|
|
4147 \\[m2-link] link
|
|
4148
|
|
4149 `m2-indent' controls the number of spaces for each indentation.
|
|
4150 `m2-compile-command' holds the command to compile a Modula-2 program.
|
|
4151 `m2-link-command' holds the command to link a Modula-2 program." t nil)
|
|
4152
|
|
4153 ;;;***
|
|
4154
|
|
4155 ;;;### (autoloads (electric-nroff-mode nroff-mode) "nroff-mode" "modes/nroff-mode.el")
|
|
4156
|
|
4157 (autoload 'nroff-mode "nroff-mode" "\
|
|
4158 Major mode for editing text intended for nroff to format.
|
|
4159 \\{nroff-mode-map}
|
|
4160 Turning on Nroff mode runs `text-mode-hook', then `nroff-mode-hook'.
|
|
4161 Also, try `nroff-electric-mode', for automatically inserting
|
|
4162 closing requests for requests that are used in matched pairs." t nil)
|
|
4163
|
|
4164 (autoload 'electric-nroff-mode "nroff-mode" "\
|
|
4165 Toggle `nroff-electric-newline' minor mode.
|
|
4166 `nroff-electric-newline' forces Emacs to check for an nroff request at the
|
|
4167 beginning of the line, and insert the matching closing request if necessary.
|
|
4168 This command toggles that mode (off->on, on->off), with an argument,
|
|
4169 turns it on iff arg is positive, otherwise off." t nil)
|
|
4170
|
|
4171 (defvar nroff-electric-mode nil "\
|
|
4172 Non-nil if in electric-nroff minor mode.")
|
|
4173
|
|
4174 (add-minor-mode 'nroff-electric-mode " Electric" nil nil 'electric-nroff-mode)
|
|
4175
|
|
4176 ;;;***
|
|
4177
|
|
4178 ;;;### (autoloads (outl-mouse-minor-mode outl-mouse-mode) "outl-mouse" "modes/outl-mouse.el")
|
|
4179
|
|
4180 (autoload 'outl-mouse-mode "outl-mouse" "\
|
|
4181 Calls outline-mode, with outl-mouse extensions" t nil)
|
|
4182
|
|
4183 (autoload 'outl-mouse-minor-mode "outl-mouse" "\
|
|
4184 Toggles outline-minor-mode, with outl-mouse extensions" t nil)
|
|
4185
|
|
4186 ;;;***
|
|
4187
|
|
4188 ;;;### (autoloads (outline-minor-mode outline-mode) "outline" "modes/outline.el")
|
|
4189
|
|
4190 (defvar outline-minor-mode nil "\
|
|
4191 Non-nil if using Outline mode as a minor mode of some other mode.")
|
|
4192
|
|
4193 (make-variable-buffer-local 'outline-minor-mode)
|
|
4194
|
|
4195 (put 'outline-minor-mode 'permanent-local t)
|
|
4196
|
|
4197 (add-minor-mode 'outline-minor-mode " Outl")
|
|
4198
|
|
4199 (autoload 'outline-mode "outline" "\
|
|
4200 Set major mode for editing outlines with selective display.
|
|
4201 Headings are lines which start with asterisks: one for major headings,
|
|
4202 two for subheadings, etc. Lines not starting with asterisks are body lines.
|
|
4203
|
|
4204 Body text or subheadings under a heading can be made temporarily
|
|
4205 invisible, or visible again. Invisible lines are attached to the end
|
|
4206 of the heading, so they move with it, if the line is killed and yanked
|
|
4207 back. A heading with text hidden under it is marked with an ellipsis (...).
|
|
4208
|
|
4209 Commands:\\<outline-mode-map>
|
|
4210 \\[outline-next-visible-heading] outline-next-visible-heading move by visible headings
|
|
4211 \\[outline-previous-visible-heading] outline-previous-visible-heading
|
|
4212 \\[outline-forward-same-level] outline-forward-same-level similar but skip subheadings
|
|
4213 \\[outline-backward-same-level] outline-backward-same-level
|
|
4214 \\[outline-up-heading] outline-up-heading move from subheading to heading
|
|
4215
|
|
4216 \\[hide-body] make all text invisible (not headings).
|
|
4217 \\[show-all] make everything in buffer visible.
|
|
4218
|
|
4219 The remaining commands are used when point is on a heading line.
|
|
4220 They apply to some of the body or subheadings of that heading.
|
|
4221 \\[hide-subtree] hide-subtree make body and subheadings invisible.
|
|
4222 \\[show-subtree] show-subtree make body and subheadings visible.
|
|
4223 \\[show-children] show-children make direct subheadings visible.
|
|
4224 No effect on body, or subheadings 2 or more levels down.
|
|
4225 With arg N, affects subheadings N levels down.
|
|
4226 \\[hide-entry] make immediately following body invisible.
|
|
4227 \\[show-entry] make it visible.
|
|
4228 \\[hide-leaves] make body under heading and under its subheadings invisible.
|
|
4229 The subheadings remain visible.
|
|
4230 \\[show-branches] make all subheadings at all levels visible.
|
|
4231
|
|
4232 The variable `outline-regexp' can be changed to control what is a heading.
|
|
4233 A line is a heading if `outline-regexp' matches something at the
|
|
4234 beginning of the line. The longer the match, the deeper the level.
|
|
4235
|
|
4236 Turning on outline mode calls the value of `text-mode-hook' and then of
|
|
4237 `outline-mode-hook', if they are non-nil." t nil)
|
|
4238
|
|
4239 (autoload 'outline-minor-mode "outline" "\
|
|
4240 Toggle Outline minor mode.
|
|
4241 With arg, turn Outline minor mode on if arg is positive, off otherwise.
|
|
4242 See the command `outline-mode' for more information on this mode." t nil)
|
|
4243
|
|
4244 ;;;***
|
|
4245
|
|
4246 ;;;### (autoloads (pascal-mode) "pascal" "modes/pascal.el")
|
|
4247
|
|
4248 (autoload 'pascal-mode "pascal" "\
|
|
4249 Major mode for editing Pascal code. \\<pascal-mode-map>
|
|
4250 TAB indents for Pascal code. Delete converts tabs to spaces as it moves back.
|
|
4251
|
|
4252 \\[pascal-complete-word] completes the word around current point with respect to position in code
|
|
4253 \\[pascal-show-completions] shows all possible completions at this point.
|
|
4254
|
|
4255 Other useful functions are:
|
|
4256
|
|
4257 \\[pascal-mark-defun] - Mark function.
|
|
4258 \\[pascal-insert-block] - insert begin ... end;
|
|
4259 \\[pascal-star-comment] - insert (* ... *)
|
|
4260 \\[pascal-comment-area] - Put marked area in a comment, fixing nested comments.
|
|
4261 \\[pascal-uncomment-area] - Uncomment an area commented with \\[pascal-comment-area].
|
|
4262 \\[pascal-beg-of-defun] - Move to beginning of current function.
|
|
4263 \\[pascal-end-of-defun] - Move to end of current function.
|
|
4264 \\[pascal-goto-defun] - Goto function prompted for in the minibuffer.
|
|
4265 \\[pascal-outline] - Enter pascal-outline-mode (see also pascal-outline).
|
|
4266
|
|
4267 Variables controlling indentation/edit style:
|
|
4268
|
|
4269 pascal-indent-level (default 3)
|
|
4270 Indentation of Pascal statements with respect to containing block.
|
|
4271 pascal-case-indent (default 2)
|
|
4272 Indentation for case statements.
|
|
4273 pascal-auto-newline (default nil)
|
110
|
4274 Non-nil means automatically newline after semicolons and the punctuation mark
|
78
|
4275 after an end.
|
|
4276 pascal-tab-always-indent (default t)
|
|
4277 Non-nil means TAB in Pascal mode should always reindent the current line,
|
|
4278 regardless of where in the line point is when the TAB command is used.
|
|
4279 pascal-auto-endcomments (default t)
|
|
4280 Non-nil means a comment { ... } is set after the ends which ends cases and
|
|
4281 functions. The name of the function or case will be set between the braces.
|
|
4282 pascal-auto-lineup (default t)
|
108
|
4283 List of contexts where auto lineup of :'s or ='s should be done.
|
78
|
4284
|
|
4285 See also the user variables pascal-type-keywords, pascal-start-keywords and
|
|
4286 pascal-separator-keywords.
|
|
4287
|
|
4288 Turning on Pascal mode calls the value of the variable pascal-mode-hook with
|
|
4289 no args, if that value is non-nil." t nil)
|
|
4290
|
|
4291 ;;;***
|
|
4292
|
|
4293 ;;;### (autoloads (perl-mode) "perl-mode" "modes/perl-mode.el")
|
|
4294
|
|
4295 (autoload 'perl-mode "perl-mode" "\
|
|
4296 Major mode for editing Perl code.
|
|
4297 Expression and list commands understand all Perl brackets.
|
|
4298 Tab indents for Perl code.
|
|
4299 Comments are delimited with # ... \\n.
|
|
4300 Paragraphs are separated by blank lines only.
|
|
4301 Delete converts tabs to spaces as it moves back.
|
|
4302 \\{perl-mode-map}
|
|
4303 Variables controlling indentation style:
|
|
4304 perl-tab-always-indent
|
|
4305 Non-nil means TAB in Perl mode should always indent the current line,
|
|
4306 regardless of where in the line point is when the TAB command is used.
|
|
4307 perl-tab-to-comment
|
|
4308 Non-nil means that for lines which don't need indenting, TAB will
|
|
4309 either delete an empty comment, indent an existing comment, move
|
|
4310 to end-of-line, or if at end-of-line already, create a new comment.
|
|
4311 perl-nochange
|
|
4312 Lines starting with this regular expression are not auto-indented.
|
|
4313 perl-indent-level
|
|
4314 Indentation of Perl statements within surrounding block.
|
|
4315 The surrounding block's indentation is the indentation
|
|
4316 of the line on which the open-brace appears.
|
|
4317 perl-continued-statement-offset
|
|
4318 Extra indentation given to a substatement, such as the
|
|
4319 then-clause of an if or body of a while.
|
|
4320 perl-continued-brace-offset
|
|
4321 Extra indentation given to a brace that starts a substatement.
|
|
4322 This is in addition to `perl-continued-statement-offset'.
|
|
4323 perl-brace-offset
|
|
4324 Extra indentation for line if it starts with an open brace.
|
|
4325 perl-brace-imaginary-offset
|
|
4326 An open brace following other text is treated as if it were
|
|
4327 this far to the right of the start of its line.
|
|
4328 perl-label-offset
|
|
4329 Extra indentation for line that is a label.
|
|
4330
|
|
4331 Various indentation styles: K&R BSD BLK GNU LW
|
|
4332 perl-indent-level 5 8 0 2 4
|
|
4333 perl-continued-statement-offset 5 8 4 2 4
|
|
4334 perl-continued-brace-offset 0 0 0 0 -4
|
|
4335 perl-brace-offset -5 -8 0 0 0
|
|
4336 perl-brace-imaginary-offset 0 0 4 0 0
|
|
4337 perl-label-offset -5 -8 -2 -2 -2
|
|
4338
|
|
4339 Turning on Perl mode runs the normal hook `perl-mode-hook'." t nil)
|
|
4340
|
|
4341 ;;;***
|
|
4342
|
|
4343 ;;;### (autoloads (picture-mode) "picture" "modes/picture.el")
|
|
4344
|
|
4345 (autoload 'picture-mode "picture" "\
|
|
4346 Switch to Picture mode, in which a quarter-plane screen model is used.
|
|
4347 Printing characters replace instead of inserting themselves with motion
|
|
4348 afterwards settable by these commands:
|
|
4349 C-c < Move left after insertion.
|
|
4350 C-c > Move right after insertion.
|
|
4351 C-c ^ Move up after insertion.
|
|
4352 C-c . Move down after insertion.
|
|
4353 C-c ` Move northwest (nw) after insertion.
|
|
4354 C-c ' Move northeast (ne) after insertion.
|
|
4355 C-c / Move southwest (sw) after insertion.
|
|
4356 C-c \\ Move southeast (se) after insertion.
|
|
4357 The current direction is displayed in the modeline. The initial
|
|
4358 direction is right. Whitespace is inserted and tabs are changed to
|
|
4359 spaces when required by movement. You can move around in the buffer
|
|
4360 with these commands:
|
|
4361 \\[picture-move-down] Move vertically to SAME column in previous line.
|
|
4362 \\[picture-move-up] Move vertically to SAME column in next line.
|
|
4363 \\[picture-end-of-line] Move to column following last non-whitespace character.
|
|
4364 \\[picture-forward-column] Move right inserting spaces if required.
|
|
4365 \\[picture-backward-column] Move left changing tabs to spaces if required.
|
|
4366 C-c C-f Move in direction of current picture motion.
|
|
4367 C-c C-b Move in opposite direction of current picture motion.
|
|
4368 Return Move to beginning of next line.
|
|
4369 You can edit tabular text with these commands:
|
|
4370 M-Tab Move to column beneath (or at) next interesting character.
|
|
4371 `Indents' relative to a previous line.
|
|
4372 Tab Move to next stop in tab stop list.
|
|
4373 C-c Tab Set tab stops according to context of this line.
|
|
4374 With ARG resets tab stops to default (global) value.
|
|
4375 See also documentation of variable picture-tab-chars
|
|
4376 which defines \"interesting character\". You can manually
|
|
4377 change the tab stop list with command \\[edit-tab-stops].
|
|
4378 You can manipulate text with these commands:
|
|
4379 C-d Clear (replace) ARG columns after point without moving.
|
|
4380 C-c C-d Delete char at point - the command normally assigned to C-d.
|
|
4381 \\[picture-backward-clear-column] Clear (replace) ARG columns before point, moving back over them.
|
|
4382 \\[picture-clear-line] Clear ARG lines, advancing over them. The cleared
|
|
4383 text is saved in the kill ring.
|
|
4384 \\[picture-open-line] Open blank line(s) beneath current line.
|
|
4385 You can manipulate rectangles with these commands:
|
|
4386 C-c C-k Clear (or kill) a rectangle and save it.
|
|
4387 C-c C-w Like C-c C-k except rectangle is saved in named register.
|
|
4388 C-c C-y Overlay (or insert) currently saved rectangle at point.
|
|
4389 C-c C-x Like C-c C-y except rectangle is taken from named register.
|
|
4390 \\[copy-rectangle-to-register] Copies a rectangle to a register.
|
|
4391 \\[advertised-undo] Can undo effects of rectangle overlay commands
|
|
4392 commands if invoked soon enough.
|
|
4393 You can return to the previous mode with:
|
|
4394 C-c C-c Which also strips trailing whitespace from every line.
|
|
4395 Stripping is suppressed by supplying an argument.
|
|
4396
|
|
4397 Entry to this mode calls the value of picture-mode-hook if non-nil.
|
|
4398
|
|
4399 Note that Picture mode commands will work outside of Picture mode, but
|
|
4400 they are not defaultly assigned to keys." t nil)
|
|
4401
|
|
4402 (defalias 'edit-picture 'picture-mode)
|
|
4403
|
|
4404 ;;;***
|
|
4405
|
|
4406 ;;;### (autoloads (postscript-mode) "postscript" "modes/postscript.el")
|
|
4407
|
|
4408 (autoload 'postscript-mode "postscript" "\
|
|
4409 Major mode for editing PostScript files.
|
|
4410
|
|
4411 \\[ps-execute-buffer] will send the contents of the buffer to the NeWS
|
|
4412 server using psh(1). \\[ps-execute-region] sends the current region.
|
|
4413 \\[ps-shell] starts an interactive psh(1) window which will be used for
|
|
4414 subsequent \\[ps-execute-buffer] or \\[ps-execute-region] commands.
|
|
4415
|
|
4416 In this mode, TAB and \\[indent-region] attempt to indent code
|
|
4417 based on the position of {}, [], and begin/end pairs. The variable
|
|
4418 ps-indent-level controls the amount of indentation used inside
|
|
4419 arrays and begin/end pairs.
|
|
4420
|
|
4421 \\{ps-mode-map}
|
|
4422
|
|
4423 \\[postscript-mode] calls the value of the variable postscript-mode-hook
|
|
4424 with no args, if that value is non-nil." t nil)
|
|
4425
|
|
4426 ;;;***
|
|
4427
|
|
4428 ;;;### (autoloads (run-prolog inferior-prolog-mode prolog-mode) "prolog" "modes/prolog.el")
|
|
4429
|
|
4430 (autoload 'prolog-mode "prolog" "\
|
|
4431 Major mode for editing Prolog code for Prologs.
|
|
4432 Blank lines and `%%...' separate paragraphs. `%'s start comments.
|
|
4433 Commands:
|
|
4434 \\{prolog-mode-map}
|
|
4435 Entry to this mode calls the value of `prolog-mode-hook'
|
|
4436 if that value is non-nil." t nil)
|
|
4437
|
|
4438 (autoload 'inferior-prolog-mode "prolog" "\
|
|
4439 Major mode for interacting with an inferior Prolog process.
|
|
4440
|
|
4441 The following commands are available:
|
|
4442 \\{inferior-prolog-mode-map}
|
|
4443
|
|
4444 Entry to this mode calls the value of `prolog-mode-hook' with no arguments,
|
|
4445 if that value is non-nil. Likewise with the value of `comint-mode-hook'.
|
|
4446 `prolog-mode-hook' is called after `comint-mode-hook'.
|
|
4447
|
|
4448 You can send text to the inferior Prolog from other buffers
|
|
4449 using the commands `send-region', `send-string' and \\[prolog-consult-region].
|
|
4450
|
|
4451 Commands:
|
|
4452 Tab indents for Prolog; with argument, shifts rest
|
|
4453 of expression rigidly with the current line.
|
|
4454 Paragraphs are separated only by blank lines and '%%'.
|
|
4455 '%'s start comments.
|
|
4456
|
|
4457 Return at end of buffer sends line as input.
|
|
4458 Return not at end copies rest of line to end and sends it.
|
|
4459 \\[comint-kill-input] and \\[backward-kill-word] are kill commands, imitating normal Unix input editing.
|
|
4460 \\[comint-interrupt-subjob] interrupts the shell or its current subjob if any.
|
|
4461 \\[comint-stop-subjob] stops. \\[comint-quit-subjob] sends quit signal." t nil)
|
|
4462
|
|
4463 (autoload 'run-prolog "prolog" "\
|
|
4464 Run an inferior Prolog process, input and output via buffer *prolog*." t nil)
|
|
4465
|
|
4466 ;;;***
|
|
4467
|
|
4468 ;;;### (autoloads (py-shell python-mode) "python-mode" "modes/python-mode.el")
|
|
4469
|
|
4470 (eval-when-compile (condition-case nil (progn (require 'cl) (require 'imenu)) (error nil)))
|
|
4471
|
|
4472 (autoload 'python-mode "python-mode" "\
|
|
4473 Major mode for editing Python files.
|
|
4474 To submit a problem report, enter `\\[py-submit-bug-report]' from a
|
|
4475 `python-mode' buffer. Do `\\[py-describe-mode]' for detailed
|
|
4476 documentation. To see what version of `python-mode' you are running,
|
|
4477 enter `\\[py-version]'.
|
|
4478
|
|
4479 This mode knows about Python indentation, tokens, comments and
|
|
4480 continuation lines. Paragraphs are separated by blank lines only.
|
|
4481
|
|
4482 COMMANDS
|
|
4483 \\{py-mode-map}
|
|
4484 VARIABLES
|
|
4485
|
|
4486 py-indent-offset indentation increment
|
|
4487 py-block-comment-prefix comment string used by comment-region
|
|
4488 py-python-command shell command to invoke Python interpreter
|
|
4489 py-scroll-process-buffer always scroll Python process buffer
|
|
4490 py-temp-directory directory used for temp files (if needed)
|
|
4491 py-beep-if-tab-change ring the bell if tab-width is changed" t nil)
|
|
4492
|
|
4493 (autoload 'py-shell "python-mode" "\
|
|
4494 Start an interactive Python interpreter in another window.
|
|
4495 This is like Shell mode, except that Python is running in the window
|
|
4496 instead of a shell. See the `Interactive Shell' and `Shell Mode'
|
|
4497 sections of the Emacs manual for details, especially for the key
|
|
4498 bindings active in the `*Python*' buffer.
|
|
4499
|
|
4500 See the docs for variable `py-scroll-buffer' for info on scrolling
|
|
4501 behavior in the process window.
|
|
4502
|
|
4503 Warning: Don't use an interactive Python if you change sys.ps1 or
|
|
4504 sys.ps2 from their default values, or if you're running code that
|
|
4505 prints `>>> ' or `... ' at the start of a line. `python-mode' can't
|
|
4506 distinguish your output from Python's output, and assumes that `>>> '
|
|
4507 at the start of a line is a prompt from Python. Similarly, the Emacs
|
|
4508 Shell mode code assumes that both `>>> ' and `... ' at the start of a
|
|
4509 line are Python prompts. Bad things can happen if you fool either
|
|
4510 mode.
|
|
4511
|
|
4512 Warning: If you do any editing *in* the process buffer *while* the
|
|
4513 buffer is accepting output from Python, do NOT attempt to `undo' the
|
|
4514 changes. Some of the output (nowhere near the parts you changed!) may
|
|
4515 be lost if you do. This appears to be an Emacs bug, an unfortunate
|
|
4516 interaction between undo and process filters; the same problem exists in
|
|
4517 non-Python process buffers using the default (Emacs-supplied) process
|
|
4518 filter." t nil)
|
|
4519
|
|
4520 ;;;***
|
|
4521
|
|
4522 ;;;### (autoloads (rexx-mode) "rexx-mode" "modes/rexx-mode.el")
|
|
4523
|
|
4524 (autoload 'rexx-mode "rexx-mode" "\
|
|
4525 Major mode for editing REXX code.
|
|
4526 \\{rexx-mode-map}
|
|
4527
|
|
4528 Variables controlling indentation style:
|
|
4529 rexx-indent
|
|
4530 The basic indentation for do-blocks.
|
|
4531 rexx-end-indent
|
|
4532 The relative offset of the \"end\" statement. 0 places it in the
|
|
4533 same column as the statements of the block. Setting it to the same
|
|
4534 value as rexx-indent places the \"end\" under the do-line.
|
|
4535 rexx-cont-indent
|
|
4536 The indention for lines following \"then\", \"else\" and \",\"
|
|
4537 (continued) lines.
|
|
4538 rexx-tab-always-indent
|
|
4539 Non-nil means TAB in REXX mode should always reindent the current
|
|
4540 line, regardless of where in the line the point is when the TAB
|
|
4541 command is used.
|
|
4542
|
|
4543 If you have set rexx-end-indent to a nonzero value, you probably want to
|
|
4544 remap RETURN to rexx-indent-newline-indent. It makes sure that lines
|
|
4545 indents correctly when you press RETURN.
|
|
4546
|
108
|
4547 An extensive abbreviation table consisting of all the keywords of REXX are
|
78
|
4548 supplied. Expanded keywords are converted into upper case making it
|
|
4549 easier to distinguish them. To use this feature the buffer must be in
|
|
4550 abbrev-mode. (See example below.)
|
|
4551
|
|
4552 Turning on REXX mode calls the value of the variable rexx-mode-hook with
|
|
4553 no args, if that value is non-nil.
|
|
4554
|
|
4555 For example:
|
|
4556 \(setq rexx-mode-hook '(lambda ()
|
|
4557 (setq rexx-indent 4)
|
|
4558 (setq rexx-end-indent 4)
|
|
4559 (setq rexx-cont-indent 4)
|
|
4560 (local-set-key \"\\C-m\" 'rexx-indent-newline-indent)
|
|
4561 (abbrev-mode 1)
|
|
4562 ))
|
|
4563
|
|
4564 will make the END aligned with the DO/SELECT. It will indent blocks and
|
108
|
4565 IF-statements four steps and make sure that the END jumps into the
|
|
4566 correct position when RETURN is pressed. Finally it will use the abbrev
|
78
|
4567 table to convert all REXX keywords into upper case." t nil)
|
|
4568
|
|
4569 ;;;***
|
|
4570
|
|
4571 ;;;### (autoloads (resize-minibuffer-mode) "rsz-minibuf" "modes/rsz-minibuf.el")
|
|
4572
|
|
4573 (defvar resize-minibuffer-mode nil "\
|
|
4574 *If non-`nil', resize the minibuffer so its entire contents are visible.")
|
|
4575
|
|
4576 (defvar resize-minibuffer-window-max-height nil "\
|
|
4577 *Maximum size the minibuffer window is allowed to become.
|
|
4578 If less than 1 or not a number, the limit is the height of the frame in
|
|
4579 which the active minibuffer window resides.")
|
|
4580
|
|
4581 (defvar resize-minibuffer-window-exactly t "\
|
|
4582 *If non-`nil', make minibuffer exactly the size needed to display all its contents.
|
|
4583 Otherwise, the minibuffer window can temporarily increase in size but
|
|
4584 never get smaller while it is active.")
|
|
4585
|
|
4586 (defvar resize-minibuffer-frame nil "\
|
|
4587 *If non-`nil' and the active minibuffer is the sole window in its frame, allow changing the frame height.")
|
|
4588
|
|
4589 (defvar resize-minibuffer-frame-max-height nil "\
|
|
4590 *Maximum size the minibuffer frame is allowed to become.
|
|
4591 If less than 1 or not a number, there is no limit.")
|
|
4592
|
|
4593 (defvar resize-minibuffer-frame-exactly nil "\
|
|
4594 *If non-`nil', make minibuffer frame exactly the size needed to display all its contents.
|
|
4595 Otherwise, the minibuffer frame can temporarily increase in size but
|
|
4596 never get smaller while it is active.")
|
|
4597
|
|
4598 (autoload 'resize-minibuffer-mode "rsz-minibuf" "\
|
|
4599 Enable or disable resize-minibuffer mode.
|
|
4600 A negative prefix argument disables this mode. A positive argument or
|
|
4601 argument of 0 enables it.
|
|
4602
|
|
4603 When this minor mode is enabled, the minibuffer is dynamically resized to
|
|
4604 contain the entire region of text put in it as you type.
|
|
4605
|
|
4606 The variable `resize-minibuffer-mode' is set to t or nil depending on
|
|
4607 whether this mode is active or not.
|
|
4608
|
|
4609 The maximum height to which the minibuffer can grow is controlled by the
|
|
4610 variable `resize-minibuffer-window-max-height'.
|
|
4611
|
|
4612 The variable `resize-minibuffer-window-exactly' determines whether the
|
|
4613 minibuffer window should ever be shrunk to make it no larger than needed to
|
|
4614 display its contents.
|
|
4615
|
108
|
4616 When using a window system, it is possible for a minibuffer to be the sole
|
78
|
4617 window in a frame. Since that window is already its maximum size, the only
|
|
4618 way to make more text visible at once is to increase the size of the frame.
|
|
4619 The variable `resize-minibuffer-frame' controls whether this should be
|
|
4620 done. The variables `resize-minibuffer-frame-max-height' and
|
|
4621 `resize-minibuffer-frame-exactly' are analogous to their window
|
|
4622 counterparts." t nil)
|
|
4623
|
|
4624 ;;;***
|
|
4625
|
|
4626 ;;;### (autoloads (scheme-mode) "scheme" "modes/scheme.el")
|
|
4627
|
|
4628 (autoload 'scheme-mode "scheme" "\
|
|
4629 Major mode for editing Scheme code.
|
|
4630 Editing commands are similar to those of lisp-mode.
|
|
4631
|
|
4632 In addition, if an inferior Scheme process is running, some additional
|
|
4633 commands will be defined, for evaluating expressions and controlling
|
|
4634 the interpreter, and the state of the process will be displayed in the
|
|
4635 modeline of all Scheme buffers. The names of commands that interact
|
|
4636 with the Scheme process start with \"xscheme-\". For more information
|
|
4637 see the documentation for xscheme-interaction-mode.
|
|
4638
|
|
4639 Commands:
|
|
4640 Delete converts tabs to spaces as it moves back.
|
|
4641 Blank lines separate paragraphs. Semicolons start comments.
|
|
4642 \\{scheme-mode-map}
|
|
4643 Entry to this mode calls the value of scheme-mode-hook
|
|
4644 if that value is non-nil." t nil)
|
|
4645
|
|
4646 ;;;***
|
|
4647
|
|
4648 ;;;### (autoloads (scribe-mode) "scribe" "modes/scribe.el")
|
|
4649
|
|
4650 (autoload 'scribe-mode "scribe" "\
|
|
4651 Major mode for editing files of Scribe (a text formatter) source.
|
|
4652 Scribe-mode is similar text-mode, with a few extra commands added.
|
|
4653 \\{scribe-mode-map}
|
|
4654
|
|
4655 Interesting variables:
|
|
4656
|
|
4657 scribe-fancy-paragraphs
|
|
4658 Non-nil makes Scribe mode use a different style of paragraph separation.
|
|
4659
|
|
4660 scribe-electric-quote
|
|
4661 Non-nil makes insert of double quote use `` or '' depending on context.
|
|
4662
|
|
4663 scribe-electric-parenthesis
|
|
4664 Non-nil makes an open-parenthesis char (one of `([<{')
|
|
4665 automatically insert its close if typed after an @Command form." t nil)
|
|
4666
|
|
4667 ;;;***
|
|
4668
|
114
|
4669 ;;;### (autoloads (mail-other-frame mail-other-window mail mail-mode user-mail-address) "sendmail" "modes/sendmail.el")
|
78
|
4670
|
|
4671 (defvar mail-from-style 'angles "\
|
|
4672 *Specifies how \"From:\" fields look.
|
|
4673
|
|
4674 If `nil', they contain just the return address like:
|
|
4675 king@grassland.com
|
|
4676 If `parens', they look like:
|
|
4677 king@grassland.com (Elvis Parsley)
|
|
4678 If `angles', they look like:
|
|
4679 Elvis Parsley <king@grassland.com>")
|
|
4680
|
|
4681 (defvar mail-self-blind nil "\
|
|
4682 Non-nil means insert BCC to self in messages to be sent.
|
|
4683 This is done when the message is initialized,
|
|
4684 so you can remove or alter the BCC field to override the default.")
|
|
4685
|
|
4686 (defvar mail-interactive nil "\
|
|
4687 Non-nil means when sending a message wait for and display errors.
|
|
4688 nil means let mailer mail back a message to report errors.")
|
|
4689
|
|
4690 (defvar mail-dir nil "\
|
|
4691 *Default directory for saving messages.")
|
|
4692
|
|
4693 (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-") "\\|") "\\)")) "\
|
|
4694 *Gubbish header fields one would rather not see.")
|
|
4695
|
|
4696 (defvar mail-yank-ignored-headers (purecopy (concat rmail-ignored-headers "\\|" "^\\(" (mapconcat 'identity '("Resent-To:" "Resent-By:" "Resent-CC:" "To:" "Subject:" "In-Reply-To:") "\\|") "\\)")) "\
|
|
4697 Delete these headers from old message when it's inserted in a reply.")
|
|
4698
|
|
4699 (defvar send-mail-function 'sendmail-send-it "\
|
|
4700 Function to call to send the current buffer as mail.
|
|
4701 The headers should be delimited by a line whose contents
|
|
4702 match the variable `mail-header-separator'.")
|
|
4703
|
|
4704 (defvar mail-header-separator (purecopy "--text follows this line--") "\
|
|
4705 *Line used to separate headers from text in messages being composed.")
|
|
4706
|
|
4707 (defvar mail-archive-file-name nil "\
|
|
4708 *Name of file to write all outgoing messages in, or nil for none.
|
|
4709 This can be an inbox file or an Rmail file.")
|
|
4710
|
|
4711 (defvar mail-default-reply-to nil "\
|
|
4712 *Address to insert as default Reply-to field of outgoing messages.
|
|
4713 If nil, it will be initialized from the REPLYTO environment variable
|
|
4714 when you first send mail.")
|
|
4715
|
|
4716 (defvar mail-alias-file nil "\
|
|
4717 *If non-nil, the name of a file to use instead of `/usr/lib/aliases'.
|
|
4718 This file defines aliases to be expanded by the mailer; this is a different
|
|
4719 feature from that of defining aliases in `.mailrc' to be expanded in Emacs.
|
|
4720 This variable has no effect unless your system uses sendmail as its mailer.")
|
|
4721
|
|
4722 (defvar mail-yank-prefix "> " "\
|
|
4723 *Prefix insert on lines of yanked message being replied to.
|
|
4724 nil means use indentation.")
|
|
4725
|
|
4726 (defvar mail-signature nil "\
|
|
4727 *Text inserted at end of mail buffer when a message is initialized.
|
|
4728 If t, it means to insert the contents of the file `mail-signature-file'.")
|
|
4729
|
114
|
4730 (autoload 'user-mail-address "sendmail" "\
|
|
4731 Query the user for his mail address, unless it is already known." t nil)
|
|
4732
|
78
|
4733 (autoload 'mail-mode "sendmail" "\
|
|
4734 Major mode for editing mail to be sent.
|
|
4735 Like Text Mode but with these additional commands:
|
|
4736 C-c C-s mail-send (send the message) C-c C-c mail-send-and-exit
|
|
4737 C-c C-f move to a header field (and create it if there isn't):
|
|
4738 C-c C-f C-t move to To: C-c C-f C-s move to Subj:
|
|
4739 C-c C-f C-b move to BCC: C-c C-f C-c move to CC:
|
|
4740 C-c C-f C-f move to FCC: C-c C-f C-r move to Reply-To:
|
|
4741 C-c C-t mail-text (move to beginning of message text).
|
|
4742 C-c C-w mail-signature (insert `mail-signature-file' file).
|
|
4743 C-c C-y mail-yank-original (insert current message, in Rmail).
|
|
4744 C-c C-q mail-fill-yanked-message (fill what was yanked).
|
|
4745 C-c C-v mail-sent-via (add a sent-via field for each To or CC)." t nil)
|
|
4746
|
|
4747 (autoload 'mail "sendmail" "\
|
|
4748 Edit a message to be sent. Prefix arg means resume editing (don't erase).
|
|
4749 When this function returns, the buffer `*mail*' is selected.
|
|
4750 The value is t if the message was newly initialized; otherwise, nil.
|
|
4751
|
|
4752 Optionally, the signature file `mail-signature-file' can be inserted at the
|
|
4753 end; see the variable `mail-signature'.
|
|
4754
|
|
4755 \\<mail-mode-map>
|
|
4756 While editing message, type \\[mail-send-and-exit] to send the message and exit.
|
|
4757
|
|
4758 Various special commands starting with C-c are available in sendmail mode
|
|
4759 to move to message header fields:
|
|
4760 \\{mail-mode-map}
|
|
4761
|
|
4762 The variable `mail-signature' controls whether the signature file
|
|
4763 `mail-signature-file' is inserted immediately.
|
|
4764
|
|
4765 If `mail-signature' is nil, use \\[mail-signature] to insert the
|
|
4766 signature in `mail-signature-file'.
|
|
4767
|
|
4768 If `mail-self-blind' is non-nil, a BCC to yourself is inserted
|
|
4769 when the message is initialized.
|
|
4770
|
|
4771 If `mail-default-reply-to' is non-nil, it should be an address (a string);
|
|
4772 a Reply-to: field with that address is inserted.
|
|
4773
|
|
4774 If `mail-archive-file-name' is non-nil, an FCC field with that file name
|
|
4775 is inserted.
|
|
4776
|
|
4777 The normal hook `mail-setup-hook' is run after the message is
|
|
4778 initialized. It can add more default fields to the message.
|
|
4779
|
|
4780 When calling from a program, the first argument if non-nil says
|
|
4781 not to erase the existing contents of the `*mail*' buffer.
|
|
4782
|
|
4783 The second through fifth arguments,
|
|
4784 TO, SUBJECT, IN-REPLY-TO and CC, specify if non-nil
|
|
4785 the initial contents of those header fields.
|
|
4786 These arguments should not have final newlines.
|
|
4787 The sixth argument REPLYBUFFER is a buffer whose contents
|
|
4788 should be yanked if the user types C-c C-y.
|
|
4789 The seventh argument ACTIONS is a list of actions to take
|
|
4790 if/when the message is sent. Each action looks like (FUNCTION . ARGS);
|
|
4791 when the message is sent, we apply FUNCTION to ARGS.
|
|
4792 This is how Rmail arranges to mark messages `answered'." t nil)
|
|
4793
|
|
4794 (autoload 'mail-other-window "sendmail" "\
|
|
4795 Like `mail' command, but display mail buffer in another window." t nil)
|
|
4796
|
|
4797 (autoload 'mail-other-frame "sendmail" "\
|
|
4798 Like `mail' command, but display mail buffer in another frame." t nil)
|
|
4799
|
|
4800 (define-key ctl-x-map "m" 'mail)
|
|
4801
|
|
4802 (define-key ctl-x-4-map "m" 'mail-other-window)
|
|
4803
|
|
4804 (define-key ctl-x-5-map "m" 'mail-other-frame)
|
|
4805
|
|
4806 (add-hook 'same-window-buffer-names "*mail*")
|
|
4807
|
|
4808 ;;;***
|
|
4809
|
|
4810 ;;;### (autoloads (sh-mode) "sh-script" "modes/sh-script.el")
|
|
4811
|
|
4812 (put 'sh-mode 'mode-class 'special)
|
|
4813
|
|
4814 (autoload 'sh-mode "sh-script" "\
|
|
4815 Major mode for editing shell scripts.
|
|
4816 This mode works for many shells, since they all have roughly the same syntax,
|
|
4817 as far as commands, arguments, variables, pipes, comments etc. are concerned.
|
|
4818 Unless the file's magic number indicates the shell, your usual shell is
|
|
4819 assumed. Since filenames rarely give a clue, they are not further analyzed.
|
|
4820
|
|
4821 This mode adapts to the variations between shells (see `sh-set-shell') by
|
|
4822 means of an inheritance based feature lookup (see `sh-feature'). This
|
|
4823 mechanism applies to all variables (including skeletons) that pertain to
|
|
4824 shell-specific features.
|
|
4825
|
|
4826 The default style of this mode is that of Rosenblatt's Korn shell book.
|
|
4827 The syntax of the statements varies with the shell being used. The
|
|
4828 following commands are available, based on the current shell's syntax:
|
|
4829
|
|
4830 \\[sh-case] case statement
|
|
4831 \\[sh-for] for loop
|
|
4832 \\[sh-function] function definition
|
|
4833 \\[sh-if] if statement
|
|
4834 \\[sh-indexed-loop] indexed loop from 1 to n
|
|
4835 \\[sh-while-getopts] while getopts loop
|
|
4836 \\[sh-repeat] repeat loop
|
|
4837 \\[sh-select] select loop
|
|
4838 \\[sh-until] until loop
|
|
4839 \\[sh-while] while loop
|
|
4840
|
|
4841 \\[backward-delete-char-untabify] Delete backward one position, even if it was a tab.
|
|
4842 \\[sh-newline-and-indent] Delete unquoted space and indent new line same as this one.
|
|
4843 \\[sh-end-of-command] Go to end of successive commands.
|
|
4844 \\[sh-beginning-of-command] Go to beginning of successive commands.
|
|
4845 \\[sh-set-shell] Set this buffer's shell, and maybe its magic number.
|
|
4846 \\[sh-execute-region] Have optional header and region be executed in a subshell.
|
|
4847
|
|
4848 \\[sh-maybe-here-document] Without prefix, following an unquoted < inserts here document.
|
|
4849 {, (, [, ', \", `
|
|
4850 Unless quoted with \\, insert the pairs {}, (), [], or '', \"\", ``.
|
|
4851
|
|
4852 If you generally program a shell different from your login shell you can
|
|
4853 set `sh-shell-file' accordingly. If your shell's file name doesn't correctly
|
|
4854 indicate what shell it is use `sh-alias-alist' to translate.
|
|
4855
|
|
4856 If your shell gives error messages with line numbers, you can use \\[executable-interpret]
|
|
4857 with your script for an edit-interpret-debug cycle." t nil)
|
|
4858
|
|
4859 (defalias 'shell-script-mode 'sh-mode)
|
|
4860
|
|
4861 ;;;***
|
|
4862
|
|
4863 ;;;### (autoloads (tcl-help-on-word inferior-tcl tcl-mode) "tcl" "modes/tcl.el")
|
|
4864
|
|
4865 (autoload 'tcl-mode "tcl" "\
|
|
4866 Major mode for editing Tcl code.
|
|
4867 Expression and list commands understand all Tcl brackets.
|
|
4868 Tab indents for Tcl code.
|
|
4869 Paragraphs are separated by blank lines only.
|
|
4870 Delete converts tabs to spaces as it moves back.
|
|
4871
|
|
4872 Variables controlling indentation style:
|
|
4873 tcl-indent-level
|
|
4874 Indentation of Tcl statements within surrounding block.
|
|
4875 tcl-continued-indent-level
|
|
4876 Indentation of continuation line relative to first line of command.
|
|
4877
|
|
4878 Variables controlling user interaction with mode (see variable
|
|
4879 documentation for details):
|
|
4880 tcl-tab-always-indent
|
|
4881 Controls action of TAB key.
|
|
4882 tcl-auto-newline
|
|
4883 Non-nil means automatically newline before and after braces, brackets,
|
|
4884 and semicolons inserted in Tcl code.
|
|
4885 tcl-electric-hash-style
|
|
4886 Controls action of `#' key.
|
|
4887 tcl-use-hairy-comment-detector
|
|
4888 If t, use more complicated, but slower, comment detector.
|
|
4889 This variable is only used in GNU Emacs 19.
|
|
4890 tcl-use-smart-word-finder
|
|
4891 If not nil, use a smarter, Tcl-specific way to find the current
|
|
4892 word when looking up help on a Tcl command.
|
|
4893
|
|
4894 Turning on Tcl mode calls the value of the variable `tcl-mode-hook'
|
|
4895 with no args, if that value is non-nil. Read the documentation for
|
|
4896 `tcl-mode-hook' to see what kinds of interesting hook functions
|
|
4897 already exist.
|
|
4898
|
|
4899 Commands:
|
|
4900 \\{tcl-mode-map}" t nil)
|
|
4901
|
|
4902 (autoload 'inferior-tcl "tcl" "\
|
|
4903 Run inferior Tcl process.
|
|
4904 Prefix arg means enter program name interactively.
|
|
4905 See documentation for function `inferior-tcl-mode' for more information." t nil)
|
|
4906
|
|
4907 (autoload 'tcl-help-on-word "tcl" "\
|
|
4908 Get help on Tcl command. Default is word at point.
|
|
4909 Prefix argument means invert sense of `tcl-use-smart-word-finder'." t nil)
|
|
4910
|
|
4911 ;;;***
|
|
4912
|
|
4913 ;;;### (autoloads (latex-mode plain-tex-mode tex-mode) "tex-mode" "modes/tex-mode.el")
|
|
4914
|
|
4915 (autoload 'tex-mode "tex-mode" "\
|
|
4916 Major mode for editing files of input for TeX, LaTeX, or SliTeX.
|
|
4917 Tries to determine (by looking at the beginning of the file) whether
|
|
4918 this file is for plain TeX, LaTeX, or SliTeX and calls plain-tex-mode,
|
|
4919 latex-mode, or slitex-mode, respectively. If it cannot be determined,
|
|
4920 such as if there are no commands in the file, the value of tex-default-mode
|
|
4921 is used." t nil)
|
|
4922
|
|
4923 (fset 'TeX-mode 'tex-mode)
|
|
4924
|
|
4925 (fset 'LaTeX-mode 'latex-mode)
|
|
4926
|
|
4927 (autoload 'plain-tex-mode "tex-mode" "\
|
|
4928 Major mode for editing files of input for plain TeX.
|
|
4929 Makes $ and } display the characters they match.
|
|
4930 Makes \" insert `` when it seems to be the beginning of a quotation,
|
|
4931 and '' when it appears to be the end; it inserts \" only after a \\.
|
|
4932
|
|
4933 Use \\[tex-region] to run TeX on the current region, plus a \"header\"
|
|
4934 copied from the top of the file (containing macro definitions, etc.),
|
|
4935 running TeX under a special subshell. \\[tex-buffer] does the whole buffer.
|
|
4936 \\[tex-file] saves the buffer and then processes the file.
|
|
4937 \\[tex-print] prints the .dvi file made by any of these.
|
|
4938 \\[tex-view] previews the .dvi file made by any of these.
|
|
4939 \\[tex-bibtex-file] runs bibtex on the file of the current buffer.
|
|
4940
|
|
4941 Use \\[validate-tex-buffer] to check buffer for paragraphs containing
|
|
4942 mismatched $'s or braces.
|
|
4943
|
|
4944 Special commands:
|
|
4945 \\{tex-mode-map}
|
|
4946
|
|
4947 Mode variables:
|
|
4948 tex-run-command
|
|
4949 Command string used by \\[tex-region] or \\[tex-buffer].
|
|
4950 tex-directory
|
|
4951 Directory in which to create temporary files for TeX jobs
|
|
4952 run by \\[tex-region] or \\[tex-buffer].
|
|
4953 tex-dvi-print-command
|
|
4954 Command string used by \\[tex-print] to print a .dvi file.
|
|
4955 tex-alt-dvi-print-command
|
|
4956 Alternative command string used by \\[tex-print] (when given a prefix
|
|
4957 argument) to print a .dvi file.
|
|
4958 tex-dvi-view-command
|
|
4959 Command string used by \\[tex-view] to preview a .dvi file.
|
|
4960 tex-show-queue-command
|
|
4961 Command string used by \\[tex-show-print-queue] to show the print
|
|
4962 queue that \\[tex-print] put your job on.
|
|
4963
|
|
4964 Entering Plain-tex mode calls the value of text-mode-hook, then the value of
|
|
4965 tex-mode-hook, and then the value of plain-tex-mode-hook. When the special
|
|
4966 subshell is initiated, the value of tex-shell-hook is called." t nil)
|
|
4967
|
|
4968 (fset 'plain-TeX-mode 'plain-tex-mode)
|
|
4969
|
|
4970 (autoload 'latex-mode "tex-mode" "\
|
|
4971 Major mode for editing files of input for LaTeX.
|
|
4972 Makes $ and } display the characters they match.
|
|
4973 Makes \" insert `` when it seems to be the beginning of a quotation,
|
|
4974 and '' when it appears to be the end; it inserts \" only after a \\.
|
|
4975
|
|
4976 Use \\[tex-region] to run LaTeX on the current region, plus the preamble
|
|
4977 copied from the top of the file (containing \\documentstyle, etc.),
|
|
4978 running LaTeX under a special subshell. \\[tex-buffer] does the whole buffer.
|
|
4979 \\[tex-file] saves the buffer and then processes the file.
|
|
4980 \\[tex-print] prints the .dvi file made by any of these.
|
|
4981 \\[tex-view] previews the .dvi file made by any of these.
|
|
4982 \\[tex-bibtex-file] runs bibtex on the file of the current buffer.
|
|
4983
|
|
4984 Use \\[validate-tex-buffer] to check buffer for paragraphs containing
|
|
4985 mismatched $'s or braces.
|
|
4986
|
|
4987 Special commands:
|
|
4988 \\{tex-mode-map}
|
|
4989
|
|
4990 Mode variables:
|
|
4991 latex-run-command
|
|
4992 Command string used by \\[tex-region] or \\[tex-buffer].
|
|
4993 tex-directory
|
|
4994 Directory in which to create temporary files for LaTeX jobs
|
|
4995 run by \\[tex-region] or \\[tex-buffer].
|
|
4996 tex-dvi-print-command
|
|
4997 Command string used by \\[tex-print] to print a .dvi file.
|
|
4998 tex-alt-dvi-print-command
|
|
4999 Alternative command string used by \\[tex-print] (when given a prefix
|
|
5000 argument) to print a .dvi file.
|
|
5001 tex-dvi-view-command
|
|
5002 Command string used by \\[tex-view] to preview a .dvi file.
|
|
5003 tex-show-queue-command
|
|
5004 Command string used by \\[tex-show-print-queue] to show the print
|
|
5005 queue that \\[tex-print] put your job on.
|
|
5006
|
|
5007 Entering Latex mode calls the value of text-mode-hook, then the value of
|
|
5008 tex-mode-hook, and then the value of latex-mode-hook. When the special
|
|
5009 subshell is initiated, the value of tex-shell-hook is called." t nil)
|
|
5010
|
|
5011 ;;;***
|
|
5012
|
|
5013 ;;;### (autoloads (texinfo-mode) "texinfo" "modes/texinfo.el")
|
|
5014
|
|
5015 (autoload 'texinfo-mode "texinfo" "\
|
|
5016 Major mode for editing Texinfo files.
|
|
5017
|
|
5018 It has these extra commands:
|
|
5019 \\{texinfo-mode-map}
|
|
5020
|
|
5021 These are files that are used as input for TeX to make printed manuals
|
|
5022 and also to be turned into Info files with \\[makeinfo-buffer] or
|
|
5023 the `makeinfo' program. These files must be written in a very restricted and
|
|
5024 modified version of TeX input format.
|
|
5025
|
|
5026 Editing commands are like text-mode except that the syntax table is
|
|
5027 set up so expression commands skip Texinfo bracket groups. To see
|
|
5028 what the Info version of a region of the Texinfo file will look like,
|
|
5029 use \\[makeinfo-region], which runs `makeinfo' on the current region.
|
|
5030
|
|
5031 You can show the structure of a Texinfo file with \\[texinfo-show-structure].
|
|
5032 This command shows the structure of a Texinfo file by listing the
|
|
5033 lines with the @-sign commands for @chapter, @section, and the like.
|
|
5034 These lines are displayed in another window called the *Occur* window.
|
|
5035 In that window, you can position the cursor over one of the lines and
|
|
5036 use \\[occur-mode-goto-occurrence], to jump to the corresponding spot
|
|
5037 in the Texinfo file.
|
|
5038
|
|
5039 In addition, Texinfo mode provides commands that insert various
|
|
5040 frequently used @-sign commands into the buffer. You can use these
|
|
5041 commands to save keystrokes. And you can insert balanced braces with
|
|
5042 \\[texinfo-insert-braces] and later use the command \\[up-list] to
|
|
5043 move forward past the closing brace.
|
|
5044
|
|
5045 Also, Texinfo mode provides functions for automatically creating or
|
|
5046 updating menus and node pointers. These functions
|
|
5047
|
|
5048 * insert the `Next', `Previous' and `Up' pointers of a node,
|
|
5049 * insert or update the menu for a section, and
|
|
5050 * create a master menu for a Texinfo source file.
|
|
5051
|
|
5052 Here are the functions:
|
|
5053
|
|
5054 texinfo-update-node \\[texinfo-update-node]
|
|
5055 texinfo-every-node-update \\[texinfo-every-node-update]
|
|
5056 texinfo-sequential-node-update
|
|
5057
|
|
5058 texinfo-make-menu \\[texinfo-make-menu]
|
|
5059 texinfo-all-menus-update \\[texinfo-all-menus-update]
|
|
5060 texinfo-master-menu
|
|
5061
|
|
5062 texinfo-indent-menu-description (column &optional region-p)
|
|
5063
|
|
5064 The `texinfo-column-for-description' variable specifies the column to
|
|
5065 which menu descriptions are indented.
|
|
5066
|
|
5067 Passed an argument (a prefix argument, if interactive), the
|
|
5068 `texinfo-update-node' and `texinfo-make-menu' functions do their jobs
|
|
5069 in the region.
|
|
5070
|
|
5071 To use the updating commands, you must structure your Texinfo file
|
|
5072 hierarchically, such that each `@node' line, with the exception of the
|
|
5073 Top node, is accompanied by some kind of section line, such as an
|
|
5074 `@chapter' or `@section' line.
|
|
5075
|
|
5076 If the file has a `top' node, it must be called `top' or `Top' and
|
|
5077 be the first node in the file.
|
|
5078
|
|
5079 Entering Texinfo mode calls the value of text-mode-hook, and then the
|
|
5080 value of texinfo-mode-hook." t nil)
|
|
5081
|
|
5082 ;;;***
|
|
5083
|
|
5084 ;;;### (autoloads (tc-recenter tc-scroll-down tc-scroll-up tc-scroll-line tc-associated-buffer tc-merge tc-dissociate tc-split tc-associate-buffer tc-two-columns) "two-column" "modes/two-column.el")
|
|
5085
|
|
5086 (defvar tc-mode-map nil "\
|
|
5087 Keymap for commands for two-column mode.")
|
|
5088
|
|
5089 (if tc-mode-map nil (setq tc-mode-map (make-sparse-keymap)) (define-key tc-mode-map "1" 'tc-merge) (define-key tc-mode-map "2" 'tc-two-columns) (define-key tc-mode-map "b" 'tc-associate-buffer) (define-key tc-mode-map "d" 'tc-dissociate) (define-key tc-mode-map "\^L" 'tc-recenter) (define-key tc-mode-map "o" 'tc-associated-buffer) (define-key tc-mode-map "s" 'tc-split) (define-key tc-mode-map "{" 'shrink-window-horizontally) (define-key tc-mode-map "}" 'enlarge-window-horizontally) (define-key tc-mode-map " " 'tc-scroll-up) (define-key tc-mode-map "" 'tc-scroll-down) (define-key tc-mode-map "
" 'tc-scroll-line))
|
|
5090
|
|
5091 (global-set-key "6" tc-mode-map)
|
|
5092
|
|
5093 (defvar tc-other nil "\
|
|
5094 Marker to the associated buffer, if non-nil.")
|
|
5095
|
|
5096 (make-variable-buffer-local 'tc-other)
|
|
5097
|
|
5098 (put 'tc-other 'permanent-local t)
|
|
5099
|
|
5100 (autoload 'tc-two-columns "two-column" "\
|
|
5101 Split current window vertically for two-column editing.
|
|
5102
|
|
5103 When called the first time, associates a buffer with the current
|
|
5104 buffer. Both buffers are put in two-column minor mode and
|
|
5105 tc-mode-hook gets called on both. These buffers remember
|
|
5106 about one another, even when renamed.
|
|
5107
|
|
5108 When called again, restores the screen layout with the current buffer
|
|
5109 first and the associated buffer to it's right.
|
|
5110
|
|
5111 If you include long lines, i.e which will span both columns (eg.
|
|
5112 source code), they should be in what will be the first column, with
|
|
5113 the associated buffer having empty lines next to them.
|
|
5114
|
|
5115 You have the following commands at your disposal:
|
|
5116
|
|
5117 \\[tc-two-columns] Rearrange screen
|
|
5118 \\[tc-associate-buffer] Reassociate buffer after changing major mode
|
|
5119 \\[tc-scroll-up] Scroll both buffers up by a screenfull
|
|
5120 \\[tc-scroll-down] Scroll both buffers down by a screenful
|
|
5121 \\[tc-scroll-line] Scroll both buffers up by one or more lines
|
|
5122 \\[tc-recenter] Recenter and realign other buffer
|
|
5123 \\[shrink-window-horizontally], \\[enlarge-window-horizontally] Shrink, enlarge current column
|
|
5124 \\[tc-associated-buffer] Switch to associated buffer
|
|
5125 \\[tc-merge] Merge both buffers
|
|
5126
|
|
5127 These keybindings can be customized in your ~/.emacs by `tc-prefix'
|
|
5128 and `tc-mode-map'.
|
|
5129
|
|
5130 The appearance of the screen can be customized by the variables
|
|
5131 `tc-window-width', `tc-beyond-fill-column',
|
|
5132 `tc-mode-line-format' and `truncate-partial-width-windows'." t nil)
|
|
5133
|
|
5134 (add-minor-mode 'tc-other " 2C" nil nil 'tc-two-columns)
|
|
5135
|
|
5136 (autoload 'tc-associate-buffer "two-column" "\
|
|
5137 Associate another buffer with this one in two-column minor mode.
|
|
5138 Can also be used to associate a just previously visited file, by
|
|
5139 accepting the proposed default buffer.
|
|
5140
|
|
5141 See \\[tc-two-columns] and `lisp/two-column.el' for further details." t nil)
|
|
5142
|
|
5143 (autoload 'tc-split "two-column" "\
|
|
5144 Unmerge a two-column text into two buffers in two-column minor mode.
|
|
5145 The text is unmerged at the cursor's column which becomes the local
|
|
5146 value of `tc-window-width'. Only lines that have the ARG same
|
|
5147 preceding characters at that column get split. The ARG preceding
|
|
5148 characters without any leading whitespace become the local value for
|
|
5149 `tc-separator'. This way lines that continue across both
|
|
5150 columns remain untouched in the first buffer.
|
|
5151
|
|
5152 This function can be used with a prototype line, to set up things as
|
|
5153 you like them. You write the first line of each column with the
|
|
5154 separator you like and then unmerge that line. E.g.:
|
|
5155
|
|
5156 First column's text sSs Second columns text
|
|
5157 \\___/\\
|
|
5158 / \\
|
|
5159 5 character Separator You type M-5 \\[tc-split] with the point here
|
|
5160
|
|
5161 See \\[tc-two-columns] and `lisp/two-column.el' for further details." t nil)
|
|
5162
|
|
5163 (autoload 'tc-dissociate "two-column" "\
|
|
5164 Turn off two-column minor mode in current and associated buffer.
|
|
5165 If the associated buffer is unmodified and empty, it is killed." t nil)
|
|
5166
|
|
5167 (autoload 'tc-merge "two-column" "\
|
|
5168 Merges the associated buffer with the current buffer.
|
|
5169 They get merged at the column, which is the value of
|
|
5170 `tc-window-width', i.e. usually at the vertical window
|
|
5171 separator. This separator gets replaced with white space. Beyond
|
|
5172 that the value of gets inserted on merged lines. The two columns are
|
|
5173 thus pasted side by side, in a single text. If the other buffer is
|
|
5174 not displayed to the left of this one, then this one becomes the left
|
|
5175 column.
|
|
5176
|
|
5177 If you want `tc-separator' on empty lines in the second column,
|
|
5178 you should put just one space in them. In the final result, you can strip
|
|
5179 off trailing spaces with \\[beginning-of-buffer] \\[replace-regexp] [ SPC TAB ] + $ RET RET" t nil)
|
|
5180
|
|
5181 (autoload 'tc-associated-buffer "two-column" "\
|
|
5182 Switch to associated buffer." t nil)
|
|
5183
|
|
5184 (autoload 'tc-scroll-line "two-column" "\
|
|
5185 Scroll current window upward by ARG lines.
|
|
5186 The associated window gets scrolled to the same line." t nil)
|
|
5187
|
|
5188 (autoload 'tc-scroll-up "two-column" "\
|
|
5189 Scroll current window upward by ARG screens.
|
|
5190 The associated window gets scrolled to the same line." t nil)
|
|
5191
|
|
5192 (autoload 'tc-scroll-down "two-column" "\
|
|
5193 Scroll current window downward by ARG screens.
|
|
5194 The associated window gets scrolled to the same line." t nil)
|
|
5195
|
|
5196 (autoload 'tc-recenter "two-column" "\
|
|
5197 Center point in window. With ARG, put point on line ARG.
|
|
5198 This counts from bottom if ARG is negative. The associated window
|
|
5199 gets scrolled to the same line." t nil)
|
|
5200
|
|
5201 ;;;***
|
|
5202
|
98
|
5203 ;;;### (autoloads (verilog-mode) "verilog-mode" "modes/verilog-mode.el")
|
|
5204
|
|
5205 (autoload 'verilog-mode "verilog-mode" "\
|
|
5206 Major mode for editing Verilog code. \\<verilog-mode-map>
|
|
5207 NEWLINE, TAB indents for Verilog code.
|
|
5208 Delete converts tabs to spaces as it moves back.
|
|
5209 Supports highlighting.
|
|
5210
|
|
5211 Variables controlling indentation/edit style:
|
|
5212
|
|
5213 verilog-indent-level (default 3)
|
|
5214 Indentation of Verilog statements with respect to containing block.
|
|
5215 verilog-cexp-indent (default 1)
|
|
5216 Indentation of Verilog statements broken across lines.
|
|
5217 verilog-case-indent (default 2)
|
|
5218 Indentation for case statements.
|
|
5219 verilog-auto-newline (default nil)
|
108
|
5220 Non-nil means automatically newline after semicolons and the punctuation mark
|
98
|
5221 after an end.
|
|
5222 verilog-auto-indent-on-newline (default t)
|
|
5223 Non-nil means automatically indent line after newline
|
|
5224 verilog-tab-always-indent (default t)
|
|
5225 Non-nil means TAB in Verilog mode should always reindent the current line,
|
|
5226 regardless of where in the line point is when the TAB command is used.
|
|
5227 verilog-indent-begin-after-if (default t)
|
108
|
5228 Non-nil means to indent begin statements following a preceding
|
98
|
5229 if, else, while, for and repeat statements, if any. otherwise,
|
108
|
5230 the begin is lined up with the preceding token. If t, you get:
|
98
|
5231 if (a)
|
|
5232 begin
|
|
5233 otherwise you get:
|
|
5234 if (a)
|
|
5235 begin
|
|
5236 verilog-auto-endcomments (default t)
|
|
5237 Non-nil means a comment /* ... */ is set after the ends which ends cases, tasks, functions and modules.
|
|
5238 The type and name of the object will be set between the braces.
|
|
5239 verilog-auto-lineup (default `(all))
|
|
5240 List of contexts where auto lineup of :'s or ='s should be done.
|
|
5241
|
|
5242 Turning on Verilog mode calls the value of the variable verilog-mode-hook with
|
|
5243 no args, if that value is non-nil.
|
|
5244 Other useful functions are:
|
|
5245 \\[verilog-complete-word] -complete word with appropriate possibilities (functions, verilog keywords...)
|
|
5246 \\[verilog-comment-area] - Put marked area in a comment, fixing nested comments.
|
|
5247 \\[verilog-uncomment-area] - Uncomment an area commented with \\[verilog-comment-area].
|
|
5248 \\[verilog-insert-block] - insert begin ... end;
|
|
5249 \\[verilog-star-comment] - insert /* ... */
|
|
5250 \\[verilog-mark-defun] - Mark function.
|
|
5251 \\[verilog-beg-of-defun] - Move to beginning of current function.
|
|
5252 \\[verilog-end-of-defun] - Move to end of current function.
|
|
5253 \\[verilog-label-be] - Label matching begin ... end, fork ... join and case ... endcase statements;
|
|
5254 " t nil)
|
|
5255
|
|
5256 ;;;***
|
|
5257
|
78
|
5258 ;;;### (autoloads (vhdl-mode) "vhdl-mode" "modes/vhdl-mode.el")
|
|
5259
|
|
5260 (autoload 'vhdl-mode "vhdl-mode" "\
|
|
5261 Major mode for editing VHDL code.
|
120
|
5262 vhdl-mode $Revision: 1.20 $
|
78
|
5263 To submit a problem report, enter `\\[vhdl-submit-bug-report]' from a
|
|
5264 vhdl-mode buffer. This automatically sets up a mail buffer with version
|
|
5265 information already added. You just need to add a description of the
|
108
|
5266 problem, including a reproducible test case and send the message.
|
78
|
5267
|
|
5268 Note that the details of configuring vhdl-mode will soon be moved to the
|
|
5269 accompanying texinfo manual. Until then, please read the README file
|
|
5270 that came with the vhdl-mode distribution.
|
|
5271
|
|
5272 The hook variable `vhdl-mode-hook' is run with no args, if that value is
|
|
5273 bound and has a non-nil value.
|
|
5274
|
|
5275 Key bindings:
|
|
5276 \\{vhdl-mode-map}" t nil)
|
|
5277
|
|
5278 ;;;***
|
|
5279
|
|
5280 ;;;### (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")
|
|
5281
|
116
|
5282 (defvar view-minor-mode-map (let ((map (make-keymap))) (set-keymap-name map 'view-minor-mode-map) (suppress-keymap map) (define-key map "-" 'negative-argument) (define-key map " " 'scroll-up) (define-key map "f" 'scroll-up) (define-key map "" 'scroll-down) (define-key map "b" 'scroll-down) (define-key map 'backspace 'scroll-down) (define-key map "
" 'view-scroll-lines-up) (define-key map "\n" 'view-scroll-lines-up) (define-key map "e" 'view-scroll-lines-up) (define-key map "j" 'view-scroll-lines-up) (define-key map "y" 'view-scroll-lines-down) (define-key map "k" 'view-scroll-lines-down) (define-key map "d" 'view-scroll-some-lines-up) (define-key map "u" 'view-scroll-some-lines-down) (define-key map "r" 'recenter) (define-key map "t" 'toggle-truncate-lines) (define-key map "N" 'view-buffer) (define-key map "E" 'view-file) (define-key map "P" 'view-buffer) (define-key map "!" 'shell-command) (define-key map "|" 'shell-command-on-region) (define-key map "=" 'what-line) (define-key map "?" 'view-search-backward) (define-key map "h" 'view-mode-describe) (define-key map "s" 'view-repeat-search) (define-key map "n" 'view-repeat-search) (define-key map "/" 'view-search-forward) (define-key map "\\" 'view-search-backward) (define-key map "g" 'view-goto-line) (define-key map "G" 'view-last-windowful) (define-key map "%" 'view-goto-percent) (define-key map "p" 'view-goto-percent) (define-key map "m" 'point-to-register) (define-key map "'" 'register-to-point) (define-key map "C" 'view-cleanup-backspaces) (define-key map "" 'view-quit) (define-key map "" 'view-quit-toggle-ro) (define-key map "q" 'view-quit) map))
|
|
5283
|
|
5284 (defvar view-mode-map (let ((map (copy-keymap view-minor-mode-map))) (set-keymap-name map 'view-mode-map) map))
|
|
5285
|
78
|
5286 (autoload 'view-file "view-less" "\
|
|
5287 Find FILE, enter view mode. With prefix arg OTHER-P, use other window." t nil)
|
|
5288
|
|
5289 (autoload 'view-buffer "view-less" "\
|
|
5290 Switch to BUF, enter view mode. With prefix arg use other window." t nil)
|
|
5291
|
|
5292 (autoload 'view-file-other-window "view-less" "\
|
|
5293 Find FILE in other window, and enter view mode." t nil)
|
|
5294
|
|
5295 (autoload 'view-buffer-other-window "view-less" "\
|
|
5296 Switch to BUFFER in another window, and enter view mode." t nil)
|
|
5297
|
|
5298 (autoload 'view-minor-mode "view-less" "\
|
|
5299 Minor mode for viewing text, with bindings like `less'.
|
|
5300 Commands are:
|
|
5301 \\<view-minor-mode-map>
|
|
5302 0..9 prefix args
|
|
5303 - prefix minus
|
|
5304 \\[scroll-up] page forward
|
|
5305 \\[scroll-down] page back
|
|
5306 \\[view-scroll-lines-up] scroll prefix-arg lines forward, default 1.
|
|
5307 \\[view-scroll-lines-down] scroll prefix-arg lines backward, default 1.
|
|
5308 \\[view-scroll-some-lines-down] scroll prefix-arg lines backward, default 10.
|
|
5309 \\[view-scroll-some-lines-up] scroll prefix-arg lines forward, default 10.
|
|
5310 \\[what-line] print line number
|
|
5311 \\[view-mode-describe] print this help message
|
|
5312 \\[view-search-forward] regexp search, uses previous string if you just hit RET
|
|
5313 \\[view-search-backward] as above but searches backward
|
|
5314 \\[view-repeat-search] repeat last search
|
|
5315 \\[view-goto-line] goto line prefix-arg, default 1
|
|
5316 \\[view-last-windowful] goto line prefix-arg, default last line
|
|
5317 \\[view-goto-percent] goto a position by percentage
|
|
5318 \\[toggle-truncate-lines] toggle truncate-lines
|
|
5319 \\[view-file] view another file
|
|
5320 \\[view-buffer] view another buffer
|
|
5321 \\[view-cleanup-backspaces] cleanup backspace constructions
|
|
5322 \\[shell-command] execute a shell command
|
|
5323 \\[shell-command-on-region] execute a shell command with the region as input
|
|
5324 \\[view-quit] exit view-mode, and bury the current buffer.
|
|
5325
|
|
5326 If invoked with the optional (prefix) arg non-nil, view-mode cleans up
|
|
5327 backspace constructions.
|
|
5328
|
|
5329 More precisely:
|
|
5330 \\{view-minor-mode-map}" t nil)
|
|
5331
|
|
5332 (autoload 'view-mode "view-less" "\
|
|
5333 View the current buffer using view-minor-mode. This exists to be 99.9%
|
|
5334 compatible with the implementations of `view-mode' in view.el and older
|
|
5335 versions of view-less.el." t nil)
|
|
5336
|
|
5337 (autoload 'view-major-mode "view-less" "\
|
|
5338 View the current buffer using view-mode, as a major mode.
|
|
5339 This function has a nonstandard name because `view-mode' is wrongly
|
|
5340 named but is like this for compatibility reasons." t nil)
|
|
5341
|
|
5342 (autoload 'auto-view-mode "view-less" "\
|
|
5343 If the file of the current buffer is not writable, call view-mode.
|
|
5344 This is meant to be added to `find-file-hooks'." nil nil)
|
|
5345
|
|
5346 ;;;***
|
|
5347
|
|
5348 ;;;### (autoloads (vrml-mode) "vrml-mode" "modes/vrml-mode.el")
|
|
5349
|
|
5350 (autoload 'vrml-mode "vrml-mode" "\
|
|
5351 Major mode for editing VRML code.
|
|
5352 Expression and list commands understand all VRML brackets.
|
|
5353 Tab indents for VRML code.
|
|
5354 Paragraphs are separated by blank lines only.
|
|
5355 Delete converts tabs to spaces as it moves back.
|
|
5356
|
|
5357 Variables controlling indentation style:
|
|
5358 vrml-indent-level
|
|
5359 Indentation of VRML statements within surrounding block.
|
|
5360
|
|
5361 Variables controlling user interaction with mode (see variable
|
|
5362 documentation for details):
|
|
5363 vrml-tab-always-indent
|
|
5364 Controls action of TAB key.
|
|
5365 vrml-auto-newline
|
|
5366 Non-nil means automatically newline before and after braces
|
|
5367 inserted in VRML code.
|
|
5368
|
|
5369 Turning on VRML mode calls the value of the variable `vrml-mode-hook'
|
|
5370 with no args, if that value is non-nil. Read the documentation for
|
|
5371 `vrml-mode-hook' to see what kinds of interesting hook functions
|
|
5372 already exist.
|
|
5373
|
|
5374 Commands:
|
|
5375 \\{vrml-mode-map}" t nil)
|
|
5376
|
|
5377 ;;;***
|
|
5378
|
|
5379 ;;;### (autoloads (xpm-mode) "xpm-mode" "modes/xpm-mode.el")
|
|
5380
|
|
5381 (autoload 'xpm-mode "xpm-mode" "\
|
|
5382 Treat the current buffer as an xpm file and colorize it.
|
|
5383
|
|
5384 Shift-button-1 lets you paint by dragging the mouse. Shift-button-1 on a
|
|
5385 color definition line will change the current painting color to that line's
|
|
5386 value.
|
|
5387
|
|
5388 Characters inserted from the keyboard will NOT be colored properly yet.
|
|
5389 Use the mouse, or do xpm-init (\\[xpm-init]) after making changes.
|
|
5390
|
|
5391 \\[xpm-add-color] Add a new color, prompting for character and value
|
|
5392 \\[xpm-show-image] show the current image at the top of the buffer
|
|
5393 \\[xpm-parse-color] parse the current line's color definition and add
|
|
5394 it to the color table. Provided as a means of changing colors.
|
|
5395 XPM minor mode bindings:
|
|
5396 \\{xpm-mode-map}" t nil)
|
|
5397
|
|
5398 ;;;***
|
|
5399
|
|
5400 ;;;### (autoloads (br-env-load br-env-browse) "br-env" "oobr/br-env.el")
|
|
5401
|
|
5402 (autoload 'br-env-browse "br-env" "\
|
|
5403 Invoke the OO-Browser on an existing or to be created Environment ENV-FILE." t nil)
|
|
5404
|
|
5405 (autoload 'br-env-load "br-env" "\
|
|
5406 Load browser Environment or spec from optional ENV-FILE or 'br-env-file'.
|
|
5407 Non-nil PROMPT means prompt user before building tables.
|
|
5408 Non-nil NO-BUILD means skip build of Environment entirely.
|
|
5409 Return t if load is successful, else nil." t nil)
|
|
5410
|
|
5411 ;;;***
|
|
5412
|
|
5413 ;;;### (autoloads (oo-browser) "br-start" "oobr/br-start.el")
|
|
5414
|
|
5415 (fset 'oobr 'oo-browser)
|
|
5416
|
|
5417 (autoload 'oo-browser "br-start" "\
|
|
5418 Prompt for an Environment and language over which to run the OO-Browser.
|
|
5419 Optional prefix argument SAME-ENV-FLAG means browse the current Environment,
|
120
|
5420 if any, without prompting. Otherwise, if called interactively, give the user
|
|
5421 a choice whether to re-browse the last Environment or to browse a new one." t nil)
|
78
|
5422
|
|
5423 ;;;***
|
|
5424
|
|
5425 ;;;### (autoloads (br-to-from-viewer br-add-class-file) "br" "oobr/br.el")
|
|
5426
|
|
5427 (autoload 'br-add-class-file "br" "\
|
|
5428 Add a file of classes to the current Environment.
|
|
5429 Interactively or when optional CLASS-PATH is nil, CLASS-PATH defaults to the
|
|
5430 current buffer file pathname. If optional LIB-TABLE-P is non-nil, add to
|
|
5431 Library Environment, otherwise add to System Environment. If optional
|
|
5432 SAVE-FILE is t, the Environment is then stored to the filename given by
|
100
|
5433 `br-env-file'. If SAVE-FILE is non-nil and not t, its string value is used
|
78
|
5434 as the file to which to save the Environment." t nil)
|
|
5435
|
|
5436 (autoload 'br-to-from-viewer "br" "\
|
|
5437 Move point to viewer window or back to last recorded listing window." t nil)
|
|
5438
|
|
5439 ;;;***
|
|
5440
|
|
5441 ;;;### (autoloads (c++-browse) "c++-browse" "oobr/c++-browse.el")
|
|
5442
|
|
5443 (autoload 'c++-browse "c++-browse" "\
|
|
5444 Invoke the C++ OO-Browser.
|
|
5445 This allows browsing through C++ library and system class hierarchies. With
|
|
5446 an optional non-nil prefix argument ENV-FILE, prompt for Environment file to
|
|
5447 use. Alternatively, a string value of ENV-FILE is used as the Environment
|
|
5448 file name. See also the file \"br-help\"." t nil)
|
|
5449
|
|
5450 ;;;***
|
|
5451
|
|
5452 ;;;### (autoloads (clos-browse) "clos-brows" "oobr/clos-brows.el")
|
|
5453
|
|
5454 (autoload 'clos-browse "clos-brows" "\
|
|
5455 Invoke the CLOS OO-Browser.
|
|
5456 This allows browsing through CLOS library and system class hierarchies. With
|
|
5457 an optional non-nil prefix argument ENV-FILE, prompt for Environment file
|
|
5458 to use. Alternatively, a string value of ENV-FILE is used as the
|
|
5459 Environment file name. See also the file \"br-help\"." t nil)
|
|
5460
|
|
5461 ;;;***
|
|
5462
|
|
5463 ;;;### (autoloads (eif-browse) "eif-browse" "oobr/eif-browse.el")
|
|
5464
|
|
5465 (autoload 'eif-browse "eif-browse" "\
|
|
5466 Invoke the Eiffel OO-Browser.
|
|
5467 This allows browsing through Eiffel library and system class hierarchies.
|
|
5468 With an optional prefix arg ENV-FILE equal to t, prompt for Environment file
|
|
5469 to use. Alternatively, a string value of ENV-FILE is used as the Environment
|
|
5470 file name. See also the file \"br-help\"." t nil)
|
|
5471
|
|
5472 ;;;***
|
|
5473
|
|
5474 ;;;### (autoloads (info-browse) "info-brows" "oobr/info-brows.el")
|
|
5475
|
|
5476 (autoload 'info-browse "info-brows" "\
|
|
5477 Invoke the Info OO-Browser.
|
|
5478 This allows browsing through Info library and system class hierarchies. With
|
|
5479 an optional non-nil prefix argument ENV-FILE, prompt for Environment file to
|
|
5480 use. Alternatively, a string value of ENV-FILE is used as the Environment
|
|
5481 file name. See also the file \"br-help\"." t nil)
|
|
5482
|
|
5483 ;;;***
|
|
5484
|
|
5485 ;;;### (autoloads (java-browse) "java-brows" "oobr/java-brows.el")
|
|
5486
|
|
5487 (autoload 'java-browse "java-brows" "\
|
|
5488 Invoke the Java OO-Browser.
|
|
5489 This allows browsing through Java library and system class hierarchies. With
|
|
5490 an optional non-nil prefix argument ENV-FILE, prompt for Environment file to
|
|
5491 use. Alternatively, a string value of ENV-FILE is used as the Environment
|
|
5492 file name. See also the file \"br-help\"." t nil)
|
|
5493
|
|
5494 ;;;***
|
|
5495
|
|
5496 ;;;### (autoloads (objc-browse) "objc-brows" "oobr/objc-brows.el")
|
|
5497
|
|
5498 (autoload 'objc-browse "objc-brows" "\
|
|
5499 Invoke the Objective-C OO-Browser.
|
|
5500 This allows browsing through Objective-C library and system class
|
|
5501 hierarchies. With an optional non-nil prefix argument ENV-FILE, prompt for
|
|
5502 Environment file to use. Alternatively, a string value of ENV-FILE is used
|
|
5503 as the Environment file name. See also the file \"br-help\"." t nil)
|
|
5504
|
|
5505 ;;;***
|
|
5506
|
|
5507 ;;;### (autoloads (python-browse) "python-browse" "oobr/python-browse.el")
|
|
5508
|
|
5509 (autoload 'python-browse "python-browse" "\
|
|
5510 Invoke the Python OO-Browser.
|
|
5511 This allows browsing through Python library and system class hierarchies.
|
|
5512 With an optional non-nil prefix argument ENV-FILE, prompt for Environment
|
|
5513 file to use. Alternatively, a string value of ENV-FILE is used as the
|
|
5514 Environment file name. See also the file \"br-help\"." t nil)
|
|
5515
|
|
5516 ;;;***
|
|
5517
|
|
5518 ;;;### (autoloads (smt-browse) "smt-browse" "oobr/smt-browse.el")
|
|
5519
|
|
5520 (autoload 'smt-browse "smt-browse" "\
|
|
5521 Invoke the Smalltalk OO-Browser.
|
|
5522 This allows browsing through Smalltalk library and system class hierarchies.
|
|
5523 With an optional non-nil prefix argument ENV-FILE, prompt for Environment
|
|
5524 file to use. Alternatively, a string value of ENV-FILE is used as the
|
|
5525 Environment file name. See also the file \"br-help\"." t nil)
|
|
5526
|
|
5527 ;;;***
|
|
5528
|
|
5529 ;;;### (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")
|
|
5530
|
120
|
5531 (defcustom change-log-default-name nil "*Name of a change log file for \\[add-change-log-entry]." :type '(choice (const :tag "default" nil) string) :group 'change-log)
|
|
5532
|
|
5533 (defcustom add-log-current-defun-function nil "*If non-nil, function to guess name of current function from surrounding text.\n\\[add-change-log-entry] calls this function (if nil, `add-log-current-defun'\ninstead) with no arguments. It returns a string or nil if it cannot guess." :type 'boolean :group 'change-log)
|
|
5534
|
|
5535 (defcustom add-log-full-name nil "*Full name of user, for inclusion in ChangeLog daily headers.\nThis defaults to the value returned by the `user-full-name' function." :type '(choice (const :tag "Default" nil) string) :group 'change-log)
|
|
5536
|
|
5537 (defcustom add-log-mailing-address nil "*Electronic mail address of user, for inclusion in ChangeLog daily headers.\nThis defaults to the value of `user-mail-address'." :type '(choice (const :tag "Default" nil) string) :group 'change-log)
|
78
|
5538
|
|
5539 (autoload 'prompt-for-change-log-name "add-log" "\
|
|
5540 Prompt for a change log name." nil nil)
|
|
5541
|
|
5542 (autoload 'find-change-log "add-log" "\
|
|
5543 Find a change log file for \\[add-change-log-entry] and return the name.
|
|
5544
|
|
5545 Optional arg FILE-NAME specifies the file to use.
|
|
5546 If FILE-NAME is nil, use the value of `change-log-default-name'.
|
|
5547 If 'change-log-default-name' is nil, behave as though it were 'ChangeLog'
|
|
5548 \(or whatever we use on this operating system).
|
|
5549
|
|
5550 If 'change-log-default-name' contains a leading directory component, then
|
|
5551 simply find it in the current directory. Otherwise, search in the current
|
|
5552 directory and its successive parents for a file so named.
|
|
5553
|
|
5554 Once a file is found, `change-log-default-name' is set locally in the
|
|
5555 current buffer to the complete file name." nil nil)
|
|
5556
|
|
5557 (autoload 'add-change-log-entry "add-log" "\
|
|
5558 Find change log file and add an entry for today.
|
|
5559 Optional arg (interactive prefix) non-nil means prompt for user name and site.
|
|
5560 Second arg is file name of change log. If nil, uses `change-log-default-name'.
|
|
5561 Third arg OTHER-WINDOW non-nil means visit in other window.
|
|
5562 Fourth arg NEW-ENTRY non-nil means always create a new entry at the front;
|
|
5563 never append to an existing entry." t nil)
|
|
5564
|
|
5565 (autoload 'add-change-log-entry-other-window "add-log" "\
|
|
5566 Find change log file in other window and add an entry for today.
|
|
5567 Optional arg (interactive prefix) non-nil means prompt for user name and site.
|
|
5568 Second arg is file name of change log. If nil, uses `change-log-default-name'." t nil)
|
|
5569
|
|
5570 (define-key ctl-x-4-map "a" 'add-change-log-entry-other-window)
|
|
5571
|
|
5572 (autoload 'change-log-mode "add-log" "\
|
|
5573 Major mode for editing change logs; like Indented Text Mode.
|
|
5574 Prevents numeric backups and sets `left-margin' to 8 and `fill-column' to 74.
|
|
5575 New log entries are usually made with \\[add-change-log-entry] or \\[add-change-log-entry-other-window].
|
|
5576 Each entry behaves as a paragraph, and the entries for one day as a page.
|
|
5577 Runs `change-log-mode-hook'." t nil)
|
|
5578
|
|
5579 (autoload 'add-log-current-defun "add-log" "\
|
|
5580 Return name of function definition point is in, or nil.
|
|
5581
|
|
5582 Understands C, Lisp, LaTeX (\"functions\" are chapters, sections, ...),
|
|
5583 Texinfo (@node titles), Perl, and Fortran.
|
|
5584
|
|
5585 Other modes are handled by a heuristic that looks in the 10K before
|
|
5586 point for uppercase headings starting in the first column or
|
|
5587 identifiers followed by `:' or `=', see variable
|
|
5588 `add-log-current-defun-header-regexp'.
|
|
5589
|
|
5590 Has a preference of looking backwards." nil nil)
|
|
5591
|
|
5592 ;;;***
|
|
5593
|
|
5594 ;;;### (autoloads (apropos-documentation apropos-value apropos apropos-command) "apropos" "packages/apropos.el")
|
|
5595
|
|
5596 (fset 'command-apropos 'apropos-command)
|
|
5597
|
|
5598 (autoload 'apropos-command "apropos" "\
|
|
5599 Shows commands (interactively callable functions) that match REGEXP.
|
|
5600 With optional prefix ARG or if `apropos-do-all' is non-nil, also show
|
|
5601 variables." t nil)
|
|
5602
|
|
5603 (autoload 'apropos "apropos" "\
|
|
5604 Show all bound symbols whose names match REGEXP.
|
|
5605 With optional prefix ARG or if `apropos-do-all' is non-nil, also show unbound
|
|
5606 symbols and key bindings, which is a little more time-consuming.
|
|
5607 Returns list of symbols and documentation found." t nil)
|
|
5608
|
|
5609 (autoload 'apropos-value "apropos" "\
|
|
5610 Show all symbols whose value's printed image matches REGEXP.
|
|
5611 With optional prefix ARG or if `apropos-do-all' is non-nil, also looks
|
|
5612 at the function and at the names and values of properties.
|
|
5613 Returns list of symbols and values found." t nil)
|
|
5614
|
|
5615 (autoload 'apropos-documentation "apropos" "\
|
|
5616 Show symbols whose documentation contain matches for REGEXP.
|
|
5617 With optional prefix ARG or if `apropos-do-all' is non-nil, also use
|
|
5618 documentation that is not stored in the documentation file and show key
|
|
5619 bindings.
|
|
5620 Returns list of symbols and documentation found." t nil)
|
|
5621
|
|
5622 ;;;***
|
|
5623
|
|
5624 ;;;### (autoloads (define-auto-insert auto-insert) "autoinsert" "packages/autoinsert.el")
|
|
5625
|
|
5626 (autoload 'auto-insert "autoinsert" "\
|
|
5627 Insert default contents into a new file if `auto-insert' is non-nil.
|
|
5628 Matches the visited file name against the elements of `auto-insert-alist'." t nil)
|
|
5629
|
|
5630 (autoload 'define-auto-insert "autoinsert" "\
|
|
5631 Associate CONDITION with (additional) ACTION in `auto-insert-alist'.
|
|
5632 Optional AFTER means to insert action after all existing actions for CONDITION,
|
|
5633 or if CONDITION had no actions, after all other CONDITIONs." nil nil)
|
|
5634
|
|
5635 ;;;***
|
|
5636
|
|
5637 ;;;### (autoloads (mouse-avoidance-mode) "avoid" "packages/avoid.el")
|
|
5638
|
80
|
5639 (defvar mouse-avoidance-mode nil "\
|
|
5640 Value is t or a symbol if the mouse pointer should avoid the cursor.
|
|
5641 See function `mouse-avoidance-mode' for possible values. Changing this
|
|
5642 variable is NOT the recommended way to change modes; use that function
|
|
5643 instead.")
|
|
5644
|
78
|
5645 (autoload 'mouse-avoidance-mode "avoid" "\
|
|
5646 Set cursor avoidance mode to MODE.
|
|
5647 MODE should be one of the symbols `banish', `exile', `jump', `animate',
|
|
5648 `cat-and-mouse', `proteus', or `none'.
|
|
5649
|
|
5650 If MODE is nil, toggle mouse avoidance between `none` and `banish'
|
|
5651 modes. Positive numbers and symbols other than the above are treated
|
|
5652 as equivalent to `banish'; negative numbers and `-' are equivalent to `none'.
|
|
5653
|
|
5654 Effects of the different modes:
|
|
5655 * banish: Move the mouse to the upper-right corner on any keypress.
|
|
5656 * exile: Move the mouse to the corner only if the cursor gets too close,
|
|
5657 and allow it to return once the cursor is out of the way.
|
|
5658 * jump: If the cursor gets too close to the mouse, displace the mouse
|
|
5659 a random distance & direction.
|
|
5660 * animate: As `jump', but shows steps along the way for illusion of motion.
|
|
5661 * cat-and-mouse: Same as `animate'.
|
|
5662 * proteus: As `animate', but changes the shape of the mouse pointer too.
|
|
5663
|
|
5664 Whenever the mouse is moved, the frame is also raised.
|
|
5665
|
|
5666 \(see `mouse-avoidance-threshold' for definition of \"too close\",
|
|
5667 and `mouse-avoidance-nudge-dist' and `mouse-avoidance-nudge-var' for
|
|
5668 definition of \"random distance\".)" t nil)
|
|
5669
|
|
5670 (add-minor-mode 'mouse-avoidance-mode " Avoid")
|
|
5671
|
|
5672 ;;;***
|
|
5673
|
|
5674 ;;;### (autoloads (blink-cursor-mode) "blink-cursor" "packages/blink-cursor.el")
|
|
5675
|
|
5676 (autoload 'blink-cursor-mode "blink-cursor" "\
|
|
5677 Enable or disable a blinking cursor.
|
|
5678 If TIMEOUT is nil, toggle on or off.
|
|
5679 If TIMEOUT is t, enable with the previous timeout value.
|
|
5680 If TIMEOUT is 0, disable.
|
|
5681 If TIMEOUT is greater than 0, then the cursor will blink once
|
|
5682 each TIMEOUT secs (can be a float)." t nil)
|
|
5683
|
|
5684 ;;;***
|
|
5685
|
|
5686 ;;;### (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")
|
|
5687
|
|
5688 (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)))
|
|
5689
|
|
5690 (defvar bookmark-map nil "\
|
|
5691 Keymap containing bindings to bookmark functions.
|
|
5692 It is not bound to any key by default: to bind it
|
|
5693 so that you have a bookmark prefix, just use `global-set-key' and bind a
|
|
5694 key of your choice to `bookmark-map'. All interactive bookmark
|
|
5695 functions have a binding in this keymap.")
|
|
5696
|
|
5697 (define-prefix-command 'bookmark-map)
|
|
5698
|
|
5699 (define-key bookmark-map "x" 'bookmark-set)
|
|
5700
|
|
5701 (define-key bookmark-map "m" 'bookmark-set)
|
|
5702
|
|
5703 (define-key bookmark-map "j" 'bookmark-jump)
|
|
5704
|
|
5705 (define-key bookmark-map "g" 'bookmark-jump)
|
|
5706
|
|
5707 (define-key bookmark-map "i" 'bookmark-insert)
|
|
5708
|
|
5709 (define-key bookmark-map "e" 'edit-bookmarks)
|
|
5710
|
|
5711 (define-key bookmark-map "f" 'bookmark-insert-location)
|
|
5712
|
|
5713 (define-key bookmark-map "r" 'bookmark-rename)
|
|
5714
|
|
5715 (define-key bookmark-map "d" 'bookmark-delete)
|
|
5716
|
|
5717 (define-key bookmark-map "l" 'bookmark-load)
|
|
5718
|
|
5719 (define-key bookmark-map "w" 'bookmark-write)
|
|
5720
|
|
5721 (define-key bookmark-map "s" 'bookmark-save)
|
|
5722
|
|
5723 (autoload 'bookmark-set "bookmark" "\
|
|
5724 Set a bookmark named NAME inside a file.
|
|
5725 If name is nil, then the user will be prompted.
|
|
5726 With prefix arg, will not overwrite a bookmark that has the same name
|
|
5727 as NAME if such a bookmark already exists, but instead will \"push\"
|
|
5728 the new bookmark onto the bookmark alist. Thus the most recently set
|
|
5729 bookmark with name NAME would be the one in effect at any given time,
|
|
5730 but the others are still there, should you decide to delete the most
|
|
5731 recent one.
|
|
5732
|
|
5733 To yank words from the text of the buffer and use them as part of the
|
|
5734 bookmark name, type C-w while setting a bookmark. Successive C-w's
|
|
5735 yank successive words.
|
|
5736
|
|
5737 Typing C-u inserts the name of the last bookmark used in the buffer
|
|
5738 \(as an aid in using a single bookmark name to track your progress
|
|
5739 through a large file). If no bookmark was used, then C-u inserts the
|
|
5740 name of the file being visited.
|
|
5741
|
|
5742 Use \\[bookmark-delete] to remove bookmarks (you give it a name,
|
|
5743 and it removes only the first instance of a bookmark with that name from
|
|
5744 the list of bookmarks.)" t nil)
|
|
5745
|
|
5746 (autoload 'bookmark-jump "bookmark" "\
|
|
5747 Jump to bookmark BOOKMARK (a point in some file).
|
|
5748 You may have a problem using this function if the value of variable
|
|
5749 `bookmark-alist' is nil. If that happens, you need to load in some
|
|
5750 bookmarks. See help on function `bookmark-load' for more about
|
|
5751 this.
|
|
5752
|
|
5753 If the file pointed to by BOOKMARK no longer exists, you will be asked
|
|
5754 if you wish to give the bookmark a new location, and bookmark-jump
|
|
5755 will then jump to the new location, as well as recording it in place
|
|
5756 of the old one in the permanent bookmark record." t nil)
|
|
5757
|
|
5758 (autoload 'bookmark-relocate "bookmark" "\
|
|
5759 Relocate BOOKMARK -- prompts for a filename, and makes an already
|
|
5760 existing bookmark point to that file, instead of the one it used to
|
|
5761 point at. Useful when a file has been renamed after a bookmark was
|
|
5762 set in it." t nil)
|
|
5763
|
|
5764 (autoload 'bookmark-insert-location "bookmark" "\
|
|
5765 Insert the name of the file associated with BOOKMARK.
|
|
5766 Optional second arg NO-HISTORY means don't record this in the
|
|
5767 minibuffer history list `bookmark-history'." t nil)
|
|
5768
|
|
5769 (autoload 'bookmark-rename "bookmark" "\
|
|
5770 Change the name of OLD bookmark to NEW name. If called from
|
|
5771 keyboard, prompts for OLD and NEW. If called from menubar, OLD is
|
|
5772 selected from a menu, and prompts for NEW.
|
|
5773
|
|
5774 If called from Lisp, prompts for NEW if only OLD was passed as an
|
|
5775 argument. If called with two strings, then no prompting is done. You
|
|
5776 must pass at least OLD when calling from Lisp.
|
|
5777
|
|
5778 While you are entering the new name, consecutive C-w's insert
|
108
|
5779 consecutive words from the text of the buffer into the new bookmark
|
78
|
5780 name." t nil)
|
|
5781
|
|
5782 (autoload 'bookmark-insert "bookmark" "\
|
|
5783 Insert the text of the file pointed to by bookmark BOOKMARK.
|
|
5784 You may have a problem using this function if the value of variable
|
|
5785 `bookmark-alist' is nil. If that happens, you need to load in some
|
|
5786 bookmarks. See help on function `bookmark-load' for more about
|
|
5787 this." t nil)
|
|
5788
|
|
5789 (autoload 'bookmark-delete "bookmark" "\
|
|
5790 Delete BOOKMARK from the bookmark list.
|
|
5791 Removes only the first instance of a bookmark with that name. If
|
|
5792 there are one or more other bookmarks with the same name, they will
|
|
5793 not be deleted. Defaults to the \"current\" bookmark (that is, the
|
|
5794 one most recently used in this file, if any).
|
|
5795 Optional second arg BATCH means don't update the bookmark list buffer,
|
|
5796 probably because we were called from there." t nil)
|
|
5797
|
|
5798 (autoload 'bookmark-write "bookmark" "\
|
|
5799 Write bookmarks to a file (for which the user will be prompted
|
|
5800 interactively). Don't use this in Lisp programs; use bookmark-save
|
|
5801 instead." t nil)
|
|
5802
|
|
5803 (autoload 'bookmark-save "bookmark" "\
|
|
5804 Save currently defined bookmarks.
|
|
5805 Saves by default in the file defined by the variable
|
|
5806 `bookmark-default-file'. With a prefix arg, save it in file FILE
|
|
5807 \(second argument).
|
|
5808
|
|
5809 If you are calling this from Lisp, the two arguments are PREFIX-ARG
|
|
5810 and FILE, and if you just want it to write to the default file, then
|
|
5811 pass no arguments. Or pass in nil and FILE, and it will save in FILE
|
|
5812 instead. If you pass in one argument, and it is non-nil, then the
|
|
5813 user will be interactively queried for a file to save in.
|
|
5814
|
|
5815 When you want to load in the bookmarks from a file, use
|
|
5816 `bookmark-load', \\[bookmark-load]. That function will prompt you
|
|
5817 for a file, defaulting to the file defined by variable
|
|
5818 `bookmark-default-file'." t nil)
|
|
5819
|
|
5820 (autoload 'bookmark-load "bookmark" "\
|
|
5821 Load bookmarks from FILE (which must be in bookmark format).
|
|
5822 Appends loaded bookmarks to the front of the list of bookmarks. If
|
|
5823 optional second argument REVERT is non-nil, existing bookmarks are
|
|
5824 destroyed. Optional third arg NO-MSG means don't display any messages
|
|
5825 while loading.
|
|
5826
|
|
5827 If you load a file that doesn't contain a proper bookmark alist, you
|
|
5828 will corrupt Emacs's bookmark list. Generally, you should only load
|
|
5829 in files that were created with the bookmark functions in the first
|
|
5830 place. Your own personal bookmark file, `~/.emacs.bmk', is
|
|
5831 maintained automatically by Emacs; you shouldn't need to load it
|
|
5832 explicitly." t nil)
|
|
5833
|
|
5834 (autoload 'bookmark-bmenu-list "bookmark" "\
|
|
5835 Display a list of existing bookmarks.
|
|
5836 The list is displayed in a buffer named `*Bookmark List*'.
|
|
5837 The leftmost column displays a D if the bookmark is flagged for
|
|
5838 deletion, or > if it is flagged for displaying." t nil)
|
|
5839
|
|
5840 (defalias 'list-bookmarks 'bookmark-bmenu-list)
|
|
5841
|
|
5842 (defalias 'edit-bookmarks 'bookmark-bmenu-list)
|
|
5843
|
|
5844 (autoload 'bookmark-menu-insert "bookmark" "\
|
|
5845 Insert the text of the file pointed to by bookmark BOOKMARK.
|
|
5846 You may have a problem using this function if the value of variable
|
|
5847 `bookmark-alist' is nil. If that happens, you need to load in some
|
|
5848 bookmarks. See help on function `bookmark-load' for more about
|
|
5849 this.
|
|
5850
|
|
5851 Warning: this function only takes an EVENT as argument. Use the
|
|
5852 corresponding bookmark function from Lisp (the one without the
|
|
5853 \"-menu-\" in its name)." t nil)
|
|
5854
|
|
5855 (autoload 'bookmark-menu-jump "bookmark" "\
|
|
5856 Jump to bookmark BOOKMARK (a point in some file).
|
|
5857 You may have a problem using this function if the value of variable
|
|
5858 `bookmark-alist' is nil. If that happens, you need to load in some
|
|
5859 bookmarks. See help on function `bookmark-load' for more about
|
|
5860 this.
|
|
5861
|
|
5862 Warning: this function only takes an EVENT as argument. Use the
|
|
5863 corresponding bookmark function from Lisp (the one without the
|
|
5864 \"-menu-\" in its name)." t nil)
|
|
5865
|
|
5866 (autoload 'bookmark-menu-locate "bookmark" "\
|
|
5867 Insert the name of the file associated with BOOKMARK.
|
|
5868 \(This is not the same as the contents of that file).
|
|
5869
|
|
5870 Warning: this function only takes an EVENT as argument. Use the
|
|
5871 corresponding bookmark function from Lisp (the one without the
|
|
5872 \"-menu-\" in its name)." t nil)
|
|
5873
|
|
5874 (autoload 'bookmark-menu-rename "bookmark" "\
|
|
5875 Change the name of OLD-BOOKMARK to NEWNAME.
|
|
5876 If called from keyboard, prompts for OLD-BOOKMARK and NEWNAME.
|
|
5877 If called from menubar, OLD-BOOKMARK is selected from a menu, and
|
|
5878 prompts for NEWNAME.
|
|
5879 If called from Lisp, prompts for NEWNAME if only OLD-BOOKMARK was
|
|
5880 passed as an argument. If called with two strings, then no prompting
|
|
5881 is done. You must pass at least OLD-BOOKMARK when calling from Lisp.
|
|
5882
|
|
5883 While you are entering the new name, consecutive C-w's insert
|
108
|
5884 consecutive words from the text of the buffer into the new bookmark
|
78
|
5885 name.
|
|
5886
|
|
5887 Warning: this function only takes an EVENT as argument. Use the
|
|
5888 corresponding bookmark function from Lisp (the one without the
|
|
5889 \"-menu-\" in its name)." t nil)
|
|
5890
|
|
5891 (autoload 'bookmark-menu-delete "bookmark" "\
|
|
5892 Delete the bookmark named NAME from the bookmark list.
|
|
5893 Removes only the first instance of a bookmark with that name. If
|
|
5894 there are one or more other bookmarks with the same name, they will
|
|
5895 not be deleted. Defaults to the \"current\" bookmark (that is, the
|
|
5896 one most recently used in this file, if any).
|
|
5897
|
|
5898 Warning: this function only takes an EVENT as argument. Use the
|
|
5899 corresponding bookmark function from Lisp (the one without the
|
|
5900 \"-menu-\" in its name)." t nil)
|
|
5901
|
|
5902 ;;;***
|
|
5903
|
|
5904 ;;;### (autoloads nil "buff-menu" "packages/buff-menu.el")
|
|
5905
|
|
5906 (defvar list-buffers-directory nil)
|
|
5907
|
|
5908 (make-variable-buffer-local 'list-buffers-directory)
|
|
5909
|
|
5910 ;;;***
|
|
5911
|
|
5912 ;;;### (autoloads (command-history-mode list-command-history repeat-matching-complex-command) "chistory" "packages/chistory.el")
|
|
5913
|
|
5914 (autoload 'repeat-matching-complex-command "chistory" "\
|
|
5915 Edit and re-evaluate complex command with name matching PATTERN.
|
|
5916 Matching occurrences are displayed, most recent first, until you select
|
|
5917 a form for evaluation. If PATTERN is empty (or nil), every form in the
|
|
5918 command history is offered. The form is placed in the minibuffer for
|
|
5919 editing and the result is evaluated." t nil)
|
|
5920
|
|
5921 (autoload 'list-command-history "chistory" "\
|
|
5922 List history of commands typed to minibuffer.
|
|
5923 The number of commands listed is controlled by `list-command-history-max'.
|
|
5924 Calls value of `list-command-history-filter' (if non-nil) on each history
|
|
5925 element to judge if that element should be excluded from the list.
|
|
5926
|
|
5927 The buffer is left in Command History mode." t nil)
|
|
5928
|
|
5929 (autoload 'command-history-mode "chistory" "\
|
|
5930 Major mode for examining commands from `command-history'.
|
|
5931 The number of commands listed is controlled by `list-command-history-max'.
|
|
5932 The command history is filtered by `list-command-history-filter' if non-nil.
|
|
5933 Use \\<command-history-map>\\[command-history-repeat] to repeat the command on the current line.
|
|
5934
|
|
5935 Otherwise much like Emacs-Lisp Mode except that there is no self-insertion
|
|
5936 and digits provide prefix arguments. Tab does not indent.
|
|
5937 \\{command-history-map}
|
|
5938 Calls the value of `command-history-hook' if that is non-nil.
|
|
5939 The Command History listing is recomputed each time this mode is invoked." t nil)
|
|
5940
|
|
5941 ;;;***
|
|
5942
|
|
5943 ;;;### (autoloads nil "cmuscheme" "packages/cmuscheme.el")
|
|
5944
|
|
5945 (add-hook 'same-window-buffer-names "*scheme*")
|
|
5946
|
|
5947 ;;;***
|
|
5948
|
|
5949 ;;;### (autoloads (compare-windows) "compare-w" "packages/compare-w.el")
|
|
5950
|
|
5951 (autoload 'compare-windows "compare-w" "\
|
|
5952 Compare text in current window with text in next window.
|
|
5953 Compares the text starting at point in each window,
|
|
5954 moving over text in each one as far as they match.
|
|
5955
|
|
5956 This command pushes the mark in each window
|
|
5957 at the prior location of point in that window.
|
|
5958 If both windows display the same buffer,
|
|
5959 the mark is pushed twice in that buffer:
|
|
5960 first in the other window, then in the selected window.
|
|
5961
|
|
5962 A prefix arg means ignore changes in whitespace.
|
|
5963 The variable `compare-windows-whitespace' controls how whitespace is skipped.
|
|
5964 If `compare-ignore-case' is non-nil, changes in case are also ignored." t nil)
|
|
5965
|
|
5966 ;;;***
|
|
5967
|
|
5968 ;;;### (autoloads (first-error previous-error next-error compilation-minor-mode grep compile) "compile" "packages/compile.el")
|
|
5969
|
120
|
5970 (defcustom compilation-mode-hook nil "*List of hook functions run by `compilation-mode' (see `run-hooks')." :type 'hook :group 'compilation)
|
|
5971
|
|
5972 (defcustom compilation-window-height nil "*Number of lines in a compilation window. If nil, use Emacs default." :type '(choice (const nil) integer) :group 'compilation)
|
|
5973
|
|
5974 (defcustom compilation-buffer-name-function nil "Function to compute the name of a compilation buffer.\nThe function receives one argument, the name of the major mode of the\ncompilation buffer. It should return a string.\nnil means compute the name with `(concat \"*\" (downcase major-mode) \"*\")'." :type 'function :group 'compilation)
|
|
5975
|
|
5976 (defcustom compilation-finish-function nil "*Function to call when a compilation process finishes.\nIt is called with two arguments: the compilation buffer, and a string\ndescribing how the process finished." :type 'function :group 'compilation)
|
|
5977
|
|
5978 (defcustom compilation-search-path '(nil) "*List of directories to search for source files named in error messages.\nElements should be directory names, not file names of directories.\nnil as an element means to try the default directory." :type '(repeat (choice (const :tag "Default" nil) directory)) :group 'compilation)
|
78
|
5979
|
|
5980 (autoload 'compile "compile" "\
|
|
5981 Compile the program including the current buffer. Default: run `make'.
|
|
5982 Runs COMMAND, a shell command, in a separate process asynchronously
|
|
5983 with output going to the buffer `*compilation*'.
|
|
5984
|
|
5985 You can then use the command \\[next-error] to find the next error message
|
|
5986 and move to the source code that caused it.
|
|
5987
|
|
5988 Interactively, prompts for the command if `compilation-read-command' is
|
|
5989 non-nil; otherwise uses `compile-command'. With prefix arg, always prompts.
|
|
5990
|
|
5991 To run more than one compilation at once, start one and rename the
|
|
5992 `*compilation*' buffer to some other name with \\[rename-buffer].
|
|
5993 Then start the next one.
|
|
5994
|
|
5995 The name used for the buffer is actually whatever is returned by
|
|
5996 the function in `compilation-buffer-name-function', so you can set that
|
|
5997 to a function that generates a unique name." t nil)
|
|
5998
|
|
5999 (autoload 'grep "compile" "\
|
|
6000 Run grep, with user-specified args, and collect output in a buffer.
|
|
6001 While grep runs asynchronously, you can use the \\[next-error] command
|
|
6002 to find the text that grep hits refer to.
|
|
6003
|
|
6004 This command uses a special history list for its arguments, so you can
|
|
6005 easily repeat a grep command." t nil)
|
|
6006
|
|
6007 (autoload 'compilation-minor-mode "compile" "\
|
|
6008 Toggle compilation minor mode.
|
|
6009 With arg, turn compilation mode on if and only if arg is positive.
|
|
6010 See `compilation-mode'.
|
|
6011 ! \\{compilation-mode-map}" t nil)
|
|
6012
|
|
6013 (autoload 'next-error "compile" "\
|
|
6014 Visit next compilation error message and corresponding source code.
|
|
6015 This operates on the output from the \\[compile] command.
|
|
6016 If all preparsed error messages have been processed,
|
|
6017 the error message buffer is checked for new ones.
|
|
6018
|
|
6019 A prefix arg specifies how many error messages to move;
|
|
6020 negative means move back to previous error messages.
|
|
6021 Just C-u as a prefix means reparse the error message buffer
|
|
6022 and start at the first error.
|
|
6023
|
|
6024 \\[next-error] normally applies to the most recent compilation started,
|
|
6025 but as long as you are in the middle of parsing errors from one compilation
|
|
6026 output buffer, you stay with that compilation output buffer.
|
|
6027
|
|
6028 Use \\[next-error] in a compilation output buffer to switch to
|
|
6029 processing errors from that compilation.
|
|
6030
|
|
6031 See variables `compilation-parse-errors-function' and
|
|
6032 `compilation-error-regexp-alist' for customization ideas." t nil)
|
|
6033
|
|
6034 (define-key ctl-x-map "`" 'next-error)
|
|
6035
|
|
6036 (autoload 'previous-error "compile" "\
|
|
6037 Visit previous compilation error message and corresponding source code.
|
|
6038 This operates on the output from the \\[compile] command." t nil)
|
|
6039
|
|
6040 (autoload 'first-error "compile" "\
|
|
6041 Reparse the error message buffer and start at the first error
|
|
6042 Visit corresponding source code.
|
|
6043 This operates on the output from the \\[compile] command." t nil)
|
|
6044
|
|
6045 ;;;***
|
|
6046
|
102
|
6047 ;;;### (autoloads (cu-edit-faces) "cu-edit-faces" "packages/cu-edit-faces.el")
|
|
6048
|
|
6049 (autoload 'cu-edit-faces "cu-edit-faces" nil t nil)
|
|
6050
|
|
6051 ;;;***
|
|
6052
|
78
|
6053 ;;;### (autoloads (dabbrev-expand dabbrev-completion) "dabbrev" "packages/dabbrev.el")
|
|
6054
|
|
6055 (define-key global-map [(meta /)] 'dabbrev-expand)
|
|
6056
|
|
6057 (define-key global-map [(meta control /)] 'dabbrev-completion)
|
|
6058
|
|
6059 (autoload 'dabbrev-completion "dabbrev" "\
|
|
6060 Completion on current word.
|
|
6061 Like \\[dabbrev-expand] but finds all expansions in the current buffer
|
|
6062 and presents suggestions for completion.
|
|
6063
|
|
6064 With a prefix argument, it searches all buffers accepted by the
|
|
6065 function pointed out by `dabbrev-friend-buffer-function' to find the
|
|
6066 completions.
|
|
6067
|
|
6068 If the prefix argument is 16 (which comes from C-u C-u),
|
|
6069 then it searches *all* buffers.
|
|
6070
|
|
6071 With no prefix argument, it reuses an old completion list
|
|
6072 if there is a suitable one already." t nil)
|
|
6073
|
|
6074 (autoload 'dabbrev-expand "dabbrev" "\
|
|
6075 Expand previous word \"dynamically\".
|
|
6076
|
|
6077 Expands to the most recent, preceding word for which this is a prefix.
|
|
6078 If no suitable preceding word is found, words following point are
|
|
6079 considered. If still no suitable word is found, then look in the
|
|
6080 buffers accepted by the function pointed out by variable
|
|
6081 `dabbrev-friend-buffer-function'.
|
|
6082
|
|
6083 A positive prefix argument, N, says to take the Nth backward *distinct*
|
|
6084 possibility. A negative argument says search forward.
|
|
6085
|
|
6086 If the cursor has not moved from the end of the previous expansion and
|
|
6087 no argument is given, replace the previously-made expansion
|
|
6088 with the next possible expansion not yet tried.
|
|
6089
|
|
6090 The variable `dabbrev-backward-only' may be used to limit the
|
|
6091 direction of search to backward if set non-nil.
|
|
6092
|
|
6093 See also `dabbrev-abbrev-char-regexp' and \\[dabbrev-completion]." t nil)
|
|
6094
|
|
6095 ;;;***
|
|
6096
|
104
|
6097 ;;;### (autoloads (diff-backup diff) "diff" "packages/diff.el")
|
|
6098
|
120
|
6099 (defcustom diff-switches "-c" "*A list of switches (strings) to pass to the diff program." :type '(choice string (repeat string)) :group 'diff)
|
104
|
6100
|
|
6101 (autoload 'diff "diff" "\
|
|
6102 Find and display the differences between OLD and NEW files.
|
|
6103 Interactively you are prompted with the current buffer's file name for NEW
|
|
6104 and what appears to be its backup for OLD." t nil)
|
|
6105
|
|
6106 (autoload 'diff-backup "diff" "\
|
|
6107 Diff this file with its backup file or vice versa.
|
|
6108 Uses the latest backup, if there are several numerical backups.
|
|
6109 If this file is a backup, diff it with its original.
|
|
6110 The backup file is the first file given to `diff'." t nil)
|
|
6111
|
|
6112 ;;;***
|
|
6113
|
78
|
6114 ;;;### (autoloads (edit-faces) "edit-faces" "packages/edit-faces.el")
|
|
6115
|
|
6116 (autoload 'edit-faces "edit-faces" "\
|
|
6117 Alter face characteristics by editing a list of defined faces.
|
|
6118 Pops up a buffer containing a list of defined faces.
|
|
6119
|
|
6120 Editing commands:
|
|
6121
|
|
6122 \\{edit-faces-mode-map}" t nil)
|
|
6123
|
|
6124 ;;;***
|
|
6125
|
|
6126 ;;;### (autoloads (report-xemacs-bug) "emacsbug" "packages/emacsbug.el")
|
|
6127
|
|
6128 (autoload 'report-xemacs-bug "emacsbug" "\
|
|
6129 Report a bug in XEmacs.
|
|
6130 Prompts for bug subject. Leaves you in a mail buffer." t nil)
|
|
6131
|
|
6132 ;;;***
|
|
6133
|
|
6134 ;;;### (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")
|
|
6135
|
|
6136 (autoload 'emerge-files "emerge" "\
|
|
6137 Run Emerge on two files." t nil)
|
|
6138
|
|
6139 (fset 'emerge 'emerge-files)
|
|
6140
|
|
6141 (autoload 'emerge-files-with-ancestor "emerge" "\
|
|
6142 Run Emerge on two files, giving another file as the ancestor." t nil)
|
|
6143
|
|
6144 (autoload 'emerge-buffers "emerge" "\
|
|
6145 Run Emerge on two buffers." t nil)
|
|
6146
|
|
6147 (autoload 'emerge-buffers-with-ancestor "emerge" "\
|
|
6148 Run Emerge on two buffers, giving another buffer as the ancestor." t nil)
|
|
6149
|
|
6150 (autoload 'emerge-files-command "emerge" nil nil nil)
|
|
6151
|
|
6152 (autoload 'emerge-files-with-ancestor-command "emerge" nil nil nil)
|
|
6153
|
|
6154 (autoload 'emerge-files-remote "emerge" nil nil nil)
|
|
6155
|
|
6156 (autoload 'emerge-files-with-ancestor-remote "emerge" nil nil nil)
|
|
6157
|
|
6158 (autoload 'emerge-revisions "emerge" "\
|
|
6159 Emerge two RCS revisions of a file." t nil)
|
|
6160
|
|
6161 (autoload 'emerge-revisions-with-ancestor "emerge" "\
|
|
6162 Emerge two RCS revisions of a file, with another revision as ancestor." t nil)
|
|
6163
|
|
6164 (autoload 'emerge-merge-directories "emerge" nil t nil)
|
|
6165
|
|
6166 ;;;***
|
|
6167
|
|
6168 ;;;### (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")
|
|
6169
|
|
6170 (defvar tags-build-completion-table 'ask "\
|
|
6171 *If this variable is nil, then tags completion is disabled.
|
|
6172 If this variable is t, then things which prompt for tags will do so with
|
|
6173 completion across all known tags.
|
|
6174 If this variable is the symbol `ask', then you will be asked whether each
|
|
6175 tags table should be added to the completion list as it is read in.
|
|
6176 (With the exception that for very small tags tables, you will not be asked,
|
|
6177 since they can be parsed quickly.)")
|
|
6178
|
|
6179 (defvar tags-always-exact nil "\
|
|
6180 *If this variable is non-nil, then tags always looks for exact matches.")
|
|
6181
|
|
6182 (defvar tag-table-alist nil "\
|
|
6183 *A list which determines which tags files should be active for a
|
|
6184 given buffer. This is not really an association list, in that all
|
|
6185 elements are checked. The CAR of each element of this list is a
|
|
6186 pattern against which the buffer's file name is compared; if it
|
|
6187 matches, then the CDR of the list should be the name of the tags
|
|
6188 table to use. If more than one element of this list matches the
|
|
6189 buffer's file name, then all of the associated tags tables will be
|
|
6190 used. Earlier ones will be searched first.
|
|
6191
|
|
6192 If the CAR of elements of this list are strings, then they are treated
|
|
6193 as regular-expressions against which the file is compared (like the
|
|
6194 auto-mode-alist). If they are not strings, then they are evaluated.
|
|
6195 If they evaluate to non-nil, then the current buffer is considered to
|
|
6196 match.
|
|
6197
|
|
6198 If the CDR of the elements of this list are strings, then they are
|
|
6199 assumed to name a TAGS file. If they name a directory, then the string
|
|
6200 \"TAGS\" is appended to them to get the file name. If they are not
|
|
6201 strings, then they are evaluated, and must return an appropriate string.
|
|
6202
|
|
6203 For example:
|
|
6204 (setq tag-table-alist
|
|
6205 '((\"/usr/src/public/perl/\" . \"/usr/src/public/perl/perl-3.0/\")
|
|
6206 (\"\\\\.el$\" . \"/usr/local/emacs/src/\")
|
|
6207 (\"/jbw/gnu/\" . \"/usr15/degree/stud/jbw/gnu/\")
|
|
6208 (\"\" . \"/usr/local/emacs/src/\")
|
|
6209 ))
|
|
6210
|
|
6211 This means that anything in the /usr/src/public/perl/ directory should use
|
|
6212 the TAGS file /usr/src/public/perl/perl-3.0/TAGS; and file ending in .el should
|
|
6213 use the TAGS file /usr/local/emacs/src/TAGS; and anything in or below the
|
|
6214 directory /jbw/gnu/ should use the TAGS file /usr15/degree/stud/jbw/gnu/TAGS.
|
|
6215 A file called something like \"/usr/jbw/foo.el\" would use both the TAGS files
|
|
6216 /usr/local/emacs/src/TAGS and /usr15/degree/stud/jbw/gnu/TAGS (in that order)
|
|
6217 because it matches both patterns.
|
|
6218
|
|
6219 If the buffer-local variable `buffer-tag-table' is set, then it names a tags
|
|
6220 table that is searched before all others when find-tag is executed from this
|
|
6221 buffer.
|
|
6222
|
|
6223 If there is a file called \"TAGS\" in the same directory as the file in
|
|
6224 question, then that tags file will always be used as well (after the
|
|
6225 `buffer-tag-table' but before the tables specified by this list.)
|
|
6226
|
|
6227 If the variable tags-file-name is set, then the tags file it names will apply
|
|
6228 to all buffers (for backwards compatibility.) It is searched first.
|
|
6229 ")
|
|
6230
|
|
6231 (autoload 'visit-tags-table "etags" "\
|
|
6232 Tell tags commands to use tags table file FILE first.
|
|
6233 FILE should be the name of a file created with the `etags' program.
|
|
6234 A directory name is ok too; it means file TAGS in that directory." t nil)
|
|
6235
|
|
6236 (autoload 'find-tag "etags" "\
|
|
6237 *Find tag whose name contains TAGNAME.
|
|
6238 Selects the buffer that the tag is contained in
|
|
6239 and puts point at its definition.
|
|
6240 If TAGNAME is a null string, the expression in the buffer
|
|
6241 around or before point is used as the tag name.
|
|
6242 If called interactively with a numeric argument, searches for the next tag
|
|
6243 in the tag table that matches the tagname used in the previous find-tag.
|
|
6244 If second arg OTHER-WINDOW is non-nil, uses another window to display
|
|
6245 the tag.
|
|
6246
|
|
6247 This version of this function supports multiple active tags tables,
|
|
6248 and completion.
|
|
6249
|
|
6250 Variables of note:
|
|
6251
|
|
6252 tag-table-alist controls which tables apply to which buffers
|
|
6253 tags-file-name a default tags table
|
|
6254 tags-build-completion-table controls completion behavior
|
|
6255 buffer-tag-table another way of specifying a buffer-local table
|
|
6256 make-tags-files-invisible whether tags tables should be very hidden
|
|
6257 tag-mark-stack-max how many tags-based hops to remember" t nil)
|
|
6258
|
|
6259 (autoload 'find-tag-other-window "etags" "\
|
|
6260 *Find tag whose name contains TAGNAME.
|
|
6261 Selects the buffer that the tag is contained in in another window
|
|
6262 and puts point at its definition.
|
|
6263 If TAGNAME is a null string, the expression in the buffer
|
|
6264 around or before point is used as the tag name.
|
|
6265 If second arg NEXT is non-nil (interactively, with prefix arg),
|
|
6266 searches for the next tag in the tag table
|
|
6267 that matches the tagname used in the previous find-tag.
|
|
6268
|
|
6269 This version of this function supports multiple active tags tables,
|
|
6270 and completion.
|
|
6271
|
|
6272 Variables of note:
|
|
6273
|
|
6274 tag-table-alist controls which tables apply to which buffers
|
|
6275 tags-file-name a default tags table
|
|
6276 tags-build-completion-table controls completion behavior
|
|
6277 buffer-tag-table another way of specifying a buffer-local table
|
|
6278 make-tags-files-invisible whether tags tables should be very hidden
|
|
6279 tag-mark-stack-max how many tags-based hops to remember" t nil)
|
|
6280
|
|
6281 (autoload 'next-file "etags" "\
|
|
6282 Select next file among files in current tag table(s).
|
|
6283
|
|
6284 A first argument of t (prefix arg, if interactive) initializes to the
|
|
6285 beginning of the list of files in the (first) tags table. If the argument
|
|
6286 is neither nil nor t, it is evalled to initialize the list of files.
|
|
6287
|
|
6288 Non-nil second argument NOVISIT means use a temporary buffer
|
|
6289 to save time and avoid uninteresting warnings.
|
|
6290
|
|
6291 Value is nil if the file was already visited;
|
|
6292 if the file was newly read in, the value is the filename." t nil)
|
|
6293
|
|
6294 (autoload 'tags-loop-continue "etags" "\
|
|
6295 Continue last \\[tags-search] or \\[tags-query-replace] command.
|
|
6296 Used noninteractively with non-nil argument to begin such a command (the
|
|
6297 argument is passed to `next-file', which see).
|
|
6298 Two variables control the processing we do on each file:
|
|
6299 the value of `tags-loop-scan' is a form to be executed on each file
|
|
6300 to see if it is interesting (it returns non-nil if so)
|
|
6301 and `tags-loop-operate' is a form to execute to operate on an interesting file
|
|
6302 If the latter returns non-nil, we exit; otherwise we scan the next file." t nil)
|
|
6303
|
|
6304 (autoload 'tags-search "etags" "\
|
|
6305 Search through all files listed in tags table for match for REGEXP.
|
|
6306 Stops when a match is found.
|
|
6307 To continue searching for next match, use command \\[tags-loop-continue].
|
|
6308
|
|
6309 See documentation of variable `tag-table-alist'." t nil)
|
|
6310
|
|
6311 (autoload 'tags-query-replace "etags" "\
|
|
6312 Query-replace-regexp FROM with TO through all files listed in tags table.
|
|
6313 Third arg DELIMITED (prefix arg) means replace only word-delimited matches.
|
|
6314 If you exit (\\[keyboard-quit] or ESC), you can resume the query-replace
|
|
6315 with the command \\[tags-loop-continue].
|
|
6316
|
|
6317 See documentation of variable `tag-table-alist'." t nil)
|
|
6318
|
|
6319 (autoload 'list-tags "etags" "\
|
|
6320 Display list of tags in file FILE.
|
|
6321 FILE should not contain a directory spec
|
|
6322 unless it has one in the tag table." t nil)
|
|
6323
|
|
6324 (autoload 'tags-apropos "etags" "\
|
|
6325 Display list of all tags in tag table REGEXP matches." t nil)
|
|
6326
|
|
6327 ;;;***
|
|
6328
|
|
6329 ;;;### (autoloads (turn-on-fast-lock fast-lock-mode) "fast-lock" "packages/fast-lock.el")
|
|
6330
|
|
6331 (autoload 'fast-lock-mode "fast-lock" "\
|
|
6332 Toggle Fast Lock mode.
|
|
6333 With arg, turn Fast Lock mode on if and only if arg is positive and the buffer
|
|
6334 is associated with a file. Enable it automatically in your `~/.emacs' by:
|
|
6335
|
|
6336 (setq font-lock-support-mode 'fast-lock-mode)
|
|
6337
|
|
6338 If Fast Lock mode is enabled, and the current buffer does not contain any text
|
|
6339 properties, any associated Font Lock cache is used if its timestamp matches the
|
|
6340 buffer's file, and its `font-lock-keywords' match those that you are using.
|
|
6341
|
|
6342 Font Lock caches may be saved:
|
100
|
6343 - When you save the file's buffer.
|
|
6344 - When you kill an unmodified file's buffer.
|
|
6345 - When you exit Emacs, for all unmodified or saved buffers.
|
78
|
6346 Depending on the value of `fast-lock-save-events'.
|
|
6347 See also the commands `fast-lock-read-cache' and `fast-lock-save-cache'.
|
|
6348
|
|
6349 Use \\[font-lock-fontify-buffer] to fontify the buffer if the cache is bad.
|
|
6350
|
|
6351 Various methods of control are provided for the Font Lock cache. In general,
|
|
6352 see variable `fast-lock-cache-directories' and function `fast-lock-cache-name'.
|
|
6353 For saving, see variables `fast-lock-minimum-size', `fast-lock-save-events',
|
98
|
6354 `fast-lock-save-others' and `fast-lock-save-faces'." t nil)
|
78
|
6355
|
|
6356 (autoload 'turn-on-fast-lock "fast-lock" "\
|
|
6357 Unconditionally turn on Fast Lock mode." nil nil)
|
|
6358
|
100
|
6359 (when (fboundp 'add-minor-mode) (defvar fast-lock-mode nil) (add-minor-mode 'fast-lock-mode nil))
|
78
|
6360
|
|
6361 ;;;***
|
|
6362
|
|
6363 ;;;### (autoloads (feedmail-send-it) "feedmail" "packages/feedmail.el")
|
|
6364
|
|
6365 (autoload 'feedmail-send-it "feedmail" nil nil nil)
|
|
6366
|
|
6367 ;;;***
|
|
6368
|
|
6369 ;;;### (autoloads (make-file-part) "file-part" "packages/file-part.el")
|
|
6370
|
|
6371 (autoload 'make-file-part "file-part" "\
|
|
6372 Make a file part on buffer BUFFER out of the region. Call it NAME.
|
|
6373 This command creates a new buffer containing the contents of the
|
|
6374 region and marks the buffer as referring to the specified buffer,
|
|
6375 called the `master buffer'. When the file-part buffer is saved,
|
|
6376 its changes are integrated back into the master buffer. When the
|
|
6377 master buffer is deleted, all file parts are deleted with it.
|
|
6378
|
|
6379 When called from a function, expects four arguments, START, END,
|
|
6380 NAME, and BUFFER, all of which are optional and default to the
|
|
6381 beginning of BUFFER, the end of BUFFER, a name generated from
|
|
6382 BUFFER's name, and the current buffer, respectively." t nil)
|
|
6383
|
|
6384 ;;;***
|
|
6385
|
|
6386 ;;;### (autoloads (font-lock-fontify-buffer turn-off-font-lock turn-on-font-lock font-lock-mode) "font-lock" "packages/font-lock.el")
|
|
6387
|
|
6388 (defvar font-lock-auto-fontify t "\
|
|
6389 *Whether font-lock should automatically fontify files as they're loaded.
|
|
6390 This will only happen if font-lock has fontifying keywords for the major
|
|
6391 mode of the file. You can get finer-grained control over auto-fontification
|
|
6392 by using this variable in combination with `font-lock-mode-enable-list' or
|
|
6393 `font-lock-mode-disable-list'.")
|
|
6394
|
|
6395 (defvar font-lock-mode-enable-list nil "\
|
|
6396 *List of modes to auto-fontify, if `font-lock-auto-fontify' is nil.")
|
|
6397
|
|
6398 (defvar font-lock-mode-disable-list nil "\
|
|
6399 *List of modes not to auto-fontify, if `font-lock-auto-fontify' is t.")
|
|
6400
|
|
6401 (defvar font-lock-use-colors '(color) "\
|
|
6402 *Specification for when Font Lock will set up color defaults.
|
|
6403 Normally this should be '(color), meaning that Font Lock will set up
|
|
6404 color defaults that are only used on color displays. Set this to nil
|
|
6405 if you don't want Font Lock to set up color defaults at all. This
|
|
6406 should be one of
|
|
6407
|
|
6408 -- a list of valid tags, meaning that the color defaults will be used
|
|
6409 when all of the tags apply. (e.g. '(color x))
|
|
6410 -- a list whose first element is 'or and whose remaining elements are
|
|
6411 lists of valid tags, meaning that the defaults will be used when
|
|
6412 any of the tag lists apply.
|
|
6413 -- nil, meaning that the defaults should not be set up at all.
|
|
6414
|
|
6415 \(If you specify face values in your init file, they will override any
|
|
6416 that Font Lock specifies, regardless of whether you specify the face
|
|
6417 values before or after loading Font Lock.)
|
|
6418
|
|
6419 See also `font-lock-use-fonts'. If you want more control over the faces
|
|
6420 used for fontification, see the documentation of `font-lock-mode' for
|
|
6421 how to do it.")
|
|
6422
|
|
6423 (defvar font-lock-use-fonts '(or (mono) (grayscale)) "\
|
|
6424 *Specification for when Font Lock will set up non-color defaults.
|
|
6425
|
|
6426 Normally this should be '(or (mono) (grayscale)), meaning that Font
|
|
6427 Lock will set up non-color defaults that are only used on either mono
|
|
6428 or grayscale displays. Set this to nil if you don't want Font Lock to
|
|
6429 set up non-color defaults at all. This should be one of
|
|
6430
|
|
6431 -- a list of valid tags, meaning that the non-color defaults will be used
|
|
6432 when all of the tags apply. (e.g. '(grayscale x))
|
|
6433 -- a list whose first element is 'or and whose remaining elements are
|
|
6434 lists of valid tags, meaning that the defaults will be used when
|
|
6435 any of the tag lists apply.
|
|
6436 -- nil, meaning that the defaults should not be set up at all.
|
|
6437
|
|
6438 \(If you specify face values in your init file, they will override any
|
|
6439 that Font Lock specifies, regardless of whether you specify the face
|
|
6440 values before or after loading Font Lock.)
|
|
6441
|
|
6442 See also `font-lock-use-colors'. If you want more control over the faces
|
|
6443 used for fontification, see the documentation of `font-lock-mode' for
|
|
6444 how to do it.")
|
|
6445
|
|
6446 (defvar font-lock-maximum-decoration nil "\
|
|
6447 *If non-nil, the maximum decoration level for fontifying.
|
|
6448 If nil, use the minimum decoration (equivalent to level 0).
|
|
6449 If t, use the maximum decoration available.
|
|
6450 If a number, use that level of decoration (or if not available the maximum).
|
|
6451 If a list, each element should be a cons pair of the form (MAJOR-MODE . LEVEL),
|
|
6452 where MAJOR-MODE is a symbol or t (meaning the default). For example:
|
|
6453 ((c++-mode . 2) (c-mode . t) (t . 1))
|
|
6454 means use level 2 decoration for buffers in `c++-mode', the maximum decoration
|
|
6455 available for buffers in `c-mode', and level 1 decoration otherwise.")
|
|
6456
|
|
6457 (define-obsolete-variable-alias 'font-lock-use-maximal-decoration 'font-lock-maximum-decoration)
|
|
6458
|
|
6459 (defvar font-lock-maximum-size (* 250 1024) "\
|
|
6460 *If non-nil, the maximum size for buffers for fontifying.
|
|
6461 Only buffers less than this can be fontified when Font Lock mode is turned on.
|
|
6462 If nil, means size is irrelevant.
|
|
6463 If a list, each element should be a cons pair of the form (MAJOR-MODE . SIZE),
|
|
6464 where MAJOR-MODE is a symbol or t (meaning the default). For example:
|
|
6465 ((c++-mode . 256000) (c-mode . 256000) (rmail-mode . 1048576))
|
|
6466 means that the maximum size is 250K for buffers in `c++-mode' or `c-mode', one
|
|
6467 megabyte for buffers in `rmail-mode', and size is irrelevant otherwise.")
|
|
6468
|
|
6469 (defvar font-lock-keywords nil "\
|
|
6470 *A list of the keywords to highlight.
|
|
6471 Each element should be of the form:
|
|
6472
|
|
6473 MATCHER
|
|
6474 (MATCHER . MATCH)
|
|
6475 (MATCHER . FACENAME)
|
|
6476 (MATCHER . HIGHLIGHT)
|
|
6477 (MATCHER HIGHLIGHT ...)
|
108
|
6478 (eval . FORM)
|
78
|
6479
|
|
6480 where HIGHLIGHT should be either MATCH-HIGHLIGHT or MATCH-ANCHORED.
|
|
6481
|
108
|
6482 FORM is an expression, whose value should be a keyword element,
|
|
6483 evaluated when the keyword is (first) used in a buffer. This feature
|
|
6484 can be used to provide a keyword that can only be generated when Font
|
|
6485 Lock mode is actually turned on.
|
|
6486
|
78
|
6487 For highlighting single items, typically only MATCH-HIGHLIGHT is required.
|
108
|
6488 However, if an item or (typically) items is to be highlighted following the
|
78
|
6489 instance of another item (the anchor) then MATCH-ANCHORED may be required.
|
|
6490
|
|
6491 MATCH-HIGHLIGHT should be of the form:
|
|
6492
|
|
6493 (MATCH FACENAME OVERRIDE LAXMATCH)
|
|
6494
|
102
|
6495 Where MATCHER can be either the regexp to search for, a variable
|
|
6496 containing the regexp to search for, or the function to call to make
|
|
6497 the search (called with one argument, the limit of the search). MATCH
|
|
6498 is the subexpression of MATCHER to be highlighted. FACENAME is either
|
|
6499 a symbol naming a face, or an expression whose value is the face name
|
|
6500 to use. If you want FACENAME to be a symbol that evaluates to a face,
|
|
6501 use a form like \"(progn sym)\".
|
78
|
6502
|
|
6503 OVERRIDE and LAXMATCH are flags. If OVERRIDE is t, existing fontification may
|
|
6504 be overwritten. If `keep', only parts not already fontified are highlighted.
|
|
6505 If `prepend' or `append', existing fontification is merged with the new, in
|
|
6506 which the new or existing fontification, respectively, takes precedence.
|
|
6507 If LAXMATCH is non-nil, no error is signalled if there is no MATCH in MATCHER.
|
|
6508
|
|
6509 For example, an element of the form highlights (if not already highlighted):
|
|
6510
|
|
6511 \"\\\\\\=<foo\\\\\\=>\" Discrete occurrences of \"foo\" in the value of the
|
|
6512 variable `font-lock-keyword-face'.
|
|
6513 (\"fu\\\\(bar\\\\)\" . 1) Substring \"bar\" within all occurrences of \"fubar\" in
|
|
6514 the value of `font-lock-keyword-face'.
|
|
6515 (\"fubar\" . fubar-face) Occurrences of \"fubar\" in the value of `fubar-face'.
|
|
6516 (\"foo\\\\|bar\" 0 foo-bar-face t)
|
|
6517 Occurrences of either \"foo\" or \"bar\" in the value
|
|
6518 of `foo-bar-face', even if already highlighted.
|
|
6519
|
|
6520 MATCH-ANCHORED should be of the form:
|
|
6521
|
|
6522 (MATCHER PRE-MATCH-FORM POST-MATCH-FORM MATCH-HIGHLIGHT ...)
|
|
6523
|
|
6524 Where MATCHER is as for MATCH-HIGHLIGHT with one exception. The limit of the
|
|
6525 search is currently guaranteed to be (no greater than) the end of the line.
|
|
6526 PRE-MATCH-FORM and POST-MATCH-FORM are evaluated before the first, and after
|
|
6527 the last, instance MATCH-ANCHORED's MATCHER is used. Therefore they can be
|
|
6528 used to initialise before, and cleanup after, MATCHER is used. Typically,
|
|
6529 PRE-MATCH-FORM is used to move to some position relative to the original
|
|
6530 MATCHER, before starting with MATCH-ANCHORED's MATCHER. POST-MATCH-FORM might
|
|
6531 be used to move, before resuming with MATCH-ANCHORED's parent's MATCHER.
|
|
6532
|
|
6533 For example, an element of the form highlights (if not already highlighted):
|
|
6534
|
|
6535 (\"\\\\\\=<anchor\\\\\\=>\" (0 anchor-face) (\"\\\\\\=<item\\\\\\=>\" nil nil (0 item-face)))
|
|
6536
|
|
6537 Discrete occurrences of \"anchor\" in the value of `anchor-face', and subsequent
|
|
6538 discrete occurrences of \"item\" (on the same line) in the value of `item-face'.
|
|
6539 (Here PRE-MATCH-FORM and POST-MATCH-FORM are nil. Therefore \"item\" is
|
|
6540 initially searched for starting from the end of the match of \"anchor\", and
|
|
6541 searching for subsequent instance of \"anchor\" resumes from where searching
|
|
6542 for \"item\" concluded.)
|
|
6543
|
|
6544 Note that the MATCH-ANCHORED feature is experimental; in the future, we may
|
|
6545 replace it with other ways of providing this functionality.
|
|
6546
|
|
6547 These regular expressions should not match text which spans lines. While
|
|
6548 \\[font-lock-fontify-buffer] handles multi-line patterns correctly, updating
|
|
6549 when you edit the buffer does not, since it considers text one line at a time.
|
|
6550
|
|
6551 Be very careful composing regexps for this list;
|
|
6552 the wrong pattern can dramatically slow things down!")
|
|
6553
|
|
6554 (make-variable-buffer-local 'font-lock-keywords)
|
|
6555
|
|
6556 (defvar font-lock-mode nil)
|
|
6557
|
|
6558 (defvar font-lock-mode-hook nil "\
|
|
6559 Function or functions to run on entry to font-lock-mode.")
|
|
6560
|
|
6561 (autoload 'font-lock-mode "font-lock" "\
|
|
6562 Toggle Font Lock Mode.
|
|
6563 With arg, turn font-lock mode on if and only if arg is positive.
|
|
6564
|
|
6565 When Font Lock mode is enabled, text is fontified as you type it:
|
|
6566
|
|
6567 - Comments are displayed in `font-lock-comment-face';
|
|
6568 - Strings are displayed in `font-lock-string-face';
|
|
6569 - Documentation strings (in Lisp-like languages) are displayed in
|
|
6570 `font-lock-doc-string-face';
|
|
6571 - Language keywords (\"reserved words\") are displayed in
|
|
6572 `font-lock-keyword-face';
|
|
6573 - Function names in their defining form are displayed in
|
|
6574 `font-lock-function-name-face';
|
|
6575 - Variable names in their defining form are displayed in
|
|
6576 `font-lock-variable-name-face';
|
|
6577 - Type names are displayed in `font-lock-type-face';
|
|
6578 - References appearing in help files and the like are displayed
|
|
6579 in `font-lock-reference-face';
|
|
6580 - Preprocessor declarations are displayed in
|
|
6581 `font-lock-preprocessor-face';
|
|
6582
|
|
6583 and
|
|
6584
|
|
6585 - Certain other expressions are displayed in other faces according
|
|
6586 to the value of the variable `font-lock-keywords'.
|
|
6587
|
|
6588 Where modes support different levels of fontification, you can use the variable
|
|
6589 `font-lock-maximum-decoration' to specify which level you generally prefer.
|
|
6590 When you turn Font Lock mode on/off the buffer is fontified/defontified, though
|
|
6591 fontification occurs only if the buffer is less than `font-lock-maximum-size'.
|
|
6592 To fontify a buffer without turning on Font Lock mode, and regardless of buffer
|
|
6593 size, you can use \\[font-lock-fontify-buffer].
|
|
6594
|
|
6595 See the variable `font-lock-keywords' for customization." t nil)
|
|
6596
|
|
6597 (autoload 'turn-on-font-lock "font-lock" "\
|
|
6598 Unconditionally turn on Font Lock mode." nil nil)
|
|
6599
|
|
6600 (autoload 'turn-off-font-lock "font-lock" "\
|
|
6601 Unconditionally turn off Font Lock mode." nil nil)
|
|
6602
|
|
6603 (autoload 'font-lock-fontify-buffer "font-lock" "\
|
|
6604 Fontify the current buffer the way `font-lock-mode' would.
|
|
6605 See `font-lock-mode' for details.
|
|
6606
|
|
6607 This can take a while for large buffers." t nil)
|
|
6608
|
|
6609 (add-minor-mode 'font-lock-mode " Font")
|
|
6610
|
|
6611 ;;;***
|
|
6612
|
|
6613 ;;;### (autoloads (sc-mode) "generic-sc" "packages/generic-sc.el")
|
|
6614
|
|
6615 (autoload 'sc-mode "generic-sc" "\
|
|
6616 Toggle sc-mode.
|
|
6617 SYSTEM can be sccs, rcs or cvs.
|
|
6618 Cvs requires the pcl-cvs package.
|
|
6619
|
|
6620 The following commands are available
|
|
6621 \\[sc-next-operation] perform next logical source control operation on current file
|
|
6622 \\[sc-show-changes] compare the version being edited with an older one
|
|
6623 \\[sc-version-diff-file] compare two older versions of a file
|
|
6624 \\[sc-show-history] display change history of current file
|
|
6625 \\[sc-visit-previous-revision] display an older revision of current file
|
|
6626 \\[sc-revert-file] revert buffer to last checked-in version
|
|
6627 \\[sc-list-all-locked-files] show all files locked in current directory
|
|
6628 \\[sc-list-locked-files] show all files locked by you in current directory
|
|
6629 \\[sc-list-registered-files] show all files under source control in current directory
|
|
6630 \\[sc-update-directory] get fresh copies of files checked-in by others in current directory
|
|
6631 \\[sc-rename-file] rename the current file and its source control file
|
|
6632
|
|
6633
|
|
6634 While you are entering a change log message for a check in, sc-log-entry-mode
|
|
6635 will be in effect.
|
|
6636
|
|
6637 Global user options:
|
|
6638 sc-diff-command A list consisting of the command and flags
|
|
6639 to be used for generating context diffs.
|
|
6640 sc-mode-expert suppresses some conformation prompts,
|
|
6641 notably for delta aborts and file saves.
|
|
6642 sc-max-log-size specifies the maximum allowable size
|
|
6643 of a log message plus one.
|
|
6644
|
|
6645
|
|
6646 When using SCCS you have additional commands and options
|
|
6647
|
|
6648 \\[sccs-insert-headers] insert source control headers in current file
|
|
6649
|
|
6650 When you generate headers into a buffer using \\[sccs-insert-headers],
|
|
6651 the value of sc-insert-headers-hook is called before insertion. If the
|
|
6652 file is recognized a C or Lisp source, sc-insert-c-header-hook or
|
|
6653 sc-insert-lisp-header-hook is called after insertion respectively.
|
|
6654
|
|
6655 sccs-headers-wanted which %-keywords to insert when adding
|
|
6656 headers with C-c h
|
|
6657 sccs-insert-static if non-nil, keywords inserted in C files
|
|
6658 get stuffed in a static string area so that
|
|
6659 what(1) can see them in the compiled object code.
|
|
6660
|
|
6661 When using CVS you have additional commands
|
|
6662
|
|
6663 \\[sc-cvs-update-directory] update the current directory using pcl-cvs
|
|
6664 \\[sc-cvs-file-status] show the CVS status of current file
|
|
6665 " t nil)
|
|
6666
|
|
6667 ;;;***
|
|
6668
|
|
6669 ;;;### (autoloads (gnuserv-start) "gnuserv" "packages/gnuserv.el")
|
|
6670
|
|
6671 (defvar gnuserv-frame nil "\
|
|
6672 *If non-nil, the frame to be used to display all edited files.
|
|
6673 If nil, then a new frame is created for each file edited.
|
|
6674 This variable has no effect in XEmacs versions older than 19.9.")
|
|
6675
|
|
6676 (autoload 'gnuserv-start "gnuserv" "\
|
|
6677 Allow this Emacs process to be a server for client processes.
|
|
6678 This starts a server communications subprocess through which
|
|
6679 client \"editors\" (gnuclient and gnudoit) can send editing commands to
|
|
6680 this Emacs job. See the gnuserv(1) manual page for more details.
|
|
6681
|
|
6682 Prefix arg means just kill any existing server communications subprocess." t nil)
|
|
6683
|
|
6684 ;;;***
|
|
6685
|
|
6686 ;;;### (autoloads (gopher-atpoint gopher) "gopher" "packages/gopher.el")
|
|
6687
|
|
6688 (autoload 'gopher "gopher" "\
|
|
6689 Start a gopher session. With C-u, prompt for a gopher server." t nil)
|
|
6690
|
|
6691 (autoload 'gopher-atpoint "gopher" "\
|
|
6692 Try to interpret the text around point as a gopher bookmark, and dispatch
|
|
6693 to that object." t nil)
|
|
6694
|
|
6695 ;;;***
|
|
6696
|
|
6697 ;;;### (autoloads (hexlify-buffer hexl-find-file hexl-mode) "hexl" "packages/hexl.el")
|
|
6698
|
|
6699 (autoload 'hexl-mode "hexl" "\
|
|
6700 \\<hexl-mode-map>
|
|
6701 A major mode for editing binary files in hex dump format.
|
|
6702
|
|
6703 This function automatically converts a buffer into the hexl format
|
|
6704 using the function `hexlify-buffer'.
|
|
6705
|
|
6706 Each line in the buffer has an \"address\" (displayed in hexadecimal)
|
|
6707 representing the offset into the file that the characters on this line
|
|
6708 are at and 16 characters from the file (displayed as hexadecimal
|
|
6709 values grouped every 16 bits) and as their ASCII values.
|
|
6710
|
|
6711 If any of the characters (displayed as ASCII characters) are
|
|
6712 unprintable (control or meta characters) they will be replaced as
|
|
6713 periods.
|
|
6714
|
|
6715 If `hexl-mode' is invoked with an argument the buffer is assumed to be
|
|
6716 in hexl format.
|
|
6717
|
|
6718 A sample format:
|
|
6719
|
|
6720 HEX ADDR: 0001 0203 0405 0607 0809 0a0b 0c0d 0e0f ASCII-TEXT
|
|
6721 -------- ---- ---- ---- ---- ---- ---- ---- ---- ----------------
|
|
6722 00000000: 5468 6973 2069 7320 6865 786c 2d6d 6f64 This is hexl-mod
|
|
6723 00000010: 652e 2020 4561 6368 206c 696e 6520 7265 e. Each line re
|
|
6724 00000020: 7072 6573 656e 7473 2031 3620 6279 7465 presents 16 byte
|
|
6725 00000030: 7320 6173 2068 6578 6164 6563 696d 616c s as hexadecimal
|
|
6726 00000040: 2041 5343 4949 0a61 6e64 2070 7269 6e74 ASCII.and print
|
|
6727 00000050: 6162 6c65 2041 5343 4949 2063 6861 7261 able ASCII chara
|
|
6728 00000060: 6374 6572 732e 2020 416e 7920 636f 6e74 cters. Any cont
|
|
6729 00000070: 726f 6c20 6f72 206e 6f6e 2d41 5343 4949 rol or non-ASCII
|
|
6730 00000080: 2063 6861 7261 6374 6572 730a 6172 6520 characters.are
|
|
6731 00000090: 6469 7370 6c61 7965 6420 6173 2070 6572 displayed as per
|
|
6732 000000a0: 696f 6473 2069 6e20 7468 6520 7072 696e iods in the prin
|
|
6733 000000b0: 7461 626c 6520 6368 6172 6163 7465 7220 table character
|
|
6734 000000c0: 7265 6769 6f6e 2e0a region..
|
|
6735
|
|
6736 Movement is as simple as movement in a normal emacs text buffer. Most
|
|
6737 cursor movement bindings are the same (ie. Use \\[hexl-backward-char], \\[hexl-forward-char], \\[hexl-next-line], and \\[hexl-previous-line]
|
|
6738 to move the cursor left, right, down, and up).
|
|
6739
|
|
6740 Advanced cursor movement commands (ala \\[hexl-beginning-of-line], \\[hexl-end-of-line], \\[hexl-beginning-of-buffer], and \\[hexl-end-of-buffer]) are
|
|
6741 also supported.
|
|
6742
|
|
6743 There are several ways to change text in hexl mode:
|
|
6744
|
|
6745 ASCII characters (character between space (0x20) and tilde (0x7E)) are
|
|
6746 bound to self-insert so you can simply type the character and it will
|
|
6747 insert itself (actually overstrike) into the buffer.
|
|
6748
|
|
6749 \\[hexl-quoted-insert] followed by another keystroke allows you to insert the key even if
|
|
6750 it isn't bound to self-insert. An octal number can be supplied in place
|
|
6751 of another key to insert the octal number's ASCII representation.
|
|
6752
|
|
6753 \\[hexl-insert-hex-char] will insert a given hexadecimal value (if it is between 0 and 0xFF)
|
|
6754 into the buffer at the current point.
|
|
6755
|
|
6756 \\[hexl-insert-octal-char] will insert a given octal value (if it is between 0 and 0377)
|
|
6757 into the buffer at the current point.
|
|
6758
|
|
6759 \\[hexl-insert-decimal-char] will insert a given decimal value (if it is between 0 and 255)
|
|
6760 into the buffer at the current point.
|
|
6761
|
|
6762 \\[hexl-mode-exit] will exit hexl-mode.
|
|
6763
|
|
6764 Note: saving the file with any of the usual Emacs commands
|
|
6765 will actually convert it back to binary format while saving.
|
|
6766
|
|
6767 You can use \\[hexl-find-file] to visit a file in hexl-mode.
|
|
6768
|
|
6769 \\[describe-bindings] for advanced commands." t nil)
|
|
6770
|
|
6771 (autoload 'hexl-find-file "hexl" "\
|
|
6772 Edit file FILENAME in hexl-mode.
|
|
6773 Switch to a buffer visiting file FILENAME, creating one in none exists." t nil)
|
|
6774
|
|
6775 (autoload 'hexlify-buffer "hexl" "\
|
|
6776 Convert a binary buffer to hexl format.
|
|
6777 This discards the buffer's undo information." t nil)
|
|
6778
|
|
6779 ;;;***
|
|
6780
|
108
|
6781 ;;;### (autoloads (hypropos-popup-menu hypropos-set-variable hyper-set-variable hypropos-get-doc hypropos-read-variable-symbol hyper-describe-function hyper-describe-variable hyper-describe-face hyper-describe-key-briefly hyper-describe-key hyper-apropos) "hyper-apropos" "packages/hyper-apropos.el")
|
78
|
6782
|
|
6783 (defvar hypropos-show-brief-docs t "\
|
|
6784 *If non-nil, `hyper-apropos' will display some documentation in the
|
|
6785 \"*Hyper Apropos*\" buffer. Setting this to nil will speed up searches.")
|
|
6786
|
|
6787 (autoload 'hyper-apropos "hyper-apropos" "\
|
|
6788 Display lists of functions and variables matching REGEXP
|
|
6789 in buffer \"*Hyper Apropos*\". If optional prefix arg is given, then the value
|
|
6790 of `hypropos-programming-apropos' is toggled for this search.
|
|
6791 See also `hyper-apropos-mode'." t nil)
|
|
6792
|
108
|
6793 (autoload 'hyper-describe-key "hyper-apropos" nil t nil)
|
|
6794
|
|
6795 (autoload 'hyper-describe-key-briefly "hyper-apropos" nil t nil)
|
|
6796
|
|
6797 (autoload 'hyper-describe-face "hyper-apropos" "\
|
|
6798 Describe face..
|
|
6799 See also `hyper-apropos' and `hyper-describe-function'." t nil)
|
|
6800
|
78
|
6801 (autoload 'hyper-describe-variable "hyper-apropos" "\
|
|
6802 Hypertext drop-in replacement for `describe-variable'.
|
|
6803 See also `hyper-apropos' and `hyper-describe-function'." t nil)
|
|
6804
|
|
6805 (autoload 'hyper-describe-function "hyper-apropos" "\
|
|
6806 Hypertext replacement for `describe-function'. Unlike `describe-function'
|
|
6807 in that the symbol under the cursor is the default if it is a function.
|
|
6808 See also `hyper-apropos' and `hyper-describe-variable'." t nil)
|
|
6809
|
108
|
6810 (autoload 'hypropos-read-variable-symbol "hyper-apropos" "\
|
|
6811 Hypertext drop-in replacement for `describe-variable'.
|
|
6812 See also `hyper-apropos' and `hyper-describe-function'." nil nil)
|
|
6813
|
|
6814 (autoload 'hypropos-get-doc "hyper-apropos" "\
|
|
6815 Toggle display of documentation for the symbol on the current line." t nil)
|
|
6816
|
|
6817 (autoload 'hyper-set-variable "hyper-apropos" nil t nil)
|
|
6818
|
78
|
6819 (autoload 'hypropos-set-variable "hyper-apropos" "\
|
|
6820 Interactively set the variable on the current line." t nil)
|
|
6821
|
|
6822 (autoload 'hypropos-popup-menu "hyper-apropos" nil t nil)
|
|
6823
|
|
6824 ;;;***
|
|
6825
|
|
6826 ;;;### (autoloads (icomplete-minibuffer-setup icomplete-mode) "icomplete" "packages/icomplete.el")
|
|
6827
|
|
6828 (autoload 'icomplete-mode "icomplete" "\
|
|
6829 Activate incremental minibuffer completion for this emacs session,
|
|
6830 or deactivate with negative prefix arg." t nil)
|
|
6831
|
|
6832 (autoload 'icomplete-minibuffer-setup "icomplete" "\
|
|
6833 Run in minibuffer on activation to establish incremental completion.
|
|
6834 Usually run by inclusion in `minibuffer-setup-hook'." nil nil)
|
|
6835
|
|
6836 ;;;***
|
|
6837
|
100
|
6838 ;;;### (autoloads (dired-do-igrep-find dired-do-igrep igrep-find-define igrep-find igrep-define igrep) "igrep" "packages/igrep.el")
|
|
6839
|
|
6840 (autoload 'igrep "igrep" "\
|
|
6841 *Run `grep` PROGRAM to match EXPRESSION in FILES.
|
|
6842 The output is displayed in the *igrep* buffer, which \\[next-error] and
|
|
6843 \\[compile-goto-error] parse to find each line of matched text.
|
|
6844
|
|
6845 PROGRAM may be nil, in which case it defaults to `igrep-program'.
|
|
6846
|
|
6847 EXPRESSION is automatically delimited by `igrep-expression-quote-char'.
|
|
6848
|
|
6849 FILES is either a file name pattern (expanded by the shell named by
|
|
6850 `shell-file-name') or a list of file name patterns.
|
|
6851
|
|
6852 Optional OPTIONS is also passed to PROGRAM; it defaults to `igrep-options'.
|
|
6853
|
|
6854 If a prefix argument (\\[universal-argument]) is given when called interactively,
|
|
6855 or if `igrep-read-options' is set, OPTIONS is read from the minibuffer.
|
|
6856
|
|
6857 If two prefix arguments (\\[universal-argument] \\[universal-argument]) are given when called interactively,
|
|
6858 or if `igrep-read-multiple-files' is set, FILES is read from the minibuffer
|
|
6859 multiple times.
|
|
6860
|
|
6861 If three prefix arguments (\\[universal-argument] \\[universal-argument] \\[universal-argument]) are given when called interactively,
|
|
6862 or if `igrep-read-options' and `igrep-read-multiple-files' are set,
|
|
6863 OPTIONS is read and FILES is read multiple times.
|
|
6864
|
|
6865 If `igrep-find' is non-nil, the directory or directories
|
|
6866 containing FILES is recursively searched for files whose name matches
|
|
6867 the file name component of FILES (and whose contents match
|
|
6868 EXPRESSION)." t nil)
|
|
6869
|
|
6870 (autoload 'igrep-define "igrep" "\
|
|
6871 Define ANALOGUE-COMMAND as an `igrep' analogue command.
|
|
6872 Optional (VARIABLE VALUE) arguments specify temporary bindings for the command." nil 'macro)
|
|
6873
|
|
6874 (autoload 'igrep-find "igrep" "\
|
|
6875 *Run `grep` via `find`; see \\[igrep] and `igrep-find'.
|
|
6876 All arguments (including prefix arguments, when called interactively)
|
|
6877 are handled by `igrep'." t nil)
|
|
6878
|
|
6879 (autoload 'igrep-find-define "igrep" "\
|
|
6880 Define ANALOGUE-COMMAND-find as an `igrep' analogue `find` command.
|
|
6881 Optional (VARIABLE VALUE) arguments specify temporary bindings for the command." nil 'macro)
|
|
6882
|
|
6883 (autoload 'dired-do-igrep "igrep" "\
|
|
6884 *Run `grep` PROGRAM to match EXPRESSION (with optional OPTIONS)
|
|
6885 on the marked (or next prefix ARG) files." t nil)
|
|
6886
|
|
6887 (defalias 'dired-do-grep 'dired-do-igrep)
|
|
6888
|
|
6889 (autoload 'dired-do-igrep-find "igrep" "\
|
|
6890 *Run `grep` PROGRAM to match EXPRESSION (with optional OPTIONS)
|
|
6891 on the marked (or next prefix ARG) directories." t nil)
|
|
6892
|
|
6893 (defalias 'dired-do-grep-find 'dired-do-igrep-find)
|
|
6894
|
|
6895 ;;;***
|
|
6896
|
78
|
6897 ;;;### (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")
|
|
6898
|
|
6899 (autoload 'info "info" "\
|
|
6900 Enter Info, the documentation browser.
|
|
6901 Optional argument FILE specifies the file to examine;
|
|
6902 the default is the top-level directory of Info.
|
|
6903
|
|
6904 In interactive use, a prefix argument directs this command
|
|
6905 to read a file name from the minibuffer." t nil)
|
|
6906
|
|
6907 (autoload 'Info-query "info" "\
|
|
6908 Enter Info, the documentation browser. Prompt for name of Info file." t nil)
|
|
6909
|
|
6910 (autoload 'Info-goto-node "info" "\
|
|
6911 Go to info node named NAME. Give just NODENAME or (FILENAME)NODENAME.
|
|
6912 Actually, the following interpretations of NAME are tried in order:
|
|
6913 (FILENAME)NODENAME
|
|
6914 (FILENAME) (using Top node)
|
|
6915 NODENAME (in current file)
|
|
6916 TAGNAME (see below)
|
|
6917 FILENAME (using Top node)
|
|
6918 where TAGNAME is a string that appears in quotes: \"TAGNAME\", in an
|
|
6919 annotation for any node of any file. (See `a' and `x' commands.)" t nil)
|
|
6920
|
|
6921 (autoload 'Info-visit-file "info" "\
|
|
6922 Directly visit an info file." t nil)
|
|
6923
|
|
6924 (autoload 'Info-search "info" "\
|
|
6925 Search for REGEXP, starting from point, and select node it's found in." t nil)
|
|
6926
|
|
6927 (autoload 'Info-emacs-command "info" "\
|
|
6928 Look up an Emacs command in the Emacs manual in the Info system.
|
|
6929 This command is designed to be used whether you are already in Info or not." t nil)
|
|
6930
|
|
6931 (autoload 'Info-goto-emacs-command-node "info" "\
|
|
6932 Look up an Emacs command in the Emacs manual in the Info system.
|
|
6933 This command is designed to be used whether you are already in Info or not." t nil)
|
|
6934
|
|
6935 (autoload 'Info-goto-emacs-key-command-node "info" "\
|
|
6936 Look up an Emacs key sequence in the Emacs manual in the Info system.
|
|
6937 This command is designed to be used whether you are already in Info or not." t nil)
|
|
6938
|
|
6939 (autoload 'Info-emacs-key "info" "\
|
|
6940 Look up an Emacs key sequence in the Emacs manual in the Info system.
|
|
6941 This command is designed to be used whether you are already in Info or not." t nil)
|
|
6942
|
|
6943 (autoload 'Info-elisp-ref "info" "\
|
|
6944 Look up an Emacs Lisp function in the Elisp manual in the Info system.
|
|
6945 This command is designed to be used whether you are already in Info or not." t nil)
|
|
6946
|
|
6947 ;;;***
|
|
6948
|
|
6949 ;;;### (autoloads (batch-info-validate Info-validate Info-split Info-tagify) "informat" "packages/informat.el")
|
|
6950
|
|
6951 (autoload 'Info-tagify "informat" "\
|
|
6952 Create or update Info-file tag table in current buffer." t nil)
|
|
6953
|
|
6954 (autoload 'Info-split "informat" "\
|
|
6955 Split an info file into an indirect file plus bounded-size subfiles.
|
|
6956 Each subfile will be up to 50,000 characters plus one node.
|
|
6957
|
|
6958 To use this command, first visit a large Info file that has a tag
|
|
6959 table. The buffer is modified into a (small) indirect info file which
|
|
6960 should be saved in place of the original visited file.
|
|
6961
|
|
6962 The subfiles are written in the same directory the original file is
|
|
6963 in, with names generated by appending `-' and a number to the original
|
|
6964 file name. The indirect file still functions as an Info file, but it
|
|
6965 contains just the tag table and a directory of subfiles." t nil)
|
|
6966
|
|
6967 (autoload 'Info-validate "informat" "\
|
|
6968 Check current buffer for validity as an Info file.
|
|
6969 Check that every node pointer points to an existing node." t nil)
|
|
6970
|
|
6971 (autoload 'batch-info-validate "informat" "\
|
|
6972 Runs `Info-validate' on the files remaining on the command line.
|
|
6973 Must be used only with -batch, and kills Emacs on completion.
|
|
6974 Each file will be processed even if an error occurred previously.
|
|
6975 For example, invoke \"emacs -batch -f batch-info-validate $info/ ~/*.info\"" nil nil)
|
|
6976
|
|
6977 ;;;***
|
|
6978
|
|
6979 ;;;### (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")
|
|
6980
|
120
|
6981 (defcustom ispell-personal-dictionary nil "*File name of your personal spelling dictionary, or nil.\nIf nil, the default personal dictionary, \"~/.ispell_DICTNAME\" is used,\nwhere DICTNAME is the name of your default dictionary." :type 'file :group 'ispell)
|
78
|
6982
|
80
|
6983 (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)))
|
|
6984
|
120
|
6985 (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") ("italiano" "[A-Za-zÀÈÉÌÍÎÒÙÚàèéìíîòùú]" "[^A-Za-zÀÈÉÌÍÎÒÙÚàèéìíîòùú]" "[']" t ("-d" "italiano") "~list") ("dansk" "[A-ZÆØÅa-zæøå]" "[^A-ZÆØÅa-zæøå]" "" nil ("-C") nil)))
|
78
|
6986
|
|
6987 (defvar ispell-dictionary-alist (append ispell-dictionary-alist-1 ispell-dictionary-alist-2) "\
|
|
6988 An alist of dictionaries and their associated parameters.
|
|
6989
|
|
6990 Each element of this list is also a list:
|
|
6991
|
|
6992 \(DICTIONARY-NAME CASECHARS NOT-CASECHARS OTHERCHARS MANY-OTHERCHARS-P
|
|
6993 ISPELL-ARGS EXTENDED-CHARACTER-MODE)
|
|
6994
|
|
6995 DICTIONARY-NAME is a possible value of variable `ispell-dictionary', nil
|
|
6996 means the default dictionary.
|
|
6997
|
|
6998 CASECHARS is a regular expression of valid characters that comprise a
|
|
6999 word.
|
|
7000
|
|
7001 NOT-CASECHARS is the opposite regexp of CASECHARS.
|
|
7002
|
|
7003 OTHERCHARS is a regular expression of other characters that are valid
|
|
7004 in word constructs. Otherchars cannot be adjacent to each other in a
|
|
7005 word, nor can they begin or end a word. This implies we can't check
|
|
7006 \"Stevens'\" as a correct possessive and other correct formations.
|
|
7007
|
|
7008 Hint: regexp syntax requires the hyphen to be declared first here.
|
|
7009
|
|
7010 MANY-OTHERCHARS-P is non-nil if many otherchars are to be allowed in a
|
|
7011 word instead of only one.
|
|
7012
|
|
7013 ISPELL-ARGS is a list of additional arguments passed to the ispell
|
|
7014 subprocess.
|
|
7015
|
|
7016 EXTENDED-CHARACTER-MODE should be used when dictionaries are used which
|
|
7017 have been configured in an Ispell affix file. (For example, umlauts
|
|
7018 can be encoded as \\\"a, a\\\", \"a, ...) Defaults are ~tex and ~nroff
|
|
7019 in English. This has the same effect as the command-line `-T' option.
|
|
7020 The buffer Major Mode controls Ispell's parsing in tex or nroff mode,
|
|
7021 but the dictionary can control the extended character mode.
|
|
7022 Both defaults can be overruled in a buffer-local fashion. See
|
|
7023 `ispell-parsing-keyword' for details on this.
|
|
7024
|
|
7025 Note that the CASECHARS and OTHERCHARS slots of the alist should
|
|
7026 contain the same character set as casechars and otherchars in the
|
|
7027 language.aff file (e.g., english.aff).")
|
|
7028
|
|
7029 (defvar ispell-menu-map nil "\
|
|
7030 Key map for ispell menu")
|
|
7031
|
|
7032 (defvar ispell-menu-xemacs nil "\
|
|
7033 Spelling menu for XEmacs.")
|
|
7034
|
|
7035 (defconst ispell-menu-map-needed (and (not ispell-menu-map) (string-lessp "19" emacs-version) (not (string-match "XEmacs" emacs-version))))
|
|
7036
|
|
7037 (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))))))))
|
|
7038
|
|
7039 (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))))
|
|
7040
|
|
7041 (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))))
|
|
7042
|
|
7043 (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))))
|
|
7044
|
|
7045 (defvar ispell-local-pdict ispell-personal-dictionary "\
|
|
7046 A buffer local variable containing the current personal dictionary.
|
|
7047 If non-nil, the value must be a string, which is a file name.
|
|
7048
|
|
7049 If you specify a personal dictionary for the current buffer which is
|
|
7050 different from the current personal dictionary, the effect is similar
|
|
7051 to calling \\[ispell-change-dictionary]. This variable is automatically
|
|
7052 set when defined in the file with either `ispell-pdict-keyword' or the
|
|
7053 local variable syntax.")
|
|
7054
|
|
7055 (define-key global-map [(meta ?\$)] 'ispell-word)
|
|
7056
|
|
7057 (autoload 'ispell-word "ispell" "\
|
|
7058 Check spelling of word under or before the cursor.
|
|
7059 If the word is not found in dictionary, display possible corrections
|
|
7060 in a window allowing you to choose one.
|
|
7061
|
|
7062 With a prefix argument (or if CONTINUE is non-nil),
|
|
7063 resume interrupted spell-checking of a buffer or region.
|
|
7064
|
|
7065 If optional argument FOLLOWING is non-nil or if `ispell-following-word'
|
|
7066 is non-nil when called interactively, then the following word
|
|
7067 \(rather than preceding) is checked when the cursor is not over a word.
|
|
7068 When the optional argument QUIETLY is non-nil or `ispell-quietly' is non-nil
|
|
7069 when called interactively, non-corrective messages are suppressed.
|
|
7070
|
|
7071 Word syntax described by `ispell-dictionary-alist' (which see).
|
|
7072
|
|
7073 This will check or reload the dictionary. Use \\[ispell-change-dictionary]
|
|
7074 or \\[ispell-region] to update the Ispell process." t nil)
|
|
7075
|
|
7076 (autoload 'ispell-help "ispell" "\
|
|
7077 Display a list of the options available when a misspelling is encountered.
|
|
7078
|
|
7079 Selections are:
|
|
7080
|
|
7081 DIGIT: Replace the word with a digit offered in the *Choices* buffer.
|
|
7082 SPC: Accept word this time.
|
|
7083 `i': Accept word and insert into private dictionary.
|
|
7084 `a': Accept word for this session.
|
|
7085 `A': Accept word and place in `buffer-local dictionary'.
|
|
7086 `r': Replace word with typed-in value. Rechecked.
|
|
7087 `R': Replace word with typed-in value. Query-replaced in buffer. Rechecked.
|
|
7088 `?': Show these commands.
|
|
7089 `x': Exit spelling buffer. Move cursor to original point.
|
|
7090 `X': Exit spelling buffer. Leaves cursor at the current point, and permits
|
|
7091 the aborted check to be completed later.
|
|
7092 `q': Quit spelling session (Kills ispell process).
|
|
7093 `l': Look up typed-in replacement in alternate dictionary. Wildcards okay.
|
|
7094 `u': Like `i', but the word is lower-cased first.
|
|
7095 `m': Like `i', but allows one to include dictionary completion information.
|
|
7096 `C-l': redraws screen
|
|
7097 `C-r': recursive edit
|
|
7098 `C-z': suspend emacs or iconify frame" nil nil)
|
|
7099
|
|
7100 (autoload 'ispell-kill-ispell "ispell" "\
|
|
7101 Kill current Ispell process (so that you may start a fresh one).
|
|
7102 With NO-ERROR, just return non-nil if there was no Ispell running." t nil)
|
|
7103
|
|
7104 (autoload 'ispell-change-dictionary "ispell" "\
|
|
7105 Change `ispell-dictionary' (q.v.) and kill old Ispell process.
|
|
7106 A new one will be started as soon as necessary.
|
|
7107
|
|
7108 By just answering RET you can find out what the current dictionary is.
|
|
7109
|
|
7110 With prefix argument, set the default directory." t nil)
|
|
7111
|
|
7112 (autoload 'ispell-region "ispell" "\
|
|
7113 Interactively check a region for spelling errors." t nil)
|
|
7114
|
|
7115 (autoload 'ispell-buffer "ispell" "\
|
|
7116 Check the current buffer for spelling errors interactively." t nil)
|
|
7117
|
|
7118 (autoload 'ispell-continue "ispell" nil t nil)
|
|
7119
|
|
7120 (autoload 'ispell-complete-word "ispell" "\
|
|
7121 Look up word before or under point in dictionary (see lookup-words command)
|
|
7122 and try to complete it. If optional INTERIOR-FRAG is non-nil then the word
|
|
7123 may be a character sequence inside of a word.
|
|
7124
|
|
7125 Standard ispell choices are then available." t nil)
|
|
7126
|
|
7127 (autoload 'ispell-complete-word-interior-frag "ispell" "\
|
|
7128 Completes word matching character sequence inside a word." t nil)
|
|
7129
|
|
7130 (autoload 'ispell-minor-mode "ispell" "\
|
|
7131 Toggle Ispell minor mode.
|
|
7132 With prefix arg, turn Ispell minor mode on iff arg is positive.
|
|
7133
|
|
7134 In Ispell minor mode, pressing SPC or RET
|
|
7135 warns you if the previous word is incorrectly spelled." t nil)
|
|
7136
|
|
7137 (autoload 'ispell-message "ispell" "\
|
|
7138 Check the spelling of a mail message or news post.
|
|
7139 Don't check spelling of message headers except the Subject field.
|
|
7140 Don't check included messages.
|
|
7141
|
|
7142 To abort spell checking of a message region and send the message anyway,
|
|
7143 use the `x' or `q' command. (Any subsequent regions will be checked.)
|
|
7144 The `X' command aborts the message send so that you can edit the buffer.
|
|
7145
|
|
7146 To spell-check whenever a message is sent, include the appropriate lines
|
|
7147 in your .emacs file:
|
|
7148 (add-hook 'message-send-hook 'ispell-message)
|
|
7149 (add-hook 'mail-send-hook 'ispell-message)
|
|
7150 (add-hook 'mh-before-send-letter-hook 'ispell-message)
|
|
7151
|
|
7152 You can bind this to the key C-c i in GNUS or mail by adding to
|
|
7153 `news-reply-mode-hook' or `mail-mode-hook' the following lambda expression:
|
|
7154 (function (lambda () (local-set-key \"\\C-ci\" 'ispell-message)))" t nil)
|
|
7155
|
|
7156 ;;;***
|
|
7157
|
|
7158 ;;;### (autoloads (jka-compr-install toggle-auto-compression jka-compr-load) "jka-compr" "packages/jka-compr.el")
|
|
7159
|
|
7160 (autoload 'jka-compr-load "jka-compr" "\
|
|
7161 Documented as original." nil nil)
|
|
7162
|
|
7163 (autoload 'toggle-auto-compression "jka-compr" "\
|
|
7164 Toggle automatic file compression and uncompression.
|
|
7165 With prefix argument ARG, turn auto compression on if positive, else off.
|
|
7166 Returns the new status of auto compression (non-nil means on).
|
|
7167 If the argument MESSAGE is non-nil, it means to print a message
|
|
7168 saying whether the mode is now on or off." t nil)
|
|
7169
|
|
7170 (autoload 'jka-compr-install "jka-compr" "\
|
|
7171 Install jka-compr.
|
|
7172 This adds entries to `file-name-handler-alist' and `auto-mode-alist'
|
|
7173 and `inhibit-first-line-modes-suffixes'." nil nil)
|
|
7174
|
|
7175 ;;;***
|
|
7176
|
|
7177 ;;;### (autoloads (turn-on-lazy-lock lazy-lock-mode) "lazy-lock" "packages/lazy-lock.el")
|
|
7178
|
|
7179 (autoload 'lazy-lock-mode "lazy-lock" "\
|
|
7180 Toggle Lazy Lock mode.
|
|
7181 With arg, turn Lazy Lock mode on if and only if arg is positive and the buffer
|
|
7182 is at least `lazy-lock-minimum-size' characters long.
|
|
7183
|
|
7184 When Lazy Lock mode is enabled, fontification is demand-driven and stealthy:
|
|
7185
|
|
7186 - Fontification occurs in visible parts of buffers when necessary.
|
|
7187 Occurs if there is no input after pausing for `lazy-lock-continuity-time'.
|
|
7188
|
|
7189 - Fontification occurs in invisible parts when Emacs has been idle.
|
|
7190 Occurs if there is no input after pausing for `lazy-lock-stealth-time'.
|
|
7191
|
|
7192 If `lazy-lock-hide-invisible' is non-nil, text is not displayed until it is
|
|
7193 fontified, otherwise it is displayed in `lazy-lock-invisible-foreground'.
|
|
7194
|
|
7195 See also variables `lazy-lock-walk-windows' and `lazy-lock-ignore-commands' for
|
|
7196 window (scroll) fontification, and `lazy-lock-stealth-lines',
|
|
7197 `lazy-lock-stealth-nice' and `lazy-lock-stealth-verbose' for stealth
|
|
7198 fontification.
|
|
7199
|
|
7200 Use \\[lazy-lock-submit-bug-report] to send bug reports or feedback." t nil)
|
|
7201
|
|
7202 (autoload 'turn-on-lazy-lock "lazy-lock" "\
|
|
7203 Unconditionally turn on Lazy Lock mode." nil nil)
|
|
7204
|
100
|
7205 (when (fboundp 'add-minor-mode) (defvar lazy-lock-mode nil) (add-minor-mode 'lazy-lock-mode nil))
|
78
|
7206
|
|
7207 ;;;***
|
|
7208
|
|
7209 ;;;### (autoloads (ledit-from-lisp-mode ledit-mode) "ledit" "packages/ledit.el")
|
|
7210
|
|
7211 (defconst ledit-save-files t "\
|
|
7212 *Non-nil means Ledit should save files before transferring to Lisp.")
|
|
7213
|
|
7214 (defconst ledit-go-to-lisp-string "%?lisp" "\
|
|
7215 *Shell commands to execute to resume Lisp job.")
|
|
7216
|
|
7217 (defconst ledit-go-to-liszt-string "%?liszt" "\
|
|
7218 *Shell commands to execute to resume Lisp compiler job.")
|
|
7219
|
|
7220 (autoload 'ledit-mode "ledit" "\
|
|
7221 \\<ledit-mode-map>Major mode for editing text and stuffing it to a Lisp job.
|
|
7222 Like Lisp mode, plus these special commands:
|
|
7223 \\[ledit-save-defun] -- record defun at or after point
|
|
7224 for later transmission to Lisp job.
|
|
7225 \\[ledit-save-region] -- record region for later transmission to Lisp job.
|
|
7226 \\[ledit-go-to-lisp] -- transfer to Lisp job and transmit saved text.
|
|
7227 \\[ledit-go-to-liszt] -- transfer to Liszt (Lisp compiler) job
|
|
7228 and transmit saved text.
|
|
7229 \\{ledit-mode-map}
|
|
7230 To make Lisp mode automatically change to Ledit mode,
|
|
7231 do (setq lisp-mode-hook 'ledit-from-lisp-mode)" t nil)
|
|
7232
|
|
7233 (autoload 'ledit-from-lisp-mode "ledit" nil nil nil)
|
|
7234
|
|
7235 ;;;***
|
|
7236
|
|
7237 ;;;### (autoloads (print-region lpr-region print-buffer lpr-buffer) "lpr" "packages/lpr.el")
|
|
7238
|
|
7239 (defvar lpr-switches nil "\
|
|
7240 *List of strings to pass as extra options for the printer program.
|
|
7241 See `lpr-command'.")
|
|
7242
|
|
7243 (defvar lpr-command (if (memq system-type '(usg-unix-v dgux hpux irix)) "lp" "lpr") "\
|
|
7244 *Name of program for printing a file.")
|
|
7245
|
|
7246 (autoload 'lpr-buffer "lpr" "\
|
|
7247 Print buffer contents as with Unix command `lpr'.
|
|
7248 `lpr-switches' is a list of extra switches (strings) to pass to lpr." t nil)
|
|
7249
|
|
7250 (autoload 'print-buffer "lpr" "\
|
|
7251 Print buffer contents as with Unix command `lpr -p'.
|
|
7252 `lpr-switches' is a list of extra switches (strings) to pass to lpr." t nil)
|
|
7253
|
|
7254 (autoload 'lpr-region "lpr" "\
|
|
7255 Print region contents as with Unix command `lpr'.
|
|
7256 `lpr-switches' is a list of extra switches (strings) to pass to lpr." t nil)
|
|
7257
|
|
7258 (autoload 'print-region "lpr" "\
|
|
7259 Print region contents as with Unix command `lpr -p'.
|
|
7260 `lpr-switches' is a list of extra switches (strings) to pass to lpr." t nil)
|
|
7261
|
|
7262 ;;;***
|
|
7263
|
|
7264 ;;;### (autoloads (make-command-summary) "makesum" "packages/makesum.el")
|
|
7265
|
|
7266 (autoload 'make-command-summary "makesum" "\
|
|
7267 Make a summary of current key bindings in the buffer *Summary*.
|
|
7268 Previous contents of that buffer are killed first." t nil)
|
|
7269
|
|
7270 ;;;***
|
|
7271
|
|
7272 ;;;### (autoloads (manual-entry) "man" "packages/man.el")
|
|
7273
|
|
7274 (autoload 'manual-entry "man" "\
|
100
|
7275 Display the Unix manual entry (or entries) for TOPIC." t nil)
|
78
|
7276
|
|
7277 ;;;***
|
|
7278
|
|
7279 ;;;### (autoloads (metamail-region metamail-buffer metamail-interpret-body metamail-interpret-header) "metamail" "packages/metamail.el")
|
|
7280
|
|
7281 (autoload 'metamail-interpret-header "metamail" "\
|
|
7282 Interpret a header part of a MIME message in current buffer.
|
|
7283 Its body part is not interpreted at all." t nil)
|
|
7284
|
|
7285 (autoload 'metamail-interpret-body "metamail" "\
|
|
7286 Interpret a body part of a MIME message in current buffer.
|
|
7287 Optional argument VIEWMODE specifies the value of the
|
|
7288 EMACS_VIEW_MODE environment variable (defaulted to 1).
|
|
7289 Optional argument NODISPLAY non-nil means buffer is not
|
|
7290 redisplayed as output is inserted.
|
|
7291 Its header part is not interpreted at all." t nil)
|
|
7292
|
|
7293 (autoload 'metamail-buffer "metamail" "\
|
|
7294 Process current buffer through `metamail'.
|
|
7295 Optional argument VIEWMODE specifies the value of the
|
|
7296 EMACS_VIEW_MODE environment variable (defaulted to 1).
|
|
7297 Optional argument BUFFER specifies a buffer to be filled (nil
|
|
7298 means current).
|
|
7299 Optional argument NODISPLAY non-nil means buffer is not
|
|
7300 redisplayed as output is inserted." t nil)
|
|
7301
|
|
7302 (autoload 'metamail-region "metamail" "\
|
|
7303 Process current region through 'metamail'.
|
|
7304 Optional argument VIEWMODE specifies the value of the
|
|
7305 EMACS_VIEW_MODE environment variable (defaulted to 1).
|
|
7306 Optional argument BUFFER specifies a buffer to be filled (nil
|
|
7307 means current).
|
|
7308 Optional argument NODISPLAY non-nil means buffer is not
|
|
7309 redisplayed as output is inserted." t nil)
|
|
7310
|
|
7311 ;;;***
|
|
7312
|
|
7313 ;;;### (autoloads (blink-paren paren-set-mode) "paren" "packages/paren.el")
|
|
7314
|
|
7315 (defvar paren-mode nil "\
|
|
7316 *Sets the style of parenthesis highlighting.
|
|
7317 Valid values are nil, `blink-paren', `paren', and `sexp'.
|
|
7318 nil no parenthesis highlighting.
|
|
7319 blink-paren causes the matching paren to blink.
|
|
7320 paren causes the matching paren to be highlighted but not to blink.
|
|
7321 sexp whole expression enclosed by the local paren at its mate.
|
|
7322 nested (not yet implemented) use variable shading to see the
|
|
7323 nesting of an expression. Also groks regular expressions
|
|
7324 and shell quoting.
|
|
7325
|
|
7326 This variable is global by default, but you can make it buffer-local and
|
108
|
7327 highlight parentheses differently in different major modes.")
|
78
|
7328
|
|
7329 (autoload 'paren-set-mode "paren" "\
|
|
7330 Cycles through possible values for `paren-mode', force off with negative arg.
|
108
|
7331 When called from lisp, a symbolic value for `paren-mode' can be passed directly.
|
78
|
7332 See also `paren-mode' and `paren-highlight'." t nil)
|
|
7333
|
|
7334 (make-obsolete 'blink-paren 'paren-set-mode)
|
|
7335
|
|
7336 (autoload 'blink-paren "paren" "\
|
|
7337 Obsolete. Use `paren-set-mode' instead." t nil)
|
|
7338
|
|
7339 ;;;***
|
|
7340
|
|
7341 ;;;### (autoloads (pending-delete pending-delete-off pending-delete-on) "pending-del" "packages/pending-del.el")
|
|
7342
|
|
7343 (autoload 'pending-delete-on "pending-del" "\
|
|
7344 Turn on pending delete.
|
|
7345 When it is ON, typed text replaces the selection if the selection is active.
|
|
7346 When it is OFF, typed text is just inserted at point." t nil)
|
|
7347
|
|
7348 (autoload 'pending-delete-off "pending-del" "\
|
|
7349 Turn off pending delete.
|
|
7350 When it is ON, typed text replaces the selection if the selection is active.
|
|
7351 When it is OFF, typed text is just inserted at point." t nil)
|
|
7352
|
|
7353 (autoload 'pending-delete "pending-del" "\
|
|
7354 Toggle automatic deletion of the selected region.
|
|
7355 With a positive argument, turns it on.
|
|
7356 With a non-positive argument, turns it off.
|
|
7357 When active, typed text replaces the selection." t nil)
|
|
7358
|
|
7359 ;;;***
|
|
7360
|
82
|
7361 ;;;### (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")
|
|
7362
|
|
7363 (defvar ps-paper-type 'letter "\
|
|
7364 *Specifies the size of paper to format for.
|
|
7365 Should be one of the paper types defined in `ps-page-dimensions-database', for
|
|
7366 example `letter', `legal' or `a4'.")
|
|
7367
|
|
7368 (defvar ps-print-color-p (or (fboundp 'x-color-values) (fboundp 'color-instance-rgb-components)) "\
|
78
|
7369 *If non-nil, print the buffer's text in color.")
|
|
7370
|
|
7371 (autoload 'ps-print-buffer "ps-print" "\
|
|
7372 Generate and print a PostScript image of the buffer.
|
|
7373
|
|
7374 When called with a numeric prefix argument (C-u), prompts the user for
|
|
7375 the name of a file to save the PostScript image in, instead of sending
|
|
7376 it to the printer.
|
|
7377
|
|
7378 More specifically, the FILENAME argument is treated as follows: if it
|
|
7379 is nil, send the image to the printer. If FILENAME is a string, save
|
|
7380 the PostScript image in a file with that name. If FILENAME is a
|
|
7381 number, prompt the user for the name of the file to save in." t nil)
|
|
7382
|
|
7383 (autoload 'ps-print-buffer-with-faces "ps-print" "\
|
|
7384 Generate and print a PostScript image of the buffer.
|
|
7385 Like `ps-print-buffer', but includes font, color, and underline
|
|
7386 information in the generated image. This command works only if you
|
|
7387 are using a window system, so it has a way to determine color values." t nil)
|
|
7388
|
|
7389 (autoload 'ps-print-region "ps-print" "\
|
|
7390 Generate and print a PostScript image of the region.
|
|
7391 Like `ps-print-buffer', but prints just the current region." t nil)
|
|
7392
|
|
7393 (autoload 'ps-print-region-with-faces "ps-print" "\
|
|
7394 Generate and print a PostScript image of the region.
|
|
7395 Like `ps-print-region', but includes font, color, and underline
|
|
7396 information in the generated image. This command works only if you
|
|
7397 are using a window system, so it has a way to determine color values." t nil)
|
|
7398
|
|
7399 (autoload 'ps-spool-buffer "ps-print" "\
|
|
7400 Generate and spool a PostScript image of the buffer.
|
|
7401 Like `ps-print-buffer' except that the PostScript image is saved in a
|
|
7402 local buffer to be sent to the printer later.
|
|
7403
|
|
7404 Use the command `ps-despool' to send the spooled images to the printer." t nil)
|
|
7405
|
|
7406 (autoload 'ps-spool-buffer-with-faces "ps-print" "\
|
|
7407 Generate and spool a PostScript image of the buffer.
|
|
7408 Like `ps-spool-buffer', but includes font, color, and underline
|
|
7409 information in the generated image. This command works only if you
|
|
7410 are using a window system, so it has a way to determine color values.
|
|
7411
|
|
7412 Use the command `ps-despool' to send the spooled images to the printer." t nil)
|
|
7413
|
|
7414 (autoload 'ps-spool-region "ps-print" "\
|
|
7415 Generate a PostScript image of the region and spool locally.
|
|
7416 Like `ps-spool-buffer', but spools just the current region.
|
|
7417
|
|
7418 Use the command `ps-despool' to send the spooled images to the printer." t nil)
|
|
7419
|
|
7420 (autoload 'ps-spool-region-with-faces "ps-print" "\
|
|
7421 Generate a PostScript image of the region and spool locally.
|
|
7422 Like `ps-spool-region', but includes font, color, and underline
|
|
7423 information in the generated image. This command works only if you
|
|
7424 are using a window system, so it has a way to determine color values.
|
|
7425
|
|
7426 Use the command `ps-despool' to send the spooled images to the printer." t nil)
|
|
7427
|
|
7428 (autoload 'ps-despool "ps-print" "\
|
|
7429 Send the spooled PostScript to the printer.
|
|
7430
|
|
7431 When called with a numeric prefix argument (C-u), prompt the user for
|
|
7432 the name of a file to save the spooled PostScript in, instead of sending
|
|
7433 it to the printer.
|
|
7434
|
|
7435 More specifically, the FILENAME argument is treated as follows: if it
|
|
7436 is nil, send the image to the printer. If FILENAME is a string, save
|
|
7437 the PostScript image in a file with that name. If FILENAME is a
|
|
7438 number, prompt the user for the name of the file to save in." t nil)
|
|
7439
|
82
|
7440 (autoload 'ps-line-lengths "ps-print" "\
|
88
|
7441 *Display the correspondence between a line length and a font size,
|
82
|
7442 using the current ps-print setup.
|
|
7443 Try: pr -t file | awk '{printf \"%3d %s
|
|
7444 \", length($0), $0}' | sort -r | head" t nil)
|
|
7445
|
|
7446 (autoload 'ps-nb-pages-buffer "ps-print" "\
|
88
|
7447 *Display an approximate correspondence between a font size and the number
|
82
|
7448 of pages the current buffer would require to print
|
|
7449 using the current ps-print setup." t nil)
|
|
7450
|
|
7451 (autoload 'ps-nb-pages-region "ps-print" "\
|
88
|
7452 *Display an approximate correspondence between a font size and the number
|
82
|
7453 of pages the current region would require to print
|
|
7454 using the current ps-print setup." t nil)
|
|
7455
|
|
7456 (autoload 'ps-setup "ps-print" "\
|
|
7457 *Return the current setup" nil nil)
|
|
7458
|
78
|
7459 ;;;***
|
|
7460
|
|
7461 ;;;### (autoloads (remote-compile) "rcompile" "packages/rcompile.el")
|
|
7462
|
|
7463 (autoload 'remote-compile "rcompile" "\
|
|
7464 Compile the current buffer's directory on HOST. Log in as USER.
|
|
7465 See \\[compile]." t nil)
|
|
7466
|
|
7467 ;;;***
|
|
7468
|
|
7469 ;;;### (autoloads (resume-suspend-hook) "resume" "packages/resume.el")
|
|
7470
|
|
7471 (autoload 'resume-suspend-hook "resume" "\
|
|
7472 Clear out the file used for transmitting args when Emacs resumes." nil nil)
|
|
7473
|
|
7474 ;;;***
|
|
7475
|
|
7476 ;;;### (autoloads nil "server" "packages/server.el")
|
|
7477
|
|
7478 (make-obsolete 'server-start 'gnuserv-start)
|
|
7479
|
|
7480 ;;;***
|
|
7481
|
|
7482 ;;;### (autoloads (install-shell-fonts) "shell-font" "packages/shell-font.el")
|
|
7483
|
|
7484 (autoload 'install-shell-fonts "shell-font" "\
|
|
7485 Decorate the current interaction buffer with fonts.
|
|
7486 This uses the faces called `shell-prompt', `shell-input' and `shell-output';
|
|
7487 you can alter the graphical attributes of those with the normal
|
|
7488 face-manipulation functions." nil nil)
|
|
7489
|
|
7490 ;;;***
|
|
7491
|
|
7492 ;;;### (autoloads (spell-string spell-region spell-word spell-buffer) "spell" "packages/spell.el")
|
|
7493
|
|
7494 (put 'spell-filter 'risky-local-variable t)
|
|
7495
|
|
7496 (autoload 'spell-buffer "spell" "\
|
|
7497 Check spelling of every word in the buffer.
|
|
7498 For each incorrect word, you are asked for the correct spelling
|
|
7499 and then put into a query-replace to fix some or all occurrences.
|
|
7500 If you do not want to change a word, just give the same word
|
|
7501 as its \"correct\" spelling; then the query replace is skipped." t nil)
|
|
7502
|
|
7503 (autoload 'spell-word "spell" "\
|
|
7504 Check spelling of word at or before point.
|
|
7505 If it is not correct, ask user for the correct spelling
|
|
7506 and `query-replace' the entire buffer to substitute it." t nil)
|
|
7507
|
|
7508 (autoload 'spell-region "spell" "\
|
|
7509 Like `spell-buffer' but applies only to region.
|
|
7510 Used in a program, applies from START to END.
|
|
7511 DESCRIPTION is an optional string naming the unit being checked:
|
|
7512 for example, \"word\"." t nil)
|
|
7513
|
|
7514 (autoload 'spell-string "spell" "\
|
|
7515 Check spelling of string supplied as argument." t nil)
|
|
7516
|
|
7517 ;;;***
|
|
7518
|
|
7519 ;;;### (autoloads (tar-mode) "tar-mode" "packages/tar-mode.el")
|
|
7520
|
|
7521 (autoload 'tar-mode "tar-mode" "\
|
|
7522 Major mode for viewing a tar file as a dired-like listing of its contents.
|
|
7523 You can move around using the usual cursor motion commands.
|
|
7524 Letters no longer insert themselves.
|
|
7525 Type 'e' to pull a file out of the tar file and into its own buffer.
|
|
7526 Type 'c' to copy an entry from the tar file into another file on disk.
|
|
7527
|
|
7528 If you edit a sub-file of this archive (as with the 'e' command) and
|
|
7529 save it with Control-X Control-S, the contents of that buffer will be
|
|
7530 saved back into the tar-file buffer; in this way you can edit a file
|
|
7531 inside of a tar archive without extracting it and re-archiving it.
|
|
7532
|
|
7533 See also: variables tar-update-datestamp and tar-anal-blocksize.
|
|
7534 \\{tar-mode-map}" nil nil)
|
|
7535
|
|
7536 ;;;***
|
|
7537
|
|
7538 ;;;### (autoloads (terminal-emulator) "terminal" "packages/terminal.el")
|
|
7539
|
|
7540 (autoload 'terminal-emulator "terminal" "\
|
|
7541 Under a display-terminal emulator in BUFFER, run PROGRAM on arguments ARGS.
|
|
7542 ARGS is a list of argument-strings. Remaining arguments are WIDTH and HEIGHT.
|
|
7543 BUFFER's contents are made an image of the display generated by that program,
|
|
7544 and any input typed when BUFFER is the current Emacs buffer is sent to that
|
|
7545 program an keyboard input.
|
|
7546
|
|
7547 Interactively, BUFFER defaults to \"*terminal*\" and PROGRAM and ARGS
|
|
7548 are parsed from an input-string using your usual shell.
|
|
7549 WIDTH and HEIGHT are determined from the size of the current window
|
|
7550 -- WIDTH will be one less than the window's width, HEIGHT will be its height.
|
|
7551
|
|
7552 To switch buffers and leave the emulator, or to give commands
|
|
7553 to the emulator itself (as opposed to the program running under it),
|
|
7554 type Control-^. The following character is an emulator command.
|
|
7555 Type Control-^ twice to send it to the subprogram.
|
|
7556 This escape character may be changed using the variable `terminal-escape-char'.
|
|
7557
|
|
7558 `Meta' characters may not currently be sent through the terminal emulator.
|
|
7559
|
|
7560 Here is a list of some of the variables which control the behaviour
|
|
7561 of the emulator -- see their documentation for more information:
|
|
7562 terminal-escape-char, terminal-scrolling, terminal-more-processing,
|
|
7563 terminal-redisplay-interval.
|
|
7564
|
|
7565 This function calls the value of terminal-mode-hook if that exists
|
|
7566 and is non-nil after the terminal buffer has been set up and the
|
|
7567 subprocess started.
|
|
7568
|
|
7569 Presently with `termcap' only; if somebody sends us code to make this
|
|
7570 work with `terminfo' we will try to use it." t nil)
|
|
7571
|
|
7572 ;;;***
|
|
7573
|
|
7574 ;;;### (autoloads (batch-texinfo-format texinfo-format-region texinfo-format-buffer) "texinfmt" "packages/texinfmt.el")
|
|
7575
|
|
7576 (autoload 'texinfo-format-buffer "texinfmt" "\
|
|
7577 Process the current buffer as texinfo code, into an Info file.
|
|
7578 The Info file output is generated in a buffer visiting the Info file
|
|
7579 names specified in the @setfilename command.
|
|
7580
|
|
7581 Non-nil argument (prefix, if interactive) means don't make tag table
|
|
7582 and don't split the file if large. You can use Info-tagify and
|
|
7583 Info-split to do these manually." t nil)
|
|
7584
|
|
7585 (autoload 'texinfo-format-region "texinfmt" "\
|
|
7586 Convert the current region of the Texinfo file to Info format.
|
|
7587 This lets you see what that part of the file will look like in Info.
|
|
7588 The command is bound to \\[texinfo-format-region]. The text that is
|
|
7589 converted to Info is stored in a temporary buffer." t nil)
|
|
7590
|
|
7591 (autoload 'batch-texinfo-format "texinfmt" "\
|
|
7592 Runs texinfo-format-buffer on the files remaining on the command line.
|
|
7593 Must be used only with -batch, and kills emacs on completion.
|
|
7594 Each file will be processed even if an error occurred previously.
|
|
7595 For example, invoke
|
|
7596 \"emacs -batch -funcall batch-texinfo-format $docs/ ~/*.texinfo\"." nil nil)
|
|
7597
|
|
7598 ;;;***
|
|
7599
|
|
7600 ;;;### (autoloads (texinfo-sequential-node-update texinfo-every-node-update texinfo-update-node) "texnfo-upd" "packages/texnfo-upd.el")
|
|
7601
|
|
7602 (autoload 'texinfo-update-node "texnfo-upd" "\
|
|
7603 Without any prefix argument, update the node in which point is located.
|
|
7604 Non-nil argument (prefix, if interactive) means update the nodes in the
|
|
7605 marked region.
|
|
7606
|
|
7607 The functions for creating or updating nodes and menus, and their
|
|
7608 keybindings, are:
|
|
7609
|
|
7610 texinfo-update-node (&optional region-p) \\[texinfo-update-node]
|
|
7611 texinfo-every-node-update () \\[texinfo-every-node-update]
|
|
7612 texinfo-sequential-node-update (&optional region-p)
|
|
7613
|
|
7614 texinfo-make-menu (&optional region-p) \\[texinfo-make-menu]
|
|
7615 texinfo-all-menus-update () \\[texinfo-all-menus-update]
|
|
7616 texinfo-master-menu ()
|
|
7617
|
|
7618 texinfo-indent-menu-description (column &optional region-p)
|
|
7619
|
|
7620 The `texinfo-column-for-description' variable specifies the column to
|
|
7621 which menu descriptions are indented. Its default value is 32." t nil)
|
|
7622
|
|
7623 (autoload 'texinfo-every-node-update "texnfo-upd" "\
|
|
7624 Update every node in a Texinfo file." t nil)
|
|
7625
|
|
7626 (autoload 'texinfo-sequential-node-update "texnfo-upd" "\
|
|
7627 Update one node (or many) in a Texinfo file with sequential pointers.
|
|
7628
|
|
7629 This function causes the `Next' or `Previous' pointer to point to the
|
|
7630 immediately preceding or following node, even if it is at a higher or
|
|
7631 lower hierarchical level in the document. Continually pressing `n' or
|
|
7632 `p' takes you straight through the file.
|
|
7633
|
|
7634 Without any prefix argument, update the node in which point is located.
|
|
7635 Non-nil argument (prefix, if interactive) means update the nodes in the
|
|
7636 marked region.
|
|
7637
|
|
7638 This command makes it awkward to navigate among sections and
|
|
7639 subsections; it should be used only for those documents that are meant
|
|
7640 to be read like a novel rather than a reference, and for which the
|
|
7641 Info `g*' command is inadequate." t nil)
|
|
7642
|
|
7643 ;;;***
|
|
7644
|
|
7645 ;;;### (autoloads (time-stamp-toggle-active time-stamp) "time-stamp" "packages/time-stamp.el")
|
|
7646
|
|
7647 (autoload 'time-stamp "time-stamp" "\
|
|
7648 Update the time stamp string in the buffer.
|
|
7649 If you put a time stamp template anywhere in the first 8 lines of a file,
|
|
7650 it can be updated every time you save the file. See the top of
|
|
7651 `time-stamp.el' for a sample. The template looks like one of the following:
|
|
7652 Time-stamp: <>
|
|
7653 Time-stamp: \" \"
|
|
7654 The time stamp is written between the brackets or quotes, resulting in
|
|
7655 Time-stamp: <95/01/18 10:20:51 gildea>
|
|
7656 Only does its thing if the variable time-stamp-active is non-nil.
|
|
7657 Typically used on write-file-hooks for automatic time-stamping.
|
|
7658 The format of the time stamp is determined by the variable time-stamp-format.
|
|
7659 The variables time-stamp-line-limit, time-stamp-start, and time-stamp-end
|
|
7660 control finding the template." t nil)
|
|
7661
|
|
7662 (autoload 'time-stamp-toggle-active "time-stamp" "\
|
|
7663 Toggle time-stamp-active, setting whether \\[time-stamp] updates a buffer.
|
|
7664 With arg, turn time stamping on if and only if arg is positive." t nil)
|
|
7665
|
|
7666 ;;;***
|
|
7667
|
|
7668 ;;;### (autoloads (display-time) "time" "packages/time.el")
|
|
7669
|
110
|
7670 (defcustom display-time-day-and-date nil "*Non-nil means \\[display-time] should display day,date and time.\nThis affects the spec 'date in the variable display-time-form-list." :group 'display-time :type 'boolean)
|
78
|
7671
|
|
7672 (autoload 'display-time "time" "\
|
|
7673 Display current time, load level, and mail flag in mode line of each buffer.
|
|
7674 Updates automatically every minute.
|
|
7675 If `display-time-day-and-date' is non-nil, the current day and date
|
|
7676 are displayed as well.
|
|
7677 After each update, `display-time-hook' is run with `run-hooks'.
|
|
7678 If `display-time-echo-area' is non-nil, the time is displayed in the
|
|
7679 echo area instead of in the mode-line." t nil)
|
|
7680
|
|
7681 ;;;***
|
|
7682
|
|
7683 ;;;### (autoloads (ununderline-and-unoverstrike-region overstrike-region unoverstrike-region ununderline-region underline-region) "underline" "packages/underline.el")
|
|
7684
|
|
7685 (autoload 'underline-region "underline" "\
|
|
7686 Underline all nonblank characters in the region.
|
|
7687 Works by overstriking underscores.
|
|
7688 Called from program, takes two arguments START and END
|
|
7689 which specify the range to operate on." t nil)
|
|
7690
|
|
7691 (autoload 'ununderline-region "underline" "\
|
|
7692 Remove all underlining (overstruck underscores) in the region.
|
|
7693 Called from program, takes two arguments START and END
|
|
7694 which specify the range to operate on." t nil)
|
|
7695
|
|
7696 (autoload 'unoverstrike-region "underline" "\
|
|
7697 Remove all overstriking (character-backspace-character) in the region.
|
|
7698 Called from program, takes two arguments START and END which specify the
|
|
7699 range to operate on." t nil)
|
|
7700
|
|
7701 (autoload 'overstrike-region "underline" "\
|
|
7702 Overstrike (character-backspace-character) all nonblank characters in
|
|
7703 the region. Called from program, takes two arguments START and END which
|
|
7704 specify the range to operate on." t nil)
|
|
7705
|
|
7706 (autoload 'ununderline-and-unoverstrike-region "underline" "\
|
|
7707 Remove underlining and overstriking in the region. Called from a program,
|
|
7708 takes two arguments START and END which specify the range to operate on." t nil)
|
|
7709
|
|
7710 ;;;***
|
|
7711
|
|
7712 ;;;### (autoloads (ask-to-update-copyright update-copyright) "upd-copyr" "packages/upd-copyr.el")
|
|
7713
|
|
7714 (defvar copyright-do-not-disturb "Free Software Foundation, Inc." "\
|
|
7715 *If non-nil, the existing copyright holder is checked against this regexp.
|
|
7716 If it does not match, then a new copyright line is added with the copyright
|
|
7717 holder set to the value of `copyright-whoami'.")
|
|
7718
|
|
7719 (defvar copyright-whoami nil "\
|
|
7720 *A string containing the name of the owner of new copyright notices.")
|
|
7721
|
|
7722 (defvar copyright-notice-file nil "\
|
|
7723 *If non-nil, replace copying notices with this file.")
|
|
7724
|
|
7725 (autoload 'update-copyright "upd-copyr" "\
|
|
7726 Update the copyright notice at the beginning of the buffer
|
|
7727 to indicate the current year. If optional arg REPLACE is given
|
|
7728 \(interactively, with prefix arg) replace the years in the notice
|
|
7729 rather than adding the current year after them.
|
|
7730 If `copyright-notice-file' is set, the copying permissions following the
|
|
7731 copyright are replaced as well.
|
|
7732
|
|
7733 If optional third argument ASK is non-nil, the user is prompted for whether
|
|
7734 or not to update the copyright. If optional fourth argument ASK-YEAR is
|
|
7735 non-nil, the user is prompted for whether or not to replace the year rather
|
|
7736 than adding to it." t nil)
|
|
7737
|
|
7738 (autoload 'ask-to-update-copyright "upd-copyr" "\
|
|
7739 If the current buffer contains a copyright notice that is out of date,
|
|
7740 ask the user if it should be updated with `update-copyright' (which see).
|
|
7741 Put this on write-file-hooks." nil nil)
|
|
7742
|
|
7743 ;;;***
|
|
7744
|
|
7745 ;;;### (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")
|
|
7746
|
|
7747 (defvar vc-checkin-hook nil "\
|
|
7748 *List of functions called after a checkin is done. See `run-hooks'.")
|
|
7749
|
108
|
7750 (defvar vc-before-checkin-hook nil "\
|
|
7751 *List of functions called before a checkin is done. See `run-hooks'.")
|
|
7752
|
78
|
7753 (autoload 'vc-file-status "vc" "\
|
|
7754 Display the current status of the file being visited.
|
|
7755 Currently, this is only defined for CVS. The information provided in the
|
|
7756 modeline is generally sufficient for RCS and SCCS." t nil)
|
|
7757
|
|
7758 (autoload 'vc-next-action "vc" "\
|
|
7759 Do the next logical checkin or checkout operation on the current file.
|
|
7760
|
|
7761 For RCS and SCCS files:
|
|
7762 If the file is not already registered, this registers it for version
|
|
7763 control and then retrieves a writable, locked copy for editing.
|
|
7764 If the file is registered and not locked by anyone, this checks out
|
|
7765 a writable and locked file ready for editing.
|
|
7766 If the file is checked out and locked by the calling user, this
|
|
7767 first checks to see if the file has changed since checkout. If not,
|
|
7768 it performs a revert.
|
|
7769 If the file has been changed, this pops up a buffer for entry
|
|
7770 of a log message; when the message has been entered, it checks in the
|
|
7771 resulting changes along with the log message as change commentary. If
|
|
7772 the variable `vc-keep-workfiles' is non-nil (which is its default), a
|
|
7773 read-only copy of the changed file is left in place afterwards.
|
|
7774 If the file is registered and locked by someone else, you are given
|
|
7775 the option to steal the lock.
|
|
7776
|
|
7777 For CVS files:
|
|
7778 If the file is not already registered, this registers it for version
|
|
7779 control. This does a \"cvs add\", but no \"cvs commit\".
|
|
7780 If the file is added but not committed, it is committed.
|
|
7781 If the file has not been changed, neither in your working area or
|
|
7782 in the repository, a message is printed and nothing is done.
|
|
7783 If your working file is changed, but the repository file is
|
|
7784 unchanged, this pops up a buffer for entry of a log message; when the
|
|
7785 message has been entered, it checks in the resulting changes along
|
|
7786 with the logmessage as change commentary. A writable file is retained.
|
|
7787 If the repository file is changed, you are asked if you want to
|
|
7788 merge in the changes into your working copy.
|
|
7789
|
|
7790 The following is true regardless of which version control system you
|
|
7791 are using:
|
|
7792
|
|
7793 If you call this from within a VC dired buffer with no files marked,
|
|
7794 it will operate on the file in the current line.
|
|
7795 If you call this from within a VC dired buffer, and one or more
|
|
7796 files are marked, it will accept a log message and then operate on
|
|
7797 each one. The log message will be used as a comment for any register
|
|
7798 or checkin operations, but ignored when doing checkouts. Attempted
|
|
7799 lock steals will raise an error.
|
|
7800
|
|
7801 For checkin, a prefix argument lets you specify the version number to use." t nil)
|
|
7802
|
|
7803 (autoload 'vc-register "vc" "\
|
|
7804 Register the current file into your version-control system." t nil)
|
|
7805
|
|
7806 (autoload 'vc-diff "vc" "\
|
|
7807 Display diffs between file versions.
|
|
7808 Normally this compares the current file and buffer with the most recent
|
|
7809 checked in version of that file. This uses no arguments.
|
|
7810 With a prefix argument, it reads the file name to use
|
|
7811 and two version designators specifying which versions to compare." t nil)
|
|
7812
|
|
7813 (autoload 'vc-version-diff "vc" "\
|
|
7814 For FILE, report diffs between two stored versions REL1 and REL2 of it.
|
|
7815 If FILE is a directory, generate diffs between versions for all registered
|
|
7816 files in or below it." t nil)
|
|
7817
|
|
7818 (autoload 'vc-version-other-window "vc" "\
|
|
7819 Visit version REV of the current buffer in another window.
|
|
7820 If the current buffer is named `F', the version is named `F.~REV~'.
|
|
7821 If `F.~REV~' already exists, it is used instead of being re-created." t nil)
|
|
7822
|
|
7823 (autoload 'vc-insert-headers "vc" "\
|
|
7824 Insert headers in a file for use with your version-control system.
|
|
7825 Headers desired are inserted at the start of the buffer, and are pulled from
|
|
7826 the variable `vc-header-alist'." t nil)
|
|
7827
|
|
7828 (autoload 'vc-directory "vc" "\
|
|
7829 Show version-control status of all files in the directory DIR.
|
|
7830 If the second argument VERBOSE is non-nil, show all files;
|
|
7831 otherwise show only files that current locked in the version control system.
|
|
7832 Interactively, supply a prefix arg to make VERBOSE non-nil.
|
|
7833
|
|
7834 If the optional third argument NESTED is non-nil,
|
|
7835 scan the entire tree of subdirectories of the current directory." t nil)
|
|
7836
|
|
7837 (autoload 'vc-create-snapshot "vc" "\
|
|
7838 Make a snapshot called NAME.
|
|
7839 The snapshot is made from all registered files at or below the current
|
|
7840 directory. For each file, the version level of its latest
|
|
7841 version becomes part of the named configuration." t nil)
|
|
7842
|
|
7843 (autoload 'vc-retrieve-snapshot "vc" "\
|
|
7844 Retrieve the snapshot called NAME.
|
|
7845 This function fails if any files are locked at or below the current directory
|
|
7846 Otherwise, all registered files are checked out (unlocked) at their version
|
|
7847 levels in the snapshot." t nil)
|
|
7848
|
|
7849 (autoload 'vc-print-log "vc" "\
|
|
7850 List the change log of the current buffer in a window." t nil)
|
|
7851
|
|
7852 (autoload 'vc-revert-buffer "vc" "\
|
|
7853 Revert the current buffer's file back to the latest checked-in version.
|
|
7854 This asks for confirmation if the buffer contents are not identical
|
|
7855 to that version.
|
|
7856 If the back-end is CVS, this will give you the most recent revision of
|
|
7857 the file on the branch you are editing." t nil)
|
|
7858
|
|
7859 (autoload 'vc-cancel-version "vc" "\
|
|
7860 Get rid of most recently checked in version of this file.
|
|
7861 A prefix argument means do not revert the buffer afterwards." t nil)
|
|
7862
|
|
7863 (autoload 'vc-rename-file "vc" "\
|
|
7864 Rename file OLD to NEW, and rename its master file likewise." t nil)
|
|
7865
|
|
7866 (autoload 'vc-rename-this-file "vc" nil t nil)
|
|
7867
|
|
7868 (autoload 'vc-update-change-log "vc" "\
|
|
7869 Find change log file and add entries from recent RCS logs.
|
|
7870 The mark is left at the end of the text prepended to the change log.
|
|
7871 With prefix arg of C-u, only find log entries for the current buffer's file.
|
|
7872 With any numeric prefix arg, find log entries for all files currently visited.
|
|
7873 Otherwise, find log entries for all registered files in the default directory.
|
|
7874 From a program, any arguments are passed to the `rcs2log' script." t nil)
|
|
7875
|
|
7876 ;;;***
|
|
7877
|
98
|
7878 ;;;### (autoloads (webjump) "webjump" "packages/webjump.el")
|
|
7879
|
|
7880 (autoload 'webjump "webjump" "\
|
|
7881 Jumps to a Web site from a programmable hotlist.
|
|
7882
|
|
7883 See the documentation for the `webjump-sites' variable for how to customize the
|
|
7884 hotlist.
|
|
7885
|
|
7886 Feedback on WebJump can be sent to the author, Neil W. Van Dyke <nwv@acm.org>,
|
|
7887 or submitted via `\\[webjump-submit-bug-report]'. The latest version can be
|
|
7888 gotten from `http://www.cs.brown.edu/people/nwv/'." t nil)
|
|
7889
|
|
7890 ;;;***
|
|
7891
|
118
|
7892 ;;;### (autoloads (webster-www) "webster-www" "packages/webster-www.el")
|
|
7893
|
|
7894 (autoload 'webster-www "webster-www" "\
|
|
7895 Look up a word in the Webster's dictionary at http://www.m-w.com using WWW." t nil)
|
78
|
7896
|
|
7897 ;;;***
|
|
7898
|
|
7899 ;;;### (autoloads (run-scheme) "xscheme" "packages/xscheme.el")
|
|
7900
|
|
7901 (defvar scheme-program-name "scheme" "\
|
|
7902 *Program invoked by the `run-scheme' command.")
|
|
7903
|
|
7904 (defvar scheme-band-name nil "\
|
|
7905 *Band loaded by the `run-scheme' command.")
|
|
7906
|
|
7907 (defvar scheme-program-arguments nil "\
|
|
7908 *Arguments passed to the Scheme program by the `run-scheme' command.")
|
|
7909
|
|
7910 (autoload 'run-scheme "xscheme" "\
|
|
7911 Run an inferior Scheme process.
|
|
7912 Output goes to the buffer `*scheme*'.
|
|
7913 With argument, asks for a command line." t nil)
|
|
7914
|
|
7915 ;;;***
|
|
7916
|
|
7917 ;;;### (autoloads (pcl-cvs-fontify) "pcl-cvs-xemacs" "pcl-cvs/pcl-cvs-xemacs.el")
|
|
7918
|
|
7919 (autoload 'pcl-cvs-fontify "pcl-cvs-xemacs" nil nil nil)
|
|
7920
|
|
7921 ;;;***
|
|
7922
|
|
7923 ;;;### (autoloads (cvs-update-other-window cvs-update) "pcl-cvs" "pcl-cvs/pcl-cvs.el")
|
|
7924
|
|
7925 (autoload 'cvs-update "pcl-cvs" "\
|
|
7926 Run a 'cvs update' in the current working directory. Feed the
|
|
7927 output to a *cvs* buffer and run cvs-mode on it.
|
|
7928 If optional prefix argument LOCAL is non-nil, 'cvs update -l' is run." t nil)
|
|
7929
|
|
7930 (autoload 'cvs-update-other-window "pcl-cvs" "\
|
|
7931 Run a 'cvs update' in the current working directory. Feed the
|
|
7932 output to a *cvs* buffer, display it in the other window, and run
|
|
7933 cvs-mode on it.
|
|
7934
|
|
7935 If optional prefix argument LOCAL is non-nil, 'cvs update -l' is run." t nil)
|
|
7936
|
|
7937 ;;;***
|
|
7938
|
|
7939 ;;;### (autoloads (about-xemacs) "about" "prim/about.el")
|
|
7940
|
|
7941 (autoload 'about-xemacs "about" nil t nil)
|
|
7942
|
|
7943 ;;;***
|
|
7944
|
|
7945 ;;;### (autoloads (all-hail-emacs all-hail-xemacs praise-be-unto-emacs praise-be-unto-xemacs) "advocacy" "prim/advocacy.el")
|
|
7946
|
|
7947 (defvar xemacs-praise-sound-file "sounds/im_so_happy.au" "\
|
|
7948 The name of an audio file containing something to play
|
|
7949 when praising XEmacs")
|
|
7950
|
|
7951 (defvar xemacs-praise-message "All Hail XEmacs!\n" "\
|
|
7952 What to praise XEmacs with")
|
|
7953
|
|
7954 (autoload 'praise-be-unto-xemacs "advocacy" "\
|
|
7955 All Hail XEmacs!" t nil)
|
|
7956
|
|
7957 (autoload 'praise-be-unto-emacs "advocacy" nil t nil)
|
|
7958
|
|
7959 (autoload 'all-hail-xemacs "advocacy" "\
|
|
7960 All Hail XEmacs!" t nil)
|
|
7961
|
|
7962 (autoload 'all-hail-emacs "advocacy" nil t nil)
|
|
7963
|
|
7964 ;;;***
|
|
7965
|
|
7966 ;;;### (autoloads (describe-buffer-case-table) "case-table" "prim/case-table.el")
|
|
7967
|
|
7968 (autoload 'describe-buffer-case-table "case-table" "\
|
|
7969 Describe the case table of the current buffer." t nil)
|
|
7970
|
|
7971 ;;;***
|
|
7972
|
108
|
7973 ;;;### (autoloads (batch-remove-old-elc) "cleantree" "prim/cleantree.el")
|
|
7974
|
|
7975 (autoload 'batch-remove-old-elc "cleantree" nil nil nil)
|
|
7976
|
|
7977 ;;;***
|
|
7978
|
78
|
7979 ;;;### (autoloads (cancel-debug-on-entry debug-on-entry debug) "debug" "prim/debug.el")
|
|
7980
|
|
7981 (autoload 'debug "debug" "\
|
|
7982 Enter debugger. To return, type \\<debugger-mode-map>`\\[debugger-continue]'.
|
|
7983 Arguments are mainly for use when this is called from the internals
|
|
7984 of the evaluator.
|
|
7985
|
|
7986 You may call with no args, or you may pass nil as the first arg and
|
|
7987 any other args you like. In that case, the list of args after the
|
|
7988 first will be printed into the backtrace buffer." t nil)
|
|
7989
|
|
7990 (autoload 'debug-on-entry "debug" "\
|
|
7991 Request FUNCTION to invoke debugger each time it is called.
|
|
7992 If you tell the debugger to continue, FUNCTION's execution proceeds.
|
|
7993 This works by modifying the definition of FUNCTION,
|
|
7994 which must be written in Lisp, not predefined.
|
|
7995 Use \\[cancel-debug-on-entry] to cancel the effect of this command.
|
|
7996 Redefining FUNCTION also cancels it." t nil)
|
|
7997
|
|
7998 (autoload 'cancel-debug-on-entry "debug" "\
|
|
7999 Undo effect of \\[debug-on-entry] on FUNCTION.
|
|
8000 If argument is nil or an empty string, cancel for all functions." t nil)
|
|
8001
|
|
8002 ;;;***
|
|
8003
|
|
8004 ;;;### (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")
|
|
8005
|
|
8006 (autoload 'describe-current-display-table "disp-table" "\
|
|
8007 Describe the display table in use in the selected window and buffer." t nil)
|
|
8008
|
|
8009 (autoload 'make-display-table "disp-table" "\
|
|
8010 Return a new, empty display table." nil nil)
|
|
8011
|
|
8012 (autoload 'standard-display-8bit "disp-table" "\
|
|
8013 Display characters in the range L to H literally." nil nil)
|
|
8014
|
|
8015 (autoload 'standard-display-default "disp-table" "\
|
|
8016 Display characters in the range L to H using the default notation." nil nil)
|
|
8017
|
|
8018 (autoload 'standard-display-ascii "disp-table" "\
|
|
8019 Display character C using printable string S." nil nil)
|
|
8020
|
|
8021 (autoload 'standard-display-g1 "disp-table" "\
|
|
8022 Display character C as character SC in the g1 character set.
|
|
8023 This function assumes that your terminal uses the SO/SI characters;
|
|
8024 it is meaningless for an X frame." nil nil)
|
|
8025
|
|
8026 (autoload 'standard-display-graphic "disp-table" "\
|
|
8027 Display character C as character GC in graphics character set.
|
|
8028 This function assumes VT100-compatible escapes; it is meaningless for an
|
|
8029 X frame." nil nil)
|
|
8030
|
|
8031 (autoload 'standard-display-underline "disp-table" "\
|
|
8032 Display character C as character UC plus underlining." nil nil)
|
|
8033
|
|
8034 (autoload 'standard-display-european "disp-table" "\
|
|
8035 Toggle display of European characters encoded with ISO 8859.
|
|
8036 When enabled, characters in the range of 160 to 255 display not
|
|
8037 as octal escapes, but as accented characters.
|
|
8038 With prefix argument, enable European character display iff arg is positive." t nil)
|
|
8039
|
|
8040 ;;;***
|
|
8041
|
|
8042 ;;;### (autoloads (setenv) "env" "prim/env.el")
|
|
8043
|
|
8044 (autoload 'setenv "env" "\
|
|
8045 Set the value of the environment variable named VARIABLE to VALUE.
|
|
8046 VARIABLE should be a string. VALUE is optional; if not provided or is
|
|
8047 `nil', the environment variable VARIABLE will be removed.
|
|
8048
|
|
8049 Interactively, a prefix argument means to unset the variable.
|
|
8050 Interactively, the current value (if any) of the variable
|
|
8051 appears at the front of the history list when you type in the new value.
|
|
8052
|
|
8053 This function works by modifying `process-environment'." t nil)
|
|
8054
|
|
8055 ;;;***
|
|
8056
|
100
|
8057 ;;;### (autoloads nil "itimer-autosave" "prim/itimer-autosave.el")
|
78
|
8058
|
|
8059 ;;;***
|
|
8060
|
|
8061 ;;;### (autoloads nil "loaddefs" "prim/loaddefs.el")
|
|
8062
|
|
8063 ;;;***
|
|
8064
|
98
|
8065 ;;;### (autoloads (apply-macro-to-region-lines kbd-macro-query name-last-kbd-macro) "macros" "prim/macros.el")
|
78
|
8066
|
|
8067 (autoload 'name-last-kbd-macro "macros" "\
|
|
8068 Assign a name to the last keyboard macro defined.
|
|
8069 Argument SYMBOL is the name to define.
|
|
8070 The symbol's function definition becomes the keyboard macro string.
|
|
8071 Such a \"function\" cannot be called from Lisp, but it is a valid
|
|
8072 editor command." t nil)
|
|
8073
|
|
8074 (autoload 'kbd-macro-query "macros" "\
|
|
8075 Query user during kbd macro execution.
|
|
8076 With prefix argument, enters recursive edit,
|
|
8077 reading keyboard commands even within a kbd macro.
|
|
8078 You can give different commands each time the macro executes.
|
|
8079 Without prefix argument, asks whether to continue running the macro.
|
|
8080 Your options are: \\<query-replace-map>
|
|
8081 \\[act] Finish this iteration normally and continue with the next.
|
|
8082 \\[skip] Skip the rest of this iteration, and start the next.
|
|
8083 \\[exit] Stop the macro entirely right now.
|
|
8084 \\[recenter] Redisplay the frame, then ask again.
|
|
8085 \\[edit] Enter recursive edit; ask again when you exit from that." t nil)
|
|
8086
|
|
8087 (autoload 'apply-macro-to-region-lines "macros" "\
|
|
8088 For each complete line between point and mark, move to the beginning
|
|
8089 of the line, and run the last keyboard macro.
|
|
8090
|
|
8091 When called from lisp, this function takes two arguments TOP and
|
|
8092 BOTTOM, describing the current region. TOP must be before BOTTOM.
|
|
8093 The optional third argument MACRO specifies a keyboard macro to
|
|
8094 execute.
|
|
8095
|
|
8096 This is useful for quoting or unquoting included text, adding and
|
|
8097 removing comments, or producing tables where the entries are regular.
|
|
8098
|
|
8099 For example, in Usenet articles, sections of text quoted from another
|
|
8100 author are indented, or have each line start with `>'. To quote a
|
|
8101 section of text, define a keyboard macro which inserts `>', put point
|
|
8102 and mark at opposite ends of the quoted section, and use
|
|
8103 `\\[apply-macro-to-region-lines]' to mark the entire section.
|
|
8104
|
|
8105 Suppose you wanted to build a keyword table in C where each entry
|
|
8106 looked like this:
|
|
8107
|
|
8108 { \"foo\", foo_data, foo_function },
|
|
8109 { \"bar\", bar_data, bar_function },
|
|
8110 { \"baz\", baz_data, baz_function },
|
|
8111
|
|
8112 You could enter the names in this format:
|
|
8113
|
|
8114 foo
|
|
8115 bar
|
|
8116 baz
|
|
8117
|
|
8118 and write a macro to massage a word into a table entry:
|
|
8119
|
|
8120 \\C-x (
|
|
8121 \\M-d { \"\\C-y\", \\C-y_data, \\C-y_function },
|
|
8122 \\C-x )
|
|
8123
|
|
8124 and then select the region of un-tablified names and use
|
|
8125 `\\[apply-macro-to-region-lines]' to build the table from the names.
|
|
8126 " t nil)
|
|
8127
|
|
8128 ;;;***
|
|
8129
|
|
8130 ;;;### (autoloads (disable-command enable-command disabled-command-hook) "novice" "prim/novice.el")
|
|
8131
|
|
8132 (autoload 'disabled-command-hook "novice" nil nil nil)
|
|
8133
|
|
8134 (autoload 'enable-command "novice" "\
|
|
8135 Allow COMMAND to be executed without special confirmation from now on.
|
|
8136 The user's .emacs file is altered so that this will apply
|
|
8137 to future sessions." t nil)
|
|
8138
|
|
8139 (autoload 'disable-command "novice" "\
|
|
8140 Require special confirmation to execute COMMAND from now on.
|
|
8141 The user's .emacs file is altered so that this will apply
|
|
8142 to future sessions." t nil)
|
|
8143
|
|
8144 ;;;***
|
|
8145
|
|
8146 ;;;### (autoloads (edit-options list-options) "options" "prim/options.el")
|
|
8147
|
|
8148 (autoload 'list-options "options" "\
|
|
8149 Display a list of XEmacs user options, with values and documentation." t nil)
|
|
8150
|
|
8151 (autoload 'edit-options "options" "\
|
|
8152 Edit a list of XEmacs user option values.
|
|
8153 Selects a buffer containing such a list,
|
|
8154 in which there are commands to set the option values.
|
|
8155 Type \\[describe-mode] in that buffer for a list of commands." t nil)
|
|
8156
|
|
8157 ;;;***
|
|
8158
|
|
8159 ;;;### (autoloads (clear-rectangle string-rectangle open-rectangle insert-rectangle yank-rectangle kill-rectangle extract-rectangle delete-extract-rectangle delete-rectangle) "rect" "prim/rect.el")
|
|
8160
|
|
8161 (autoload 'delete-rectangle "rect" "\
|
|
8162 Delete (don't save) text in rectangle with point and mark as corners.
|
|
8163 The same range of columns is deleted in each line starting with the line
|
|
8164 where the region begins and ending with the line where the region ends." t nil)
|
|
8165
|
|
8166 (autoload 'delete-extract-rectangle "rect" "\
|
|
8167 Delete contents of rectangle and return it as a list of strings.
|
|
8168 Arguments START and END are the corners of the rectangle.
|
|
8169 The value is list of strings, one for each line of the rectangle." nil nil)
|
|
8170
|
|
8171 (autoload 'extract-rectangle "rect" "\
|
|
8172 Return contents of rectangle with corners at START and END.
|
|
8173 Value is list of strings, one for each line of the rectangle." nil nil)
|
|
8174
|
|
8175 (defvar killed-rectangle nil "\
|
|
8176 Rectangle for yank-rectangle to insert.")
|
|
8177
|
|
8178 (autoload 'kill-rectangle "rect" "\
|
|
8179 Delete rectangle with corners at point and mark; save as last killed one.
|
|
8180 Calling from program, supply two args START and END, buffer positions.
|
|
8181 But in programs you might prefer to use `delete-extract-rectangle'." t nil)
|
|
8182
|
|
8183 (autoload 'yank-rectangle "rect" "\
|
|
8184 Yank the last killed rectangle with upper left corner at point." t nil)
|
|
8185
|
|
8186 (autoload 'insert-rectangle "rect" "\
|
|
8187 Insert text of RECTANGLE with upper left corner at point.
|
|
8188 RECTANGLE's first line is inserted at point, its second
|
|
8189 line is inserted at a point vertically under point, etc.
|
|
8190 RECTANGLE should be a list of strings.
|
|
8191 After this command, the mark is at the upper left corner
|
|
8192 and point is at the lower right corner." nil nil)
|
|
8193
|
|
8194 (autoload 'open-rectangle "rect" "\
|
|
8195 Blank out rectangle with corners at point and mark, shifting text right.
|
|
8196 The text previously in the region is not overwritten by the blanks,
|
|
8197 but instead winds up to the right of the rectangle." t nil)
|
|
8198
|
|
8199 (autoload 'string-rectangle "rect" "\
|
|
8200 Insert STRING on each line of the region-rectangle, shifting text right.
|
|
8201 The left edge of the rectangle specifies the column for insertion.
|
|
8202 This command does not delete or overwrite any existing text.
|
|
8203
|
|
8204 Called from a program, takes three args; START, END and STRING." t nil)
|
|
8205
|
|
8206 (autoload 'clear-rectangle "rect" "\
|
|
8207 Blank out rectangle with corners at point and mark.
|
|
8208 The text previously in the region is overwritten by the blanks.
|
|
8209 When called from a program, requires two args which specify the corners." t nil)
|
|
8210
|
|
8211 ;;;***
|
|
8212
|
|
8213 ;;;### (autoloads (reposition-window) "reposition" "prim/reposition.el")
|
|
8214
|
|
8215 (autoload 'reposition-window "reposition" "\
|
|
8216 Make the current definition and/or comment visible.
|
|
8217 Further invocations move it to the top of the window or toggle the
|
|
8218 visibility of comments that precede it.
|
|
8219 Point is left unchanged unless prefix ARG is supplied.
|
|
8220 If the definition is fully onscreen, it is moved to the top of the
|
|
8221 window. If it is partly offscreen, the window is scrolled to get the
|
|
8222 definition (or as much as will fit) onscreen, unless point is in a comment
|
|
8223 which is also partly offscreen, in which case the scrolling attempts to get
|
|
8224 as much of the comment onscreen as possible.
|
|
8225 Initially `reposition-window' attempts to make both the definition and
|
|
8226 preceding comments visible. Further invocations toggle the visibility of
|
|
8227 the comment lines.
|
|
8228 If ARG is non-nil, point may move in order to make the whole defun
|
|
8229 visible (if only part could otherwise be made so), to make the defun line
|
|
8230 visible (if point is in code and it could not be made so, or if only
|
|
8231 comments, including the first comment line, are visible), or to make the
|
|
8232 first comment line visible (if point is in a comment)." t nil)
|
|
8233
|
|
8234 ;;;***
|
|
8235
|
|
8236 ;;;### (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")
|
|
8237
|
|
8238 (autoload 'sort-subr "sort" "\
|
|
8239 General text sorting routine to divide buffer into records and sort them.
|
|
8240 Arguments are REVERSE NEXTRECFUN ENDRECFUN &optional STARTKEYFUN ENDKEYFUN.
|
|
8241
|
|
8242 We divide the accessible portion of the buffer into disjoint pieces
|
|
8243 called sort records. A portion of each sort record (perhaps all of
|
|
8244 it) is designated as the sort key. The records are rearranged in the
|
|
8245 buffer in order by their sort keys. The records may or may not be
|
|
8246 contiguous.
|
|
8247
|
|
8248 Usually the records are rearranged in order of ascending sort key.
|
|
8249 If REVERSE is non-nil, they are rearranged in order of descending sort key.
|
|
8250 The variable `sort-fold-case' determines whether alphabetic case affects
|
|
8251 the sort order.
|
|
8252
|
|
8253 The next four arguments are functions to be called to move point
|
|
8254 across a sort record. They will be called many times from within sort-subr.
|
|
8255
|
|
8256 NEXTRECFUN is called with point at the end of the previous record.
|
|
8257 It moves point to the start of the next record.
|
|
8258 It should move point to the end of the buffer if there are no more records.
|
|
8259 The first record is assumed to start at the position of point when sort-subr
|
|
8260 is called.
|
|
8261
|
|
8262 ENDRECFUN is called with point within the record.
|
|
8263 It should move point to the end of the record.
|
|
8264
|
|
8265 STARTKEYFUN moves from the start of the record to the start of the key.
|
|
8266 It may return either a non-nil value to be used as the key, or
|
|
8267 else the key is the substring between the values of point after
|
|
8268 STARTKEYFUN and ENDKEYFUN are called. If STARTKEYFUN is nil, the key
|
|
8269 starts at the beginning of the record.
|
|
8270
|
|
8271 ENDKEYFUN moves from the start of the sort key to the end of the sort key.
|
|
8272 ENDKEYFUN may be nil if STARTKEYFUN returns a value or if it would be the
|
|
8273 same as ENDRECFUN." nil nil)
|
|
8274
|
|
8275 (autoload 'sort-lines "sort" "\
|
|
8276 Sort lines in region alphabetically; argument means descending order.
|
|
8277 Called from a program, there are three arguments:
|
|
8278 REVERSE (non-nil means reverse order), BEG and END (region to sort).
|
|
8279 The variable `sort-fold-case' determines whether alphabetic case affects
|
|
8280 the sort order." t nil)
|
|
8281
|
|
8282 (autoload 'sort-paragraphs "sort" "\
|
|
8283 Sort paragraphs in region alphabetically; argument means descending order.
|
|
8284 Called from a program, there are three arguments:
|
|
8285 REVERSE (non-nil means reverse order), BEG and END (region to sort).
|
|
8286 The variable `sort-fold-case' determines whether alphabetic case affects
|
|
8287 the sort order." t nil)
|
|
8288
|
|
8289 (autoload 'sort-pages "sort" "\
|
|
8290 Sort pages in region alphabetically; argument means descending order.
|
|
8291 Called from a program, there are three arguments:
|
|
8292 REVERSE (non-nil means reverse order), BEG and END (region to sort).
|
|
8293 The variable `sort-fold-case' determines whether alphabetic case affects
|
|
8294 the sort order." t nil)
|
|
8295
|
|
8296 (autoload 'sort-numeric-fields "sort" "\
|
|
8297 Sort lines in region numerically by the ARGth field of each line.
|
|
8298 Fields are separated by whitespace and numbered from 1 up.
|
|
8299 Specified field must contain a number in each line of the region.
|
|
8300 With a negative arg, sorts by the ARGth field counted from the right.
|
|
8301 Called from a program, there are three arguments:
|
|
8302 FIELD, BEG and END. BEG and END specify region to sort.
|
|
8303 The variable `sort-fold-case' determines whether alphabetic case affects
|
|
8304 the sort order.
|
|
8305 If you want to sort floating-point numbers, try `sort-float-fields'." t nil)
|
|
8306
|
|
8307 (autoload 'sort-float-fields "sort" "\
|
|
8308 Sort lines in region numerically by the ARGth field of each line.
|
|
8309 Fields are separated by whitespace and numbered from 1 up. Specified field
|
|
8310 must contain a floating point number in each line of the region. With a
|
|
8311 negative arg, sorts by the ARGth field counted from the right. Called from a
|
|
8312 program, there are three arguments: FIELD, BEG and END. BEG and END specify
|
|
8313 region to sort." t nil)
|
|
8314
|
|
8315 (autoload 'sort-fields "sort" "\
|
|
8316 Sort lines in region lexicographically by the ARGth field of each line.
|
|
8317 Fields are separated by whitespace and numbered from 1 up.
|
|
8318 With a negative arg, sorts by the ARGth field counted from the right.
|
|
8319 Called from a program, there are three arguments:
|
|
8320 FIELD, BEG and END. BEG and END specify region to sort." t nil)
|
|
8321
|
|
8322 (autoload 'sort-regexp-fields "sort" "\
|
|
8323 Sort the region lexicographically as specified by RECORD-REGEXP and KEY.
|
|
8324 RECORD-REGEXP specifies the textual units which should be sorted.
|
|
8325 For example, to sort lines RECORD-REGEXP would be \"^.*$\"
|
|
8326 KEY specifies the part of each record (ie each match for RECORD-REGEXP)
|
|
8327 is to be used for sorting.
|
|
8328 If it is \"\\\\digit\" then the digit'th \"\\\\(...\\\\)\" match field from
|
|
8329 RECORD-REGEXP is used.
|
|
8330 If it is \"\\\\&\" then the whole record is used.
|
|
8331 Otherwise, it is a regular-expression for which to search within the record.
|
|
8332 If a match for KEY is not found within a record then that record is ignored.
|
|
8333
|
|
8334 With a negative prefix arg sorts in reverse order.
|
|
8335
|
|
8336 The variable `sort-fold-case' determines whether alphabetic case affects
|
|
8337 the sort order.
|
|
8338
|
|
8339 For example: to sort lines in the region by the first word on each line
|
|
8340 starting with the letter \"f\",
|
|
8341 RECORD-REGEXP would be \"^.*$\" and KEY would be \"\\\\=\\<f\\\\w*\\\\>\"" t nil)
|
|
8342
|
|
8343 (autoload 'sort-columns "sort" "\
|
|
8344 Sort lines in region alphabetically by a certain range of columns.
|
|
8345 For the purpose of this command, the region includes
|
|
8346 the entire line that point is in and the entire line the mark is in.
|
|
8347 The column positions of point and mark bound the range of columns to sort on.
|
|
8348 A prefix argument means sort into reverse order.
|
|
8349 The variable `sort-fold-case' determines whether alphabetic case affects
|
|
8350 the sort order.
|
|
8351
|
|
8352 Note that `sort-columns' rejects text that contains tabs,
|
|
8353 because tabs could be split across the specified columns
|
|
8354 and it doesn't know how to handle that. Also, when possible,
|
|
8355 it uses the `sort' utility program, which doesn't understand tabs.
|
|
8356 Use \\[untabify] to convert tabs to spaces before sorting." t nil)
|
|
8357
|
|
8358 (autoload 'reverse-region "sort" "\
|
|
8359 Reverse the order of lines in a region.
|
|
8360 From a program takes two point or marker arguments, BEG and END." t nil)
|
|
8361
|
|
8362 ;;;***
|
|
8363
|
|
8364 ;;;### (autoloads (load-default-sounds load-sound-file) "sound" "prim/sound.el")
|
|
8365
|
|
8366 (or sound-alist (setq sound-alist '((ready nil) (warp nil))))
|
|
8367
|
|
8368 (autoload 'load-sound-file "sound" "\
|
|
8369 Read in an audio-file and add it to the sound-alist.
|
|
8370
|
98
|
8371 You can only play sound files if you are running on display 0 of the
|
|
8372 console of a machine with native sound support or running a NetAudio
|
|
8373 server and XEmacs has the necessary sound support compiled in.
|
|
8374
|
|
8375 The sound file must be in the Sun/NeXT U-LAW format." t nil)
|
78
|
8376
|
|
8377 (autoload 'load-default-sounds "sound" "\
|
|
8378 Load and install some sound files as beep-types.
|
|
8379 This only works if you're on display 0 of a Sun SparcStation, SGI machine,
|
|
8380 or HP9000s700, or running a NetAudio server." t nil)
|
|
8381
|
|
8382 ;;;***
|
|
8383
|
|
8384 ;;;### (autoloads (tabify untabify) "tabify" "prim/tabify.el")
|
|
8385
|
|
8386 (autoload 'untabify "tabify" "\
|
|
8387 Convert all tabs in region to multiple spaces, preserving columns.
|
|
8388 Called non-interactively, the region is specified by arguments
|
|
8389 START and END, rather than by the position of point and mark.
|
|
8390 The variable `tab-width' controls the spacing of tab stops." t nil)
|
|
8391
|
|
8392 (autoload 'tabify "tabify" "\
|
|
8393 Convert multiple spaces in region to tabs when possible.
|
|
8394 A group of spaces is partially replaced by tabs
|
|
8395 when this can be done without changing the column they end at.
|
|
8396 Called non-interactively, the region is specified by arguments
|
|
8397 START and END, rather than by the position of point and mark.
|
|
8398 The variable `tab-width' controls the spacing of tab stops." t nil)
|
|
8399
|
|
8400 ;;;***
|
|
8401
|
|
8402 ;;;### (autoloads (ask-user-about-supersession-threat ask-user-about-lock) "userlock" "prim/userlock.el")
|
|
8403
|
|
8404 (autoload 'ask-user-about-lock "userlock" "\
|
|
8405 Ask user what to do when he wants to edit FILE but it is locked by USER.
|
|
8406 This function has a choice of three things to do:
|
|
8407 do (signal 'file-locked (list FILE USER))
|
|
8408 to refrain from editing the file
|
|
8409 return t (grab the lock on the file)
|
|
8410 return nil (edit the file even though it is locked).
|
|
8411 You can rewrite it to use any criterion you like to choose which one to do." nil nil)
|
|
8412
|
|
8413 (autoload 'ask-user-about-supersession-threat "userlock" "\
|
|
8414 Ask a user who is about to modify an obsolete buffer what to do.
|
|
8415 This function has two choices: it can return, in which case the modification
|
|
8416 of the buffer will proceed, or it can (signal 'file-supersession (file)),
|
|
8417 in which case the proposed buffer modification will not be made.
|
|
8418
|
|
8419 You can rewrite this to use any criterion you like to choose which one to do.
|
|
8420 The buffer in question is current when this function is called." nil nil)
|
|
8421
|
|
8422 ;;;***
|
|
8423
|
|
8424 ;;;### (autoloads (style-format) "psgml-fs" "psgml/psgml-fs.el")
|
|
8425
|
|
8426 (autoload 'style-format "psgml-fs" nil t nil)
|
|
8427
|
|
8428 ;;;***
|
|
8429
|
|
8430 ;;;### (autoloads nil "psgml-html" "psgml/psgml-html.el")
|
|
8431
|
|
8432 (autoload 'html-mode "psgml-html" "\
|
|
8433 HTML mode." t)
|
|
8434
|
|
8435 (autoload 'html3-mode "psgml-html" "\
|
|
8436 HTML3 mode." t)
|
|
8437
|
|
8438 ;;;***
|
|
8439
|
|
8440 ;;;### (autoloads (sgml-mode) "psgml" "psgml/psgml.el")
|
|
8441
|
|
8442 (autoload 'sgml-mode "psgml" "\
|
|
8443 Major mode for editing SGML.\\<sgml-mode-map>
|
|
8444 Makes > display the matching <. Makes / display matching /.
|
|
8445 Use \\[sgml-validate] to validate your document with an SGML parser.
|
|
8446
|
|
8447 You can find information with:
|
|
8448 \\[sgml-show-context] Show the nesting of elements at cursor position.
|
|
8449 \\[sgml-list-valid-tags] Show the tags valid at cursor position.
|
|
8450
|
|
8451 Insert tags with completion of contextually valid tags with \\[sgml-insert-tag].
|
|
8452 End the current element with \\[sgml-insert-end-tag]. Insert an element (i.e.
|
|
8453 both start and end tag) with \\[sgml-insert-element]. Or tag a region with
|
|
8454 \\[sgml-tag-region].
|
|
8455
|
|
8456 To tag a region with the mouse, use transient mark mode or secondary selection.
|
|
8457
|
|
8458 Structure editing:
|
|
8459 \\[sgml-backward-element] Moves backwards over the previous element.
|
108
|
8460 \\[sgml-forward-element] Moves forward over the next element.
|
78
|
8461 \\[sgml-down-element] Move forward and down one level in the element structure.
|
|
8462 \\[sgml-backward-up-element] Move backward out of this element level.
|
|
8463 \\[sgml-beginning-of-element] Move to after the start tag of the current element.
|
|
8464 \\[sgml-end-of-element] Move to before the end tag of the current element.
|
|
8465 \\[sgml-kill-element] Kill the element following the cursor.
|
|
8466
|
|
8467 Finding interesting positions
|
|
8468 \\[sgml-next-data-field] Move forward to next point where data is allowed.
|
|
8469 \\[sgml-next-trouble-spot] Move forward to next point where something is
|
|
8470 amiss with the structure.
|
|
8471
|
|
8472 Folding and unfolding
|
|
8473 \\[sgml-fold-element] Fold the lines comprising the current element, leaving
|
|
8474 the first line visible.
|
|
8475 \\[sgml-fold-subelement] Fold the elements in the content of the current element.
|
|
8476 Leaving the first line of every element visible.
|
|
8477 \\[sgml-unfold-line] Show hidden lines in current line.
|
|
8478
|
|
8479 User options:
|
|
8480
|
|
8481 sgml-omittag Set this to reflect OMITTAG in the SGML declaration.
|
|
8482 sgml-shortag Set this to reflect SHORTTAG in the SGML declaration.
|
|
8483 sgml-auto-insert-required-elements If non-nil, automatically insert required
|
|
8484 elements in the content of an inserted element.
|
|
8485 sgml-balanced-tag-edit If non-nil, always insert start-end tag pairs.
|
|
8486 sgml-omittag-transparent If non-nil, will show legal tags inside elements
|
|
8487 with omitable start tags and legal tags beyond omitable end tags.
|
|
8488 sgml-leave-point-after-insert If non-nil, the point will remain after
|
|
8489 inserted tag(s).
|
|
8490 sgml-warn-about-undefined-elements If non-nil, print a warning when a tag
|
|
8491 for a undefined element is found.
|
|
8492 sgml-max-menu-size Max number of entries in Tags and Entities menus before
|
|
8493 they are split into several panes.
|
|
8494 sgml-always-quote-attributes If non-nil, quote all attribute values
|
|
8495 inserted after finishing edit attributes.
|
|
8496 sgml-minimize-attributes Determines minimization of attributes inserted by
|
|
8497 edit-attributes.
|
|
8498 sgml-normalize-trims If non-nil, sgml-normalize will trim off white space
|
|
8499 from end of element when adding end tag.
|
|
8500 sgml-indent-step How much to increament indent for every element level.
|
|
8501 sgml-indent-data If non-nil, indent in data/mixed context also.
|
|
8502 sgml-set-face If non-nil, psgml will set the face of parsed markup.
|
|
8503 sgml-markup-faces The faces used when the above variable is non-nil.
|
108
|
8504 sgml-system-path List of directories used to look for system identifiers.
|
78
|
8505 sgml-public-map Mapping from public identifiers to file names.
|
|
8506 sgml-offer-save If non-nil, ask about saving modified buffers before
|
|
8507 \\[sgml-validate] is run.
|
|
8508
|
|
8509 All bindings:
|
|
8510 \\{sgml-mode-map}
|
|
8511 " t nil)
|
|
8512
|
|
8513 ;;;***
|
|
8514
|
|
8515 ;;;### (autoloads (rmail-input rmail-mode rmail) "rmail" "rmail/rmail.el")
|
|
8516
|
|
8517 (defvar rmail-dont-reply-to-names nil "\
|
|
8518 *A regexp specifying names to prune of reply to messages.
|
|
8519 A value of nil means exclude your own name only.")
|
|
8520
|
|
8521 (defvar rmail-default-dont-reply-to-names "info-" "\
|
|
8522 A regular expression specifying part of the value of the default value of
|
|
8523 the variable `rmail-dont-reply-to-names', for when the user does not set
|
|
8524 `rmail-dont-reply-to-names' explicitly. (The other part of the default
|
|
8525 value is the user's name.)
|
|
8526 It is useful to set this variable in the site customization file.")
|
|
8527
|
|
8528 (defvar rmail-delete-after-output nil "\
|
|
8529 *Non-nil means automatically delete a message that is copied to a file.")
|
|
8530
|
|
8531 (defvar rmail-primary-inbox-list nil "\
|
|
8532 *List of files which are inboxes for user's primary mail file `~/RMAIL'.
|
|
8533 `nil' means the default, which is (\"/usr/spool/mail/$USER\")
|
|
8534 \(the name varies depending on the operating system,
|
|
8535 and the value of the environment variable MAIL overrides it).")
|
|
8536
|
|
8537 (defvar rmail-mail-new-frame nil "\
|
|
8538 *Non-nil means Rmail makes a new frame for composing outgoing mail.")
|
|
8539
|
|
8540 (defvar rmail-retry-setup-hook nil "\
|
|
8541 Hook that `rmail-retry-failure' uses in place of `mail-setup-hook'.")
|
|
8542
|
|
8543 (defvar rmail-last-file nil)
|
|
8544
|
|
8545 (autoload 'rmail "rmail" "\
|
|
8546 Read and edit incoming mail.
|
|
8547 Moves messages into file named by `rmail-file-name' (a babyl format file)
|
|
8548 and edits that file in RMAIL Mode.
|
|
8549 Type \\[describe-mode] once editing that file, for a list of RMAIL commands.
|
|
8550
|
|
8551 May be called with filename as argument; then performs rmail editing on
|
|
8552 that file, but does not copy any new mail into the file." t nil)
|
|
8553
|
|
8554 (autoload 'rmail-mode "rmail" "\
|
|
8555 Rmail Mode is used by \\<rmail-mode-map>\\[rmail] for editing Rmail files.
|
|
8556 All normal editing commands are turned off.
|
|
8557 Instead, these commands are available:
|
|
8558
|
|
8559 \\[rmail-beginning-of-message] Move point to front of this message (same as \\[beginning-of-buffer]).
|
|
8560 \\[scroll-up] Scroll to next screen of this message.
|
|
8561 \\[scroll-down] Scroll to previous screen of this message.
|
|
8562 \\[rmail-next-undeleted-message] Move to Next non-deleted message.
|
|
8563 \\[rmail-previous-undeleted-message] Move to Previous non-deleted message.
|
|
8564 \\[rmail-next-message] Move to Next message whether deleted or not.
|
|
8565 \\[rmail-previous-message] Move to Previous message whether deleted or not.
|
|
8566 \\[rmail-first-message] Move to the first message in Rmail file.
|
|
8567 \\[rmail-last-message] Move to the last message in Rmail file.
|
|
8568 \\[rmail-show-message] Jump to message specified by numeric position in file.
|
|
8569 \\[rmail-search] Search for string and show message it is found in.
|
|
8570 \\[rmail-delete-forward] Delete this message, move to next nondeleted.
|
|
8571 \\[rmail-delete-backward] Delete this message, move to previous nondeleted.
|
|
8572 \\[rmail-undelete-previous-message] Undelete message. Tries current message, then earlier messages
|
|
8573 till a deleted message is found.
|
|
8574 \\[rmail-edit-current-message] Edit the current message. \\[rmail-cease-edit] to return to Rmail.
|
|
8575 \\[rmail-expunge] Expunge deleted messages.
|
|
8576 \\[rmail-expunge-and-save] Expunge and save the file.
|
|
8577 \\[rmail-quit] Quit Rmail: expunge, save, then switch to another buffer.
|
|
8578 \\[save-buffer] Save without expunging.
|
|
8579 \\[rmail-get-new-mail] Move new mail from system spool directory into this file.
|
|
8580 \\[rmail-mail] Mail a message (same as \\[mail-other-window]).
|
|
8581 \\[rmail-continue] Continue composing outgoing message started before.
|
|
8582 \\[rmail-reply] Reply to this message. Like \\[rmail-mail] but initializes some fields.
|
|
8583 \\[rmail-retry-failure] Send this message again. Used on a mailer failure message.
|
|
8584 \\[rmail-forward] Forward this message to another user.
|
|
8585 \\[rmail-output-to-rmail-file] Output this message to an Rmail file (append it).
|
|
8586 \\[rmail-output] Output this message to a Unix-format mail file (append it).
|
|
8587 \\[rmail-input] Input Rmail file. Run Rmail on that file.
|
|
8588 \\[rmail-add-label] Add label to message. It will be displayed in the mode line.
|
|
8589 \\[rmail-kill-label] Kill label. Remove a label from current message.
|
|
8590 \\[rmail-next-labeled-message] Move to Next message with specified label
|
|
8591 (label defaults to last one specified).
|
|
8592 Standard labels: filed, unseen, answered, forwarded, deleted.
|
|
8593 Any other label is present only if you add it with \\[rmail-add-label].
|
|
8594 \\[rmail-previous-labeled-message] Move to Previous message with specified label
|
|
8595 \\[rmail-summary] Show headers buffer, with a one line summary of each message.
|
|
8596 \\[rmail-summary-by-labels] Summarize only messages with particular label(s).
|
|
8597 \\[rmail-summary-by-recipients] Summarize only messages with particular recipient(s).
|
|
8598 \\[rmail-summary-by-regexp] Summarize only messages with particular regexp(s).
|
|
8599 \\[rmail-summary-by-topic] Summarize only messages with subject line regexp(s).
|
|
8600 \\[rmail-toggle-header] Toggle display of complete header." t nil)
|
|
8601
|
|
8602 (autoload 'rmail-input "rmail" "\
|
|
8603 Run Rmail on file FILENAME." t nil)
|
|
8604
|
|
8605 ;;;***
|
|
8606
|
|
8607 ;;;### (autoloads (rmail-file-p) "rmailout" "rmail/rmailout.el")
|
|
8608
|
|
8609 (autoload 'rmail-file-p "rmailout" nil nil nil)
|
|
8610
|
|
8611 ;;;***
|
|
8612
|
|
8613 ;;;### (autoloads (unrmail batch-unrmail) "unrmail" "rmail/unrmail.el")
|
|
8614
|
|
8615 (autoload 'batch-unrmail "unrmail" "\
|
|
8616 Convert Rmail files to mailbox files.
|
|
8617 Specify the input Rmail file names as command line arguments.
|
|
8618 For each Rmail file, the corresponding output file name
|
|
8619 is made by adding `.mail' at the end.
|
|
8620 For example, invoke `emacs -batch -f batch-unrmail RMAIL'." nil nil)
|
|
8621
|
|
8622 (autoload 'unrmail "unrmail" "\
|
|
8623 Convert Rmail file FILE to mailbox-format file TO-FILE." t nil)
|
|
8624
|
|
8625 ;;;***
|
|
8626
|
|
8627 ;;;### (autoloads (mime/editor-mode) "tm-edit" "tm/tm-edit.el")
|
|
8628
|
|
8629 (autoload 'mime/editor-mode "tm-edit" "\
|
|
8630 MIME minor mode for editing the tagged MIME message.
|
|
8631
|
|
8632 In this mode, basically, the message is composed in the tagged MIME
|
|
8633 format. The message tag looks like:
|
|
8634
|
|
8635 --[[text/plain; charset=ISO-2022-JP][7bit]]
|
|
8636
|
|
8637 The tag specifies the MIME content type, subtype, optional parameters
|
|
8638 and transfer encoding of the message following the tag. Messages
|
|
8639 without any tag are treated as `text/plain' by default. Charset and
|
|
8640 transfer encoding are automatically defined unless explicitly
|
|
8641 specified. Binary messages such as audio and image are usually hidden.
|
|
8642 The messages in the tagged MIME format are automatically translated
|
|
8643 into a MIME compliant message when exiting this mode.
|
|
8644
|
|
8645 Available charsets depend on Emacs version being used. The following
|
|
8646 lists the available charsets of each emacs.
|
|
8647
|
|
8648 EMACS 18: US-ASCII is only available.
|
|
8649 NEmacs: US-ASCII and ISO-2022-JP are available.
|
|
8650 EMACS 19: US-ASCII and ISO-8859-1 (or other charset) are available.
|
|
8651 XEmacs 19: US-ASCII and ISO-8859-1 (or other charset) are available.
|
|
8652 Mule: US-ASCII, ISO-8859-* (except for ISO-8859-5), KOI8-R,
|
|
8653 ISO-2022-JP, ISO-2022-JP-2, ISO-2022-KR, BIG5 and
|
|
8654 ISO-2022-INT-1 are available.
|
|
8655
|
|
8656 ISO-2022-JP-2 and ISO-2022-INT-1 charsets used in mule is expected to
|
|
8657 be used to represent multilingual text in intermixed manner. Any
|
|
8658 languages that has no registered charset are represented as either
|
|
8659 ISO-2022-JP-2 or ISO-2022-INT-1 in mule.
|
|
8660
|
|
8661 If you want to use non-ISO-8859-1 charset in EMACS 19 or XEmacs 19,
|
|
8662 please set variable `default-mime-charset'. This variable must be
|
|
8663 symbol of which name is a MIME charset.
|
|
8664
|
|
8665 If you want to add more charsets in mule, please set variable
|
|
8666 `charsets-mime-charset-alist'. This variable must be alist of which
|
|
8667 key is list of leading-char/charset and value is symbol of MIME
|
|
8668 charset. (leading-char is a term of MULE 1.* and 2.*. charset is a
|
|
8669 term of XEmacs/mule, mule merged EMACS and MULE 3.*) If name of
|
|
8670 coding-system is different as MIME charset, please set variable
|
|
8671 `mime-charset-coding-system-alist'. This variable must be alist of
|
|
8672 which key is MIME charset and value is coding-system.
|
|
8673
|
|
8674 Following commands are available in addition to major mode commands:
|
|
8675
|
|
8676 [make single part]
|
|
8677 \\[mime-editor/insert-text] insert a text message.
|
|
8678 \\[mime-editor/insert-file] insert a (binary) file.
|
|
8679 \\[mime-editor/insert-external] insert a reference to external body.
|
|
8680 \\[mime-editor/insert-voice] insert a voice message.
|
|
8681 \\[mime-editor/insert-message] insert a mail or news message.
|
|
8682 \\[mime-editor/insert-mail] insert a mail message.
|
|
8683 \\[mime-editor/insert-signature] insert a signature file at end.
|
|
8684 \\[mime-editor/insert-key] insert PGP public key.
|
|
8685 \\[mime-editor/insert-tag] insert a new MIME tag.
|
|
8686
|
|
8687 [make enclosure (maybe multipart)]
|
|
8688 \\[mime-editor/enclose-alternative-region] enclose as multipart/alternative.
|
|
8689 \\[mime-editor/enclose-parallel-region] enclose as multipart/parallel.
|
|
8690 \\[mime-editor/enclose-mixed-region] enclose as multipart/mixed.
|
|
8691 \\[mime-editor/enclose-digest-region] enclose as multipart/digest.
|
|
8692 \\[mime-editor/enclose-signed-region] enclose as PGP signed.
|
|
8693 \\[mime-editor/enclose-encrypted-region] enclose as PGP encrypted.
|
|
8694 \\[mime-editor/enclose-quote-region] enclose as verbose mode (to avoid to expand tags)
|
|
8695
|
|
8696 [other commands]
|
|
8697 \\[mime-editor/set-transfer-level-7bit] set transfer-level as 7.
|
|
8698 \\[mime-editor/set-transfer-level-8bit] set transfer-level as 8.
|
|
8699 \\[mime-editor/set-split] set message splitting mode.
|
|
8700 \\[mime-editor/set-sign] set PGP-sign mode.
|
|
8701 \\[mime-editor/set-encrypt] set PGP-encryption mode.
|
|
8702 \\[mime-editor/preview-message] preview editing MIME message.
|
|
8703 \\[mime-editor/exit] exit and translate into a MIME compliant message.
|
|
8704 \\[mime-editor/help] show this help.
|
|
8705 \\[mime-editor/maybe-translate] exit and translate if in MIME mode, then split.
|
|
8706
|
|
8707 Additional commands are available in some major modes:
|
|
8708 C-c C-c exit, translate and run the original command.
|
|
8709 C-c C-s exit, translate and run the original command.
|
|
8710
|
|
8711 The following is a message example written in the tagged MIME format.
|
|
8712 TABs at the beginning of the line are not a part of the message:
|
|
8713
|
|
8714 This is a conventional plain text. It should be translated
|
|
8715 into text/plain.
|
|
8716 --[[text/plain]]
|
|
8717 This is also a plain text. But, it is explicitly specified as
|
|
8718 is.
|
86
|
8719 --[[text/plain; charset=ISO-8859-1]]
|
|
8720 This is also a plain text. But charset is specified as
|
|
8721 iso-8859-1.
|
|
8722
|
|
8723 ¡Hola! Buenos días. ¿Cómo está usted?
|
|
8724 --[[text/enriched]]
|
|
8725 This is a <bold>enriched text</bold>.
|
|
8726 --[[image/gif][base64]]...image encoded in base64 here...
|
|
8727 --[[audio/basic][base64]]...audio encoded in base64 here...
|
78
|
8728
|
|
8729 User customizable variables (not documented all of them):
|
|
8730 mime-prefix
|
|
8731 Specifies a key prefix for MIME minor mode commands.
|
|
8732
|
|
8733 mime-ignore-preceding-spaces
|
|
8734 Preceding white spaces in a message body are ignored if non-nil.
|
|
8735
|
|
8736 mime-ignore-trailing-spaces
|
|
8737 Trailing white spaces in a message body are ignored if non-nil.
|
|
8738
|
|
8739 mime-auto-hide-body
|
|
8740 Hide a non-textual body message encoded in base64 after insertion
|
|
8741 if non-nil.
|
|
8742
|
|
8743 mime-editor/transfer-level
|
|
8744 A number of network transfer level. It should be bigger than 7.
|
|
8745 If you are in 8bit-through environment, please set 8.
|
|
8746
|
|
8747 mime-editor/voice-recorder
|
|
8748 Specifies a function to record a voice message and encode it.
|
|
8749 The function `mime-editor/voice-recorder-for-sun' is for Sun
|
|
8750 SparcStations.
|
|
8751
|
|
8752 mime/editor-mode-hook
|
|
8753 Turning on MIME mode calls the value of mime/editor-mode-hook, if
|
|
8754 it is non-nil.
|
|
8755
|
|
8756 mime-editor/translate-hook
|
|
8757 The value of mime-editor/translate-hook is called just before translating
|
|
8758 the tagged MIME format into a MIME compliant message if it is
|
|
8759 non-nil. If the hook call the function mime-editor/insert-signature,
|
|
8760 the signature file will be inserted automatically.
|
|
8761
|
|
8762 mime-editor/exit-hook
|
|
8763 Turning off MIME mode calls the value of mime-editor/exit-hook, if it is
|
|
8764 non-nil." t nil)
|
|
8765
|
|
8766 (defalias 'edit-mime 'mime/editor-mode)
|
|
8767
|
|
8768 ;;;***
|
|
8769
|
|
8770 ;;;### (autoloads (defadvice ad-add-advice) "advice" "utils/advice.el")
|
|
8771
|
|
8772 (defvar ad-redefinition-action 'warn "\
|
|
8773 *Defines what to do with redefinitions during Advice de/activation.
|
|
8774 Redefinition occurs if a previously activated function that already has an
|
|
8775 original definition associated with it gets redefined and then de/activated.
|
|
8776 In such a case we can either accept the current definition as the new
|
|
8777 original definition, discard the current definition and replace it with the
|
|
8778 old original, or keep it and raise an error. The values `accept', `discard',
|
|
8779 `error' or `warn' govern what will be done. `warn' is just like `accept' but
|
|
8780 it additionally prints a warning message. All other values will be
|
|
8781 interpreted as `error'.")
|
|
8782
|
|
8783 (defvar ad-default-compilation-action 'maybe "\
|
|
8784 *Defines whether to compile advised definitions during activation.
|
|
8785 A value of `always' will result in unconditional compilation, `never' will
|
|
8786 always avoid compilation, `maybe' will compile if the byte-compiler is already
|
|
8787 loaded, and `like-original' will compile if the original definition of the
|
|
8788 advised function is compiled or a built-in function. Every other value will
|
|
8789 be interpreted as `maybe'. This variable will only be considered if the
|
|
8790 COMPILE argument of `ad-activate' was supplied as nil.")
|
|
8791
|
|
8792 (autoload 'ad-add-advice "advice" "\
|
|
8793 Adds a piece of ADVICE to FUNCTION's list of advices in CLASS.
|
|
8794 If FUNCTION already has one or more pieces of advice of the specified
|
|
8795 CLASS then POSITION determines where the new piece will go. The value
|
|
8796 of POSITION can either be `first', `last' or a number where 0 corresponds
|
|
8797 to `first'. Numbers outside the range will be mapped to the closest
|
|
8798 extreme position. If there was already a piece of ADVICE with the same
|
|
8799 name, then the position argument will be ignored and the old advice
|
|
8800 will be overwritten with the new one.
|
|
8801 If the FUNCTION was not advised already, then its advice info will be
|
|
8802 initialized. Redefining a piece of advice whose name is part of the cache-id
|
|
8803 will clear the cache." nil nil)
|
|
8804
|
|
8805 (autoload 'defadvice "advice" "\
|
|
8806 Defines a piece of advice for FUNCTION (a symbol).
|
|
8807 The syntax of `defadvice' is as follows:
|
|
8808
|
|
8809 (defadvice FUNCTION (CLASS NAME [POSITION] [ARGLIST] FLAG...)
|
|
8810 [DOCSTRING] [INTERACTIVE-FORM]
|
|
8811 BODY... )
|
|
8812
|
|
8813 FUNCTION ::= Name of the function to be advised.
|
|
8814 CLASS ::= `before' | `around' | `after' | `activation' | `deactivation'.
|
|
8815 NAME ::= Non-nil symbol that names this piece of advice.
|
|
8816 POSITION ::= `first' | `last' | NUMBER. Optional, defaults to `first',
|
|
8817 see also `ad-add-advice'.
|
|
8818 ARGLIST ::= An optional argument list to be used for the advised function
|
|
8819 instead of the argument list of the original. The first one found in
|
|
8820 before/around/after-advices will be used.
|
|
8821 FLAG ::= `protect'|`disable'|`activate'|`compile'|`preactivate'|`freeze'.
|
|
8822 All flags can be specified with unambiguous initial substrings.
|
|
8823 DOCSTRING ::= Optional documentation for this piece of advice.
|
|
8824 INTERACTIVE-FORM ::= Optional interactive form to be used for the advised
|
|
8825 function. The first one found in before/around/after-advices will be used.
|
|
8826 BODY ::= Any s-expression.
|
|
8827
|
|
8828 Semantics of the various flags:
|
|
8829 `protect': The piece of advice will be protected against non-local exits in
|
|
8830 any code that precedes it. If any around-advice of a function is protected
|
|
8831 then automatically all around-advices will be protected (the complete onion).
|
|
8832
|
|
8833 `activate': All advice of FUNCTION will be activated immediately if
|
|
8834 FUNCTION has been properly defined prior to this application of `defadvice'.
|
|
8835
|
|
8836 `compile': In conjunction with `activate' specifies that the resulting
|
|
8837 advised function should be compiled.
|
|
8838
|
|
8839 `disable': The defined advice will be disabled, hence, it will not be used
|
|
8840 during activation until somebody enables it.
|
|
8841
|
|
8842 `preactivate': Preactivates the advised FUNCTION at macro-expansion/compile
|
|
8843 time. This generates a compiled advised definition according to the current
|
|
8844 advice state that will be used during activation if appropriate. Only use
|
|
8845 this if the `defadvice' gets actually compiled.
|
|
8846
|
|
8847 `freeze': Expands the `defadvice' into a redefining `defun/defmacro' according
|
|
8848 to this particular single advice. No other advice information will be saved.
|
|
8849 Frozen advices cannot be undone, they behave like a hard redefinition of
|
|
8850 the advised function. `freeze' implies `activate' and `preactivate'. The
|
|
8851 documentation of the advised function can be dumped onto the `DOC' file
|
|
8852 during preloading.
|
|
8853
|
|
8854 Look at the file `advice.el' for comprehensive documentation." nil 'macro)
|
|
8855
|
|
8856 ;;;***
|
|
8857
|
|
8858 ;;;### (autoloads (all-annotations annotation-list annotations-at annotations-in-region annotation-at annotationp delete-annotation make-annotation) "annotations" "utils/annotations.el")
|
|
8859
|
|
8860 (defvar make-annotation-hook nil "\
|
|
8861 *Function or functions to run immediately after creating an annotation.")
|
|
8862
|
|
8863 (defvar before-delete-annotation-hook nil "\
|
|
8864 *Function or functions to run immediately before deleting an annotation.")
|
|
8865
|
|
8866 (defvar after-delete-annotation-hook nil "\
|
|
8867 *Function or functions to run immediately after deleting an annotation.")
|
|
8868
|
|
8869 (autoload 'make-annotation "annotations" "\
|
|
8870 Create a marginal annotation, displayed using GLYPH, at position POS.
|
|
8871 GLYPH may be either a glyph object or a string. Use layout policy
|
|
8872 LAYOUT and place the annotation in buffer BUFFER. If POS is nil, point is
|
|
8873 used. If LAYOUT is nil, `whitespace' is used. If BUFFER is nil, the
|
|
8874 current buffer is used. If WITH-EVENT is non-nil, then when an annotation
|
|
8875 is activated, the triggering event is passed as the second arg to the
|
|
8876 annotation function. If D-GLYPH is non-nil then it is used as the glyph
|
|
8877 that will be displayed when button1 is down. If RIGHTP is non-nil then
|
|
8878 the glyph will be displayed on the right side of the buffer instead of the
|
|
8879 left." nil nil)
|
|
8880
|
|
8881 (autoload 'delete-annotation "annotations" "\
|
|
8882 Remove ANNOTATION from its buffer. This does not modify the buffer text." nil nil)
|
|
8883
|
|
8884 (autoload 'annotationp "annotations" "\
|
|
8885 T if OBJECT is an annotation." nil nil)
|
|
8886
|
|
8887 (autoload 'annotation-at "annotations" "\
|
|
8888 Return the first annotation at POS in BUFFER.
|
|
8889 BUFFER defaults to the current buffer. POS defaults to point in BUFFER." nil nil)
|
|
8890
|
|
8891 (autoload 'annotations-in-region "annotations" "\
|
|
8892 Return all annotations in BUFFER between START and END inclusively." nil nil)
|
|
8893
|
|
8894 (autoload 'annotations-at "annotations" "\
|
|
8895 Return a list of all annotations at POS in BUFFER.
|
|
8896 If BUFFER is nil, the current buffer is used. If POS is nil, point is used." nil nil)
|
|
8897
|
|
8898 (autoload 'annotation-list "annotations" "\
|
|
8899 Return a list of all annotations in BUFFER.
|
|
8900 If BUFFER is nil, the current buffer is used." nil nil)
|
|
8901
|
|
8902 (autoload 'all-annotations "annotations" "\
|
|
8903 Return a list of all annotations in existence." nil nil)
|
|
8904
|
|
8905 ;;;***
|
|
8906
|
|
8907 ;;;### (autoloads (batch-update-autoloads update-autoloads-from-directory update-autoloads-here update-file-autoloads generate-file-autoloads) "autoload" "utils/autoload.el")
|
|
8908
|
|
8909 (autoload 'generate-file-autoloads "autoload" "\
|
|
8910 Insert at point a loaddefs autoload section for FILE.
|
|
8911 autoloads are generated for defuns and defmacros in FILE
|
|
8912 marked by `generate-autoload-cookie' (which see).
|
|
8913 If FILE is being visited in a buffer, the contents of the buffer
|
|
8914 are used." t nil)
|
|
8915
|
|
8916 (autoload 'update-file-autoloads "autoload" "\
|
|
8917 Update the autoloads for FILE in `generated-autoload-file'
|
|
8918 \(which FILE might bind in its local variables)." t nil)
|
|
8919
|
|
8920 (autoload 'update-autoloads-here "autoload" "\
|
|
8921 Update sections of the current buffer generated by `update-file-autoloads'." t nil)
|
|
8922
|
|
8923 (autoload 'update-autoloads-from-directory "autoload" "\
|
|
8924 Update `generated-autoload-file' with all the current autoloads from DIR.
|
|
8925 This runs `update-file-autoloads' on each .el file in DIR.
|
|
8926 Obsolete autoload entries for files that no longer exist are deleted." t nil)
|
|
8927
|
|
8928 (autoload 'batch-update-autoloads "autoload" "\
|
|
8929 Update the autoloads for the files or directories on the command line.
|
|
8930 Runs `update-file-autoloads' on files and `update-directory-autoloads'
|
|
8931 on directories. Must be used only with -batch, and kills Emacs on completion.
|
|
8932 Each file will be processed even if an error occurred previously.
|
|
8933 For example, invoke `xemacs -batch -f batch-update-autoloads *.el'." nil nil)
|
|
8934
|
|
8935 ;;;***
|
|
8936
|
|
8937 ;;;### (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")
|
|
8938
|
|
8939 (defvar browse-url-browser-function 'browse-url-w3 "\
|
|
8940 *Function to display the current buffer in a WWW browser.
|
|
8941 Used by the `browse-url-at-point', `browse-url-at-mouse', and
|
|
8942 `browse-url-of-file' commands.")
|
|
8943
|
|
8944 (autoload 'browse-url-netscape "browse-url" "\
|
|
8945 Ask the Netscape WWW browser to load URL.
|
|
8946
|
|
8947 Default to the URL around or before point. The strings in variable
|
|
8948 `browse-url-netscape-arguments' are also passed to Netscape.
|
|
8949
|
|
8950 When called interactively, if variable `browse-url-new-window-p' is
|
|
8951 non-nil, load the document in a new Netscape window, otherwise use a
|
|
8952 random existing one. A non-nil interactive prefix argument reverses
|
|
8953 the effect of browse-url-new-window-p.
|
|
8954
|
|
8955 When called non-interactively, optional second argument NEW-WINDOW is
|
|
8956 used instead of browse-url-new-window-p." t nil)
|
|
8957
|
|
8958 (autoload 'browse-url-mosaic "browse-url" "\
|
|
8959 Ask the XMosaic WWW browser to load URL.
|
|
8960 Default to the URL around or before point." t nil)
|
|
8961
|
|
8962 (autoload 'browse-url-grail "browse-url" "\
|
|
8963 Ask the Grail WWW browser to load URL.
|
|
8964 Default to the URL around or before point. Runs the program in the
|
|
8965 variable `browse-url-grail'." t nil)
|
|
8966
|
|
8967 (autoload 'browse-url-iximosaic "browse-url" "\
|
|
8968 Ask the IXIMosaic WWW browser to load URL.
|
|
8969 Default to the URL around or before point." t nil)
|
|
8970
|
|
8971 (autoload 'browse-url-w3 "browse-url" "\
|
|
8972 Ask the w3 WWW browser to load URL.
|
|
8973 Default to the URL around or before point." t nil)
|
|
8974
|
|
8975 (autoload 'browse-url-lynx-xterm "browse-url" "\
|
|
8976 Ask the Lynx WWW browser to load URL.
|
|
8977 Default to the URL around or before point. A new Lynx process is run
|
|
8978 in an Xterm window." t nil)
|
|
8979
|
|
8980 (autoload 'browse-url-lynx-emacs "browse-url" "\
|
|
8981 Ask the Lynx WWW browser to load URL.
|
|
8982 Default to the URL around or before point. Run a new Lynx process in
|
|
8983 an Emacs buffer." t nil)
|
|
8984
|
|
8985 ;;;***
|
|
8986
|
|
8987 ;;;### (autoloads (docref-setup) "docref" "utils/docref.el")
|
|
8988
|
|
8989 (autoload 'docref-setup "docref" "\
|
|
8990 Process docref cross-references in the current buffer.
|
|
8991 See also \\(f@docref-subst)." t nil)
|
|
8992
|
|
8993 ;;;***
|
|
8994
|
|
8995 ;;;### (autoloads (easy-menu-define) "easymenu" "utils/easymenu.el")
|
|
8996
|
|
8997 (autoload 'easy-menu-define "easymenu" "\
|
|
8998 Define a menu bar submenu in maps MAPS, according to MENU.
|
|
8999 The arguments SYMBOL and DOC are ignored; they are present for
|
|
9000 compatibility only. SYMBOL is not evaluated. In other Emacs versions
|
|
9001 these arguments may be used as a variable to hold the menu data, and a
|
|
9002 doc string for that variable.
|
|
9003
|
|
9004 The first element of MENU must be a string. It is the menu bar item name.
|
|
9005 The rest of the elements are menu items.
|
|
9006
|
|
9007 A menu item is usually a vector of three elements: [NAME CALLBACK ENABLE]
|
|
9008
|
|
9009 NAME is a string--the menu item name.
|
|
9010
|
|
9011 CALLBACK is a command to run when the item is chosen,
|
|
9012 or a list to evaluate when the item is chosen.
|
|
9013
|
|
9014 ENABLE is an expression; the item is enabled for selection
|
|
9015 whenever this expression's value is non-nil.
|
|
9016
|
|
9017 Alternatively, a menu item may have the form:
|
|
9018
|
|
9019 [ NAME CALLBACK [ KEYWORD ARG ] ... ]
|
|
9020
|
|
9021 Where KEYWORD is one of the symbol defined below.
|
|
9022
|
|
9023 :keys KEYS
|
|
9024
|
|
9025 KEYS is a string; a complex keyboard equivalent to this menu item.
|
|
9026
|
|
9027 :active ENABLE
|
|
9028
|
|
9029 ENABLE is an expression; the item is enabled for selection
|
|
9030 whenever this expression's value is non-nil.
|
|
9031
|
|
9032 :suffix NAME
|
|
9033
|
|
9034 NAME is a string; the name of an argument to CALLBACK.
|
|
9035
|
|
9036 :style STYLE
|
|
9037
|
|
9038 STYLE is a symbol describing the type of menu item. The following are
|
|
9039 defined:
|
|
9040
|
|
9041 toggle: A checkbox.
|
|
9042 Currently just prepend the name with the string \"Toggle \".
|
|
9043 radio: A radio button.
|
|
9044 nil: An ordinary menu item.
|
|
9045
|
|
9046 :selected SELECTED
|
|
9047
|
|
9048 SELECTED is an expression; the checkbox or radio button is selected
|
|
9049 whenever this expression's value is non-nil.
|
|
9050 Currently just disable radio buttons, no effect on checkboxes.
|
|
9051
|
|
9052 A menu item can be a string. Then that string appears in the menu as
|
|
9053 unselectable text. A string consisting solely of hyphens is displayed
|
|
9054 as a solid horizontal line.
|
|
9055
|
|
9056 A menu item can be a list. It is treated as a submenu.
|
|
9057 The first element should be the submenu name. That's used as the
|
|
9058 menu item in the top-level menu. The cdr of the submenu list
|
|
9059 is a list of menu items, as above." nil 'macro)
|
|
9060
|
|
9061 ;;;***
|
|
9062
|
118
|
9063 ;;;### (autoloads (insert-kbd-macro format-kbd-macro kbd read-kbd-macro edit-named-kbd-macro edit-last-kbd-macro edit-kbd-macro) "edmacro" "utils/edmacro.el")
|
98
|
9064
|
|
9065 (define-key ctl-x-map "\C-k" 'edit-kbd-macro)
|
|
9066
|
|
9067 (defvar edmacro-eight-bits nil "\
|
|
9068 *Non-nil if edit-kbd-macro should leave 8-bit characters intact.
|
|
9069 Default nil means to write characters above \\177 in octal notation.")
|
|
9070
|
|
9071 (autoload 'edit-kbd-macro "edmacro" "\
|
|
9072 Edit a keyboard macro.
|
|
9073 At the prompt, type any key sequence which is bound to a keyboard macro.
|
|
9074 Or, type `C-x e' or RET to edit the last keyboard macro, `C-h l' to edit
|
|
9075 the last 100 keystrokes as a keyboard macro, or `M-x' to edit a macro by
|
|
9076 its command name.
|
|
9077 With a prefix argument, format the macro in a more concise way." t nil)
|
|
9078
|
|
9079 (autoload 'edit-last-kbd-macro "edmacro" "\
|
|
9080 Edit the most recently defined keyboard macro." t nil)
|
|
9081
|
|
9082 (autoload 'edit-named-kbd-macro "edmacro" "\
|
|
9083 Edit a keyboard macro which has been given a name by `name-last-kbd-macro'." t nil)
|
|
9084
|
|
9085 (autoload 'read-kbd-macro "edmacro" "\
|
|
9086 Read the region as a keyboard macro definition.
|
|
9087 The region is interpreted as spelled-out keystrokes, e.g., \"M-x abc RET\".
|
|
9088 See documentation for `edmacro-mode' for details.
|
|
9089 Leading/trailing \"C-x (\" and \"C-x )\" in the text are allowed and ignored.
|
|
9090 The resulting macro is installed as the \"current\" keyboard macro.
|
|
9091
|
|
9092 In Lisp, may also be called with a single STRING argument in which case
|
|
9093 the result is returned rather than being installed as the current macro.
|
|
9094 The result will be a string if possible, otherwise an event vector.
|
|
9095 Second argument NEED-VECTOR means to return an event vector always." t nil)
|
|
9096
|
118
|
9097 (autoload 'kbd "edmacro" "\
|
|
9098 Convert KEYS to the internal Emacs key representation." nil 'macro)
|
|
9099
|
98
|
9100 (autoload 'format-kbd-macro "edmacro" "\
|
|
9101 Return the keyboard macro MACRO as a human-readable string.
|
|
9102 This string is suitable for passing to `read-kbd-macro'.
|
|
9103 Second argument VERBOSE means to put one command per line with comments.
|
|
9104 If VERBOSE is `1', put everything on one line. If VERBOSE is omitted
|
|
9105 or nil, use a compact 80-column format." nil nil)
|
|
9106
|
|
9107 (autoload 'insert-kbd-macro "edmacro" "\
|
|
9108 Insert in buffer the definition of kbd macro NAME, as Lisp code.
|
|
9109 Optional second arg KEYS means also record the keys it is on
|
|
9110 \(this is the prefix argument, when calling interactively).
|
|
9111
|
|
9112 This Lisp code will, when executed, define the kbd macro with the same
|
|
9113 definition it has now. If you say to record the keys, the Lisp code
|
|
9114 will also rebind those keys to the macro. Only global key bindings
|
|
9115 are recorded since executing this Lisp code always makes global
|
|
9116 bindings.
|
|
9117
|
|
9118 To save a kbd macro, visit a file of Lisp code such as your `~/.emacs',
|
|
9119 use this command, and then save the file." t nil)
|
|
9120
|
|
9121 ;;;***
|
|
9122
|
|
9123 ;;;### (autoloads (turn-on-eldoc-mode eldoc-mode) "eldoc" "utils/eldoc.el")
|
|
9124
|
|
9125 (defvar eldoc-mode nil "\
|
|
9126 *If non-nil, show the defined parameters for the elisp function near point.
|
|
9127
|
|
9128 For the emacs lisp function at the beginning of the sexp which point is
|
|
9129 within, show the defined parameters for the function in the echo area.
|
|
9130 This information is extracted directly from the function or macro if it is
|
|
9131 in pure lisp. If the emacs function is a subr, the parameters are obtained
|
|
9132 from the documentation string if possible.
|
|
9133
|
|
9134 If point is over a documented variable, print that variable's docstring
|
|
9135 instead.
|
|
9136
|
|
9137 This variable is buffer-local.")
|
|
9138
|
|
9139 (autoload 'eldoc-mode "eldoc" "\
|
|
9140 *Enable or disable eldoc mode.
|
|
9141 See documentation for the variable of the same name for more details.
|
|
9142
|
|
9143 If called interactively with no prefix argument, toggle current condition
|
|
9144 of the mode.
|
|
9145 If called with a positive or negative prefix argument, enable or disable
|
|
9146 the mode, respectively." t nil)
|
|
9147
|
|
9148 (autoload 'turn-on-eldoc-mode "eldoc" "\
|
|
9149 Unequivocally turn on eldoc-mode (see variable documentation)." t nil)
|
|
9150
|
|
9151 ;;;***
|
|
9152
|
78
|
9153 ;;;### (autoloads (elp-submit-bug-report elp-results elp-instrument-package elp-instrument-list elp-restore-function elp-instrument-function) "elp" "utils/elp.el")
|
|
9154
|
|
9155 (autoload 'elp-instrument-function "elp" "\
|
|
9156 Instrument FUNSYM for profiling.
|
|
9157 FUNSYM must be a symbol of a defined function." t nil)
|
|
9158
|
|
9159 (autoload 'elp-restore-function "elp" "\
|
|
9160 Restore an instrumented function to its original definition.
|
|
9161 Argument FUNSYM is the symbol of a defined function." t nil)
|
|
9162
|
|
9163 (autoload 'elp-instrument-list "elp" "\
|
|
9164 Instrument for profiling, all functions in `elp-function-list'.
|
|
9165 Use optional LIST if provided instead." t nil)
|
|
9166
|
|
9167 (autoload 'elp-instrument-package "elp" "\
|
|
9168 Instrument for profiling, all functions which start with PREFIX.
|
|
9169 For example, to instrument all ELP functions, do the following:
|
|
9170
|
|
9171 \\[elp-instrument-package] RET elp- RET" t nil)
|
|
9172
|
|
9173 (autoload 'elp-results "elp" "\
|
|
9174 Display current profiling results.
|
|
9175 If `elp-reset-after-results' is non-nil, then current profiling
|
|
9176 information for all instrumented functions are reset after results are
|
|
9177 displayed." t nil)
|
|
9178
|
|
9179 (autoload 'elp-submit-bug-report "elp" "\
|
|
9180 Submit via mail, a bug report on elp." t nil)
|
|
9181
|
|
9182 ;;;***
|
|
9183
|
|
9184 ;;;### (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")
|
|
9185
|
|
9186 (defvar facemenu-menu nil "\
|
|
9187 Facemenu top-level menu keymap.")
|
|
9188
|
|
9189 (defvar facemenu-keymap (let ((map (make-sparse-keymap "Set face"))) (define-key map ?o 'facemenu-set-face) map) "\
|
|
9190 Keymap for face-changing commands.
|
|
9191 `Facemenu-update' fills in the keymap according to the bindings
|
|
9192 requested in `facemenu-keybindings'.")
|
|
9193
|
|
9194 (autoload 'facemenu-set-face "facemenu" "\
|
|
9195 Add FACE to the region or next character typed.
|
|
9196 It will be added to the top of the face list; any faces lower on the list that
|
|
9197 will not show through at all will be removed.
|
|
9198
|
|
9199 Interactively, the face to be used is read with the minibuffer.
|
|
9200
|
|
9201 If the region is active and there is no prefix argument,
|
|
9202 this command sets the region to the requested face.
|
|
9203
|
|
9204 Otherwise, this command specifies the face for the next character
|
|
9205 inserted. Moving point or switching buffers before
|
|
9206 typing a character to insert cancels the specification." t nil)
|
|
9207
|
|
9208 (autoload 'facemenu-set-foreground "facemenu" "\
|
|
9209 Set the foreground color of the region or next character typed.
|
|
9210 The color is prompted for. A face named `fg:color' is used (or created).
|
|
9211 If the region is active, it will be set to the requested face. If
|
|
9212 it is inactive (even if mark-even-if-inactive is set) the next
|
|
9213 character that is typed (via `self-insert-command') will be set to
|
|
9214 the selected face. Moving point or switching buffers before
|
|
9215 typing a character cancels the request." t nil)
|
|
9216
|
|
9217 (autoload 'facemenu-set-background "facemenu" "\
|
|
9218 Set the background color of the region or next character typed.
|
|
9219 The color is prompted for. A face named `bg:color' is used (or created).
|
|
9220 If the region is active, it will be set to the requested face. If
|
|
9221 it is inactive (even if mark-even-if-inactive is set) the next
|
|
9222 character that is typed (via `self-insert-command') will be set to
|
|
9223 the selected face. Moving point or switching buffers before
|
|
9224 typing a character cancels the request." t nil)
|
|
9225
|
|
9226 (autoload 'facemenu-set-face-from-menu "facemenu" "\
|
|
9227 Set the face of the region or next character typed.
|
|
9228 This function is designed to be called from a menu; the face to use
|
|
9229 is the menu item's name.
|
|
9230
|
|
9231 If the region is active and there is no prefix argument,
|
|
9232 this command sets the region to the requested face.
|
|
9233
|
|
9234 Otherwise, this command specifies the face for the next character
|
|
9235 inserted. Moving point or switching buffers before
|
100
|
9236 typing a character to insert cancels the specification." t nil)
|
78
|
9237
|
|
9238 (autoload 'facemenu-set-size-default "facemenu" nil t nil)
|
|
9239
|
|
9240 (autoload 'facemenu-make-larger "facemenu" nil t nil)
|
|
9241
|
|
9242 (autoload 'facemenu-make-smaller "facemenu" nil t nil)
|
|
9243
|
|
9244 (autoload 'facemenu-make-much-larger "facemenu" nil t nil)
|
|
9245
|
|
9246 (autoload 'facemenu-make-much-smaller "facemenu" nil t nil)
|
|
9247
|
|
9248 (autoload 'facemenu-set-invisible "facemenu" "\
|
|
9249 Make the region invisible.
|
|
9250 This sets the `invisible' text property; it can be undone with
|
|
9251 `facemenu-remove-special'." t nil)
|
|
9252
|
|
9253 (autoload 'facemenu-set-intangible "facemenu" "\
|
|
9254 Make the region intangible: disallow moving into it.
|
|
9255 This sets the `intangible' text property; it can be undone with
|
|
9256 `facemenu-remove-special'." t nil)
|
|
9257
|
|
9258 (autoload 'facemenu-set-read-only "facemenu" "\
|
|
9259 Make the region unmodifiable.
|
|
9260 This sets the `read-only' text property; it can be undone with
|
|
9261 `facemenu-remove-special'." t nil)
|
|
9262
|
|
9263 (autoload 'facemenu-remove-props "facemenu" "\
|
|
9264 Remove all text properties that facemenu added to region." t nil)
|
|
9265
|
|
9266 (autoload 'facemenu-remove-special "facemenu" "\
|
|
9267 Remove all the \"special\" text properties from the region.
|
|
9268 These special properties include `invisible', `intangible' and `read-only'." t nil)
|
|
9269
|
|
9270 (autoload 'list-text-properties-at "facemenu" "\
|
|
9271 Pop up a buffer listing text-properties at LOCATION." t nil)
|
|
9272
|
|
9273 (autoload 'facemenu-read-color "facemenu" "\
|
|
9274 Read a color using the minibuffer." nil nil)
|
|
9275
|
|
9276 (autoload 'list-colors-display "facemenu" "\
|
|
9277 Display names of defined colors, and show what they look like.
|
|
9278 If the optional argument LIST is non-nil, it should be a list of
|
|
9279 colors to display. Otherwise, this command computes a list
|
|
9280 of colors that the current display can handle." t nil)
|
|
9281
|
|
9282 ;;;***
|
|
9283
|
98
|
9284 ;;;### (autoloads (floating-toolbar-from-extent-or-popup-mode-menu floating-toolbar-or-popup-mode-menu floating-toolbar) "floating-toolbar" "utils/floating-toolbar.el")
|
|
9285
|
|
9286 (autoload 'floating-toolbar "floating-toolbar" "\
|
|
9287 Popup a toolbar near the current mouse position.
|
|
9288 The toolbar instantiator used is taken from the 'floating-toolbar
|
|
9289 property of any extent under the mouse. If no such non-nil
|
|
9290 property exists for any extent under the mouse, then the value of the
|
|
9291 variable `floating-toolbar' is checked. If its value si nil, then
|
|
9292 no toolbar will be displayed.
|
|
9293
|
|
9294 This command should be bound to a button press event.
|
|
9295
|
|
9296 When called from a program, first arg EVENT should be the button
|
|
9297 press event. Optional second arg EXTENT-LOCAL-ONLY specifies
|
|
9298 that only extent local toolbars should be used; this means the
|
|
9299 `floating-toolbar' variable will not be consulted." t nil)
|
|
9300
|
|
9301 (autoload 'floating-toolbar-or-popup-mode-menu "floating-toolbar" "\
|
|
9302 Like floating-toolbar, but if no toolbar is displayed
|
|
9303 run popup-mode-menu." t nil)
|
|
9304
|
|
9305 (autoload 'floating-toolbar-from-extent-or-popup-mode-menu "floating-toolbar" "\
|
|
9306 Like floating-toolbar-or-popup-mode-menu, but search only for an
|
|
9307 extent local toolbar." t nil)
|
|
9308
|
|
9309 ;;;***
|
|
9310
|
78
|
9311 ;;;### (autoloads (enable-flow-control-on enable-flow-control) "flow-ctrl" "utils/flow-ctrl.el")
|
|
9312
|
|
9313 (autoload 'enable-flow-control "flow-ctrl" "\
|
|
9314 Toggle flow control handling.
|
|
9315 When handling is enabled, user can type C-s as C-\\, and C-q as C-^.
|
|
9316 With arg, enable flow control mode if arg is positive, otherwise disable." t nil)
|
|
9317
|
|
9318 (autoload 'enable-flow-control-on "flow-ctrl" "\
|
|
9319 Enable flow control if using one of a specified set of terminal types.
|
|
9320 Use `(enable-flow-control-on \"vt100\" \"h19\")' to enable flow control
|
|
9321 on VT-100 and H19 terminals. When flow control is enabled,
|
|
9322 you must type C-\\ to get the effect of a C-s, and type C-^
|
|
9323 to get the effect of a C-q.
|
|
9324
|
|
9325 This function has no effect unless the current device is a tty.
|
|
9326
|
|
9327 The tty terminal type is determined from the TERM environment variable.
|
|
9328 Trailing hyphens and everything following is stripped, so a TERM
|
|
9329 value of \"vt100-nam\" is treated the same as \"vt100\"." nil nil)
|
|
9330
|
|
9331 ;;;***
|
|
9332
|
|
9333 ;;;### (autoloads (forms-find-file-other-window forms-find-file forms-mode) "forms" "utils/forms.el")
|
|
9334
|
|
9335 (autoload 'forms-mode "forms" "\
|
|
9336 Major mode to visit files in a field-structured manner using a form.
|
|
9337
|
|
9338 Commands: Equivalent keys in read-only mode:
|
|
9339 TAB forms-next-field TAB
|
|
9340 \\C-c TAB forms-next-field
|
|
9341 \\C-c < forms-first-record <
|
|
9342 \\C-c > forms-last-record >
|
|
9343 \\C-c ? describe-mode ?
|
|
9344 \\C-c \\C-k forms-delete-record
|
|
9345 \\C-c \\C-q forms-toggle-read-only q
|
|
9346 \\C-c \\C-o forms-insert-record
|
|
9347 \\C-c \\C-l forms-jump-record l
|
|
9348 \\C-c \\C-n forms-next-record n
|
|
9349 \\C-c \\C-p forms-prev-record p
|
|
9350 \\C-c \\C-r forms-search-backward r
|
|
9351 \\C-c \\C-s forms-search-forward s
|
|
9352 \\C-c \\C-x forms-exit x
|
|
9353 " t nil)
|
|
9354
|
|
9355 (autoload 'forms-find-file "forms" "\
|
|
9356 Visit a file in Forms mode." t nil)
|
|
9357
|
|
9358 (autoload 'forms-find-file-other-window "forms" "\
|
|
9359 Visit a file in Forms mode in other window." t nil)
|
|
9360
|
|
9361 ;;;***
|
|
9362
|
|
9363 ;;;### (autoloads (highlight-headers-follow-url highlight-headers-follow-url-mosaic highlight-headers-follow-url-netscape highlight-headers) "highlight-headers" "utils/highlight-headers.el")
|
|
9364
|
|
9365 (autoload 'highlight-headers "highlight-headers" "\
|
|
9366 Highlight message headers between start and end.
|
|
9367 Faces used:
|
|
9368 message-headers the part before the colon
|
|
9369 message-header-contents the part after the colon
|
|
9370 message-highlighted-header-contents contents of \"special\" headers
|
|
9371 message-cited-text quoted text from other messages
|
|
9372
|
|
9373 Variables used:
|
|
9374
|
|
9375 highlight-headers-regexp what makes a \"special\" header
|
|
9376 highlight-headers-citation-regexp matches lines of quoted text
|
|
9377 highlight-headers-citation-header-regexp matches headers for quoted text
|
|
9378
|
|
9379 If HACK-SIG is true,then we search backward from END for something that
|
|
9380 looks like the beginning of a signature block, and don't consider that a
|
|
9381 part of the message (this is because signatures are often incorrectly
|
|
9382 interpreted as cited text.)" nil nil)
|
|
9383
|
|
9384 (autoload 'highlight-headers-follow-url-netscape "highlight-headers" nil nil nil)
|
|
9385
|
|
9386 (autoload 'highlight-headers-follow-url-mosaic "highlight-headers" nil nil nil)
|
|
9387
|
|
9388 (autoload 'highlight-headers-follow-url "highlight-headers" nil t nil)
|
|
9389
|
|
9390 ;;;***
|
|
9391
|
|
9392 ;;;### (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")
|
|
9393
|
|
9394 (autoload 'id-select-thing "id-select" "\
|
|
9395 Mark the region selected by the syntax of the thing at point.
|
|
9396 If invoked repeatedly, selects bigger and bigger things.
|
|
9397 If `id-select-display-type' is non-nil, the type of selection is displayed in
|
|
9398 the minibuffer." t nil)
|
|
9399
|
|
9400 (autoload 'id-select-thing-with-mouse "id-select" "\
|
|
9401 Select a region based on the syntax of the character from a mouse click.
|
|
9402 If the click occurs at the same point as the last click, select
|
|
9403 the next larger syntactic structure. If `id-select-display-type' is non-nil,
|
|
9404 the type of selection is displayed in the minibuffer." t nil)
|
|
9405
|
|
9406 (autoload 'id-select-goto-matching-tag "id-select" "\
|
|
9407 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.
|
|
9408 Returns t if point is moved, else nil.
|
|
9409 Signals an error if no tag is found following point or if the closing tag
|
|
9410 does not have a `>' terminator character." t nil)
|
|
9411
|
|
9412 (autoload 'id-select-and-copy-thing "id-select" "\
|
|
9413 Copy the region surrounding the syntactical unit at point." t nil)
|
|
9414
|
|
9415 (autoload 'id-select-and-kill-thing "id-select" "\
|
|
9416 Kill the region surrounding the syntactical unit at point." t nil)
|
|
9417
|
|
9418 (autoload 'id-select-double-click-hook "id-select" "\
|
|
9419 Select a region based on the syntax of the character wherever the mouse is double-clicked.
|
|
9420 If the double-click occurs at the same point as the last double-click, select
|
|
9421 the next larger syntactic structure. If `id-select-display-type' is non-nil,
|
|
9422 the type of selection is displayed in the minibuffer." nil nil)
|
|
9423
|
|
9424 ;;;***
|
|
9425
|
|
9426 ;;;### (autoloads (unload-feature) "loadhist" "utils/loadhist.el")
|
|
9427
|
|
9428 (autoload 'unload-feature "loadhist" "\
|
|
9429 Unload the library that provided FEATURE, restoring all its autoloads.
|
|
9430 If the feature is required by any other loaded code, and optional FORCE
|
|
9431 is nil, raise an error." t nil)
|
|
9432
|
|
9433 ;;;***
|
|
9434
|
|
9435 ;;;### (autoloads (what-domain mail-extract-address-components) "mail-extr" "utils/mail-extr.el")
|
|
9436
|
|
9437 (autoload 'mail-extract-address-components "mail-extr" "\
|
|
9438 Given an RFC-822 ADDRESS, extract full name and canonical address.
|
|
9439 Returns a list of the form (FULL-NAME CANONICAL-ADDRESS).
|
|
9440 If no name can be extracted, FULL-NAME will be nil.
|
|
9441 ADDRESS may be a string or a buffer. If it is a buffer, the visible
|
|
9442 (narrowed) portion of the buffer will be interpreted as the address.
|
|
9443 (This feature exists so that the clever caller might be able to avoid
|
|
9444 consing a string.)
|
|
9445 If ADDRESS contains more than one RFC-822 address, only the first is
|
|
9446 returned. Some day this function may be extended to extract multiple
|
|
9447 addresses, or perhaps return the position at which parsing stopped." nil nil)
|
|
9448
|
|
9449 (autoload 'what-domain "mail-extr" "\
|
|
9450 Prompts for a mail domain, and prints the country it corresponds to
|
|
9451 in the minibuffer." t nil)
|
|
9452
|
|
9453 ;;;***
|
|
9454
|
|
9455 ;;;### (autoloads (mail-fetch-field mail-file-babyl-p) "mail-utils" "utils/mail-utils.el")
|
|
9456
|
|
9457 (defvar mail-use-rfc822 nil "\
|
|
9458 *If non-nil, use a full, hairy RFC822 parser on mail addresses.
|
|
9459 Otherwise, (the default) use a smaller, somewhat faster, and
|
|
9460 often correct parser.")
|
|
9461
|
|
9462 (autoload 'mail-file-babyl-p "mail-utils" nil nil nil)
|
|
9463
|
|
9464 (autoload 'mail-fetch-field "mail-utils" "\
|
|
9465 Return the value of the header field FIELD-NAME.
|
|
9466 The buffer is expected to be narrowed to just the headers of the message.
|
|
9467 If second arg LAST is non-nil, use the last such field if there are several.
|
|
9468 If third arg ALL is non-nil, concatenate all such fields with commas between." nil nil)
|
|
9469
|
|
9470 ;;;***
|
|
9471
|
|
9472 ;;;### (autoloads (read-passwd) "passwd" "utils/passwd.el")
|
|
9473
|
|
9474 (autoload 'read-passwd "passwd" "\
|
|
9475 Prompts for a password in the minibuffer, and returns it as a string.
|
|
9476 If PROMPT may be a prompt string or an alist of elements
|
|
9477 '(prompt . default).
|
|
9478 If optional arg CONFIRM is true, then ask the user to type the password
|
|
9479 again to confirm that they typed it correctly.
|
|
9480 If optional arg DEFAULT is provided, then it is a string to insert as
|
|
9481 the default choice (it is not, of course, displayed.)
|
|
9482
|
|
9483 If running under X, the keyboard will be grabbed (with XGrabKeyboard())
|
108
|
9484 to reduce the possibility that eavesdropping is occuring.
|
78
|
9485
|
|
9486 When reading a password, all keys self-insert, except for:
|
|
9487 \\<read-passwd-map>
|
|
9488 \\[read-passwd-erase-line] Erase the entire line.
|
|
9489 \\[quoted-insert] Insert the next character literally.
|
|
9490 \\[delete-backward-char] Delete the previous character.
|
|
9491 \\[exit-minibuffer] Accept what you have typed.
|
|
9492 \\[keyboard-quit] Abort the command.
|
|
9493
|
|
9494 The returned value is always a newly-created string. No additional copies
|
|
9495 of the password remain after this function has returned.
|
|
9496
|
|
9497 NOTE: unless great care is taken, the typed password will exist in plaintext
|
|
9498 form in the running image for an arbitrarily long time. Priveleged users may
|
|
9499 be able to extract it from memory. If emacs crashes, it may appear in the
|
|
9500 resultant core file.
|
|
9501
|
|
9502 Some steps you can take to prevent the password from being copied around:
|
|
9503
|
|
9504 - as soon as you are done with the returned string, destroy it with
|
|
9505 (fillarray string 0). The same goes for any default passwords
|
|
9506 or password histories.
|
|
9507
|
|
9508 - do not copy the string, as with concat or substring - if you do, be
|
|
9509 sure to keep track of and destroy all copies.
|
|
9510
|
|
9511 - do not insert the password into a buffer - if you do, be sure to
|
|
9512 overwrite the buffer text before killing it, as with the functions
|
|
9513 `passwd-erase-buffer' or `passwd-kill-buffer'. Note that deleting
|
|
9514 the text from the buffer does NOT necessarily remove the text from
|
|
9515 memory.
|
|
9516
|
|
9517 - be careful of the undo history - if you insert the password into a
|
|
9518 buffer which has undo recording turned on, the password will be
|
|
9519 copied onto the undo list, and thus recoverable.
|
|
9520
|
|
9521 - do not pass it as an argument to a shell command - anyone will be
|
|
9522 able to see it if they run `ps' at the right time.
|
|
9523
|
|
9524 Note that the password will be temporarily recoverable with the `view-lossage'
|
|
9525 command. This data will not be overwritten until another hundred or so
|
|
9526 characters are typed. There's not currently a way around this." nil nil)
|
|
9527
|
|
9528 ;;;***
|
|
9529
|
|
9530 ;;;### (autoloads (pp-eval-last-sexp pp-eval-expression pp) "pp" "utils/pp.el")
|
|
9531
|
|
9532 (defalias 'pprint 'pp)
|
|
9533
|
|
9534 (autoload 'pp "pp" "\
|
|
9535 Output the pretty-printed representation of OBJECT, any Lisp object.
|
|
9536 Quoting characters are printed when needed to make output that `read'
|
|
9537 can handle, whenever this is possible.
|
|
9538 Output stream is STREAM, or value of `standard-output' (which see)." nil nil)
|
|
9539
|
|
9540 (autoload 'pp-eval-expression "pp" "\
|
|
9541 Evaluate EXPRESSION and pretty-print value into a new display buffer.
|
|
9542 If the pretty-printed value fits on one line, the message line is used
|
|
9543 instead. Value is also consed on to front of variable values 's
|
|
9544 value." t nil)
|
|
9545
|
|
9546 (autoload 'pp-eval-last-sexp "pp" "\
|
|
9547 Run `pp-eval-expression' on sexp before point (which see).
|
|
9548 With argument, pretty-print output into current buffer.
|
|
9549 Ignores leading comment characters." t nil)
|
|
9550
|
|
9551 ;;;***
|
|
9552
|
|
9553 ;;;### (autoloads (prettyexpand-all-sexp prettyexpand-sexp macroexpand-all-sexp macroexpand-sexp pp-plist pp-variable pp-function) "pretty-print" "utils/pretty-print.el")
|
|
9554
|
|
9555 (autoload 'pp-function "pretty-print" "\
|
108
|
9556 Pretty print the function definition of SYMBOL in a separate buffer" t nil)
|
78
|
9557
|
|
9558 (autoload 'pp-variable "pretty-print" "\
|
108
|
9559 Pretty print the variable value of SYMBOL in a separate buffer" t nil)
|
78
|
9560
|
|
9561 (autoload 'pp-plist "pretty-print" "\
|
108
|
9562 Pretty print the property list of SYMBOL in a separate buffer" t nil)
|
78
|
9563
|
|
9564 (autoload 'macroexpand-sexp "pretty-print" "\
|
|
9565 Macro expand the sexpression following point. Pretty print expansion in a
|
|
9566 temporary buffer. With prefix argument, replace the original
|
|
9567 sexpression by its expansion in the current buffer." t nil)
|
|
9568
|
|
9569 (autoload 'macroexpand-all-sexp "pretty-print" "\
|
|
9570 Macro expand recursively the sexpression following point. Pretty print
|
|
9571 expansion in a temporary buffer. With prefix argument, replace the
|
|
9572 original sexpression by its expansion in the current buffer." t nil)
|
|
9573
|
|
9574 (autoload 'prettyexpand-sexp "pretty-print" "\
|
|
9575 Macro expand the sexpression following point. Pretty print expansion
|
|
9576 in a temporary buffer. With prefix argument, replace the original
|
|
9577 sexpression by its expansion in the current buffer.
|
|
9578 However, calls to macros specified in the variable
|
|
9579 `pp-shadow-expansion-list' are not expanded, in order to make the code
|
|
9580 look nicer." t nil)
|
|
9581
|
|
9582 (autoload 'prettyexpand-all-sexp "pretty-print" "\
|
|
9583 Macro expand recursively the sexpression following point. Pretty print
|
|
9584 expansion in a temporary buffer. With prefix argument, replace the
|
|
9585 original sexpression by its expansion in the current buffer.
|
|
9586 However, calls to macros specified in the variable
|
|
9587 `pp-shadow-expansion-list' are not expanded, in order to make the code
|
|
9588 look nicer." t nil)
|
|
9589
|
|
9590 ;;;***
|
|
9591
|
|
9592 ;;;### (autoloads (reporter-submit-bug-report) "reporter" "utils/reporter.el")
|
|
9593
|
|
9594 (autoload 'reporter-submit-bug-report "reporter" nil nil nil)
|
|
9595
|
|
9596 ;;;***
|
|
9597
|
|
9598 ;;;### (autoloads (make-ring ringp) "ring" "utils/ring.el")
|
|
9599
|
|
9600 (autoload 'ringp "ring" "\
|
|
9601 Returns t if X is a ring; nil otherwise." nil nil)
|
|
9602
|
|
9603 (define-obsolete-function-alias 'ring-p 'ringp)
|
|
9604
|
|
9605 (autoload 'make-ring "ring" "\
|
|
9606 Make a ring that can contain SIZE elements." nil nil)
|
|
9607
|
|
9608 ;;;***
|
|
9609
|
|
9610 ;;;### (autoloads (skeleton-pair-insert-maybe skeleton-insert skeleton-proxy skeleton-proxy-new define-skeleton) "skeleton" "utils/skeleton.el")
|
|
9611
|
|
9612 (defvar skeleton-filter 'identity "\
|
|
9613 Function for transforming a skeleton proxy's aliases' variable value.")
|
|
9614
|
|
9615 (autoload 'define-skeleton "skeleton" "\
|
|
9616 Define a user-configurable COMMAND that enters a statement skeleton.
|
|
9617 DOCUMENTATION is that of the command, while the variable of the same name,
|
|
9618 which contains the skeleton, has a documentation to that effect.
|
|
9619 INTERACTOR and ELEMENT ... are as defined under `skeleton-insert'." nil 'macro)
|
|
9620
|
|
9621 (autoload 'skeleton-proxy-new "skeleton" "\
|
|
9622 Insert skeleton defined by variable of same name (see `skeleton-insert').
|
|
9623 Prefix ARG allows wrapping around words or regions (see `skeleton-insert').
|
|
9624 If no ARG was given, but the region is visible, ARG defaults to -1 depending
|
|
9625 on `skeleton-autowrap'. An ARG of M-0 will prevent this just for once.
|
|
9626 This command can also be an abbrev expansion (3rd and 4th columns in
|
|
9627 \\[edit-abbrevs] buffer: \"\" command-name).
|
|
9628
|
|
9629 When called as a function, optional first argument STR may also be a string
|
|
9630 which will be the value of `str' whereas the skeleton's interactor is then
|
|
9631 ignored." t nil)
|
|
9632
|
|
9633 (autoload 'skeleton-proxy "skeleton" "\
|
|
9634 Insert skeleton defined by variable of same name (see `skeleton-insert').
|
|
9635 Prefix ARG allows wrapping around words or regions (see `skeleton-insert').
|
|
9636 If no ARG was given, but the region is visible, ARG defaults to -1 depending
|
|
9637 on `skeleton-autowrap'. An ARG of M-0 will prevent this just for once.
|
|
9638 This command can also be an abbrev expansion (3rd and 4th columns in
|
|
9639 \\[edit-abbrevs] buffer: \"\" command-name).
|
|
9640
|
|
9641 When called as a function, optional first argument STR may also be a string
|
|
9642 which will be the value of `str' whereas the skeleton's interactor is then
|
|
9643 ignored." t nil)
|
|
9644
|
|
9645 (autoload 'skeleton-insert "skeleton" "\
|
|
9646 Insert the complex statement skeleton SKELETON describes very concisely.
|
|
9647
|
|
9648 With optional third REGIONS wrap first interesting point (`_') in skeleton
|
|
9649 around next REGIONS words, if REGIONS is positive. If REGIONS is negative,
|
|
9650 wrap REGIONS preceding interregions into first REGIONS interesting positions
|
|
9651 \(successive `_'s) in skeleton. An interregion is the stretch of text between
|
|
9652 two contiguous marked points. If you marked A B C [] (where [] is the cursor)
|
|
9653 in alphabetical order, the 3 interregions are simply the last 3 regions. But
|
|
9654 if you marked B A [] C, the interregions are B-A, A-[], []-C.
|
|
9655
|
|
9656 Optional fourth STR is the value for the variable `str' within the skeleton.
|
|
9657 When this is non-`nil' the interactor gets ignored, and this should be a valid
|
|
9658 skeleton element.
|
|
9659
|
|
9660 SKELETON is made up as (INTERACTOR ELEMENT ...). INTERACTOR may be nil if
|
|
9661 not needed, a prompt-string or an expression for complex read functions.
|
|
9662
|
|
9663 If ELEMENT is a string or a character it gets inserted (see also
|
|
9664 `skeleton-transformation'). Other possibilities are:
|
|
9665
|
|
9666 \\n go to next line and indent according to mode
|
|
9667 _ interesting point, interregion here, point after termination
|
|
9668 > indent line (or interregion if > _) according to major mode
|
|
9669 & do next ELEMENT if previous moved point
|
|
9670 | do next ELEMENT if previous didn't move point
|
|
9671 -num delete num preceding characters (see `skeleton-untabify')
|
|
9672 resume: skipped, continue here if quit is signaled
|
|
9673 nil skipped
|
|
9674
|
|
9675 Further elements can be defined via `skeleton-further-elements'. ELEMENT may
|
|
9676 itself be a SKELETON with an INTERACTOR. The user is prompted repeatedly for
|
|
9677 different inputs. The SKELETON is processed as often as the user enters a
|
|
9678 non-empty string. \\[keyboard-quit] terminates skeleton insertion, but
|
|
9679 continues after `resume:' and positions at `_' if any. If INTERACTOR in such
|
|
9680 a subskeleton is a prompt-string which contains a \".. %s ..\" it is
|
|
9681 formatted with `skeleton-subprompt'. Such an INTERACTOR may also a list of
|
|
9682 strings with the subskeleton being repeated once for each string.
|
|
9683
|
|
9684 Quoted Lisp expressions are evaluated evaluated for their side-effect.
|
|
9685 Other Lisp expressions are evaluated and the value treated as above.
|
|
9686 Note that expressions may not return `t' since this implies an
|
|
9687 endless loop. Modes can define other symbols by locally setting them
|
|
9688 to any valid skeleton element. The following local variables are
|
|
9689 available:
|
|
9690
|
|
9691 str first time: read a string according to INTERACTOR
|
|
9692 then: insert previously read string once more
|
|
9693 help help-form during interaction with the user or `nil'
|
|
9694 input initial input (string or cons with index) while reading str
|
|
9695 v1, v2 local variables for memorizing anything you want
|
|
9696
|
|
9697 When done with skeleton, but before going back to `_'-point call
|
|
9698 `skeleton-end-hook' if that is non-`nil'." nil nil)
|
|
9699
|
|
9700 (autoload 'skeleton-pair-insert-maybe "skeleton" "\
|
|
9701 Insert the character you type ARG times.
|
|
9702
|
|
9703 With no ARG, if `skeleton-pair' is non-nil, pairing can occur. If the region
|
|
9704 is visible the pair is wrapped around it depending on `skeleton-autowrap'.
|
|
9705 Else, if `skeleton-pair-on-word' is non-nil or we are not before or inside a
|
|
9706 word, and if `skeleton-pair-filter' returns nil, pairing is performed.
|
|
9707
|
|
9708 If a match is found in `skeleton-pair-alist', that is inserted, else
|
|
9709 the defaults are used. These are (), [], {}, <> and `' for the
|
|
9710 symmetrical ones, and the same character twice for the others." t nil)
|
|
9711
|
|
9712 ;;;***
|
|
9713
|
100
|
9714 ;;;### (autoloads (speedbar-frame-mode) "speedbar" "utils/speedbar.el")
|
|
9715
|
|
9716 (autoload 'speedbar-frame-mode "speedbar" "\
|
|
9717 Enable or disable use of a speedbar. Positive number means turn
|
|
9718 on, negative turns speedbar off, and nil means toggle. Once the
|
|
9719 speedbar frame is activated, a buffer in `speedbar-mode' will be
|
|
9720 displayed. Currently, only one speedbar is supported at a time." t nil)
|
|
9721
|
|
9722 ;;;***
|
|
9723
|
86
|
9724 ;;;### (autoloads nil "timezone" "utils/timezone.el")
|
|
9725
|
|
9726 (define-error 'invalid-date "Invalid date string")
|
|
9727
|
|
9728 ;;;***
|
|
9729
|
78
|
9730 ;;;### (autoloads (tq-create) "tq" "utils/tq.el")
|
|
9731
|
|
9732 (autoload 'tq-create "tq" "\
|
|
9733 Create and return a transaction queue communicating with PROCESS.
|
|
9734 PROCESS should be a subprocess capable of sending and receiving
|
|
9735 streams of bytes. It may be a local process, or it may be connected
|
|
9736 to a tcp server on another machine." nil nil)
|
|
9737
|
|
9738 ;;;***
|
|
9739
|
|
9740 ;;;### (autoloads (trace-function-background trace-function) "trace" "utils/trace.el")
|
|
9741
|
|
9742 (defvar trace-buffer "*trace-output*" "\
|
|
9743 *Trace output will by default go to that buffer.")
|
|
9744
|
|
9745 (autoload 'trace-function "trace" "\
|
|
9746 Traces FUNCTION with trace output going to BUFFER.
|
|
9747 For every call of FUNCTION Lisp-style trace messages that display argument
|
|
9748 and return values will be inserted into BUFFER. This function generates the
|
|
9749 trace advice for FUNCTION and activates it together with any other advice
|
|
9750 there might be!! The trace BUFFER will popup whenever FUNCTION is called.
|
|
9751 Do not use this to trace functions that switch buffers or do any other
|
|
9752 display oriented stuff, use `trace-function-background' instead." t nil)
|
|
9753
|
|
9754 (autoload 'trace-function-background "trace" "\
|
|
9755 Traces FUNCTION with trace output going quietly to BUFFER.
|
|
9756 For every call of FUNCTION Lisp-style trace messages that display argument
|
|
9757 and return values will be inserted into BUFFER. This function generates the
|
|
9758 trace advice for FUNCTION and activates it together with any other advice
|
|
9759 there might be!! Trace output will quietly go to BUFFER without changing
|
|
9760 the window or buffer configuration at all." t nil)
|
|
9761
|
|
9762 ;;;***
|
|
9763
|
|
9764 ;;;### (autoloads (xbm-button-create) "xbm-button" "utils/xbm-button.el")
|
|
9765
|
|
9766 (autoload 'xbm-button-create "xbm-button" "\
|
|
9767 Returns a list of XBM image instantiators for a button displaying TEXT.
|
|
9768 The list is of the form
|
|
9769 (UP DOWN DISABLED)
|
|
9770 where UP, DOWN, and DISABLED are the up, down and disabled image
|
|
9771 instantiators for the button.
|
|
9772
|
|
9773 BORDER-THICKNESS specifies how many pixels should be used for the
|
|
9774 borders on the edges of the buttons. It should be a positive integer,
|
|
9775 or 0 to mean no border." nil nil)
|
|
9776
|
|
9777 ;;;***
|
|
9778
|
|
9779 ;;;### (autoloads (xpm-button-create) "xpm-button" "utils/xpm-button.el")
|
|
9780
|
|
9781 (autoload 'xpm-button-create "xpm-button" "\
|
|
9782 Returns a list of XPM image instantiators for a button displaying TEXT.
|
|
9783 The list is of the form
|
|
9784 (UP DOWN DISABLED)
|
|
9785 where UP, DOWN, and DISABLED are the up, down and disabled image
|
|
9786 instantiators for the button.
|
|
9787
|
|
9788 SHADOW-THICKNESS specifies how many pixels should be used for the
|
|
9789 shadows on the edges of the buttons. It should be a positive integer,
|
|
9790 or 0 to mean no shadows on the edges.
|
|
9791 FG-COLOR is the color used to display the text. It should be a string.
|
|
9792 BG-COLOR is the background color the text will be displayed upon.
|
|
9793 It should be a string." nil nil)
|
|
9794
|
|
9795 ;;;***
|
|
9796
|
|
9797 ;;;### (autoloads (viper-mode) "viper" "viper/viper.el")
|
|
9798
|
|
9799 (autoload 'viper-mode "viper" "\
|
|
9800 Turn on Viper emulation of Vi." t nil)
|
|
9801
|
|
9802 (defalias 'vip-mode 'viper-mode)
|
|
9803
|
|
9804 ;;;***
|
|
9805
|
|
9806 ;;;### (autoloads (vm-easy-menu-create-keymaps vm-easy-menu-define) "vm-easymenu" "vm/vm-easymenu.el")
|
|
9807
|
|
9808 (autoload 'vm-easy-menu-define "vm-easymenu" "\
|
|
9809 Define a menu bar submenu in maps MAPS, according to MENU.
|
|
9810 The menu keymap is stored in symbol SYMBOL, both as its value
|
|
9811 and as its function definition. DOC is used as the doc string for SYMBOL.
|
|
9812
|
|
9813 The first element of MENU must be a string. It is the menu bar item name.
|
|
9814 The rest of the elements are menu items.
|
|
9815
|
|
9816 A menu item is usually a vector of three elements: [NAME CALLBACK ENABLE]
|
|
9817
|
|
9818 NAME is a string--the menu item name.
|
|
9819
|
|
9820 CALLBACK is a command to run when the item is chosen,
|
|
9821 or a list to evaluate when the item is chosen.
|
|
9822
|
|
9823 ENABLE is an expression; the item is enabled for selection
|
|
9824 whenever this expression's value is non-nil.
|
|
9825
|
|
9826 Alternatively, a menu item may have the form:
|
|
9827
|
|
9828 [ NAME CALLBACK [ KEYWORD ARG ] ... ]
|
|
9829
|
|
9830 Where KEYWORD is one of the symbol defined below.
|
|
9831
|
|
9832 :keys KEYS
|
|
9833
|
|
9834 KEYS is a string; a complex keyboard equivalent to this menu item.
|
|
9835 This is normally not needed because keyboard equivalents are usually
|
|
9836 computed automatically.
|
|
9837
|
|
9838 :active ENABLE
|
|
9839
|
|
9840 ENABLE is an expression; the item is enabled for selection
|
|
9841 whenever this expression's value is non-nil.
|
|
9842
|
|
9843 :suffix NAME
|
|
9844
|
|
9845 NAME is a string; the name of an argument to CALLBACK.
|
|
9846
|
|
9847 :style
|
|
9848
|
|
9849 STYLE is a symbol describing the type of menu item. The following are
|
|
9850 defined:
|
|
9851
|
|
9852 toggle: A checkbox.
|
|
9853 Currently just prepend the name with the string \"Toggle \".
|
|
9854 radio: A radio button.
|
|
9855 nil: An ordinary menu item.
|
|
9856
|
|
9857 :selected SELECTED
|
|
9858
|
|
9859 SELECTED is an expression; the checkbox or radio button is selected
|
|
9860 whenever this expression's value is non-nil.
|
|
9861 Currently just disable radio buttons, no effect on checkboxes.
|
|
9862
|
|
9863 A menu item can be a string. Then that string appears in the menu as
|
|
9864 unselectable text. A string consisting solely of hyphens is displayed
|
|
9865 as a solid horizontal line.
|
|
9866
|
|
9867 A menu item can be a list. It is treated as a submenu.
|
|
9868 The first element should be the submenu name. That's used as the
|
|
9869 menu item in the top-level menu. The cdr of the submenu list
|
|
9870 is a list of menu items, as above." nil 'macro)
|
|
9871
|
|
9872 (autoload 'vm-easy-menu-create-keymaps "vm-easymenu" nil nil nil)
|
|
9873
|
|
9874 ;;;***
|
|
9875
|
118
|
9876 ;;;### (autoloads (x-font-build-cache font-default-size-for-device font-default-encoding-for-device font-default-registry-for-device font-default-family-for-device font-default-object-for-device font-default-font-for-device font-create-object) "font" "w3/font.el")
|
108
|
9877
|
|
9878 (autoload 'font-create-object "font" nil nil nil)
|
|
9879
|
|
9880 (autoload 'font-default-font-for-device "font" nil nil nil)
|
|
9881
|
|
9882 (autoload 'font-default-object-for-device "font" nil nil nil)
|
|
9883
|
|
9884 (autoload 'font-default-family-for-device "font" nil nil nil)
|
|
9885
|
118
|
9886 (autoload 'font-default-registry-for-device "font" nil nil nil)
|
|
9887
|
|
9888 (autoload 'font-default-encoding-for-device "font" nil nil nil)
|
|
9889
|
108
|
9890 (autoload 'font-default-size-for-device "font" nil nil nil)
|
|
9891
|
|
9892 (autoload 'x-font-build-cache "font" nil nil nil)
|
|
9893
|
|
9894 ;;;***
|
|
9895
|
|
9896 ;;;### (autoloads (url-cache-expired url-cache-extract url-is-cached url-store-in-cache) "url-cache" "w3/url-cache.el")
|
102
|
9897
|
|
9898 (autoload 'url-store-in-cache "url-cache" "\
|
|
9899 Store buffer BUFF in the cache" nil nil)
|
|
9900
|
|
9901 (autoload 'url-is-cached "url-cache" "\
|
|
9902 Return non-nil if the URL is cached." nil nil)
|
|
9903
|
108
|
9904 (autoload 'url-cache-extract "url-cache" "\
|
102
|
9905 Extract FNAM from the local disk cache" nil nil)
|
|
9906
|
|
9907 (autoload 'url-cache-expired "url-cache" "\
|
|
9908 Return t iff a cached file has expired." nil nil)
|
|
9909
|
|
9910 ;;;***
|
|
9911
|
118
|
9912 ;;;### (autoloads (url-gateway-nslookup-host) "url-gw" "w3/url-gw.el")
|
|
9913
|
|
9914 (autoload 'url-gateway-nslookup-host "url-gw" "\
|
|
9915 Attempt to resolve the given HOSTNAME using nslookup if possible." t nil)
|
|
9916
|
|
9917 ;;;***
|
|
9918
|
102
|
9919 ;;;### (autoloads (url-retrieve url-popup-info url-get-url-at-point url-buffer-visiting url-normalize-url url-file-attributes) "url" "w3/url.el")
|
80
|
9920
|
|
9921 (autoload 'url-file-attributes "url" "\
|
|
9922 Return a list of attributes of URL.
|
|
9923 Value is nil if specified file cannot be opened.
|
|
9924 Otherwise, list elements are:
|
|
9925 0. t for directory, string (name linked to) for symbolic link, or nil.
|
|
9926 1. Number of links to file.
|
|
9927 2. File uid.
|
|
9928 3. File gid.
|
|
9929 4. Last access time, as a list of two integers.
|
|
9930 First integer has high-order 16 bits of time, second has low 16 bits.
|
|
9931 5. Last modification time, likewise.
|
|
9932 6. Last status change time, likewise.
|
|
9933 7. Size in bytes. (-1, if number is out of range).
|
|
9934 8. File modes, as a string of ten letters or dashes as in ls -l.
|
|
9935 If URL is on an http server, this will return the content-type if possible.
|
|
9936 9. t iff file's gid would change if file were deleted and recreated.
|
|
9937 10. inode number.
|
|
9938 11. Device number.
|
|
9939
|
|
9940 If file does not exist, returns nil." nil nil)
|
|
9941
|
|
9942 (autoload 'url-normalize-url "url" "\
|
|
9943 Return a 'normalized' version of URL. This strips out default port
|
|
9944 numbers, etc." nil nil)
|
|
9945
|
|
9946 (autoload 'url-buffer-visiting "url" "\
|
|
9947 Return the name of a buffer (if any) that is visiting URL." nil nil)
|
|
9948
|
|
9949 (autoload 'url-get-url-at-point "url" "\
|
|
9950 Get the URL closest to point, but don't change your
|
|
9951 position. Has a preference for looking backward when not
|
|
9952 directly on a symbol." nil nil)
|
|
9953
|
|
9954 (autoload 'url-popup-info "url" "\
|
|
9955 Retrieve the HTTP/1.0 headers and display them in a temp buffer." nil nil)
|
|
9956
|
|
9957 (autoload 'url-retrieve "url" "\
|
|
9958 Retrieve a document over the World Wide Web.
|
|
9959 The document should be specified by its fully specified
|
|
9960 Uniform Resource Locator. No parsing is done, just return the
|
|
9961 document as the server sent it. The document is left in the
|
|
9962 buffer specified by url-working-buffer. url-working-buffer is killed
|
|
9963 immediately before starting the transfer, so that no buffer-local
|
|
9964 variables interfere with the retrieval. HTTP/1.0 redirection will
|
|
9965 be honored before this function exits." nil nil)
|
|
9966
|
|
9967 ;;;***
|
|
9968
|
78
|
9969 ;;;### (autoloads (w3-use-hotlist) "w3-hot" "w3/w3-hot.el")
|
|
9970
|
|
9971 (autoload 'w3-use-hotlist "w3-hot" "\
|
|
9972 Possibly go to a link in your W3/Mosaic hotlist.
|
|
9973 This is part of the emacs World Wide Web browser. It will prompt for
|
|
9974 one of the items in your 'hotlist'. A hotlist is a list of often
|
|
9975 visited or interesting items you have found on the World Wide Web." t nil)
|
|
9976
|
|
9977 ;;;***
|
|
9978
|
102
|
9979 ;;;### (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")
|
78
|
9980
|
|
9981 (autoload 'w3-open-local "w3" "\
|
|
9982 Find a local file, and interpret it as a hypertext document.
|
|
9983 It will prompt for an existing file or directory, and retrieve it as a
|
98
|
9984 hypertext document." t nil)
|
78
|
9985
|
|
9986 (autoload 'w3-find-file "w3" "\
|
|
9987 Find a local file, and interpret it as a hypertext document.
|
|
9988 It will prompt for an existing file or directory, and retrieve it as a
|
98
|
9989 hypertext document." t nil)
|
78
|
9990
|
|
9991 (autoload 'w3-fetch-other-frame "w3" "\
|
|
9992 Attempt to follow the hypertext reference under point in a new frame.
|
|
9993 With prefix-arg P, ignore viewers and dump the link straight
|
|
9994 to disk." t nil)
|
|
9995
|
|
9996 (autoload 'w3-fetch "w3" "\
|
|
9997 Retrieve a document over the World Wide Web.
|
82
|
9998 Defaults to URL of the current document, if any.
|
|
9999 With prefix argument, use the URL of the hyperlink under point instead." t nil)
|
78
|
10000
|
|
10001 (autoload 'w3-maybe-follow-link-mouse "w3" "\
|
|
10002 Maybe follow a hypertext link under point.
|
|
10003 If there is no link under point, this will try using
|
|
10004 url-get-url-at-point" t nil)
|
|
10005
|
|
10006 (autoload 'w3-maybe-follow-link "w3" "\
|
|
10007 Maybe follow a hypertext link under point.
|
|
10008 If there is no link under point, this will try using
|
|
10009 url-get-url-at-point" t nil)
|
|
10010
|
|
10011 (autoload 'w3-follow-url-at-point-other-frame "w3" "\
|
|
10012 Follow the URL under PT, defaults to link under (point)" t nil)
|
|
10013
|
|
10014 (autoload 'w3-follow-url-at-point "w3" "\
|
|
10015 Follow the URL under PT, defaults to link under (point)" t nil)
|
|
10016
|
|
10017 (autoload 'w3-preview-this-buffer "w3" "\
|
|
10018 See what this buffer will look like when its formatted as HTML.
|
|
10019 HTML is the HyperText Markup Language used by the World Wide Web to
|
|
10020 specify formatting for text. More information on HTML can be found at
|
|
10021 ftp.w3.org:/pub/www/doc." t nil)
|
|
10022
|
|
10023 (autoload 'w3 "w3" "\
|
|
10024 Retrieve the default World Wide Web home page.
|
|
10025 The World Wide Web is a global hypertext system started by CERN in
|
|
10026 Switzerland in 1991.
|
|
10027
|
|
10028 The home page is specified by the variable w3-default-homepage. The
|
|
10029 document should be specified by its fully specified Uniform Resource
|
|
10030 Locator. The document will be parsed as HTML (if appropriate) and
|
|
10031 displayed in a new buffer." t nil)
|
|
10032
|
|
10033 (autoload 'w3-do-setup "w3" "\
|
|
10034 Do setup - this is to avoid conflict with user settings when W3 is
|
|
10035 dumped with emacs." nil nil)
|
|
10036
|
|
10037 (autoload 'w3-follow-link-other-frame "w3" "\
|
|
10038 Attempt to follow the hypertext reference under point in a new frame.
|
|
10039 With prefix-arg P, ignore viewers and dump the link straight
|
|
10040 to disk." nil nil)
|
|
10041
|
|
10042 (autoload 'w3-follow-link "w3" "\
|
|
10043 Attempt to follow the hypertext reference under point.
|
|
10044 With prefix-arg P, ignore viewers and dump the link straight
|
|
10045 to disk." t nil)
|
|
10046
|
|
10047 ;;;***
|
|
10048
|
|
10049 ;;;### (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")
|
|
10050
|
|
10051 (defvar font-menu-ignore-scaled-fonts t "\
|
|
10052 *If non-nil, then the font menu will try to show only bitmap fonts.")
|
|
10053
|
|
10054 (defvar font-menu-this-frame-only-p nil "\
|
|
10055 *If non-nil, then changing the default font from the font menu will only
|
|
10056 affect one frame instead of all frames.")
|
|
10057
|
|
10058 (fset 'install-font-menus 'reset-device-font-menus)
|
|
10059
|
|
10060 (autoload 'reset-device-font-menus "x-font-menu" "\
|
|
10061 Generates the `Font', `Size', and `Weight' submenus for the Options menu.
|
|
10062 This is run the first time that a font-menu is needed for each device.
|
|
10063 If you don't like the lazy invocation of this function, you can add it to
|
|
10064 `create-device-hook' and that will make the font menus respond more quickly
|
|
10065 when they are selected for the first time. If you add fonts to your system,
|
|
10066 or if you change your font path, you can call this to re-initialize the menus." nil nil)
|
|
10067
|
|
10068 (autoload 'font-menu-family-constructor "x-font-menu" nil nil nil)
|
|
10069
|
|
10070 (autoload 'font-menu-size-constructor "x-font-menu" nil nil nil)
|
|
10071
|
|
10072 (autoload 'font-menu-weight-constructor "x-font-menu" nil nil nil)
|
|
10073
|
|
10074 ;;;***
|