Mercurial > hg > xemacs-beta
comparison lisp/prim/loaddefs.el @ 12:bcdc7deadc19 r19-15b7
Import from CVS: tag r19-15b7
author | cvs |
---|---|
date | Mon, 13 Aug 2007 08:48:16 +0200 |
parents | 49a24b4fd526 |
children | 131b0175ea99 |
comparison
equal
deleted
inserted
replaced
11:91ffe8bd52e4 | 12:bcdc7deadc19 |
---|---|
16 ;; WITHOUT ANY WARRANTY; without even the implied warranty of | 16 ;; WITHOUT ANY WARRANTY; without even the implied warranty of |
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
18 ;; General Public License for more details. | 18 ;; General Public License for more details. |
19 | 19 |
20 ;; You should have received a copy of the GNU General Public License | 20 ;; You should have received a copy of the GNU General Public License |
21 ;; along with XEmacs; see the file COPYING. If not, write to the Free | 21 ;; along with XEmacs; see the file COPYING. If not, write to the |
22 ;; Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. | 22 ;; Free Software Foundation, 59 Temple Place - Suite 330, |
23 ;; Boston, MA 02111-1307, USA. | |
23 | 24 |
24 ;;; Synched up with: Not synched with FSF. | 25 ;;; Synched up with: Not synched with FSF. |
25 | 26 |
26 ;;; Commentary: | 27 ;;; Commentary: |
27 | 28 |
88 ".dvi" ".toc" ".log" ".aux" ".a" ".ln" | 89 ".dvi" ".toc" ".log" ".aux" ".a" ".ln" |
89 ".lof" ".blg" ".bbl" ".glo" ".idx" ".lot" ".fmt" | 90 ".lof" ".blg" ".bbl" ".glo" ".idx" ".lot" ".fmt" |
90 ".diff" ".oi")))) | 91 ".diff" ".oi")))) |
91 | 92 |
92 (make-variable-buffer-local 'indent-tabs-mode) | 93 (make-variable-buffer-local 'indent-tabs-mode) |
94 | |
93 | 95 |
94 ;;; This code also was not generated by autoload.el, because VM goes out | 96 ;;; This code also was not generated by autoload.el, because VM goes out |
95 ;;; of its way to be perverse. | 97 ;;; of its way to be perverse. |
96 | 98 |
97 (autoload 'vm "vm" | 99 (autoload 'vm "vm" |
305 "\ | 307 "\ |
306 Send a mail message from within View Mail, or from without." | 308 Send a mail message from within View Mail, or from without." |
307 t) | 309 t) |
308 | 310 |
309 | 311 |
310 | 312 ;;; Load in generated autoloads (made by autoload.el). |
311 ;;; Generated autoloads follow (made by autoload.el). | 313 (condition-case nil |
312 | 314 (load "auto-autoloads") |
313 ;;; To sort them, execute the following after narrowing | 315 (file-error nil)) |
314 ;;; to a region starting just after the following formfeed (control-l) | |
315 ;;; and ending just after the last formfeed in the file. | |
316 | |
317 ;;;(sort-regexp-fields nil "\n*.*\n.*from \\(.*\\)[^]*" "\\1" | |
318 ;;; (point-min) (point-max)) | |
319 | |
320 ;;;*** | |
321 | |
322 ;;;*** | |
323 | |
324 ;;;*** | |
325 | 316 |
326 ;;;### (autoloads nil "byte-optimize" "bytecomp/byte-optimize.el" (12983 26738)) | |
327 ;;; Generated autoloads from bytecomp/byte-optimize.el | |
328 | |
329 ;;;*** | |
330 | |
331 ;;;### (autoloads nil "bytecomp-runtime" "bytecomp/bytecomp-runtime.el" (12983 26739)) | |
332 ;;; Generated autoloads from bytecomp/bytecomp-runtime.el | |
333 | |
334 ;;;### (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" (12983 26739)) | |
335 ;;; Generated autoloads from bytecomp/bytecomp.el | |
336 | |
337 (autoload 'byte-force-recompile "bytecomp" "\ | |
338 Recompile every `.el' file in DIRECTORY that already has a `.elc' file. | |
339 Files in subdirectories of DIRECTORY are processed also." t nil) | |
340 | |
341 (autoload 'byte-recompile-directory "bytecomp" "\ | |
342 Recompile every `.el' file in DIRECTORY that needs recompilation. | |
343 This is if a `.elc' file exists but is older than the `.el' file. | |
344 Files in subdirectories of DIRECTORY are processed also unless argument | |
345 NORECURSION is non-nil. | |
346 | |
347 If the `.elc' file does not exist, normally the `.el' file is *not* compiled. | |
348 But a prefix argument (optional second arg) means ask user, | |
349 for each such `.el' file, whether to compile it. Prefix argument 0 means | |
350 don't ask and compile the file anyway. | |
351 | |
352 A nonzero prefix argument also means ask about each subdirectory. | |
353 | |
354 If the fourth argument FORCE is non-nil, | |
355 recompile every `.el' file that already has a `.elc' file." t nil) | |
356 | |
357 (autoload 'byte-recompile-file "bytecomp" "\ | |
358 Recompile a file of Lisp code named FILENAME if it needs recompilation. | |
359 This is if the `.elc' file exists but is older than the `.el' file. | |
360 | |
361 If the `.elc' file does not exist, normally the `.el' file is *not* | |
362 compiled. But a prefix argument (optional second arg) means ask user | |
363 whether to compile it. Prefix argument 0 don't ask and recompile anyway." t nil) | |
364 | |
365 (autoload 'byte-compile-file "bytecomp" "\ | |
366 Compile a file of Lisp code named FILENAME into a file of byte code. | |
367 The output file's name is made by appending `c' to the end of FILENAME. | |
368 With prefix arg (noninteractively: 2nd arg), load the file after compiling." t nil) | |
369 | |
370 (autoload 'compile-defun "bytecomp" "\ | |
371 Compile and evaluate the current top-level form. | |
372 Print the result in the minibuffer. | |
373 With argument, insert value in current buffer after the form." t nil) | |
374 | |
375 (autoload 'byte-compile "bytecomp" "\ | |
376 If FORM is a symbol, byte-compile its function definition. | |
377 If FORM is a lambda or a macro, byte-compile it as a function." nil nil) | |
378 | |
379 (autoload 'byte-compile-sexp "bytecomp" "\ | |
380 Compile and return SEXP." nil nil) | |
381 | |
382 (autoload 'display-call-tree "bytecomp" "\ | |
383 Display a call graph of a specified file. | |
384 This lists which functions have been called, what functions called | |
385 them, and what functions they call. The list includes all functions | |
386 whose definitions have been compiled in this Emacs session, as well as | |
387 all functions called by those functions. | |
388 | |
389 The call graph does not include macros, inline functions, or | |
390 primitives that the byte-code interpreter knows about directly (eq, | |
391 cons, etc.). | |
392 | |
393 The call tree also lists those functions which are not known to be called | |
394 \(that is, to which no calls have been compiled), and which cannot be | |
395 invoked interactively." t nil) | |
396 | |
397 (autoload 'batch-byte-compile "bytecomp" "\ | |
398 Run `byte-compile-file' on the files remaining on the command line. | |
399 Use this from the command line, with `-batch'; | |
400 it won't work in an interactive Emacs. | |
401 Each file is processed even if an error occurred previously. | |
402 For example, invoke \"emacs -batch -f batch-byte-compile $emacs/ ~/*.el\"" nil nil) | |
403 | |
404 (autoload 'batch-byte-recompile-directory-norecurse "bytecomp" "\ | |
405 Same as `batch-byte-recompile-directory' but without recursion." nil nil) | |
406 | |
407 (autoload 'batch-byte-recompile-directory "bytecomp" "\ | |
408 Runs `byte-recompile-directory' on the dirs remaining on the command line. | |
409 Must be used only with `-batch', and kills Emacs on completion. | |
410 For example, invoke `xemacs -batch -f batch-byte-recompile-directory .'." nil nil) | |
411 | |
412 ;;;*** | |
413 | |
414 ;;;### (autoloads (disassemble) "disass" "bytecomp/disass.el" (12983 25879)) | |
415 ;;; Generated autoloads from bytecomp/disass.el | |
416 | |
417 (autoload 'disassemble "disass" "\ | |
418 Print disassembled code for OBJECT in (optional) BUFFER. | |
419 OBJECT can be a symbol defined as a function, or a function itself | |
420 \(a lambda expression or a compiled-function object). | |
421 If OBJECT is not already compiled, we compile it, but do not | |
422 redefine OBJECT if it is a symbol." t nil) | |
423 | |
424 ;;;*** | |
425 | |
426 ;;;*** | |
427 | |
428 ;;;### (autoloads nil "appt" "calendar/appt.el" (12983 25882)) | |
429 ;;; Generated autoloads from calendar/appt.el | |
430 | |
431 ;;;*** | |
432 | |
433 ;;;### (autoloads nil "cal-dst" "calendar/cal-dst.el" (12983 25884)) | |
434 ;;; Generated autoloads from calendar/cal-dst.el | |
435 | |
436 (put 'calendar-daylight-savings-starts 'risky-local-variable t) | |
437 | |
438 (put 'calendar-daylight-savings-ends 'risky-local-variable t) | |
439 | |
440 ;;;*** | |
441 | |
442 ;;;### (autoloads nil "cal-french" "calendar/cal-french.el" (12983 25883)) | |
443 ;;; Generated autoloads from calendar/cal-french.el | |
444 | |
445 ;;;*** | |
446 | |
447 ;;;### (autoloads nil "cal-mayan" "calendar/cal-mayan.el" (12983 25883)) | |
448 ;;; Generated autoloads from calendar/cal-mayan.el | |
449 | |
450 ;;;### (autoloads nil "cal-x" "calendar/cal-x.el" (12983 25884)) | |
451 ;;; Generated autoloads from calendar/cal-x.el | |
452 | |
453 (defvar calendar-setup 'one-frame "\ | |
454 The frame set up of the calendar. | |
455 The choices are `one-frame' (calendar and diary together in one separate, | |
456 dediciated frame) or `two-frames' (calendar and diary in separate, dedicated | |
457 frames); with any other value the current frame is used.") | |
458 | |
459 ;;;*** | |
460 | |
461 ;;;*** | |
462 | |
463 ;;;### (autoloads nil "cal-xemacs" "calendar/cal-xemacs.el" (12983 25884)) | |
464 ;;; Generated autoloads from calendar/cal-xemacs.el | |
465 | |
466 ;;;### (autoloads (list-yahrzeit-dates calendar) "calendar" "calendar/calendar.el" (12983 26740)) | |
467 ;;; Generated autoloads from calendar/calendar.el | |
468 | |
469 (defvar calendar-week-start-day 0 "\ | |
470 *The day of the week on which a week in the calendar begins. | |
471 0 means Sunday (default), 1 means Monday, and so on.") | |
472 | |
473 (defvar calendar-offset 0 "\ | |
474 *The offset of the principal month from the center of the calendar window. | |
475 0 means the principal month is in the center (default), -1 means on the left, | |
476 +1 means on the right. Larger (or smaller) values push the principal month off | |
477 the screen.") | |
478 | |
479 (defvar view-diary-entries-initially nil "\ | |
480 *Non-nil means display current date's diary entries on entry. | |
481 The diary is displayed in another window when the calendar is first displayed, | |
482 if the current date is visible. The number of days of diary entries displayed | |
483 is governed by the variable `number-of-diary-entries'.") | |
484 | |
485 (defvar number-of-diary-entries 1 "\ | |
486 *Specifies how many days of diary entries are to be displayed initially. | |
487 This variable affects the diary display when the command M-x diary is used, | |
488 or if the value of the variable `view-diary-entries-initially' is t. For | |
489 example, if the default value 1 is used, then only the current day's diary | |
490 entries will be displayed. If the value 2 is used, then both the current | |
491 day's and the next day's entries will be displayed. | |
492 | |
493 The value can also be a vector such as [0 2 2 2 2 4 1]; this value | |
494 says to display no diary entries on Sunday, the display the entries | |
495 for the current date and the day after on Monday through Thursday, | |
496 display Friday through Monday's entries on Friday, and display only | |
497 Saturday's entries on Saturday. | |
498 | |
499 This variable does not affect the diary display with the `d' command | |
500 from the calendar; in that case, the prefix argument controls the | |
501 number of days of diary entries displayed.") | |
502 | |
503 (defvar mark-diary-entries-in-calendar nil "\ | |
504 *Non-nil means mark dates with diary entries, in the calendar window. | |
505 The marking symbol is specified by the variable `diary-entry-marker'.") | |
506 | |
507 (defvar view-calendar-holidays-initially nil "\ | |
508 *Non-nil means display holidays for current three month period on entry. | |
509 The holidays are displayed in another window when the calendar is first | |
510 displayed.") | |
511 | |
512 (defvar mark-holidays-in-calendar nil "\ | |
513 *Non-nil means mark dates of holidays in the calendar window. | |
514 The marking symbol is specified by the variable `calendar-holiday-marker'.") | |
515 | |
516 (defvar all-hebrew-calendar-holidays nil "\ | |
517 *If nil, show only major holidays from the Hebrew calendar. | |
518 This means only those Jewish holidays that appear on secular calendars. | |
519 | |
520 If t, show all the holidays that would appear in a complete Hebrew calendar.") | |
521 | |
522 (defvar all-christian-calendar-holidays nil "\ | |
523 *If nil, show only major holidays from the Christian calendar. | |
524 This means only those Christian holidays that appear on secular calendars. | |
525 | |
526 If t, show all the holidays that would appear in a complete Christian | |
527 calendar.") | |
528 | |
529 (defvar all-islamic-calendar-holidays nil "\ | |
530 *If nil, show only major holidays from the Islamic calendar. | |
531 This means only those Islamic holidays that appear on secular calendars. | |
532 | |
533 If t, show all the holidays that would appear in a complete Islamic | |
534 calendar.") | |
535 | |
536 (defvar calendar-load-hook nil "\ | |
537 *List of functions to be called after the calendar is first loaded. | |
538 This is the place to add key bindings to `calendar-mode-map'.") | |
539 | |
540 (defvar initial-calendar-window-hook nil "\ | |
541 *List of functions to be called when the calendar window is first opened. | |
542 The functions invoked are called after the calendar window is opened, but | |
543 once opened is never called again. Leaving the calendar with the `q' command | |
544 and reentering it will cause these functions to be called again.") | |
545 | |
546 (defvar today-visible-calendar-hook nil "\ | |
547 *List of functions called whenever the current date is visible. | |
548 This can be used, for example, to replace today's date with asterisks; a | |
549 function `calendar-star-date' is included for this purpose: | |
550 (setq today-visible-calendar-hook 'calendar-star-date) | |
551 It can also be used to mark the current date with `calendar-today-marker'; | |
552 a function is also provided for this: | |
553 (setq today-visible-calendar-hook 'calendar-mark-today) | |
554 | |
555 The corresponding variable `today-invisible-calendar-hook' is the list of | |
556 functions called when the calendar function was called when the current | |
557 date is not visible in the window. | |
558 | |
559 Other than the use of the provided functions, the changing of any | |
560 characters in the calendar buffer by the hooks may cause the failure of the | |
561 functions that move by days and weeks.") | |
562 | |
563 (defvar today-invisible-calendar-hook nil "\ | |
564 *List of functions called whenever the current date is not visible. | |
565 | |
566 The corresponding variable `today-visible-calendar-hook' is the list of | |
567 functions called when the calendar function was called when the current | |
568 date is visible in the window. | |
569 | |
570 Other than the use of the provided functions, the changing of any | |
571 characters in the calendar buffer by the hooks may cause the failure of the | |
572 functions that move by days and weeks.") | |
573 | |
574 (defvar diary-file "~/diary" "\ | |
575 *Name of the file in which one's personal diary of dates is kept. | |
576 | |
577 The file's entries are lines in any of the forms | |
578 | |
579 MONTH/DAY | |
580 MONTH/DAY/YEAR | |
581 MONTHNAME DAY | |
582 MONTHNAME DAY, YEAR | |
583 DAYNAME | |
584 | |
585 at the beginning of the line; the remainder of the line is the diary entry | |
586 string for that date. MONTH and DAY are one or two digit numbers, YEAR is | |
587 a number and may be written in full or abbreviated to the final two digits. | |
588 If the date does not contain a year, it is generic and applies to any year. | |
589 DAYNAME entries apply to any date on which is on that day of the week. | |
590 MONTHNAME and DAYNAME can be spelled in full, abbreviated to three | |
591 characters (with or without a period), capitalized or not. Any of DAY, | |
592 MONTH, or MONTHNAME, YEAR can be `*' which matches any day, month, or year, | |
593 respectively. | |
594 | |
595 The European style (in which the day precedes the month) can be used | |
596 instead, if you execute `european-calendar' when in the calendar, or set | |
597 `european-calendar-style' to t in your .emacs file. The European forms are | |
598 | |
599 DAY/MONTH | |
600 DAY/MONTH/YEAR | |
601 DAY MONTHNAME | |
602 DAY MONTHNAME YEAR | |
603 DAYNAME | |
604 | |
605 To revert to the default American style from the European style, execute | |
606 `american-calendar' in the calendar. | |
607 | |
608 A diary entry can be preceded by the character | |
609 `diary-nonmarking-symbol' (ordinarily `&') to make that entry | |
610 nonmarking--that is, it will not be marked on dates in the calendar | |
611 window but will appear in a diary window. | |
612 | |
613 Multiline diary entries are made by indenting lines after the first with | |
614 either a TAB or one or more spaces. | |
615 | |
616 Lines not in one the above formats are ignored. Here are some sample diary | |
617 entries (in the default American style): | |
618 | |
619 12/22/1988 Twentieth wedding anniversary!! | |
620 &1/1. Happy New Year! | |
621 10/22 Ruth's birthday. | |
622 21: Payday | |
623 Tuesday--weekly meeting with grad students at 10am | |
624 Supowit, Shen, Bitner, and Kapoor to attend. | |
625 1/13/89 Friday the thirteenth!! | |
626 &thu 4pm squash game with Lloyd. | |
627 mar 16 Dad's birthday | |
628 April 15, 1989 Income tax due. | |
629 &* 15 time cards due. | |
630 | |
631 If the first line of a diary entry consists only of the date or day name with | |
632 no trailing blanks or punctuation, then that line is not displayed in the | |
633 diary window; only the continuation lines is shown. For example, the | |
634 single diary entry | |
635 | |
636 02/11/1989 | |
637 Bill Blattner visits Princeton today | |
638 2pm Cognitive Studies Committee meeting | |
639 2:30-5:30 Lizzie at Lawrenceville for `Group Initiative' | |
640 4:00pm Jamie Tappenden | |
641 7:30pm Dinner at George and Ed's for Alan Ryan | |
642 7:30-10:00pm dance at Stewart Country Day School | |
643 | |
644 will appear in the diary window without the date line at the beginning. This | |
645 facility allows the diary window to look neater, but can cause confusion if | |
646 used with more than one day's entries displayed. | |
647 | |
648 Diary entries can be based on Lisp sexps. For example, the diary entry | |
649 | |
650 %%(diary-block 11 1 1990 11 10 1990) Vacation | |
651 | |
652 causes the diary entry \"Vacation\" to appear from November 1 through November | |
653 10, 1990. Other functions available are `diary-float', `diary-anniversary', | |
654 `diary-cyclic', `diary-day-of-year', `diary-iso-date', `diary-french-date', | |
655 `diary-hebrew-date', `diary-islamic-date', `diary-mayan-date', | |
656 `diary-yahrzeit', `diary-sunrise-sunset', `diary-phases-of-moon', | |
657 `diary-parasha', `diary-omer', `diary-rosh-hodesh', and | |
658 `diary-sabbath-candles'. See the documentation for the function | |
659 `list-sexp-diary-entries' for more details. | |
660 | |
661 Diary entries based on the Hebrew and/or the Islamic calendar are also | |
662 possible, but because these are somewhat slow, they are ignored | |
663 unless you set the `nongregorian-diary-listing-hook' and the | |
664 `nongregorian-diary-marking-hook' appropriately. See the documentation | |
665 for these functions for details. | |
666 | |
667 Diary files can contain directives to include the contents of other files; for | |
668 details, see the documentation for the variable `list-diary-entries-hook'.") | |
669 | |
670 (defvar diary-nonmarking-symbol "&" "\ | |
671 *Symbol indicating that a diary entry is not to be marked in the calendar.") | |
672 | |
673 (defvar hebrew-diary-entry-symbol "H" "\ | |
674 *Symbol indicating a diary entry according to the Hebrew calendar.") | |
675 | |
676 (defvar islamic-diary-entry-symbol "I" "\ | |
677 *Symbol indicating a diary entry according to the Islamic calendar.") | |
678 | |
679 (defvar diary-include-string "#include" "\ | |
680 *The string indicating inclusion of another file of diary entries. | |
681 See the documentation for the function `include-other-diary-files'.") | |
682 | |
683 (defvar sexp-diary-entry-symbol "%%" "\ | |
684 *The string used to indicate a sexp diary entry in diary-file. | |
685 See the documentation for the function `list-sexp-diary-entries'.") | |
686 | |
687 (defvar abbreviated-calendar-year t "\ | |
688 *Interpret a two-digit year DD in a diary entry as either 19DD or 20DD. | |
689 For the Gregorian calendar; similarly for the Hebrew and Islamic calendars. | |
690 If this variable is nil, years must be written in full.") | |
691 | |
692 (defvar european-calendar-style nil "\ | |
693 *Use the European style of dates in the diary and in any displays. | |
694 If this variable is t, a date 1/2/1990 would be interpreted as February 1, | |
695 1990. The accepted European date styles are | |
696 | |
697 DAY/MONTH | |
698 DAY/MONTH/YEAR | |
699 DAY MONTHNAME | |
700 DAY MONTHNAME YEAR | |
701 DAYNAME | |
702 | |
703 Names can be capitalized or not, written in full, or abbreviated to three | |
704 characters with or without a period.") | |
705 | |
706 (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")) "\ | |
707 *List of pseudo-patterns describing the American patterns of date used. | |
708 See the documentation of `diary-date-forms' for an explanation.") | |
709 | |
710 (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")) "\ | |
711 *List of pseudo-patterns describing the European patterns of date used. | |
712 See the documentation of `diary-date-forms' for an explanation.") | |
713 | |
714 (defvar european-calendar-display-form '((if dayname (concat dayname ", ")) day " " monthname " " year) "\ | |
715 *Pseudo-pattern governing the way a date appears in the European style. | |
716 See the documentation of calendar-date-display-form for an explanation.") | |
717 | |
718 (defvar american-calendar-display-form '((if dayname (concat dayname ", ")) monthname " " day ", " year) "\ | |
719 *Pseudo-pattern governing the way a date appears in the American style. | |
720 See the documentation of `calendar-date-display-form' for an explanation.") | |
721 | |
722 (defvar print-diary-entries-hook 'lpr-buffer "\ | |
723 *List of functions called after a temporary diary buffer is prepared. | |
724 The buffer shows only the diary entries currently visible in the diary | |
725 buffer. The default just does the printing. Other uses might include, for | |
726 example, rearranging the lines into order by day and time, saving the buffer | |
727 instead of deleting it, or changing the function used to do the printing.") | |
728 | |
729 (defvar list-diary-entries-hook nil "\ | |
730 *List of functions called after diary file is culled for relevant entries. | |
731 It is to be used for diary entries that are not found in the diary file. | |
732 | |
733 A function `include-other-diary-files' is provided for use as the value of | |
734 this hook. This function enables you to use shared diary files together | |
735 with your own. The files included are specified in the diary file by lines | |
736 of the form | |
737 | |
738 #include \"filename\" | |
739 | |
740 This is recursive; that is, #include directives in files thus included are | |
741 obeyed. You can change the \"#include\" to some other string by changing | |
742 the variable `diary-include-string'. When you use `include-other-diary-files' | |
743 as part of the list-diary-entries-hook, you will probably also want to use the | |
744 function `mark-included-diary-files' as part of `mark-diary-entries-hook'. | |
745 | |
746 For example, you could use | |
747 | |
748 (setq list-diary-entries-hook | |
749 '(include-other-diary-files sort-diary-entries)) | |
750 (setq diary-display-hook 'fancy-diary-display) | |
751 | |
752 in your `.emacs' file to cause the fancy diary buffer to be displayed with | |
753 diary entries from various included files, each day's entries sorted into | |
754 lexicographic order.") | |
755 | |
756 (defvar diary-hook nil "\ | |
757 *List of functions called after the display of the diary. | |
758 Can be used for appointment notification.") | |
759 | |
760 (defvar diary-display-hook nil "\ | |
761 *List of functions that handle the display of the diary. | |
762 If nil (the default), `simple-diary-display' is used. Use `ignore' for no | |
763 diary display. | |
764 | |
765 Ordinarily, this just displays the diary buffer (with holidays indicated in | |
766 the mode line), if there are any relevant entries. At the time these | |
767 functions are called, the variable `diary-entries-list' is a list, in order | |
768 by date, of all relevant diary entries in the form of ((MONTH DAY YEAR) | |
769 STRING), where string is the diary entry for the given date. This can be | |
770 used, for example, a different buffer for display (perhaps combined with | |
771 holidays), or produce hard copy output. | |
772 | |
773 A function `fancy-diary-display' is provided as an alternative | |
774 choice for this hook; this function prepares a special noneditable diary | |
775 buffer with the relevant diary entries that has neat day-by-day arrangement | |
776 with headings. The fancy diary buffer will show the holidays unless the | |
777 variable `holidays-in-diary-buffer' is set to nil. Ordinarily, the fancy | |
778 diary buffer will not show days for which there are no diary entries, even | |
779 if that day is a holiday; if you want such days to be shown in the fancy | |
780 diary buffer, set the variable `diary-list-include-blanks' to t.") | |
781 | |
782 (defvar nongregorian-diary-listing-hook nil "\ | |
783 *List of functions called for listing diary file and included files. | |
784 As the files are processed for diary entries, these functions are used to cull | |
785 relevant entries. You can use either or both of `list-hebrew-diary-entries' | |
786 and `list-islamic-diary-entries'. The documentation for these functions | |
787 describes the style of such diary entries.") | |
788 | |
789 (defvar mark-diary-entries-hook nil "\ | |
790 *List of functions called after marking diary entries in the calendar. | |
791 | |
792 A function `mark-included-diary-files' is also provided for use as the | |
793 mark-diary-entries-hook; it enables you to use shared diary files together | |
794 with your own. The files included are specified in the diary file by lines | |
795 of the form | |
796 #include \"filename\" | |
797 This is recursive; that is, #include directives in files thus included are | |
798 obeyed. You can change the \"#include\" to some other string by changing the | |
799 variable `diary-include-string'. When you use `mark-included-diary-files' as | |
800 part of the mark-diary-entries-hook, you will probably also want to use the | |
801 function `include-other-diary-files' as part of `list-diary-entries-hook'.") | |
802 | |
803 (defvar nongregorian-diary-marking-hook nil "\ | |
804 *List of functions called for marking diary file and included files. | |
805 As the files are processed for diary entries, these functions are used to cull | |
806 relevant entries. You can use either or both of `mark-hebrew-diary-entries' | |
807 and `mark-islamic-diary-entries'. The documentation for these functions | |
808 describes the style of such diary entries.") | |
809 | |
810 (defvar diary-list-include-blanks nil "\ | |
811 *If nil, do not include days with no diary entry in the list of diary entries. | |
812 Such days will then not be shown in the fancy diary buffer, even if they | |
813 are holidays.") | |
814 | |
815 (defvar holidays-in-diary-buffer t "\ | |
816 *Non-nil means include holidays in the diary display. | |
817 The holidays appear in the mode line of the diary buffer, or in the | |
818 fancy diary buffer next to the date. This slows down the diary functions | |
819 somewhat; setting it to nil makes the diary display faster.") | |
820 | |
821 (put 'general-holidays 'risky-local-variable t) | |
822 | |
823 (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")) "\ | |
824 *General holidays. Default value is for the United States. | |
825 See the documentation for `calendar-holidays' for details.") | |
826 | |
827 (put 'local-holidays 'risky-local-variable t) | |
828 | |
829 (defvar local-holidays nil "\ | |
830 *Local holidays. | |
831 See the documentation for `calendar-holidays' for details.") | |
832 | |
833 (put 'other-holidays 'risky-local-variable t) | |
834 | |
835 (defvar other-holidays nil "\ | |
836 *User defined holidays. | |
837 See the documentation for `calendar-holidays' for details.") | |
838 | |
839 (put 'hebrew-holidays-1 'risky-local-variable t) | |
840 | |
841 (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)")))) | |
842 | |
843 (put 'hebrew-holidays-2 'risky-local-variable t) | |
844 | |
845 (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")))) | |
846 | |
847 (put 'hebrew-holidays-3 'risky-local-variable t) | |
848 | |
849 (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")))) | |
850 | |
851 (put 'hebrew-holidays-4 'risky-local-variable t) | |
852 | |
853 (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)))) | |
854 | |
855 (put 'hebrew-holidays 'risky-local-variable t) | |
856 | |
857 (defvar hebrew-holidays (append hebrew-holidays-1 hebrew-holidays-2 hebrew-holidays-3 hebrew-holidays-4) "\ | |
858 *Jewish holidays. | |
859 See the documentation for `calendar-holidays' for details.") | |
860 | |
861 (put 'christian-holidays 'risky-local-variable t) | |
862 | |
863 (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"))) "\ | |
864 *Christian holidays. | |
865 See the documentation for `calendar-holidays' for details.") | |
866 | |
867 (put 'islamic-holidays 'risky-local-variable t) | |
868 | |
869 (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"))) "\ | |
870 *Islamic holidays. | |
871 See the documentation for `calendar-holidays' for details.") | |
872 | |
873 (put 'solar-holidays 'risky-local-variable t) | |
874 | |
875 (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) "")))) "\ | |
876 *Sun-related holidays. | |
877 See the documentation for `calendar-holidays' for details.") | |
878 | |
879 (put 'calendar-holidays 'risky-local-variable t) | |
880 | |
881 (autoload 'calendar "calendar" "\ | |
882 Display a three-month calendar in another window. | |
883 The three months appear side by side, with the current month in the middle | |
884 surrounded by the previous and next months. The cursor is put on today's date. | |
885 | |
886 If called with an optional prefix argument, prompts for month and year. | |
887 | |
888 This function is suitable for execution in a .emacs file; appropriate setting | |
889 of the variable `view-diary-entries-initially' will cause the diary entries for | |
890 the current date to be displayed in another window. The value of the variable | |
891 `number-of-diary-entries' controls the number of days of diary entries | |
892 displayed upon initial display of the calendar. | |
893 | |
894 An optional prefix argument ARG causes the calendar displayed to be ARG | |
895 months in the future if ARG is positive or in the past if ARG is negative; | |
896 in this case the cursor goes on the first day of the month. | |
897 | |
898 Once in the calendar window, future or past months can be moved into view. | |
899 Arbitrary months can be displayed, or the calendar can be scrolled forward | |
900 or backward. | |
901 | |
902 The cursor can be moved forward or backward by one day, one week, one month, | |
903 or one year. All of these commands take prefix arguments which, when negative, | |
904 cause movement in the opposite direction. For convenience, the digit keys | |
905 and the minus sign are automatically prefixes. The window is replotted as | |
906 necessary to display the desired date. | |
907 | |
908 Diary entries can be marked on the calendar or displayed in another window. | |
909 | |
910 Use M-x describe-mode for details of the key bindings in the calendar window. | |
911 | |
912 The Gregorian calendar is assumed. | |
913 | |
914 After loading the calendar, the hooks given by the variable | |
915 `calendar-load-hook' are run. This is the place to add key bindings to the | |
916 calendar-mode-map. | |
917 | |
918 After preparing the calendar window initially, the hooks given by the variable | |
919 `initial-calendar-window-hook' are run. | |
920 | |
921 The hooks given by the variable `today-visible-calendar-hook' are run | |
922 everytime the calendar window gets scrolled, if the current date is visible | |
923 in the window. If it is not visible, the hooks given by the variable | |
924 `today-invisible-calendar-hook' are run. Thus, for example, setting | |
925 `today-visible-calendar-hook' to 'calendar-star-date will cause today's date | |
926 to be replaced by asterisks to highlight it whenever it is in the window." t nil) | |
927 | |
928 (autoload 'list-yahrzeit-dates "calendar" "\ | |
929 List Yahrzeit dates for *Gregorian* DEATH-DATE from START-YEAR to END-YEAR. | |
930 When called interactively from the calendar window, the date of death is taken | |
931 from the cursor position." t nil) | |
932 | |
933 ;;;*** | |
934 | |
935 ;;;*** | |
936 | |
937 ;;;### (autoloads nil "diary-ins" "calendar/diary-ins.el" (12983 25884)) | |
938 ;;; Generated autoloads from calendar/diary-ins.el | |
939 | |
940 ;;;### (autoloads (diary) "diary-lib" "calendar/diary-lib.el" (12983 25884)) | |
941 ;;; Generated autoloads from calendar/diary-lib.el | |
942 | |
943 (autoload 'diary "diary-lib" "\ | |
944 Generate the diary window for ARG days starting with the current date. | |
945 If no argument is provided, the number of days of diary entries is governed | |
946 by the variable `number-of-diary-entries'. This function is suitable for | |
947 execution in a `.emacs' file." t nil) | |
948 | |
949 ;;;*** | |
950 | |
951 ;;;### (autoloads (holidays) "holidays" "calendar/holidays.el" (12983 25884)) | |
952 ;;; Generated autoloads from calendar/holidays.el | |
953 | |
954 (autoload 'holidays "holidays" "\ | |
955 Display the holidays for last month, this month, and next month. | |
956 If called with an optional prefix argument, prompts for month and year. | |
957 | |
958 This function is suitable for execution in a .emacs file." t nil) | |
959 | |
960 ;;;*** | |
961 | |
962 ;;;### (autoloads (phases-of-moon) "lunar" "calendar/lunar.el" (12983 25884)) | |
963 ;;; Generated autoloads from calendar/lunar.el | |
964 | |
965 (autoload 'phases-of-moon "lunar" "\ | |
966 Display the quarters of the moon for last month, this month, and next month. | |
967 If called with an optional prefix argument, prompts for month and year. | |
968 | |
969 This function is suitable for execution in a .emacs file." t nil) | |
970 | |
971 ;;;*** | |
972 | |
973 ;;;### (autoloads (solar-equinoxes-solstices sunrise-sunset) "solar" "calendar/solar.el" (12983 25884)) | |
974 ;;; Generated autoloads from calendar/solar.el | |
975 | |
976 (defvar calendar-time-display-form '(12-hours ":" minutes am-pm (if time-zone " (") time-zone (if time-zone ")")) "\ | |
977 *The pseudo-pattern that governs the way a time of day is formatted. | |
978 | |
979 A pseudo-pattern is a list of expressions that can involve the keywords | |
980 `12-hours', `24-hours', and `minutes', all numbers in string form, | |
981 and `am-pm' and `time-zone', both alphabetic strings. | |
982 | |
983 For example, the form | |
984 | |
985 '(24-hours \":\" minutes | |
986 (if time-zone \" (\") time-zone (if time-zone \")\")) | |
987 | |
988 would give military-style times like `21:07 (UTC)'.") | |
989 | |
990 (defvar calendar-latitude nil "\ | |
991 *Latitude of `calendar-location-name' in degrees. | |
992 | |
993 The value can be either a decimal fraction (one place of accuracy is | |
994 sufficient), + north, - south, such as 40.7 for New York City, or the value | |
995 can be a vector [degrees minutes north/south] such as [40 50 north] for New | |
996 York City. | |
997 | |
998 This variable should be set in site-local.el.") | |
999 | |
1000 (defvar calendar-longitude nil "\ | |
1001 *Longitude of `calendar-location-name' in degrees. | |
1002 | |
1003 The value can be either a decimal fraction (one place of accuracy is | |
1004 sufficient), + east, - west, such as -73.9 for New York City, or the value | |
1005 can be a vector [degrees minutes east/west] such as [73 55 west] for New | |
1006 York City. | |
1007 | |
1008 This variable should be set in site-local.el.") | |
1009 | |
1010 (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")))) "\ | |
1011 *Expression evaluating to name of `calendar-longitude', calendar-latitude'. | |
1012 For example, \"New York City\". Default value is just the latitude, longitude | |
1013 pair. | |
1014 | |
1015 This variable should be set in site-local.el.") | |
1016 | |
1017 (autoload 'sunrise-sunset "solar" "\ | |
1018 Local time of sunrise and sunset for today. Accurate to +/- 2 minutes. | |
1019 If called with an optional prefix argument, prompt for date. | |
1020 | |
1021 If called with an optional double prefix argument, prompt for longitude, | |
1022 latitude, time zone, and date, and always use standard time. | |
1023 | |
1024 This function is suitable for execution in a .emacs file." t nil) | |
1025 | |
1026 (autoload 'solar-equinoxes-solstices "solar" "\ | |
1027 Date and time of equinoxes and solstices, if visible in the calendar window. | |
1028 Requires floating point." nil nil) | |
1029 | |
1030 ;;;*** | |
1031 | |
1032 ;;;*** | |
1033 | |
1034 ;;;*** | |
1035 | |
1036 ;;;### (autoloads nil "cl-autoload" "cl/cl-autoload.el" (12983 26938)) | |
1037 ;;; Generated autoloads from cl/cl-autoload.el | |
1038 | |
1039 ;;;*** | |
1040 | |
1041 ;;;### (autoloads nil "cl-compat" "cl/cl-compat.el" (12983 26937)) | |
1042 ;;; Generated autoloads from cl/cl-compat.el | |
1043 | |
1044 ;;;*** | |
1045 | |
1046 ;;;*** | |
1047 | |
1048 ;;;*** | |
1049 | |
1050 ;;;### (autoloads nil "cl-defs" "cl/cl-defs.el" (12983 26219)) | |
1051 ;;; Generated autoloads from cl/cl-defs.el | |
1052 | |
1053 ;;;*** | |
1054 | |
1055 ;;;### (autoloads nil "cl-extra" "cl/cl-extra.el" (12983 26937)) | |
1056 ;;; Generated autoloads from cl/cl-extra.el | |
1057 | |
1058 ;;;*** | |
1059 | |
1060 ;;;### (autoloads nil "cl-macs" "cl/cl-macs.el" (12983 26937)) | |
1061 ;;; Generated autoloads from cl/cl-macs.el | |
1062 | |
1063 ;;;*** | |
1064 | |
1065 ;;;### (autoloads nil "cl-seq" "cl/cl-seq.el" (12983 26938)) | |
1066 ;;; Generated autoloads from cl/cl-seq.el | |
1067 | |
1068 ;;;*** | |
1069 | |
1070 ;;;### (autoloads nil "cl" "cl/cl.el" (12983 26938)) | |
1071 ;;; Generated autoloads from cl/cl.el | |
1072 | |
1073 ;;;*** | |
1074 | |
1075 ;;;### (autoloads nil "background" "comint/background.el" (12983 27251)) | |
1076 ;;; Generated autoloads from comint/background.el | |
1077 | |
1078 ;;;*** | |
1079 | |
1080 ;;;### (autoloads (comint-dynamic-list-completions comint-dynamic-complete comint-run make-comint) "comint" "comint/comint.el" (12983 26743)) | |
1081 ;;; Generated autoloads from comint/comint.el | |
1082 | |
1083 (autoload 'make-comint "comint" "\ | |
1084 Make a comint process NAME in a buffer, running PROGRAM. | |
1085 The name of the buffer is made by surrounding NAME with `*'s. | |
1086 PROGRAM should be either a string denoting an executable program to create | |
1087 via `start-process', or a cons pair of the form (HOST . SERVICE) denoting a TCP | |
1088 connection to be opened via `open-network-stream'. If there is already a | |
1089 running process in that buffer, it is not restarted. Optional third arg | |
1090 STARTFILE is the name of a file to send the contents of to the process. | |
1091 | |
1092 If PROGRAM is a string, any more args are arguments to PROGRAM." nil nil) | |
1093 | |
1094 (autoload 'comint-run "comint" "\ | |
1095 Run PROGRAM in a comint buffer and switch to it. | |
1096 The buffer name is made by surrounding the file name of PROGRAM with `*'s. | |
1097 The file name is used to make a symbol name, such as `comint-sh-hook', and any | |
1098 hooks on this symbol are run in the buffer. | |
1099 See `make-comint' and `comint-exec'." t nil) | |
1100 | |
1101 (autoload 'comint-dynamic-complete "comint" "\ | |
1102 Dynamically perform completion at point. | |
1103 Calls the functions in `comint-dynamic-complete-functions' to perform | |
1104 completion until a function returns non-nil, at which point completion is | |
1105 assumed to have occurred." t nil) | |
1106 | |
1107 (autoload 'comint-dynamic-list-completions "comint" "\ | |
1108 List in help buffer sorted COMPLETIONS. | |
1109 Typing SPC flushes the help buffer." nil nil) | |
1110 | |
1111 ;;;*** | |
1112 | |
1113 ;;;*** | |
1114 | |
1115 ;;;### (autoloads nil "dbx" "comint/dbx.el" (12983 27251)) | |
1116 ;;; Generated autoloads from comint/dbx.el | |
1117 | |
1118 ;;;### (autoloads (gdb) "gdb" "comint/gdb.el" (12983 27252)) | |
1119 ;;; Generated autoloads from comint/gdb.el | |
1120 | |
1121 (defvar gdb-command-name "gdb" "\ | |
1122 Pathname for executing gdb.") | |
1123 | |
1124 (autoload 'gdb "gdb" "\ | |
1125 Run gdb on program FILE in buffer *gdb-FILE*. | |
1126 The directory containing FILE becomes the initial working directory | |
1127 and source-file directory for GDB. If you wish to change this, use | |
1128 the GDB commands `cd DIR' and `directory'." t nil) | |
1129 | |
1130 ;;;*** | |
1131 | |
1132 ;;;### (autoloads (gdbsrc) "gdbsrc" "comint/gdbsrc.el" (12983 27253)) | |
1133 ;;; Generated autoloads from comint/gdbsrc.el | |
1134 | |
1135 (autoload 'gdbsrc "gdbsrc" "\ | |
1136 Activates a gdb session with gdbsrc-mode turned on. A numeric prefix | |
1137 argument can be used to specify a running process to attach, and a non-numeric | |
1138 prefix argument will cause you to be prompted for a core file to debug." t nil) | |
1139 | |
1140 ;;;*** | |
1141 | |
1142 ;;;### (autoloads (perldb xdb dbx sdb) "gud" "comint/gud.el" (12983 26744)) | |
1143 ;;; Generated autoloads from comint/gud.el | |
1144 | |
1145 (autoload 'sdb "gud" "\ | |
1146 Run sdb on program FILE in buffer *gud-FILE*. | |
1147 The directory containing FILE becomes the initial working directory | |
1148 and source-file directory for your debugger." t nil) | |
1149 | |
1150 (autoload 'dbx "gud" "\ | |
1151 Run dbx on program FILE in buffer *gud-FILE*. | |
1152 The directory containing FILE becomes the initial working directory | |
1153 and source-file directory for your debugger." t nil) | |
1154 | |
1155 (autoload 'xdb "gud" "\ | |
1156 Run xdb on program FILE in buffer *gud-FILE*. | |
1157 The directory containing FILE becomes the initial working directory | |
1158 and source-file directory for your debugger. | |
1159 | |
1160 You can set the variable 'gud-xdb-directories' to a list of program source | |
1161 directories if your program contains sources from more than one directory." t nil) | |
1162 | |
1163 (autoload 'perldb "gud" "\ | |
1164 Run perldb on program FILE in buffer *gud-FILE*. | |
1165 The directory containing FILE becomes the initial working directory | |
1166 and source-file directory for your debugger." t nil) | |
1167 | |
1168 ;;;*** | |
1169 | |
1170 ;;;*** | |
1171 | |
1172 ;;;*** | |
1173 | |
1174 ;;;### (autoloads nil "history" "comint/history.el" (12983 27252)) | |
1175 ;;; Generated autoloads from comint/history.el | |
1176 | |
1177 ;;;### (autoloads nil "inf-lisp" "comint/inf-lisp.el" (12983 25889)) | |
1178 ;;; Generated autoloads from comint/inf-lisp.el | |
1179 | |
1180 (add-hook 'same-window-buffer-names "*inferior-lisp*") | |
1181 | |
1182 ;;;*** | |
1183 | |
1184 ;;;*** | |
1185 | |
1186 ;;;### (autoloads nil "kermit" "comint/kermit.el" (12983 26743)) | |
1187 ;;; Generated autoloads from comint/kermit.el | |
1188 | |
1189 ;;;### (autoloads (rlogin) "rlogin" "comint/rlogin.el" (12983 25891)) | |
1190 ;;; Generated autoloads from comint/rlogin.el | |
1191 | |
1192 (add-hook 'same-window-regexps "^\\*rlogin-.*\\*\\(\\|<[0-9]+>\\)") | |
1193 | |
1194 (autoload 'rlogin "rlogin" "\ | |
1195 Open a network login connection to HOST via the `rlogin' program. | |
1196 Input is sent line-at-a-time to the remote connection. | |
1197 | |
1198 Communication with the remote host is recorded in a buffer `*rlogin-HOST*' | |
1199 \(or `*rlogin-USER@HOST*' if the remote username differs). | |
1200 If a prefix argument is given and the buffer `*rlogin-HOST*' already exists, | |
1201 a new buffer with a different connection will be made. | |
1202 | |
1203 When called from a program, if the optional second argument is a string or | |
1204 buffer, it names the buffer to use. | |
1205 | |
1206 The variable `rlogin-program' contains the name of the actual program to | |
1207 run. It can be a relative or absolute path. | |
1208 | |
1209 The variable `rlogin-explicit-args' is a list of arguments to give to | |
1210 the rlogin when starting. They are added after any arguments given in | |
1211 INPUT-ARGS. | |
1212 | |
1213 If the default value of `rlogin-directory-tracking-mode' is t, then the | |
1214 default directory in that buffer is set to a remote (FTP) file name to | |
1215 access your home directory on the remote machine. Occasionally this causes | |
1216 an error, if you cannot access the home directory on that machine. This | |
1217 error is harmless as long as you don't try to use that default directory. | |
1218 | |
1219 If `rlogin-directory-tracking-mode' is neither t nor nil, then the default | |
1220 directory is initially set up to your (local) home directory. | |
1221 This is useful if the remote machine and your local machine | |
1222 share the same files via NFS. This is the default. | |
1223 | |
1224 If you wish to change directory tracking styles during a session, use the | |
1225 function `rlogin-directory-tracking-mode' rather than simply setting the | |
1226 variable." t nil) | |
1227 | |
1228 ;;;*** | |
1229 | |
1230 ;;;### (autoloads (shell) "shell" "comint/shell.el" (12983 25888)) | |
1231 ;;; Generated autoloads from comint/shell.el | |
1232 | |
1233 (defvar shell-prompt-pattern (purecopy "^[^#$%>\n]*[#$%>] *") "\ | |
1234 Regexp to match prompts in the inferior shell. | |
1235 Defaults to \"^[^#$%>\\n]*[#$%>] *\", which works pretty well. | |
1236 This variable is used to initialise `comint-prompt-regexp' in the | |
1237 shell buffer. | |
1238 | |
1239 The pattern should probably not match more than one line. If it does, | |
1240 shell-mode may become confused trying to distinguish prompt from input | |
1241 on lines which don't start with a prompt. | |
1242 | |
1243 This is a fine thing to set in your `.emacs' file.") | |
1244 | |
1245 (autoload 'shell "shell" "\ | |
1246 Run an inferior shell, with I/O through buffer *shell*. | |
1247 If buffer exists but shell process is not running, make new shell. | |
1248 If buffer exists and shell process is running, | |
1249 just switch to buffer `*shell*'. | |
1250 Program used comes from variable `explicit-shell-file-name', | |
1251 or (if that is nil) from the ESHELL environment variable, | |
1252 or else from SHELL if there is no ESHELL. | |
1253 If a file `~/.emacs_SHELLNAME' exists, it is given as initial input | |
1254 (Note that this may lose due to a timing error if the shell | |
1255 discards input when it starts up.) | |
1256 The buffer is put in Shell mode, giving commands for sending input | |
1257 and controlling the subjobs of the shell. See `shell-mode'. | |
1258 See also the variable `shell-prompt-pattern'. | |
1259 | |
1260 The shell file name (sans directories) is used to make a symbol name | |
1261 such as `explicit-csh-args'. If that symbol is a variable, | |
1262 its value is used as a list of arguments when invoking the shell. | |
1263 Otherwise, one argument `-i' is passed to the shell. | |
1264 | |
1265 \(Type \\[describe-mode] in the shell buffer for a list of commands.)" t nil) | |
1266 | |
1267 (add-hook 'same-window-buffer-names "*shell*") | |
1268 | |
1269 ;;;*** | |
1270 | |
1271 ;;;### (autoloads (rsh telnet) "telnet" "comint/telnet.el" (12988 32984)) | |
1272 ;;; Generated autoloads from comint/telnet.el | |
1273 | |
1274 (add-hook 'same-window-regexps "\\*telnet-.*\\*\\(\\|<[0-9]+>\\)") | |
1275 | |
1276 (autoload 'telnet "telnet" "\ | |
1277 Open a network login connection to host named HOST (a string). | |
1278 With a prefix argument, prompts for the port name or number as well. | |
1279 Communication with HOST is recorded in a buffer `*HOST-telnet*'. | |
1280 Normally input is edited in Emacs and sent a line at a time. | |
1281 See also `\\[rsh]'." t nil) | |
1282 | |
1283 (add-hook 'same-window-regexps "\\*rsh-[^-]*\\*\\(\\|<[0-9]*>\\)") | |
1284 | |
1285 (autoload 'rsh "telnet" "\ | |
1286 Open a network login connection to host named HOST (a string). | |
1287 Communication with HOST is recorded in a buffer `*rsh-HOST*'. | |
1288 Normally input is edited in Emacs and sent a line at a time. | |
1289 See also `\\[telnet]'." t nil) | |
1290 | |
1291 ;;;*** | |
1292 | |
1293 ;;;### (autoloads (ange-ftp-hook-function) "ange-ftp" "dired/ange-ftp.el" (12983 27254)) | |
1294 ;;; Generated autoloads from dired/ange-ftp.el | |
1295 | |
1296 (defvar ange-ftp-path-format '("^/\\(\\([^@/:]*\\)@\\)?\\([^@/:]*\\):\\(.*\\)" 3 2 4) "\ | |
1297 *Format of a fully expanded remote pathname. This is a cons | |
1298 \(REGEXP . (HOST USER PATH)), where REGEXP is a regular expression matching | |
1299 the full remote pathname, and HOST, USER, and PATH are the numbers of | |
1300 parenthesized expressions in REGEXP for the components (in that order).") | |
1301 | |
1302 (autoload 'ange-ftp-hook-function "ange-ftp" nil nil nil) | |
1303 | |
1304 (or (assoc (car ange-ftp-path-format) file-name-handler-alist) (setq file-name-handler-alist (cons (cons (car ange-ftp-path-format) 'ange-ftp-hook-function) file-name-handler-alist))) | |
1305 | |
1306 ;;;*** | |
1307 | |
1308 ;;;*** | |
1309 | |
1310 ;;;### (autoloads nil "dired-cd" "dired/dired-cd.el" (12983 25891)) | |
1311 ;;; Generated autoloads from dired/dired-cd.el | |
1312 | |
1313 ;;;### (autoloads (dired-make-permissions-interactive) "dired-chmod" "dired/dired-chmod.el" (12983 26749)) | |
1314 ;;; Generated autoloads from dired/dired-chmod.el | |
1315 | |
1316 (autoload 'dired-make-permissions-interactive "dired-chmod" nil nil nil) | |
1317 | |
1318 ;;;*** | |
1319 | |
1320 ;;;*** | |
1321 | |
1322 ;;;### (autoloads (dired-cwd-make-magic) "dired-cwd" "dired/dired-cwd.el" (12983 25893)) | |
1323 ;;; Generated autoloads from dired/dired-cwd.el | |
1324 | |
1325 (autoload 'dired-cwd-make-magic "dired-cwd" "\ | |
1326 Modify COMMAND so that it's working directory is the current dired directory. | |
1327 This works by binding `default-directory' to `(default-directory)'s value. | |
1328 See also function `default-directory'." t nil) | |
1329 | |
1330 ;;;*** | |
1331 | |
1332 ;;;### (autoloads nil "dired-guess" "dired/dired-guess.el" (12983 25893)) | |
1333 ;;; Generated autoloads from dired/dired-guess.el | |
1334 | |
1335 ;;;*** | |
1336 | |
1337 ;;;### (autoloads nil "dired-link" "dired/dired-link.el" (12983 25891)) | |
1338 ;;; Generated autoloads from dired/dired-link.el | |
1339 | |
1340 ;;;*** | |
1341 | |
1342 ;;;### (autoloads nil "dired-lisp" "dired/dired-lisp.el" (12983 25893)) | |
1343 ;;; Generated autoloads from dired/dired-lisp.el | |
1344 | |
1345 ;;;*** | |
1346 | |
1347 ;;;### (autoloads nil "dired-nstd" "dired/dired-nstd.el" (12983 25893)) | |
1348 ;;; Generated autoloads from dired/dired-nstd.el | |
1349 | |
1350 ;;;*** | |
1351 | |
1352 ;;;### (autoloads nil "dired-trns" "dired/dired-trns.el" (12983 25893)) | |
1353 ;;; Generated autoloads from dired/dired-trns.el | |
1354 | |
1355 ;;;*** | |
1356 | |
1357 ;;;### (autoloads nil "dired-vms" "dired/dired-vms.el" (12983 25893)) | |
1358 ;;; Generated autoloads from dired/dired-vms.el | |
1359 | |
1360 ;;;*** | |
1361 | |
1362 ;;;### (autoloads nil "dired-xemacs-highlight" "dired/dired-xemacs-highlight.el" (12983 25897)) | |
1363 ;;; Generated autoloads from dired/dired-xemacs-highlight.el | |
1364 | |
1365 ;;;### (autoloads (dired-do-rename-list dired-do-rename-numeric) "dired-num" "dired/dired-num.el" (12983 25893)) | |
1366 ;;; Generated autoloads from dired/dired-num.el | |
1367 | |
1368 (autoload 'dired-do-rename-numeric "dired-num" "\ | |
1369 Rename all marked (or next ARG) files using numbers. | |
1370 You are prompted for a format string, e.g \"part_%d_of_8\", and a starting | |
1371 number, e.g. 1. If there are 8 marked files, this example will rename them to | |
1372 | |
1373 part_1_of_8 | |
1374 part_2_of_8 | |
1375 ... | |
1376 part_8_of_8" t nil) | |
1377 | |
1378 (autoload 'dired-do-rename-list "dired-num" "\ | |
1379 Rename all marked (or next ARG) files using elements from LIST. | |
1380 You are prompted for a format string, e.g \"x_%s\", and the list, | |
1381 e.g. '(foo bar zod). This example will rename the marked files to | |
1382 | |
1383 x_foo | |
1384 x_bar | |
1385 x_zod | |
1386 | |
1387 It is an error if LIST has not as many elements as there are files." t nil) | |
1388 | |
1389 ;;;*** | |
1390 | |
1391 ;;;### (autoloads (dired-rcs-mark-rcs-files dired-rcs-mark-rcs-locked-files) "dired-rcs" "dired/dired-rcs.el" (12983 25896)) | |
1392 ;;; Generated autoloads from dired/dired-rcs.el | |
1393 | |
1394 (autoload 'dired-rcs-mark-rcs-locked-files "dired-rcs" "\ | |
1395 Mark all files that are under RCS control and RCS-locked. | |
1396 With prefix argument, unflag all those files. | |
1397 Mentions RCS files for which a working file was not found in this buffer. | |
1398 Type \\[dired-why] to see them again." t nil) | |
1399 | |
1400 (autoload 'dired-rcs-mark-rcs-files "dired-rcs" "\ | |
1401 Mark all files that are under RCS control. | |
1402 With prefix argument, unflag all those files. | |
1403 Mentions RCS files for which a working file was not found in this buffer. | |
1404 Type \\[dired-why] to see them again." t nil) | |
1405 | |
1406 ;;;*** | |
1407 | |
1408 ;;;### (autoloads (dired-extra-startup) "dired-x" "dired/dired-x.el" (12983 26748)) | |
1409 ;;; Generated autoloads from dired/dired-x.el | |
1410 | |
1411 (autoload 'dired-extra-startup "dired-x" "\ | |
1412 Automatically put on dired-mode-hook to get extra dired features: | |
1413 \\<dired-mode-map> | |
1414 \\[dired-vm] -- VM on folder | |
1415 \\[dired-rmail] -- Rmail on folder | |
1416 \\[dired-do-insert-subdir] -- insert all marked subdirs | |
1417 \\[dired-do-find-file] -- visit all marked files simultaneously | |
1418 \\[dired-set-marker-char], \\[dired-restore-marker-char] -- change and display dired-marker-char dynamically. | |
1419 \\[dired-omit-toggle] -- toggle omitting of files | |
1420 \\[dired-mark-sexp] -- mark by lisp expression | |
1421 \\[dired-do-unmark] -- replace existing marker with another. | |
1422 \\[dired-mark-rcs-files] -- mark all RCS controlled files | |
1423 \\[dired-mark-files-compilation-buffer] -- mark compilation files | |
1424 \\[dired-copy-filename-as-kill] -- copy the file or subdir names into the kill ring. | |
1425 You can feed it to other commands using \\[yank]. | |
1426 | |
1427 For more features, see variables | |
1428 | |
1429 dired-omit-files | |
1430 dired-omit-extenstions | |
1431 dired-dangerous-shell-command | |
1432 dired-mark-keys | |
1433 dired-local-variables-file | |
1434 dired-find-subdir | |
1435 dired-guess-have-gnutar | |
1436 dired-auto-shell-command-alist | |
1437 | |
1438 See also functions | |
1439 | |
1440 dired-sort-on-size | |
1441 dired-do-relsymlink | |
1442 dired-flag-extension | |
1443 dired-virtual | |
1444 dired-jump-back | |
1445 dired-jump-back-other-window | |
1446 " t nil) | |
1447 | |
1448 ;;;*** | |
1449 | |
1450 ;;;*** | |
1451 | |
1452 ;;;### (autoloads nil "dired-xemacs-menu" "dired/dired-xemacs-menu.el" (12983 25897)) | |
1453 ;;; Generated autoloads from dired/dired-xemacs-menu.el | |
1454 | |
1455 ;;;### (autoloads (dired-noselect dired-other-window dired) "dired" "dired/dired.el" (12983 26748)) | |
1456 ;;; Generated autoloads from dired/dired.el | |
1457 | |
1458 (defvar dired-listing-switches (purecopy "-al") "\ | |
1459 *Switches passed to ls for dired. MUST contain the `l' option. | |
1460 Can contain even `F', `b', `i' and `s'.") | |
1461 | |
1462 (defvar dired-chown-program (purecopy (if (memq system-type '(dgux-unix hpux usg-unix-v silicon-graphics-unix irix)) "chown" "/etc/chown")) "\ | |
1463 *Name of chown command (usully `chown' or `/etc/chown').") | |
1464 | |
1465 (defvar dired-ls-program (purecopy "ls") "\ | |
1466 *Absolute or relative name of the ls program used by dired.") | |
1467 | |
1468 (defvar dired-ls-F-marks-symlinks t "\ | |
1469 *Informs dired about how ls -lF marks symbolic links. | |
1470 Set this to t if `dired-ls-program' with -lF marks the symbolic link | |
1471 itself with a trailing @ (usually the case under Ultrix). | |
1472 | |
1473 Example: if `ln -s foo bar; ls -F bar' gives `bar -> foo', set it to | |
1474 nil, if it gives `bar@ -> foo', set it to t. | |
1475 | |
1476 Dired checks if there is really a @ appended. Thus, if you have a | |
1477 marking ls program on one host and a non-marking on another host, and | |
1478 don't care about symbolic links which really end in a @, you can | |
1479 always set this variable to t.") | |
1480 | |
1481 (defvar dired-trivial-filenames (purecopy "^\\.\\.?$\\|^#") "\ | |
1482 *Regexp of files to skip when moving point to the first file of a new directory listing. | |
1483 Nil means move to the subdir line, t means move to first file.") | |
1484 | |
1485 (defvar dired-keep-marker-move t "\ | |
1486 If t, moved marked files are marked if their originals were. | |
1487 If a character, those files (marked or not) are marked with that character.") | |
1488 | |
1489 (defvar dired-keep-marker-copy 67 "\ | |
1490 If t, copied files are marked if their source files were. | |
1491 If a character, those files are always marked with that character.") | |
1492 | |
1493 (defvar dired-keep-marker-hardlink 72 "\ | |
1494 If t, hard-linked files are marked if the linked-to files were. | |
1495 If a character, those files are always marked with that character.") | |
1496 | |
1497 (defvar dired-keep-marker-symlink 89 "\ | |
1498 If t, symlinked marked files are marked if the linked-to files were. | |
1499 If a character, those files are always marked with that character.") | |
1500 | |
1501 (defvar dired-dwim-target nil "\ | |
1502 *If non-nil, dired tries to guess a default target directory: | |
1503 If there is a dired buffer displayed in the next window, use | |
1504 its current subdir, instead of the current subdir of this dired | |
1505 buffer. | |
1506 | |
1507 The target is used in the prompt for file copy, move etc.") | |
1508 | |
1509 (defvar dired-copy-preserve-time nil "\ | |
1510 *If non-nil, Dired preserves the last-modified time in a file copy. | |
1511 \(This works on only some systems.)\\<dired-mode-map> | |
1512 Use `\\[dired-do-copy]' with a zero prefix argument to toggle its value.") | |
1513 | |
1514 (define-key ctl-x-map "d" 'dired) | |
1515 | |
1516 (autoload 'dired "dired" "\ | |
1517 \"Edit\" directory DIRNAME--delete, rename, print, etc. some files in it. | |
1518 With an optional prefix argument you can specify the ls SWITCHES that are used. | |
1519 Dired displays a list of files in DIRNAME (which may also have | |
1520 shell wildcards appended to select certain files). | |
1521 You can move around in it with the usual commands. | |
1522 You can flag files for deletion with \\<dired-mode-map>\\[dired-flag-file-deleted] and then delete them by | |
1523 typing \\[dired-do-deletions]. | |
1524 Type \\[describe-mode] after entering dired for more info. | |
1525 | |
1526 If DIRNAME is already in a dired buffer, that buffer is used without refresh." t nil) | |
1527 | |
1528 (define-key ctl-x-4-map "d" 'dired-other-window) | |
1529 | |
1530 (autoload 'dired-other-window "dired" "\ | |
1531 \"Edit\" directory DIRNAME. Like `dired' but selects in another window." t nil) | |
1532 | |
1533 (autoload 'dired-noselect "dired" "\ | |
1534 Like `dired' but returns the dired buffer as value, does not select it." nil nil) | |
1535 | |
1536 ;;;*** | |
1537 | |
1538 ;;;### (autoloads (find-grep-dired find-name-dired find-dired) "find-dired" "dired/find-dired.el" (12983 25895)) | |
1539 ;;; Generated autoloads from dired/find-dired.el | |
1540 | |
1541 (defvar find-ls-option (purecopy (if (eq system-type 'berkeley-unix) '("-ls" . "-gilsb") '("-exec ls -ld {} \\;" . "-ld"))) "\ | |
1542 *Description of the option to `find' to produce an `ls -l'-type listing. | |
1543 This is a cons of two strings (FIND-OPTION . LS-SWITCHES). FIND-OPTION | |
1544 gives the option (or options) to `find' that produce the desired output. | |
1545 LS-SWITCHES is a list of `ls' switches to tell dired how to parse the output.") | |
1546 | |
1547 (defvar find-grep-options (purecopy (if (eq system-type 'berkeley-unix) "-s" "-q")) "\ | |
1548 *Option to grep to be as silent as possible. | |
1549 On Berkeley systems, this is `-s'; on Posix, and with GNU grep, `-q' does it. | |
1550 On other systems, the closest you can come is to use `-l'.") | |
1551 | |
1552 (defvar find-dired-multiple-buffers nil "\ | |
1553 *If non-nil, generates a new buffer for each find") | |
1554 | |
1555 (autoload 'find-dired "find-dired" "\ | |
1556 Run `find' and go into dired-mode on a buffer of the output. | |
1557 The command run (after changing into DIR) is | |
1558 | |
1559 find . \\( ARGS \\) -ls" t nil) | |
1560 | |
1561 (autoload 'find-name-dired "find-dired" "\ | |
1562 Search DIR recursively for files matching the globbing pattern PATTERN, | |
1563 and run dired on those files. | |
1564 PATTERN is a shell wildcard (not an Emacs regexp) and need not be quoted. | |
1565 The command run (after changing into DIR) is | |
1566 | |
1567 find . -name 'PATTERN' -ls" t nil) | |
1568 | |
1569 (autoload 'find-grep-dired "find-dired" "\ | |
1570 Find files in DIR containing a regexp ARG and start Dired on output. | |
1571 The command run (after changing into DIR) is | |
1572 | |
1573 find . -type f -exec test -r {} \\; -exec egrep -s ARG {} \\; -ls | |
1574 | |
1575 Thus ARG can also contain additional grep options." t nil) | |
1576 | |
1577 ;;;*** | |
1578 | |
1579 ;;;*** | |
1580 | |
1581 ;;;### (autoloads nil "gmhist-app" "dired/gmhist-app.el" (12983 25895)) | |
1582 ;;; Generated autoloads from dired/gmhist-app.el | |
1583 | |
1584 ;;;*** | |
1585 | |
1586 ;;;### (autoloads nil "gmhist-cmp" "dired/gmhist-cmp.el" (12983 25895)) | |
1587 ;;; Generated autoloads from dired/gmhist-cmp.el | |
1588 | |
1589 ;;;*** | |
1590 | |
1591 ;;;### (autoloads nil "gmhist-mh" "dired/gmhist-mh.el" (12983 25896)) | |
1592 ;;; Generated autoloads from dired/gmhist-mh.el | |
1593 | |
1594 ;;;*** | |
1595 | |
1596 ;;;### (autoloads nil "gmhist" "dired/gmhist.el" (12983 25896)) | |
1597 ;;; Generated autoloads from dired/gmhist.el | |
1598 | |
1599 ;;;*** | |
1600 | |
1601 ;;;*** | |
1602 | |
1603 ;;;*** | |
1604 | |
1605 ;;;### (autoloads nil "advise-eval-region" "edebug/advise-eval-region.el" (12983 27383)) | |
1606 ;;; Generated autoloads from edebug/advise-eval-region.el | |
1607 | |
1608 ;;;*** | |
1609 | |
1610 ;;;### (autoloads nil "cl-read" "edebug/cl-read.el" (12983 27380)) | |
1611 ;;; Generated autoloads from edebug/cl-read.el | |
1612 | |
1613 ;;;*** | |
1614 | |
1615 ;;;### (autoloads nil "cl-specs" "edebug/cl-specs.el" (12983 27381)) | |
1616 ;;; Generated autoloads from edebug/cl-specs.el | |
1617 | |
1618 ;;;*** | |
1619 | |
1620 ;;;### (autoloads nil "cust-print" "edebug/cust-print.el" (12983 27381)) | |
1621 ;;; Generated autoloads from edebug/cust-print.el | |
1622 | |
1623 ;;;*** | |
1624 | |
1625 ;;;### (autoloads nil "edebug-cl-read" "edebug/edebug-cl-read.el" (12983 27381)) | |
1626 ;;; Generated autoloads from edebug/edebug-cl-read.el | |
1627 | |
1628 ;;;*** | |
1629 | |
1630 ;;;### (autoloads nil "edebug-test" "edebug/edebug-test.el" (12983 26120)) | |
1631 ;;; Generated autoloads from edebug/edebug-test.el | |
1632 | |
1633 ;;;### (autoloads (edebug-eval-top-level-form def-edebug-spec) "edebug" "edebug/edebug.el" (12983 27382)) | |
1634 ;;; Generated autoloads from edebug/edebug.el | |
1635 | |
1636 (autoload 'def-edebug-spec "edebug" "\ | |
1637 Set the edebug-form-spec property of SYMBOL according to SPEC. | |
1638 Both SYMBOL and SPEC are unevaluated. The SPEC can be 0, t, a symbol | |
1639 \(naming a function), or a list." nil 'macro) | |
1640 | |
1641 (defalias 'edebug-defun 'edebug-eval-top-level-form) | |
1642 | |
1643 (autoload 'edebug-eval-top-level-form "edebug" "\ | |
1644 Evaluate a top level form, such as a defun or defmacro. | |
1645 This is like `eval-defun', but the code is always instrumented for Edebug. | |
1646 Print its name in the minibuffer and leave point where it is, | |
1647 or if an error occurs, leave point after it with mark at the original point." t nil) | |
1648 | |
1649 ;;;*** | |
1650 | |
1651 ;;;*** | |
1652 | |
1653 ;;;*** | |
1654 | |
1655 ;;;### (autoloads nil "eval-reg" "edebug/eval-reg.el" (12983 27381)) | |
1656 ;;; Generated autoloads from edebug/eval-reg.el | |
1657 | |
1658 ;;;*** | |
1659 | |
1660 ;;;### (autoloads nil "ediff-diff" "ediff/ediff-diff.el" (12983 26148)) | |
1661 ;;; Generated autoloads from ediff/ediff-diff.el | |
1662 | |
1663 ;;;*** | |
1664 | |
1665 ;;;### (autoloads nil "ediff-hook" "ediff/ediff-hook.el" (12983 26154)) | |
1666 ;;; Generated autoloads from ediff/ediff-hook.el | |
1667 | |
1668 ;;;*** | |
1669 | |
1670 ;;;### (autoloads nil "ediff-init" "ediff/ediff-init.el" (12983 26149)) | |
1671 ;;; Generated autoloads from ediff/ediff-init.el | |
1672 | |
1673 ;;;*** | |
1674 | |
1675 ;;;### (autoloads nil "ediff-merg" "ediff/ediff-merg.el" (12983 26152)) | |
1676 ;;; Generated autoloads from ediff/ediff-merg.el | |
1677 | |
1678 ;;;### (autoloads (ediff-show-registry) "ediff-mult" "ediff/ediff-mult.el" (12983 26904)) | |
1679 ;;; Generated autoloads from ediff/ediff-mult.el | |
1680 | |
1681 (autoload 'ediff-show-registry "ediff-mult" "\ | |
1682 Display Ediff's registry." t nil) | |
1683 | |
1684 (defalias 'eregistry 'ediff-show-registry) | |
1685 | |
1686 ;;;*** | |
1687 | |
1688 ;;;*** | |
1689 | |
1690 ;;;### (autoloads nil "ediff-ptch" "ediff/ediff-ptch.el" (12983 26154)) | |
1691 ;;; Generated autoloads from ediff/ediff-ptch.el | |
1692 | |
1693 ;;;*** | |
1694 | |
1695 ;;;*** | |
1696 | |
1697 ;;;### (autoloads nil "ediff-util" "ediff/ediff-util.el" (12983 26901)) | |
1698 ;;; Generated autoloads from ediff/ediff-util.el | |
1699 | |
1700 ;;;*** | |
1701 | |
1702 ;;;### (autoloads nil "ediff-vers" "ediff/ediff-vers.el" (12983 26154)) | |
1703 ;;; Generated autoloads from ediff/ediff-vers.el | |
1704 | |
1705 ;;;*** | |
1706 | |
1707 ;;;### (autoloads nil "ediff-wind" "ediff/ediff-wind.el" (12983 26902)) | |
1708 ;;; Generated autoloads from ediff/ediff-wind.el | |
1709 | |
1710 ;;;### (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" (12983 26903)) | |
1711 ;;; Generated autoloads from ediff/ediff.el | |
1712 | |
1713 (autoload 'ediff-files "ediff" "\ | |
1714 Run Ediff on a pair of files, FILE-A and FILE-B." t nil) | |
1715 | |
1716 (autoload 'ediff-files3 "ediff" "\ | |
1717 Run Ediff on three files, FILE-A, FILE-B, and FILE-C." t nil) | |
1718 | |
1719 (defalias 'ediff3 'ediff-files3) | |
1720 | |
1721 (defalias 'ediff 'ediff-files) | |
1722 | |
1723 (autoload 'ediff-buffers "ediff" "\ | |
1724 Run Ediff on a pair of buffers, BUFFER-A and BUFFER-B." t nil) | |
1725 | |
1726 (defalias 'ebuffers 'ediff-buffers) | |
1727 | |
1728 (autoload 'ediff-buffers3 "ediff" "\ | |
1729 Run Ediff on three buffers, BUFFER-A, BUFFER-B, and BUFFER-C." t nil) | |
1730 | |
1731 (defalias 'ebuffers3 'ediff-buffers3) | |
1732 | |
1733 (autoload 'ediff-directories "ediff" "\ | |
1734 Run Ediff on a pair of directories, DIR1 and DIR2, comparing files that have | |
1735 the same name in both. The third argument, REGEXP, is a regular expression that | |
1736 can be used to filter out certain file names." t nil) | |
1737 | |
1738 (defalias 'edirs 'ediff-directories) | |
1739 | |
1740 (autoload 'ediff-directory-revisions "ediff" "\ | |
1741 Run Ediff on a directory, DIR1, comparing its files with their revisions. | |
1742 The second argument, REGEXP, is a regular expression that filters the file | |
1743 names. Only the files that are under revision control are taken into account." t nil) | |
1744 | |
1745 (defalias 'edir-revisions 'ediff-directory-revisions) | |
1746 | |
1747 (autoload 'ediff-directories3 "ediff" "\ | |
1748 Run Ediff on three directories, DIR1, DIR2, and DIR3, comparing files that | |
1749 have the same name in all three. The last argument, REGEXP, is a regular | |
1750 expression that can be used to filter out certain file names." t nil) | |
1751 | |
1752 (defalias 'edirs3 'ediff-directories3) | |
1753 | |
1754 (autoload 'ediff-merge-directories "ediff" "\ | |
1755 Run Ediff on a pair of directories, DIR1 and DIR2, merging files that have | |
1756 the same name in both. The third argument, REGEXP, is a regular expression that | |
1757 can be used to filter out certain file names." t nil) | |
1758 | |
1759 (defalias 'edirs-merge 'ediff-merge-directories) | |
1760 | |
1761 (autoload 'ediff-merge-directories-with-ancestor "ediff" "\ | |
1762 Merge files in directories DIR1 and DIR2 using files in ANCESTOR-DIR as ancestors. | |
1763 Ediff merges files that have identical names in DIR1, DIR2. If a pair of files | |
1764 in DIR1 and DIR2 doesn't have an ancestor in ANCESTOR-DIR, Ediff will merge | |
1765 without ancestor. The fourth argument, REGEXP, is a regular expression that | |
1766 can be used to filter out certain file names." t nil) | |
1767 | |
1768 (autoload 'ediff-merge-directory-revisions "ediff" "\ | |
1769 Run Ediff on a directory, DIR1, merging its files with their revisions. | |
1770 The second argument, REGEXP, is a regular expression that filters the file | |
1771 names. Only the files that are under revision control are taken into account." t nil) | |
1772 | |
1773 (defalias 'edir-merge-revisions 'ediff-merge-directory-revisions) | |
1774 | |
1775 (autoload 'ediff-merge-directory-revisions-with-ancestor "ediff" "\ | |
1776 Run Ediff on a directory, DIR1, merging its files with their revisions and ancestors. | |
1777 The second argument, REGEXP, is a regular expression that filters the file | |
1778 names. Only the files that are under revision control are taken into account." t nil) | |
1779 | |
1780 (defalias 'edir-merge-revisions-with-ancestor 'ediff-merge-directory-revisions-with-ancestor) | |
1781 | |
1782 (defalias 'edirs-merge-with-ancestor 'ediff-merge-directories-with-ancestor) | |
1783 | |
1784 (autoload 'ediff-windows-wordwise "ediff" "\ | |
1785 Compare WIND-A and WIND-B, which are selected by clicking, wordwise. | |
1786 With prefix argument, DUMB-MODE, or on a non-windowing display, works as | |
1787 follows: | |
1788 If WIND-A is nil, use selected window. | |
1789 If WIND-B is nil, use window next to WIND-A." t nil) | |
1790 | |
1791 (autoload 'ediff-windows-linewise "ediff" "\ | |
1792 Compare WIND-A and WIND-B, which are selected by clicking, linewise. | |
1793 With prefix argument, DUMB-MODE, or on a non-windowing display, works as | |
1794 follows: | |
1795 If WIND-A is nil, use selected window. | |
1796 If WIND-B is nil, use window next to WIND-A." t nil) | |
1797 | |
1798 (autoload 'ediff-regions-wordwise "ediff" "\ | |
1799 Run Ediff on a pair of regions in two different buffers. | |
1800 Regions (i.e., point and mark) are assumed to be set in advance. | |
1801 This function is effective only for relatively small regions, up to 200 | |
1802 lines. For large regions, use `ediff-regions-linewise'." t nil) | |
1803 | |
1804 (autoload 'ediff-regions-linewise "ediff" "\ | |
1805 Run Ediff on a pair of regions in two different buffers. | |
1806 Regions (i.e., point and mark) are assumed to be set in advance. | |
1807 Each region is enlarged to contain full lines. | |
1808 This function is effective for large regions, over 100-200 | |
1809 lines. For small regions, use `ediff-regions-wordwise'." t nil) | |
1810 | |
1811 (defalias 'ediff-merge 'ediff-merge-files) | |
1812 | |
1813 (autoload 'ediff-merge-files "ediff" "\ | |
1814 Merge two files without ancestor." t nil) | |
1815 | |
1816 (autoload 'ediff-merge-files-with-ancestor "ediff" "\ | |
1817 Merge two files with ancestor." t nil) | |
1818 | |
1819 (defalias 'ediff-merge-with-ancestor 'ediff-merge-files-with-ancestor) | |
1820 | |
1821 (autoload 'ediff-merge-buffers "ediff" "\ | |
1822 Merge buffers without ancestor." t nil) | |
1823 | |
1824 (autoload 'ediff-merge-buffers-with-ancestor "ediff" "\ | |
1825 Merge buffers with ancestor." t nil) | |
1826 | |
1827 (autoload 'ediff-merge-revisions "ediff" "\ | |
1828 Run Ediff by merging two revisions of a file. | |
1829 The file is the optional FILE argument or the file visited by the current | |
1830 buffer." t nil) | |
1831 | |
1832 (autoload 'ediff-merge-revisions-with-ancestor "ediff" "\ | |
1833 Run Ediff by merging two revisions of a file with a common ancestor. | |
1834 The file is the optional FILE argument or the file visited by the current | |
1835 buffer." t nil) | |
1836 | |
1837 (autoload 'run-ediff-from-cvs-buffer "ediff" "\ | |
1838 Run Ediff-merge on appropriate revisions of the selected file. | |
1839 First run after `M-x cvs-update'. Then place the cursor on a lide describing a | |
1840 file and then run `run-ediff-from-cvs-buffer'." t nil) | |
1841 | |
1842 (autoload 'ediff-patch-file "ediff" "\ | |
1843 Run Ediff by patching SOURCE-FILENAME." t nil) | |
1844 | |
1845 (autoload 'ediff-patch-buffer "ediff" "\ | |
1846 Run Ediff by patching BUFFER-NAME." t nil) | |
1847 | |
1848 (defalias 'epatch 'ediff-patch-file) | |
1849 | |
1850 (defalias 'epatch-buffer 'ediff-patch-buffer) | |
1851 | |
1852 (autoload 'ediff-revision "ediff" "\ | |
1853 Run Ediff by comparing versions of a file. | |
1854 The file is an optional FILE argument or the file visited by the current | |
1855 buffer. Use `vc.el' or `rcs.el' depending on `ediff-version-control-package'." t nil) | |
1856 | |
1857 (autoload 'ediff-version "ediff" "\ | |
1858 Return string describing the version of Ediff. | |
1859 When called interactively, displays the version." t nil) | |
1860 | |
1861 (autoload 'ediff-documentation "ediff" "\ | |
1862 Display Ediff's manual." t nil) | |
1863 | |
1864 ;;;*** | |
1865 | |
1866 ;;;### (autoloads (electric-buffer-list) "ebuff-menu" "electric/ebuff-menu.el" (12988 32985)) | |
1867 ;;; Generated autoloads from electric/ebuff-menu.el | |
1868 | |
1869 (autoload 'electric-buffer-list "ebuff-menu" "\ | |
1870 Pops up a buffer describing the set of Emacs buffers. | |
1871 Vaguely like ITS lunar select buffer; combining typeoutoid buffer | |
1872 listing with menuoid buffer selection. | |
1873 | |
1874 If the very next character typed is a space then the buffer list | |
1875 window disappears. Otherwise, one may move around in the buffer list | |
1876 window, marking buffers to be selected, saved or deleted. | |
1877 | |
1878 To exit and select a new buffer, type a space when the cursor is on | |
1879 the appropriate line of the buffer-list window. Other commands are | |
1880 much like those of buffer-menu-mode. | |
1881 | |
1882 Calls value of `electric-buffer-menu-mode-hook' on entry if non-nil. | |
1883 | |
1884 Non-null optional arg FILES-ONLY means mention only file buffers. | |
1885 When called from Lisp code, FILES-ONLY may be a regular expression, | |
1886 in which case only buffers whose names match that expression are listed, | |
1887 or an arbitrary predicate function. | |
1888 | |
1889 \\{electric-buffer-menu-mode-map}" t nil) | |
1890 | |
1891 ;;;*** | |
1892 | |
1893 ;;;### (autoloads (electric-command-history Electric-command-history-redo-expression) "echistory" "electric/echistory.el" (12983 27259)) | |
1894 ;;; Generated autoloads from electric/echistory.el | |
1895 | |
1896 (autoload 'Electric-command-history-redo-expression "echistory" "\ | |
1897 Edit current history line in minibuffer and execute result. | |
1898 With prefix arg NOCONFIRM, execute current line as-is without editing." t nil) | |
1899 | |
1900 (autoload 'electric-command-history "echistory" "\ | |
1901 \\<electric-history-map>Major mode for examining and redoing commands from `command-history'. | |
1902 This pops up a window with the Command History listing. | |
1903 The number of command listed is controlled by `list-command-history-max'. | |
1904 The command history is filtered by `list-command-history-filter' if non-nil. | |
1905 Combines typeout Command History list window with menu like selection | |
1906 of an expression from the history for re-evaluation in the *original* buffer. | |
1907 | |
1908 The history displayed is filtered by `list-command-history-filter' if non-nil. | |
1909 | |
1910 Like Emacs-Lisp mode except that characters do not insert themselves and | |
1911 Tab and Linefeed do not indent. Instead these commands are provided: | |
1912 \\{electric-history-map} | |
1913 | |
1914 Calls the value of `electric-command-history-hook' if that is non-nil. | |
1915 The Command History listing is recomputed each time this mode is invoked." t nil) | |
1916 | |
1917 ;;;*** | |
1918 | |
1919 ;;;### (autoloads (electric-helpify with-electric-help) "ehelp" "electric/ehelp.el" (12983 27259)) | |
1920 ;;; Generated autoloads from electric/ehelp.el | |
1921 | |
1922 (autoload 'with-electric-help "ehelp" "\ | |
1923 Pop up an \"electric\" help buffer. | |
1924 The arguments are THUNK &optional BUFFER NOERASE MINHEIGHT. | |
1925 THUNK is a function of no arguments which is called to initialize the | |
1926 contents of BUFFER. BUFFER defaults to `*Help*'. BUFFER will be | |
1927 erased before THUNK is called unless NOERASE is non-nil. THUNK will | |
1928 be called while BUFFER is current and with `standard-output' bound to | |
1929 the buffer specified by BUFFER. | |
1930 | |
1931 If THUNK returns nil, we display BUFFER starting at the top, and | |
1932 shrink the window to fit. If THUNK returns non-nil, we don't do those things. | |
1933 | |
1934 After THUNK has been called, this function \"electrically\" pops up a window | |
1935 in which BUFFER is displayed and allows the user to scroll through that buffer | |
1936 in electric-help-mode. The window's height will be at least MINHEIGHT if | |
1937 this value is non-nil. | |
1938 | |
1939 If THUNK returns nil, we display BUFFER starting at the top, and | |
1940 shrink the window to fit. If THUNK returns non-nil, we don't do those | |
1941 things. | |
1942 | |
1943 When the user exits (with `electric-help-exit', or otherwise) the help | |
1944 buffer's window disappears (i.e., we use `save-window-excursion') | |
1945 BUFFER is put into `default-major-mode' (or `fundamental-mode') when we exit." nil nil) | |
1946 | |
1947 (autoload 'electric-helpify "ehelp" nil nil nil) | |
1948 | |
1949 ;;;*** | |
1950 | |
1951 ;;;*** | |
1952 | |
1953 ;;;*** | |
1954 | |
1955 ;;;### (autoloads nil "electric" "electric/electric.el" (12983 27258)) | |
1956 ;;; Generated autoloads from electric/electric.el | |
1957 | |
1958 ;;;*** | |
1959 | |
1960 ;;;*** | |
1961 | |
1962 ;;;### (autoloads (Helper-help Helper-describe-bindings) "helper" "electric/helper.el" (12983 27259)) | |
1963 ;;; Generated autoloads from electric/helper.el | |
1964 | |
1965 (autoload 'Helper-describe-bindings "helper" "\ | |
1966 Describe local key bindings of current mode." t nil) | |
1967 | |
1968 (autoload 'Helper-help "helper" "\ | |
1969 Provide help for current mode." t nil) | |
1970 | |
1971 ;;;*** | |
1972 | |
1973 ;;;*** | |
1974 | |
1975 ;;;*** | |
1976 | |
1977 ;;;### (autoloads nil "crisp" "emulators/crisp.el" (12989 48895)) | |
1978 ;;; Generated autoloads from emulators/crisp.el | |
1979 | |
1980 ;;;### (autoloads nil "edt-lk201" "emulators/edt-lk201.el" (12983 27263)) | |
1981 ;;; Generated autoloads from emulators/edt-lk201.el | |
1982 | |
1983 ;;;*** | |
1984 | |
1985 ;;;### (autoloads nil "edt-mapper" "emulators/edt-mapper.el" (12983 27263)) | |
1986 ;;; Generated autoloads from emulators/edt-mapper.el | |
1987 | |
1988 ;;;*** | |
1989 | |
1990 ;;;### (autoloads nil "edt-pc" "emulators/edt-pc.el" (12983 27263)) | |
1991 ;;; Generated autoloads from emulators/edt-pc.el | |
1992 | |
1993 ;;;*** | |
1994 | |
1995 ;;;### (autoloads nil "edt-vt100" "emulators/edt-vt100.el" (12983 27263)) | |
1996 ;;; Generated autoloads from emulators/edt-vt100.el | |
1997 | |
1998 ;;;### (autoloads (edt-emulation-on) "edt" "emulators/edt.el" (12983 27260)) | |
1999 ;;; Generated autoloads from emulators/edt.el | |
2000 | |
2001 (autoload 'edt-emulation-on "edt" "\ | |
2002 Turn on EDT Emulation." t nil) | |
2003 | |
2004 ;;;*** | |
2005 | |
2006 ;;;### (autoloads (convert-mocklisp-buffer) "mlconvert" "emulators/mlconvert.el" (12983 27260)) | |
2007 ;;; Generated autoloads from emulators/mlconvert.el | |
2008 | |
2009 (autoload 'convert-mocklisp-buffer "mlconvert" "\ | |
2010 Convert buffer of Mocklisp code to real Lisp that GNU Emacs can run." t nil) | |
2011 | |
2012 ;;;*** | |
2013 | |
2014 ;;;*** | |
2015 | |
2016 ;;;*** | |
2017 | |
2018 ;;;### (autoloads nil "mlsupport" "emulators/mlsupport.el" (12983 27261)) | |
2019 ;;; Generated autoloads from emulators/mlsupport.el | |
2020 | |
2021 ;;;*** | |
2022 | |
2023 ;;;### (autoloads (teco-command) "teco" "emulators/teco.el" (12983 27261)) | |
2024 ;;; Generated autoloads from emulators/teco.el | |
2025 | |
2026 (autoload 'teco-command "teco" "\ | |
2027 Read and execute a Teco command string." t nil) | |
2028 | |
2029 ;;;*** | |
2030 | |
2031 ;;;*** | |
2032 | |
2033 ;;;### (autoloads nil "tpu-doc" "emulators/tpu-doc.el" (12983 26752)) | |
2034 ;;; Generated autoloads from emulators/tpu-doc.el | |
2035 | |
2036 ;;;### (autoloads (tpu-edt-on) "tpu-edt" "emulators/tpu-edt.el" (12983 27262)) | |
2037 ;;; Generated autoloads from emulators/tpu-edt.el | |
2038 | |
2039 (fset 'tpu-edt-mode 'tpu-edt-on) | |
2040 | |
2041 (fset 'tpu-edt 'tpu-edt-on) | |
2042 | |
2043 (autoload 'tpu-edt-on "tpu-edt" "\ | |
2044 Turn on TPU/edt emulation." t nil) | |
2045 | |
2046 ;;;*** | |
2047 | |
2048 ;;;### (autoloads (tpu-set-cursor-bound tpu-set-cursor-free tpu-set-scroll-margins) "tpu-extras" "emulators/tpu-extras.el" (12983 27262)) | |
2049 ;;; Generated autoloads from emulators/tpu-extras.el | |
2050 | |
2051 (autoload 'tpu-set-scroll-margins "tpu-extras" "\ | |
2052 Set scroll margins." t nil) | |
2053 | |
2054 (autoload 'tpu-set-cursor-free "tpu-extras" "\ | |
2055 Allow the cursor to move freely about the screen." t nil) | |
2056 | |
2057 (autoload 'tpu-set-cursor-bound "tpu-extras" "\ | |
2058 Constrain the cursor to the flow of the text." t nil) | |
2059 | |
2060 ;;;*** | |
2061 | |
2062 ;;;*** | |
2063 | |
2064 ;;;*** | |
2065 | |
2066 ;;;### (autoloads nil "tpu-mapper" "emulators/tpu-mapper.el" (12983 27263)) | |
2067 ;;; Generated autoloads from emulators/tpu-mapper.el | |
2068 | |
2069 ;;;### (autoloads (wordstar-mode) "ws-mode" "emulators/ws-mode.el" (12983 27262)) | |
2070 ;;; Generated autoloads from emulators/ws-mode.el | |
2071 | |
2072 (autoload 'wordstar-mode "ws-mode" "\ | |
2073 Major mode with WordStar-like key bindings. | |
2074 | |
2075 BUGS: | |
2076 - Help menus with WordStar commands (C-j just calls help-for-help) | |
2077 are not implemented | |
2078 - Options for search and replace | |
2079 - Show markers (C-k h) is somewhat strange | |
2080 - Search and replace (C-q a) is only available in forward direction | |
2081 | |
2082 No key bindings beginning with ESC are installed, they will work | |
2083 Emacs-like. | |
2084 | |
2085 The key bindings are: | |
2086 | |
2087 C-a backward-word | |
2088 C-b fill-paragraph | |
2089 C-c scroll-up-line | |
2090 C-d forward-char | |
2091 C-e previous-line | |
2092 C-f forward-word | |
2093 C-g delete-char | |
2094 C-h backward-char | |
2095 C-i indent-for-tab-command | |
2096 C-j help-for-help | |
2097 C-k ordstar-C-k-map | |
2098 C-l ws-repeat-search | |
2099 C-n open-line | |
2100 C-p quoted-insert | |
2101 C-r scroll-down-line | |
2102 C-s backward-char | |
2103 C-t kill-word | |
2104 C-u keyboard-quit | |
2105 C-v overwrite-mode | |
2106 C-w scroll-down | |
2107 C-x next-line | |
2108 C-y kill-complete-line | |
2109 C-z scroll-up | |
2110 | |
2111 C-k 0 ws-set-marker-0 | |
2112 C-k 1 ws-set-marker-1 | |
2113 C-k 2 ws-set-marker-2 | |
2114 C-k 3 ws-set-marker-3 | |
2115 C-k 4 ws-set-marker-4 | |
2116 C-k 5 ws-set-marker-5 | |
2117 C-k 6 ws-set-marker-6 | |
2118 C-k 7 ws-set-marker-7 | |
2119 C-k 8 ws-set-marker-8 | |
2120 C-k 9 ws-set-marker-9 | |
2121 C-k b ws-begin-block | |
2122 C-k c ws-copy-block | |
2123 C-k d save-buffers-kill-emacs | |
2124 C-k f find-file | |
2125 C-k h ws-show-markers | |
2126 C-k i ws-indent-block | |
2127 C-k k ws-end-block | |
2128 C-k p ws-print-block | |
2129 C-k q kill-emacs | |
2130 C-k r insert-file | |
2131 C-k s save-some-buffers | |
2132 C-k t ws-mark-word | |
2133 C-k u ws-exdent-block | |
2134 C-k C-u keyboard-quit | |
2135 C-k v ws-move-block | |
2136 C-k w ws-write-block | |
2137 C-k x kill-emacs | |
2138 C-k y ws-delete-block | |
2139 | |
2140 C-o c wordstar-center-line | |
2141 C-o b switch-to-buffer | |
2142 C-o j justify-current-line | |
2143 C-o k kill-buffer | |
2144 C-o l list-buffers | |
2145 C-o m auto-fill-mode | |
2146 C-o r set-fill-column | |
2147 C-o C-u keyboard-quit | |
2148 C-o wd delete-other-windows | |
2149 C-o wh split-window-horizontally | |
2150 C-o wo other-window | |
2151 C-o wv split-window-vertically | |
2152 | |
2153 C-q 0 ws-find-marker-0 | |
2154 C-q 1 ws-find-marker-1 | |
2155 C-q 2 ws-find-marker-2 | |
2156 C-q 3 ws-find-marker-3 | |
2157 C-q 4 ws-find-marker-4 | |
2158 C-q 5 ws-find-marker-5 | |
2159 C-q 6 ws-find-marker-6 | |
2160 C-q 7 ws-find-marker-7 | |
2161 C-q 8 ws-find-marker-8 | |
2162 C-q 9 ws-find-marker-9 | |
2163 C-q a ws-query-replace | |
2164 C-q b ws-to-block-begin | |
2165 C-q c end-of-buffer | |
2166 C-q d end-of-line | |
2167 C-q f ws-search | |
2168 C-q k ws-to-block-end | |
2169 C-q l ws-undo | |
2170 C-q p ws-last-cursorp | |
2171 C-q r beginning-of-buffer | |
2172 C-q C-u keyboard-quit | |
2173 C-q w ws-last-error | |
2174 C-q y ws-kill-eol | |
2175 C-q DEL ws-kill-bol | |
2176 " t nil) | |
2177 | |
2178 ;;;*** | |
2179 | |
2180 ;;;*** | |
2181 | |
2182 ;;;### (autoloads nil "backtrace-logging" "energize/backtrace-logging.el" (12983 25903)) | |
2183 ;;; Generated autoloads from energize/backtrace-logging.el | |
2184 | |
2185 ;;;*** | |
2186 | |
2187 ;;;### (autoloads nil "energize-advice" "energize/energize-advice.el" (12983 25903)) | |
2188 ;;; Generated autoloads from energize/energize-advice.el | |
2189 | |
2190 ;;;*** | |
2191 | |
2192 ;;;### (autoloads nil "energize-annoprint" "energize/energize-annoprint.el" (12983 25906)) | |
2193 ;;; Generated autoloads from energize/energize-annoprint.el | |
2194 | |
2195 ;;;*** | |
2196 | |
2197 ;;;### (autoloads nil "energize-font-lock" "energize/energize-font-lock.el" (12983 25906)) | |
2198 ;;; Generated autoloads from energize/energize-font-lock.el | |
2199 | |
2200 ;;;*** | |
2201 | |
2202 ;;;### (autoloads nil "energize-font-size" "energize/energize-font-size.el" (12983 25906)) | |
2203 ;;; Generated autoloads from energize/energize-font-size.el | |
2204 | |
2205 ;;;*** | |
2206 | |
2207 ;;;### (autoloads nil "energize-init" "energize/energize-init.el" (12983 25903)) | |
2208 ;;; Generated autoloads from energize/energize-init.el | |
2209 | |
2210 ;;;*** | |
2211 | |
2212 ;;;### (autoloads nil "energize-load" "energize/energize-load.el" (12983 25904)) | |
2213 ;;; Generated autoloads from energize/energize-load.el | |
2214 | |
2215 ;;;*** | |
2216 | |
2217 ;;;### (autoloads nil "energize-menus" "energize/energize-menus.el" (12983 25904)) | |
2218 ;;; Generated autoloads from energize/energize-menus.el | |
2219 | |
2220 ;;;*** | |
2221 | |
2222 ;;;### (autoloads nil "energize-mode" "energize/energize-mode.el" (12983 25905)) | |
2223 ;;; Generated autoloads from energize/energize-mode.el | |
2224 | |
2225 ;;;*** | |
2226 | |
2227 ;;;### (autoloads nil "energize-shell" "energize/energize-shell.el" (12983 25905)) | |
2228 ;;; Generated autoloads from energize/energize-shell.el | |
2229 | |
2230 ;;;*** | |
2231 | |
2232 ;;;### (autoloads nil "energize-uimx" "energize/energize-uimx.el" (12983 25906)) | |
2233 ;;; Generated autoloads from energize/energize-uimx.el | |
2234 | |
2235 ;;;*** | |
2236 | |
2237 ;;;### (autoloads nil "energize-vi" "energize/energize-vi.el" (12983 25905)) | |
2238 ;;; Generated autoloads from energize/energize-vi.el | |
2239 | |
2240 ;;;*** | |
2241 | |
2242 ;;;### (autoloads nil "energize-visit-use" "energize/energize-visit-use.el" (12983 25905)) | |
2243 ;;; Generated autoloads from energize/energize-visit-use.el | |
2244 | |
2245 ;;;*** | |
2246 | |
2247 ;;;### (autoloads nil "energize-windows" "energize/energize-windows.el" (12983 25906)) | |
2248 ;;; Generated autoloads from energize/energize-windows.el | |
2249 | |
2250 ;;;*** | |
2251 | |
2252 ;;;### (autoloads nil "ostore" "energize/ostore.el" (12983 25906)) | |
2253 ;;; Generated autoloads from energize/ostore.el | |
2254 | |
2255 ;;;*** | |
2256 | |
2257 ;;;### (autoloads nil "write-file" "energize/write-file.el" (12983 25903)) | |
2258 ;;; Generated autoloads from energize/write-file.el | |
2259 | |
2260 ;;;*** | |
2261 | |
2262 ;;;### (autoloads nil "eos" "eos/eos.el" (12983 26135)) | |
2263 ;;; Generated autoloads from eos/eos.el | |
2264 | |
2265 ;;;*** | |
2266 | |
2267 ;;;*** | |
2268 | |
2269 ;;;### (autoloads nil "loaddefs-eos" "eos/loaddefs-eos.el" (12983 26137)) | |
2270 ;;; Generated autoloads from eos/loaddefs-eos.el | |
2271 | |
2272 ;;;*** | |
2273 | |
2274 ;;;### (autoloads nil "sun-eos-browser" "eos/sun-eos-browser.el" (12983 26135)) | |
2275 ;;; Generated autoloads from eos/sun-eos-browser.el | |
2276 | |
2277 ;;;*** | |
2278 | |
2279 ;;;### (autoloads nil "sun-eos-common" "eos/sun-eos-common.el" (12983 26141)) | |
2280 ;;; Generated autoloads from eos/sun-eos-common.el | |
2281 | |
2282 ;;;*** | |
2283 | |
2284 ;;;### (autoloads nil "sun-eos-debugger-extra" "eos/sun-eos-debugger-extra.el" (12983 26136)) | |
2285 ;;; Generated autoloads from eos/sun-eos-debugger-extra.el | |
2286 | |
2287 ;;;*** | |
2288 | |
2289 ;;;### (autoloads nil "sun-eos-debugger" "eos/sun-eos-debugger.el" (12983 26135)) | |
2290 ;;; Generated autoloads from eos/sun-eos-debugger.el | |
2291 | |
2292 ;;;*** | |
2293 | |
2294 ;;;### (autoloads nil "sun-eos-editor" "eos/sun-eos-editor.el" (12983 26135)) | |
2295 ;;; Generated autoloads from eos/sun-eos-editor.el | |
2296 | |
2297 ;;;*** | |
2298 | |
2299 ;;;### (autoloads nil "sun-eos-init" "eos/sun-eos-init.el" (12983 26135)) | |
2300 ;;; Generated autoloads from eos/sun-eos-init.el | |
2301 | |
2302 ;;;*** | |
2303 | |
2304 ;;;### (autoloads nil "sun-eos-load" "eos/sun-eos-load.el" (12983 26137)) | |
2305 ;;; Generated autoloads from eos/sun-eos-load.el | |
2306 | |
2307 ;;;*** | |
2308 | |
2309 ;;;### (autoloads nil "sun-eos-menubar" "eos/sun-eos-menubar.el" (12983 26140)) | |
2310 ;;; Generated autoloads from eos/sun-eos-menubar.el | |
2311 | |
2312 ;;;*** | |
2313 | |
2314 ;;;*** | |
2315 | |
2316 ;;;### (autoloads nil "sun-eos-toolbar" "eos/sun-eos-toolbar.el" (12983 26895)) | |
2317 ;;; Generated autoloads from eos/sun-eos-toolbar.el | |
2318 | |
2319 ;;;*** | |
2320 | |
2321 ;;;### (autoloads nil "sun-eos" "eos/sun-eos.el" (12983 26135)) | |
2322 ;;; Generated autoloads from eos/sun-eos.el | |
2323 | |
2324 ;;;*** | |
2325 | |
2326 ;;;### (autoloads nil "epoch" "epoch/epoch.el" (12983 26069)) | |
2327 ;;; Generated autoloads from epoch/epoch.el | |
2328 | |
2329 ;;;### (autoloads (tperldb txdb tdbx tsdb tgdb) "tgud" "eterm/tgud.el" (12147 26618)) | |
2330 ;;; Generated autoloads from eterm/tgud.el | |
2331 | |
2332 (autoload 'tgdb "tgud" "\ | |
2333 Run gdb on program FILE in buffer *tgud-FILE*. | |
2334 The directory containing FILE becomes the initial working directory | |
2335 and source-file directory for your debugger." t nil) | |
2336 | |
2337 (autoload 'tsdb "tgud" "\ | |
2338 Run sdb on program FILE in buffer *tgud-FILE*. | |
2339 The directory containing FILE becomes the initial working directory | |
2340 and source-file directory for your debugger." t nil) | |
2341 | |
2342 (autoload 'tdbx "tgud" "\ | |
2343 Run dbx on program FILE in buffer *tgud-FILE*. | |
2344 The directory containing FILE becomes the initial working directory | |
2345 and source-file directory for your debugger." t nil) | |
2346 | |
2347 (autoload 'txdb "tgud" "\ | |
2348 Run xdb on program FILE in buffer *tgud-FILE*. | |
2349 The directory containing FILE becomes the initial working directory | |
2350 and source-file directory for your debugger. | |
2351 | |
2352 You can set the variable 'tgud-xdb-directories' to a list of program source | |
2353 directories if your program contains sources from more than one directory." t nil) | |
2354 | |
2355 (autoload 'tperldb "tgud" "\ | |
2356 Run perldb on program FILE in buffer *tgud-FILE*. | |
2357 The directory containing FILE becomes the initial working directory | |
2358 and source-file directory for your debugger." t nil) | |
2359 | |
2360 ;;;*** | |
2361 | |
2362 ;;;### (autoloads (tshell) "tshell" "eterm/tshell.el" (12147 26618)) | |
2363 ;;; Generated autoloads from eterm/tshell.el | |
2364 | |
2365 (defvar tshell-prompt-pattern "^[^#$%>\n]*[#$%>] *" "\ | |
2366 Regexp to match prompts in the inferior shell. | |
2367 Defaults to \"^[^#$%>\\n]*[#$%>] *\", which works pretty well. | |
2368 This variable is used to initialise `term-prompt-regexp' in the | |
2369 shell buffer. | |
2370 | |
2371 The pattern should probably not match more than one line. If it does, | |
2372 tshell-mode may become confused trying to distinguish prompt from input | |
2373 on lines which don't start with a prompt. | |
2374 | |
2375 This is a fine thing to set in your `.emacs' file.") | |
2376 | |
2377 (autoload 'tshell "tshell" "\ | |
2378 Run an inferior shell, with I/O through buffer *shell*. | |
2379 If buffer exists but shell process is not running, make new shell. | |
2380 If buffer exists and shell process is running, just switch to buffer `*shell*'. | |
2381 Program used comes from variable `explicit-shell-file-name', | |
2382 or (if that is nil) from the ESHELL environment variable, | |
2383 or else from SHELL if there is no ESHELL. | |
2384 If a file `~/.emacs_SHELLNAME' exists, it is given as initial input | |
2385 (Note that this may lose due to a timing error if the shell | |
2386 discards input when it starts up.) | |
2387 The buffer is put in Tshell mode, giving commands for sending input | |
2388 and controlling the subjobs of the shell. See `tshell-mode'. | |
2389 See also the variable `tshell-prompt-pattern'. | |
2390 | |
2391 The shell file name (sans directories) is used to make a symbol name | |
2392 such as `explicit-csh-args'. If that symbol is a variable, | |
2393 its value is used as a list of arguments when invoking the shell. | |
2394 Otherwise, one argument `-i' is passed to the shell. | |
2395 | |
2396 \(Type \\[describe-mode] in the shell buffer for a list of commands.)" t nil) | |
2397 | |
2398 ;;;*** | |
2399 | |
2400 ;;;*** | |
2401 | |
2402 ;;;*** | |
2403 | |
2404 ;;;### (autoloads nil "NeXTify" "games/NeXTify.el" (12983 27379)) | |
2405 ;;; Generated autoloads from games/NeXTify.el | |
2406 | |
2407 ;;;### (autoloads (blackbox) "blackbox" "games/blackbox.el" (12983 27375)) | |
2408 ;;; Generated autoloads from games/blackbox.el | |
2409 | |
2410 (autoload 'blackbox "blackbox" "\ | |
2411 Play blackbox. Optional prefix argument is the number of balls; | |
2412 the default is 4. | |
2413 | |
2414 What is blackbox? | |
2415 | |
2416 Blackbox is a game of hide and seek played on an 8 by 8 grid (the | |
2417 Blackbox). Your opponent (Emacs, in this case) has hidden several | |
2418 balls (usually 4) within this box. By shooting rays into the box and | |
2419 observing where they emerge it is possible to deduce the positions of | |
2420 the hidden balls. The fewer rays you use to find the balls, the lower | |
2421 your score. | |
2422 | |
2423 Overview of play: | |
2424 | |
2425 \\<blackbox-mode-map>To play blackbox, type \\[blackbox]. An optional prefix argument | |
2426 specifies the number of balls to be hidden in the box; the default is | |
2427 four. | |
2428 | |
2429 The cursor can be moved around the box with the standard cursor | |
2430 movement keys. | |
2431 | |
2432 To shoot a ray, move the cursor to the edge of the box and press SPC. | |
2433 The result will be determined and the playfield updated. | |
2434 | |
2435 You may place or remove balls in the box by moving the cursor into the | |
2436 box and pressing \\[bb-romp]. | |
2437 | |
2438 When you think the configuration of balls you have placed is correct, | |
2439 press \\[bb-done]. You will be informed whether you are correct or | |
2440 not, and be given your score. Your score is the number of letters and | |
2441 numbers around the outside of the box plus five for each incorrectly | |
2442 placed ball. If you placed any balls incorrectly, they will be | |
2443 indicated with `x', and their actual positions indicated with `o'. | |
2444 | |
2445 Details: | |
2446 | |
2447 There are three possible outcomes for each ray you send into the box: | |
2448 | |
2449 Detour: the ray is deflected and emerges somewhere other than | |
2450 where you sent it in. On the playfield, detours are | |
2451 denoted by matching pairs of numbers -- one where the | |
2452 ray went in, and the other where it came out. | |
2453 | |
2454 Reflection: the ray is reflected and emerges in the same place | |
2455 it was sent in. On the playfield, reflections are | |
2456 denoted by the letter `R'. | |
2457 | |
2458 Hit: the ray strikes a ball directly and is absorbed. It does | |
2459 not emerge from the box. On the playfield, hits are | |
2460 denoted by the letter `H'. | |
2461 | |
2462 The rules for how balls deflect rays are simple and are best shown by | |
2463 example. | |
2464 | |
2465 As a ray approaches a ball it is deflected ninety degrees. Rays can | |
2466 be deflected multiple times. In the diagrams below, the dashes | |
2467 represent empty box locations and the letter `O' represents a ball. | |
2468 The entrance and exit points of each ray are marked with numbers as | |
2469 described under \"Detour\" above. Note that the entrance and exit | |
2470 points are always interchangeable. `*' denotes the path taken by the | |
2471 ray. | |
2472 | |
2473 Note carefully the relative positions of the ball and the ninety | |
2474 degree deflection it causes. | |
2475 | |
2476 1 | |
2477 - * - - - - - - - - - - - - - - - - - - - - - - | |
2478 - * - - - - - - - - - - - - - - - - - - - - - - | |
2479 1 * * - - - - - - - - - - - - - - - O - - - - O - | |
2480 - - O - - - - - - - O - - - - - - - * * * * - - | |
2481 - - - - - - - - - - - * * * * * 2 3 * * * - - * - - | |
2482 - - - - - - - - - - - * - - - - - - - O - * - - | |
2483 - - - - - - - - - - - * - - - - - - - - * * - - | |
2484 - - - - - - - - - - - * - - - - - - - - * - O - | |
2485 2 3 | |
2486 | |
2487 As mentioned above, a reflection occurs when a ray emerges from the same point | |
2488 it was sent in. This can happen in several ways: | |
2489 | |
2490 | |
2491 - - - - - - - - - - - - - - - - - - - - - - - - | |
2492 - - - - O - - - - - O - O - - - - - - - - - - - | |
2493 R * * * * - - - - - - - * - - - - O - - - - - - - | |
2494 - - - - O - - - - - - * - - - - R - - - - - - - - | |
2495 - - - - - - - - - - - * - - - - - - - - - - - - | |
2496 - - - - - - - - - - - * - - - - - - - - - - - - | |
2497 - - - - - - - - R * * * * - - - - - - - - - - - - | |
2498 - - - - - - - - - - - - O - - - - - - - - - - - | |
2499 | |
2500 In the first example, the ray is deflected downwards by the upper | |
2501 ball, then left by the lower ball, and finally retraces its path to | |
2502 its point of origin. The second example is similar. The third | |
2503 example is a bit anomalous but can be rationalized by realizing the | |
2504 ray never gets a chance to get into the box. Alternatively, the ray | |
2505 can be thought of as being deflected downwards and immediately | |
2506 emerging from the box. | |
2507 | |
2508 A hit occurs when a ray runs straight into a ball: | |
2509 | |
2510 - - - - - - - - - - - - - - - - - - - - - - - - | |
2511 - - - - - - - - - - - - - - - - - - - - O - - - | |
2512 - - - - - - - - - - - - O - - - H * * * * - - - - | |
2513 - - - - - - - - H * * * * O - - - - - - * - - - - | |
2514 - - - - - - - - - - - - O - - - - - - O - - - - | |
2515 H * * * O - - - - - - - - - - - - - - - - - - - - | |
2516 - - - - - - - - - - - - - - - - - - - - - - - - | |
2517 - - - - - - - - - - - - - - - - - - - - - - - - | |
2518 | |
2519 Be sure to compare the second example of a hit with the first example of | |
2520 a reflection." t nil) | |
2521 | |
2522 ;;;*** | |
2523 | |
2524 ;;;### (autoloads (conx-load conx conx-region conx-buffer) "conx" "games/conx.el" (12983 27378)) | |
2525 ;;; Generated autoloads from games/conx.el | |
2526 | |
2527 (autoload 'conx-buffer "conx" "\ | |
2528 Absorb the text in the current buffer into the tree." t nil) | |
2529 | |
2530 (autoload 'conx-region "conx" "\ | |
2531 Absorb the text in the current region into the tree." t nil) | |
2532 | |
2533 (autoload 'conx "conx" "\ | |
2534 Generate some random sentences in the *conx* buffer." t nil) | |
2535 | |
2536 (autoload 'conx-load "conx" "\ | |
2537 Load in a CONX database written by the \\[conx-save] command. | |
2538 This clears the database currently in memory." t nil) | |
2539 | |
2540 ;;;*** | |
2541 | |
2542 ;;;### (autoloads (shuffle-vector cookie-snarf cookie-insert cookie) "cookie1" "games/cookie1.el" (12983 27375)) | |
2543 ;;; Generated autoloads from games/cookie1.el | |
2544 | |
2545 (autoload 'cookie "cookie1" "\ | |
2546 Return a random phrase from PHRASE-FILE. When the phrase file | |
2547 is read in, display STARTMSG at beginning of load, ENDMSG at end." nil nil) | |
2548 | |
2549 (autoload 'cookie-insert "cookie1" "\ | |
2550 Insert random phrases from PHRASE-FILE; COUNT of them. When the phrase file | |
2551 is read in, display STARTMSG at beginning of load, ENDMSG at end." nil nil) | |
2552 | |
2553 (autoload 'cookie-snarf "cookie1" "\ | |
2554 Reads in the PHRASE-FILE, returns it as a vector of strings. | |
2555 Emit STARTMSG and ENDMSG before and after. Caches the result; second | |
2556 and subsequent calls on the same file won't go to disk." nil nil) | |
2557 | |
2558 (autoload 'shuffle-vector "cookie1" "\ | |
2559 Randomly permute the elements of VECTOR (all permutations equally likely)" nil nil) | |
2560 | |
2561 ;;;*** | |
2562 | |
2563 ;;;### (autoloads (dissociated-press) "dissociate" "games/dissociate.el" (12983 27376)) | |
2564 ;;; Generated autoloads from games/dissociate.el | |
2565 | |
2566 (autoload 'dissociated-press "dissociate" "\ | |
2567 Dissociate the text of the current buffer. | |
2568 Output goes in buffer named *Dissociation*, | |
2569 which is redisplayed each time text is added to it. | |
2570 Every so often the user must say whether to continue. | |
2571 If ARG is positive, require ARG chars of continuity. | |
2572 If ARG is negative, require -ARG words of continuity. | |
2573 Default is 2." t nil) | |
2574 | |
2575 ;;;*** | |
2576 | |
2577 ;;;### (autoloads (doctor) "doctor" "games/doctor.el" (12983 27376)) | |
2578 ;;; Generated autoloads from games/doctor.el | |
2579 | |
2580 (autoload 'doctor "doctor" "\ | |
2581 Switch to *doctor* buffer and start giving psychotherapy." t nil) | |
2582 | |
2583 ;;;*** | |
2584 | |
2585 ;;;### (autoloads (dunnet) "dunnet" "games/dunnet.el" (12983 27379)) | |
2586 ;;; Generated autoloads from games/dunnet.el | |
2587 | |
2588 (autoload 'dunnet "dunnet" "\ | |
2589 Switch to *dungeon* buffer and start game." t nil) | |
2590 | |
2591 ;;;*** | |
2592 | |
2593 ;;;### (autoloads (flame) "flame" "games/flame.el" (12983 27378)) | |
2594 ;;; Generated autoloads from games/flame.el | |
2595 | |
2596 (autoload 'flame "flame" "\ | |
2597 Generate ARG (default 1) sentences of half-crazed gibberish." t nil) | |
2598 | |
2599 ;;;*** | |
2600 | |
2601 ;;;### (autoloads (gomoku) "gomoku" "games/gomoku.el" (12983 27376)) | |
2602 ;;; Generated autoloads from games/gomoku.el | |
2603 | |
2604 (autoload 'gomoku "gomoku" "\ | |
2605 Start a Gomoku game between you and Emacs. | |
2606 If a game is in progress, this command allow you to resume it. | |
2607 If optional arguments N and M are given, an N by M board is used. | |
2608 If prefix arg is given for N, M is prompted for. | |
2609 | |
2610 You and Emacs play in turn by marking a free square. You mark it with X | |
2611 and Emacs marks it with O. The winner is the first to get five contiguous | |
2612 marks horizontally, vertically or in diagonal. | |
2613 | |
2614 You play by moving the cursor over the square you choose and hitting | |
2615 \\<gomoku-mode-map>\\[gomoku-human-plays]. | |
2616 Use \\[describe-mode] for more info." t nil) | |
2617 | |
2618 ;;;*** | |
2619 | |
2620 ;;;### (autoloads (hanoi) "hanoi" "games/hanoi.el" (12983 27377)) | |
2621 ;;; Generated autoloads from games/hanoi.el | |
2622 | |
2623 (autoload 'hanoi "hanoi" "\ | |
2624 Towers of Hanoi diversion. Argument is number of rings." t nil) | |
2625 | |
2626 ;;;*** | |
2627 | |
2628 ;;;### (autoloads (life) "life" "games/life.el" (12983 27377)) | |
2629 ;;; Generated autoloads from games/life.el | |
2630 | |
2631 (autoload 'life "life" "\ | |
2632 Run Conway's Life simulation. | |
2633 The starting pattern is randomly selected. Prefix arg (optional first | |
2634 arg non-nil from a program) is the number of seconds to sleep between | |
2635 generations (this defaults to 1)." t nil) | |
2636 | |
2637 ;;;*** | |
2638 | |
2639 ;;;### (autoloads (mpuz) "mpuz" "games/mpuz.el" (12983 27377)) | |
2640 ;;; Generated autoloads from games/mpuz.el | |
2641 | |
2642 (autoload 'mpuz "mpuz" "\ | |
2643 Multiplication puzzle with GNU Emacs." t nil) | |
2644 | |
2645 ;;;*** | |
2646 | |
2647 ;;;### (autoloads (snarf-spooks spook) "spook" "games/spook.el" (12983 27377)) | |
2648 ;;; Generated autoloads from games/spook.el | |
2649 | |
2650 (autoload 'spook "spook" "\ | |
2651 Adds that special touch of class to your outgoing mail." t nil) | |
2652 | |
2653 (autoload 'snarf-spooks "spook" "\ | |
2654 Return a vector containing the lines from `spook-phrases-file'." nil nil) | |
2655 | |
2656 ;;;*** | |
2657 | |
2658 ;;;*** | |
2659 | |
2660 ;;;*** | |
2661 | |
2662 ;;;### (autoloads nil "studly" "games/studly.el" (12983 27379)) | |
2663 ;;; Generated autoloads from games/studly.el | |
2664 | |
2665 ;;;### (autoloads (psychoanalyze-pinhead apropos-zippy insert-zippyism yow) "yow" "games/yow.el" (12983 27379)) | |
2666 ;;; Generated autoloads from games/yow.el | |
2667 | |
2668 (autoload 'yow "yow" "\ | |
2669 Return or display a random Zippy quotation. With prefix arg, insert it." t nil) | |
2670 | |
2671 (autoload 'insert-zippyism "yow" "\ | |
2672 Prompt with completion for a known Zippy quotation, and insert it at point." t nil) | |
2673 | |
2674 (autoload 'apropos-zippy "yow" "\ | |
2675 Return a list of all Zippy quotes matching REGEXP. | |
2676 If called interactively, display a list of matches." t nil) | |
2677 | |
2678 (autoload 'psychoanalyze-pinhead "yow" "\ | |
2679 Zippy goes to the analyst." t nil) | |
2680 | |
2681 ;;;*** | |
2682 | |
2683 ;;;*** | |
2684 | |
2685 ;;;### (autoloads nil "custom" "gnus/custom.el" (12983 26757)) | |
2686 ;;; Generated autoloads from gnus/custom.el | |
2687 | |
2688 ;;;*** | |
2689 | |
2690 ;;;### (autoloads nil "dgnushack" "gnus/dgnushack.el" (12983 26759)) | |
2691 ;;; Generated autoloads from gnus/dgnushack.el | |
2692 | |
2693 ;;;### (autoloads (gnus-earcon-display) "earcon" "gnus/earcon.el" (12983 26772)) | |
2694 ;;; Generated autoloads from gnus/earcon.el | |
2695 | |
2696 (autoload 'gnus-earcon-display "earcon" "\ | |
2697 Play sounds in message buffers." t nil) | |
2698 | |
2699 ;;;*** | |
2700 | |
2701 ;;;### (autoloads (gnus-cache-generate-nov-databases gnus-cache-generate-active gnus-jog-cache) "gnus-cache" "gnus/gnus-cache.el" (12983 26757)) | |
2702 ;;; Generated autoloads from gnus/gnus-cache.el | |
2703 | |
2704 (autoload 'gnus-jog-cache "gnus-cache" "\ | |
2705 Go through all groups and put the articles into the cache." t nil) | |
2706 | |
2707 (autoload 'gnus-cache-generate-active "gnus-cache" "\ | |
2708 Generate the cache active file." t nil) | |
2709 | |
2710 (autoload 'gnus-cache-generate-nov-databases "gnus-cache" "\ | |
2711 Generate NOV files recursively starting in DIR." t nil) | |
2712 | |
2713 ;;;*** | |
2714 | |
2715 ;;;*** | |
2716 | |
2717 ;;;*** | |
2718 | |
2719 ;;;### (autoloads nil "gnus-cite" "gnus/gnus-cite.el" (12983 26759)) | |
2720 ;;; Generated autoloads from gnus/gnus-cite.el | |
2721 | |
2722 ;;;*** | |
2723 | |
2724 ;;;### (autoloads nil "gnus-cus" "gnus/gnus-cus.el" (12983 26759)) | |
2725 ;;; Generated autoloads from gnus/gnus-cus.el | |
2726 | |
2727 ;;;*** | |
2728 | |
2729 ;;;### (autoloads nil "gnus-demon" "gnus/gnus-demon.el" (12983 25932)) | |
2730 ;;; Generated autoloads from gnus/gnus-demon.el | |
2731 | |
2732 ;;;*** | |
2733 | |
2734 ;;;### (autoloads nil "gnus-edit" "gnus/gnus-edit.el" (12983 26760)) | |
2735 ;;; Generated autoloads from gnus/gnus-edit.el | |
2736 | |
2737 ;;;*** | |
2738 | |
2739 ;;;### (autoloads nil "gnus-ems" "gnus/gnus-ems.el" (12983 26760)) | |
2740 ;;; Generated autoloads from gnus/gnus-ems.el | |
2741 | |
2742 ;;;*** | |
2743 | |
2744 ;;;### (autoloads nil "gnus-gl" "gnus/gnus-gl.el" (12983 26768)) | |
2745 ;;; Generated autoloads from gnus/gnus-gl.el | |
2746 | |
2747 ;;;*** | |
2748 | |
2749 ;;;### (autoloads nil "gnus-kill" "gnus/gnus-kill.el" (12983 25925)) | |
2750 ;;; Generated autoloads from gnus/gnus-kill.el | |
2751 | |
2752 ;;;*** | |
2753 | |
2754 ;;;*** | |
2755 | |
2756 ;;;### (autoloads nil "gnus-mh" "gnus/gnus-mh.el" (12983 25925)) | |
2757 ;;; Generated autoloads from gnus/gnus-mh.el | |
2758 | |
2759 ;;;*** | |
2760 | |
2761 ;;;### (autoloads nil "gnus-msg" "gnus/gnus-msg.el" (12983 26760)) | |
2762 ;;; Generated autoloads from gnus/gnus-msg.el | |
2763 | |
2764 ;;;*** | |
2765 | |
2766 ;;;### (autoloads nil "gnus-nocem" "gnus/gnus-nocem.el" (12983 26768)) | |
2767 ;;; Generated autoloads from gnus/gnus-nocem.el | |
2768 | |
2769 ;;;*** | |
2770 | |
2771 ;;;### (autoloads nil "gnus-picon" "gnus/gnus-picon.el" (12983 26768)) | |
2772 ;;; Generated autoloads from gnus/gnus-picon.el | |
2773 | |
2774 ;;;*** | |
2775 | |
2776 ;;;### (autoloads nil "gnus-salt" "gnus/gnus-salt.el" (12983 25933)) | |
2777 ;;; Generated autoloads from gnus/gnus-salt.el | |
2778 | |
2779 ;;;*** | |
2780 | |
2781 ;;;### (autoloads nil "gnus-score" "gnus/gnus-score.el" (12983 26756)) | |
2782 ;;; Generated autoloads from gnus/gnus-score.el | |
2783 | |
2784 ;;;*** | |
2785 | |
2786 ;;;### (autoloads nil "gnus-setup" "gnus/gnus-setup.el" (12983 25934)) | |
2787 ;;; Generated autoloads from gnus/gnus-setup.el | |
2788 | |
2789 ;;;### (autoloads (gnus-sound-play) "gnus-sound" "gnus/gnus-sound.el" (12983 26772)) | |
2790 ;;; Generated autoloads from gnus/gnus-sound.el | |
2791 | |
2792 (autoload 'gnus-sound-play "gnus-sound" "\ | |
2793 Play a sound through the speaker." t nil) | |
2794 | |
2795 ;;;*** | |
2796 | |
2797 ;;;### (autoloads (gnus-batch-brew-soup) "gnus-soup" "gnus/gnus-soup.el" (12983 25934)) | |
2798 ;;; Generated autoloads from gnus/gnus-soup.el | |
2799 | |
2800 (autoload 'gnus-batch-brew-soup "gnus-soup" "\ | |
2801 Brew a SOUP packet from groups mention on the command line. | |
2802 Will use the remaining command line arguments as regular expressions | |
2803 for matching on group names. | |
2804 | |
2805 For instance, if you want to brew on all the nnml groups, as well as | |
2806 groups with \"emacs\" in the name, you could say something like: | |
2807 | |
2808 $ emacs -batch -f gnus-batch-brew-soup ^nnml \".*emacs.*\"" t nil) | |
2809 | |
2810 ;;;*** | |
2811 | |
2812 ;;;*** | |
2813 | |
2814 ;;;### (autoloads nil "gnus-srvr" "gnus/gnus-srvr.el" (12983 25929)) | |
2815 ;;; Generated autoloads from gnus/gnus-srvr.el | |
2816 | |
2817 ;;;*** | |
2818 | |
2819 ;;;*** | |
2820 | |
2821 ;;;### (autoloads nil "gnus-topic" "gnus/gnus-topic.el" (12983 26767)) | |
2822 ;;; Generated autoloads from gnus/gnus-topic.el | |
2823 | |
2824 ;;;*** | |
2825 | |
2826 ;;;### (autoloads nil "gnus-uu" "gnus/gnus-uu.el" (12983 26762)) | |
2827 ;;; Generated autoloads from gnus/gnus-uu.el | |
2828 | |
2829 ;;;*** | |
2830 | |
2831 ;;;### (autoloads nil "gnus-vis" "gnus/gnus-vis.el" (12983 26762)) | |
2832 ;;; Generated autoloads from gnus/gnus-vis.el | |
2833 | |
2834 ;;;*** | |
2835 | |
2836 ;;;### (autoloads nil "gnus-vm" "gnus/gnus-vm.el" (12983 25929)) | |
2837 ;;; Generated autoloads from gnus/gnus-vm.el | |
2838 | |
2839 ;;;*** | |
2840 | |
2841 ;;;### (autoloads nil "gnus-xmas" "gnus/gnus-xmas.el" (12983 26769)) | |
2842 ;;; Generated autoloads from gnus/gnus-xmas.el | |
2843 | |
2844 ;;;### (autoloads (gnus-batch-score gnus-fetch-group gnus gnus-other-frame gnus-slave gnus-no-server gnus-slave-no-server gnus-add-configuration gnus-update-format) "gnus" "gnus/gnus.el" (12983 26758)) | |
2845 ;;; Generated autoloads from gnus/gnus.el | |
2846 | |
2847 (autoload 'gnus-update-format "gnus" "\ | |
2848 Update the format specification near point." t nil) | |
2849 | |
2850 (autoload 'gnus-add-configuration "gnus" "\ | |
2851 Add the window configuration CONF to `gnus-buffer-configuration'." nil nil) | |
2852 | |
2853 (autoload 'gnus-slave-no-server "gnus" "\ | |
2854 Read network news as a slave, without connecting to local server" t nil) | |
2855 | |
2856 (autoload 'gnus-no-server "gnus" "\ | |
2857 Read network news. | |
2858 If ARG is a positive number, Gnus will use that as the | |
2859 startup level. If ARG is nil, Gnus will be started at level 2. | |
2860 If ARG is non-nil and not a positive number, Gnus will | |
2861 prompt the user for the name of an NNTP server to use. | |
2862 As opposed to `gnus', this command will not connect to the local server." t nil) | |
2863 | |
2864 (autoload 'gnus-slave "gnus" "\ | |
2865 Read news as a slave." t nil) | |
2866 | |
2867 (autoload 'gnus-other-frame "gnus" "\ | |
2868 Pop up a frame to read news." t nil) | |
2869 | |
2870 (autoload 'gnus "gnus" "\ | |
2871 Read network news. | |
2872 If ARG is non-nil and a positive number, Gnus will use that as the | |
2873 startup level. If ARG is non-nil and not a positive number, Gnus will | |
2874 prompt the user for the name of an NNTP server to use." t nil) | |
2875 | |
2876 (autoload 'gnus-fetch-group "gnus" "\ | |
2877 Start Gnus if necessary and enter GROUP. | |
2878 Returns whether the fetching was successful or not." t nil) | |
2879 | |
2880 (defalias 'gnus-batch-kill 'gnus-batch-score) | |
2881 | |
2882 (autoload 'gnus-batch-score "gnus" "\ | |
2883 Run batched scoring. | |
2884 Usage: emacs -batch -l gnus -f gnus-batch-score <newsgroups> ... | |
2885 Newsgroups is a list of strings in Bnews format. If you want to score | |
2886 the comp hierarchy, you'd say \"comp.all\". If you would not like to | |
2887 score the alt hierarchy, you'd say \"!alt.all\"." t nil) | |
2888 | |
2889 ;;;*** | |
2890 | |
2891 ;;;*** | |
2892 | |
2893 ;;;### (autoloads nil "mailheader" "gnus/mailheader.el" (12983 25935)) | |
2894 ;;; Generated autoloads from gnus/mailheader.el | |
2895 | |
2896 ;;;*** | |
2897 | |
2898 ;;;### (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" (12983 26770)) | |
2899 ;;; Generated autoloads from gnus/message.el | |
2900 | |
2901 (defvar message-fcc-handler-function 'rmail-output "\ | |
2902 *A function called to save outgoing articles. | |
2903 This function will be called with the name of the file to store the | |
2904 article in. The default function is `rmail-output' which saves in Unix | |
2905 mailbox format.") | |
2906 | |
2907 (defvar message-courtesy-message "The following message is a courtesy copy of an article\nthat has been posted as well.\n\n" "\ | |
2908 *This is inserted at the start of a mailed copy of a posted message. | |
2909 If this variable is nil, no such courtesy message will be added.") | |
2910 | |
2911 (defvar message-ignored-bounced-headers "^\\(Received\\|Return-Path\\):" "\ | |
2912 *Regexp that matches headers to be removed in resent bounced mail.") | |
2913 | |
2914 (defvar message-from-style 'default "\ | |
2915 *Specifies how \"From\" headers look. | |
2916 | |
2917 If `nil', they contain just the return address like: | |
2918 king@grassland.com | |
2919 If `parens', they look like: | |
2920 king@grassland.com (Elvis Parsley) | |
2921 If `angles', they look like: | |
2922 Elvis Parsley <king@grassland.com> | |
2923 | |
2924 Otherwise, most addresses look like `angles', but they look like | |
2925 `parens' if `angles' would need quoting and `parens' would not.") | |
2926 | |
2927 (defvar message-syntax-checks nil "\ | |
2928 Controls what syntax checks should not be performed on outgoing posts. | |
2929 To disable checking of long signatures, for instance, add | |
2930 `(signature . disabled)' to this list. | |
2931 | |
2932 Don't touch this variable unless you really know what you're doing. | |
2933 | |
2934 Checks include subject-cmsg multiple-headers sendsys message-id from | |
2935 long-lines control-chars size new-text redirected-followup signature | |
2936 approved sender empty empty-headers message-id from subject.") | |
2937 | |
2938 (defvar message-required-news-headers '(From Newsgroups Subject Date Message-ID (optional . Organization) Lines (optional . X-Newsreader)) "\ | |
2939 *Headers to be generated or prompted for when posting an article. | |
2940 RFC977 and RFC1036 require From, Date, Newsgroups, Subject, | |
2941 Message-ID. Organization, Lines, In-Reply-To, Expires, and | |
2942 X-Newsreader are optional. If don't you want message to insert some | |
2943 header, remove it from this list.") | |
2944 | |
2945 (defvar message-required-mail-headers '(From Subject Date (optional . In-Reply-To) Message-ID Lines (optional . X-Mailer)) "\ | |
2946 *Headers to be generated or prompted for when mailing a message. | |
2947 RFC822 required that From, Date, To, Subject and Message-ID be | |
2948 included. Organization, Lines and X-Mailer are optional.") | |
2949 | |
2950 (defvar message-deletable-headers '(Message-ID Date) "\ | |
2951 *Headers to be deleted if they already exist and were generated by message previously.") | |
2952 | |
2953 (defvar message-ignored-news-headers "^NNTP-Posting-Host:\\|^Xref:\\|^Bcc:\\|^Gcc:\\|^Fcc:" "\ | |
2954 *Regexp of headers to be removed unconditionally before posting.") | |
2955 | |
2956 (defvar message-ignored-mail-headers "^Gcc:\\|^Fcc:" "\ | |
2957 *Regexp of headers to be removed unconditionally before mailing.") | |
2958 | |
2959 (defvar message-ignored-supersedes-headers "^Path:\\|^Date\\|^NNTP-Posting-Host:\\|^Xref:\\|^Lines:\\|^Received:\\|^X-From-Line:\\|Return-Path:\\|^Supersedes:" "\ | |
2960 *Header lines matching this regexp will be deleted before posting. | |
2961 It's best to delete old Path and Date headers before posting to avoid | |
2962 any confusion.") | |
2963 | |
2964 (defvar message-signature-separator "^-- *$" "\ | |
2965 Regexp matching the signature separator.") | |
2966 | |
2967 (defvar message-interactive nil "\ | |
2968 Non-nil means when sending a message wait for and display errors. | |
2969 nil means let mailer mail back a message to report errors.") | |
2970 | |
2971 (defvar message-generate-new-buffers t "\ | |
2972 *Non-nil means that a new message buffer will be created whenever `mail-setup' is called. | |
2973 If this is a function, call that function with three parameters: The type, | |
2974 the to address and the group name. (Any of these may be nil.) The function | |
2975 should return the new buffer name.") | |
2976 | |
2977 (defvar message-kill-buffer-on-exit nil "\ | |
2978 *Non-nil means that the message buffer will be killed after sending a message.") | |
2979 | |
2980 (defvar message-user-organization-file "/usr/lib/news/organization" "\ | |
2981 *Local news organization file.") | |
2982 | |
2983 (defvar message-signature-before-forwarded-message t "\ | |
2984 *If non-nil, put the signature before any included forwarded message.") | |
2985 | |
2986 (defvar message-included-forward-headers "^From:\\|^Newsgroups:\\|^Subject:\\|^Date:\\|^Followup-To:\\|^Reply-To:\\|^Organization:\\|^Summary:\\|^Keywords:\\|^To:\\|^Cc:\\|^Posted-To:\\|^Mail-Copies-To:\\|^Apparently-To:\\|^Gnus-Warning:\\|^Resent-\\|^Message-ID:\\|^References:" "\ | |
2987 *Regexp matching headers to be included in forwarded messages.") | |
2988 | |
2989 (defvar message-ignored-resent-headers "^Return-receipt" "\ | |
2990 *All headers that match this regexp will be deleted when resending a message.") | |
2991 | |
2992 (defvar message-ignored-cited-headers "." "\ | |
2993 Delete these headers from the messages you yank.") | |
2994 | |
2995 (defvar message-send-mail-function 'message-send-mail-with-sendmail "\ | |
2996 Function to call to send the current buffer as mail. | |
2997 The headers should be delimited by a line whose contents match the | |
2998 variable `mail-header-separator'. | |
2999 | |
3000 Legal values include `message-send-mail-with-mh' and | |
3001 `message-send-mail-with-sendmail', which is the default.") | |
3002 | |
3003 (defvar message-send-news-function 'message-send-news "\ | |
3004 Function to call to send the current buffer as news. | |
3005 The headers should be delimited by a line whose contents match the | |
3006 variable `mail-header-separator'.") | |
3007 | |
3008 (defvar message-reply-to-function nil "\ | |
3009 Function that should return a list of headers. | |
3010 This function should pick out addresses from the To, Cc, and From headers | |
3011 and respond with new To and Cc headers.") | |
3012 | |
3013 (defvar message-wide-reply-to-function nil "\ | |
3014 Function that should return a list of headers. | |
3015 This function should pick out addresses from the To, Cc, and From headers | |
3016 and respond with new To and Cc headers.") | |
3017 | |
3018 (defvar message-followup-to-function nil "\ | |
3019 Function that should return a list of headers. | |
3020 This function should pick out addresses from the To, Cc, and From headers | |
3021 and respond with new To and Cc headers.") | |
3022 | |
3023 (defvar message-use-followup-to 'ask "\ | |
3024 *Specifies what to do with Followup-To header. | |
3025 If nil, ignore the header. If it is t, use its value, but query before | |
3026 using the \"poster\" value. If it is the symbol `ask', query the user | |
3027 whether to ignore the \"poster\" value. If it is the symbol `use', | |
3028 always use the value.") | |
3029 | |
3030 (defvar message-post-method (cond ((and (boundp 'gnus-post-method) gnus-post-method) gnus-post-method) ((boundp 'gnus-select-method) gnus-select-method) (t '(nnspool ""))) "\ | |
3031 Method used to post news.") | |
3032 | |
3033 (defvar message-generate-headers-first nil "\ | |
3034 *If non-nil, generate all possible headers before composing.") | |
3035 | |
3036 (defvar message-citation-line-function 'message-insert-citation-line "\ | |
3037 *Function called to insert the \"Whomever writes:\" line.") | |
3038 | |
3039 (defvar message-yank-prefix "> " "\ | |
3040 *Prefix inserted on the lines of yanked messages. | |
3041 nil means use indentation.") | |
3042 | |
3043 (defvar message-cite-function 'message-cite-original "\ | |
3044 *Function for citing an original message.") | |
3045 | |
3046 (defvar message-indent-citation-function 'message-indent-citation "\ | |
3047 *Function for modifying a citation just inserted in the mail buffer. | |
3048 This can also be a list of functions. Each function can find the | |
3049 citation between (point) and (mark t). And each function should leave | |
3050 point and mark around the citation text as modified.") | |
3051 | |
3052 (defvar message-signature t "\ | |
3053 *String to be inserted at the end of the message buffer. | |
3054 If t, the `message-signature-file' file will be inserted instead. | |
3055 If a function, the result from the function will be used instead. | |
3056 If a form, the result from the form will be used instead.") | |
3057 | |
3058 (defvar message-signature-file "~/.signature" "\ | |
3059 *File containing the text inserted at end of message. buffer.") | |
3060 | |
3061 (defvar message-default-headers nil "\ | |
3062 *A string containing header lines to be inserted in outgoing messages. | |
3063 It is inserted before you edit the message, so you can edit or delete | |
3064 these lines.") | |
3065 | |
3066 (defvar message-default-mail-headers nil "\ | |
3067 *A string of header lines to be inserted in outgoing mails.") | |
3068 | |
3069 (defvar message-default-news-headers nil "\ | |
3070 *A string of header lines to be inserted in outgoing news articles.") | |
3071 | |
3072 (autoload 'message-mode "message" "\ | |
3073 Major mode for editing mail and news to be sent. | |
3074 Like Text Mode but with these additional commands: | |
3075 C-c C-s message-send (send the message) C-c C-c message-send-and-exit | |
3076 C-c C-f move to a header field (and create it if there isn't): | |
3077 C-c C-f C-t move to To C-c C-f C-s move to Subject | |
3078 C-c C-f C-c move to Cc C-c C-f C-b move to Bcc | |
3079 C-c C-f C-f move to Fcc C-c C-f C-r move to Reply-To | |
3080 C-c C-f C-u move to Summary C-c C-f C-n move to Newsgroups | |
3081 C-c C-f C-k move to Keywords C-c C-f C-d move to Distribution | |
3082 C-c C-f C-o move to Followup-To | |
3083 C-c C-t message-insert-to (add a To header to a news followup) | |
3084 C-c C-n message-insert-newsgroups (add a Newsgroup header to a news reply) | |
3085 C-c C-b message-goto-body (move to beginning of message text). | |
3086 C-c C-i message-goto-signature (move to the beginning of the signature). | |
3087 C-c C-w message-insert-signature (insert `message-signature-file' file). | |
3088 C-c C-y message-yank-original (insert current message, if any). | |
3089 C-c C-q message-fill-yanked-message (fill what was yanked). | |
3090 C-c C-r message-ceasar-buffer-body (rot13 the message body)." t nil) | |
3091 | |
3092 (autoload 'message-mail "message" "\ | |
3093 Start editing a mail message to be sent." t nil) | |
3094 | |
3095 (autoload 'message-news "message" "\ | |
3096 Start editing a news article to be sent." t nil) | |
3097 | |
3098 (autoload 'message-reply "message" "\ | |
3099 Start editing a reply to the article in the current buffer." t nil) | |
3100 | |
3101 (autoload 'message-wide-reply "message" nil t nil) | |
3102 | |
3103 (autoload 'message-followup "message" nil t nil) | |
3104 | |
3105 (autoload 'message-cancel-news "message" "\ | |
3106 Cancel an article you posted." t nil) | |
3107 | |
3108 (autoload 'message-supersede "message" "\ | |
3109 Start composing a message to supersede the current message. | |
3110 This is done simply by taking the old article and adding a Supersedes | |
3111 header line with the old Message-ID." t nil) | |
3112 | |
3113 (autoload 'message-recover "message" "\ | |
3114 Reread contents of current buffer from its last auto-save file." t nil) | |
3115 | |
3116 (autoload 'message-forward "message" "\ | |
3117 Forward the current message via mail. | |
3118 Optional NEWS will use news to forward instead of mail." t nil) | |
3119 | |
3120 (autoload 'message-resend "message" "\ | |
3121 Resend the current article to ADDRESS." t nil) | |
3122 | |
3123 (autoload 'message-bounce "message" "\ | |
3124 Re-mail the current message. | |
3125 This only makes sense if the current message is a bounce message than | |
3126 contains some mail you have written which has been bounced back to | |
3127 you." t nil) | |
3128 | |
3129 (autoload 'message-mail-other-window "message" "\ | |
3130 Like `message-mail' command, but display mail buffer in another window." t nil) | |
3131 | |
3132 (autoload 'message-mail-other-frame "message" "\ | |
3133 Like `message-mail' command, but display mail buffer in another frame." t nil) | |
3134 | |
3135 (autoload 'message-news-other-window "message" "\ | |
3136 Start editing a news article to be sent." t nil) | |
3137 | |
3138 (autoload 'message-news-other-frame "message" "\ | |
3139 Start editing a news article to be sent." t nil) | |
3140 | |
3141 (autoload 'bold-region "message" "\ | |
3142 Bold all nonblank characters in the region. | |
3143 Works by overstriking characters. | |
3144 Called from program, takes two arguments START and END | |
3145 which specify the range to operate on." t nil) | |
3146 | |
3147 (autoload 'unbold-region "message" "\ | |
3148 Remove all boldness (overstruck characters) in the region. | |
3149 Called from program, takes two arguments START and END | |
3150 which specify the range to operate on." t nil) | |
3151 | |
3152 ;;;*** | |
3153 | |
3154 ;;;*** | |
3155 | |
3156 ;;;### (autoloads nil "messagexmas" "gnus/messagexmas.el" (12983 26770)) | |
3157 ;;; Generated autoloads from gnus/messagexmas.el | |
3158 | |
3159 ;;;*** | |
3160 | |
3161 ;;;### (autoloads nil "messcompat" "gnus/messcompat.el" (12983 26770)) | |
3162 ;;; Generated autoloads from gnus/messcompat.el | |
3163 | |
3164 ;;;*** | |
3165 | |
3166 ;;;### (autoloads nil "nnbabyl" "gnus/nnbabyl.el" (12983 26763)) | |
3167 ;;; Generated autoloads from gnus/nnbabyl.el | |
3168 | |
3169 ;;;*** | |
3170 | |
3171 ;;;### (autoloads nil "nndb" "gnus/nndb.el" (12983 25936)) | |
3172 ;;; Generated autoloads from gnus/nndb.el | |
3173 | |
3174 ;;;*** | |
3175 | |
3176 ;;;### (autoloads nil "nndir" "gnus/nndir.el" (12983 26764)) | |
3177 ;;; Generated autoloads from gnus/nndir.el | |
3178 | |
3179 ;;;*** | |
3180 | |
3181 ;;;### (autoloads nil "nndoc" "gnus/nndoc.el" (12983 26765)) | |
3182 ;;; Generated autoloads from gnus/nndoc.el | |
3183 | |
3184 ;;;*** | |
3185 | |
3186 ;;;*** | |
3187 | |
3188 ;;;### (autoloads nil "nndraft" "gnus/nndraft.el" (12983 25936)) | |
3189 ;;; Generated autoloads from gnus/nndraft.el | |
3190 | |
3191 ;;;*** | |
3192 | |
3193 ;;;### (autoloads nil "nneething" "gnus/nneething.el" (12983 26761)) | |
3194 ;;; Generated autoloads from gnus/nneething.el | |
3195 | |
3196 ;;;*** | |
3197 | |
3198 ;;;### (autoloads (nnfolder-generate-active-file) "nnfolder" "gnus/nnfolder.el" (12983 26764)) | |
3199 ;;; Generated autoloads from gnus/nnfolder.el | |
3200 | |
3201 (autoload 'nnfolder-generate-active-file "nnfolder" "\ | |
3202 Look for mbox folders in the nnfolder directory and make them into groups." t nil) | |
3203 | |
3204 ;;;*** | |
3205 | |
3206 ;;;*** | |
3207 | |
3208 ;;;### (autoloads nil "nnheader" "gnus/nnheader.el" (12983 26765)) | |
3209 ;;; Generated autoloads from gnus/nnheader.el | |
3210 | |
3211 ;;;*** | |
3212 | |
3213 ;;;*** | |
3214 | |
3215 ;;;### (autoloads nil "nnheaderxm" "gnus/nnheaderxm.el" (12983 25937)) | |
3216 ;;; Generated autoloads from gnus/nnheaderxm.el | |
3217 | |
3218 ;;;### (autoloads (nnkiboze-generate-groups) "nnkiboze" "gnus/nnkiboze.el" (12983 25930)) | |
3219 ;;; Generated autoloads from gnus/nnkiboze.el | |
3220 | |
3221 (autoload 'nnkiboze-generate-groups "nnkiboze" "\ | |
3222 Usage: emacs -batch -l nnkiboze -f nnkiboze-generate-groups | |
3223 Finds out what articles are to be part of the nnkiboze groups." t nil) | |
3224 | |
3225 ;;;*** | |
3226 | |
3227 ;;;*** | |
3228 | |
3229 ;;;### (autoloads nil "nnmail" "gnus/nnmail.el" (12983 26765)) | |
3230 ;;; Generated autoloads from gnus/nnmail.el | |
3231 | |
3232 ;;;*** | |
3233 | |
3234 ;;;### (autoloads nil "nnmbox" "gnus/nnmbox.el" (12983 26766)) | |
3235 ;;; Generated autoloads from gnus/nnmbox.el | |
3236 | |
3237 ;;;*** | |
3238 | |
3239 ;;;### (autoloads nil "nnmh" "gnus/nnmh.el" (12983 26763)) | |
3240 ;;; Generated autoloads from gnus/nnmh.el | |
3241 | |
3242 ;;;### (autoloads (nnml-generate-nov-databases) "nnml" "gnus/nnml.el" (12983 25930)) | |
3243 ;;; Generated autoloads from gnus/nnml.el | |
3244 | |
3245 (autoload 'nnml-generate-nov-databases "nnml" "\ | |
3246 Generate nov databases in all nnml directories." t nil) | |
3247 | |
3248 ;;;*** | |
3249 | |
3250 ;;;*** | |
3251 | |
3252 ;;;### (autoloads nil "nnoo" "gnus/nnoo.el" (12983 25936)) | |
3253 ;;; Generated autoloads from gnus/nnoo.el | |
3254 | |
3255 ;;;*** | |
3256 | |
3257 ;;;### (autoloads (nnsoup-revert-variables nnsoup-set-variables nnsoup-pack-replies) "nnsoup" "gnus/nnsoup.el" (12983 25936)) | |
3258 ;;; Generated autoloads from gnus/nnsoup.el | |
3259 | |
3260 (autoload 'nnsoup-pack-replies "nnsoup" "\ | |
3261 Make an outbound package of SOUP replies." t nil) | |
3262 | |
3263 (autoload 'nnsoup-set-variables "nnsoup" "\ | |
3264 Use the SOUP methods for posting news and mailing mail." t nil) | |
3265 | |
3266 (autoload 'nnsoup-revert-variables "nnsoup" "\ | |
3267 Revert posting and mailing methods to the standard Emacs methods." t nil) | |
3268 | |
3269 ;;;*** | |
3270 | |
3271 ;;;*** | |
3272 | |
3273 ;;;### (autoloads nil "nnspool" "gnus/nnspool.el" (12983 26759)) | |
3274 ;;; Generated autoloads from gnus/nnspool.el | |
3275 | |
3276 ;;;*** | |
3277 | |
3278 ;;;### (autoloads nil "nntp" "gnus/nntp.el" (12983 26760)) | |
3279 ;;; Generated autoloads from gnus/nntp.el | |
3280 | |
3281 ;;;*** | |
3282 | |
3283 ;;;### (autoloads nil "nnvirtual" "gnus/nnvirtual.el" (12983 25931)) | |
3284 ;;; Generated autoloads from gnus/nnvirtual.el | |
3285 | |
3286 ;;;### (autoloads (gnus-score-mode) "score-mode" "gnus/score-mode.el" (12983 26768)) | |
3287 ;;; Generated autoloads from gnus/score-mode.el | |
3288 | |
3289 (autoload 'gnus-score-mode "score-mode" "\ | |
3290 Mode for editing Gnus score files. | |
3291 This mode is an extended emacs-lisp mode. | |
3292 | |
3293 \\{gnus-score-mode-map}" t nil) | |
3294 | |
3295 ;;;*** | |
3296 | |
3297 ;;;### (autoloads (gnus-smiley-display smiley-buffer smiley-region) "smiley" "gnus/smiley.el" (12983 26771)) | |
3298 ;;; Generated autoloads from gnus/smiley.el | |
3299 | |
3300 (autoload 'smiley-region "smiley" "\ | |
3301 Smilify the region between point and mark." t nil) | |
3302 | |
3303 (autoload 'smiley-buffer "smiley" nil t nil) | |
3304 | |
3305 (autoload 'gnus-smiley-display "smiley" nil t nil) | |
3306 | |
3307 ;;;*** | |
3308 | |
3309 ;;;*** | |
3310 | |
3311 ;;;*** | |
3312 | |
3313 ;;;### (autoloads nil "adapt" "hm--html-menus/adapt.el" (12983 26917)) | |
3314 ;;; Generated autoloads from hm--html-menus/adapt.el | |
3315 | |
3316 ;;;*** | |
3317 | |
3318 ;;;### (autoloads nil "hm--date" "hm--html-menus/hm--date.el" (12983 26918)) | |
3319 ;;; Generated autoloads from hm--html-menus/hm--date.el | |
3320 | |
3321 ;;;*** | |
3322 | |
3323 ;;;### (autoloads nil "hm--html-configuration" "hm--html-menus/hm--html-configuration.el" (12983 26919)) | |
3324 ;;; Generated autoloads from hm--html-menus/hm--html-configuration.el | |
3325 | |
3326 ;;;*** | |
3327 | |
3328 ;;;### (autoloads nil "hm--html-drag-and-drop" "hm--html-menus/hm--html-drag-and-drop.el" (12983 26920)) | |
3329 ;;; Generated autoloads from hm--html-menus/hm--html-drag-and-drop.el | |
3330 | |
3331 ;;;*** | |
3332 | |
3333 ;;;*** | |
3334 | |
3335 ;;;### (autoloads nil "hm--html-keys" "hm--html-menus/hm--html-keys.el" (12983 26920)) | |
3336 ;;; Generated autoloads from hm--html-menus/hm--html-keys.el | |
3337 | |
3338 ;;;*** | |
3339 | |
3340 ;;;*** | |
3341 | |
3342 ;;;*** | |
3343 | |
3344 ;;;### (autoloads nil "hm--html-menu" "hm--html-menus/hm--html-menu.el" (12983 26918)) | |
3345 ;;; Generated autoloads from hm--html-menus/hm--html-menu.el | |
3346 | |
3347 ;;;### (autoloads (hm--html-minor-mode hm--html-mode) "hm--html-mode" "hm--html-menus/hm--html-mode.el" (12983 26920)) | |
3348 ;;; Generated autoloads from hm--html-menus/hm--html-mode.el | |
3349 | |
3350 (autoload 'hm--html-mode "hm--html-mode" "\ | |
3351 Major mode for editing HTML hypertext documents. | |
3352 Special commands:\\{hm--html-mode-map} | |
3353 Turning on hm--html-mode calls the value of the variable hm--html-mode-hook, | |
3354 if that value is non-nil." t nil) | |
3355 | |
3356 (autoload 'hm--html-minor-mode "hm--html-mode" "\ | |
3357 Toggle hm--html-minor-mode. | |
3358 With arg, turn hm--html-minor-mode on iff arg is positive." t nil) | |
3359 | |
3360 ;;;*** | |
3361 | |
3362 ;;;*** | |
3363 | |
3364 ;;;### (autoloads nil "hm--html" "hm--html-menus/hm--html.el" (12983 26919)) | |
3365 ;;; Generated autoloads from hm--html-menus/hm--html.el | |
3366 | |
3367 ;;;*** | |
3368 | |
3369 ;;;### (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" (12983 26188)) | |
3370 ;;; Generated autoloads from hm--html-menus/html-view.el | |
3371 | |
3372 (autoload 'html-view-start-mosaic "html-view" "\ | |
3373 Start Mosaic." t nil) | |
3374 | |
3375 (autoload 'html-view-view-file "html-view" "\ | |
3376 View an html file with Mosaic." t nil) | |
3377 | |
3378 (autoload 'html-view-view-buffer "html-view" "\ | |
3379 View html buffer with Mosaic. | |
3380 If BUFFER-TO-VIEW is nil, then the current buffer is used." t nil) | |
3381 | |
3382 (autoload 'html-view-goto-url "html-view" "\ | |
3383 Goto an URL in Mosaic." t nil) | |
3384 | |
3385 (autoload 'html-view-get-display "html-view" "\ | |
3386 Get the display for Mosaic." t nil) | |
3387 | |
3388 ;;;*** | |
3389 | |
3390 ;;;*** | |
3391 | |
3392 ;;;### (autoloads nil "internal-drag-and-drop" "hm--html-menus/internal-drag-and-drop.el" (12983 26920)) | |
3393 ;;; Generated autoloads from hm--html-menus/internal-drag-and-drop.el | |
3394 | |
3395 ;;;*** | |
3396 | |
3397 ;;;### (autoloads nil "tmpl-minor-mode" "hm--html-menus/tmpl-minor-mode.el" (12983 26919)) | |
3398 ;;; Generated autoloads from hm--html-menus/tmpl-minor-mode.el | |
3399 | |
3400 ;;;*** | |
3401 | |
3402 ;;;### (autoloads nil "hact" "hyperbole/hact.el" (12983 26155)) | |
3403 ;;; Generated autoloads from hyperbole/hact.el | |
3404 | |
3405 ;;;*** | |
3406 | |
3407 ;;;### (autoloads nil "hactypes" "hyperbole/hactypes.el" (12983 26155)) | |
3408 ;;; Generated autoloads from hyperbole/hactypes.el | |
3409 | |
3410 ;;;*** | |
3411 | |
3412 ;;;### (autoloads nil "hargs" "hyperbole/hargs.el" (12983 26156)) | |
3413 ;;; Generated autoloads from hyperbole/hargs.el | |
3414 | |
3415 ;;;*** | |
3416 | |
3417 ;;;### (autoloads nil "hbdata" "hyperbole/hbdata.el" (12983 26158)) | |
3418 ;;; Generated autoloads from hyperbole/hbdata.el | |
3419 | |
3420 ;;;*** | |
3421 | |
3422 ;;;### (autoloads nil "hbmap" "hyperbole/hbmap.el" (12983 26156)) | |
3423 ;;; Generated autoloads from hyperbole/hbmap.el | |
3424 | |
3425 ;;;*** | |
3426 | |
3427 ;;;### (autoloads nil "hbut" "hyperbole/hbut.el" (12983 26156)) | |
3428 ;;; Generated autoloads from hyperbole/hbut.el | |
3429 | |
3430 ;;;*** | |
3431 | |
3432 ;;;### (autoloads nil "hgnus" "hyperbole/hgnus.el" (12983 26156)) | |
3433 ;;; Generated autoloads from hyperbole/hgnus.el | |
3434 | |
3435 ;;;*** | |
3436 | |
3437 ;;;### (autoloads nil "hhist" "hyperbole/hhist.el" (12983 26159)) | |
3438 ;;; Generated autoloads from hyperbole/hhist.el | |
3439 | |
3440 ;;;*** | |
3441 | |
3442 ;;;### (autoloads nil "hib-doc-id" "hyperbole/hib-doc-id.el" (12983 26159)) | |
3443 ;;; Generated autoloads from hyperbole/hib-doc-id.el | |
3444 | |
3445 ;;;*** | |
3446 | |
3447 ;;;### (autoloads nil "hib-kbd" "hyperbole/hib-kbd.el" (12983 26158)) | |
3448 ;;; Generated autoloads from hyperbole/hib-kbd.el | |
3449 | |
3450 ;;;*** | |
3451 | |
3452 ;;;### (autoloads nil "hibtypes" "hyperbole/hibtypes.el" (12983 26159)) | |
3453 ;;; Generated autoloads from hyperbole/hibtypes.el | |
3454 | |
3455 ;;;*** | |
3456 | |
3457 ;;;### (autoloads nil "hinit" "hyperbole/hinit.el" (12983 26160)) | |
3458 ;;; Generated autoloads from hyperbole/hinit.el | |
3459 | |
3460 ;;;*** | |
3461 | |
3462 ;;;### (autoloads nil "hlvar" "hyperbole/hlvar.el" (12983 26160)) | |
3463 ;;; Generated autoloads from hyperbole/hlvar.el | |
3464 | |
3465 ;;;### (autoloads (hmail:compose) "hmail" "hyperbole/hmail.el" (12983 26163)) | |
3466 ;;; Generated autoloads from hyperbole/hmail.el | |
3467 | |
3468 (autoload 'hmail:compose "hmail" "\ | |
3469 Compose mail with ADDRESS and evaluation of EXPR. | |
3470 Optional SUBJECT and HELP message may also be given." t nil) | |
3471 | |
3472 ;;;*** | |
3473 | |
3474 ;;;*** | |
3475 | |
3476 ;;;### (autoloads nil "hmh" "hyperbole/hmh.el" (12983 26163)) | |
3477 ;;; Generated autoloads from hyperbole/hmh.el | |
3478 | |
3479 ;;;*** | |
3480 | |
3481 ;;;### (autoloads nil "hmoccur" "hyperbole/hmoccur.el" (12983 26162)) | |
3482 ;;; Generated autoloads from hyperbole/hmoccur.el | |
3483 | |
3484 ;;;### (autoloads (Info-handle-in-note smart-info-assist smart-info) "hmous-info" "hyperbole/hmous-info.el" (12983 26163)) | |
3485 ;;; Generated autoloads from hyperbole/hmous-info.el | |
3486 | |
3487 (autoload 'smart-info "hmous-info" "\ | |
3488 Walks through Info documentation networks using one key or mouse key. | |
3489 | |
3490 If key is pressed within: | |
3491 (1) the first line of an Info Menu Entry or Cross Reference, the desired node | |
3492 is found; | |
3493 (2) the Up, Next, or Previous entries of a Node Header (first line), | |
3494 the desired node is found; | |
3495 (3) the File entry of a Node Header (first line), | |
3496 the 'Top' node within that file is found; | |
3497 (4) at the end of the current node, the Next node is found (this will | |
3498 descend subtrees if the function 'Info-global-next' is bound); | |
3499 (5) anywhere else (e.g. at the end of a line), the current node entry is | |
3500 scrolled up one windowful. | |
3501 | |
3502 Returns t if key is pressed within an Info Node Header, Cross Reference, | |
3503 or a Menu; otherwise returns nil." t nil) | |
3504 | |
3505 (autoload 'smart-info-assist "hmous-info" "\ | |
3506 Walks through Info documentation networks using one assist-key or mouse assist-key. | |
3507 | |
3508 If assist-key is pressed within: | |
3509 (1) the first line of an Info Menu Entry or Cross Reference, the desired node | |
3510 is found; | |
3511 (2) the Up, Next, or Previous entries of a Node Header (first line), | |
3512 the last node in the history list is found; | |
3513 (3) the File entry of a Node Header (first line), | |
3514 the 'DIR' root-level node is found; | |
3515 (4) at the end of the current node, the Previous node is found (this will | |
3516 return from subtrees if the function 'Info-global-prev is bound); | |
3517 (5) anywhere else (e.g. at the end of a line), the current node entry is | |
3518 scrolled down one windowful. | |
3519 | |
3520 Returns t if assist-key is pressed within an Info Node Header, Cross Reference, | |
3521 or a Menu; otherwise returns nil." t nil) | |
3522 | |
3523 (autoload 'Info-handle-in-note "hmous-info" "\ | |
3524 Follows an Info cross-reference. | |
3525 If point is within the first line of an Info note (cross-reference), follows | |
3526 cross-reference and returns t; otherwise returns nil." nil nil) | |
3527 | |
3528 ;;;*** | |
3529 | |
3530 ;;;*** | |
3531 | |
3532 ;;;### (autoloads nil "hmouse-drv" "hyperbole/hmouse-drv.el" (12983 26163)) | |
3533 ;;; Generated autoloads from hyperbole/hmouse-drv.el | |
3534 | |
3535 ;;;*** | |
3536 | |
3537 ;;;### (autoloads nil "hmouse-key" "hyperbole/hmouse-key.el" (12983 26163)) | |
3538 ;;; Generated autoloads from hyperbole/hmouse-key.el | |
3539 | |
3540 ;;;*** | |
3541 | |
3542 ;;;### (autoloads nil "hmouse-mod" "hyperbole/hmouse-mod.el" (12983 26165)) | |
3543 ;;; Generated autoloads from hyperbole/hmouse-mod.el | |
3544 | |
3545 ;;;*** | |
3546 | |
3547 ;;;### (autoloads nil "hmouse-reg" "hyperbole/hmouse-reg.el" (12983 26165)) | |
3548 ;;; Generated autoloads from hyperbole/hmouse-reg.el | |
3549 | |
3550 ;;;*** | |
3551 | |
3552 ;;;### (autoloads nil "hmouse-sh" "hyperbole/hmouse-sh.el" (12983 26165)) | |
3553 ;;; Generated autoloads from hyperbole/hmouse-sh.el | |
3554 | |
3555 ;;;### (autoloads (smart-tags-file smart-tags-file-path smart-objc-oobr smart-objc smart-fortran-at-tag-p smart-c++-oobr smart-c++ smart-c-at-tag-p smart-asm-at-tag-p) "hmouse-tag" "hyperbole/hmouse-tag.el" (12983 26165)) | |
3556 ;;; Generated autoloads from hyperbole/hmouse-tag.el | |
3557 | |
3558 (autoload 'smart-asm-at-tag-p "hmouse-tag" "\ | |
3559 Return assembly tag name that point is within, else nil." nil nil) | |
3560 | |
3561 (autoload 'smart-c-at-tag-p "hmouse-tag" "\ | |
3562 Return C tag name that point is within, else nil." nil nil) | |
3563 | |
3564 (autoload 'smart-c++ "hmouse-tag" "\ | |
3565 Jumps to the definition of optional C++ IDENTIFIER or the one at point. | |
3566 Optional second arg NEXT means jump to next matching C++ tag. | |
3567 | |
3568 It assumes that its caller has already checked that the key was pressed in an | |
3569 appropriate buffer and has moved the cursor to the selected buffer. | |
3570 | |
3571 If: | |
3572 (1) on a '#include' statement, the include file is displayed; | |
3573 Look for include file in directory lists 'smart-c-cpp-include-dirs' | |
3574 and 'smart-c-include-dirs'. | |
3575 (2) on a C++ identifier, the identifier definition is displayed, | |
3576 assuming the identifier is found within an 'etags' generated tag file | |
3577 in the current directory or any of its ancestor directories. | |
3578 (3) if 'smart-c-use-lib-man' is non-nil, the C++ identifier is | |
3579 recognized as a library symbol, and a man page is found for the | |
3580 identifier, then the man page is displayed." t nil) | |
3581 | |
3582 (autoload 'smart-c++-oobr "hmouse-tag" "\ | |
3583 Jumps to the definition of selected C++ construct via OO-Browser support. | |
3584 Optional JUNK is ignored. Does nothing if the OO-Browser is not available. | |
3585 | |
3586 It assumes that its caller has already checked that the key was pressed in an | |
3587 appropriate buffer and has moved the cursor to the selected buffer. | |
3588 | |
3589 If key is pressed: | |
3590 (1) on a '#include' statement, the include file is displayed; | |
3591 Look for include file in directory lists 'smart-c-cpp-include-dirs' | |
3592 and 'smart-c-include-dirs'. | |
3593 (2) within a method declaration, its definition is displayed; | |
3594 (3) on a class name, the class definition is shown. | |
3595 | |
3596 (2) and (3) require that an OO-Browser Environment has been loaded with | |
3597 the {M-x br-env-load RTN} command." t nil) | |
3598 | |
3599 (autoload 'smart-fortran-at-tag-p "hmouse-tag" "\ | |
3600 Return Fortran tag name that point is within, else nil." nil nil) | |
3601 | |
3602 (autoload 'smart-objc "hmouse-tag" "\ | |
3603 Jumps to the definition of optional Objective-C IDENTIFIER or the one at point. | |
3604 Optional second arg NEXT means jump to next matching Objective-C tag. | |
3605 | |
3606 It assumes that its caller has already checked that the key was pressed in an | |
3607 appropriate buffer and has moved the cursor to the selected buffer. | |
3608 | |
3609 If: | |
3610 (1) on a '#include' statement, the include file is displayed; | |
3611 Look for include file in directory lists 'smart-c-cpp-include-dirs' | |
3612 and 'smart-c-include-dirs'. | |
3613 (2) on an Objective-C identifier, the identifier definition is displayed, | |
3614 assuming the identifier is found within an 'etags' generated tag file | |
3615 in the current directory or any of its ancestor directories. | |
3616 (3) if 'smart-c-use-lib-man' is non-nil, the Objective-C identifier is | |
3617 recognized as a library symbol, and a man page is found for the | |
3618 identifier, then the man page is displayed." t nil) | |
3619 | |
3620 (autoload 'smart-objc-oobr "hmouse-tag" "\ | |
3621 Jumps to the definition of selected Objective-C construct via OO-Browser support. | |
3622 Optional JUNK is ignored. Does nothing if the OO-Browser is not available. | |
3623 | |
3624 It assumes that its caller has already checked that the key was pressed in an | |
3625 appropriate buffer and has moved the cursor to the selected buffer. | |
3626 | |
3627 If key is pressed: | |
3628 (1) on a '#include' statement, the include file is displayed; | |
3629 Look for include file in directory lists 'smart-c-cpp-include-dirs' | |
3630 and 'smart-c-include-dirs'. | |
3631 (2) within a method declaration, its definition is displayed; | |
3632 (3) on a class name, the class definition is shown. | |
3633 | |
3634 (2) and (3) require that an OO-Browser Environment has been loaded with | |
3635 the {M-x br-env-load RTN} command." t nil) | |
3636 | |
3637 (autoload 'smart-tags-file-path "hmouse-tag" "\ | |
3638 Expand relative FILE name by looking it up in the nearest tags file. | |
3639 Return FILE unchanged if it exists relative to the current directory or | |
3640 cannot be expanded via a tags file." nil nil) | |
3641 | |
3642 (autoload 'smart-tags-file "hmouse-tag" "\ | |
3643 Return appropriate tags file name for CURR-FILENAME or 'tags-file-name'." nil nil) | |
3644 | |
3645 ;;;*** | |
3646 | |
3647 ;;;*** | |
3648 | |
3649 ;;;### (autoloads nil "hpath" "hyperbole/hpath.el" (12983 26165)) | |
3650 ;;; Generated autoloads from hyperbole/hpath.el | |
3651 | |
3652 ;;;*** | |
3653 | |
3654 ;;;### (autoloads nil "hrmail" "hyperbole/hrmail.el" (12983 26167)) | |
3655 ;;; Generated autoloads from hyperbole/hrmail.el | |
3656 | |
3657 ;;;*** | |
3658 | |
3659 ;;;### (autoloads nil "hsite-ex" "hyperbole/hsite-ex.el" (12983 26166)) | |
3660 ;;; Generated autoloads from hyperbole/hsite-ex.el | |
3661 | |
3662 ;;;*** | |
3663 | |
3664 ;;;### (autoloads nil "hsite" "hyperbole/hsite.el" (12983 26175)) | |
3665 ;;; Generated autoloads from hyperbole/hsite.el | |
3666 | |
3667 ;;;*** | |
3668 | |
3669 ;;;### (autoloads nil "hsmail" "hyperbole/hsmail.el" (12983 26166)) | |
3670 ;;; Generated autoloads from hyperbole/hsmail.el | |
3671 | |
3672 ;;;*** | |
3673 | |
3674 ;;;### (autoloads nil "hsys-hbase" "hyperbole/hsys-hbase.el" (12983 26167)) | |
3675 ;;; Generated autoloads from hyperbole/hsys-hbase.el | |
3676 | |
3677 ;;;*** | |
3678 | |
3679 ;;;### (autoloads nil "hsys-w3" "hyperbole/hsys-w3.el" (12983 26167)) | |
3680 ;;; Generated autoloads from hyperbole/hsys-w3.el | |
3681 | |
3682 ;;;*** | |
3683 | |
3684 ;;;### (autoloads nil "hsys-wais" "hyperbole/hsys-wais.el" (12983 26167)) | |
3685 ;;; Generated autoloads from hyperbole/hsys-wais.el | |
3686 | |
3687 ;;;*** | |
3688 | |
3689 ;;;### (autoloads nil "hsys-www" "hyperbole/hsys-www.el" (12983 26167)) | |
3690 ;;; Generated autoloads from hyperbole/hsys-www.el | |
3691 | |
3692 ;;;*** | |
3693 | |
3694 ;;;### (autoloads nil "htz" "hyperbole/htz.el" (12983 26163)) | |
3695 ;;; Generated autoloads from hyperbole/htz.el | |
3696 | |
3697 ;;;*** | |
3698 | |
3699 ;;;### (autoloads nil "hui-em19-b" "hyperbole/hui-em19-b.el" (12983 26167)) | |
3700 ;;; Generated autoloads from hyperbole/hui-em19-b.el | |
3701 | |
3702 ;;;*** | |
3703 | |
3704 ;;;### (autoloads nil "hui-ep-but" "hyperbole/hui-ep-but.el" (12983 26167)) | |
3705 ;;; Generated autoloads from hyperbole/hui-ep-but.el | |
3706 | |
3707 ;;;*** | |
3708 | |
3709 ;;;### (autoloads nil "hui-epV4-b" "hyperbole/hui-epV4-b.el" (12983 26170)) | |
3710 ;;; Generated autoloads from hyperbole/hui-epV4-b.el | |
3711 | |
3712 ;;;*** | |
3713 | |
3714 ;;;### (autoloads nil "hui-menu" "hyperbole/hui-menu.el" (12983 26175)) | |
3715 ;;; Generated autoloads from hyperbole/hui-menu.el | |
3716 | |
3717 ;;;*** | |
3718 | |
3719 ;;;### (autoloads nil "hui-mini" "hyperbole/hui-mini.el" (12983 26171)) | |
3720 ;;; Generated autoloads from hyperbole/hui-mini.el | |
3721 | |
3722 ;;;*** | |
3723 | |
3724 ;;;### (autoloads nil "hui-mouse" "hyperbole/hui-mouse.el" (12983 26168)) | |
3725 ;;; Generated autoloads from hyperbole/hui-mouse.el | |
3726 | |
3727 ;;;*** | |
3728 | |
3729 ;;;### (autoloads nil "hui-window" "hyperbole/hui-window.el" (12983 26171)) | |
3730 ;;; Generated autoloads from hyperbole/hui-window.el | |
3731 | |
3732 ;;;*** | |
3733 | |
3734 ;;;### (autoloads nil "hui-xe-but" "hyperbole/hui-xe-but.el" (12983 26170)) | |
3735 ;;; Generated autoloads from hyperbole/hui-xe-but.el | |
3736 | |
3737 ;;;*** | |
3738 | |
3739 ;;;### (autoloads nil "hui" "hyperbole/hui.el" (12983 26173)) | |
3740 ;;; Generated autoloads from hyperbole/hui.el | |
3741 | |
3742 ;;;### (autoloads (var:append) "hvar" "hyperbole/hvar.el" (12983 26163)) | |
3743 ;;; Generated autoloads from hyperbole/hvar.el | |
3744 | |
3745 (autoload 'var:append "hvar" "\ | |
3746 Appends to value held by VAR-SYMBOL-NAME, LIST-TO-ADD. Returns new value. | |
3747 If VAR-SYMBOL-NAME is unbound, it is set to LIST-TO-ADD. | |
3748 Often used to append to 'hook' variables." nil nil) | |
3749 | |
3750 ;;;*** | |
3751 | |
3752 ;;;*** | |
3753 | |
3754 ;;;### (autoloads nil "hversion" "hyperbole/hversion.el" (12983 26173)) | |
3755 ;;; Generated autoloads from hyperbole/hversion.el | |
3756 | |
3757 ;;;*** | |
3758 | |
3759 ;;;### (autoloads nil "hvm" "hyperbole/hvm.el" (12983 26173)) | |
3760 ;;; Generated autoloads from hyperbole/hvm.el | |
3761 | |
3762 ;;;### (autoloads (hypb:configuration) "hypb" "hyperbole/hypb.el" (12983 26173)) | |
3763 ;;; Generated autoloads from hyperbole/hypb.el | |
3764 | |
3765 (autoload 'hypb:configuration "hypb" "\ | |
3766 Insert Emacs configuration information at the end of optional OUT-BUF or the current buffer." nil nil) | |
3767 | |
3768 ;;;*** | |
3769 | |
3770 ;;;### (autoloads nil "hyperbole" "hyperbole/hyperbole.el" (12983 26173)) | |
3771 ;;; Generated autoloads from hyperbole/hyperbole.el | |
3772 | |
3773 (defvar action-key-url-function 'w3-fetch "\ | |
3774 Value is a function of one argument, a url, which displays the url referent. | |
3775 Possible values are: | |
3776 w3-fetch - display using the W3 Emacs web browser; | |
3777 highlight-headers-follow-url-netscape - display in Netscape; | |
3778 highlight-headers-follow-url-mosaic - display in Mosaic.") | |
3779 | |
3780 (defvar kimport:mode-alist '((t . kimport:text) (outline-mode . kimport:star-outline)) "\ | |
3781 Alist of (major-mode . importation-function) elements. | |
3782 This determines the type of importation done on a file when `kimport:file' is | |
3783 called if the major mode of the import file matches the car of an element in | |
3784 this list. If there is no match, then `kimport:suffix-alist' is checked. If | |
3785 that yields no match, the element in this list whose car is 't is used. It | |
3786 normally does an import of a koutline or text file. | |
3787 | |
3788 Each importation-function must take two arguments, a buffer/file to import | |
3789 and a buffer/file into which to insert the imported elements and a third | |
3790 optional argument, CHILDREN-P, which when non-nil means insert imported cells | |
3791 as the initial set of children of the current cell, if any. | |
3792 | |
3793 outline-mode - imported as an Emacs outline whose entries begin with | |
3794 asterisks; | |
3795 .kot | |
3796 .kotl - imported as a structured koutline | |
3797 | |
3798 all others - imported as text.") | |
3799 | |
3800 (defvar kimport:suffix-alist '(("\\.otl$" . kimport:star-outline) ("\\.aug$" . kimport:aug-post-outline)) "\ | |
3801 Alist of (buffer-name-suffix-regexp . importation-function) elements. | |
3802 This determines the type of importation done on a file when `kimport:file' is | |
3803 called. Each importation-function must take two arguments, a buffer/file to | |
3804 import and a buffer/file into which to insert the imported elements and a | |
3805 third optional argument, CHILDREN-P, which when non-nil means insert imported | |
3806 cells as the initial set of children of the current cell, if any. | |
3807 | |
3808 .otl - imported as an Emacs outline whose entries begin with asterisks; | |
3809 .kot | |
3810 .kotl - imported as a structured koutline | |
3811 .aug - imported as an Augment post-numbered outline.") | |
3812 | |
3813 ;;;*** | |
3814 | |
3815 ;;;*** | |
3816 | |
3817 ;;;### (autoloads nil "set" "hyperbole/set.el" (12983 26175)) | |
3818 ;;; Generated autoloads from hyperbole/set.el | |
3819 | |
3820 ;;;### (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" (12983 26175)) | |
3821 ;;; Generated autoloads from hyperbole/wconfig.el | |
3822 | |
3823 (autoload 'wconfig-add-by-name "wconfig" "\ | |
3824 Saves the current window configuration under the string NAME. | |
3825 When called interactively and a window configuration already exists under | |
3826 NAME, confirms whether or not to replace it." t nil) | |
3827 | |
3828 (autoload 'wconfig-delete-by-name "wconfig" "\ | |
3829 Deletes window configuration saved under NAME." t nil) | |
3830 | |
3831 (autoload 'wconfig-restore-by-name "wconfig" "\ | |
3832 Restores window configuration saved under NAME." t nil) | |
3833 | |
3834 (autoload 'wconfig-delete-pop "wconfig" "\ | |
3835 Replaces current window config with most recently saved config in ring. | |
3836 Then deletes this new configuration from the ring." t nil) | |
3837 | |
3838 (autoload 'wconfig-ring-save "wconfig" "\ | |
3839 Saves the current window configuration onto the save ring. | |
3840 Use {\\[wconfig-yank-pop]} to restore it at a later time." t nil) | |
3841 | |
3842 (autoload 'wconfig-yank-pop "wconfig" "\ | |
3843 Replaces current window config with prefix arg Nth prior one in save ring. | |
3844 Interactively, default value of N = 1, meaning the last saved window | |
3845 configuration is displayed. | |
3846 | |
3847 The sequence of window configurations wraps around, so that after the oldest | |
3848 one comes the newest one." t nil) | |
3849 | |
3850 ;;;*** | |
3851 | |
3852 ;;;### (autoloads (rolo-logic) "wrolo-logic" "hyperbole/wrolo-logic.el" (12983 26173)) | |
3853 ;;; Generated autoloads from hyperbole/wrolo-logic.el | |
3854 | |
3855 (autoload 'rolo-logic "wrolo-logic" "\ | |
3856 Apply FUNC to all entries in optional IN-BUFS, display entries where FUNC is non-nil. | |
3857 If IN-BUFS is nil, 'rolo-file-list' is used. If optional COUNT-ONLY is | |
3858 non-nil, don't display entries, return count of matching entries only. If | |
3859 optional INCLUDE-SUB-ENTRIES flag is non-nil, FUNC will be applied across all | |
3860 sub-entries at once. Default is to apply FUNC to each entry and sub-entry | |
3861 separately. Entries are displayed with all of their sub-entries unless | |
3862 INCLUDE-SUB-ENTRIES is nil and optional NO-SUB-ENTRIES-OUT flag is non-nil. | |
3863 FUNC should use the free variables 'start' and 'end' which contain the limits | |
3864 of the region on which it should operate. Returns number of applications of | |
3865 FUNC that return non-nil." t nil) | |
3866 | |
3867 ;;;*** | |
3868 | |
3869 ;;;*** | |
3870 | |
3871 ;;;### (autoloads nil "wrolo-menu" "hyperbole/wrolo-menu.el" (12983 26175)) | |
3872 ;;; Generated autoloads from hyperbole/wrolo-menu.el | |
3873 | |
3874 ;;;### (autoloads (rolo-yank rolo-sort rolo-kill rolo-grep rolo-fgrep rolo-edit rolo-display-matches rolo-add) "wrolo" "hyperbole/wrolo.el" (12983 26173)) | |
3875 ;;; Generated autoloads from hyperbole/wrolo.el | |
3876 | |
3877 (autoload 'rolo-add "wrolo" "\ | |
3878 Adds a new entry in personal rolodex for NAME. | |
3879 Last name first is best, e.g. \"Smith, John\". | |
3880 With prefix argument, prompts for optional FILE to add entry within. | |
3881 NAME may be of the form: parent/child to insert child below a parent | |
3882 entry which begins with the parent string." t nil) | |
3883 | |
3884 (autoload 'rolo-display-matches "wrolo" "\ | |
3885 Display optional DISPLAY-BUF buffer of previously found rolodex matches. | |
3886 If DISPLAY-BUF is nil, use the value in 'rolo-display-buffer'. | |
3887 Second arg RETURN-TO-BUFFER is the buffer to leave point within after the display." t nil) | |
3888 | |
3889 (autoload 'rolo-edit "wrolo" "\ | |
3890 Edits a rolodex entry given by optional NAME within 'rolo-file-list'. | |
3891 With prefix argument, prompts for optional FILE to locate entry within. | |
3892 With no NAME arg, simply displays FILE or first entry in 'rolo-file-list' in an | |
3893 editable mode. NAME may be of the form: parent/child to edit child below a | |
3894 parent entry which begins with the parent string." t nil) | |
3895 | |
3896 (autoload 'rolo-fgrep "wrolo" "\ | |
3897 Display rolodex entries matching STRING. | |
3898 To a maximum of optional prefix arg MAX-MATCHES, in file(s) from optional | |
3899 ROLO-FILE or rolo-file-list. Default is to find all matching entries. Each | |
3900 entry is displayed with all of its sub-entries. Optional COUNT-ONLY non-nil | |
3901 means don't retrieve and don't display matching entries. Optional NO-DISPLAY | |
3902 non-nil means retrieve entries but don't display. | |
3903 | |
3904 Nil value of MAX-MATCHES means find all matches, t value means find all matches | |
3905 but omit file headers, negative values mean find up to the inverse of that | |
3906 number of entries and omit file headers. | |
3907 | |
3908 Returns number of entries matched. See also documentation for the variable | |
3909 rolo-file-list." t nil) | |
3910 | |
3911 (autoload 'rolo-grep "wrolo" "\ | |
3912 Display rolodex entries matching REGEXP. | |
3913 To a maximum of prefix arg MAX-MATCHES, in buffer(s) from optional ROLO-BUFS or | |
3914 rolo-file-list. Default is to find all matching entries. Each entry is | |
3915 displayed with all of its sub-entries. Optional COUNT-ONLY non-nil means don't | |
3916 retrieve and don't display matching entries. Optional NO-DISPLAY non-nil | |
3917 means retrieve entries but don't display. | |
3918 | |
3919 Nil value of MAX-MATCHES means find all matches, t value means find all matches | |
3920 but omit file headers, negative values mean find up to the inverse of that | |
3921 number of entries and omit file headers. | |
3922 | |
3923 Returns number of entries matched. See also documentation for the variable | |
3924 rolo-file-list." t nil) | |
3925 | |
3926 (autoload 'rolo-kill "wrolo" "\ | |
3927 Kills a rolodex entry given by NAME within 'rolo-file-list'. | |
3928 With prefix argument, prompts for optional FILE to locate entry within. | |
3929 NAME may be of the form: parent/child to kill child below a parent entry | |
3930 which begins with the parent string. | |
3931 Returns t if entry is killed, nil otherwise." t nil) | |
3932 | |
3933 (autoload 'rolo-sort "wrolo" "\ | |
3934 Sorts up to 14 levels of entries in ROLO-FILE (default is personal rolo). | |
3935 Assumes entries are delimited by one or more '*'characters. | |
3936 Returns list of number of groupings at each entry level." t nil) | |
3937 | |
3938 (autoload 'rolo-yank "wrolo" "\ | |
3939 Inserts at point the first rolodex entry matching NAME. | |
3940 With optional prefix arg, REGEXP-P, treats NAME as a regular expression instead | |
3941 of a string." t nil) | |
3942 | |
3943 ;;;*** | |
3944 | |
3945 ;;;*** | |
3946 | |
3947 ;;;*** | |
3948 | |
3949 ;;;### (autoloads nil "bridge" "ilisp/bridge.el" (12983 27281)) | |
3950 ;;; Generated autoloads from ilisp/bridge.el | |
3951 | |
3952 ;;;*** | |
3953 | |
3954 ;;;### (autoloads nil "comint-ipc" "ilisp/comint-ipc.el" (12983 27282)) | |
3955 ;;; Generated autoloads from ilisp/comint-ipc.el | |
3956 | |
3957 ;;;*** | |
3958 | |
3959 ;;;*** | |
3960 | |
3961 ;;;### (autoloads nil "comint-v18" "ilisp/comint-v18.el" (12983 27282)) | |
3962 ;;; Generated autoloads from ilisp/comint-v18.el | |
3963 | |
3964 ;;;*** | |
3965 | |
3966 ;;;### (autoloads nil "completer" "ilisp/completer.el" (12983 27282)) | |
3967 ;;; Generated autoloads from ilisp/completer.el | |
3968 | |
3969 ;;;*** | |
3970 | |
3971 ;;;### (autoloads nil "completer.new" "ilisp/completer.new.el" (12983 27282)) | |
3972 ;;; Generated autoloads from ilisp/completer.new.el | |
3973 | |
3974 ;;;*** | |
3975 | |
3976 ;;;### (autoloads nil "completer.no-fun" "ilisp/completer.no-fun.el" (12983 27282)) | |
3977 ;;; Generated autoloads from ilisp/completer.no-fun.el | |
3978 | |
3979 ;;;*** | |
3980 | |
3981 ;;;### (autoloads nil "ilcompat" "ilisp/ilcompat.el" (12983 27283)) | |
3982 ;;; Generated autoloads from ilisp/ilcompat.el | |
3983 | |
3984 ;;;*** | |
3985 | |
3986 ;;;### (autoloads nil "ilfsf18" "ilisp/ilfsf18.el" (12983 27283)) | |
3987 ;;; Generated autoloads from ilisp/ilfsf18.el | |
3988 | |
3989 ;;;*** | |
3990 | |
3991 ;;;### (autoloads nil "ilfsf19" "ilisp/ilfsf19.el" (12983 27283)) | |
3992 ;;; Generated autoloads from ilisp/ilfsf19.el | |
3993 | |
3994 ;;;*** | |
3995 | |
3996 ;;;### (autoloads nil "ilisp-acl" "ilisp/ilisp-acl.el" (12983 27283)) | |
3997 ;;; Generated autoloads from ilisp/ilisp-acl.el | |
3998 | |
3999 ;;;*** | |
4000 | |
4001 ;;;### (autoloads nil "ilisp-aut" "ilisp/ilisp-aut.el" (12983 27283)) | |
4002 ;;; Generated autoloads from ilisp/ilisp-aut.el | |
4003 | |
4004 ;;;*** | |
4005 | |
4006 ;;;### (autoloads nil "ilisp-bat" "ilisp/ilisp-bat.el" (12983 27284)) | |
4007 ;;; Generated autoloads from ilisp/ilisp-bat.el | |
4008 | |
4009 ;;;*** | |
4010 | |
4011 ;;;### (autoloads nil "ilisp-bug" "ilisp/ilisp-bug.el" (12983 27284)) | |
4012 ;;; Generated autoloads from ilisp/ilisp-bug.el | |
4013 | |
4014 ;;;*** | |
4015 | |
4016 ;;;### (autoloads nil "ilisp-chs" "ilisp/ilisp-chs.el" (12983 27284)) | |
4017 ;;; Generated autoloads from ilisp/ilisp-chs.el | |
4018 | |
4019 ;;;*** | |
4020 | |
4021 ;;;### (autoloads nil "ilisp-cl" "ilisp/ilisp-cl.el" (12983 27284)) | |
4022 ;;; Generated autoloads from ilisp/ilisp-cl.el | |
4023 | |
4024 ;;;*** | |
4025 | |
4026 ;;;### (autoloads nil "ilisp-cmp" "ilisp/ilisp-cmp.el" (12983 27284)) | |
4027 ;;; Generated autoloads from ilisp/ilisp-cmp.el | |
4028 | |
4029 ;;;*** | |
4030 | |
4031 ;;;### (autoloads nil "ilisp-cmt" "ilisp/ilisp-cmt.el" (12983 27285)) | |
4032 ;;; Generated autoloads from ilisp/ilisp-cmt.el | |
4033 | |
4034 ;;;*** | |
4035 | |
4036 ;;;### (autoloads nil "ilisp-cmu" "ilisp/ilisp-cmu.el" (12983 27285)) | |
4037 ;;; Generated autoloads from ilisp/ilisp-cmu.el | |
4038 | |
4039 ;;;*** | |
4040 | |
4041 ;;;### (autoloads nil "ilisp-cpat" "ilisp/ilisp-cpat.el" (12983 27285)) | |
4042 ;;; Generated autoloads from ilisp/ilisp-cpat.el | |
4043 | |
4044 ;;;*** | |
4045 | |
4046 ;;;### (autoloads nil "ilisp-def" "ilisp/ilisp-def.el" (12983 27285)) | |
4047 ;;; Generated autoloads from ilisp/ilisp-def.el | |
4048 | |
4049 ;;;*** | |
4050 | |
4051 ;;;### (autoloads nil "ilisp-dia" "ilisp/ilisp-dia.el" (12983 27286)) | |
4052 ;;; Generated autoloads from ilisp/ilisp-dia.el | |
4053 | |
4054 ;;;*** | |
4055 | |
4056 ;;;### (autoloads nil "ilisp-doc" "ilisp/ilisp-doc.el" (12983 27286)) | |
4057 ;;; Generated autoloads from ilisp/ilisp-doc.el | |
4058 | |
4059 ;;;*** | |
4060 | |
4061 ;;;### (autoloads nil "ilisp-el" "ilisp/ilisp-el.el" (12983 27287)) | |
4062 ;;; Generated autoloads from ilisp/ilisp-el.el | |
4063 | |
4064 ;;;*** | |
4065 | |
4066 ;;;### (autoloads nil "ilisp-ext" "ilisp/ilisp-ext.el" (12983 27287)) | |
4067 ;;; Generated autoloads from ilisp/ilisp-ext.el | |
4068 | |
4069 ;;;*** | |
4070 | |
4071 ;;;### (autoloads nil "ilisp-hi" "ilisp/ilisp-hi.el" (12983 27287)) | |
4072 ;;; Generated autoloads from ilisp/ilisp-hi.el | |
4073 | |
4074 ;;;*** | |
4075 | |
4076 ;;;### (autoloads nil "ilisp-hlw" "ilisp/ilisp-hlw.el" (12983 27287)) | |
4077 ;;; Generated autoloads from ilisp/ilisp-hlw.el | |
4078 | |
4079 ;;;*** | |
4080 | |
4081 ;;;### (autoloads nil "ilisp-hnd" "ilisp/ilisp-hnd.el" (12983 27287)) | |
4082 ;;; Generated autoloads from ilisp/ilisp-hnd.el | |
4083 | |
4084 ;;;*** | |
4085 | |
4086 ;;;### (autoloads nil "ilisp-ind" "ilisp/ilisp-ind.el" (12983 27288)) | |
4087 ;;; Generated autoloads from ilisp/ilisp-ind.el | |
4088 | |
4089 ;;;*** | |
4090 | |
4091 ;;;### (autoloads nil "ilisp-inp" "ilisp/ilisp-inp.el" (12983 27288)) | |
4092 ;;; Generated autoloads from ilisp/ilisp-inp.el | |
4093 | |
4094 ;;;*** | |
4095 | |
4096 ;;;### (autoloads nil "ilisp-kcl" "ilisp/ilisp-kcl.el" (12983 27288)) | |
4097 ;;; Generated autoloads from ilisp/ilisp-kcl.el | |
4098 | |
4099 ;;;*** | |
4100 | |
4101 ;;;### (autoloads nil "ilisp-key" "ilisp/ilisp-key.el" (12983 27288)) | |
4102 ;;; Generated autoloads from ilisp/ilisp-key.el | |
4103 | |
4104 ;;;*** | |
4105 | |
4106 ;;;### (autoloads nil "ilisp-kil" "ilisp/ilisp-kil.el" (12983 27288)) | |
4107 ;;; Generated autoloads from ilisp/ilisp-kil.el | |
4108 | |
4109 ;;;*** | |
4110 | |
4111 ;;;### (autoloads nil "ilisp-low" "ilisp/ilisp-low.el" (12983 27288)) | |
4112 ;;; Generated autoloads from ilisp/ilisp-low.el | |
4113 | |
4114 ;;;*** | |
4115 | |
4116 ;;;### (autoloads nil "ilisp-luc" "ilisp/ilisp-luc.el" (12983 27289)) | |
4117 ;;; Generated autoloads from ilisp/ilisp-luc.el | |
4118 | |
4119 ;;;*** | |
4120 | |
4121 ;;;### (autoloads nil "ilisp-mak" "ilisp/ilisp-mak.el" (12983 27289)) | |
4122 ;;; Generated autoloads from ilisp/ilisp-mak.el | |
4123 | |
4124 ;;;*** | |
4125 | |
4126 ;;;### (autoloads nil "ilisp-menu" "ilisp/ilisp-menu.el" (12983 27289)) | |
4127 ;;; Generated autoloads from ilisp/ilisp-menu.el | |
4128 | |
4129 ;;;*** | |
4130 | |
4131 ;;;### (autoloads nil "ilisp-mnb" "ilisp/ilisp-mnb.el" (12983 27289)) | |
4132 ;;; Generated autoloads from ilisp/ilisp-mnb.el | |
4133 | |
4134 ;;;*** | |
4135 | |
4136 ;;;### (autoloads nil "ilisp-mod" "ilisp/ilisp-mod.el" (12983 27289)) | |
4137 ;;; Generated autoloads from ilisp/ilisp-mod.el | |
4138 | |
4139 ;;;*** | |
4140 | |
4141 ;;;### (autoloads nil "ilisp-mov" "ilisp/ilisp-mov.el" (12983 27289)) | |
4142 ;;; Generated autoloads from ilisp/ilisp-mov.el | |
4143 | |
4144 ;;;*** | |
4145 | |
4146 ;;;*** | |
4147 | |
4148 ;;;### (autoloads nil "ilisp-out" "ilisp/ilisp-out.el" (12983 27890)) | |
4149 ;;; Generated autoloads from ilisp/ilisp-out.el | |
4150 | |
4151 ;;;*** | |
4152 | |
4153 ;;;### (autoloads nil "ilisp-prc" "ilisp/ilisp-prc.el" (12983 27290)) | |
4154 ;;; Generated autoloads from ilisp/ilisp-prc.el | |
4155 | |
4156 ;;;*** | |
4157 | |
4158 ;;;### (autoloads nil "ilisp-prn" "ilisp/ilisp-prn.el" (12983 27291)) | |
4159 ;;; Generated autoloads from ilisp/ilisp-prn.el | |
4160 | |
4161 ;;;*** | |
4162 | |
4163 ;;;### (autoloads nil "ilisp-rng" "ilisp/ilisp-rng.el" (12983 27291)) | |
4164 ;;; Generated autoloads from ilisp/ilisp-rng.el | |
4165 | |
4166 ;;;*** | |
4167 | |
4168 ;;;### (autoloads nil "ilisp-s2c" "ilisp/ilisp-s2c.el" (12983 27291)) | |
4169 ;;; Generated autoloads from ilisp/ilisp-s2c.el | |
4170 | |
4171 ;;;*** | |
4172 | |
4173 ;;;### (autoloads nil "ilisp-sch" "ilisp/ilisp-sch.el" (12983 27292)) | |
4174 ;;; Generated autoloads from ilisp/ilisp-sch.el | |
4175 | |
4176 ;;;*** | |
4177 | |
4178 ;;;### (autoloads nil "ilisp-snd" "ilisp/ilisp-snd.el" (12983 27292)) | |
4179 ;;; Generated autoloads from ilisp/ilisp-snd.el | |
4180 | |
4181 ;;;*** | |
4182 | |
4183 ;;;### (autoloads nil "ilisp-src" "ilisp/ilisp-src.el" (12983 27292)) | |
4184 ;;; Generated autoloads from ilisp/ilisp-src.el | |
4185 | |
4186 ;;;*** | |
4187 | |
4188 ;;;### (autoloads nil "ilisp-sym" "ilisp/ilisp-sym.el" (12983 27292)) | |
4189 ;;; Generated autoloads from ilisp/ilisp-sym.el | |
4190 | |
4191 ;;;*** | |
4192 | |
4193 ;;;### (autoloads nil "ilisp-utl" "ilisp/ilisp-utl.el" (12983 27292)) | |
4194 ;;; Generated autoloads from ilisp/ilisp-utl.el | |
4195 | |
4196 ;;;*** | |
4197 | |
4198 ;;;### (autoloads nil "ilisp-val" "ilisp/ilisp-val.el" (12983 27293)) | |
4199 ;;; Generated autoloads from ilisp/ilisp-val.el | |
4200 | |
4201 ;;;*** | |
4202 | |
4203 ;;;### (autoloads nil "ilisp-xfr" "ilisp/ilisp-xfr.el" (12983 27293)) | |
4204 ;;; Generated autoloads from ilisp/ilisp-xfr.el | |
4205 | |
4206 ;;;*** | |
4207 | |
4208 ;;;### (autoloads nil "ilisp-xls" "ilisp/ilisp-xls.el" (12983 27293)) | |
4209 ;;; Generated autoloads from ilisp/ilisp-xls.el | |
4210 | |
4211 ;;;*** | |
4212 | |
4213 ;;;### (autoloads nil "ilisp" "ilisp/ilisp.el" (12983 27293)) | |
4214 ;;; Generated autoloads from ilisp/ilisp.el | |
4215 | |
4216 ;;;*** | |
4217 | |
4218 ;;;### (autoloads nil "illuc19" "ilisp/illuc19.el" (12983 27293)) | |
4219 ;;; Generated autoloads from ilisp/illuc19.el | |
4220 | |
4221 ;;;*** | |
4222 | |
4223 ;;;### (autoloads nil "ilxemacs" "ilisp/ilxemacs.el" (12983 27293)) | |
4224 ;;; Generated autoloads from ilisp/ilxemacs.el | |
4225 | |
4226 ;;;### (autoloads (iso-accents-mode) "iso-acc" "iso/iso-acc.el" (12983 27394)) | |
4227 ;;; Generated autoloads from iso/iso-acc.el | |
4228 | |
4229 (autoload 'iso-accents-mode "iso-acc" "\ | |
4230 Toggle ISO Accents mode, in which accents modify the following letter. | |
4231 This permits easy insertion of accented characters according to ISO-8859-1. | |
4232 When Iso-accents mode is enabled, accent character keys | |
4233 \(`, ', \", ^, / and ~) do not self-insert; instead, they modify the following | |
4234 letter key so that it inserts an ISO accented letter. | |
4235 | |
4236 You can customize ISO Accents mode to a particular language | |
4237 with the command `iso-accents-customize'. | |
4238 | |
4239 Special combinations: ~c gives a c with cedilla, | |
4240 ~d gives an Icelandic eth (d with dash). | |
4241 ~t gives an Icelandic thorn. | |
4242 \"s gives German sharp s. | |
4243 /a gives a with ring. | |
4244 /e gives an a-e ligature. | |
4245 ~< and ~> give guillemots. | |
4246 ~! gives an inverted exclamation mark. | |
4247 ~? gives an inverted question mark. | |
4248 | |
4249 With an argument, a positive argument enables ISO Accents mode, | |
4250 and a negative argument disables it." t nil) | |
4251 | |
4252 ;;;*** | |
4253 | |
4254 ;;;*** | |
4255 | |
4256 ;;;### (autoloads nil "iso-ascii" "iso/iso-ascii.el" (12983 26896)) | |
4257 ;;; Generated autoloads from iso/iso-ascii.el | |
4258 | |
4259 ;;;*** | |
4260 | |
4261 ;;;### (autoloads nil "iso-cvt" "iso/iso-cvt.el" (12983 26896)) | |
4262 ;;; Generated autoloads from iso/iso-cvt.el | |
4263 | |
4264 ;;;*** | |
4265 | |
4266 ;;;### (autoloads nil "iso-insert" "iso/iso-insert.el" (12983 26896)) | |
4267 ;;; Generated autoloads from iso/iso-insert.el | |
4268 | |
4269 ;;;*** | |
4270 | |
4271 ;;;### (autoloads nil "iso-swed" "iso/iso-swed.el" (12983 26896)) | |
4272 ;;; Generated autoloads from iso/iso-swed.el | |
4273 | |
4274 ;;;*** | |
4275 | |
4276 ;;;### (autoloads nil "iso-syntax" "iso/iso-syntax.el" (12983 26897)) | |
4277 ;;; Generated autoloads from iso/iso-syntax.el | |
4278 | |
4279 ;;;*** | |
4280 | |
4281 ;;;*** | |
4282 | |
4283 ;;;### (autoloads nil "iso8859-1" "iso/iso8859-1.el" (12983 26141)) | |
4284 ;;; Generated autoloads from iso/iso8859-1.el | |
4285 | |
4286 ;;;*** | |
4287 | |
4288 ;;;### (autoloads nil "swedish" "iso/swedish.el" (12983 26897)) | |
4289 ;;; Generated autoloads from iso/swedish.el | |
4290 | |
4291 ;;;### (autoloads (mc-deactivate-passwd mc-install-write-mode mc-install-read-mode) "mailcrypt" "mailcrypt/mailcrypt.el" (12983 26147)) | |
4292 ;;; Generated autoloads from mailcrypt/mailcrypt.el | |
4293 | |
4294 (autoload 'mc-install-read-mode "mailcrypt" nil t nil) | |
4295 | |
4296 (autoload 'mc-install-write-mode "mailcrypt" nil t nil) | |
4297 | |
4298 (autoload 'mc-deactivate-passwd "mailcrypt" "\ | |
4299 *Deactivate the passphrase cache." t nil) | |
4300 | |
4301 ;;;*** | |
4302 | |
4303 ;;;### (autoloads (mc-pgp-fetch-key mc-scheme-pgp) "mc-pgp" "mailcrypt/mc-pgp.el" (12983 26147)) | |
4304 ;;; Generated autoloads from mailcrypt/mc-pgp.el | |
4305 | |
4306 (autoload 'mc-scheme-pgp "mc-pgp" nil nil nil) | |
4307 | |
4308 (autoload 'mc-pgp-fetch-key "mc-pgp" "\ | |
4309 Attempt to fetch a key for addition to PGP keyring. Interactively, | |
4310 prompt for string matching key to fetch. | |
4311 | |
4312 Non-interactively, ID must be a pair. The CAR must be a bare Email | |
4313 address and the CDR a keyID (with \"0x\" prefix). Either, but not | |
4314 both, may be nil. | |
4315 | |
4316 Return t if we think we were successful; nil otherwise. Note that nil | |
4317 is not necessarily an error, since we may have merely fired off an Email | |
4318 request for the key." t nil) | |
4319 | |
4320 ;;;*** | |
4321 | |
4322 ;;;### (autoloads (mc-remailer-insert-response-block mc-remailer-encrypt-for-chain mc-remailer-insert-pseudonym) "mc-remail" "mailcrypt/mc-remail.el" (12983 26147)) | |
4323 ;;; Generated autoloads from mailcrypt/mc-remail.el | |
4324 | |
4325 (autoload 'mc-remailer-insert-pseudonym "mc-remail" "\ | |
4326 Insert pseudonym as a From field in the hash-mark header. | |
4327 | |
4328 See the documentation for the variable `mc-remailer-pseudonyms' for | |
4329 more information." t nil) | |
4330 | |
4331 (autoload 'mc-remailer-encrypt-for-chain "mc-remail" "\ | |
4332 Encrypt message for a remailer chain, prompting for chain to use. | |
4333 | |
4334 With \\[universal-argument], pause before each encryption." t nil) | |
4335 | |
4336 (autoload 'mc-remailer-insert-response-block "mc-remail" "\ | |
4337 Insert response block at point, prompting for chain to use. | |
4338 | |
4339 With \\[universal-argument], enter a recursive edit of the innermost | |
4340 layer of the block before encrypting it." t nil) | |
4341 | |
4342 ;;;*** | |
4343 | |
4344 ;;;### (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" (12983 26899)) | |
4345 ;;; Generated autoloads from mailcrypt/mc-toplev.el | |
4346 | |
4347 (autoload 'mc-cleanup-recipient-headers "mc-toplev" nil nil nil) | |
4348 | |
4349 (autoload 'mc-encrypt "mc-toplev" "\ | |
4350 *Encrypt the current buffer. | |
4351 | |
4352 Exact behavior depends on current major mode. | |
4353 | |
4354 With \\[universal-argument], prompt for User ID to sign as. | |
4355 | |
4356 With \\[universal-argument] \\[universal-argument], prompt for encryption scheme to use." t nil) | |
4357 | |
4358 (autoload 'mc-encrypt-message "mc-toplev" "\ | |
4359 *Encrypt a message for RECIPIENTS using the given encryption SCHEME. | |
4360 RECIPIENTS is a comma separated string. If SCHEME is nil, use the value | |
4361 of `mc-default-scheme'. Returns t on success, nil otherwise." nil nil) | |
4362 | |
4363 (autoload 'mc-decrypt "mc-toplev" "\ | |
4364 *Decrypt a message in the current buffer. | |
4365 | |
4366 Exact behavior depends on current major mode." t nil) | |
4367 | |
4368 (autoload 'mc-decrypt-message "mc-toplev" "\ | |
4369 Decrypt whatever message is in the current buffer. | |
4370 Returns a pair (SUCCEEDED . VERIFIED) where SUCCEEDED is t if the encryption | |
4371 succeeded and VERIFIED is t if it had a valid signature." nil nil) | |
4372 | |
4373 (autoload 'mc-sign "mc-toplev" "\ | |
4374 *Sign a message in the current buffer. | |
4375 | |
4376 Exact behavior depends on current major mode. | |
4377 | |
4378 With one prefix arg, prompts for private key to use, with two prefix args, | |
4379 also prompts for encryption scheme to use. With negative prefix arg, | |
4380 inhibits clearsigning (pgp)." t nil) | |
4381 | |
4382 (autoload 'mc-sign-message "mc-toplev" "\ | |
4383 Clear sign the message." nil nil) | |
4384 | |
4385 (autoload 'mc-verify "mc-toplev" "\ | |
4386 *Verify a message in the current buffer. | |
4387 | |
4388 Exact behavior depends on current major mode." t nil) | |
4389 | |
4390 (autoload 'mc-verify-signature "mc-toplev" "\ | |
4391 *Verify the signature of the signed message in the current buffer. | |
4392 Show the result as a message in the minibuffer. Returns t if the signature | |
4393 is verified." nil nil) | |
4394 | |
4395 (autoload 'mc-insert-public-key "mc-toplev" "\ | |
4396 *Insert your public key at point. | |
4397 With one prefix arg, prompts for user id to use. With two prefix | |
4398 args, prompts for encryption scheme." t nil) | |
4399 | |
4400 (autoload 'mc-snarf "mc-toplev" "\ | |
4401 *Add all public keys in the buffer to your keyring. | |
4402 | |
4403 Exact behavior depends on current major mode." t nil) | |
4404 | |
4405 (autoload 'mc-snarf-keys "mc-toplev" "\ | |
4406 *Add all public keys in the buffer to your keyring." t nil) | |
4407 | |
4408 (autoload 'mc-rmail-summary-verify-signature "mc-toplev" "\ | |
4409 *Verify the signature in the current message." t nil) | |
4410 | |
4411 (autoload 'mc-rmail-summary-decrypt-message "mc-toplev" "\ | |
4412 *Decrypt the contents of this message" t nil) | |
4413 | |
4414 (autoload 'mc-rmail-summary-snarf-keys "mc-toplev" "\ | |
4415 *Adds keys from current message to public key ring" t nil) | |
4416 | |
4417 (autoload 'mc-rmail-verify-signature "mc-toplev" "\ | |
4418 *Verify the signature in the current message." t nil) | |
4419 | |
4420 (autoload 'mc-rmail-decrypt-message "mc-toplev" "\ | |
4421 *Decrypt the contents of this message" t nil) | |
4422 | |
4423 (autoload 'mc-vm-verify-signature "mc-toplev" "\ | |
4424 *Verify the signature in the current VM message" t nil) | |
4425 | |
4426 (autoload 'mc-vm-decrypt-message "mc-toplev" "\ | |
4427 *Decrypt the contents of the current VM message" t nil) | |
4428 | |
4429 (autoload 'mc-vm-snarf-keys "mc-toplev" "\ | |
4430 *Snarf public key from the contents of the current VM message" t nil) | |
4431 | |
4432 (autoload 'mc-gnus-verify-signature "mc-toplev" nil t nil) | |
4433 | |
4434 (autoload 'mc-gnus-snarf-keys "mc-toplev" nil t nil) | |
4435 | |
4436 (autoload 'mc-gnus-decrypt-message "mc-toplev" nil t nil) | |
4437 | |
4438 (autoload 'mc-mh-decrypt-message "mc-toplev" "\ | |
4439 Decrypt the contents of the current MH message in the show buffer." t nil) | |
4440 | |
4441 (autoload 'mc-mh-verify-signature "mc-toplev" "\ | |
4442 *Verify the signature in the current MH message." t nil) | |
4443 | |
4444 (autoload 'mc-mh-snarf-keys "mc-toplev" nil t nil) | |
4445 | |
4446 ;;;*** | |
4447 | |
4448 ;;;*** | |
4449 | |
4450 ;;;*** | |
4451 | |
4452 ;;;*** | |
4453 | |
4454 ;;;### (autoloads nil "mel-b" "mel/mel-b.el" (12996 50653)) | |
4455 ;;; Generated autoloads from mel/mel-b.el | |
4456 | |
4457 ;;;*** | |
4458 | |
4459 ;;;### (autoloads nil "mel-g" "mel/mel-g.el" (12996 50653)) | |
4460 ;;; Generated autoloads from mel/mel-g.el | |
4461 | |
4462 ;;;*** | |
4463 | |
4464 ;;;### (autoloads nil "mel-q" "mel/mel-q.el" (12996 50653)) | |
4465 ;;; Generated autoloads from mel/mel-q.el | |
4466 | |
4467 ;;;*** | |
4468 | |
4469 ;;;### (autoloads nil "mel-u" "mel/mel-u.el" (12996 50653)) | |
4470 ;;; Generated autoloads from mel/mel-u.el | |
4471 | |
4472 ;;;*** | |
4473 | |
4474 ;;;### (autoloads nil "mel" "mel/mel.el" (12996 50653)) | |
4475 ;;; Generated autoloads from mel/mel.el | |
4476 | |
4477 ;;;### (autoloads (mh-letter-mode mh-smail-other-window mh-smail-batch mh-smail) "mh-comp" "mh-e/mh-comp.el" (12983 26188)) | |
4478 ;;; Generated autoloads from mh-e/mh-comp.el | |
4479 | |
4480 (autoload 'mh-smail "mh-comp" "\ | |
4481 Compose and send mail with the MH mail system. | |
4482 This function is an entry point to mh-e, the Emacs front end | |
4483 to the MH mail system. | |
4484 | |
4485 See documentation of `\\[mh-send]' for more details on composing mail." t nil) | |
4486 | |
4487 (autoload 'mh-smail-batch "mh-comp" "\ | |
4488 Set up a mail composition draft with the MH mail system. | |
4489 This function is an entry point to mh-e, the Emacs front end | |
4490 to the MH mail system. This function does not prompt the user | |
4491 for any header fields, and thus is suitable for use by programs | |
4492 that want to create a mail buffer. | |
4493 Users should use `\\[mh-smail]' to compose mail." nil nil) | |
4494 | |
4495 (autoload 'mh-smail-other-window "mh-comp" "\ | |
4496 Compose and send mail in other window with the MH mail system. | |
4497 This function is an entry point to mh-e, the Emacs front end | |
4498 to the MH mail system. | |
4499 | |
4500 See documentation of `\\[mh-send]' for more details on composing mail." t nil) | |
4501 | |
4502 (autoload 'mh-letter-mode "mh-comp" "\ | |
4503 Mode for composing letters in mh-e.\\<mh-letter-mode-map> | |
4504 When you have finished composing, type \\[mh-send-letter] to send the message | |
4505 using the MH mail handling system. | |
4506 See the documentation for \\[mh-edit-mhn] for information on composing MIME | |
4507 messages. | |
4508 | |
4509 \\{mh-letter-mode-map} | |
4510 | |
4511 Variables controlling this mode (defaults in parentheses): | |
4512 | |
4513 mh-delete-yanked-msg-window (nil) | |
4514 If non-nil, \\[mh-yank-cur-msg] will delete any windows displaying | |
4515 the yanked message. | |
4516 | |
4517 mh-yank-from-start-of-msg (t) | |
4518 If non-nil, \\[mh-yank-cur-msg] will include the entire message. | |
4519 If `body', just yank the body (no header). | |
4520 If nil, only the portion of the message following the point will be yanked. | |
4521 If there is a region, this variable is ignored. | |
4522 | |
4523 mh-ins-buf-prefix (\"> \") | |
4524 String to insert before each non-blank line of a message as it is | |
4525 inserted in a draft letter. | |
4526 | |
4527 mh-signature-file-name (\"~/.signature\") | |
4528 File to be inserted into message by \\[mh-insert-signature]. | |
4529 | |
4530 Upon invoking mh-letter-mode, text-mode-hook and mh-letter-mode-hook are | |
4531 invoked with no args, if those values are non-nil." t nil) | |
4532 | |
4533 ;;;*** | |
4534 | |
4535 ;;;### (autoloads (mh-version mh-rmail) "mh-e" "mh-e/mh-e.el" (12983 26189)) | |
4536 ;;; Generated autoloads from mh-e/mh-e.el | |
4537 | |
4538 (autoload 'mh-rmail "mh-e" "\ | |
4539 Inc(orporate) new mail with MH, or, with arg, scan an MH mail folder. | |
4540 This function is an entry point to mh-e, the Emacs front end | |
4541 to the MH mail system." t nil) | |
4542 | |
4543 (autoload 'mh-version "mh-e" "\ | |
4544 Display version information about mh-e and the MH mail handling system." t nil) | |
4545 | |
4546 ;;;*** | |
4547 | |
4548 ;;;*** | |
4549 | |
4550 ;;;### (autoloads nil "mh-funcs" "mh-e/mh-funcs.el" (12983 26190)) | |
4551 ;;; Generated autoloads from mh-e/mh-funcs.el | |
4552 | |
4553 ;;;### (autoloads nil "mh-mime" "mh-e/mh-mime.el" (12983 26189)) | |
4554 ;;; Generated autoloads from mh-e/mh-mime.el | |
4555 | |
4556 (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")) "\ | |
4557 Legal MIME content types. See documentation for \\[mh-edit-mhn].") | |
4558 | |
4559 ;;;*** | |
4560 | |
4561 ;;;*** | |
4562 | |
4563 ;;;### (autoloads nil "mh-pick" "mh-e/mh-pick.el" (12983 26190)) | |
4564 ;;; Generated autoloads from mh-e/mh-pick.el | |
4565 | |
4566 ;;;*** | |
4567 | |
4568 ;;;### (autoloads nil "mh-seq" "mh-e/mh-seq.el" (12983 26190)) | |
4569 ;;; Generated autoloads from mh-e/mh-seq.el | |
4570 | |
4571 ;;;*** | |
4572 | |
4573 ;;;### (autoloads nil "mh-utils" "mh-e/mh-utils.el" (12983 26921)) | |
4574 ;;; Generated autoloads from mh-e/mh-utils.el | |
4575 | |
4576 (put 'mh-progs 'risky-local-variable t) | |
4577 | |
4578 (put 'mh-lib 'risky-local-variable t) | |
4579 | |
4580 ;;;*** | |
4581 | |
4582 ;;;*** | |
4583 | |
4584 ;;;### (autoloads nil "abbrev" "modes/abbrev.el" (12983 26782)) | |
4585 ;;; Generated autoloads from modes/abbrev.el | |
4586 | |
4587 ;;;### (autoloads (ada-make-filename-from-adaname ada-mode) "ada-mode" "modes/ada-mode.el" (12983 26790)) | |
4588 ;;; Generated autoloads from modes/ada-mode.el | |
4589 | |
4590 (autoload 'ada-mode "ada-mode" "\ | |
4591 Ada Mode is the major mode for editing Ada code. | |
4592 | |
4593 Bindings are as follows: (Note: 'LFD' is control-j.) | |
4594 | |
4595 Indent line '\\[ada-tab]' | |
4596 Indent line, insert newline and indent the new line. '\\[newline-and-indent]' | |
4597 | |
4598 Re-format the parameter-list point is in '\\[ada-format-paramlist]' | |
4599 Indent all lines in region '\\[ada-indent-region]' | |
4600 Call external pretty printer program '\\[ada-call-pretty-printer]' | |
4601 | |
4602 Adjust case of identifiers and keywords in region '\\[ada-adjust-case-region]' | |
4603 Adjust case of identifiers and keywords in buffer '\\[ada-adjust-case-buffer]' | |
4604 | |
4605 Call EXTERNAL pretty printer (if you have one) '\\[ada-call-pretty-printer]' | |
4606 | |
4607 Fill comment paragraph '\\[ada-fill-comment-paragraph]' | |
4608 Fill comment paragraph and justify each line '\\[ada-fill-comment-paragraph-justify]' | |
4609 Fill comment paragraph, justify and append postfix '\\[ada-fill-comment-paragraph-postfix]' | |
4610 | |
4611 Next func/proc/task '\\[ada-next-procedure]' Previous func/proc/task '\\[ada-previous-procedure]' | |
4612 Next package '\\[ada-next-package]' Previous package '\\[ada-previous-package]' | |
4613 | |
4614 Goto matching start of current 'end ...;' '\\[ada-move-to-start]' | |
4615 Goto end of current block '\\[ada-move-to-end]' | |
4616 | |
4617 Comments are handled using standard GNU Emacs conventions, including: | |
4618 Start a comment '\\[indent-for-comment]' | |
4619 Comment region '\\[comment-region]' | |
4620 Uncomment region '\\[ada-uncomment-region]' | |
4621 Continue comment on next line '\\[indent-new-comment-line]' | |
4622 | |
4623 If you use imenu.el: | |
4624 Display index-menu of functions & procedures '\\[imenu]' | |
4625 | |
4626 If you use find-file.el: | |
4627 Switch to other file (Body <-> Spec) '\\[ff-find-other-file]' | |
4628 or '\\[ff-mouse-find-other-file] | |
4629 Switch to other file in other window '\\[ada-ff-other-window]' | |
4630 or '\\[ff-mouse-find-other-file-other-window] | |
4631 If you use this function in a spec and no body is available, it gets created | |
4632 with body stubs. | |
4633 | |
4634 If you use ada-xref.el: | |
4635 Goto declaration: '\\[ada-point-and-xref]' on the identifier | |
4636 or '\\[ada-goto-declaration]' with point on the identifier | |
4637 Complete identifier: '\\[ada-complete-identifier]' | |
4638 Execute Gnatf: '\\[ada-gnatf-current]'" t nil) | |
4639 | |
4640 (autoload 'ada-make-filename-from-adaname "ada-mode" "\ | |
4641 Determine the filename of a package/procedure from its own Ada name." t nil) | |
4642 | |
4643 ;;;*** | |
4644 | |
4645 ;;;### (autoloads (archive-mode) "arc-mode" "modes/arc-mode.el" (12983 26795)) | |
4646 ;;; Generated autoloads from modes/arc-mode.el | |
4647 | |
4648 (autoload 'archive-mode "arc-mode" "\ | |
4649 Major mode for viewing an archive file in a dired-like way. | |
4650 You can move around using the usual cursor motion commands. | |
4651 Letters no longer insert themselves. | |
4652 Type `e' to pull a file out of the archive and into its own buffer; | |
4653 or click mouse-2 on the file's line in the archive mode buffer. | |
4654 | |
4655 If you edit a sub-file of this archive (as with the `e' command) and | |
4656 save it, the contents of that buffer will be saved back into the | |
4657 archive. | |
4658 | |
4659 \\{archive-mode-map}" nil nil) | |
4660 | |
4661 ;;;*** | |
4662 | |
4663 ;;;### (autoloads (asm-mode) "asm-mode" "modes/asm-mode.el" (12983 26789)) | |
4664 ;;; Generated autoloads from modes/asm-mode.el | |
4665 | |
4666 (autoload 'asm-mode "asm-mode" "\ | |
4667 Major mode for editing typical assembler code. | |
4668 Features a private abbrev table and the following bindings: | |
4669 | |
4670 \\[asm-colon] outdent a preceding label, tab to next tab stop. | |
4671 \\[tab-to-tab-stop] tab to next tab stop. | |
4672 \\[asm-newline] newline, then tab to next tab stop. | |
4673 \\[asm-comment] smart placement of assembler comments. | |
4674 | |
4675 The character used for making comments is set by the variable | |
4676 `asm-comment-char' (which defaults to `?;'). | |
4677 | |
4678 Alternatively, you may set this variable in `asm-mode-set-comment-hook', | |
4679 which is called near the beginning of mode initialization. | |
4680 | |
4681 Turning on Asm mode runs the hook `asm-mode-hook' at the end of initialization. | |
4682 | |
4683 Special commands: | |
4684 \\{asm-mode-map} | |
4685 " t nil) | |
4686 | |
4687 ;;;*** | |
4688 | |
4689 ;;;*** | |
4690 | |
4691 ;;;*** | |
4692 | |
4693 ;;;### (autoloads nil "auto-show" "modes/auto-show.el" (12983 26795)) | |
4694 ;;; Generated autoloads from modes/auto-show.el | |
4695 | |
4696 ;;;*** | |
4697 | |
4698 ;;;### (autoloads (awk-mode) "awk-mode" "modes/awk-mode.el" (12983 26781)) | |
4699 ;;; Generated autoloads from modes/awk-mode.el | |
4700 | |
4701 (autoload 'awk-mode "awk-mode" "\ | |
4702 Major mode for editing AWK code. | |
4703 This is much like C mode except for the syntax of comments. It uses | |
4704 the same keymap as C mode and has the same variables for customizing | |
4705 indentation. It has its own abbrev table and its own syntax table. | |
4706 | |
4707 Turning on AWK mode calls the value of the variable `awk-mode-hook' | |
4708 with no args, if that value is non-nil." t nil) | |
4709 | |
4710 ;;;*** | |
4711 | |
4712 ;;;*** | |
4713 | |
4714 ;;;### (autoloads nil "bib-mode" "modes/bib-mode.el" (12983 26782)) | |
4715 ;;; Generated autoloads from modes/bib-mode.el | |
4716 | |
4717 ;;;### (autoloads (bibtex-mode) "bibtex" "modes/bibtex.el" (12983 26783)) | |
4718 ;;; Generated autoloads from modes/bibtex.el | |
4719 | |
4720 (autoload 'bibtex-mode "bibtex" "\ | |
4721 Major mode for editing bibtex files. | |
4722 | |
4723 \\{bibtex-mode-map} | |
4724 | |
4725 A command such as \\[bibtex-Book] will outline the fields for a BibTeX book entry. | |
4726 | |
4727 The optional fields start with the string OPT, and thus ignored by BibTeX. | |
4728 The OPT string may be removed from a field with \\[bibtex-remove-OPT]. | |
4729 \\[bibtex-kill-optional-field] kills the current optional field entirely. | |
4730 \\[bibtex-remove-double-quotes] removes the double-quotes around the text of | |
4731 the current field. \\[bibtex-empty-field] replaces the text of the current | |
4732 field with the default \"\". | |
4733 | |
4734 The command \\[bibtex-clean-entry] cleans the current entry, i.e. (i) removes | |
4735 double-quotes from entirely numerical fields, (ii) removes OPT from all | |
4736 non-empty optional fields, (iii) removes all empty optional fields, and (iv) | |
4737 checks that no non-optional fields are empty. | |
4738 | |
4739 Use \\[bibtex-find-text] to position the dot at the end of the current field. | |
4740 Use \\[bibtex-next-field] to move to end of the next field. | |
4741 | |
4742 The following may be of interest as well: | |
4743 | |
4744 Functions: | |
4745 find-bibtex-duplicates | |
4746 find-bibtex-entry-location | |
4747 hide-bibtex-entry-bodies | |
4748 sort-bibtex-entries | |
4749 validate-bibtex-buffer | |
4750 | |
4751 Variables: | |
4752 bibtex-clean-entry-zap-empty-opts | |
4753 bibtex-entry-field-alist | |
4754 bibtex-include-OPTannote | |
4755 bibtex-include-OPTcrossref | |
4756 bibtex-include-OPTkey | |
4757 bibtex-maintain-sorted-entries | |
4758 bibtex-mode-user-optional-fields | |
4759 | |
4760 Fields: | |
4761 address | |
4762 Publisher's address | |
4763 annote | |
4764 Long annotation used for annotated bibliographies (begins sentence) | |
4765 author | |
4766 Name(s) of author(s), in BibTeX name format | |
4767 booktitle | |
4768 Book title when the thing being referenced isn't the whole book. | |
4769 For book entries, the title field should be used instead. | |
4770 chapter | |
4771 Chapter number | |
4772 crossref | |
4773 The database key of the entry being cross referenced. | |
4774 edition | |
4775 Edition of a book (e.g., \"second\") | |
4776 editor | |
4777 Name(s) of editor(s), in BibTeX name format. | |
4778 If there is also an author field, then the editor field should be | |
4779 for the book or collection that the work appears in | |
4780 howpublished | |
4781 How something strange has been published (begins sentence) | |
4782 institution | |
4783 Sponsoring institution | |
4784 journal | |
4785 Journal name (macros are provided for many) | |
4786 key | |
4787 Alphabetizing and labeling key (needed when no author or editor) | |
4788 month | |
4789 Month (macros are provided) | |
4790 note | |
4791 To help the reader find a reference (begins sentence) | |
4792 number | |
4793 Number of a journal or technical report | |
4794 organization | |
4795 Organization (sponsoring a conference) | |
4796 pages | |
4797 Page number or numbers (use `--' to separate a range) | |
4798 publisher | |
4799 Publisher name | |
4800 school | |
4801 School name (for theses) | |
4802 series | |
4803 The name of a series or set of books. | |
4804 An individual book will also have its own title | |
4805 title | |
4806 The title of the thing being referenced | |
4807 type | |
4808 Type of a technical report (e.g., \"Research Note\") to be used | |
4809 instead of the default \"Technical Report\" | |
4810 volume | |
4811 Volume of a journal or multivolume work | |
4812 year | |
4813 Year---should contain only numerals | |
4814 --------------------------------------------------------- | |
4815 Entry to this mode calls the value of bibtex-mode-hook if that value is | |
4816 non-nil." t nil) | |
4817 | |
4818 ;;;*** | |
4819 | |
4820 ;;;*** | |
4821 | |
4822 ;;;### (autoloads nil "c-comment" "modes/c-comment.el" (12983 25948)) | |
4823 ;;; Generated autoloads from modes/c-comment.el | |
4824 | |
4825 ;;;*** | |
4826 | |
4827 ;;;### (autoloads nil "c-fill" "modes/c-fill.el" (12983 25949)) | |
4828 ;;; Generated autoloads from modes/c-fill.el | |
4829 | |
4830 ;;;*** | |
4831 | |
4832 ;;;### (autoloads nil "c-style" "modes/c-style.el" (12983 27305)) | |
4833 ;;; Generated autoloads from modes/c-style.el | |
4834 | |
4835 ;;;*** | |
4836 | |
4837 ;;;### (autoloads nil "cc-compat" "modes/cc-compat.el" (12983 27296)) | |
4838 ;;; Generated autoloads from modes/cc-compat.el | |
4839 | |
4840 ;;;*** | |
4841 | |
4842 ;;;### (autoloads nil "cc-guess" "modes/cc-guess.el" (12983 27297)) | |
4843 ;;; Generated autoloads from modes/cc-guess.el | |
4844 | |
4845 ;;;*** | |
4846 | |
4847 ;;;### (autoloads nil "cc-lobotomy" "modes/cc-lobotomy.el" (12983 27304)) | |
4848 ;;; Generated autoloads from modes/cc-lobotomy.el | |
4849 | |
4850 ;;;*** | |
4851 | |
4852 ;;;### (autoloads (c-set-style java-mode objc-mode c++-mode c-mode) "cc-mode" "modes/cc-mode.el" (12983 27896)) | |
4853 ;;; Generated autoloads from modes/cc-mode.el | |
4854 | |
4855 (autoload 'c-mode "cc-mode" "\ | |
4856 Major mode for editing K&R and ANSI C code. | |
4857 To submit a problem report, enter `\\[c-submit-bug-report]' from a | |
4858 c-mode buffer. This automatically sets up a mail buffer with version | |
4859 information already added. You just need to add a description of the | |
4860 problem, including a reproducible test case and send the message. | |
4861 | |
4862 To see what version of cc-mode you are running, enter `\\[c-version]'. | |
4863 | |
4864 The hook variable `c-mode-hook' is run with no args, if that value is | |
4865 bound and has a non-nil value. Also the hook `c-mode-common-hook' is | |
4866 run first. | |
4867 | |
4868 Key bindings: | |
4869 \\{c-mode-map}" t nil) | |
4870 | |
4871 (autoload 'c++-mode "cc-mode" "\ | |
4872 Major mode for editing C++ code. | |
4873 To submit a problem report, enter `\\[c-submit-bug-report]' from a | |
4874 c++-mode buffer. This automatically sets up a mail buffer with | |
4875 version information already added. You just need to add a description | |
4876 of the problem, including a reproducible test case, and send the | |
4877 message. | |
4878 | |
4879 To see what version of cc-mode you are running, enter `\\[c-version]'. | |
4880 | |
4881 The hook variable `c++-mode-hook' is run with no args, if that | |
4882 variable is bound and has a non-nil value. Also the hook | |
4883 `c-mode-common-hook' is run first. | |
4884 | |
4885 Key bindings: | |
4886 \\{c++-mode-map}" t nil) | |
4887 | |
4888 (autoload 'objc-mode "cc-mode" "\ | |
4889 Major mode for editing Objective C code. | |
4890 To submit a problem report, enter `\\[c-submit-bug-report]' from an | |
4891 objc-mode buffer. This automatically sets up a mail buffer with | |
4892 version information already added. You just need to add a description | |
4893 of the problem, including a reproducible test case, and send the | |
4894 message. | |
4895 | |
4896 To see what version of cc-mode you are running, enter `\\[c-version]'. | |
4897 | |
4898 The hook variable `objc-mode-hook' is run with no args, if that value | |
4899 is bound and has a non-nil value. Also the hook `c-mode-common-hook' | |
4900 is run first. | |
4901 | |
4902 Key bindings: | |
4903 \\{objc-mode-map}" t nil) | |
4904 | |
4905 (autoload 'java-mode "cc-mode" "\ | |
4906 Major mode for editing Java code. | |
4907 To submit a problem report, enter `\\[c-submit-bug-report]' from an | |
4908 java-mode buffer. This automatically sets up a mail buffer with | |
4909 version information already added. You just need to add a description | |
4910 of the problem, including a reproducible test case and send the | |
4911 message. | |
4912 | |
4913 To see what version of cc-mode you are running, enter `\\[c-version]'. | |
4914 | |
4915 The hook variable `java-mode-hook' is run with no args, if that value | |
4916 is bound and has a non-nil value. Also the common hook | |
4917 `c-mode-common-hook' is run first. Note that this mode automatically | |
4918 sets the \"java\" style before calling any hooks so be careful if you | |
4919 set styles in `c-mode-common-hook'. | |
4920 | |
4921 Key bindings: | |
4922 \\{java-mode-map}" t nil) | |
4923 | |
4924 (autoload 'c-set-style "cc-mode" "\ | |
4925 Set cc-mode variables to use one of several different indentation styles. | |
4926 STYLENAME is a string representing the desired style from the list of | |
4927 styles described in the variable `c-style-alist'. See that variable | |
4928 for details of setting up styles." t nil) | |
4929 | |
4930 (fset 'set-c-style 'c-set-style) | |
4931 | |
4932 ;;;*** | |
4933 | |
4934 ;;;### (autoloads (common-lisp-indent-function) "cl-indent" "modes/cl-indent.el" (12983 26784)) | |
4935 ;;; Generated autoloads from modes/cl-indent.el | |
4936 | |
4937 (autoload 'common-lisp-indent-function "cl-indent" nil nil nil) | |
4938 | |
4939 ;;;*** | |
4940 | |
4941 ;;;### (autoloads (c-macro-expand) "cmacexp" "modes/cmacexp.el" (12983 26784)) | |
4942 ;;; Generated autoloads from modes/cmacexp.el | |
4943 | |
4944 (autoload 'c-macro-expand "cmacexp" "\ | |
4945 Expand C macros in the region, using the C preprocessor. | |
4946 Normally display output in temp buffer, but | |
4947 prefix arg means replace the region with it. | |
4948 | |
4949 `c-macro-preprocessor' specifies the preprocessor to use. | |
4950 Prompt for arguments to the preprocessor (e.g. `-DDEBUG -I ./include') | |
4951 if the user option `c-macro-prompt-flag' is non-nil. | |
4952 | |
4953 Noninteractive args are START, END, SUBST. | |
4954 For use inside Lisp programs, see also `c-macro-expansion'." t nil) | |
4955 | |
4956 ;;;*** | |
4957 | |
4958 ;;;*** | |
4959 | |
4960 ;;;*** | |
4961 | |
4962 ;;;*** | |
4963 | |
4964 ;;;### (autoloads nil "cperl-mode" "modes/cperl-mode.el" (12983 27305)) | |
4965 ;;; Generated autoloads from modes/cperl-mode.el | |
4966 | |
4967 ;;;### (autoloads (eiffel-mode) "eiffel3" "modes/eiffel3.el" (12983 27899)) | |
4968 ;;; Generated autoloads from modes/eiffel3.el | |
4969 | |
4970 (autoload 'eiffel-mode "eiffel3" "\ | |
4971 Major mode for editing Eiffel programs." t nil) | |
4972 | |
4973 ;;;*** | |
4974 | |
4975 ;;;### (autoloads (enriched-decode enriched-encode enriched-mode) "enriched" "modes/enriched.el" (12983 26795)) | |
4976 ;;; Generated autoloads from modes/enriched.el | |
4977 | |
4978 (autoload 'enriched-mode "enriched" "\ | |
4979 Minor mode for editing text/enriched files. | |
4980 These are files with embedded formatting information in the MIME standard | |
4981 text/enriched format. | |
4982 Turning the mode on runs `enriched-mode-hook'. | |
4983 | |
4984 More information about Enriched mode is available in the file | |
4985 etc/enriched.doc in the Emacs distribution directory. | |
4986 | |
4987 Commands: | |
4988 | |
4989 \\<enriched-mode-map>\\{enriched-mode-map}" t nil) | |
4990 | |
4991 (autoload 'enriched-encode "enriched" nil nil nil) | |
4992 | |
4993 (autoload 'enriched-decode "enriched" nil nil nil) | |
4994 | |
4995 ;;;*** | |
4996 | |
4997 ;;;### (autoloads (executable-self-display executable-set-magic) "executable" "modes/executable.el" (12983 26797)) | |
4998 ;;; Generated autoloads from modes/executable.el | |
4999 | |
5000 (autoload 'executable-set-magic "executable" "\ | |
5001 Set this buffer's interpreter to INTERPRETER with optional ARGUMENT. | |
5002 The variables `executable-magicless-file-regexp', `executable-prefix', | |
5003 `executable-insert', `executable-query' and `executable-chmod' control | |
5004 when and how magic numbers are inserted or replaced and scripts made | |
5005 executable." t nil) | |
5006 | |
5007 (autoload 'executable-self-display "executable" "\ | |
5008 Turn a text file into a self-displaying Un*x command. | |
5009 The magic number of such a command displays all lines but itself." t nil) | |
5010 | |
5011 ;;;*** | |
5012 | |
5013 ;;;### (autoloads (f90-mode) "f90" "modes/f90.el" (12983 26787)) | |
5014 ;;; Generated autoloads from modes/f90.el | |
5015 | |
5016 (autoload 'f90-mode "f90" "\ | |
5017 Major mode for editing Fortran 90 code in free format. | |
5018 | |
5019 \\[f90-indent-new-line] corrects current indentation and creates new indented line. | |
5020 \\[f90-indent-line] indents the current line correctly. | |
5021 \\[f90-indent-subprogram] indents the current subprogram. | |
5022 | |
5023 Type `? or `\\[help-command] to display a list of built-in abbrevs for F90 keywords. | |
5024 | |
5025 Key definitions: | |
5026 \\{f90-mode-map} | |
5027 | |
5028 Variables controlling indentation style and extra features: | |
5029 | |
5030 f90-do-indent | |
5031 Extra indentation within do blocks. (default 3) | |
5032 f90-if-indent | |
5033 Extra indentation within if/select case/where/forall blocks. (default 3) | |
5034 f90-type-indent | |
5035 Extra indentation within type/interface/block-data blocks. (default 3) | |
5036 f90-program-indent | |
5037 Extra indentation within program/module/subroutine/function blocks. | |
5038 (default 2) | |
5039 f90-continuation-indent | |
5040 Extra indentation applied to continuation lines. (default 5) | |
5041 f90-comment-region | |
5042 String inserted by \\[f90-comment-region] at start of each line in | |
5043 region. (default \"!!!$\") | |
5044 f90-indented-comment-re | |
5045 Regexp determining the type of comment to be intended like code. | |
5046 (default \"!\") | |
5047 f90-directive-comment-re | |
5048 Regexp of comment-like directive like \"!HPF\\\\$\", not to be indented. | |
5049 (default \"!hpf\\\\$\") | |
5050 f90-break-delimiters | |
5051 Regexp holding list of delimiters at which lines may be broken. | |
5052 (default \"[-+*/><=,% \\t]\") | |
5053 f90-break-before-delimiters | |
5054 Non-nil causes `f90-do-auto-fill' to break lines before delimiters. | |
5055 (default t) | |
5056 f90-beginning-ampersand | |
5057 Automatic insertion of & at beginning of continuation lines. (default t) | |
5058 f90-smart-end | |
5059 From an END statement, check and fill the end using matching block start. | |
5060 Allowed values are 'blink, 'no-blink, and nil, which determine | |
5061 whether to blink the matching beginning.) (default 'blink) | |
5062 f90-auto-keyword-case | |
5063 Automatic change of case of keywords. (default nil) | |
5064 The possibilities are 'downcase-word, 'upcase-word, 'capitalize-word. | |
5065 f90-leave-line-no | |
5066 Do not left-justify line numbers. (default nil) | |
5067 f90-startup-message | |
5068 Set to nil to inhibit message first time F90 mode is used. (default t) | |
5069 f90-keywords-re | |
5070 List of keywords used for highlighting/upcase-keywords etc. | |
5071 | |
5072 Turning on F90 mode calls the value of the variable `f90-mode-hook' | |
5073 with no args, if that value is non-nil." t nil) | |
5074 | |
5075 ;;;*** | |
5076 | |
5077 ;;;### (autoloads (follow-delete-other-windows-and-split follow-mode turn-off-follow-mode turn-on-follow-mode) "follow" "modes/follow.el" (12983 26794)) | |
5078 ;;; Generated autoloads from modes/follow.el | |
5079 | |
5080 (add-minor-mode 'follow-mode nil 'follow-mode-map) | |
5081 | |
5082 (autoload 'turn-on-follow-mode "follow" "\ | |
5083 Turn on Follow mode. Please see the function `follow-mode'." t nil) | |
5084 | |
5085 (autoload 'turn-off-follow-mode "follow" "\ | |
5086 Turn off Follow mode. Please see the function `follow-mode'." t nil) | |
5087 | |
5088 (autoload 'follow-mode "follow" "\ | |
5089 Minor mode which combines windows into one tall virtual window. | |
5090 | |
5091 The feeling of a \"virtual window\" has been accomplished by the use | |
5092 of two major techniques: | |
5093 | |
5094 * The windows always displays adjacent sections of the buffer. | |
5095 This means that whenever one window is moved, all the | |
5096 others will follow. (Hence the name Follow Mode.) | |
5097 | |
5098 * Should the point (cursor) end up outside a window, another | |
5099 window displaying that point is selected, if possible. This | |
5100 makes it possible to walk between windows using normal cursor | |
5101 movement commands. | |
5102 | |
5103 Follow mode comes to its prime when used on a large screen and two | |
5104 side-by-side window are used. The user can, with the help of Follow | |
5105 mode, use two full-height windows as though they would have been | |
5106 one. Imagine yourself editing a large function, or section of text, | |
5107 and beeing able to use 144 lines instead of the normal 72... (your | |
5108 mileage may vary). | |
5109 | |
5110 To split one large window into two side-by-side windows, the commands | |
5111 `\\[split-window-horizontally]' or `M-x follow-delete-other-windows-and-split' can be used. | |
5112 | |
5113 Only windows displayed in the same frame follow each-other. | |
5114 | |
5115 If the variable `follow-intercept-processes' is non-nil, Follow mode | |
5116 will listen to the output of processes and redisplay accordingly. | |
5117 \(This is the default.) | |
5118 | |
5119 When Follow mode is switched on, the hook `follow-mode-hook' | |
5120 is called. When turned off, `follow-mode-off-hook' is called. | |
5121 | |
5122 Keys specific to Follow mode: | |
5123 \\{follow-mode-map}" t nil) | |
5124 | |
5125 (autoload 'follow-delete-other-windows-and-split "follow" "\ | |
5126 Create two side by side windows and enter Follow Mode. | |
5127 | |
5128 Execute this command to display as much as possible of the text | |
5129 in the selected window. All other windows, in the current | |
5130 frame, are deleted and the selected window is split in two | |
5131 side-by-side windows. Follow Mode is activated, hence the | |
5132 two windows always will display two successive pages. | |
5133 \(If one window is moved, the other one will follow.) | |
5134 | |
5135 If ARG is positive, the leftmost window is selected. If it negative, | |
5136 the rightmost is selected. If ARG is nil, the leftmost window is | |
5137 selected if the original window is the first one in the frame. | |
5138 | |
5139 To bind this command to a hotkey, place the following line | |
5140 in your `~/.emacs' file, replacing [f7] by your favourite key: | |
5141 (global-set-key [f7] 'follow-delete-other-windows-and-split)" t nil) | |
5142 | |
5143 ;;;*** | |
5144 | |
5145 ;;;*** | |
5146 | |
5147 ;;;### (autoloads nil "fortran-misc" "modes/fortran-misc.el" (12983 25962)) | |
5148 ;;; Generated autoloads from modes/fortran-misc.el | |
5149 | |
5150 ;;;### (autoloads (fortran-mode) "fortran" "modes/fortran.el" (12991 6099)) | |
5151 ;;; Generated autoloads from modes/fortran.el | |
5152 | |
5153 (defvar fortran-tab-mode-default nil "\ | |
5154 *Default tabbing/carriage control style for empty files in Fortran mode. | |
5155 A value of t specifies tab-digit style of continuation control. | |
5156 A value of nil specifies that continuation lines are marked | |
5157 with a character in column 6.") | |
5158 | |
5159 (autoload 'fortran-mode "fortran" "\ | |
5160 Major mode for editing Fortran code. | |
5161 \\[fortran-indent-line] indents the current Fortran line correctly. | |
5162 DO statements must not share a common CONTINUE. | |
5163 | |
5164 Type ;? or ;\\[help-command] to display a list of built-in abbrevs for Fortran keywords. | |
5165 | |
5166 Key definitions: | |
5167 \\{fortran-mode-map} | |
5168 | |
5169 Variables controlling indentation style and extra features: | |
5170 | |
5171 comment-start | |
5172 Normally nil in Fortran mode. If you want to use comments | |
5173 starting with `!', set this to the string \"!\". | |
5174 fortran-do-indent | |
5175 Extra indentation within do blocks. (default 3) | |
5176 fortran-if-indent | |
5177 Extra indentation within if blocks. (default 3) | |
5178 fortran-structure-indent | |
5179 Extra indentation within structure, union, map and interface blocks. | |
5180 (default 3) | |
5181 fortran-continuation-indent | |
5182 Extra indentation applied to continuation statements. (default 5) | |
5183 fortran-comment-line-extra-indent | |
5184 Amount of extra indentation for text within full-line comments. (default 0) | |
5185 fortran-comment-indent-style | |
5186 nil means don't change indentation of text in full-line comments, | |
5187 fixed means indent that text at `fortran-comment-line-extra-indent' beyond | |
5188 the value of `fortran-minimum-statement-indent-fixed' (for fixed | |
5189 format continuation style) or `fortran-minimum-statement-indent-tab' | |
5190 (for TAB format continuation style). | |
5191 relative means indent at `fortran-comment-line-extra-indent' beyond the | |
5192 indentation for a line of code. | |
5193 (default 'fixed) | |
5194 fortran-comment-indent-char | |
5195 Single-character string to be inserted instead of space for | |
5196 full-line comment indentation. (default \" \") | |
5197 fortran-minimum-statement-indent-fixed | |
5198 Minimum indentation for Fortran statements in fixed format mode. (def.6) | |
5199 fortran-minimum-statement-indent-tab | |
5200 Minimum indentation for Fortran statements in TAB format mode. (default 9) | |
5201 fortran-line-number-indent | |
5202 Maximum indentation for line numbers. A line number will get | |
5203 less than this much indentation if necessary to avoid reaching | |
5204 column 5. (default 1) | |
5205 fortran-check-all-num-for-matching-do | |
5206 Non-nil causes all numbered lines to be treated as possible \"continue\" | |
5207 statements. (default nil) | |
5208 fortran-blink-matching-if | |
5209 Non-nil causes \\[fortran-indent-line] on an ENDIF statement to blink on | |
5210 matching IF. Also, from an ENDDO statement, blink on matching DO [WHILE] | |
5211 statement. (default nil) | |
5212 fortran-continuation-string | |
5213 Single-character string to be inserted in column 5 of a continuation | |
5214 line. (default \"$\") | |
5215 fortran-comment-region | |
5216 String inserted by \\[fortran-comment-region] at start of each line in | |
5217 region. (default \"c$$$\") | |
5218 fortran-electric-line-number | |
5219 Non-nil causes line number digits to be moved to the correct column | |
5220 as typed. (default t) | |
5221 fortran-break-before-delimiters | |
5222 Non-nil causes `fortran-fill' breaks lines before delimiters. | |
5223 (default t) | |
5224 fortran-startup-message | |
5225 Set to nil to inhibit message first time Fortran mode is used. | |
5226 | |
5227 Turning on Fortran mode calls the value of the variable `fortran-mode-hook' | |
5228 with no args, if that value is non-nil." t nil) | |
5229 | |
5230 ;;;*** | |
5231 | |
5232 ;;;### (autoloads (hide-ifdef-mode) "hideif" "modes/hideif.el" (12983 26784)) | |
5233 ;;; Generated autoloads from modes/hideif.el | |
5234 | |
5235 (add-minor-mode 'hide-ifdef-mode " Ifdef") | |
5236 | |
5237 (autoload 'hide-ifdef-mode "hideif" "\ | |
5238 Toggle Hide-Ifdef mode. This is a minor mode, albeit a large one. | |
5239 With ARG, turn Hide-Ifdef mode on if arg is positive, off otherwise. | |
5240 In Hide-Ifdef mode, code within #ifdef constructs that the C preprocessor | |
5241 would eliminate may be hidden from view. Several variables affect | |
5242 how the hiding is done: | |
5243 | |
5244 hide-ifdef-env | |
5245 An association list of defined and undefined symbols for the | |
5246 current buffer. Initially, the global value of `hide-ifdef-env' | |
5247 is used. | |
5248 | |
5249 hide-ifdef-define-alist | |
5250 An association list of defined symbol lists. | |
5251 Use `hide-ifdef-set-define-alist' to save the current `hide-ifdef-env' | |
5252 and `hide-ifdef-use-define-alist' to set the current `hide-ifdef-env' | |
5253 from one of the lists in `hide-ifdef-define-alist'. | |
5254 | |
5255 hide-ifdef-lines | |
5256 Set to non-nil to not show #if, #ifdef, #ifndef, #else, and | |
5257 #endif lines when hiding. | |
5258 | |
5259 hide-ifdef-initially | |
5260 Indicates whether `hide-ifdefs' should be called when Hide-Ifdef mode | |
5261 is activated. | |
5262 | |
5263 hide-ifdef-read-only | |
5264 Set to non-nil if you want to make buffers read only while hiding. | |
5265 After `show-ifdefs', read-only status is restored to previous value. | |
5266 | |
5267 \\{hide-ifdef-mode-map}" t nil) | |
5268 | |
5269 (defvar hide-ifdef-initially nil "\ | |
5270 *Non-nil means call `hide-ifdefs' when Hide-Ifdef mode is first activated.") | |
5271 | |
5272 (defvar hide-ifdef-read-only nil "\ | |
5273 *Set to non-nil if you want buffer to be read-only while hiding text.") | |
5274 | |
5275 (defvar hide-ifdef-lines nil "\ | |
5276 *Non-nil means hide the #ifX, #else, and #endif lines.") | |
5277 | |
5278 ;;;*** | |
5279 | |
5280 ;;;### (autoloads (hs-minor-mode hs-hide-block hs-hide-all) "hideshow" "modes/hideshow.el" (12983 26791)) | |
5281 ;;; Generated autoloads from modes/hideshow.el | |
5282 | |
5283 (defvar hs-minor-mode nil "\ | |
5284 Non-nil if using hideshow mode as a minor mode of some other mode. | |
5285 Use the command `hs-minor-mode' to toggle this variable.") | |
5286 | |
5287 (autoload 'hs-hide-all "hideshow" "\ | |
5288 Hides all top-level blocks, displaying only first and last lines. | |
5289 It moves point to the beginning of the line, and it runs the normal hook | |
5290 `hs-hide-hook'. See documentation for `run-hooks'." t nil) | |
5291 | |
5292 (autoload 'hs-hide-block "hideshow" "\ | |
5293 Selects a block and hides it. With prefix arg, reposition at end. | |
5294 Block is defined as a sexp for lispish modes, mode-specific otherwise. | |
5295 Comments are blocks, too. Upon completion, point is at repositioned and | |
5296 the normal hook `hs-hide-hook' is run. See documentation for `run-hooks'." t nil) | |
5297 | |
5298 (autoload 'hs-minor-mode "hideshow" "\ | |
5299 Toggle hideshow minor mode. | |
5300 With ARG, turn hideshow minor mode on if ARG is positive, off otherwise. | |
5301 When hideshow minor mode is on, the menu bar is augmented with hideshow | |
5302 commands and the hideshow commands are enabled. The variables | |
5303 `selective-display' and `selective-display-ellipses' are set to t. | |
5304 Last, the normal hook `hs-minor-mode-hook' is run; see the doc for `run-hooks'. | |
5305 | |
5306 Turning hideshow minor mode off reverts the menu bar and the | |
5307 variables to default values and disables the hideshow commands." t nil) | |
5308 | |
5309 (add-minor-mode 'hs-minor-mode " hs" 'hs-minor-mode-map) | |
5310 | |
5311 ;;;*** | |
5312 | |
5313 ;;;### (autoloads (icon-mode) "icon" "modes/icon.el" (12983 26784)) | |
5314 ;;; Generated autoloads from modes/icon.el | |
5315 | |
5316 (autoload 'icon-mode "icon" "\ | |
5317 Major mode for editing Icon code. | |
5318 Expression and list commands understand all Icon brackets. | |
5319 Tab indents for Icon code. | |
5320 Paragraphs are separated by blank lines only. | |
5321 Delete converts tabs to spaces as it moves back. | |
5322 \\{icon-mode-map} | |
5323 Variables controlling indentation style: | |
5324 icon-tab-always-indent | |
5325 Non-nil means TAB in Icon mode should always reindent the current line, | |
5326 regardless of where in the line point is when the TAB command is used. | |
5327 icon-auto-newline | |
5328 Non-nil means automatically newline before and after braces | |
5329 inserted in Icon code. | |
5330 icon-indent-level | |
5331 Indentation of Icon statements within surrounding block. | |
5332 The surrounding block's indentation is the indentation | |
5333 of the line on which the open-brace appears. | |
5334 icon-continued-statement-offset | |
5335 Extra indentation given to a substatement, such as the | |
5336 then-clause of an if or body of a while. | |
5337 icon-continued-brace-offset | |
5338 Extra indentation given to a brace that starts a substatement. | |
5339 This is in addition to `icon-continued-statement-offset'. | |
5340 icon-brace-offset | |
5341 Extra indentation for line if it starts with an open brace. | |
5342 icon-brace-imaginary-offset | |
5343 An open brace following other text is treated as if it were | |
5344 this far to the right of the start of its line. | |
5345 | |
5346 Turning on Icon mode calls the value of the variable `icon-mode-hook' | |
5347 with no args, if that value is non-nil." t nil) | |
5348 | |
5349 ;;;*** | |
5350 | |
5351 ;;;### (autoloads (imenu imenu-add-to-menubar) "imenu" "modes/imenu.el" (12983 27308)) | |
5352 ;;; Generated autoloads from modes/imenu.el | |
5353 | |
5354 (defvar imenu-generic-expression nil "\ | |
5355 The regex pattern to use for creating a buffer index. | |
5356 | |
5357 If non-nil this pattern is passed to `imenu-create-index-with-pattern' | |
5358 to create a buffer index. | |
5359 | |
5360 It is an alist with elements that look like this: (MENU-TITLE | |
5361 REGEXP INDEX). | |
5362 | |
5363 MENU-TITLE is a string used as the title for the submenu or nil if the | |
5364 entries are not nested. | |
5365 | |
5366 REGEXP is a regexp that should match a construct in the buffer that is | |
5367 to be displayed in the menu; i.e., function or variable definitions, | |
5368 etc. It contains a substring which is the name to appear in the | |
5369 menu. See the info section on Regexps for more information. | |
5370 | |
5371 INDEX points to the substring in REGEXP that contains the name (of the | |
5372 function, variable or type) that is to appear in the menu. | |
5373 | |
5374 For emacs-lisp-mode for example PATTERN would look like: | |
5375 | |
5376 '((nil \"^\\\\s-*(def\\\\(un\\\\|subst\\\\|macro\\\\|advice\\\\)\\\\s-+\\\\([-A-Za-z0-9+]+\\\\)\" 2) | |
5377 (\"*Vars*\" \"^\\\\s-*(def\\\\(var\\\\|const\\\\)\\\\s-+\\\\([-A-Za-z0-9+]+\\\\)\" 2) | |
5378 (\"*Types*\" \"^\\\\s-*(def\\\\(type\\\\|struct\\\\|class\\\\|ine-condition\\\\)\\\\s-+\\\\([-A-Za-z0-9+]+\\\\)\" 2)) | |
5379 | |
5380 The variable is buffer-local.") | |
5381 | |
5382 (make-variable-buffer-local 'imenu-generic-expression) | |
5383 | |
5384 (autoload 'imenu-add-to-menubar "imenu" "\ | |
5385 Adds an `imenu' entry to the menu bar for the current buffer. | |
5386 NAME is a string used to name the menu bar item. | |
5387 See the command `imenu' for more information." t nil) | |
5388 | |
5389 (autoload 'imenu "imenu" "\ | |
5390 Jump to a place in the buffer chosen using a buffer menu or mouse menu. | |
5391 See `imenu-choose-buffer-index' for more information." t nil) | |
5392 | |
5393 ;;;*** | |
5394 | |
5395 ;;;### (autoloads (ksh-mode) "ksh-mode" "modes/ksh-mode.el" (12983 26794)) | |
5396 ;;; Generated autoloads from modes/ksh-mode.el | |
5397 | |
5398 (autoload 'ksh-mode "ksh-mode" "\ | |
5399 ksh-mode $Revision: 1.2 $ - Major mode for editing (Bourne, Korn or Bourne again) | |
5400 shell scripts. | |
5401 Special key bindings and commands: | |
5402 \\{ksh-mode-map} | |
5403 Variables controlling indentation style: | |
5404 ksh-indent | |
5405 Indentation of ksh statements with respect to containing block. | |
5406 Default value is 2. | |
5407 ksh-case-indent | |
5408 Additional indentation for statements under case items. | |
5409 Default value is nil which will align the statements one position | |
5410 past the \")\" of the pattern. | |
5411 ksh-case-item-offset | |
5412 Additional indentation for case items within a case statement. | |
5413 Default value is 2. | |
5414 ksh-group-offset | |
5415 Additional indentation for keywords \"do\" and \"then\". | |
5416 Default value is -2. | |
5417 ksh-brace-offset | |
5418 Additional indentation of \"{\" under functions or brace groupings. | |
5419 Default value is 0. | |
5420 ksh-multiline-offset | |
5421 Additional indentation of line that is preceded of a line ending with a | |
5422 \\ to make it continue on next line. | |
5423 ksh-tab-always-indent | |
5424 Controls the operation of the TAB key. If t (the default), always | |
5425 reindent the current line. If nil, indent the current line only if | |
5426 point is at the left margin or in the line's indentation; otherwise | |
5427 insert a tab. | |
5428 ksh-match-and-tell | |
5429 If non-nil echo in the minibuffer the matching compound command | |
5430 for the \"done\", \"}\", \"fi\", or \"esac\". Default value is t. | |
5431 | |
5432 ksh-align-to-keyword | |
5433 Controls whether nested constructs align from the keyword or | |
5434 the current indentation. If non-nil, indentation will be relative to | |
5435 the column the keyword starts. If nil, indentation will be relative to | |
5436 the current indentation of the line the keyword is on. | |
5437 The default value is non-nil. | |
5438 | |
5439 ksh-comment-regexp | |
5440 Regular expression used to recognize comments. Customize to support | |
5441 ksh-like languages. Default value is \"\\s *#\". | |
5442 | |
5443 Style Guide. | |
5444 By setting | |
5445 (setq ksh-indent default-tab-width) | |
5446 (setq ksh-group-offset 0) | |
5447 | |
5448 The following style is obtained: | |
5449 | |
5450 if [ -z $foo ] | |
5451 then | |
5452 bar # <-- ksh-group-offset is additive to ksh-indent | |
5453 foo | |
5454 fi | |
5455 | |
5456 By setting | |
5457 (setq ksh-indent default-tab-width) | |
5458 (setq ksh-group-offset (- 0 ksh-indent)) | |
5459 | |
5460 The following style is obtained: | |
5461 | |
5462 if [ -z $foo ] | |
5463 then | |
5464 bar | |
5465 foo | |
5466 fi | |
5467 | |
5468 By setting | |
5469 (setq ksh-case-item-offset 1) | |
5470 (setq ksh-case-indent nil) | |
5471 | |
5472 The following style is obtained: | |
5473 | |
5474 case x in * | |
5475 foo) bar # <-- ksh-case-item-offset | |
5476 baz;; # <-- ksh-case-indent aligns with \")\" | |
5477 foobar) foo | |
5478 bar;; | |
5479 esac | |
5480 | |
5481 By setting | |
5482 (setq ksh-case-item-offset 1) | |
5483 (setq ksh-case-indent 6) | |
5484 | |
5485 The following style is obtained: | |
5486 | |
5487 case x in * | |
5488 foo) bar # <-- ksh-case-item-offset | |
5489 baz;; # <-- ksh-case-indent | |
5490 foobar) foo | |
5491 bar;; | |
5492 esac | |
5493 | |
5494 | |
5495 Installation: | |
5496 | |
5497 (setq ksh-mode-hook | |
5498 (function (lambda () | |
5499 (font-lock-mode 1) ;; font-lock the buffer | |
5500 (setq ksh-indent 8) | |
5501 (setq ksh-group-offset -8) | |
5502 (setq ksh-brace-offset -8) | |
5503 (setq ksh-tab-always-indent t) | |
5504 (setq ksh-match-and-tell t) | |
5505 (setq ksh-align-to-keyword t) ;; Turn on keyword alignment | |
5506 )))" t nil) | |
5507 | |
5508 ;;;*** | |
5509 | |
5510 ;;;*** | |
5511 | |
5512 ;;;*** | |
5513 | |
5514 ;;;### (autoloads nil "lisp-mnt" "modes/lisp-mnt.el" (12983 26794)) | |
5515 ;;; Generated autoloads from modes/lisp-mnt.el | |
5516 | |
5517 ;;;*** | |
5518 | |
5519 ;;;*** | |
5520 | |
5521 ;;;### (autoloads nil "lisp-mode" "modes/lisp-mode.el" (12983 27298)) | |
5522 ;;; Generated autoloads from modes/lisp-mode.el | |
5523 | |
5524 ;;;*** | |
5525 | |
5526 ;;;### (autoloads nil "list-mode" "modes/list-mode.el" (12983 26790)) | |
5527 ;;; Generated autoloads from modes/list-mode.el | |
5528 | |
5529 ;;;### (autoloads (m4-mode) "m4-mode" "modes/m4-mode.el" (12983 27309)) | |
5530 ;;; Generated autoloads from modes/m4-mode.el | |
5531 | |
5532 (autoload 'm4-mode "m4-mode" "\ | |
5533 A major-mode to edit m4 macro files | |
5534 \\{m4-mode-map} | |
5535 " t nil) | |
5536 | |
5537 ;;;*** | |
5538 | |
5539 ;;;### (autoloads (define-mail-alias build-mail-aliases mail-aliases-setup) "mail-abbrevs" "modes/mail-abbrevs.el" (12996 11548)) | |
5540 ;;; Generated autoloads from modes/mail-abbrevs.el | |
5541 | |
5542 (defvar mail-abbrev-mailrc-file nil "\ | |
5543 Name of file with mail aliases. If nil, ~/.mailrc is used.") | |
5544 | |
5545 (defvar mail-aliases nil "\ | |
5546 Word-abbrev table of mail address aliases. | |
5547 If this is nil, it means the aliases have not yet been initialized and | |
5548 should be read from the .mailrc file. (This is distinct from there being | |
5549 no aliases, which is represented by this being a table with no entries.)") | |
5550 | |
5551 (autoload 'mail-aliases-setup "mail-abbrevs" nil nil nil) | |
5552 | |
5553 (autoload 'build-mail-aliases "mail-abbrevs" "\ | |
5554 Read mail aliases from .mailrc and set mail-aliases." nil nil) | |
5555 | |
5556 (autoload 'define-mail-alias "mail-abbrevs" "\ | |
5557 Define NAME as a mail-alias that translates to DEFINITION. | |
5558 If DEFINITION contains multiple addresses, separate them with commas." t nil) | |
5559 | |
5560 ;;;*** | |
5561 | |
5562 ;;;### (autoloads (makefile-mode) "make-mode" "modes/make-mode.el" (12983 26781)) | |
5563 ;;; Generated autoloads from modes/make-mode.el | |
5564 | |
5565 (autoload 'makefile-mode "make-mode" "\ | |
5566 Major mode for editing Makefiles. | |
5567 This function ends by invoking the function(s) `makefile-mode-hook'. | |
5568 | |
5569 \\{makefile-mode-map} | |
5570 | |
5571 In the browser, use the following keys: | |
5572 | |
5573 \\{makefile-browser-map} | |
5574 | |
5575 Makefile mode can be configured by modifying the following variables: | |
5576 | |
5577 makefile-browser-buffer-name: | |
5578 Name of the macro- and target browser buffer. | |
5579 | |
5580 makefile-target-colon: | |
5581 The string that gets appended to all target names | |
5582 inserted by `makefile-insert-target'. | |
5583 \":\" or \"::\" are quite common values. | |
5584 | |
5585 makefile-macro-assign: | |
5586 The string that gets appended to all macro names | |
5587 inserted by `makefile-insert-macro'. | |
5588 The normal value should be \" = \", since this is what | |
5589 standard make expects. However, newer makes such as dmake | |
5590 allow a larger variety of different macro assignments, so you | |
5591 might prefer to use \" += \" or \" := \" . | |
5592 | |
5593 makefile-tab-after-target-colon: | |
5594 If you want a TAB (instead of a space) to be appended after the | |
5595 target colon, then set this to a non-nil value. | |
5596 | |
5597 makefile-browser-leftmost-column: | |
5598 Number of blanks to the left of the browser selection mark. | |
5599 | |
5600 makefile-browser-cursor-column: | |
5601 Column in which the cursor is positioned when it moves | |
5602 up or down in the browser. | |
5603 | |
5604 makefile-browser-selected-mark: | |
5605 String used to mark selected entries in the browser. | |
5606 | |
5607 makefile-browser-unselected-mark: | |
5608 String used to mark unselected entries in the browser. | |
5609 | |
5610 makefile-browser-auto-advance-after-selection-p: | |
5611 If this variable is set to a non-nil value the cursor | |
5612 will automagically advance to the next line after an item | |
5613 has been selected in the browser. | |
5614 | |
5615 makefile-pickup-everything-picks-up-filenames-p: | |
5616 If this variable is set to a non-nil value then | |
5617 `makefile-pickup-everything' also picks up filenames as targets | |
5618 (i.e. it calls `makefile-find-filenames-as-targets'), otherwise | |
5619 filenames are omitted. | |
5620 | |
5621 makefile-cleanup-continuations-p: | |
5622 If this variable is set to a non-nil value then makefile-mode | |
5623 will assure that no line in the file ends with a backslash | |
5624 (the continuation character) followed by any whitespace. | |
5625 This is done by silently removing the trailing whitespace, leaving | |
5626 the backslash itself intact. | |
5627 IMPORTANT: Please note that enabling this option causes makefile-mode | |
5628 to MODIFY A FILE WITHOUT YOUR CONFIRMATION when \"it seems necessary\". | |
5629 | |
5630 makefile-browser-hook: | |
5631 A function or list of functions to be called just before the | |
5632 browser is entered. This is executed in the makefile buffer. | |
5633 | |
5634 makefile-special-targets-list: | |
5635 List of special targets. You will be offered to complete | |
5636 on one of those in the minibuffer whenever you enter a `.'. | |
5637 at the beginning of a line in Makefile mode." t nil) | |
5638 | |
5639 ;;;*** | |
5640 | |
5641 ;;;*** | |
5642 | |
5643 ;;;### (autoloads nil "old-c++-mode" "modes/old-c++-mode.el" (12983 25971)) | |
5644 ;;; Generated autoloads from modes/old-c++-mode.el | |
5645 | |
5646 ;;;*** | |
5647 | |
5648 ;;;### (autoloads nil "old-c-mode" "modes/old-c-mode.el" (12983 25970)) | |
5649 ;;; Generated autoloads from modes/old-c-mode.el | |
5650 | |
5651 ;;;### (autoloads (modula-2-mode) "modula2" "modes/modula2.el" (12983 26786)) | |
5652 ;;; Generated autoloads from modes/modula2.el | |
5653 | |
5654 (autoload 'modula-2-mode "modula2" "\ | |
5655 This is a mode intended to support program development in Modula-2. | |
5656 All control constructs of Modula-2 can be reached by typing C-c | |
5657 followed by the first character of the construct. | |
5658 \\<m2-mode-map> | |
5659 \\[m2-begin] begin \\[m2-case] case | |
5660 \\[m2-definition] definition \\[m2-else] else | |
5661 \\[m2-for] for \\[m2-header] header | |
5662 \\[m2-if] if \\[m2-module] module | |
5663 \\[m2-loop] loop \\[m2-or] or | |
5664 \\[m2-procedure] procedure Control-c Control-w with | |
5665 \\[m2-record] record \\[m2-stdio] stdio | |
5666 \\[m2-type] type \\[m2-until] until | |
5667 \\[m2-var] var \\[m2-while] while | |
5668 \\[m2-export] export \\[m2-import] import | |
5669 \\[m2-begin-comment] begin-comment \\[m2-end-comment] end-comment | |
5670 \\[suspend-emacs] suspend Emacs \\[m2-toggle] toggle | |
5671 \\[m2-compile] compile \\[m2-next-error] next-error | |
5672 \\[m2-link] link | |
5673 | |
5674 `m2-indent' controls the number of spaces for each indentation. | |
5675 `m2-compile-command' holds the command to compile a Modula-2 program. | |
5676 `m2-link-command' holds the command to link a Modula-2 program." t nil) | |
5677 | |
5678 ;;;*** | |
5679 | |
5680 ;;;### (autoloads (electric-nroff-mode nroff-mode) "nroff-mode" "modes/nroff-mode.el" (12983 26788)) | |
5681 ;;; Generated autoloads from modes/nroff-mode.el | |
5682 | |
5683 (autoload 'nroff-mode "nroff-mode" "\ | |
5684 Major mode for editing text intended for nroff to format. | |
5685 \\{nroff-mode-map} | |
5686 Turning on Nroff mode runs `text-mode-hook', then `nroff-mode-hook'. | |
5687 Also, try `nroff-electric-mode', for automatically inserting | |
5688 closing requests for requests that are used in matched pairs." t nil) | |
5689 | |
5690 (autoload 'electric-nroff-mode "nroff-mode" "\ | |
5691 Toggle `nroff-electric-newline' minor mode. | |
5692 `nroff-electric-newline' forces Emacs to check for an nroff request at the | |
5693 beginning of the line, and insert the matching closing request if necessary. | |
5694 This command toggles that mode (off->on, on->off), with an argument, | |
5695 turns it on iff arg is positive, otherwise off." t nil) | |
5696 | |
5697 (defvar nroff-electric-mode nil "\ | |
5698 Non-nil if in electric-nroff minor mode.") | |
5699 | |
5700 (add-minor-mode 'nroff-electric-mode " Electric" nil nil 'electric-nroff-mode) | |
5701 | |
5702 ;;;*** | |
5703 | |
5704 ;;;### (autoloads (outl-mouse-minor-mode outl-mouse-mode) "outl-mouse" "modes/outl-mouse.el" (12988 32990)) | |
5705 ;;; Generated autoloads from modes/outl-mouse.el | |
5706 | |
5707 (autoload 'outl-mouse-mode "outl-mouse" "\ | |
5708 Calls outline-mode, with outl-mouse extensions" t nil) | |
5709 | |
5710 (autoload 'outl-mouse-minor-mode "outl-mouse" "\ | |
5711 Toggles outline-minor-mode, with outl-mouse extensions" t nil) | |
5712 | |
5713 ;;;*** | |
5714 | |
5715 ;;;### (autoloads (outline-minor-mode outline-mode) "outline" "modes/outline.el" (12983 26783)) | |
5716 ;;; Generated autoloads from modes/outline.el | |
5717 | |
5718 (defvar outline-minor-mode nil "\ | |
5719 Non-nil if using Outline mode as a minor mode of some other mode.") | |
5720 | |
5721 (make-variable-buffer-local 'outline-minor-mode) | |
5722 | |
5723 (put 'outline-minor-mode 'permanent-local t) | |
5724 | |
5725 (add-minor-mode 'outline-minor-mode " Outl") | |
5726 | |
5727 (autoload 'outline-mode "outline" "\ | |
5728 Set major mode for editing outlines with selective display. | |
5729 Headings are lines which start with asterisks: one for major headings, | |
5730 two for subheadings, etc. Lines not starting with asterisks are body lines. | |
5731 | |
5732 Body text or subheadings under a heading can be made temporarily | |
5733 invisible, or visible again. Invisible lines are attached to the end | |
5734 of the heading, so they move with it, if the line is killed and yanked | |
5735 back. A heading with text hidden under it is marked with an ellipsis (...). | |
5736 | |
5737 Commands:\\<outline-mode-map> | |
5738 \\[outline-next-visible-heading] outline-next-visible-heading move by visible headings | |
5739 \\[outline-previous-visible-heading] outline-previous-visible-heading | |
5740 \\[outline-forward-same-level] outline-forward-same-level similar but skip subheadings | |
5741 \\[outline-backward-same-level] outline-backward-same-level | |
5742 \\[outline-up-heading] outline-up-heading move from subheading to heading | |
5743 | |
5744 \\[hide-body] make all text invisible (not headings). | |
5745 \\[show-all] make everything in buffer visible. | |
5746 | |
5747 The remaining commands are used when point is on a heading line. | |
5748 They apply to some of the body or subheadings of that heading. | |
5749 \\[hide-subtree] hide-subtree make body and subheadings invisible. | |
5750 \\[show-subtree] show-subtree make body and subheadings visible. | |
5751 \\[show-children] show-children make direct subheadings visible. | |
5752 No effect on body, or subheadings 2 or more levels down. | |
5753 With arg N, affects subheadings N levels down. | |
5754 \\[hide-entry] make immediately following body invisible. | |
5755 \\[show-entry] make it visible. | |
5756 \\[hide-leaves] make body under heading and under its subheadings invisible. | |
5757 The subheadings remain visible. | |
5758 \\[show-branches] make all subheadings at all levels visible. | |
5759 | |
5760 The variable `outline-regexp' can be changed to control what is a heading. | |
5761 A line is a heading if `outline-regexp' matches something at the | |
5762 beginning of the line. The longer the match, the deeper the level. | |
5763 | |
5764 Turning on outline mode calls the value of `text-mode-hook' and then of | |
5765 `outline-mode-hook', if they are non-nil." t nil) | |
5766 | |
5767 (autoload 'outline-minor-mode "outline" "\ | |
5768 Toggle Outline minor mode. | |
5769 With arg, turn Outline minor mode on if arg is positive, off otherwise. | |
5770 See the command `outline-mode' for more information on this mode." t nil) | |
5771 | |
5772 ;;;*** | |
5773 | |
5774 ;;;### (autoloads (pascal-mode) "pascal" "modes/pascal.el" (12983 25967)) | |
5775 ;;; Generated autoloads from modes/pascal.el | |
5776 | |
5777 (autoload 'pascal-mode "pascal" "\ | |
5778 Major mode for editing Pascal code. \\<pascal-mode-map> | |
5779 TAB indents for Pascal code. Delete converts tabs to spaces as it moves back. | |
5780 | |
5781 \\[pascal-complete-word] completes the word around current point with respect to position in code | |
5782 \\[pascal-show-completions] shows all possible completions at this point. | |
5783 | |
5784 Other useful functions are: | |
5785 | |
5786 \\[pascal-mark-defun] - Mark function. | |
5787 \\[pascal-insert-block] - insert begin ... end; | |
5788 \\[pascal-star-comment] - insert (* ... *) | |
5789 \\[pascal-comment-area] - Put marked area in a comment, fixing nested comments. | |
5790 \\[pascal-uncomment-area] - Uncomment an area commented with \\[pascal-comment-area]. | |
5791 \\[pascal-beg-of-defun] - Move to beginning of current function. | |
5792 \\[pascal-end-of-defun] - Move to end of current function. | |
5793 \\[pascal-goto-defun] - Goto function prompted for in the minibuffer. | |
5794 \\[pascal-outline] - Enter pascal-outline-mode (see also pascal-outline). | |
5795 | |
5796 Variables controlling indentation/edit style: | |
5797 | |
5798 pascal-indent-level (default 3) | |
5799 Indentation of Pascal statements with respect to containing block. | |
5800 pascal-case-indent (default 2) | |
5801 Indentation for case statements. | |
5802 pascal-auto-newline (default nil) | |
5803 Non-nil means automatically newline after simcolons and the punctation mark | |
5804 after an end. | |
5805 pascal-tab-always-indent (default t) | |
5806 Non-nil means TAB in Pascal mode should always reindent the current line, | |
5807 regardless of where in the line point is when the TAB command is used. | |
5808 pascal-auto-endcomments (default t) | |
5809 Non-nil means a comment { ... } is set after the ends which ends cases and | |
5810 functions. The name of the function or case will be set between the braces. | |
5811 pascal-auto-lineup (default t) | |
5812 List of contexts where auto lineup of :'s or ='s hould be done. | |
5813 | |
5814 See also the user variables pascal-type-keywords, pascal-start-keywords and | |
5815 pascal-separator-keywords. | |
5816 | |
5817 Turning on Pascal mode calls the value of the variable pascal-mode-hook with | |
5818 no args, if that value is non-nil." t nil) | |
5819 | |
5820 ;;;*** | |
5821 | |
5822 ;;;### (autoloads (perl-mode) "perl-mode" "modes/perl-mode.el" (12983 25954)) | |
5823 ;;; Generated autoloads from modes/perl-mode.el | |
5824 | |
5825 (autoload 'perl-mode "perl-mode" "\ | |
5826 Major mode for editing Perl code. | |
5827 Expression and list commands understand all Perl brackets. | |
5828 Tab indents for Perl code. | |
5829 Comments are delimited with # ... \\n. | |
5830 Paragraphs are separated by blank lines only. | |
5831 Delete converts tabs to spaces as it moves back. | |
5832 \\{perl-mode-map} | |
5833 Variables controlling indentation style: | |
5834 perl-tab-always-indent | |
5835 Non-nil means TAB in Perl mode should always indent the current line, | |
5836 regardless of where in the line point is when the TAB command is used. | |
5837 perl-tab-to-comment | |
5838 Non-nil means that for lines which don't need indenting, TAB will | |
5839 either delete an empty comment, indent an existing comment, move | |
5840 to end-of-line, or if at end-of-line already, create a new comment. | |
5841 perl-nochange | |
5842 Lines starting with this regular expression are not auto-indented. | |
5843 perl-indent-level | |
5844 Indentation of Perl statements within surrounding block. | |
5845 The surrounding block's indentation is the indentation | |
5846 of the line on which the open-brace appears. | |
5847 perl-continued-statement-offset | |
5848 Extra indentation given to a substatement, such as the | |
5849 then-clause of an if or body of a while. | |
5850 perl-continued-brace-offset | |
5851 Extra indentation given to a brace that starts a substatement. | |
5852 This is in addition to `perl-continued-statement-offset'. | |
5853 perl-brace-offset | |
5854 Extra indentation for line if it starts with an open brace. | |
5855 perl-brace-imaginary-offset | |
5856 An open brace following other text is treated as if it were | |
5857 this far to the right of the start of its line. | |
5858 perl-label-offset | |
5859 Extra indentation for line that is a label. | |
5860 | |
5861 Various indentation styles: K&R BSD BLK GNU LW | |
5862 perl-indent-level 5 8 0 2 4 | |
5863 perl-continued-statement-offset 5 8 4 2 4 | |
5864 perl-continued-brace-offset 0 0 0 0 -4 | |
5865 perl-brace-offset -5 -8 0 0 0 | |
5866 perl-brace-imaginary-offset 0 0 4 0 0 | |
5867 perl-label-offset -5 -8 -2 -2 -2 | |
5868 | |
5869 Turning on Perl mode runs the normal hook `perl-mode-hook'." t nil) | |
5870 | |
5871 ;;;*** | |
5872 | |
5873 ;;;### (autoloads (picture-mode) "picture" "modes/picture.el" (12983 25958)) | |
5874 ;;; Generated autoloads from modes/picture.el | |
5875 | |
5876 (autoload 'picture-mode "picture" "\ | |
5877 Switch to Picture mode, in which a quarter-plane screen model is used. | |
5878 Printing characters replace instead of inserting themselves with motion | |
5879 afterwards settable by these commands: | |
5880 C-c < Move left after insertion. | |
5881 C-c > Move right after insertion. | |
5882 C-c ^ Move up after insertion. | |
5883 C-c . Move down after insertion. | |
5884 C-c ` Move northwest (nw) after insertion. | |
5885 C-c ' Move northeast (ne) after insertion. | |
5886 C-c / Move southwest (sw) after insertion. | |
5887 C-c \\ Move southeast (se) after insertion. | |
5888 The current direction is displayed in the modeline. The initial | |
5889 direction is right. Whitespace is inserted and tabs are changed to | |
5890 spaces when required by movement. You can move around in the buffer | |
5891 with these commands: | |
5892 \\[picture-move-down] Move vertically to SAME column in previous line. | |
5893 \\[picture-move-up] Move vertically to SAME column in next line. | |
5894 \\[picture-end-of-line] Move to column following last non-whitespace character. | |
5895 \\[picture-forward-column] Move right inserting spaces if required. | |
5896 \\[picture-backward-column] Move left changing tabs to spaces if required. | |
5897 C-c C-f Move in direction of current picture motion. | |
5898 C-c C-b Move in opposite direction of current picture motion. | |
5899 Return Move to beginning of next line. | |
5900 You can edit tabular text with these commands: | |
5901 M-Tab Move to column beneath (or at) next interesting character. | |
5902 `Indents' relative to a previous line. | |
5903 Tab Move to next stop in tab stop list. | |
5904 C-c Tab Set tab stops according to context of this line. | |
5905 With ARG resets tab stops to default (global) value. | |
5906 See also documentation of variable picture-tab-chars | |
5907 which defines \"interesting character\". You can manually | |
5908 change the tab stop list with command \\[edit-tab-stops]. | |
5909 You can manipulate text with these commands: | |
5910 C-d Clear (replace) ARG columns after point without moving. | |
5911 C-c C-d Delete char at point - the command normally assigned to C-d. | |
5912 \\[picture-backward-clear-column] Clear (replace) ARG columns before point, moving back over them. | |
5913 \\[picture-clear-line] Clear ARG lines, advancing over them. The cleared | |
5914 text is saved in the kill ring. | |
5915 \\[picture-open-line] Open blank line(s) beneath current line. | |
5916 You can manipulate rectangles with these commands: | |
5917 C-c C-k Clear (or kill) a rectangle and save it. | |
5918 C-c C-w Like C-c C-k except rectangle is saved in named register. | |
5919 C-c C-y Overlay (or insert) currently saved rectangle at point. | |
5920 C-c C-x Like C-c C-y except rectangle is taken from named register. | |
5921 \\[copy-rectangle-to-register] Copies a rectangle to a register. | |
5922 \\[advertised-undo] Can undo effects of rectangle overlay commands | |
5923 commands if invoked soon enough. | |
5924 You can return to the previous mode with: | |
5925 C-c C-c Which also strips trailing whitespace from every line. | |
5926 Stripping is suppressed by supplying an argument. | |
5927 | |
5928 Entry to this mode calls the value of picture-mode-hook if non-nil. | |
5929 | |
5930 Note that Picture mode commands will work outside of Picture mode, but | |
5931 they are not defaultly assigned to keys." t nil) | |
5932 | |
5933 (defalias 'edit-picture 'picture-mode) | |
5934 | |
5935 ;;;*** | |
5936 | |
5937 ;;;### (autoloads (postscript-mode) "postscript" "modes/postscript.el" (12983 25958)) | |
5938 ;;; Generated autoloads from modes/postscript.el | |
5939 | |
5940 (autoload 'postscript-mode "postscript" "\ | |
5941 Major mode for editing PostScript files. | |
5942 | |
5943 \\[ps-execute-buffer] will send the contents of the buffer to the NeWS | |
5944 server using psh(1). \\[ps-execute-region] sends the current region. | |
5945 \\[ps-shell] starts an interactive psh(1) window which will be used for | |
5946 subsequent \\[ps-execute-buffer] or \\[ps-execute-region] commands. | |
5947 | |
5948 In this mode, TAB and \\[indent-region] attempt to indent code | |
5949 based on the position of {}, [], and begin/end pairs. The variable | |
5950 ps-indent-level controls the amount of indentation used inside | |
5951 arrays and begin/end pairs. | |
5952 | |
5953 \\{ps-mode-map} | |
5954 | |
5955 \\[postscript-mode] calls the value of the variable postscript-mode-hook | |
5956 with no args, if that value is non-nil." t nil) | |
5957 | |
5958 ;;;*** | |
5959 | |
5960 ;;;### (autoloads (run-prolog inferior-prolog-mode prolog-mode) "prolog" "modes/prolog.el" (12983 26789)) | |
5961 ;;; Generated autoloads from modes/prolog.el | |
5962 | |
5963 (autoload 'prolog-mode "prolog" "\ | |
5964 Major mode for editing Prolog code for Prologs. | |
5965 Blank lines and `%%...' separate paragraphs. `%'s start comments. | |
5966 Commands: | |
5967 \\{prolog-mode-map} | |
5968 Entry to this mode calls the value of `prolog-mode-hook' | |
5969 if that value is non-nil." t nil) | |
5970 | |
5971 (autoload 'inferior-prolog-mode "prolog" "\ | |
5972 Major mode for interacting with an inferior Prolog process. | |
5973 | |
5974 The following commands are available: | |
5975 \\{inferior-prolog-mode-map} | |
5976 | |
5977 Entry to this mode calls the value of `prolog-mode-hook' with no arguments, | |
5978 if that value is non-nil. Likewise with the value of `comint-mode-hook'. | |
5979 `prolog-mode-hook' is called after `comint-mode-hook'. | |
5980 | |
5981 You can send text to the inferior Prolog from other buffers | |
5982 using the commands `send-region', `send-string' and \\[prolog-consult-region]. | |
5983 | |
5984 Commands: | |
5985 Tab indents for Prolog; with argument, shifts rest | |
5986 of expression rigidly with the current line. | |
5987 Paragraphs are separated only by blank lines and '%%'. | |
5988 '%'s start comments. | |
5989 | |
5990 Return at end of buffer sends line as input. | |
5991 Return not at end copies rest of line to end and sends it. | |
5992 \\[comint-kill-input] and \\[backward-kill-word] are kill commands, imitating normal Unix input editing. | |
5993 \\[comint-interrupt-subjob] interrupts the shell or its current subjob if any. | |
5994 \\[comint-stop-subjob] stops. \\[comint-quit-subjob] sends quit signal." t nil) | |
5995 | |
5996 (autoload 'run-prolog "prolog" "\ | |
5997 Run an inferior Prolog process, input and output via buffer *prolog*." t nil) | |
5998 | |
5999 ;;;*** | |
6000 | |
6001 ;;;### (autoloads (py-shell python-mode) "python-mode" "modes/python-mode.el" (12983 27308)) | |
6002 ;;; Generated autoloads from modes/python-mode.el | |
6003 | |
6004 (eval-when-compile (condition-case nil (progn (require 'cl) (require 'imenu)) (error nil))) | |
6005 | |
6006 (autoload 'python-mode "python-mode" "\ | |
6007 Major mode for editing Python files. | |
6008 To submit a problem report, enter `\\[py-submit-bug-report]' from a | |
6009 `python-mode' buffer. Do `\\[py-describe-mode]' for detailed | |
6010 documentation. To see what version of `python-mode' you are running, | |
6011 enter `\\[py-version]'. | |
6012 | |
6013 This mode knows about Python indentation, tokens, comments and | |
6014 continuation lines. Paragraphs are separated by blank lines only. | |
6015 | |
6016 COMMANDS | |
6017 \\{py-mode-map} | |
6018 VARIABLES | |
6019 | |
6020 py-indent-offset indentation increment | |
6021 py-block-comment-prefix comment string used by comment-region | |
6022 py-python-command shell command to invoke Python interpreter | |
6023 py-scroll-process-buffer always scroll Python process buffer | |
6024 py-temp-directory directory used for temp files (if needed) | |
6025 py-beep-if-tab-change ring the bell if tab-width is changed" t nil) | |
6026 | |
6027 (autoload 'py-shell "python-mode" "\ | |
6028 Start an interactive Python interpreter in another window. | |
6029 This is like Shell mode, except that Python is running in the window | |
6030 instead of a shell. See the `Interactive Shell' and `Shell Mode' | |
6031 sections of the Emacs manual for details, especially for the key | |
6032 bindings active in the `*Python*' buffer. | |
6033 | |
6034 See the docs for variable `py-scroll-buffer' for info on scrolling | |
6035 behavior in the process window. | |
6036 | |
6037 Warning: Don't use an interactive Python if you change sys.ps1 or | |
6038 sys.ps2 from their default values, or if you're running code that | |
6039 prints `>>> ' or `... ' at the start of a line. `python-mode' can't | |
6040 distinguish your output from Python's output, and assumes that `>>> ' | |
6041 at the start of a line is a prompt from Python. Similarly, the Emacs | |
6042 Shell mode code assumes that both `>>> ' and `... ' at the start of a | |
6043 line are Python prompts. Bad things can happen if you fool either | |
6044 mode. | |
6045 | |
6046 Warning: If you do any editing *in* the process buffer *while* the | |
6047 buffer is accepting output from Python, do NOT attempt to `undo' the | |
6048 changes. Some of the output (nowhere near the parts you changed!) may | |
6049 be lost if you do. This appears to be an Emacs bug, an unfortunate | |
6050 interaction between undo and process filters; the same problem exists in | |
6051 non-Python process buffers using the default (Emacs-supplied) process | |
6052 filter." t nil) | |
6053 | |
6054 ;;;*** | |
6055 | |
6056 ;;;### (autoloads (rexx-mode) "rexx-mode" "modes/rexx-mode.el" (12983 25971)) | |
6057 ;;; Generated autoloads from modes/rexx-mode.el | |
6058 | |
6059 (autoload 'rexx-mode "rexx-mode" "\ | |
6060 Major mode for editing REXX code. | |
6061 \\{rexx-mode-map} | |
6062 | |
6063 Variables controlling indentation style: | |
6064 rexx-indent | |
6065 The basic indentation for do-blocks. | |
6066 rexx-end-indent | |
6067 The relative offset of the \"end\" statement. 0 places it in the | |
6068 same column as the statements of the block. Setting it to the same | |
6069 value as rexx-indent places the \"end\" under the do-line. | |
6070 rexx-cont-indent | |
6071 The indention for lines following \"then\", \"else\" and \",\" | |
6072 (continued) lines. | |
6073 rexx-tab-always-indent | |
6074 Non-nil means TAB in REXX mode should always reindent the current | |
6075 line, regardless of where in the line the point is when the TAB | |
6076 command is used. | |
6077 | |
6078 If you have set rexx-end-indent to a nonzero value, you probably want to | |
6079 remap RETURN to rexx-indent-newline-indent. It makes sure that lines | |
6080 indents correctly when you press RETURN. | |
6081 | |
6082 An extensive abbrevation table consisting of all the keywords of REXX are | |
6083 supplied. Expanded keywords are converted into upper case making it | |
6084 easier to distinguish them. To use this feature the buffer must be in | |
6085 abbrev-mode. (See example below.) | |
6086 | |
6087 Turning on REXX mode calls the value of the variable rexx-mode-hook with | |
6088 no args, if that value is non-nil. | |
6089 | |
6090 For example: | |
6091 \(setq rexx-mode-hook '(lambda () | |
6092 (setq rexx-indent 4) | |
6093 (setq rexx-end-indent 4) | |
6094 (setq rexx-cont-indent 4) | |
6095 (local-set-key \"\\C-m\" 'rexx-indent-newline-indent) | |
6096 (abbrev-mode 1) | |
6097 )) | |
6098 | |
6099 will make the END aligned with the DO/SELECT. It will indent blocks and | |
6100 IF-statenents four steps and make sure that the END jumps into the | |
6101 correct position when RETURN is pressed. Finaly it will use the abbrev | |
6102 table to convert all REXX keywords into upper case." t nil) | |
6103 | |
6104 ;;;*** | |
6105 | |
6106 ;;;### (autoloads (resize-minibuffer-mode) "rsz-minibuf" "modes/rsz-minibuf.el" (12983 25967)) | |
6107 ;;; Generated autoloads from modes/rsz-minibuf.el | |
6108 | |
6109 (defvar resize-minibuffer-mode nil "\ | |
6110 *If non-`nil', resize the minibuffer so its entire contents are visible.") | |
6111 | |
6112 (defvar resize-minibuffer-window-max-height nil "\ | |
6113 *Maximum size the minibuffer window is allowed to become. | |
6114 If less than 1 or not a number, the limit is the height of the frame in | |
6115 which the active minibuffer window resides.") | |
6116 | |
6117 (defvar resize-minibuffer-window-exactly t "\ | |
6118 *If non-`nil', make minibuffer exactly the size needed to display all its contents. | |
6119 Otherwise, the minibuffer window can temporarily increase in size but | |
6120 never get smaller while it is active.") | |
6121 | |
6122 (defvar resize-minibuffer-frame nil "\ | |
6123 *If non-`nil' and the active minibuffer is the sole window in its frame, allow changing the frame height.") | |
6124 | |
6125 (defvar resize-minibuffer-frame-max-height nil "\ | |
6126 *Maximum size the minibuffer frame is allowed to become. | |
6127 If less than 1 or not a number, there is no limit.") | |
6128 | |
6129 (defvar resize-minibuffer-frame-exactly nil "\ | |
6130 *If non-`nil', make minibuffer frame exactly the size needed to display all its contents. | |
6131 Otherwise, the minibuffer frame can temporarily increase in size but | |
6132 never get smaller while it is active.") | |
6133 | |
6134 (autoload 'resize-minibuffer-mode "rsz-minibuf" "\ | |
6135 Enable or disable resize-minibuffer mode. | |
6136 A negative prefix argument disables this mode. A positive argument or | |
6137 argument of 0 enables it. | |
6138 | |
6139 When this minor mode is enabled, the minibuffer is dynamically resized to | |
6140 contain the entire region of text put in it as you type. | |
6141 | |
6142 The variable `resize-minibuffer-mode' is set to t or nil depending on | |
6143 whether this mode is active or not. | |
6144 | |
6145 The maximum height to which the minibuffer can grow is controlled by the | |
6146 variable `resize-minibuffer-window-max-height'. | |
6147 | |
6148 The variable `resize-minibuffer-window-exactly' determines whether the | |
6149 minibuffer window should ever be shrunk to make it no larger than needed to | |
6150 display its contents. | |
6151 | |
6152 When using a window system, it is possible for a minibuffer to tbe the sole | |
6153 window in a frame. Since that window is already its maximum size, the only | |
6154 way to make more text visible at once is to increase the size of the frame. | |
6155 The variable `resize-minibuffer-frame' controls whether this should be | |
6156 done. The variables `resize-minibuffer-frame-max-height' and | |
6157 `resize-minibuffer-frame-exactly' are analogous to their window | |
6158 counterparts." t nil) | |
6159 | |
6160 ;;;*** | |
6161 | |
6162 ;;;### (autoloads (scheme-mode) "scheme" "modes/scheme.el" (12983 26789)) | |
6163 ;;; Generated autoloads from modes/scheme.el | |
6164 | |
6165 (autoload 'scheme-mode "scheme" "\ | |
6166 Major mode for editing Scheme code. | |
6167 Editing commands are similar to those of lisp-mode. | |
6168 | |
6169 In addition, if an inferior Scheme process is running, some additional | |
6170 commands will be defined, for evaluating expressions and controlling | |
6171 the interpreter, and the state of the process will be displayed in the | |
6172 modeline of all Scheme buffers. The names of commands that interact | |
6173 with the Scheme process start with \"xscheme-\". For more information | |
6174 see the documentation for xscheme-interaction-mode. | |
6175 | |
6176 Commands: | |
6177 Delete converts tabs to spaces as it moves back. | |
6178 Blank lines separate paragraphs. Semicolons start comments. | |
6179 \\{scheme-mode-map} | |
6180 Entry to this mode calls the value of scheme-mode-hook | |
6181 if that value is non-nil." t nil) | |
6182 | |
6183 ;;;*** | |
6184 | |
6185 ;;;### (autoloads (scribe-mode) "scribe" "modes/scribe.el" (12983 25960)) | |
6186 ;;; Generated autoloads from modes/scribe.el | |
6187 | |
6188 (autoload 'scribe-mode "scribe" "\ | |
6189 Major mode for editing files of Scribe (a text formatter) source. | |
6190 Scribe-mode is similar text-mode, with a few extra commands added. | |
6191 \\{scribe-mode-map} | |
6192 | |
6193 Interesting variables: | |
6194 | |
6195 scribe-fancy-paragraphs | |
6196 Non-nil makes Scribe mode use a different style of paragraph separation. | |
6197 | |
6198 scribe-electric-quote | |
6199 Non-nil makes insert of double quote use `` or '' depending on context. | |
6200 | |
6201 scribe-electric-parenthesis | |
6202 Non-nil makes an open-parenthesis char (one of `([<{') | |
6203 automatically insert its close if typed after an @Command form." t nil) | |
6204 | |
6205 ;;;*** | |
6206 | |
6207 ;;;### (autoloads (mail-other-frame mail-other-window mail mail-mode) "sendmail" "modes/sendmail.el" (12983 25948)) | |
6208 ;;; Generated autoloads from modes/sendmail.el | |
6209 | |
6210 (defvar mail-from-style 'angles "\ | |
6211 *Specifies how \"From:\" fields look. | |
6212 | |
6213 If `nil', they contain just the return address like: | |
6214 king@grassland.com | |
6215 If `parens', they look like: | |
6216 king@grassland.com (Elvis Parsley) | |
6217 If `angles', they look like: | |
6218 Elvis Parsley <king@grassland.com>") | |
6219 | |
6220 (defvar mail-self-blind nil "\ | |
6221 Non-nil means insert BCC to self in messages to be sent. | |
6222 This is done when the message is initialized, | |
6223 so you can remove or alter the BCC field to override the default.") | |
6224 | |
6225 (defvar mail-interactive nil "\ | |
6226 Non-nil means when sending a message wait for and display errors. | |
6227 nil means let mailer mail back a message to report errors.") | |
6228 | |
6229 (defvar mail-dir nil "\ | |
6230 *Default directory for saving messages.") | |
6231 | |
6232 (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-") "\\|") "\\)")) "\ | |
6233 *Gubbish header fields one would rather not see.") | |
6234 | |
6235 (defvar mail-yank-ignored-headers (purecopy (concat rmail-ignored-headers "\\|" "^\\(" (mapconcat 'identity '("Resent-To:" "Resent-By:" "Resent-CC:" "To:" "Subject:" "In-Reply-To:") "\\|") "\\)")) "\ | |
6236 Delete these headers from old message when it's inserted in a reply.") | |
6237 | |
6238 (defvar send-mail-function 'sendmail-send-it "\ | |
6239 Function to call to send the current buffer as mail. | |
6240 The headers should be delimited by a line whose contents | |
6241 match the variable `mail-header-separator'.") | |
6242 | |
6243 (defvar mail-header-separator (purecopy "--text follows this line--") "\ | |
6244 *Line used to separate headers from text in messages being composed.") | |
6245 | |
6246 (defvar mail-archive-file-name nil "\ | |
6247 *Name of file to write all outgoing messages in, or nil for none. | |
6248 This can be an inbox file or an Rmail file.") | |
6249 | |
6250 (defvar mail-default-reply-to nil "\ | |
6251 *Address to insert as default Reply-to field of outgoing messages. | |
6252 If nil, it will be initialized from the REPLYTO environment variable | |
6253 when you first send mail.") | |
6254 | |
6255 (defvar mail-alias-file nil "\ | |
6256 *If non-nil, the name of a file to use instead of `/usr/lib/aliases'. | |
6257 This file defines aliases to be expanded by the mailer; this is a different | |
6258 feature from that of defining aliases in `.mailrc' to be expanded in Emacs. | |
6259 This variable has no effect unless your system uses sendmail as its mailer.") | |
6260 | |
6261 (defvar mail-yank-prefix "> " "\ | |
6262 *Prefix insert on lines of yanked message being replied to. | |
6263 nil means use indentation.") | |
6264 | |
6265 (defvar mail-signature nil "\ | |
6266 *Text inserted at end of mail buffer when a message is initialized. | |
6267 If t, it means to insert the contents of the file `mail-signature-file'.") | |
6268 | |
6269 (autoload 'mail-mode "sendmail" "\ | |
6270 Major mode for editing mail to be sent. | |
6271 Like Text Mode but with these additional commands: | |
6272 C-c C-s mail-send (send the message) C-c C-c mail-send-and-exit | |
6273 C-c C-f move to a header field (and create it if there isn't): | |
6274 C-c C-f C-t move to To: C-c C-f C-s move to Subj: | |
6275 C-c C-f C-b move to BCC: C-c C-f C-c move to CC: | |
6276 C-c C-f C-f move to FCC: C-c C-f C-r move to Reply-To: | |
6277 C-c C-t mail-text (move to beginning of message text). | |
6278 C-c C-w mail-signature (insert `mail-signature-file' file). | |
6279 C-c C-y mail-yank-original (insert current message, in Rmail). | |
6280 C-c C-q mail-fill-yanked-message (fill what was yanked). | |
6281 C-c C-v mail-sent-via (add a sent-via field for each To or CC)." t nil) | |
6282 | |
6283 (autoload 'mail "sendmail" "\ | |
6284 Edit a message to be sent. Prefix arg means resume editing (don't erase). | |
6285 When this function returns, the buffer `*mail*' is selected. | |
6286 The value is t if the message was newly initialized; otherwise, nil. | |
6287 | |
6288 Optionally, the signature file `mail-signature-file' can be inserted at the | |
6289 end; see the variable `mail-signature'. | |
6290 | |
6291 \\<mail-mode-map> | |
6292 While editing message, type \\[mail-send-and-exit] to send the message and exit. | |
6293 | |
6294 Various special commands starting with C-c are available in sendmail mode | |
6295 to move to message header fields: | |
6296 \\{mail-mode-map} | |
6297 | |
6298 The variable `mail-signature' controls whether the signature file | |
6299 `mail-signature-file' is inserted immediately. | |
6300 | |
6301 If `mail-signature' is nil, use \\[mail-signature] to insert the | |
6302 signature in `mail-signature-file'. | |
6303 | |
6304 If `mail-self-blind' is non-nil, a BCC to yourself is inserted | |
6305 when the message is initialized. | |
6306 | |
6307 If `mail-default-reply-to' is non-nil, it should be an address (a string); | |
6308 a Reply-to: field with that address is inserted. | |
6309 | |
6310 If `mail-archive-file-name' is non-nil, an FCC field with that file name | |
6311 is inserted. | |
6312 | |
6313 The normal hook `mail-setup-hook' is run after the message is | |
6314 initialized. It can add more default fields to the message. | |
6315 | |
6316 When calling from a program, the first argument if non-nil says | |
6317 not to erase the existing contents of the `*mail*' buffer. | |
6318 | |
6319 The second through fifth arguments, | |
6320 TO, SUBJECT, IN-REPLY-TO and CC, specify if non-nil | |
6321 the initial contents of those header fields. | |
6322 These arguments should not have final newlines. | |
6323 The sixth argument REPLYBUFFER is a buffer whose contents | |
6324 should be yanked if the user types C-c C-y. | |
6325 The seventh argument ACTIONS is a list of actions to take | |
6326 if/when the message is sent. Each action looks like (FUNCTION . ARGS); | |
6327 when the message is sent, we apply FUNCTION to ARGS. | |
6328 This is how Rmail arranges to mark messages `answered'." t nil) | |
6329 | |
6330 (autoload 'mail-other-window "sendmail" "\ | |
6331 Like `mail' command, but display mail buffer in another window." t nil) | |
6332 | |
6333 (autoload 'mail-other-frame "sendmail" "\ | |
6334 Like `mail' command, but display mail buffer in another frame." t nil) | |
6335 | |
6336 (define-key ctl-x-map "m" 'mail) | |
6337 | |
6338 (define-key ctl-x-4-map "m" 'mail-other-window) | |
6339 | |
6340 (define-key ctl-x-5-map "m" 'mail-other-frame) | |
6341 | |
6342 (add-hook 'same-window-buffer-names "*mail*") | |
6343 | |
6344 ;;;*** | |
6345 | |
6346 ;;;### (autoloads (sh-mode) "sh-script" "modes/sh-script.el" (12983 26797)) | |
6347 ;;; Generated autoloads from modes/sh-script.el | |
6348 | |
6349 (put 'sh-mode 'mode-class 'special) | |
6350 | |
6351 (autoload 'sh-mode "sh-script" "\ | |
6352 Major mode for editing shell scripts. | |
6353 This mode works for many shells, since they all have roughly the same syntax, | |
6354 as far as commands, arguments, variables, pipes, comments etc. are concerned. | |
6355 Unless the file's magic number indicates the shell, your usual shell is | |
6356 assumed. Since filenames rarely give a clue, they are not further analyzed. | |
6357 | |
6358 This mode adapts to the variations between shells (see `sh-set-shell') by | |
6359 means of an inheritance based feature lookup (see `sh-feature'). This | |
6360 mechanism applies to all variables (including skeletons) that pertain to | |
6361 shell-specific features. | |
6362 | |
6363 The default style of this mode is that of Rosenblatt's Korn shell book. | |
6364 The syntax of the statements varies with the shell being used. The | |
6365 following commands are available, based on the current shell's syntax: | |
6366 | |
6367 \\[sh-case] case statement | |
6368 \\[sh-for] for loop | |
6369 \\[sh-function] function definition | |
6370 \\[sh-if] if statement | |
6371 \\[sh-indexed-loop] indexed loop from 1 to n | |
6372 \\[sh-while-getopts] while getopts loop | |
6373 \\[sh-repeat] repeat loop | |
6374 \\[sh-select] select loop | |
6375 \\[sh-until] until loop | |
6376 \\[sh-while] while loop | |
6377 | |
6378 \\[backward-delete-char-untabify] Delete backward one position, even if it was a tab. | |
6379 \\[sh-newline-and-indent] Delete unquoted space and indent new line same as this one. | |
6380 \\[sh-end-of-command] Go to end of successive commands. | |
6381 \\[sh-beginning-of-command] Go to beginning of successive commands. | |
6382 \\[sh-set-shell] Set this buffer's shell, and maybe its magic number. | |
6383 \\[sh-execute-region] Have optional header and region be executed in a subshell. | |
6384 | |
6385 \\[sh-maybe-here-document] Without prefix, following an unquoted < inserts here document. | |
6386 {, (, [, ', \", ` | |
6387 Unless quoted with \\, insert the pairs {}, (), [], or '', \"\", ``. | |
6388 | |
6389 If you generally program a shell different from your login shell you can | |
6390 set `sh-shell-file' accordingly. If your shell's file name doesn't correctly | |
6391 indicate what shell it is use `sh-alias-alist' to translate. | |
6392 | |
6393 If your shell gives error messages with line numbers, you can use \\[executable-interpret] | |
6394 with your script for an edit-interpret-debug cycle." t nil) | |
6395 | |
6396 (defalias 'shell-script-mode 'sh-mode) | |
6397 | |
6398 ;;;*** | |
6399 | |
6400 ;;;*** | |
6401 | |
6402 ;;;### (autoloads nil "simula" "modes/simula.el" (12983 25961)) | |
6403 ;;; Generated autoloads from modes/simula.el | |
6404 | |
6405 ;;;### (autoloads (tcl-help-on-word inferior-tcl tcl-mode) "tcl" "modes/tcl.el" (12983 26786)) | |
6406 ;;; Generated autoloads from modes/tcl.el | |
6407 | |
6408 (autoload 'tcl-mode "tcl" "\ | |
6409 Major mode for editing Tcl code. | |
6410 Expression and list commands understand all Tcl brackets. | |
6411 Tab indents for Tcl code. | |
6412 Paragraphs are separated by blank lines only. | |
6413 Delete converts tabs to spaces as it moves back. | |
6414 | |
6415 Variables controlling indentation style: | |
6416 tcl-indent-level | |
6417 Indentation of Tcl statements within surrounding block. | |
6418 tcl-continued-indent-level | |
6419 Indentation of continuation line relative to first line of command. | |
6420 | |
6421 Variables controlling user interaction with mode (see variable | |
6422 documentation for details): | |
6423 tcl-tab-always-indent | |
6424 Controls action of TAB key. | |
6425 tcl-auto-newline | |
6426 Non-nil means automatically newline before and after braces, brackets, | |
6427 and semicolons inserted in Tcl code. | |
6428 tcl-electric-hash-style | |
6429 Controls action of `#' key. | |
6430 tcl-use-hairy-comment-detector | |
6431 If t, use more complicated, but slower, comment detector. | |
6432 This variable is only used in GNU Emacs 19. | |
6433 tcl-use-smart-word-finder | |
6434 If not nil, use a smarter, Tcl-specific way to find the current | |
6435 word when looking up help on a Tcl command. | |
6436 | |
6437 Turning on Tcl mode calls the value of the variable `tcl-mode-hook' | |
6438 with no args, if that value is non-nil. Read the documentation for | |
6439 `tcl-mode-hook' to see what kinds of interesting hook functions | |
6440 already exist. | |
6441 | |
6442 Commands: | |
6443 \\{tcl-mode-map}" t nil) | |
6444 | |
6445 (autoload 'inferior-tcl "tcl" "\ | |
6446 Run inferior Tcl process. | |
6447 Prefix arg means enter program name interactively. | |
6448 See documentation for function `inferior-tcl-mode' for more information." t nil) | |
6449 | |
6450 (autoload 'tcl-help-on-word "tcl" "\ | |
6451 Get help on Tcl command. Default is word at point. | |
6452 Prefix argument means invert sense of `tcl-use-smart-word-finder'." t nil) | |
6453 | |
6454 ;;;*** | |
6455 | |
6456 ;;;### (autoloads (latex-mode plain-tex-mode tex-mode) "tex-mode" "modes/tex-mode.el" (12983 27302)) | |
6457 ;;; Generated autoloads from modes/tex-mode.el | |
6458 | |
6459 (autoload 'tex-mode "tex-mode" "\ | |
6460 Major mode for editing files of input for TeX, LaTeX, or SliTeX. | |
6461 Tries to determine (by looking at the beginning of the file) whether | |
6462 this file is for plain TeX, LaTeX, or SliTeX and calls plain-tex-mode, | |
6463 latex-mode, or slitex-mode, respectively. If it cannot be determined, | |
6464 such as if there are no commands in the file, the value of tex-default-mode | |
6465 is used." t nil) | |
6466 | |
6467 (fset 'TeX-mode 'tex-mode) | |
6468 | |
6469 (fset 'LaTeX-mode 'latex-mode) | |
6470 | |
6471 (autoload 'plain-tex-mode "tex-mode" "\ | |
6472 Major mode for editing files of input for plain TeX. | |
6473 Makes $ and } display the characters they match. | |
6474 Makes \" insert `` when it seems to be the beginning of a quotation, | |
6475 and '' when it appears to be the end; it inserts \" only after a \\. | |
6476 | |
6477 Use \\[tex-region] to run TeX on the current region, plus a \"header\" | |
6478 copied from the top of the file (containing macro definitions, etc.), | |
6479 running TeX under a special subshell. \\[tex-buffer] does the whole buffer. | |
6480 \\[tex-file] saves the buffer and then processes the file. | |
6481 \\[tex-print] prints the .dvi file made by any of these. | |
6482 \\[tex-view] previews the .dvi file made by any of these. | |
6483 \\[tex-bibtex-file] runs bibtex on the file of the current buffer. | |
6484 | |
6485 Use \\[validate-tex-buffer] to check buffer for paragraphs containing | |
6486 mismatched $'s or braces. | |
6487 | |
6488 Special commands: | |
6489 \\{tex-mode-map} | |
6490 | |
6491 Mode variables: | |
6492 tex-run-command | |
6493 Command string used by \\[tex-region] or \\[tex-buffer]. | |
6494 tex-directory | |
6495 Directory in which to create temporary files for TeX jobs | |
6496 run by \\[tex-region] or \\[tex-buffer]. | |
6497 tex-dvi-print-command | |
6498 Command string used by \\[tex-print] to print a .dvi file. | |
6499 tex-alt-dvi-print-command | |
6500 Alternative command string used by \\[tex-print] (when given a prefix | |
6501 argument) to print a .dvi file. | |
6502 tex-dvi-view-command | |
6503 Command string used by \\[tex-view] to preview a .dvi file. | |
6504 tex-show-queue-command | |
6505 Command string used by \\[tex-show-print-queue] to show the print | |
6506 queue that \\[tex-print] put your job on. | |
6507 | |
6508 Entering Plain-tex mode calls the value of text-mode-hook, then the value of | |
6509 tex-mode-hook, and then the value of plain-tex-mode-hook. When the special | |
6510 subshell is initiated, the value of tex-shell-hook is called." t nil) | |
6511 | |
6512 (fset 'plain-TeX-mode 'plain-tex-mode) | |
6513 | |
6514 (autoload 'latex-mode "tex-mode" "\ | |
6515 Major mode for editing files of input for LaTeX. | |
6516 Makes $ and } display the characters they match. | |
6517 Makes \" insert `` when it seems to be the beginning of a quotation, | |
6518 and '' when it appears to be the end; it inserts \" only after a \\. | |
6519 | |
6520 Use \\[tex-region] to run LaTeX on the current region, plus the preamble | |
6521 copied from the top of the file (containing \\documentstyle, etc.), | |
6522 running LaTeX under a special subshell. \\[tex-buffer] does the whole buffer. | |
6523 \\[tex-file] saves the buffer and then processes the file. | |
6524 \\[tex-print] prints the .dvi file made by any of these. | |
6525 \\[tex-view] previews the .dvi file made by any of these. | |
6526 \\[tex-bibtex-file] runs bibtex on the file of the current buffer. | |
6527 | |
6528 Use \\[validate-tex-buffer] to check buffer for paragraphs containing | |
6529 mismatched $'s or braces. | |
6530 | |
6531 Special commands: | |
6532 \\{tex-mode-map} | |
6533 | |
6534 Mode variables: | |
6535 latex-run-command | |
6536 Command string used by \\[tex-region] or \\[tex-buffer]. | |
6537 tex-directory | |
6538 Directory in which to create temporary files for LaTeX jobs | |
6539 run by \\[tex-region] or \\[tex-buffer]. | |
6540 tex-dvi-print-command | |
6541 Command string used by \\[tex-print] to print a .dvi file. | |
6542 tex-alt-dvi-print-command | |
6543 Alternative command string used by \\[tex-print] (when given a prefix | |
6544 argument) to print a .dvi file. | |
6545 tex-dvi-view-command | |
6546 Command string used by \\[tex-view] to preview a .dvi file. | |
6547 tex-show-queue-command | |
6548 Command string used by \\[tex-show-print-queue] to show the print | |
6549 queue that \\[tex-print] put your job on. | |
6550 | |
6551 Entering Latex mode calls the value of text-mode-hook, then the value of | |
6552 tex-mode-hook, and then the value of latex-mode-hook. When the special | |
6553 subshell is initiated, the value of tex-shell-hook is called." t nil) | |
6554 | |
6555 ;;;*** | |
6556 | |
6557 ;;;### (autoloads (texinfo-mode) "texinfo" "modes/texinfo.el" (12983 25964)) | |
6558 ;;; Generated autoloads from modes/texinfo.el | |
6559 | |
6560 (autoload 'texinfo-mode "texinfo" "\ | |
6561 Major mode for editing Texinfo files. | |
6562 | |
6563 It has these extra commands: | |
6564 \\{texinfo-mode-map} | |
6565 | |
6566 These are files that are used as input for TeX to make printed manuals | |
6567 and also to be turned into Info files with \\[makeinfo-buffer] or | |
6568 the `makeinfo' program. These files must be written in a very restricted and | |
6569 modified version of TeX input format. | |
6570 | |
6571 Editing commands are like text-mode except that the syntax table is | |
6572 set up so expression commands skip Texinfo bracket groups. To see | |
6573 what the Info version of a region of the Texinfo file will look like, | |
6574 use \\[makeinfo-region], which runs `makeinfo' on the current region. | |
6575 | |
6576 You can show the structure of a Texinfo file with \\[texinfo-show-structure]. | |
6577 This command shows the structure of a Texinfo file by listing the | |
6578 lines with the @-sign commands for @chapter, @section, and the like. | |
6579 These lines are displayed in another window called the *Occur* window. | |
6580 In that window, you can position the cursor over one of the lines and | |
6581 use \\[occur-mode-goto-occurrence], to jump to the corresponding spot | |
6582 in the Texinfo file. | |
6583 | |
6584 In addition, Texinfo mode provides commands that insert various | |
6585 frequently used @-sign commands into the buffer. You can use these | |
6586 commands to save keystrokes. And you can insert balanced braces with | |
6587 \\[texinfo-insert-braces] and later use the command \\[up-list] to | |
6588 move forward past the closing brace. | |
6589 | |
6590 Also, Texinfo mode provides functions for automatically creating or | |
6591 updating menus and node pointers. These functions | |
6592 | |
6593 * insert the `Next', `Previous' and `Up' pointers of a node, | |
6594 * insert or update the menu for a section, and | |
6595 * create a master menu for a Texinfo source file. | |
6596 | |
6597 Here are the functions: | |
6598 | |
6599 texinfo-update-node \\[texinfo-update-node] | |
6600 texinfo-every-node-update \\[texinfo-every-node-update] | |
6601 texinfo-sequential-node-update | |
6602 | |
6603 texinfo-make-menu \\[texinfo-make-menu] | |
6604 texinfo-all-menus-update \\[texinfo-all-menus-update] | |
6605 texinfo-master-menu | |
6606 | |
6607 texinfo-indent-menu-description (column &optional region-p) | |
6608 | |
6609 The `texinfo-column-for-description' variable specifies the column to | |
6610 which menu descriptions are indented. | |
6611 | |
6612 Passed an argument (a prefix argument, if interactive), the | |
6613 `texinfo-update-node' and `texinfo-make-menu' functions do their jobs | |
6614 in the region. | |
6615 | |
6616 To use the updating commands, you must structure your Texinfo file | |
6617 hierarchically, such that each `@node' line, with the exception of the | |
6618 Top node, is accompanied by some kind of section line, such as an | |
6619 `@chapter' or `@section' line. | |
6620 | |
6621 If the file has a `top' node, it must be called `top' or `Top' and | |
6622 be the first node in the file. | |
6623 | |
6624 Entering Texinfo mode calls the value of text-mode-hook, and then the | |
6625 value of texinfo-mode-hook." t nil) | |
6626 | |
6627 ;;;*** | |
6628 | |
6629 ;;;*** | |
6630 | |
6631 ;;;*** | |
6632 | |
6633 ;;;### (autoloads nil "text-mode" "modes/text-mode.el" (12983 26789)) | |
6634 ;;; Generated autoloads from modes/text-mode.el | |
6635 | |
6636 ;;;### (autoloads (2C-split 2C-associate-buffer 2C-two-columns) "two-column" "modes/two-column.el" (12983 27305)) | |
6637 ;;; Generated autoloads from modes/two-column.el | |
6638 | |
6639 (autoload '2C-command "two-column" () t 'keymap) | |
6640 | |
6641 (autoload '2C-two-columns "two-column" "\ | |
6642 Split current window vertically for two-column editing. | |
6643 When called the first time, associates a buffer with the current | |
6644 buffer in two-column minor mode (see \\[describe-mode] ). | |
6645 Runs `2C-other-buffer-hook' in the new buffer. | |
6646 When called again, restores the screen layout with the current buffer | |
6647 first and the associated buffer to it's right." t nil) | |
6648 | |
6649 (autoload '2C-associate-buffer "two-column" "\ | |
6650 Associate another buffer with this one in two-column minor mode. | |
6651 Can also be used to associate a just previously visited file, by | |
6652 accepting the proposed default buffer. | |
6653 | |
6654 \(See \\[describe-mode] .)" t nil) | |
6655 | |
6656 (autoload '2C-split "two-column" "\ | |
6657 Split a two-column text at point, into two buffers in two-column minor mode. | |
6658 Point becomes the local value of `2C-window-width'. Only lines that | |
6659 have the ARG same preceding characters at that column get split. The | |
6660 ARG preceding characters without any leading whitespace become the local | |
6661 value for `2C-separator'. This way lines that continue across both | |
6662 columns remain untouched in the first buffer. | |
6663 | |
6664 This function can be used with a prototype line, to set up things. You | |
6665 write the first line of each column and then split that line. E.g.: | |
6666 | |
6667 First column's text sSs Second column's text | |
6668 \\___/\\ | |
6669 / \\ | |
6670 5 character Separator You type M-5 \\[2C-split] with the point here. | |
6671 | |
6672 \(See \\[describe-mode] .)" t nil) | |
6673 | |
6674 ;;;*** | |
6675 | |
6676 ;;;### (autoloads (vhdl-mode) "vhdl-mode" "modes/vhdl-mode.el" (12997 28790)) | |
6677 ;;; Generated autoloads from modes/vhdl-mode.el | |
6678 | |
6679 (autoload 'vhdl-mode "vhdl-mode" "\ | |
6680 Major mode for editing VHDL code. | |
6681 vhdl-mode $Revision: 1.2 $ | |
6682 To submit a problem report, enter `\\[vhdl-submit-bug-report]' from a | |
6683 vhdl-mode buffer. This automatically sets up a mail buffer with version | |
6684 information already added. You just need to add a description of the | |
6685 problem, including a reproducable test case and send the message. | |
6686 | |
6687 Note that the details of configuring vhdl-mode will soon be moved to the | |
6688 accompanying texinfo manual. Until then, please read the README file | |
6689 that came with the vhdl-mode distribution. | |
6690 | |
6691 The hook variable `vhdl-mode-hook' is run with no args, if that value is | |
6692 bound and has a non-nil value. | |
6693 | |
6694 Key bindings: | |
6695 \\{vhdl-mode-map}" t nil) | |
6696 | |
6697 ;;;*** | |
6698 | |
6699 ;;;### (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" (12983 25964)) | |
6700 ;;; Generated autoloads from modes/view-less.el | |
6701 | |
6702 (autoload 'view-file "view-less" "\ | |
6703 Find FILE, enter view mode. With prefix arg OTHER-P, use other window." t nil) | |
6704 | |
6705 (autoload 'view-buffer "view-less" "\ | |
6706 Switch to BUF, enter view mode. With prefix arg use other window." t nil) | |
6707 | |
6708 (autoload 'view-file-other-window "view-less" "\ | |
6709 Find FILE in other window, and enter view mode." t nil) | |
6710 | |
6711 (autoload 'view-buffer-other-window "view-less" "\ | |
6712 Switch to BUFFER in another window, and enter view mode." t nil) | |
6713 | |
6714 (autoload 'view-minor-mode "view-less" "\ | |
6715 Minor mode for viewing text, with bindings like `less'. | |
6716 Commands are: | |
6717 \\<view-minor-mode-map> | |
6718 0..9 prefix args | |
6719 - prefix minus | |
6720 \\[scroll-up] page forward | |
6721 \\[scroll-down] page back | |
6722 \\[view-scroll-lines-up] scroll prefix-arg lines forward, default 1. | |
6723 \\[view-scroll-lines-down] scroll prefix-arg lines backward, default 1. | |
6724 \\[view-scroll-some-lines-down] scroll prefix-arg lines backward, default 10. | |
6725 \\[view-scroll-some-lines-up] scroll prefix-arg lines forward, default 10. | |
6726 \\[what-line] print line number | |
6727 \\[view-mode-describe] print this help message | |
6728 \\[view-search-forward] regexp search, uses previous string if you just hit RET | |
6729 \\[view-search-backward] as above but searches backward | |
6730 \\[view-repeat-search] repeat last search | |
6731 \\[view-goto-line] goto line prefix-arg, default 1 | |
6732 \\[view-last-windowful] goto line prefix-arg, default last line | |
6733 \\[view-goto-percent] goto a position by percentage | |
6734 \\[toggle-truncate-lines] toggle truncate-lines | |
6735 \\[view-file] view another file | |
6736 \\[view-buffer] view another buffer | |
6737 \\[view-cleanup-backspaces] cleanup backspace constructions | |
6738 \\[shell-command] execute a shell command | |
6739 \\[shell-command-on-region] execute a shell command with the region as input | |
6740 \\[view-quit] exit view-mode, and bury the current buffer. | |
6741 | |
6742 If invoked with the optional (prefix) arg non-nil, view-mode cleans up | |
6743 backspace constructions. | |
6744 | |
6745 More precisely: | |
6746 \\{view-minor-mode-map}" t nil) | |
6747 | |
6748 (autoload 'view-mode "view-less" "\ | |
6749 View the current buffer using view-minor-mode. This exists to be 99.9% | |
6750 compatible with the implementations of `view-mode' in view.el and older | |
6751 versions of view-less.el." t nil) | |
6752 | |
6753 (autoload 'view-major-mode "view-less" "\ | |
6754 View the current buffer using view-mode, as a major mode. | |
6755 This function has a nonstandard name because `view-mode' is wrongly | |
6756 named but is like this for compatibility reasons." t nil) | |
6757 | |
6758 (autoload 'auto-view-mode "view-less" "\ | |
6759 If the file of the current buffer is not writable, call view-mode. | |
6760 This is meant to be added to `find-file-hooks'." nil nil) | |
6761 | |
6762 ;;;*** | |
6763 | |
6764 ;;;*** | |
6765 | |
6766 ;;;*** | |
6767 | |
6768 ;;;### (autoloads nil "view" "modes/view.el" (12983 26787)) | |
6769 ;;; Generated autoloads from modes/view.el | |
6770 | |
6771 ;;;### (autoloads (vrml-mode) "vrml-mode" "modes/vrml-mode.el" (12983 26796)) | |
6772 ;;; Generated autoloads from modes/vrml-mode.el | |
6773 | |
6774 (autoload 'vrml-mode "vrml-mode" "\ | |
6775 Major mode for editing VRML code. | |
6776 Expression and list commands understand all VRML brackets. | |
6777 Tab indents for VRML code. | |
6778 Paragraphs are separated by blank lines only. | |
6779 Delete converts tabs to spaces as it moves back. | |
6780 | |
6781 Variables controlling indentation style: | |
6782 vrml-indent-level | |
6783 Indentation of VRML statements within surrounding block. | |
6784 | |
6785 Variables controlling user interaction with mode (see variable | |
6786 documentation for details): | |
6787 vrml-tab-always-indent | |
6788 Controls action of TAB key. | |
6789 vrml-auto-newline | |
6790 Non-nil means automatically newline before and after braces | |
6791 inserted in VRML code. | |
6792 | |
6793 Turning on VRML mode calls the value of the variable `vrml-mode-hook' | |
6794 with no args, if that value is non-nil. Read the documentation for | |
6795 `vrml-mode-hook' to see what kinds of interesting hook functions | |
6796 already exist. | |
6797 | |
6798 Commands: | |
6799 \\{vrml-mode-map}" t nil) | |
6800 | |
6801 ;;;*** | |
6802 | |
6803 ;;;### (autoloads (xpm-mode) "xpm-mode" "modes/xpm-mode.el" (12983 27308)) | |
6804 ;;; Generated autoloads from modes/xpm-mode.el | |
6805 | |
6806 (autoload 'xpm-mode "xpm-mode" "\ | |
6807 Treat the current buffer as an xpm file and colorize it. | |
6808 | |
6809 Shift-button-1 lets you paint by dragging the mouse. Shift-button-1 on a | |
6810 color definition line will change the current painting color to that line's | |
6811 value. | |
6812 | |
6813 Characters inserted from the keyboard will NOT be colored properly yet. | |
6814 Use the mouse, or do xpm-init (\\[xpm-init]) after making changes. | |
6815 | |
6816 \\[xpm-add-color] Add a new color, prompting for character and value | |
6817 \\[xpm-show-image] show the current image at the top of the buffer | |
6818 \\[xpm-parse-color] parse the current line's color definition and add | |
6819 it to the color table. Provided as a means of changing colors. | |
6820 XPM minor mode bindings: | |
6821 \\{xpm-mode-map}" t nil) | |
6822 | |
6823 ;;;*** | |
6824 | |
6825 ;;;*** | |
6826 | |
6827 ;;;*** | |
6828 | |
6829 ;;;*** | |
6830 | |
6831 ;;;### (autoloads nil "mu-bbdb" "mu/mu-bbdb.el" (12996 50654)) | |
6832 ;;; Generated autoloads from mu/mu-bbdb.el | |
6833 | |
6834 ;;;*** | |
6835 | |
6836 ;;;### (autoloads nil "mu-cite" "mu/mu-cite.el" (12996 50654)) | |
6837 ;;; Generated autoloads from mu/mu-cite.el | |
6838 | |
6839 ;;;*** | |
6840 | |
6841 ;;;### (autoloads nil "std11-parse" "mu/std11-parse.el" (12996 50654)) | |
6842 ;;; Generated autoloads from mu/std11-parse.el | |
6843 | |
6844 ;;;*** | |
6845 | |
6846 ;;;### (autoloads nil "std11" "mu/std11.el" (12996 50654)) | |
6847 ;;; Generated autoloads from mu/std11.el | |
6848 | |
6849 ;;;### (autoloads nil "tl-822" "mu/tl-822.el" (12988 32993)) | |
6850 ;;; Generated autoloads from mu/tl-822.el | |
6851 | |
6852 ;;;*** | |
6853 | |
6854 ;;;### (autoloads nil "ns-init" "ns/ns-init.el" (12983 26215)) | |
6855 ;;; Generated autoloads from ns/ns-init.el | |
6856 | |
6857 ;;;*** | |
6858 | |
6859 ;;;### (autoloads nil "br-c++-ft" "oobr/br-c++-ft.el" (12983 26199)) | |
6860 ;;; Generated autoloads from oobr/br-c++-ft.el | |
6861 | |
6862 ;;;*** | |
6863 | |
6864 ;;;### (autoloads nil "br-c++" "oobr/br-c++.el" (12983 26200)) | |
6865 ;;; Generated autoloads from oobr/br-c++.el | |
6866 | |
6867 ;;;*** | |
6868 | |
6869 ;;;### (autoloads nil "br-c-ft" "oobr/br-c-ft.el" (12983 26207)) | |
6870 ;;; Generated autoloads from oobr/br-c-ft.el | |
6871 | |
6872 ;;;*** | |
6873 | |
6874 ;;;### (autoloads nil "br-clos-ft" "oobr/br-clos-ft.el" (12983 26201)) | |
6875 ;;; Generated autoloads from oobr/br-clos-ft.el | |
6876 | |
6877 ;;;*** | |
6878 | |
6879 ;;;### (autoloads nil "br-clos" "oobr/br-clos.el" (12983 26202)) | |
6880 ;;; Generated autoloads from oobr/br-clos.el | |
6881 | |
6882 ;;;*** | |
6883 | |
6884 ;;;### (autoloads nil "br-compl" "oobr/br-compl.el" (12983 26202)) | |
6885 ;;; Generated autoloads from oobr/br-compl.el | |
6886 | |
6887 ;;;*** | |
6888 | |
6889 ;;;### (autoloads nil "br-eif-ft" "oobr/br-eif-ft.el" (12983 26202)) | |
6890 ;;; Generated autoloads from oobr/br-eif-ft.el | |
6891 | |
6892 ;;;*** | |
6893 | |
6894 ;;;### (autoloads nil "br-eif" "oobr/br-eif.el" (12983 26203)) | |
6895 ;;; Generated autoloads from oobr/br-eif.el | |
6896 | |
6897 ;;;### (autoloads (br-env-load br-env-browse) "br-env" "oobr/br-env.el" (12983 26203)) | |
6898 ;;; Generated autoloads from oobr/br-env.el | |
6899 | |
6900 (autoload 'br-env-browse "br-env" "\ | |
6901 Invoke the OO-Browser on an existing or to be created Environment ENV-FILE." t nil) | |
6902 | |
6903 (autoload 'br-env-load "br-env" "\ | |
6904 Load browser Environment or spec from optional ENV-FILE or 'br-env-file'. | |
6905 Non-nil PROMPT means prompt user before building tables. | |
6906 Non-nil NO-BUILD means skip build of Environment entirely. | |
6907 Return t if load is successful, else nil." t nil) | |
6908 | |
6909 ;;;*** | |
6910 | |
6911 ;;;*** | |
6912 | |
6913 ;;;### (autoloads nil "br-ftr" "oobr/br-ftr.el" (12983 26203)) | |
6914 ;;; Generated autoloads from oobr/br-ftr.el | |
6915 | |
6916 ;;;*** | |
6917 | |
6918 ;;;### (autoloads nil "br-info" "oobr/br-info.el" (12983 26204)) | |
6919 ;;; Generated autoloads from oobr/br-info.el | |
6920 | |
6921 ;;;*** | |
6922 | |
6923 ;;;### (autoloads nil "br-init" "oobr/br-init.el" (12983 26204)) | |
6924 ;;; Generated autoloads from oobr/br-init.el | |
6925 | |
6926 ;;;*** | |
6927 | |
6928 ;;;### (autoloads nil "br-java-ft" "oobr/br-java-ft.el" (12983 26207)) | |
6929 ;;; Generated autoloads from oobr/br-java-ft.el | |
6930 | |
6931 ;;;*** | |
6932 | |
6933 ;;;### (autoloads nil "br-java" "oobr/br-java.el" (12983 26207)) | |
6934 ;;; Generated autoloads from oobr/br-java.el | |
6935 | |
6936 ;;;*** | |
6937 | |
6938 ;;;### (autoloads nil "br-lib" "oobr/br-lib.el" (12983 26204)) | |
6939 ;;; Generated autoloads from oobr/br-lib.el | |
6940 | |
6941 ;;;*** | |
6942 | |
6943 ;;;### (autoloads nil "br-menu" "oobr/br-menu.el" (12983 26207)) | |
6944 ;;; Generated autoloads from oobr/br-menu.el | |
6945 | |
6946 ;;;*** | |
6947 | |
6948 ;;;### (autoloads nil "br-objc-ft" "oobr/br-objc-ft.el" (12983 26204)) | |
6949 ;;; Generated autoloads from oobr/br-objc-ft.el | |
6950 | |
6951 ;;;*** | |
6952 | |
6953 ;;;### (autoloads nil "br-objc" "oobr/br-objc.el" (12983 26205)) | |
6954 ;;; Generated autoloads from oobr/br-objc.el | |
6955 | |
6956 ;;;*** | |
6957 | |
6958 ;;;### (autoloads nil "br-python-ft" "oobr/br-python-ft.el" (12983 26208)) | |
6959 ;;; Generated autoloads from oobr/br-python-ft.el | |
6960 | |
6961 ;;;*** | |
6962 | |
6963 ;;;### (autoloads nil "br-python" "oobr/br-python.el" (12983 26208)) | |
6964 ;;; Generated autoloads from oobr/br-python.el | |
6965 | |
6966 ;;;*** | |
6967 | |
6968 ;;;### (autoloads nil "br-site" "oobr/br-site.el" (12983 26205)) | |
6969 ;;; Generated autoloads from oobr/br-site.el | |
6970 | |
6971 ;;;*** | |
6972 | |
6973 ;;;### (autoloads nil "br-smt" "oobr/br-smt.el" (12983 26205)) | |
6974 ;;; Generated autoloads from oobr/br-smt.el | |
6975 | |
6976 ;;;### (autoloads (oo-browser) "br-start" "oobr/br-start.el" (12983 26205)) | |
6977 ;;; Generated autoloads from oobr/br-start.el | |
6978 | |
6979 (fset 'oobr 'oo-browser) | |
6980 | |
6981 (autoload 'oo-browser "br-start" "\ | |
6982 Prompt for an Environment and language over which to run the OO-Browser. | |
6983 Optional prefix argument SAME-ENV-FLAG means browse the current Environment, | |
6984 if any, without prompting." t nil) | |
6985 | |
6986 ;;;*** | |
6987 | |
6988 ;;;*** | |
6989 | |
6990 ;;;### (autoloads nil "br-tree" "oobr/br-tree.el" (12983 26205)) | |
6991 ;;; Generated autoloads from oobr/br-tree.el | |
6992 | |
6993 ;;;*** | |
6994 | |
6995 ;;;### (autoloads nil "br-vers" "oobr/br-vers.el" (12983 26205)) | |
6996 ;;; Generated autoloads from oobr/br-vers.el | |
6997 | |
6998 ;;;### (autoloads (br-to-from-viewer br-add-class-file) "br" "oobr/br.el" (12983 26199)) | |
6999 ;;; Generated autoloads from oobr/br.el | |
7000 | |
7001 (autoload 'br-add-class-file "br" "\ | |
7002 Add a file of classes to the current Environment. | |
7003 Interactively or when optional CLASS-PATH is nil, CLASS-PATH defaults to the | |
7004 current buffer file pathname. If optional LIB-TABLE-P is non-nil, add to | |
7005 Library Environment, otherwise add to System Environment. If optional | |
7006 SAVE-FILE is t, the Environment is then stored to the filename given by | |
7007 'br-env-file'. If SAVE-FILE is non-nil and not t, its string value is used | |
7008 as the file to which to save the Environment." t nil) | |
7009 | |
7010 (autoload 'br-to-from-viewer "br" "\ | |
7011 Move point to viewer window or back to last recorded listing window." t nil) | |
7012 | |
7013 ;;;*** | |
7014 | |
7015 ;;;### (autoloads (c++-browse) "c++-browse" "oobr/c++-browse.el" (12983 26205)) | |
7016 ;;; Generated autoloads from oobr/c++-browse.el | |
7017 | |
7018 (autoload 'c++-browse "c++-browse" "\ | |
7019 Invoke the C++ OO-Browser. | |
7020 This allows browsing through C++ library and system class hierarchies. With | |
7021 an optional non-nil prefix argument ENV-FILE, prompt for Environment file to | |
7022 use. Alternatively, a string value of ENV-FILE is used as the Environment | |
7023 file name. See also the file \"br-help\"." t nil) | |
7024 | |
7025 ;;;*** | |
7026 | |
7027 ;;;### (autoloads (clos-browse) "clos-brows" "oobr/clos-brows.el" (12983 26205)) | |
7028 ;;; Generated autoloads from oobr/clos-brows.el | |
7029 | |
7030 (autoload 'clos-browse "clos-brows" "\ | |
7031 Invoke the CLOS OO-Browser. | |
7032 This allows browsing through CLOS library and system class hierarchies. With | |
7033 an optional non-nil prefix argument ENV-FILE, prompt for Environment file | |
7034 to use. Alternatively, a string value of ENV-FILE is used as the | |
7035 Environment file name. See also the file \"br-help\"." t nil) | |
7036 | |
7037 ;;;*** | |
7038 | |
7039 ;;;### (autoloads (eif-browse) "eif-browse" "oobr/eif-browse.el" (12983 26205)) | |
7040 ;;; Generated autoloads from oobr/eif-browse.el | |
7041 | |
7042 (autoload 'eif-browse "eif-browse" "\ | |
7043 Invoke the Eiffel OO-Browser. | |
7044 This allows browsing through Eiffel library and system class hierarchies. | |
7045 With an optional prefix arg ENV-FILE equal to t, prompt for Environment file | |
7046 to use. Alternatively, a string value of ENV-FILE is used as the Environment | |
7047 file name. See also the file \"br-help\"." t nil) | |
7048 | |
7049 ;;;*** | |
7050 | |
7051 ;;;*** | |
7052 | |
7053 ;;;### (autoloads nil "eif-calls" "oobr/eif-calls.el" (12983 26205)) | |
7054 ;;; Generated autoloads from oobr/eif-calls.el | |
7055 | |
7056 ;;;*** | |
7057 | |
7058 ;;;### (autoloads nil "eif-ise-er" "oobr/eif-ise-er.el" (12983 26206)) | |
7059 ;;; Generated autoloads from oobr/eif-ise-er.el | |
7060 | |
7061 ;;;*** | |
7062 | |
7063 ;;;### (autoloads nil "hash-test" "oobr/hash-test.el" (12983 26206)) | |
7064 ;;; Generated autoloads from oobr/hash-test.el | |
7065 | |
7066 ;;;*** | |
7067 | |
7068 ;;;### (autoloads nil "hasht" "oobr/hasht.el" (12983 26206)) | |
7069 ;;; Generated autoloads from oobr/hasht.el | |
7070 | |
7071 ;;;*** | |
7072 | |
7073 ;;;### (autoloads nil "hmouse-br" "oobr/hmouse-br.el" (12983 26206)) | |
7074 ;;; Generated autoloads from oobr/hmouse-br.el | |
7075 | |
7076 ;;;### (autoloads (info-browse) "info-brows" "oobr/info-brows.el" (12983 26207)) | |
7077 ;;; Generated autoloads from oobr/info-brows.el | |
7078 | |
7079 (autoload 'info-browse "info-brows" "\ | |
7080 Invoke the Info OO-Browser. | |
7081 This allows browsing through Info library and system class hierarchies. With | |
7082 an optional non-nil prefix argument ENV-FILE, prompt for Environment file to | |
7083 use. Alternatively, a string value of ENV-FILE is used as the Environment | |
7084 file name. See also the file \"br-help\"." t nil) | |
7085 | |
7086 ;;;*** | |
7087 | |
7088 ;;;### (autoloads (java-browse) "java-brows" "oobr/java-brows.el" (12983 26207)) | |
7089 ;;; Generated autoloads from oobr/java-brows.el | |
7090 | |
7091 (autoload 'java-browse "java-brows" "\ | |
7092 Invoke the Java OO-Browser. | |
7093 This allows browsing through Java library and system class hierarchies. With | |
7094 an optional non-nil prefix argument ENV-FILE, prompt for Environment file to | |
7095 use. Alternatively, a string value of ENV-FILE is used as the Environment | |
7096 file name. See also the file \"br-help\"." t nil) | |
7097 | |
7098 ;;;*** | |
7099 | |
7100 ;;;### (autoloads (objc-browse) "objc-brows" "oobr/objc-brows.el" (12983 26207)) | |
7101 ;;; Generated autoloads from oobr/objc-brows.el | |
7102 | |
7103 (autoload 'objc-browse "objc-brows" "\ | |
7104 Invoke the Objective-C OO-Browser. | |
7105 This allows browsing through Objective-C library and system class | |
7106 hierarchies. With an optional non-nil prefix argument ENV-FILE, prompt for | |
7107 Environment file to use. Alternatively, a string value of ENV-FILE is used | |
7108 as the Environment file name. See also the file \"br-help\"." t nil) | |
7109 | |
7110 ;;;*** | |
7111 | |
7112 ;;;### (autoloads (python-browse) "python-browse" "oobr/python-browse.el" (12983 26208)) | |
7113 ;;; Generated autoloads from oobr/python-browse.el | |
7114 | |
7115 (autoload 'python-browse "python-browse" "\ | |
7116 Invoke the Python OO-Browser. | |
7117 This allows browsing through Python library and system class hierarchies. | |
7118 With an optional non-nil prefix argument ENV-FILE, prompt for Environment | |
7119 file to use. Alternatively, a string value of ENV-FILE is used as the | |
7120 Environment file name. See also the file \"br-help\"." t nil) | |
7121 | |
7122 ;;;*** | |
7123 | |
7124 ;;;### (autoloads (smt-browse) "smt-browse" "oobr/smt-browse.el" (12983 26207)) | |
7125 ;;; Generated autoloads from oobr/smt-browse.el | |
7126 | |
7127 (autoload 'smt-browse "smt-browse" "\ | |
7128 Invoke the Smalltalk OO-Browser. | |
7129 This allows browsing through Smalltalk library and system class hierarchies. | |
7130 With an optional non-nil prefix argument ENV-FILE, prompt for Environment | |
7131 file to use. Alternatively, a string value of ENV-FILE is used as the | |
7132 Environment file name. See also the file \"br-help\"." t nil) | |
7133 | |
7134 ;;;*** | |
7135 | |
7136 ;;;### (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" (12983 26798)) | |
7137 ;;; Generated autoloads from packages/add-log.el | |
7138 | |
7139 (defvar change-log-default-name nil "\ | |
7140 *Name of a change log file for \\[add-change-log-entry].") | |
7141 | |
7142 (defvar add-log-current-defun-function nil "\ | |
7143 *If non-nil, function to guess name of current function from surrounding text. | |
7144 \\[add-change-log-entry] calls this function (if nil, `add-log-current-defun' | |
7145 instead) with no arguments. It returns a string or nil if it cannot guess.") | |
7146 | |
7147 (defvar add-log-full-name nil "\ | |
7148 *Full name of user, for inclusion in ChangeLog daily headers. | |
7149 This defaults to the value returned by the `user-full-name' function.") | |
7150 | |
7151 (defvar add-log-mailing-address nil "\ | |
7152 *Electronic mail address of user, for inclusion in ChangeLog daily headers. | |
7153 This defaults to the value of `user-mail-address'.") | |
7154 | |
7155 (autoload 'prompt-for-change-log-name "add-log" "\ | |
7156 Prompt for a change log name." nil nil) | |
7157 | |
7158 (autoload 'find-change-log "add-log" "\ | |
7159 Find a change log file for \\[add-change-log-entry] and return the name. | |
7160 | |
7161 Optional arg FILE-NAME specifies the file to use. | |
7162 If FILE-NAME is nil, use the value of `change-log-default-name'. | |
7163 If 'change-log-default-name' is nil, behave as though it were 'ChangeLog' | |
7164 \(or whatever we use on this operating system). | |
7165 | |
7166 If 'change-log-default-name' contains a leading directory component, then | |
7167 simply find it in the current directory. Otherwise, search in the current | |
7168 directory and its successive parents for a file so named. | |
7169 | |
7170 Once a file is found, `change-log-default-name' is set locally in the | |
7171 current buffer to the complete file name." nil nil) | |
7172 | |
7173 (autoload 'add-change-log-entry "add-log" "\ | |
7174 Find change log file and add an entry for today. | |
7175 Optional arg (interactive prefix) non-nil means prompt for user name and site. | |
7176 Second arg is file name of change log. If nil, uses `change-log-default-name'. | |
7177 Third arg OTHER-WINDOW non-nil means visit in other window. | |
7178 Fourth arg NEW-ENTRY non-nil means always create a new entry at the front; | |
7179 never append to an existing entry." t nil) | |
7180 | |
7181 (autoload 'add-change-log-entry-other-window "add-log" "\ | |
7182 Find change log file in other window and add an entry for today. | |
7183 Optional arg (interactive prefix) non-nil means prompt for user name and site. | |
7184 Second arg is file name of change log. If nil, uses `change-log-default-name'." t nil) | |
7185 | |
7186 (define-key ctl-x-4-map "a" 'add-change-log-entry-other-window) | |
7187 | |
7188 (autoload 'change-log-mode "add-log" "\ | |
7189 Major mode for editing change logs; like Indented Text Mode. | |
7190 Prevents numeric backups and sets `left-margin' to 8 and `fill-column' to 74. | |
7191 New log entries are usually made with \\[add-change-log-entry] or \\[add-change-log-entry-other-window]. | |
7192 Each entry behaves as a paragraph, and the entries for one day as a page. | |
7193 Runs `change-log-mode-hook'." t nil) | |
7194 | |
7195 (autoload 'add-log-current-defun "add-log" "\ | |
7196 Return name of function definition point is in, or nil. | |
7197 | |
7198 Understands C, Lisp, LaTeX (\"functions\" are chapters, sections, ...), | |
7199 Texinfo (@node titles), Perl, and Fortran. | |
7200 | |
7201 Other modes are handled by a heuristic that looks in the 10K before | |
7202 point for uppercase headings starting in the first column or | |
7203 identifiers followed by `:' or `=', see variable | |
7204 `add-log-current-defun-header-regexp'. | |
7205 | |
7206 Has a preference of looking backwards." nil nil) | |
7207 | |
7208 ;;;*** | |
7209 | |
7210 ;;;### (autoloads (apropos-documentation apropos-value apropos apropos-command) "apropos" "packages/apropos.el" (12991 23643)) | |
7211 ;;; Generated autoloads from packages/apropos.el | |
7212 | |
7213 (fset 'command-apropos 'apropos-command) | |
7214 | |
7215 (autoload 'apropos-command "apropos" "\ | |
7216 Shows commands (interactively callable functions) that match REGEXP. | |
7217 With optional prefix ARG or if `apropos-do-all' is non-nil, also show | |
7218 variables." t nil) | |
7219 | |
7220 (autoload 'apropos "apropos" "\ | |
7221 Show all bound symbols whose names match REGEXP. | |
7222 With optional prefix ARG or if `apropos-do-all' is non-nil, also show unbound | |
7223 symbols and key bindings, which is a little more time-consuming. | |
7224 Returns list of symbols and documentation found." t nil) | |
7225 | |
7226 (autoload 'apropos-value "apropos" "\ | |
7227 Show all symbols whose value's printed image matches REGEXP. | |
7228 With optional prefix ARG or if `apropos-do-all' is non-nil, also looks | |
7229 at the function and at the names and values of properties. | |
7230 Returns list of symbols and values found." t nil) | |
7231 | |
7232 (autoload 'apropos-documentation "apropos" "\ | |
7233 Show symbols whose documentation contain matches for REGEXP. | |
7234 With optional prefix ARG or if `apropos-do-all' is non-nil, also use | |
7235 documentation that is not stored in the documentation file and show key | |
7236 bindings. | |
7237 Returns list of symbols and documentation found." t nil) | |
7238 | |
7239 ;;;*** | |
7240 | |
7241 ;;;*** | |
7242 | |
7243 ;;;*** | |
7244 | |
7245 ;;;*** | |
7246 | |
7247 ;;;### (autoloads nil "array" "packages/array.el" (12983 26799)) | |
7248 ;;; Generated autoloads from packages/array.el | |
7249 | |
7250 ;;;*** | |
7251 | |
7252 ;;;### (autoloads nil "auto-save" "packages/auto-save.el" (12983 25985)) | |
7253 ;;; Generated autoloads from packages/auto-save.el | |
7254 | |
7255 ;;;### (autoloads (define-auto-insert auto-insert) "autoinsert" "packages/autoinsert.el" (12983 27310)) | |
7256 ;;; Generated autoloads from packages/autoinsert.el | |
7257 | |
7258 (autoload 'auto-insert "autoinsert" "\ | |
7259 Insert default contents into a new file if `auto-insert' is non-nil. | |
7260 Matches the visited file name against the elements of `auto-insert-alist'." t nil) | |
7261 | |
7262 (autoload 'define-auto-insert "autoinsert" "\ | |
7263 Associate CONDITION with (additional) ACTION in `auto-insert-alist'. | |
7264 Optional AFTER means to insert action after all existing actions for CONDITION, | |
7265 or if CONDITION had no actions, after all other CONDITIONs." nil nil) | |
7266 | |
7267 ;;;*** | |
7268 | |
7269 ;;;### (autoloads (mouse-avoidance-mode) "avoid" "packages/avoid.el" (12983 26818)) | |
7270 ;;; Generated autoloads from packages/avoid.el | |
7271 | |
7272 (autoload 'mouse-avoidance-mode "avoid" "\ | |
7273 Set cursor avoidance mode to MODE. | |
7274 MODE should be one of the symbols `banish', `exile', `jump', `animate', | |
7275 `cat-and-mouse', `proteus', or `none'. | |
7276 | |
7277 If MODE is nil, toggle mouse avoidance between `none` and `banish' | |
7278 modes. Positive numbers and symbols other than the above are treated | |
7279 as equivalent to `banish'; negative numbers and `-' are equivalent to `none'. | |
7280 | |
7281 Effects of the different modes: | |
7282 * banish: Move the mouse to the upper-right corner on any keypress. | |
7283 * exile: Move the mouse to the corner only if the cursor gets too close, | |
7284 and allow it to return once the cursor is out of the way. | |
7285 * jump: If the cursor gets too close to the mouse, displace the mouse | |
7286 a random distance & direction. | |
7287 * animate: As `jump', but shows steps along the way for illusion of motion. | |
7288 * cat-and-mouse: Same as `animate'. | |
7289 * proteus: As `animate', but changes the shape of the mouse pointer too. | |
7290 | |
7291 Whenever the mouse is moved, the frame is also raised. | |
7292 | |
7293 \(see `mouse-avoidance-threshold' for definition of \"too close\", | |
7294 and `mouse-avoidance-nudge-dist' and `mouse-avoidance-nudge-var' for | |
7295 definition of \"random distance\".)" t nil) | |
7296 | |
7297 (add-minor-mode 'mouse-avoidance-mode " Avoid") | |
7298 | |
7299 ;;;*** | |
7300 | |
7301 ;;;*** | |
7302 | |
7303 ;;;### (autoloads nil "balloon-help" "packages/balloon-help.el" (12983 26029)) | |
7304 ;;; Generated autoloads from packages/balloon-help.el | |
7305 | |
7306 ;;;*** | |
7307 | |
7308 ;;;### (autoloads nil "big-menubar" "packages/big-menubar.el" (12983 26815)) | |
7309 ;;; Generated autoloads from packages/big-menubar.el | |
7310 | |
7311 ;;;### (autoloads (blink-cursor-mode) "blink-cursor" "packages/blink-cursor.el" (12983 26020)) | |
7312 ;;; Generated autoloads from packages/blink-cursor.el | |
7313 | |
7314 (autoload 'blink-cursor-mode "blink-cursor" "\ | |
7315 Enable or disable a blinking cursor. | |
7316 If TIMEOUT is nil, toggle on or off. | |
7317 If TIMEOUT is t, enable with the previous timeout value. | |
7318 If TIMEOUT is 0, disable. | |
7319 If TIMEOUT is greater than 0, then the cursor will blink once | |
7320 each TIMEOUT secs (can be a float)." t nil) | |
7321 | |
7322 ;;;*** | |
7323 | |
7324 ;;;*** | |
7325 | |
7326 ;;;### (autoloads nil "blink-paren" "packages/blink-paren.el" (12983 25991)) | |
7327 ;;; Generated autoloads from packages/blink-paren.el | |
7328 | |
7329 ;;;*** | |
7330 | |
7331 ;;;*** | |
7332 | |
7333 ;;;*** | |
7334 | |
7335 ;;;### (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" (12983 26808)) | |
7336 ;;; Generated autoloads from packages/bookmark.el | |
7337 | |
7338 (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))) | |
7339 | |
7340 (defvar bookmark-map nil "\ | |
7341 Keymap containing bindings to bookmark functions. | |
7342 It is not bound to any key by default: to bind it | |
7343 so that you have a bookmark prefix, just use `global-set-key' and bind a | |
7344 key of your choice to `bookmark-map'. All interactive bookmark | |
7345 functions have a binding in this keymap.") | |
7346 | |
7347 (define-prefix-command 'bookmark-map) | |
7348 | |
7349 (define-key bookmark-map "x" 'bookmark-set) | |
7350 | |
7351 (define-key bookmark-map "m" 'bookmark-set) | |
7352 | |
7353 (define-key bookmark-map "j" 'bookmark-jump) | |
7354 | |
7355 (define-key bookmark-map "g" 'bookmark-jump) | |
7356 | |
7357 (define-key bookmark-map "i" 'bookmark-insert) | |
7358 | |
7359 (define-key bookmark-map "e" 'edit-bookmarks) | |
7360 | |
7361 (define-key bookmark-map "f" 'bookmark-insert-location) | |
7362 | |
7363 (define-key bookmark-map "r" 'bookmark-rename) | |
7364 | |
7365 (define-key bookmark-map "d" 'bookmark-delete) | |
7366 | |
7367 (define-key bookmark-map "l" 'bookmark-load) | |
7368 | |
7369 (define-key bookmark-map "w" 'bookmark-write) | |
7370 | |
7371 (define-key bookmark-map "s" 'bookmark-save) | |
7372 | |
7373 (autoload 'bookmark-set "bookmark" "\ | |
7374 Set a bookmark named NAME inside a file. | |
7375 If name is nil, then the user will be prompted. | |
7376 With prefix arg, will not overwrite a bookmark that has the same name | |
7377 as NAME if such a bookmark already exists, but instead will \"push\" | |
7378 the new bookmark onto the bookmark alist. Thus the most recently set | |
7379 bookmark with name NAME would be the one in effect at any given time, | |
7380 but the others are still there, should you decide to delete the most | |
7381 recent one. | |
7382 | |
7383 To yank words from the text of the buffer and use them as part of the | |
7384 bookmark name, type C-w while setting a bookmark. Successive C-w's | |
7385 yank successive words. | |
7386 | |
7387 Typing C-u inserts the name of the last bookmark used in the buffer | |
7388 \(as an aid in using a single bookmark name to track your progress | |
7389 through a large file). If no bookmark was used, then C-u inserts the | |
7390 name of the file being visited. | |
7391 | |
7392 Use \\[bookmark-delete] to remove bookmarks (you give it a name, | |
7393 and it removes only the first instance of a bookmark with that name from | |
7394 the list of bookmarks.)" t nil) | |
7395 | |
7396 (autoload 'bookmark-jump "bookmark" "\ | |
7397 Jump to bookmark BOOKMARK (a point in some file). | |
7398 You may have a problem using this function if the value of variable | |
7399 `bookmark-alist' is nil. If that happens, you need to load in some | |
7400 bookmarks. See help on function `bookmark-load' for more about | |
7401 this. | |
7402 | |
7403 If the file pointed to by BOOKMARK no longer exists, you will be asked | |
7404 if you wish to give the bookmark a new location, and bookmark-jump | |
7405 will then jump to the new location, as well as recording it in place | |
7406 of the old one in the permanent bookmark record." t nil) | |
7407 | |
7408 (autoload 'bookmark-relocate "bookmark" "\ | |
7409 Relocate BOOKMARK -- prompts for a filename, and makes an already | |
7410 existing bookmark point to that file, instead of the one it used to | |
7411 point at. Useful when a file has been renamed after a bookmark was | |
7412 set in it." t nil) | |
7413 | |
7414 (autoload 'bookmark-insert-location "bookmark" "\ | |
7415 Insert the name of the file associated with BOOKMARK. | |
7416 Optional second arg NO-HISTORY means don't record this in the | |
7417 minibuffer history list `bookmark-history'." t nil) | |
7418 | |
7419 (autoload 'bookmark-rename "bookmark" "\ | |
7420 Change the name of OLD bookmark to NEW name. If called from | |
7421 keyboard, prompts for OLD and NEW. If called from menubar, OLD is | |
7422 selected from a menu, and prompts for NEW. | |
7423 | |
7424 If called from Lisp, prompts for NEW if only OLD was passed as an | |
7425 argument. If called with two strings, then no prompting is done. You | |
7426 must pass at least OLD when calling from Lisp. | |
7427 | |
7428 While you are entering the new name, consecutive C-w's insert | |
7429 consectutive words from the text of the buffer into the new bookmark | |
7430 name." t nil) | |
7431 | |
7432 (autoload 'bookmark-insert "bookmark" "\ | |
7433 Insert the text of the file pointed to by bookmark BOOKMARK. | |
7434 You may have a problem using this function if the value of variable | |
7435 `bookmark-alist' is nil. If that happens, you need to load in some | |
7436 bookmarks. See help on function `bookmark-load' for more about | |
7437 this." t nil) | |
7438 | |
7439 (autoload 'bookmark-delete "bookmark" "\ | |
7440 Delete BOOKMARK from the bookmark list. | |
7441 Removes only the first instance of a bookmark with that name. If | |
7442 there are one or more other bookmarks with the same name, they will | |
7443 not be deleted. Defaults to the \"current\" bookmark (that is, the | |
7444 one most recently used in this file, if any). | |
7445 Optional second arg BATCH means don't update the bookmark list buffer, | |
7446 probably because we were called from there." t nil) | |
7447 | |
7448 (autoload 'bookmark-write "bookmark" "\ | |
7449 Write bookmarks to a file (for which the user will be prompted | |
7450 interactively). Don't use this in Lisp programs; use bookmark-save | |
7451 instead." t nil) | |
7452 | |
7453 (autoload 'bookmark-save "bookmark" "\ | |
7454 Save currently defined bookmarks. | |
7455 Saves by default in the file defined by the variable | |
7456 `bookmark-default-file'. With a prefix arg, save it in file FILE | |
7457 \(second argument). | |
7458 | |
7459 If you are calling this from Lisp, the two arguments are PREFIX-ARG | |
7460 and FILE, and if you just want it to write to the default file, then | |
7461 pass no arguments. Or pass in nil and FILE, and it will save in FILE | |
7462 instead. If you pass in one argument, and it is non-nil, then the | |
7463 user will be interactively queried for a file to save in. | |
7464 | |
7465 When you want to load in the bookmarks from a file, use | |
7466 `bookmark-load', \\[bookmark-load]. That function will prompt you | |
7467 for a file, defaulting to the file defined by variable | |
7468 `bookmark-default-file'." t nil) | |
7469 | |
7470 (autoload 'bookmark-load "bookmark" "\ | |
7471 Load bookmarks from FILE (which must be in bookmark format). | |
7472 Appends loaded bookmarks to the front of the list of bookmarks. If | |
7473 optional second argument REVERT is non-nil, existing bookmarks are | |
7474 destroyed. Optional third arg NO-MSG means don't display any messages | |
7475 while loading. | |
7476 | |
7477 If you load a file that doesn't contain a proper bookmark alist, you | |
7478 will corrupt Emacs's bookmark list. Generally, you should only load | |
7479 in files that were created with the bookmark functions in the first | |
7480 place. Your own personal bookmark file, `~/.emacs.bmk', is | |
7481 maintained automatically by Emacs; you shouldn't need to load it | |
7482 explicitly." t nil) | |
7483 | |
7484 (autoload 'bookmark-bmenu-list "bookmark" "\ | |
7485 Display a list of existing bookmarks. | |
7486 The list is displayed in a buffer named `*Bookmark List*'. | |
7487 The leftmost column displays a D if the bookmark is flagged for | |
7488 deletion, or > if it is flagged for displaying." t nil) | |
7489 | |
7490 (defalias 'list-bookmarks 'bookmark-bmenu-list) | |
7491 | |
7492 (defalias 'edit-bookmarks 'bookmark-bmenu-list) | |
7493 | |
7494 (autoload 'bookmark-menu-insert "bookmark" "\ | |
7495 Insert the text of the file pointed to by bookmark BOOKMARK. | |
7496 You may have a problem using this function if the value of variable | |
7497 `bookmark-alist' is nil. If that happens, you need to load in some | |
7498 bookmarks. See help on function `bookmark-load' for more about | |
7499 this. | |
7500 | |
7501 Warning: this function only takes an EVENT as argument. Use the | |
7502 corresponding bookmark function from Lisp (the one without the | |
7503 \"-menu-\" in its name)." t nil) | |
7504 | |
7505 (autoload 'bookmark-menu-jump "bookmark" "\ | |
7506 Jump to bookmark BOOKMARK (a point in some file). | |
7507 You may have a problem using this function if the value of variable | |
7508 `bookmark-alist' is nil. If that happens, you need to load in some | |
7509 bookmarks. See help on function `bookmark-load' for more about | |
7510 this. | |
7511 | |
7512 Warning: this function only takes an EVENT as argument. Use the | |
7513 corresponding bookmark function from Lisp (the one without the | |
7514 \"-menu-\" in its name)." t nil) | |
7515 | |
7516 (autoload 'bookmark-menu-locate "bookmark" "\ | |
7517 Insert the name of the file associated with BOOKMARK. | |
7518 \(This is not the same as the contents of that file). | |
7519 | |
7520 Warning: this function only takes an EVENT as argument. Use the | |
7521 corresponding bookmark function from Lisp (the one without the | |
7522 \"-menu-\" in its name)." t nil) | |
7523 | |
7524 (autoload 'bookmark-menu-rename "bookmark" "\ | |
7525 Change the name of OLD-BOOKMARK to NEWNAME. | |
7526 If called from keyboard, prompts for OLD-BOOKMARK and NEWNAME. | |
7527 If called from menubar, OLD-BOOKMARK is selected from a menu, and | |
7528 prompts for NEWNAME. | |
7529 If called from Lisp, prompts for NEWNAME if only OLD-BOOKMARK was | |
7530 passed as an argument. If called with two strings, then no prompting | |
7531 is done. You must pass at least OLD-BOOKMARK when calling from Lisp. | |
7532 | |
7533 While you are entering the new name, consecutive C-w's insert | |
7534 consectutive words from the text of the buffer into the new bookmark | |
7535 name. | |
7536 | |
7537 Warning: this function only takes an EVENT as argument. Use the | |
7538 corresponding bookmark function from Lisp (the one without the | |
7539 \"-menu-\" in its name)." t nil) | |
7540 | |
7541 (autoload 'bookmark-menu-delete "bookmark" "\ | |
7542 Delete the bookmark named NAME from the bookmark list. | |
7543 Removes only the first instance of a bookmark with that name. If | |
7544 there are one or more other bookmarks with the same name, they will | |
7545 not be deleted. Defaults to the \"current\" bookmark (that is, the | |
7546 one most recently used in this file, if any). | |
7547 | |
7548 Warning: this function only takes an EVENT as argument. Use the | |
7549 corresponding bookmark function from Lisp (the one without the | |
7550 \"-menu-\" in its name)." t nil) | |
7551 | |
7552 ;;;*** | |
7553 | |
7554 ;;;### (autoloads nil "buff-menu" "packages/buff-menu.el" (12983 27910)) | |
7555 ;;; Generated autoloads from packages/buff-menu.el | |
7556 | |
7557 (defvar list-buffers-directory) | |
7558 | |
7559 (make-variable-buffer-local 'list-buffers-directory) | |
7560 | |
7561 ;;;*** | |
7562 | |
7563 ;;;### (autoloads (command-history-mode list-command-history repeat-matching-complex-command) "chistory" "packages/chistory.el" (12983 26800)) | |
7564 ;;; Generated autoloads from packages/chistory.el | |
7565 | |
7566 (autoload 'repeat-matching-complex-command "chistory" "\ | |
7567 Edit and re-evaluate complex command with name matching PATTERN. | |
7568 Matching occurrences are displayed, most recent first, until you select | |
7569 a form for evaluation. If PATTERN is empty (or nil), every form in the | |
7570 command history is offered. The form is placed in the minibuffer for | |
7571 editing and the result is evaluated." t nil) | |
7572 | |
7573 (autoload 'list-command-history "chistory" "\ | |
7574 List history of commands typed to minibuffer. | |
7575 The number of commands listed is controlled by `list-command-history-max'. | |
7576 Calls value of `list-command-history-filter' (if non-nil) on each history | |
7577 element to judge if that element should be excluded from the list. | |
7578 | |
7579 The buffer is left in Command History mode." t nil) | |
7580 | |
7581 (autoload 'command-history-mode "chistory" "\ | |
7582 Major mode for examining commands from `command-history'. | |
7583 The number of commands listed is controlled by `list-command-history-max'. | |
7584 The command history is filtered by `list-command-history-filter' if non-nil. | |
7585 Use \\<command-history-map>\\[command-history-repeat] to repeat the command on the current line. | |
7586 | |
7587 Otherwise much like Emacs-Lisp Mode except that there is no self-insertion | |
7588 and digits provide prefix arguments. Tab does not indent. | |
7589 \\{command-history-map} | |
7590 Calls the value of `command-history-hook' if that is non-nil. | |
7591 The Command History listing is recomputed each time this mode is invoked." t nil) | |
7592 | |
7593 ;;;*** | |
7594 | |
7595 ;;;### (autoloads nil "cmuscheme" "packages/cmuscheme.el" (12983 26811)) | |
7596 ;;; Generated autoloads from packages/cmuscheme.el | |
7597 | |
7598 (add-hook 'same-window-buffer-names "*scheme*") | |
7599 | |
7600 ;;;*** | |
7601 | |
7602 ;;;### (autoloads (display-column-mode) "column" "packages/column.el" (12983 27325)) | |
7603 ;;; Generated autoloads from packages/column.el | |
7604 | |
7605 (autoload 'display-column-mode "column" "\ | |
7606 Toggle display column mode. | |
7607 With prefix arg, turn display column mode on iff arg is positive. | |
7608 | |
7609 When display column mode is on, the current column and line number are | |
7610 displayed in the mode line." t nil) | |
7611 | |
7612 ;;;*** | |
7613 | |
7614 ;;;### (autoloads (compare-windows) "compare-w" "packages/compare-w.el" (12983 26801)) | |
7615 ;;; Generated autoloads from packages/compare-w.el | |
7616 | |
7617 (autoload 'compare-windows "compare-w" "\ | |
7618 Compare text in current window with text in next window. | |
7619 Compares the text starting at point in each window, | |
7620 moving over text in each one as far as they match. | |
7621 | |
7622 This command pushes the mark in each window | |
7623 at the prior location of point in that window. | |
7624 If both windows display the same buffer, | |
7625 the mark is pushed twice in that buffer: | |
7626 first in the other window, then in the selected window. | |
7627 | |
7628 A prefix arg means ignore changes in whitespace. | |
7629 The variable `compare-windows-whitespace' controls how whitespace is skipped. | |
7630 If `compare-ignore-case' is non-nil, changes in case are also ignored." t nil) | |
7631 | |
7632 ;;;*** | |
7633 | |
7634 ;;;### (autoloads (first-error previous-error next-error compilation-minor-mode grep compile) "compile" "packages/compile.el" (12983 27910)) | |
7635 ;;; Generated autoloads from packages/compile.el | |
7636 | |
7637 (defvar compilation-mode-hook nil "\ | |
7638 *List of hook functions run by `compilation-mode' (see `run-hooks').") | |
7639 | |
7640 (defvar compilation-window-height nil "\ | |
7641 *Number of lines in a compilation window. If nil, use Emacs default.") | |
7642 | |
7643 (defvar compilation-buffer-name-function nil "\ | |
7644 Function to compute the name of a compilation buffer. | |
7645 The function receives one argument, the name of the major mode of the | |
7646 compilation buffer. It should return a string. | |
7647 nil means compute the name with `(concat \"*\" (downcase major-mode) \"*\")'.") | |
7648 | |
7649 (defvar compilation-finish-function nil "\ | |
7650 *Function to call when a compilation process finishes. | |
7651 It is called with two arguments: the compilation buffer, and a string | |
7652 describing how the process finished.") | |
7653 | |
7654 (defvar compilation-search-path '(nil) "\ | |
7655 *List of directories to search for source files named in error messages. | |
7656 Elements should be directory names, not file names of directories. | |
7657 nil as an element means to try the default directory.") | |
7658 | |
7659 (autoload 'compile "compile" "\ | |
7660 Compile the program including the current buffer. Default: run `make'. | |
7661 Runs COMMAND, a shell command, in a separate process asynchronously | |
7662 with output going to the buffer `*compilation*'. | |
7663 | |
7664 You can then use the command \\[next-error] to find the next error message | |
7665 and move to the source code that caused it. | |
7666 | |
7667 Interactively, prompts for the command if `compilation-read-command' is | |
7668 non-nil; otherwise uses `compile-command'. With prefix arg, always prompts. | |
7669 | |
7670 To run more than one compilation at once, start one and rename the | |
7671 `*compilation*' buffer to some other name with \\[rename-buffer]. | |
7672 Then start the next one. | |
7673 | |
7674 The name used for the buffer is actually whatever is returned by | |
7675 the function in `compilation-buffer-name-function', so you can set that | |
7676 to a function that generates a unique name." t nil) | |
7677 | |
7678 (autoload 'grep "compile" "\ | |
7679 Run grep, with user-specified args, and collect output in a buffer. | |
7680 While grep runs asynchronously, you can use the \\[next-error] command | |
7681 to find the text that grep hits refer to. | |
7682 | |
7683 This command uses a special history list for its arguments, so you can | |
7684 easily repeat a grep command." t nil) | |
7685 | |
7686 (autoload 'compilation-minor-mode "compile" "\ | |
7687 Toggle compilation minor mode. | |
7688 With arg, turn compilation mode on if and only if arg is positive. | |
7689 See `compilation-mode'. | |
7690 ! \\{compilation-mode-map}" t nil) | |
7691 | |
7692 (autoload 'next-error "compile" "\ | |
7693 Visit next compilation error message and corresponding source code. | |
7694 This operates on the output from the \\[compile] command. | |
7695 If all preparsed error messages have been processed, | |
7696 the error message buffer is checked for new ones. | |
7697 | |
7698 A prefix arg specifies how many error messages to move; | |
7699 negative means move back to previous error messages. | |
7700 Just C-u as a prefix means reparse the error message buffer | |
7701 and start at the first error. | |
7702 | |
7703 \\[next-error] normally applies to the most recent compilation started, | |
7704 but as long as you are in the middle of parsing errors from one compilation | |
7705 output buffer, you stay with that compilation output buffer. | |
7706 | |
7707 Use \\[next-error] in a compilation output buffer to switch to | |
7708 processing errors from that compilation. | |
7709 | |
7710 See variables `compilation-parse-errors-function' and | |
7711 `compilation-error-regexp-alist' for customization ideas." t nil) | |
7712 | |
7713 (define-key ctl-x-map "`" 'next-error) | |
7714 | |
7715 (autoload 'previous-error "compile" "\ | |
7716 Visit previous compilation error message and corresponding source code. | |
7717 This operates on the output from the \\[compile] command." t nil) | |
7718 | |
7719 (autoload 'first-error "compile" "\ | |
7720 Reparse the error message buffer and start at the first error | |
7721 Visit corresponding source code. | |
7722 This operates on the output from the \\[compile] command." t nil) | |
7723 | |
7724 ;;;*** | |
7725 | |
7726 ;;;*** | |
7727 | |
7728 ;;;*** | |
7729 | |
7730 ;;;### (autoloads nil "completion" "packages/completion.el" (12983 26821)) | |
7731 ;;; Generated autoloads from packages/completion.el | |
7732 | |
7733 ;;;*** | |
7734 | |
7735 ;;;*** | |
7736 | |
7737 ;;;*** | |
7738 | |
7739 ;;;### (autoloads nil "crypt" "packages/crypt.el" (12983 25996)) | |
7740 ;;; Generated autoloads from packages/crypt.el | |
7741 | |
7742 ;;;### (autoloads (dabbrev-expand dabbrev-completion) "dabbrev" "packages/dabbrev.el" (12983 26801)) | |
7743 ;;; Generated autoloads from packages/dabbrev.el | |
7744 | |
7745 (define-key global-map [(meta /)] 'dabbrev-expand) | |
7746 | |
7747 (define-key global-map [(meta control /)] 'dabbrev-completion) | |
7748 | |
7749 (autoload 'dabbrev-completion "dabbrev" "\ | |
7750 Completion on current word. | |
7751 Like \\[dabbrev-expand] but finds all expansions in the current buffer | |
7752 and presents suggestions for completion. | |
7753 | |
7754 With a prefix argument, it searches all buffers accepted by the | |
7755 function pointed out by `dabbrev-friend-buffer-function' to find the | |
7756 completions. | |
7757 | |
7758 If the prefix argument is 16 (which comes from C-u C-u), | |
7759 then it searches *all* buffers. | |
7760 | |
7761 With no prefix argument, it reuses an old completion list | |
7762 if there is a suitable one already." t nil) | |
7763 | |
7764 (autoload 'dabbrev-expand "dabbrev" "\ | |
7765 Expand previous word \"dynamically\". | |
7766 | |
7767 Expands to the most recent, preceding word for which this is a prefix. | |
7768 If no suitable preceding word is found, words following point are | |
7769 considered. If still no suitable word is found, then look in the | |
7770 buffers accepted by the function pointed out by variable | |
7771 `dabbrev-friend-buffer-function'. | |
7772 | |
7773 A positive prefix argument, N, says to take the Nth backward *distinct* | |
7774 possibility. A negative argument says search forward. | |
7775 | |
7776 If the cursor has not moved from the end of the previous expansion and | |
7777 no argument is given, replace the previously-made expansion | |
7778 with the next possible expansion not yet tried. | |
7779 | |
7780 The variable `dabbrev-backward-only' may be used to limit the | |
7781 direction of search to backward if set non-nil. | |
7782 | |
7783 See also `dabbrev-abbrev-char-regexp' and \\[dabbrev-completion]." t nil) | |
7784 | |
7785 ;;;*** | |
7786 | |
7787 ;;;*** | |
7788 | |
7789 ;;;### (autoloads nil "desktop" "packages/desktop.el" (12983 26810)) | |
7790 ;;; Generated autoloads from packages/desktop.el | |
7791 | |
7792 ;;;*** | |
7793 | |
7794 ;;;### (autoloads nil "detexinfo" "packages/detexinfo.el" (12983 26014)) | |
7795 ;;; Generated autoloads from packages/detexinfo.el | |
7796 | |
7797 ;;;### (autoloads (diff-backup diff) "diff" "packages/diff.el" (12983 26801)) | |
7798 ;;; Generated autoloads from packages/diff.el | |
7799 | |
7800 (defvar diff-switches (purecopy "-c") "\ | |
7801 *A string or list of strings specifying switches to be passed to diff.") | |
7802 | |
7803 (autoload 'diff "diff" "\ | |
7804 Find and display the differences between OLD and NEW files. | |
7805 Interactively the current buffer's file name is the default for NEW | |
7806 and a backup file for NEW is the default for OLD. | |
7807 With prefix arg, prompt for diff switches." t nil) | |
7808 | |
7809 (autoload 'diff-backup "diff" "\ | |
7810 Diff this file with its backup file or vice versa. | |
7811 Uses the latest backup, if there are several numerical backups. | |
7812 If this file is a backup, diff it with its original. | |
7813 The backup file is the first file given to `diff'." t nil) | |
7814 | |
7815 ;;;*** | |
7816 | |
7817 ;;;*** | |
7818 | |
7819 ;;;### (autoloads nil "doctex" "packages/doctex.el" (12983 25993)) | |
7820 ;;; Generated autoloads from packages/doctex.el | |
7821 | |
7822 ;;;### (autoloads (edit-faces) "edit-faces" "packages/edit-faces.el" (12983 26820)) | |
7823 ;;; Generated autoloads from packages/edit-faces.el | |
7824 | |
7825 (autoload 'edit-faces "edit-faces" "\ | |
7826 Alter face characteristics by editing a list of defined faces. | |
7827 Pops up a buffer containing a list of defined faces. | |
7828 | |
7829 Editing commands: | |
7830 | |
7831 \\{edit-faces-mode-map}" t nil) | |
7832 | |
7833 ;;;*** | |
7834 | |
7835 ;;;### (autoloads (report-xemacs-bug) "emacsbug" "packages/emacsbug.el" (12983 26803)) | |
7836 ;;; Generated autoloads from packages/emacsbug.el | |
7837 | |
7838 (autoload 'report-xemacs-bug "emacsbug" "\ | |
7839 Report a bug in XEmacs. | |
7840 Prompts for bug subject. Leaves you in a mail buffer." t nil) | |
7841 | |
7842 ;;;*** | |
7843 | |
7844 ;;;### (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" (12983 25994)) | |
7845 ;;; Generated autoloads from packages/emerge.el | |
7846 | |
7847 (autoload 'emerge-files "emerge" "\ | |
7848 Run Emerge on two files." t nil) | |
7849 | |
7850 (fset 'emerge 'emerge-files) | |
7851 | |
7852 (autoload 'emerge-files-with-ancestor "emerge" "\ | |
7853 Run Emerge on two files, giving another file as the ancestor." t nil) | |
7854 | |
7855 (autoload 'emerge-buffers "emerge" "\ | |
7856 Run Emerge on two buffers." t nil) | |
7857 | |
7858 (autoload 'emerge-buffers-with-ancestor "emerge" "\ | |
7859 Run Emerge on two buffers, giving another buffer as the ancestor." t nil) | |
7860 | |
7861 (autoload 'emerge-files-command "emerge" nil nil nil) | |
7862 | |
7863 (autoload 'emerge-files-with-ancestor-command "emerge" nil nil nil) | |
7864 | |
7865 (autoload 'emerge-files-remote "emerge" nil nil nil) | |
7866 | |
7867 (autoload 'emerge-files-with-ancestor-remote "emerge" nil nil nil) | |
7868 | |
7869 (autoload 'emerge-revisions "emerge" "\ | |
7870 Emerge two RCS revisions of a file." t nil) | |
7871 | |
7872 (autoload 'emerge-revisions-with-ancestor "emerge" "\ | |
7873 Emerge two RCS revisions of a file, with another revision as ancestor." t nil) | |
7874 | |
7875 (autoload 'emerge-merge-directories "emerge" nil t nil) | |
7876 | |
7877 ;;;*** | |
7878 | |
7879 ;;;### (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" (12983 26803)) | |
7880 ;;; Generated autoloads from packages/etags.el | |
7881 | |
7882 (defvar tags-build-completion-table 'ask "\ | |
7883 *If this variable is nil, then tags completion is disabled. | |
7884 If this variable is t, then things which prompt for tags will do so with | |
7885 completion across all known tags. | |
7886 If this variable is the symbol `ask', then you will be asked whether each | |
7887 tags table should be added to the completion list as it is read in. | |
7888 (With the exception that for very small tags tables, you will not be asked, | |
7889 since they can be parsed quickly.)") | |
7890 | |
7891 (defvar tags-always-exact nil "\ | |
7892 *If this variable is non-nil, then tags always looks for exact matches.") | |
7893 | |
7894 (defvar tag-table-alist nil "\ | |
7895 *A list which determines which tags files should be active for a | |
7896 given buffer. This is not really an association list, in that all | |
7897 elements are checked. The CAR of each element of this list is a | |
7898 pattern against which the buffer's file name is compared; if it | |
7899 matches, then the CDR of the list should be the name of the tags | |
7900 table to use. If more than one element of this list matches the | |
7901 buffer's file name, then all of the associated tags tables will be | |
7902 used. Earlier ones will be searched first. | |
7903 | |
7904 If the CAR of elements of this list are strings, then they are treated | |
7905 as regular-expressions against which the file is compared (like the | |
7906 auto-mode-alist). If they are not strings, then they are evaluated. | |
7907 If they evaluate to non-nil, then the current buffer is considered to | |
7908 match. | |
7909 | |
7910 If the CDR of the elements of this list are strings, then they are | |
7911 assumed to name a TAGS file. If they name a directory, then the string | |
7912 \"TAGS\" is appended to them to get the file name. If they are not | |
7913 strings, then they are evaluated, and must return an appropriate string. | |
7914 | |
7915 For example: | |
7916 (setq tag-table-alist | |
7917 '((\"/usr/src/public/perl/\" . \"/usr/src/public/perl/perl-3.0/\") | |
7918 (\"\\\\.el$\" . \"/usr/local/emacs/src/\") | |
7919 (\"/jbw/gnu/\" . \"/usr15/degree/stud/jbw/gnu/\") | |
7920 (\"\" . \"/usr/local/emacs/src/\") | |
7921 )) | |
7922 | |
7923 This means that anything in the /usr/src/public/perl/ directory should use | |
7924 the TAGS file /usr/src/public/perl/perl-3.0/TAGS; and file ending in .el should | |
7925 use the TAGS file /usr/local/emacs/src/TAGS; and anything in or below the | |
7926 directory /jbw/gnu/ should use the TAGS file /usr15/degree/stud/jbw/gnu/TAGS. | |
7927 A file called something like \"/usr/jbw/foo.el\" would use both the TAGS files | |
7928 /usr/local/emacs/src/TAGS and /usr15/degree/stud/jbw/gnu/TAGS (in that order) | |
7929 because it matches both patterns. | |
7930 | |
7931 If the buffer-local variable `buffer-tag-table' is set, then it names a tags | |
7932 table that is searched before all others when find-tag is executed from this | |
7933 buffer. | |
7934 | |
7935 If there is a file called \"TAGS\" in the same directory as the file in | |
7936 question, then that tags file will always be used as well (after the | |
7937 `buffer-tag-table' but before the tables specified by this list.) | |
7938 | |
7939 If the variable tags-file-name is set, then the tags file it names will apply | |
7940 to all buffers (for backwards compatibility.) It is searched first. | |
7941 ") | |
7942 | |
7943 (autoload 'visit-tags-table "etags" "\ | |
7944 Tell tags commands to use tags table file FILE first. | |
7945 FILE should be the name of a file created with the `etags' program. | |
7946 A directory name is ok too; it means file TAGS in that directory." t nil) | |
7947 | |
7948 (autoload 'find-tag "etags" "\ | |
7949 *Find tag whose name contains TAGNAME. | |
7950 Selects the buffer that the tag is contained in | |
7951 and puts point at its definition. | |
7952 If TAGNAME is a null string, the expression in the buffer | |
7953 around or before point is used as the tag name. | |
7954 If called interactively with a numeric argument, searches for the next tag | |
7955 in the tag table that matches the tagname used in the previous find-tag. | |
7956 If second arg OTHER-WINDOW is non-nil, uses another window to display | |
7957 the tag. | |
7958 | |
7959 This version of this function supports multiple active tags tables, | |
7960 and completion. | |
7961 | |
7962 Variables of note: | |
7963 | |
7964 tag-table-alist controls which tables apply to which buffers | |
7965 tags-file-name a default tags table | |
7966 tags-build-completion-table controls completion behavior | |
7967 buffer-tag-table another way of specifying a buffer-local table | |
7968 make-tags-files-invisible whether tags tables should be very hidden | |
7969 tag-mark-stack-max how many tags-based hops to remember" t nil) | |
7970 | |
7971 (autoload 'find-tag-other-window "etags" "\ | |
7972 *Find tag whose name contains TAGNAME. | |
7973 Selects the buffer that the tag is contained in in another window | |
7974 and puts point at its definition. | |
7975 If TAGNAME is a null string, the expression in the buffer | |
7976 around or before point is used as the tag name. | |
7977 If second arg NEXT is non-nil (interactively, with prefix arg), | |
7978 searches for the next tag in the tag table | |
7979 that matches the tagname used in the previous find-tag. | |
7980 | |
7981 This version of this function supports multiple active tags tables, | |
7982 and completion. | |
7983 | |
7984 Variables of note: | |
7985 | |
7986 tag-table-alist controls which tables apply to which buffers | |
7987 tags-file-name a default tags table | |
7988 tags-build-completion-table controls completion behavior | |
7989 buffer-tag-table another way of specifying a buffer-local table | |
7990 make-tags-files-invisible whether tags tables should be very hidden | |
7991 tag-mark-stack-max how many tags-based hops to remember" t nil) | |
7992 | |
7993 (autoload 'next-file "etags" "\ | |
7994 Select next file among files in current tag table(s). | |
7995 | |
7996 A first argument of t (prefix arg, if interactive) initializes to the | |
7997 beginning of the list of files in the (first) tags table. If the argument | |
7998 is neither nil nor t, it is evalled to initialize the list of files. | |
7999 | |
8000 Non-nil second argument NOVISIT means use a temporary buffer | |
8001 to save time and avoid uninteresting warnings. | |
8002 | |
8003 Value is nil if the file was already visited; | |
8004 if the file was newly read in, the value is the filename." t nil) | |
8005 | |
8006 (autoload 'tags-loop-continue "etags" "\ | |
8007 Continue last \\[tags-search] or \\[tags-query-replace] command. | |
8008 Used noninteractively with non-nil argument to begin such a command (the | |
8009 argument is passed to `next-file', which see). | |
8010 Two variables control the processing we do on each file: | |
8011 the value of `tags-loop-scan' is a form to be executed on each file | |
8012 to see if it is interesting (it returns non-nil if so) | |
8013 and `tags-loop-operate' is a form to execute to operate on an interesting file | |
8014 If the latter returns non-nil, we exit; otherwise we scan the next file." t nil) | |
8015 | |
8016 (autoload 'tags-search "etags" "\ | |
8017 Search through all files listed in tags table for match for REGEXP. | |
8018 Stops when a match is found. | |
8019 To continue searching for next match, use command \\[tags-loop-continue]. | |
8020 | |
8021 See documentation of variable `tag-table-alist'." t nil) | |
8022 | |
8023 (autoload 'tags-query-replace "etags" "\ | |
8024 Query-replace-regexp FROM with TO through all files listed in tags table. | |
8025 Third arg DELIMITED (prefix arg) means replace only word-delimited matches. | |
8026 If you exit (\\[keyboard-quit] or ESC), you can resume the query-replace | |
8027 with the command \\[tags-loop-continue]. | |
8028 | |
8029 See documentation of variable `tag-table-alist'." t nil) | |
8030 | |
8031 (autoload 'list-tags "etags" "\ | |
8032 Display list of tags in file FILE. | |
8033 FILE should not contain a directory spec | |
8034 unless it has one in the tag table." t nil) | |
8035 | |
8036 (autoload 'tags-apropos "etags" "\ | |
8037 Display list of all tags in tag table REGEXP matches." t nil) | |
8038 | |
8039 ;;;*** | |
8040 | |
8041 ;;;### (autoloads nil "fa-extras" "packages/fa-extras.el" (12547 2465)) | |
8042 ;;; Generated autoloads from packages/fa-extras.el | |
8043 | |
8044 ;;;### (autoloads (turn-on-fast-lock fast-lock-mode) "fast-lock" "packages/fast-lock.el" (12983 26816)) | |
8045 ;;; Generated autoloads from packages/fast-lock.el | |
8046 | |
8047 (defvar fast-lock-mode nil) | |
8048 | |
8049 (autoload 'fast-lock-mode "fast-lock" "\ | |
8050 Toggle Fast Lock mode. | |
8051 With arg, turn Fast Lock mode on if and only if arg is positive and the buffer | |
8052 is associated with a file. Enable it automatically in your `~/.emacs' by: | |
8053 | |
8054 (setq font-lock-support-mode 'fast-lock-mode) | |
8055 | |
8056 If Fast Lock mode is enabled, and the current buffer does not contain any text | |
8057 properties, any associated Font Lock cache is used if its timestamp matches the | |
8058 buffer's file, and its `font-lock-keywords' match those that you are using. | |
8059 | |
8060 Font Lock caches may be saved: | |
8061 - When you save the file's buffer. | |
8062 - When you kill an unmodified file's buffer. | |
8063 - When you exit Emacs, for all unmodified or saved buffers. | |
8064 Depending on the value of `fast-lock-save-events'. | |
8065 See also the commands `fast-lock-read-cache' and `fast-lock-save-cache'. | |
8066 | |
8067 Use \\[font-lock-fontify-buffer] to fontify the buffer if the cache is bad. | |
8068 | |
8069 Various methods of control are provided for the Font Lock cache. In general, | |
8070 see variable `fast-lock-cache-directories' and function `fast-lock-cache-name'. | |
8071 For saving, see variables `fast-lock-minimum-size', `fast-lock-save-events', | |
8072 `fast-lock-save-others' and `fast-lock-save-faces'. | |
8073 | |
8074 Use \\[fast-lock-submit-bug-report] to send bug reports or feedback." t nil) | |
8075 | |
8076 (autoload 'turn-on-fast-lock "fast-lock" "\ | |
8077 Unconditionally turn on Fast Lock mode." nil nil) | |
8078 | |
8079 (if (fboundp 'add-minor-mode) (add-minor-mode 'fast-lock-mode nil)) | |
8080 | |
8081 ;;;*** | |
8082 | |
8083 ;;;### (autoloads (feedmail-send-it) "feedmail" "packages/feedmail.el" (12983 25994)) | |
8084 ;;; Generated autoloads from packages/feedmail.el | |
8085 | |
8086 (autoload 'feedmail-send-it "feedmail" nil nil nil) | |
8087 | |
8088 ;;;*** | |
8089 | |
8090 ;;;### (autoloads (make-file-part) "file-part" "packages/file-part.el" (12983 26010)) | |
8091 ;;; Generated autoloads from packages/file-part.el | |
8092 | |
8093 (autoload 'make-file-part "file-part" "\ | |
8094 Make a file part on buffer BUFFER out of the region. Call it NAME. | |
8095 This command creates a new buffer containing the contents of the | |
8096 region and marks the buffer as referring to the specified buffer, | |
8097 called the `master buffer'. When the file-part buffer is saved, | |
8098 its changes are integrated back into the master buffer. When the | |
8099 master buffer is deleted, all file parts are deleted with it. | |
8100 | |
8101 When called from a function, expects four arguments, START, END, | |
8102 NAME, and BUFFER, all of which are optional and default to the | |
8103 beginning of BUFFER, the end of BUFFER, a name generated from | |
8104 BUFFER's name, and the current buffer, respectively." t nil) | |
8105 | |
8106 ;;;*** | |
8107 | |
8108 ;;;*** | |
8109 | |
8110 ;;;### (autoloads nil "filladapt" "packages/filladapt.el" (12983 26024)) | |
8111 ;;; Generated autoloads from packages/filladapt.el | |
8112 | |
8113 ;;;*** | |
8114 | |
8115 ;;;### (autoloads (font-lock-fontify-buffer turn-off-font-lock turn-on-font-lock font-lock-mode) "font-lock" "packages/font-lock.el" (12988 58418)) | |
8116 ;;; Generated autoloads from packages/font-lock.el | |
8117 | |
8118 (defvar font-lock-auto-fontify t "\ | |
8119 *Whether font-lock should automatically fontify files as they're loaded. | |
8120 This will only happen if font-lock has fontifying keywords for the major | |
8121 mode of the file. You can get finer-grained control over auto-fontification | |
8122 by using this variable in combination with `font-lock-mode-enable-list' or | |
8123 `font-lock-mode-disable-list'.") | |
8124 | |
8125 (defvar font-lock-mode-enable-list nil "\ | |
8126 *List of modes to auto-fontify, if `font-lock-auto-fontify' is nil.") | |
8127 | |
8128 (defvar font-lock-mode-disable-list nil "\ | |
8129 *List of modes not to auto-fontify, if `font-lock-auto-fontify' is t.") | |
8130 | |
8131 (defvar font-lock-use-colors '(color) "\ | |
8132 *Specification for when Font Lock will set up color defaults. | |
8133 Normally this should be '(color), meaning that Font Lock will set up | |
8134 color defaults that are only used on color displays. Set this to nil | |
8135 if you don't want Font Lock to set up color defaults at all. This | |
8136 should be one of | |
8137 | |
8138 -- a list of valid tags, meaning that the color defaults will be used | |
8139 when all of the tags apply. (e.g. '(color x)) | |
8140 -- a list whose first element is 'or and whose remaining elements are | |
8141 lists of valid tags, meaning that the defaults will be used when | |
8142 any of the tag lists apply. | |
8143 -- nil, meaning that the defaults should not be set up at all. | |
8144 | |
8145 \(If you specify face values in your init file, they will override any | |
8146 that Font Lock specifies, regardless of whether you specify the face | |
8147 values before or after loading Font Lock.) | |
8148 | |
8149 See also `font-lock-use-fonts'. If you want more control over the faces | |
8150 used for fontification, see the documentation of `font-lock-mode' for | |
8151 how to do it.") | |
8152 | |
8153 (defvar font-lock-use-fonts '(or (mono) (grayscale)) "\ | |
8154 *Specification for when Font Lock will set up non-color defaults. | |
8155 | |
8156 Normally this should be '(or (mono) (grayscale)), meaning that Font | |
8157 Lock will set up non-color defaults that are only used on either mono | |
8158 or grayscale displays. Set this to nil if you don't want Font Lock to | |
8159 set up non-color defaults at all. This should be one of | |
8160 | |
8161 -- a list of valid tags, meaning that the non-color defaults will be used | |
8162 when all of the tags apply. (e.g. '(grayscale x)) | |
8163 -- a list whose first element is 'or and whose remaining elements are | |
8164 lists of valid tags, meaning that the defaults will be used when | |
8165 any of the tag lists apply. | |
8166 -- nil, meaning that the defaults should not be set up at all. | |
8167 | |
8168 \(If you specify face values in your init file, they will override any | |
8169 that Font Lock specifies, regardless of whether you specify the face | |
8170 values before or after loading Font Lock.) | |
8171 | |
8172 See also `font-lock-use-colors'. If you want more control over the faces | |
8173 used for fontification, see the documentation of `font-lock-mode' for | |
8174 how to do it.") | |
8175 | |
8176 (defvar font-lock-maximum-decoration nil "\ | |
8177 *If non-nil, the maximum decoration level for fontifying. | |
8178 If nil, use the minimum decoration (equivalent to level 0). | |
8179 If t, use the maximum decoration available. | |
8180 If a number, use that level of decoration (or if not available the maximum). | |
8181 If a list, each element should be a cons pair of the form (MAJOR-MODE . LEVEL), | |
8182 where MAJOR-MODE is a symbol or t (meaning the default). For example: | |
8183 ((c++-mode . 2) (c-mode . t) (t . 1)) | |
8184 means use level 2 decoration for buffers in `c++-mode', the maximum decoration | |
8185 available for buffers in `c-mode', and level 1 decoration otherwise.") | |
8186 | |
8187 (define-obsolete-variable-alias 'font-lock-use-maximal-decoration 'font-lock-maximum-decoration) | |
8188 | |
8189 (defvar font-lock-maximum-size (* 250 1024) "\ | |
8190 *If non-nil, the maximum size for buffers for fontifying. | |
8191 Only buffers less than this can be fontified when Font Lock mode is turned on. | |
8192 If nil, means size is irrelevant. | |
8193 If a list, each element should be a cons pair of the form (MAJOR-MODE . SIZE), | |
8194 where MAJOR-MODE is a symbol or t (meaning the default). For example: | |
8195 ((c++-mode . 256000) (c-mode . 256000) (rmail-mode . 1048576)) | |
8196 means that the maximum size is 250K for buffers in `c++-mode' or `c-mode', one | |
8197 megabyte for buffers in `rmail-mode', and size is irrelevant otherwise.") | |
8198 | |
8199 (defvar font-lock-keywords nil "\ | |
8200 *A list of the keywords to highlight. | |
8201 Each element should be of the form: | |
8202 | |
8203 MATCHER | |
8204 (MATCHER . MATCH) | |
8205 (MATCHER . FACENAME) | |
8206 (MATCHER . HIGHLIGHT) | |
8207 (MATCHER HIGHLIGHT ...) | |
8208 | |
8209 where HIGHLIGHT should be either MATCH-HIGHLIGHT or MATCH-ANCHORED. | |
8210 | |
8211 For highlighting single items, typically only MATCH-HIGHLIGHT is required. | |
8212 However, if an item or (typically) items is to be hightlighted following the | |
8213 instance of another item (the anchor) then MATCH-ANCHORED may be required. | |
8214 | |
8215 MATCH-HIGHLIGHT should be of the form: | |
8216 | |
8217 (MATCH FACENAME OVERRIDE LAXMATCH) | |
8218 | |
8219 Where MATCHER can be either the regexp to search for, or the function name to | |
8220 call to make the search (called with one argument, the limit of the search). | |
8221 MATCH is the subexpression of MATCHER to be highlighted. FACENAME is either | |
8222 a symbol naming a face, or an expression whose value is the face name to use. | |
8223 If you want FACENAME to be a symbol that evaluates to a face, use a form | |
8224 like \"(progn sym)\". | |
8225 | |
8226 OVERRIDE and LAXMATCH are flags. If OVERRIDE is t, existing fontification may | |
8227 be overwritten. If `keep', only parts not already fontified are highlighted. | |
8228 If `prepend' or `append', existing fontification is merged with the new, in | |
8229 which the new or existing fontification, respectively, takes precedence. | |
8230 If LAXMATCH is non-nil, no error is signalled if there is no MATCH in MATCHER. | |
8231 | |
8232 For example, an element of the form highlights (if not already highlighted): | |
8233 | |
8234 \"\\\\\\=<foo\\\\\\=>\" Discrete occurrences of \"foo\" in the value of the | |
8235 variable `font-lock-keyword-face'. | |
8236 (\"fu\\\\(bar\\\\)\" . 1) Substring \"bar\" within all occurrences of \"fubar\" in | |
8237 the value of `font-lock-keyword-face'. | |
8238 (\"fubar\" . fubar-face) Occurrences of \"fubar\" in the value of `fubar-face'. | |
8239 (\"foo\\\\|bar\" 0 foo-bar-face t) | |
8240 Occurrences of either \"foo\" or \"bar\" in the value | |
8241 of `foo-bar-face', even if already highlighted. | |
8242 | |
8243 MATCH-ANCHORED should be of the form: | |
8244 | |
8245 (MATCHER PRE-MATCH-FORM POST-MATCH-FORM MATCH-HIGHLIGHT ...) | |
8246 | |
8247 Where MATCHER is as for MATCH-HIGHLIGHT with one exception. The limit of the | |
8248 search is currently guaranteed to be (no greater than) the end of the line. | |
8249 PRE-MATCH-FORM and POST-MATCH-FORM are evaluated before the first, and after | |
8250 the last, instance MATCH-ANCHORED's MATCHER is used. Therefore they can be | |
8251 used to initialise before, and cleanup after, MATCHER is used. Typically, | |
8252 PRE-MATCH-FORM is used to move to some position relative to the original | |
8253 MATCHER, before starting with MATCH-ANCHORED's MATCHER. POST-MATCH-FORM might | |
8254 be used to move, before resuming with MATCH-ANCHORED's parent's MATCHER. | |
8255 | |
8256 For example, an element of the form highlights (if not already highlighted): | |
8257 | |
8258 (\"\\\\\\=<anchor\\\\\\=>\" (0 anchor-face) (\"\\\\\\=<item\\\\\\=>\" nil nil (0 item-face))) | |
8259 | |
8260 Discrete occurrences of \"anchor\" in the value of `anchor-face', and subsequent | |
8261 discrete occurrences of \"item\" (on the same line) in the value of `item-face'. | |
8262 (Here PRE-MATCH-FORM and POST-MATCH-FORM are nil. Therefore \"item\" is | |
8263 initially searched for starting from the end of the match of \"anchor\", and | |
8264 searching for subsequent instance of \"anchor\" resumes from where searching | |
8265 for \"item\" concluded.) | |
8266 | |
8267 Note that the MATCH-ANCHORED feature is experimental; in the future, we may | |
8268 replace it with other ways of providing this functionality. | |
8269 | |
8270 These regular expressions should not match text which spans lines. While | |
8271 \\[font-lock-fontify-buffer] handles multi-line patterns correctly, updating | |
8272 when you edit the buffer does not, since it considers text one line at a time. | |
8273 | |
8274 Be very careful composing regexps for this list; | |
8275 the wrong pattern can dramatically slow things down!") | |
8276 | |
8277 (make-variable-buffer-local 'font-lock-keywords) | |
8278 | |
8279 (defvar font-lock-mode nil) | |
8280 | |
8281 (defvar font-lock-mode-hook nil "\ | |
8282 Function or functions to run on entry to font-lock-mode.") | |
8283 | |
8284 (autoload 'font-lock-mode "font-lock" "\ | |
8285 Toggle Font Lock Mode. | |
8286 With arg, turn font-lock mode on if and only if arg is positive. | |
8287 | |
8288 When Font Lock mode is enabled, text is fontified as you type it: | |
8289 | |
8290 - Comments are displayed in `font-lock-comment-face'; | |
8291 - Strings are displayed in `font-lock-string-face'; | |
8292 - Documentation strings (in Lisp-like languages) are displayed in | |
8293 `font-lock-doc-string-face'; | |
8294 - Language keywords (\"reserved words\") are displayed in | |
8295 `font-lock-keyword-face'; | |
8296 - Function names in their defining form are displayed in | |
8297 `font-lock-function-name-face'; | |
8298 - Variable names in their defining form are displayed in | |
8299 `font-lock-variable-name-face'; | |
8300 - Type names are displayed in `font-lock-type-face'; | |
8301 - References appearing in help files and the like are displayed | |
8302 in `font-lock-reference-face'; | |
8303 - Preprocessor declarations are displayed in | |
8304 `font-lock-preprocessor-face'; | |
8305 | |
8306 and | |
8307 | |
8308 - Certain other expressions are displayed in other faces according | |
8309 to the value of the variable `font-lock-keywords'. | |
8310 | |
8311 Where modes support different levels of fontification, you can use the variable | |
8312 `font-lock-maximum-decoration' to specify which level you generally prefer. | |
8313 When you turn Font Lock mode on/off the buffer is fontified/defontified, though | |
8314 fontification occurs only if the buffer is less than `font-lock-maximum-size'. | |
8315 To fontify a buffer without turning on Font Lock mode, and regardless of buffer | |
8316 size, you can use \\[font-lock-fontify-buffer]. | |
8317 | |
8318 See the variable `font-lock-keywords' for customization." t nil) | |
8319 | |
8320 (autoload 'turn-on-font-lock "font-lock" "\ | |
8321 Unconditionally turn on Font Lock mode." nil nil) | |
8322 | |
8323 (autoload 'turn-off-font-lock "font-lock" "\ | |
8324 Unconditionally turn off Font Lock mode." nil nil) | |
8325 | |
8326 (autoload 'font-lock-fontify-buffer "font-lock" "\ | |
8327 Fontify the current buffer the way `font-lock-mode' would. | |
8328 See `font-lock-mode' for details. | |
8329 | |
8330 This can take a while for large buffers." t nil) | |
8331 | |
8332 (add-minor-mode 'font-lock-mode " Font") | |
8333 | |
8334 ;;;*** | |
8335 | |
8336 ;;;*** | |
8337 | |
8338 ;;;*** | |
8339 | |
8340 ;;;### (autoloads nil "fontl-hooks" "packages/fontl-hooks.el" (12988 56407)) | |
8341 ;;; Generated autoloads from packages/fontl-hooks.el | |
8342 | |
8343 ;;;### (autoloads nil "func-menu" "packages/func-menu.el" (12983 26019)) | |
8344 ;;; Generated autoloads from packages/func-menu.el | |
8345 | |
8346 ;;;### (autoloads (sc-mode) "generic-sc" "packages/generic-sc.el" (12983 26798)) | |
8347 ;;; Generated autoloads from packages/generic-sc.el | |
8348 | |
8349 (autoload 'sc-mode "generic-sc" "\ | |
8350 Toggle sc-mode. | |
8351 SYSTEM can be sccs, rcs or cvs. | |
8352 Cvs requires the pcl-cvs package. | |
8353 | |
8354 The following commands are available | |
8355 \\[sc-next-operation] perform next logical source control operation on current file | |
8356 \\[sc-show-changes] compare the version being edited with an older one | |
8357 \\[sc-version-diff-file] compare two older versions of a file | |
8358 \\[sc-show-history] display change history of current file | |
8359 \\[sc-visit-previous-revision] display an older revision of current file | |
8360 \\[sc-revert-file] revert buffer to last checked-in version | |
8361 \\[sc-list-all-locked-files] show all files locked in current directory | |
8362 \\[sc-list-locked-files] show all files locked by you in current directory | |
8363 \\[sc-list-registered-files] show all files under source control in current directory | |
8364 \\[sc-update-directory] get fresh copies of files checked-in by others in current directory | |
8365 \\[sc-rename-file] rename the current file and its source control file | |
8366 | |
8367 | |
8368 While you are entering a change log message for a check in, sc-log-entry-mode | |
8369 will be in effect. | |
8370 | |
8371 Global user options: | |
8372 sc-diff-command A list consisting of the command and flags | |
8373 to be used for generating context diffs. | |
8374 sc-mode-expert suppresses some conformation prompts, | |
8375 notably for delta aborts and file saves. | |
8376 sc-max-log-size specifies the maximum allowable size | |
8377 of a log message plus one. | |
8378 | |
8379 | |
8380 When using SCCS you have additional commands and options | |
8381 | |
8382 \\[sccs-insert-headers] insert source control headers in current file | |
8383 | |
8384 When you generate headers into a buffer using \\[sccs-insert-headers], | |
8385 the value of sc-insert-headers-hook is called before insertion. If the | |
8386 file is recognized a C or Lisp source, sc-insert-c-header-hook or | |
8387 sc-insert-lisp-header-hook is called after insertion respectively. | |
8388 | |
8389 sccs-headers-wanted which %-keywords to insert when adding | |
8390 headers with C-c h | |
8391 sccs-insert-static if non-nil, keywords inserted in C files | |
8392 get stuffed in a static string area so that | |
8393 what(1) can see them in the compiled object code. | |
8394 | |
8395 When using CVS you have additional commands | |
8396 | |
8397 \\[sc-cvs-update-directory] update the current directory using pcl-cvs | |
8398 \\[sc-cvs-file-status] show the CVS status of current file | |
8399 " t nil) | |
8400 | |
8401 ;;;*** | |
8402 | |
8403 ;;;### (autoloads (gnuserv-start) "gnuserv" "packages/gnuserv.el" (12983 26816)) | |
8404 ;;; Generated autoloads from packages/gnuserv.el | |
8405 | |
8406 (autoload 'gnuserv-start "gnuserv" "\ | |
8407 Allow this Emacs process to be a server for client processes. | |
8408 This starts a server communications subprocess through which | |
8409 client \"editors\" (gnuclient and gnudoit) can send editing commands to | |
8410 this Emacs job. See the gnuserv(1) manual page for more details. | |
8411 | |
8412 Prefix arg means just kill any existing server communications subprocess." t nil) | |
8413 | |
8414 ;;;*** | |
8415 | |
8416 ;;;### (autoloads (gopher-atpoint gopher) "gopher" "packages/gopher.el" (12983 25998)) | |
8417 ;;; Generated autoloads from packages/gopher.el | |
8418 | |
8419 (autoload 'gopher "gopher" "\ | |
8420 Start a gopher session. With C-u, prompt for a gopher server." t nil) | |
8421 | |
8422 (autoload 'gopher-atpoint "gopher" "\ | |
8423 Try to interpret the text around point as a gopher bookmark, and dispatch | |
8424 to that object." t nil) | |
8425 | |
8426 ;;;*** | |
8427 | |
8428 ;;;### (autoloads (hexlify-buffer hexl-find-file hexl-mode) "hexl" "packages/hexl.el" (12983 26805)) | |
8429 ;;; Generated autoloads from packages/hexl.el | |
8430 | |
8431 (autoload 'hexl-mode "hexl" "\ | |
8432 \\<hexl-mode-map> | |
8433 A major mode for editing binary files in hex dump format. | |
8434 | |
8435 This function automatically converts a buffer into the hexl format | |
8436 using the function `hexlify-buffer'. | |
8437 | |
8438 Each line in the buffer has an \"address\" (displayed in hexadecimal) | |
8439 representing the offset into the file that the characters on this line | |
8440 are at and 16 characters from the file (displayed as hexadecimal | |
8441 values grouped every 16 bits) and as their ASCII values. | |
8442 | |
8443 If any of the characters (displayed as ASCII characters) are | |
8444 unprintable (control or meta characters) they will be replaced as | |
8445 periods. | |
8446 | |
8447 If `hexl-mode' is invoked with an argument the buffer is assumed to be | |
8448 in hexl format. | |
8449 | |
8450 A sample format: | |
8451 | |
8452 HEX ADDR: 0001 0203 0405 0607 0809 0a0b 0c0d 0e0f ASCII-TEXT | |
8453 -------- ---- ---- ---- ---- ---- ---- ---- ---- ---------------- | |
8454 00000000: 5468 6973 2069 7320 6865 786c 2d6d 6f64 This is hexl-mod | |
8455 00000010: 652e 2020 4561 6368 206c 696e 6520 7265 e. Each line re | |
8456 00000020: 7072 6573 656e 7473 2031 3620 6279 7465 presents 16 byte | |
8457 00000030: 7320 6173 2068 6578 6164 6563 696d 616c s as hexadecimal | |
8458 00000040: 2041 5343 4949 0a61 6e64 2070 7269 6e74 ASCII.and print | |
8459 00000050: 6162 6c65 2041 5343 4949 2063 6861 7261 able ASCII chara | |
8460 00000060: 6374 6572 732e 2020 416e 7920 636f 6e74 cters. Any cont | |
8461 00000070: 726f 6c20 6f72 206e 6f6e 2d41 5343 4949 rol or non-ASCII | |
8462 00000080: 2063 6861 7261 6374 6572 730a 6172 6520 characters.are | |
8463 00000090: 6469 7370 6c61 7965 6420 6173 2070 6572 displayed as per | |
8464 000000a0: 696f 6473 2069 6e20 7468 6520 7072 696e iods in the prin | |
8465 000000b0: 7461 626c 6520 6368 6172 6163 7465 7220 table character | |
8466 000000c0: 7265 6769 6f6e 2e0a region.. | |
8467 | |
8468 Movement is as simple as movement in a normal emacs text buffer. Most | |
8469 cursor movement bindings are the same (ie. Use \\[hexl-backward-char], \\[hexl-forward-char], \\[hexl-next-line], and \\[hexl-previous-line] | |
8470 to move the cursor left, right, down, and up). | |
8471 | |
8472 Advanced cursor movement commands (ala \\[hexl-beginning-of-line], \\[hexl-end-of-line], \\[hexl-beginning-of-buffer], and \\[hexl-end-of-buffer]) are | |
8473 also supported. | |
8474 | |
8475 There are several ways to change text in hexl mode: | |
8476 | |
8477 ASCII characters (character between space (0x20) and tilde (0x7E)) are | |
8478 bound to self-insert so you can simply type the character and it will | |
8479 insert itself (actually overstrike) into the buffer. | |
8480 | |
8481 \\[hexl-quoted-insert] followed by another keystroke allows you to insert the key even if | |
8482 it isn't bound to self-insert. An octal number can be supplied in place | |
8483 of another key to insert the octal number's ASCII representation. | |
8484 | |
8485 \\[hexl-insert-hex-char] will insert a given hexadecimal value (if it is between 0 and 0xFF) | |
8486 into the buffer at the current point. | |
8487 | |
8488 \\[hexl-insert-octal-char] will insert a given octal value (if it is between 0 and 0377) | |
8489 into the buffer at the current point. | |
8490 | |
8491 \\[hexl-insert-decimal-char] will insert a given decimal value (if it is between 0 and 255) | |
8492 into the buffer at the current point. | |
8493 | |
8494 \\[hexl-mode-exit] will exit hexl-mode. | |
8495 | |
8496 Note: saving the file with any of the usual Emacs commands | |
8497 will actually convert it back to binary format while saving. | |
8498 | |
8499 You can use \\[hexl-find-file] to visit a file in hexl-mode. | |
8500 | |
8501 \\[describe-bindings] for advanced commands." t nil) | |
8502 | |
8503 (autoload 'hexl-find-file "hexl" "\ | |
8504 Edit file FILENAME in hexl-mode. | |
8505 Switch to a buffer visiting file FILENAME, creating one in none exists." t nil) | |
8506 | |
8507 (autoload 'hexlify-buffer "hexl" "\ | |
8508 Convert a binary buffer to hexl format. | |
8509 This discards the buffer's undo information." t nil) | |
8510 | |
8511 ;;;*** | |
8512 | |
8513 ;;;### (autoloads (hypropos-popup-menu hypropos-set-variable hyper-describe-function hyper-describe-variable hyper-apropos) "hyper-apropos" "packages/hyper-apropos.el" (12983 26022)) | |
8514 ;;; Generated autoloads from packages/hyper-apropos.el | |
8515 | |
8516 (defvar hypropos-show-brief-docs t "\ | |
8517 *If non-nil, `hyper-apropos' will display some documentation in the | |
8518 \"*Hyper Apropos*\" buffer. Setting this to nil will speed up searches.") | |
8519 | |
8520 (autoload 'hyper-apropos "hyper-apropos" "\ | |
8521 Display lists of functions and variables matching REGEXP | |
8522 in buffer \"*Hyper Apropos*\". If optional prefix arg is given, then the value | |
8523 of `hypropos-programming-apropos' is toggled for this search. | |
8524 See also `hyper-apropos-mode'." t nil) | |
8525 | |
8526 (autoload 'hyper-describe-variable "hyper-apropos" "\ | |
8527 Hypertext drop-in replacement for `describe-variable'. | |
8528 See also `hyper-apropos' and `hyper-describe-function'." t nil) | |
8529 | |
8530 (autoload 'hyper-describe-function "hyper-apropos" "\ | |
8531 Hypertext replacement for `describe-function'. Unlike `describe-function' | |
8532 in that the symbol under the cursor is the default if it is a function. | |
8533 See also `hyper-apropos' and `hyper-describe-variable'." t nil) | |
8534 | |
8535 (autoload 'hypropos-set-variable "hyper-apropos" "\ | |
8536 Interactively set the variable on the current line." t nil) | |
8537 | |
8538 (autoload 'hypropos-popup-menu "hyper-apropos" nil t nil) | |
8539 | |
8540 ;;;*** | |
8541 | |
8542 ;;;### (autoloads (icomplete-minibuffer-setup icomplete-mode) "icomplete" "packages/icomplete.el" (12989 49073)) | |
8543 ;;; Generated autoloads from packages/icomplete.el | |
8544 | |
8545 (autoload 'icomplete-mode "icomplete" "\ | |
8546 Activate incremental minibuffer completion for this emacs session, | |
8547 or deactivate with negative prefix arg." t nil) | |
8548 | |
8549 (autoload 'icomplete-minibuffer-setup "icomplete" "\ | |
8550 Run in minibuffer on activation to establish incremental completion. | |
8551 Usually run by inclusion in `minibuffer-setup-hook'." nil nil) | |
8552 | |
8553 ;;;*** | |
8554 | |
8555 ;;;### (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" (12983 26798)) | |
8556 ;;; Generated autoloads from packages/info.el | |
8557 | |
8558 (autoload 'info "info" "\ | |
8559 Enter Info, the documentation browser. | |
8560 Optional argument FILE specifies the file to examine; | |
8561 the default is the top-level directory of Info. | |
8562 | |
8563 In interactive use, a prefix argument directs this command | |
8564 to read a file name from the minibuffer." t nil) | |
8565 | |
8566 (autoload 'Info-query "info" "\ | |
8567 Enter Info, the documentation browser. Prompt for name of Info file." t nil) | |
8568 | |
8569 (autoload 'Info-goto-node "info" "\ | |
8570 Go to info node named NAME. Give just NODENAME or (FILENAME)NODENAME. | |
8571 Actually, the following interpretations of NAME are tried in order: | |
8572 (FILENAME)NODENAME | |
8573 (FILENAME) (using Top node) | |
8574 NODENAME (in current file) | |
8575 TAGNAME (see below) | |
8576 FILENAME (using Top node) | |
8577 where TAGNAME is a string that appears in quotes: \"TAGNAME\", in an | |
8578 annotation for any node of any file. (See `a' and `x' commands.)" t nil) | |
8579 | |
8580 (autoload 'Info-visit-file "info" "\ | |
8581 Directly visit an info file." t nil) | |
8582 | |
8583 (autoload 'Info-search "info" "\ | |
8584 Search for REGEXP, starting from point, and select node it's found in." t nil) | |
8585 | |
8586 (autoload 'Info-emacs-command "info" "\ | |
8587 Look up an Emacs command in the Emacs manual in the Info system. | |
8588 This command is designed to be used whether you are already in Info or not." t nil) | |
8589 | |
8590 (autoload 'Info-goto-emacs-command-node "info" "\ | |
8591 Look up an Emacs command in the Emacs manual in the Info system. | |
8592 This command is designed to be used whether you are already in Info or not." t nil) | |
8593 | |
8594 (autoload 'Info-goto-emacs-key-command-node "info" "\ | |
8595 Look up an Emacs key sequence in the Emacs manual in the Info system. | |
8596 This command is designed to be used whether you are already in Info or not." t nil) | |
8597 | |
8598 (autoload 'Info-emacs-key "info" "\ | |
8599 Look up an Emacs key sequence in the Emacs manual in the Info system. | |
8600 This command is designed to be used whether you are already in Info or not." t nil) | |
8601 | |
8602 (autoload 'Info-elisp-ref "info" "\ | |
8603 Look up an Emacs Lisp function in the Elisp manual in the Info system. | |
8604 This command is designed to be used whether you are already in Info or not." t nil) | |
8605 | |
8606 ;;;*** | |
8607 | |
8608 ;;;### (autoloads (batch-info-validate Info-validate Info-split Info-tagify) "informat" "packages/informat.el" (12983 26805)) | |
8609 ;;; Generated autoloads from packages/informat.el | |
8610 | |
8611 (autoload 'Info-tagify "informat" "\ | |
8612 Create or update Info-file tag table in current buffer." t nil) | |
8613 | |
8614 (autoload 'Info-split "informat" "\ | |
8615 Split an info file into an indirect file plus bounded-size subfiles. | |
8616 Each subfile will be up to 50,000 characters plus one node. | |
8617 | |
8618 To use this command, first visit a large Info file that has a tag | |
8619 table. The buffer is modified into a (small) indirect info file which | |
8620 should be saved in place of the original visited file. | |
8621 | |
8622 The subfiles are written in the same directory the original file is | |
8623 in, with names generated by appending `-' and a number to the original | |
8624 file name. The indirect file still functions as an Info file, but it | |
8625 contains just the tag table and a directory of subfiles." t nil) | |
8626 | |
8627 (autoload 'Info-validate "informat" "\ | |
8628 Check current buffer for validity as an Info file. | |
8629 Check that every node pointer points to an existing node." t nil) | |
8630 | |
8631 (autoload 'batch-info-validate "informat" "\ | |
8632 Runs `Info-validate' on the files remaining on the command line. | |
8633 Must be used only with -batch, and kills Emacs on completion. | |
8634 Each file will be processed even if an error occurred previously. | |
8635 For example, invoke \"emacs -batch -f batch-info-validate $info/ ~/*.info\"" nil nil) | |
8636 | |
8637 ;;;*** | |
8638 | |
8639 ;;;### (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" (12983 26806)) | |
8640 ;;; Generated autoloads from packages/ispell.el | |
8641 | |
8642 (defvar ispell-personal-dictionary nil "\ | |
8643 *File name of your personal spelling dictionary, or nil. | |
8644 If nil, the default personal dictionary, \"~/.ispell_DICTNAME\" is used, | |
8645 where DICTNAME is the name of your default dictionary.") | |
8646 | |
8647 (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))) | |
8648 | |
8649 (defvar ispell-dictionary-alist-2 '(("svenska" "[A-Za-z}{|\\133\\135\\\\]" "[^A-Za-z}{|\\133\\135\\\\]" "[']" nil ("-C") nil) ("svenska8" "[A-Za-zåäöÅÄö]" "[^A-Za-zåäöÅÄö]" "[']" nil ("-C" "-d" "svenska") "~list") ("francais7" "[A-Za-z]" "[^A-Za-z]" "[`'^---]" t nil nil) ("francais" "[A-Za-zÀÂÆÇÈÉÊËÎÏÔÙÛÜàâçèéêëîïôùûü]" "[^A-Za-zÀÂÆÇÈÉÊËÎÏÔÙÛÜàâçèéêëîïôùûü]" "[---']" t nil "~list") ("francais-tex" "[A-Za-zÀÂÆÇÈÉÊËÎÏÔÙÛÜàâçèéêëîïôùûü\\]" "[^A-Za-zÀÂÆÇÈÉÊËÎÏÔÙÛÜàâçèéêëîïôùûü\\]" "[---'^`\"]" t nil "~tex") ("dansk" "[A-ZÆØÅa-zæøå]" "[^A-ZÆØÅa-zæøå]" "" nil ("-C") nil))) | |
8650 | |
8651 (defvar ispell-dictionary-alist (append ispell-dictionary-alist-1 ispell-dictionary-alist-2) "\ | |
8652 An alist of dictionaries and their associated parameters. | |
8653 | |
8654 Each element of this list is also a list: | |
8655 | |
8656 \(DICTIONARY-NAME CASECHARS NOT-CASECHARS OTHERCHARS MANY-OTHERCHARS-P | |
8657 ISPELL-ARGS EXTENDED-CHARACTER-MODE) | |
8658 | |
8659 DICTIONARY-NAME is a possible value of variable `ispell-dictionary', nil | |
8660 means the default dictionary. | |
8661 | |
8662 CASECHARS is a regular expression of valid characters that comprise a | |
8663 word. | |
8664 | |
8665 NOT-CASECHARS is the opposite regexp of CASECHARS. | |
8666 | |
8667 OTHERCHARS is a regular expression of other characters that are valid | |
8668 in word constructs. Otherchars cannot be adjacent to each other in a | |
8669 word, nor can they begin or end a word. This implies we can't check | |
8670 \"Stevens'\" as a correct possessive and other correct formations. | |
8671 | |
8672 Hint: regexp syntax requires the hyphen to be declared first here. | |
8673 | |
8674 MANY-OTHERCHARS-P is non-nil if many otherchars are to be allowed in a | |
8675 word instead of only one. | |
8676 | |
8677 ISPELL-ARGS is a list of additional arguments passed to the ispell | |
8678 subprocess. | |
8679 | |
8680 EXTENDED-CHARACTER-MODE should be used when dictionaries are used which | |
8681 have been configured in an Ispell affix file. (For example, umlauts | |
8682 can be encoded as \\\"a, a\\\", \"a, ...) Defaults are ~tex and ~nroff | |
8683 in English. This has the same effect as the command-line `-T' option. | |
8684 The buffer Major Mode controls Ispell's parsing in tex or nroff mode, | |
8685 but the dictionary can control the extended character mode. | |
8686 Both defaults can be overruled in a buffer-local fashion. See | |
8687 `ispell-parsing-keyword' for details on this. | |
8688 | |
8689 Note that the CASECHARS and OTHERCHARS slots of the alist should | |
8690 contain the same character set as casechars and otherchars in the | |
8691 language.aff file (e.g., english.aff).") | |
8692 | |
8693 (defvar ispell-menu-map nil "\ | |
8694 Key map for ispell menu") | |
8695 | |
8696 (defvar ispell-menu-xemacs nil "\ | |
8697 Spelling menu for XEmacs.") | |
8698 | |
8699 (defconst ispell-menu-map-needed (and (not ispell-menu-map) (string-lessp "19" emacs-version) (not (string-match "XEmacs" emacs-version)))) | |
8700 | |
8701 (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)))))))) | |
8702 | |
8703 (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)))) | |
8704 | |
8705 (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)))) | |
8706 | |
8707 (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)))) | |
8708 | |
8709 (defvar ispell-local-pdict ispell-personal-dictionary "\ | |
8710 A buffer local variable containing the current personal dictionary. | |
8711 If non-nil, the value must be a string, which is a file name. | |
8712 | |
8713 If you specify a personal dictionary for the current buffer which is | |
8714 different from the current personal dictionary, the effect is similar | |
8715 to calling \\[ispell-change-dictionary]. This variable is automatically | |
8716 set when defined in the file with either `ispell-pdict-keyword' or the | |
8717 local variable syntax.") | |
8718 | |
8719 (define-key global-map "¤" 'ispell-word) | |
8720 | |
8721 (autoload 'ispell-word "ispell" "\ | |
8722 Check spelling of word under or before the cursor. | |
8723 If the word is not found in dictionary, display possible corrections | |
8724 in a window allowing you to choose one. | |
8725 | |
8726 With a prefix argument (or if CONTINUE is non-nil), | |
8727 resume interrupted spell-checking of a buffer or region. | |
8728 | |
8729 If optional argument FOLLOWING is non-nil or if `ispell-following-word' | |
8730 is non-nil when called interactively, then the following word | |
8731 \(rather than preceding) is checked when the cursor is not over a word. | |
8732 When the optional argument QUIETLY is non-nil or `ispell-quietly' is non-nil | |
8733 when called interactively, non-corrective messages are suppressed. | |
8734 | |
8735 Word syntax described by `ispell-dictionary-alist' (which see). | |
8736 | |
8737 This will check or reload the dictionary. Use \\[ispell-change-dictionary] | |
8738 or \\[ispell-region] to update the Ispell process." t nil) | |
8739 | |
8740 (autoload 'ispell-help "ispell" "\ | |
8741 Display a list of the options available when a misspelling is encountered. | |
8742 | |
8743 Selections are: | |
8744 | |
8745 DIGIT: Replace the word with a digit offered in the *Choices* buffer. | |
8746 SPC: Accept word this time. | |
8747 `i': Accept word and insert into private dictionary. | |
8748 `a': Accept word for this session. | |
8749 `A': Accept word and place in `buffer-local dictionary'. | |
8750 `r': Replace word with typed-in value. Rechecked. | |
8751 `R': Replace word with typed-in value. Query-replaced in buffer. Rechecked. | |
8752 `?': Show these commands. | |
8753 `x': Exit spelling buffer. Move cursor to original point. | |
8754 `X': Exit spelling buffer. Leaves cursor at the current point, and permits | |
8755 the aborted check to be completed later. | |
8756 `q': Quit spelling session (Kills ispell process). | |
8757 `l': Look up typed-in replacement in alternate dictionary. Wildcards okay. | |
8758 `u': Like `i', but the word is lower-cased first. | |
8759 `m': Like `i', but allows one to include dictionary completion information. | |
8760 `C-l': redraws screen | |
8761 `C-r': recursive edit | |
8762 `C-z': suspend emacs or iconify frame" nil nil) | |
8763 | |
8764 (autoload 'ispell-kill-ispell "ispell" "\ | |
8765 Kill current Ispell process (so that you may start a fresh one). | |
8766 With NO-ERROR, just return non-nil if there was no Ispell running." t nil) | |
8767 | |
8768 (autoload 'ispell-change-dictionary "ispell" "\ | |
8769 Change `ispell-dictionary' (q.v.) and kill old Ispell process. | |
8770 A new one will be started as soon as necessary. | |
8771 | |
8772 By just answering RET you can find out what the current dictionary is. | |
8773 | |
8774 With prefix argument, set the default directory." t nil) | |
8775 | |
8776 (autoload 'ispell-region "ispell" "\ | |
8777 Interactively check a region for spelling errors." t nil) | |
8778 | |
8779 (autoload 'ispell-buffer "ispell" "\ | |
8780 Check the current buffer for spelling errors interactively." t nil) | |
8781 | |
8782 (autoload 'ispell-continue "ispell" nil t nil) | |
8783 | |
8784 (autoload 'ispell-complete-word "ispell" "\ | |
8785 Look up word before or under point in dictionary (see lookup-words command) | |
8786 and try to complete it. If optional INTERIOR-FRAG is non-nil then the word | |
8787 may be a character sequence inside of a word. | |
8788 | |
8789 Standard ispell choices are then available." t nil) | |
8790 | |
8791 (autoload 'ispell-complete-word-interior-frag "ispell" "\ | |
8792 Completes word matching character sequence inside a word." t nil) | |
8793 | |
8794 (autoload 'ispell-minor-mode "ispell" "\ | |
8795 Toggle Ispell minor mode. | |
8796 With prefix arg, turn Ispell minor mode on iff arg is positive. | |
8797 | |
8798 In Ispell minor mode, pressing SPC or RET | |
8799 warns you if the previous word is incorrectly spelled." t nil) | |
8800 | |
8801 (autoload 'ispell-message "ispell" "\ | |
8802 Check the spelling of a mail message or news post. | |
8803 Don't check spelling of message headers except the Subject field. | |
8804 Don't check included messages. | |
8805 | |
8806 To abort spell checking of a message region and send the message anyway, | |
8807 use the `x' or `q' command. (Any subsequent regions will be checked.) | |
8808 The `X' command aborts the message send so that you can edit the buffer. | |
8809 | |
8810 To spell-check whenever a message is sent, include the appropriate lines | |
8811 in your .emacs file: | |
8812 (add-hook 'message-send-hook 'ispell-message) | |
8813 (add-hook 'mail-send-hook 'ispell-message) | |
8814 (add-hook 'mh-before-send-letter-hook 'ispell-message) | |
8815 | |
8816 You can bind this to the key C-c i in GNUS or mail by adding to | |
8817 `news-reply-mode-hook' or `mail-mode-hook' the following lambda expression: | |
8818 (function (lambda () (local-set-key \"\\C-ci\" 'ispell-message)))" t nil) | |
8819 | |
8820 ;;;*** | |
8821 | |
8822 ;;;### (autoloads (jka-compr-install toggle-auto-compression jka-compr-load) "jka-compr" "packages/jka-compr.el" (12983 26820)) | |
8823 ;;; Generated autoloads from packages/jka-compr.el | |
8824 | |
8825 (autoload 'jka-compr-load "jka-compr" "\ | |
8826 Documented as original." nil nil) | |
8827 | |
8828 (autoload 'toggle-auto-compression "jka-compr" "\ | |
8829 Toggle automatic file compression and uncompression. | |
8830 With prefix argument ARG, turn auto compression on if positive, else off. | |
8831 Returns the new status of auto compression (non-nil means on). | |
8832 If the argument MESSAGE is non-nil, it means to print a message | |
8833 saying whether the mode is now on or off." t nil) | |
8834 | |
8835 (autoload 'jka-compr-install "jka-compr" "\ | |
8836 Install jka-compr. | |
8837 This adds entries to `file-name-handler-alist' and `auto-mode-alist' | |
8838 and `inhibit-first-line-modes-suffixes'." nil nil) | |
8839 | |
8840 ;;;*** | |
8841 | |
8842 ;;;### (autoloads (manual-entry) "jwz-man" "packages/jwz-man.el" (12875 12533)) | |
8843 ;;; Generated autoloads from packages/jwz-man.el | |
8844 | |
8845 (autoload 'manual-entry "jwz-man" "\ | |
8846 Display the Unix manual entry (or entries) for TOPIC." t nil) | |
8847 | |
8848 ;;;*** | |
8849 | |
8850 ;;;### (autoloads (turn-on-lazy-lock lazy-lock-mode) "lazy-lock" "packages/lazy-lock.el" (12983 26819)) | |
8851 ;;; Generated autoloads from packages/lazy-lock.el | |
8852 | |
8853 (defvar lazy-lock-mode nil) | |
8854 | |
8855 (autoload 'lazy-lock-mode "lazy-lock" "\ | |
8856 Toggle Lazy Lock mode. | |
8857 With arg, turn Lazy Lock mode on if and only if arg is positive and the buffer | |
8858 is at least `lazy-lock-minimum-size' characters long. | |
8859 | |
8860 When Lazy Lock mode is enabled, fontification is demand-driven and stealthy: | |
8861 | |
8862 - Fontification occurs in visible parts of buffers when necessary. | |
8863 Occurs if there is no input after pausing for `lazy-lock-continuity-time'. | |
8864 | |
8865 - Fontification occurs in invisible parts when Emacs has been idle. | |
8866 Occurs if there is no input after pausing for `lazy-lock-stealth-time'. | |
8867 | |
8868 If `lazy-lock-hide-invisible' is non-nil, text is not displayed until it is | |
8869 fontified, otherwise it is displayed in `lazy-lock-invisible-foreground'. | |
8870 | |
8871 See also variables `lazy-lock-walk-windows' and `lazy-lock-ignore-commands' for | |
8872 window (scroll) fontification, and `lazy-lock-stealth-lines', | |
8873 `lazy-lock-stealth-nice' and `lazy-lock-stealth-verbose' for stealth | |
8874 fontification. | |
8875 | |
8876 Use \\[lazy-lock-submit-bug-report] to send bug reports or feedback." t nil) | |
8877 | |
8878 (autoload 'turn-on-lazy-lock "lazy-lock" "\ | |
8879 Unconditionally turn on Lazy Lock mode." nil nil) | |
8880 | |
8881 (add-minor-mode 'lazy-lock-mode " Lazy") | |
8882 | |
8883 ;;;*** | |
8884 | |
8885 ;;;### (autoloads (ledit-from-lisp-mode ledit-mode) "ledit" "packages/ledit.el" (12983 26806)) | |
8886 ;;; Generated autoloads from packages/ledit.el | |
8887 | |
8888 (defconst ledit-save-files t "\ | |
8889 *Non-nil means Ledit should save files before transferring to Lisp.") | |
8890 | |
8891 (defconst ledit-go-to-lisp-string "%?lisp" "\ | |
8892 *Shell commands to execute to resume Lisp job.") | |
8893 | |
8894 (defconst ledit-go-to-liszt-string "%?liszt" "\ | |
8895 *Shell commands to execute to resume Lisp compiler job.") | |
8896 | |
8897 (autoload 'ledit-mode "ledit" "\ | |
8898 \\<ledit-mode-map>Major mode for editing text and stuffing it to a Lisp job. | |
8899 Like Lisp mode, plus these special commands: | |
8900 \\[ledit-save-defun] -- record defun at or after point | |
8901 for later transmission to Lisp job. | |
8902 \\[ledit-save-region] -- record region for later transmission to Lisp job. | |
8903 \\[ledit-go-to-lisp] -- transfer to Lisp job and transmit saved text. | |
8904 \\[ledit-go-to-liszt] -- transfer to Liszt (Lisp compiler) job | |
8905 and transmit saved text. | |
8906 \\{ledit-mode-map} | |
8907 To make Lisp mode automatically change to Ledit mode, | |
8908 do (setq lisp-mode-hook 'ledit-from-lisp-mode)" t nil) | |
8909 | |
8910 (autoload 'ledit-from-lisp-mode "ledit" nil nil nil) | |
8911 | |
8912 ;;;*** | |
8913 | |
8914 ;;;*** | |
8915 | |
8916 ;;;### (autoloads nil "lispm-fonts" "packages/lispm-fonts.el" (12983 25992)) | |
8917 ;;; Generated autoloads from packages/lispm-fonts.el | |
8918 | |
8919 ;;;*** | |
8920 | |
8921 ;;;### (autoloads (print-region lpr-region print-buffer lpr-buffer) "lpr" "packages/lpr.el" (12983 27916)) | |
8922 ;;; Generated autoloads from packages/lpr.el | |
8923 | |
8924 (defvar lpr-switches nil "\ | |
8925 *List of strings to pass as extra options for the printer program. | |
8926 See `lpr-command'.") | |
8927 | |
8928 (defvar lpr-command (if (memq system-type '(usg-unix-v dgux hpux irix)) "lp" "lpr") "\ | |
8929 *Name of program for printing a file.") | |
8930 | |
8931 (autoload 'lpr-buffer "lpr" "\ | |
8932 Print buffer contents as with Unix command `lpr'. | |
8933 `lpr-switches' is a list of extra switches (strings) to pass to lpr." t nil) | |
8934 | |
8935 (autoload 'print-buffer "lpr" "\ | |
8936 Print buffer contents as with Unix command `lpr -p'. | |
8937 `lpr-switches' is a list of extra switches (strings) to pass to lpr." t nil) | |
8938 | |
8939 (autoload 'lpr-region "lpr" "\ | |
8940 Print region contents as with Unix command `lpr'. | |
8941 `lpr-switches' is a list of extra switches (strings) to pass to lpr." t nil) | |
8942 | |
8943 (autoload 'print-region "lpr" "\ | |
8944 Print region contents as with Unix command `lpr -p'. | |
8945 `lpr-switches' is a list of extra switches (strings) to pass to lpr." t nil) | |
8946 | |
8947 ;;;*** | |
8948 | |
8949 ;;;*** | |
8950 | |
8951 ;;;### (autoloads nil "makeinfo" "packages/makeinfo.el" (12983 26805)) | |
8952 ;;; Generated autoloads from packages/makeinfo.el | |
8953 | |
8954 ;;;*** | |
8955 | |
8956 ;;;### (autoloads (make-command-summary) "makesum" "packages/makesum.el" (12983 26800)) | |
8957 ;;; Generated autoloads from packages/makesum.el | |
8958 | |
8959 (autoload 'make-command-summary "makesum" "\ | |
8960 Make a summary of current key bindings in the buffer *Summary*. | |
8961 Previous contents of that buffer are killed first." t nil) | |
8962 | |
8963 ;;;*** | |
8964 | |
8965 ;;;### (autoloads nil "man-xref" "packages/man-xref.el" (12968 61833)) | |
8966 ;;; Generated autoloads from packages/man-xref.el | |
8967 | |
8968 ;;;### (autoloads (manual-entry) "man" "packages/man.el" (12995 2314)) | |
8969 ;;; Generated autoloads from packages/man.el | |
8970 | |
8971 (autoload 'manual-entry "man" "\ | |
8972 Display the Unix manual entry (or entries) for TOPIC. | |
8973 If prefix arg is given, modify the search according to the value: | |
8974 2 = complement default exact matching of the TOPIC name; | |
8975 exact matching default is specified by `Manual-match-topic-exactly' | |
8976 3 = force a search of the unformatted man directories | |
8977 4 = both 2 and 3 | |
8978 The manual entries are searched according to the variable | |
8979 Manual-directory-list, which should be a list of directories. If | |
8980 Manual-directory-list is nil, \\[Manual-directory-list-init] is | |
8981 invoked to create this list from the MANPATH environment variable. | |
8982 See the variable Manual-topic-buffer which controls how the buffer | |
8983 is named. See also the variables Manual-match-topic-exactly, | |
8984 Manual-query-multiple-pages, and Manual-buffer-view-mode." t nil) | |
8985 | |
8986 ;;;*** | |
8987 | |
8988 ;;;### (autoloads (metamail-region metamail-buffer metamail-interpret-body metamail-interpret-header) "metamail" "packages/metamail.el" (12983 26815)) | |
8989 ;;; Generated autoloads from packages/metamail.el | |
8990 | |
8991 (autoload 'metamail-interpret-header "metamail" "\ | |
8992 Interpret a header part of a MIME message in current buffer. | |
8993 Its body part is not interpreted at all." t nil) | |
8994 | |
8995 (autoload 'metamail-interpret-body "metamail" "\ | |
8996 Interpret a body part of a MIME message in current buffer. | |
8997 Optional argument VIEWMODE specifies the value of the | |
8998 EMACS_VIEW_MODE environment variable (defaulted to 1). | |
8999 Optional argument NODISPLAY non-nil means buffer is not | |
9000 redisplayed as output is inserted. | |
9001 Its header part is not interpreted at all." t nil) | |
9002 | |
9003 (autoload 'metamail-buffer "metamail" "\ | |
9004 Process current buffer through `metamail'. | |
9005 Optional argument VIEWMODE specifies the value of the | |
9006 EMACS_VIEW_MODE environment variable (defaulted to 1). | |
9007 Optional argument BUFFER specifies a buffer to be filled (nil | |
9008 means current). | |
9009 Optional argument NODISPLAY non-nil means buffer is not | |
9010 redisplayed as output is inserted." t nil) | |
9011 | |
9012 (autoload 'metamail-region "metamail" "\ | |
9013 Process current region through 'metamail'. | |
9014 Optional argument VIEWMODE specifies the value of the | |
9015 EMACS_VIEW_MODE environment variable (defaulted to 1). | |
9016 Optional argument BUFFER specifies a buffer to be filled (nil | |
9017 means current). | |
9018 Optional argument NODISPLAY non-nil means buffer is not | |
9019 redisplayed as output is inserted." t nil) | |
9020 | |
9021 ;;;*** | |
9022 | |
9023 ;;;*** | |
9024 | |
9025 ;;;*** | |
9026 | |
9027 ;;;### (autoloads nil "mic-paren" "packages/mic-paren.el" (12983 27930)) | |
9028 ;;; Generated autoloads from packages/mic-paren.el | |
9029 | |
9030 ;;;*** | |
9031 | |
9032 ;;;### (autoloads nil "mime-compose" "packages/mime-compose.el" (12983 26017)) | |
9033 ;;; Generated autoloads from packages/mime-compose.el | |
9034 | |
9035 ;;;*** | |
9036 | |
9037 ;;;### (autoloads nil "mode-motion+" "packages/mode-motion+.el" (12983 26819)) | |
9038 ;;; Generated autoloads from packages/mode-motion+.el | |
9039 | |
9040 ;;;*** | |
9041 | |
9042 ;;;*** | |
9043 | |
9044 ;;;*** | |
9045 | |
9046 ;;;### (autoloads nil "netunam" "packages/netunam.el" (12983 26003)) | |
9047 ;;; Generated autoloads from packages/netunam.el | |
9048 | |
9049 ;;;### (autoloads (manual-entry) "old-man" "packages/old-man.el" (12875 12228)) | |
9050 ;;; Generated autoloads from packages/old-man.el | |
9051 | |
9052 (autoload 'manual-entry "old-man" "\ | |
9053 Display the Unix manual entry (or entries) for TOPIC. | |
9054 If prefix arg is given, modify the search according to the value: | |
9055 2 = complement default exact matching of the TOPIC name; | |
9056 exact matching default is specified by `Manual-match-topic-exactly' | |
9057 3 = force a search of the unformatted man directories | |
9058 4 = both 2 and 3 | |
9059 The manual entries are searched according to the variable | |
9060 Manual-directory-list, which should be a list of directories. If | |
9061 Manual-directory-list is nil, \\[Manual-directory-list-init] is | |
9062 invoked to create this list from the MANPATH environment variable. | |
9063 See the variable Manual-topic-buffer which controls how the buffer | |
9064 is named. See also the variables Manual-match-topic-exactly, | |
9065 Manual-query-multiple-pages, and Manual-buffer-view-mode." t nil) | |
9066 | |
9067 ;;;*** | |
9068 | |
9069 ;;;*** | |
9070 | |
9071 ;;;### (autoloads nil "page-ext" "packages/page-ext.el" (12983 26808)) | |
9072 ;;; Generated autoloads from packages/page-ext.el | |
9073 | |
9074 ;;;### (autoloads (blink-paren paren-set-mode) "paren" "packages/paren.el" (12983 26021)) | |
9075 ;;; Generated autoloads from packages/paren.el | |
9076 | |
9077 (defvar paren-mode nil "\ | |
9078 *Sets the style of parenthesis highlighting. | |
9079 Valid values are nil, `blink-paren', `paren', and `sexp'. | |
9080 nil no parenthesis highlighting. | |
9081 blink-paren causes the matching paren to blink. | |
9082 paren causes the matching paren to be highlighted but not to blink. | |
9083 sexp whole expression enclosed by the local paren at its mate. | |
9084 nested (not yet implemented) use variable shading to see the | |
9085 nesting of an expression. Also groks regular expressions | |
9086 and shell quoting. | |
9087 | |
9088 This variable is global by default, but you can make it buffer-local and | |
9089 highlight parentheses differrently in different major modes.") | |
9090 | |
9091 (autoload 'paren-set-mode "paren" "\ | |
9092 Cycles through possible values for `paren-mode', force off with negative arg. | |
9093 When called from lisp, a symbolic value for `paren-mode' can be pased directly. | |
9094 See also `paren-mode' and `paren-highlight'." t nil) | |
9095 | |
9096 (make-obsolete 'blink-paren 'paren-set-mode) | |
9097 | |
9098 (autoload 'blink-paren "paren" "\ | |
9099 Obsolete. Use `paren-set-mode' instead." t nil) | |
9100 | |
9101 ;;;*** | |
9102 | |
9103 ;;;### (autoloads (pending-delete pending-delete-off pending-delete-on) "pending-del" "packages/pending-del.el" (12983 26004)) | |
9104 ;;; Generated autoloads from packages/pending-del.el | |
9105 | |
9106 (autoload 'pending-delete-on "pending-del" "\ | |
9107 Turn on pending delete. | |
9108 When it is ON, typed text replaces the selection if the selection is active. | |
9109 When it is OFF, typed text is just inserted at point." t nil) | |
9110 | |
9111 (autoload 'pending-delete-off "pending-del" "\ | |
9112 Turn off pending delete. | |
9113 When it is ON, typed text replaces the selection if the selection is active. | |
9114 When it is OFF, typed text is just inserted at point." t nil) | |
9115 | |
9116 (autoload 'pending-delete "pending-del" "\ | |
9117 Toggle automatic deletion of the selected region. | |
9118 With a positive argument, turns it on. | |
9119 With a non-positive argument, turns it off. | |
9120 When active, typed text replaces the selection." t nil) | |
9121 | |
9122 ;;;*** | |
9123 | |
9124 ;;;### (autoloads (ps-despool ps-spool-region-with-faces ps-spool-region ps-spool-buffer-with-faces ps-spool-buffer ps-print-region-with-faces ps-print-region ps-print-buffer-with-faces ps-print-buffer) "ps-print" "packages/ps-print.el" (12983 27924)) | |
9125 ;;; Generated autoloads from packages/ps-print.el | |
9126 | |
9127 (defvar ps-paper-type 'ps-letter "\ | |
9128 *Specifies the size of paper to format for. Should be one of | |
9129 `ps-letter', `ps-legal', or `ps-a4'.") | |
9130 | |
9131 (defvar ps-print-color-p (and (or (fboundp 'x-color-values) (fboundp 'color-instance-rgb-components)) (fboundp 'float)) "\ | |
9132 *If non-nil, print the buffer's text in color.") | |
9133 | |
9134 (autoload 'ps-print-buffer "ps-print" "\ | |
9135 Generate and print a PostScript image of the buffer. | |
9136 | |
9137 When called with a numeric prefix argument (C-u), prompts the user for | |
9138 the name of a file to save the PostScript image in, instead of sending | |
9139 it to the printer. | |
9140 | |
9141 More specifically, the FILENAME argument is treated as follows: if it | |
9142 is nil, send the image to the printer. If FILENAME is a string, save | |
9143 the PostScript image in a file with that name. If FILENAME is a | |
9144 number, prompt the user for the name of the file to save in." t nil) | |
9145 | |
9146 (autoload 'ps-print-buffer-with-faces "ps-print" "\ | |
9147 Generate and print a PostScript image of the buffer. | |
9148 Like `ps-print-buffer', but includes font, color, and underline | |
9149 information in the generated image. This command works only if you | |
9150 are using a window system, so it has a way to determine color values." t nil) | |
9151 | |
9152 (autoload 'ps-print-region "ps-print" "\ | |
9153 Generate and print a PostScript image of the region. | |
9154 Like `ps-print-buffer', but prints just the current region." t nil) | |
9155 | |
9156 (autoload 'ps-print-region-with-faces "ps-print" "\ | |
9157 Generate and print a PostScript image of the region. | |
9158 Like `ps-print-region', but includes font, color, and underline | |
9159 information in the generated image. This command works only if you | |
9160 are using a window system, so it has a way to determine color values." t nil) | |
9161 | |
9162 (autoload 'ps-spool-buffer "ps-print" "\ | |
9163 Generate and spool a PostScript image of the buffer. | |
9164 Like `ps-print-buffer' except that the PostScript image is saved in a | |
9165 local buffer to be sent to the printer later. | |
9166 | |
9167 Use the command `ps-despool' to send the spooled images to the printer." t nil) | |
9168 | |
9169 (autoload 'ps-spool-buffer-with-faces "ps-print" "\ | |
9170 Generate and spool a PostScript image of the buffer. | |
9171 Like `ps-spool-buffer', but includes font, color, and underline | |
9172 information in the generated image. This command works only if you | |
9173 are using a window system, so it has a way to determine color values. | |
9174 | |
9175 Use the command `ps-despool' to send the spooled images to the printer." t nil) | |
9176 | |
9177 (autoload 'ps-spool-region "ps-print" "\ | |
9178 Generate a PostScript image of the region and spool locally. | |
9179 Like `ps-spool-buffer', but spools just the current region. | |
9180 | |
9181 Use the command `ps-despool' to send the spooled images to the printer." t nil) | |
9182 | |
9183 (autoload 'ps-spool-region-with-faces "ps-print" "\ | |
9184 Generate a PostScript image of the region and spool locally. | |
9185 Like `ps-spool-region', but includes font, color, and underline | |
9186 information in the generated image. This command works only if you | |
9187 are using a window system, so it has a way to determine color values. | |
9188 | |
9189 Use the command `ps-despool' to send the spooled images to the printer." t nil) | |
9190 | |
9191 (autoload 'ps-despool "ps-print" "\ | |
9192 Send the spooled PostScript to the printer. | |
9193 | |
9194 When called with a numeric prefix argument (C-u), prompt the user for | |
9195 the name of a file to save the spooled PostScript in, instead of sending | |
9196 it to the printer. | |
9197 | |
9198 More specifically, the FILENAME argument is treated as follows: if it | |
9199 is nil, send the image to the printer. If FILENAME is a string, save | |
9200 the PostScript image in a file with that name. If FILENAME is a | |
9201 number, prompt the user for the name of the file to save in." t nil) | |
9202 | |
9203 ;;;*** | |
9204 | |
9205 ;;;### (autoloads (remote-compile) "rcompile" "packages/rcompile.el" (12983 26819)) | |
9206 ;;; Generated autoloads from packages/rcompile.el | |
9207 | |
9208 (autoload 'remote-compile "rcompile" "\ | |
9209 Compile the current buffer's directory on HOST. Log in as USER. | |
9210 See \\[compile]." t nil) | |
9211 | |
9212 ;;;*** | |
9213 | |
9214 ;;;*** | |
9215 | |
9216 ;;;### (autoloads nil "recent-files" "packages/recent-files.el" (12983 26028)) | |
9217 ;;; Generated autoloads from packages/recent-files.el | |
9218 | |
9219 ;;;*** | |
9220 | |
9221 ;;;*** | |
9222 | |
9223 ;;;### (autoloads nil "refbib" "packages/refbib.el" (12983 26809)) | |
9224 ;;; Generated autoloads from packages/refbib.el | |
9225 | |
9226 ;;;*** | |
9227 | |
9228 ;;;### (autoloads nil "remote" "packages/remote.el" (12983 26005)) | |
9229 ;;; Generated autoloads from packages/remote.el | |
9230 | |
9231 ;;;*** | |
9232 | |
9233 ;;;### (autoloads nil "reportmail" "packages/reportmail.el" (12983 26005)) | |
9234 ;;; Generated autoloads from packages/reportmail.el | |
9235 | |
9236 ;;;### (autoloads (resume-suspend-hook) "resume" "packages/resume.el" (12983 26809)) | |
9237 ;;; Generated autoloads from packages/resume.el | |
9238 | |
9239 (autoload 'resume-suspend-hook "resume" "\ | |
9240 Clear out the file used for transmitting args when Emacs resumes." nil nil) | |
9241 | |
9242 ;;;*** | |
9243 | |
9244 ;;;### (autoloads nil "rnewspost" "packages/rnewspost.el" (12547 2440)) | |
9245 ;;; Generated autoloads from packages/rnewspost.el | |
9246 | |
9247 ;;;*** | |
9248 | |
9249 ;;;*** | |
9250 | |
9251 ;;;*** | |
9252 | |
9253 ;;;### (autoloads nil "saveconf" "packages/saveconf.el" (12983 26810)) | |
9254 ;;; Generated autoloads from packages/saveconf.el | |
9255 | |
9256 ;;;*** | |
9257 | |
9258 ;;;### (autoloads nil "saveplace" "packages/saveplace.el" (12983 26803)) | |
9259 ;;; Generated autoloads from packages/saveplace.el | |
9260 | |
9261 ;;;*** | |
9262 | |
9263 ;;;*** | |
9264 | |
9265 ;;;### (autoloads nil "sccs" "packages/sccs.el" (12983 26003)) | |
9266 ;;; Generated autoloads from packages/sccs.el | |
9267 | |
9268 ;;;*** | |
9269 | |
9270 ;;;*** | |
9271 | |
9272 ;;;### (autoloads nil "scroll-in-place" "packages/scroll-in-place.el" (12995 42385)) | |
9273 ;;; Generated autoloads from packages/scroll-in-place.el | |
9274 | |
9275 ;;;*** | |
9276 | |
9277 ;;;### (autoloads nil "server" "packages/server.el" (12983 26810)) | |
9278 ;;; Generated autoloads from packages/server.el | |
9279 | |
9280 (make-obsolete 'server-start 'gnuserv-start) | |
9281 | |
9282 ;;;*** | |
9283 | |
9284 ;;;### (autoloads nil "session" "packages/session.el" (12983 26010)) | |
9285 ;;; Generated autoloads from packages/session.el | |
9286 | |
9287 ;;;### (autoloads (install-shell-fonts) "shell-font" "packages/shell-font.el" (12983 26006)) | |
9288 ;;; Generated autoloads from packages/shell-font.el | |
9289 | |
9290 (autoload 'install-shell-fonts "shell-font" "\ | |
9291 Decorate the current interaction buffer with fonts. | |
9292 This uses the faces called `shell-prompt', `shell-input' and `shell-output'; | |
9293 you can alter the graphical attributes of those with the normal | |
9294 face-manipulation functions." nil nil) | |
9295 | |
9296 ;;;*** | |
9297 | |
9298 ;;;### (autoloads (spell-string spell-region spell-word spell-buffer) "spell" "packages/spell.el" (12983 26809)) | |
9299 ;;; Generated autoloads from packages/spell.el | |
9300 | |
9301 (put 'spell-filter 'risky-local-variable t) | |
9302 | |
9303 (autoload 'spell-buffer "spell" "\ | |
9304 Check spelling of every word in the buffer. | |
9305 For each incorrect word, you are asked for the correct spelling | |
9306 and then put into a query-replace to fix some or all occurrences. | |
9307 If you do not want to change a word, just give the same word | |
9308 as its \"correct\" spelling; then the query replace is skipped." t nil) | |
9309 | |
9310 (autoload 'spell-word "spell" "\ | |
9311 Check spelling of word at or before point. | |
9312 If it is not correct, ask user for the correct spelling | |
9313 and `query-replace' the entire buffer to substitute it." t nil) | |
9314 | |
9315 (autoload 'spell-region "spell" "\ | |
9316 Like `spell-buffer' but applies only to region. | |
9317 Used in a program, applies from START to END. | |
9318 DESCRIPTION is an optional string naming the unit being checked: | |
9319 for example, \"word\"." t nil) | |
9320 | |
9321 (autoload 'spell-string "spell" "\ | |
9322 Check spelling of string supplied as argument." t nil) | |
9323 | |
9324 ;;;*** | |
9325 | |
9326 ;;;*** | |
9327 | |
9328 ;;;### (autoloads nil "supercite" "packages/supercite.el" (12983 26018)) | |
9329 ;;; Generated autoloads from packages/supercite.el | |
9330 | |
9331 ;;;### (autoloads (tar-mode) "tar-mode" "packages/tar-mode.el" (12983 26009)) | |
9332 ;;; Generated autoloads from packages/tar-mode.el | |
9333 | |
9334 (autoload 'tar-mode "tar-mode" "\ | |
9335 Major mode for viewing a tar file as a dired-like listing of its contents. | |
9336 You can move around using the usual cursor motion commands. | |
9337 Letters no longer insert themselves. | |
9338 Type 'e' to pull a file out of the tar file and into its own buffer. | |
9339 Type 'c' to copy an entry from the tar file into another file on disk. | |
9340 | |
9341 If you edit a sub-file of this archive (as with the 'e' command) and | |
9342 save it with Control-X Control-S, the contents of that buffer will be | |
9343 saved back into the tar-file buffer; in this way you can edit a file | |
9344 inside of a tar archive without extracting it and re-archiving it. | |
9345 | |
9346 See also: variables tar-update-datestamp and tar-anal-blocksize. | |
9347 \\{tar-mode-map}" nil nil) | |
9348 | |
9349 ;;;*** | |
9350 | |
9351 ;;;### (autoloads (terminal-emulator) "terminal" "packages/terminal.el" (12983 26010)) | |
9352 ;;; Generated autoloads from packages/terminal.el | |
9353 | |
9354 (autoload 'terminal-emulator "terminal" "\ | |
9355 Under a display-terminal emulator in BUFFER, run PROGRAM on arguments ARGS. | |
9356 ARGS is a list of argument-strings. Remaining arguments are WIDTH and HEIGHT. | |
9357 BUFFER's contents are made an image of the display generated by that program, | |
9358 and any input typed when BUFFER is the current Emacs buffer is sent to that | |
9359 program an keyboard input. | |
9360 | |
9361 Interactively, BUFFER defaults to \"*terminal*\" and PROGRAM and ARGS | |
9362 are parsed from an input-string using your usual shell. | |
9363 WIDTH and HEIGHT are determined from the size of the current window | |
9364 -- WIDTH will be one less than the window's width, HEIGHT will be its height. | |
9365 | |
9366 To switch buffers and leave the emulator, or to give commands | |
9367 to the emulator itself (as opposed to the program running under it), | |
9368 type Control-^. The following character is an emulator command. | |
9369 Type Control-^ twice to send it to the subprogram. | |
9370 This escape character may be changed using the variable `terminal-escape-char'. | |
9371 | |
9372 `Meta' characters may not currently be sent through the terminal emulator. | |
9373 | |
9374 Here is a list of some of the variables which control the behaviour | |
9375 of the emulator -- see their documentation for more information: | |
9376 terminal-escape-char, terminal-scrolling, terminal-more-processing, | |
9377 terminal-redisplay-interval. | |
9378 | |
9379 This function calls the value of terminal-mode-hook if that exists | |
9380 and is non-nil after the terminal buffer has been set up and the | |
9381 subprocess started. | |
9382 | |
9383 Presently with `termcap' only; if somebody sends us code to make this | |
9384 work with `terminfo' we will try to use it." t nil) | |
9385 | |
9386 ;;;*** | |
9387 | |
9388 ;;;*** | |
9389 | |
9390 ;;;### (autoloads nil "tex-latin1" "packages/tex-latin1.el" (12983 26000)) | |
9391 ;;; Generated autoloads from packages/tex-latin1.el | |
9392 | |
9393 ;;;### (autoloads (batch-texinfo-format texinfo-format-region texinfo-format-buffer) "texinfmt" "packages/texinfmt.el" (12983 26812)) | |
9394 ;;; Generated autoloads from packages/texinfmt.el | |
9395 | |
9396 (autoload 'texinfo-format-buffer "texinfmt" "\ | |
9397 Process the current buffer as texinfo code, into an Info file. | |
9398 The Info file output is generated in a buffer visiting the Info file | |
9399 names specified in the @setfilename command. | |
9400 | |
9401 Non-nil argument (prefix, if interactive) means don't make tag table | |
9402 and don't split the file if large. You can use Info-tagify and | |
9403 Info-split to do these manually." t nil) | |
9404 | |
9405 (autoload 'texinfo-format-region "texinfmt" "\ | |
9406 Convert the current region of the Texinfo file to Info format. | |
9407 This lets you see what that part of the file will look like in Info. | |
9408 The command is bound to \\[texinfo-format-region]. The text that is | |
9409 converted to Info is stored in a temporary buffer." t nil) | |
9410 | |
9411 (autoload 'batch-texinfo-format "texinfmt" "\ | |
9412 Runs texinfo-format-buffer on the files remaining on the command line. | |
9413 Must be used only with -batch, and kills emacs on completion. | |
9414 Each file will be processed even if an error occurred previously. | |
9415 For example, invoke | |
9416 \"emacs -batch -funcall batch-texinfo-format $docs/ ~/*.texinfo\"." nil nil) | |
9417 | |
9418 ;;;*** | |
9419 | |
9420 ;;;*** | |
9421 | |
9422 ;;;### (autoloads nil "texnfo-tex" "packages/texnfo-tex.el" (12983 26015)) | |
9423 ;;; Generated autoloads from packages/texnfo-tex.el | |
9424 | |
9425 ;;;### (autoloads (texinfo-sequential-node-update texinfo-every-node-update texinfo-update-node) "texnfo-upd" "packages/texnfo-upd.el" (12983 27322)) | |
9426 ;;; Generated autoloads from packages/texnfo-upd.el | |
9427 | |
9428 (autoload 'texinfo-update-node "texnfo-upd" "\ | |
9429 Without any prefix argument, update the node in which point is located. | |
9430 Non-nil argument (prefix, if interactive) means update the nodes in the | |
9431 marked region. | |
9432 | |
9433 The functions for creating or updating nodes and menus, and their | |
9434 keybindings, are: | |
9435 | |
9436 texinfo-update-node (&optional region-p) \\[texinfo-update-node] | |
9437 texinfo-every-node-update () \\[texinfo-every-node-update] | |
9438 texinfo-sequential-node-update (&optional region-p) | |
9439 | |
9440 texinfo-make-menu (&optional region-p) \\[texinfo-make-menu] | |
9441 texinfo-all-menus-update () \\[texinfo-all-menus-update] | |
9442 texinfo-master-menu () | |
9443 | |
9444 texinfo-indent-menu-description (column &optional region-p) | |
9445 | |
9446 The `texinfo-column-for-description' variable specifies the column to | |
9447 which menu descriptions are indented. Its default value is 32." t nil) | |
9448 | |
9449 (autoload 'texinfo-every-node-update "texnfo-upd" "\ | |
9450 Update every node in a Texinfo file." t nil) | |
9451 | |
9452 (autoload 'texinfo-sequential-node-update "texnfo-upd" "\ | |
9453 Update one node (or many) in a Texinfo file with sequential pointers. | |
9454 | |
9455 This function causes the `Next' or `Previous' pointer to point to the | |
9456 immediately preceding or following node, even if it is at a higher or | |
9457 lower hierarchical level in the document. Continually pressing `n' or | |
9458 `p' takes you straight through the file. | |
9459 | |
9460 Without any prefix argument, update the node in which point is located. | |
9461 Non-nil argument (prefix, if interactive) means update the nodes in the | |
9462 marked region. | |
9463 | |
9464 This command makes it awkward to navigate among sections and | |
9465 subsections; it should be used only for those documents that are meant | |
9466 to be read like a novel rather than a reference, and for which the | |
9467 Info `g*' command is inadequate." t nil) | |
9468 | |
9469 ;;;*** | |
9470 | |
9471 ;;;### (autoloads (time-stamp-toggle-active time-stamp) "time-stamp" "packages/time-stamp.el" (12983 27313)) | |
9472 ;;; Generated autoloads from packages/time-stamp.el | |
9473 | |
9474 (autoload 'time-stamp "time-stamp" "\ | |
9475 Update the time stamp string in the buffer. | |
9476 If you put a time stamp template anywhere in the first 8 lines of a file, | |
9477 it can be updated every time you save the file. See the top of | |
9478 `time-stamp.el' for a sample. The template looks like one of the following: | |
9479 Time-stamp: <> | |
9480 Time-stamp: \" \" | |
9481 The time stamp is written between the brackets or quotes, resulting in | |
9482 Time-stamp: <95/01/18 10:20:51 gildea> | |
9483 Only does its thing if the variable time-stamp-active is non-nil. | |
9484 Typically used on write-file-hooks for automatic time-stamping. | |
9485 The format of the time stamp is determined by the variable time-stamp-format. | |
9486 The variables time-stamp-line-limit, time-stamp-start, and time-stamp-end | |
9487 control finding the template." t nil) | |
9488 | |
9489 (autoload 'time-stamp-toggle-active "time-stamp" "\ | |
9490 Toggle time-stamp-active, setting whether \\[time-stamp] updates a buffer. | |
9491 With arg, turn time stamping on if and only if arg is positive." t nil) | |
9492 | |
9493 ;;;*** | |
9494 | |
9495 ;;;### (autoloads (display-time) "time" "packages/time.el" (12983 26806)) | |
9496 ;;; Generated autoloads from packages/time.el | |
9497 | |
9498 (defvar display-time-day-and-date nil "\ | |
9499 *Non-nil means \\[display-time] should display day and date as well as time.") | |
9500 | |
9501 (autoload 'display-time "time" "\ | |
9502 Display current time, load level, and mail flag in mode line of each buffer. | |
9503 Updates automatically every minute. | |
9504 If `display-time-day-and-date' is non-nil, the current day and date | |
9505 are displayed as well. | |
9506 After each update, `display-time-hook' is run with `run-hooks'. | |
9507 If `display-time-echo-area' is non-nil, the time is displayed in the | |
9508 echo area instead of in the mode-line." t nil) | |
9509 | |
9510 ;;;*** | |
9511 | |
9512 ;;;*** | |
9513 | |
9514 ;;;*** | |
9515 | |
9516 ;;;### (autoloads nil "uncompress" "packages/uncompress.el" (12983 26811)) | |
9517 ;;; Generated autoloads from packages/uncompress.el | |
9518 | |
9519 ;;;### (autoloads (ununderline-and-unoverstrike-region overstrike-region unoverstrike-region ununderline-region underline-region) "underline" "packages/underline.el" (12983 26811)) | |
9520 ;;; Generated autoloads from packages/underline.el | |
9521 | |
9522 (autoload 'underline-region "underline" "\ | |
9523 Underline all nonblank characters in the region. | |
9524 Works by overstriking underscores. | |
9525 Called from program, takes two arguments START and END | |
9526 which specify the range to operate on." t nil) | |
9527 | |
9528 (autoload 'ununderline-region "underline" "\ | |
9529 Remove all underlining (overstruck underscores) in the region. | |
9530 Called from program, takes two arguments START and END | |
9531 which specify the range to operate on." t nil) | |
9532 | |
9533 (autoload 'unoverstrike-region "underline" "\ | |
9534 Remove all overstriking (character-backspace-character) in the region. | |
9535 Called from program, takes two arguments START and END which specify the | |
9536 range to operate on." t nil) | |
9537 | |
9538 (autoload 'overstrike-region "underline" "\ | |
9539 Overstrike (character-backspace-character) all nonblank characters in | |
9540 the region. Called from program, takes two arguments START and END which | |
9541 specify the range to operate on." t nil) | |
9542 | |
9543 (autoload 'ununderline-and-unoverstrike-region "underline" "\ | |
9544 Remove underlining and overstriking in the region. Called from a program, | |
9545 takes two arguments START and END which specify the range to operate on." t nil) | |
9546 | |
9547 ;;;*** | |
9548 | |
9549 ;;;### (autoloads (ask-to-update-copyright update-copyright) "upd-copyr" "packages/upd-copyr.el" (12983 26015)) | |
9550 ;;; Generated autoloads from packages/upd-copyr.el | |
9551 | |
9552 (defvar copyright-do-not-disturb "Free Software Foundation, Inc." "\ | |
9553 *If non-nil, the existing copyright holder is checked against this regexp. | |
9554 If it does not match, then a new copyright line is added with the copyright | |
9555 holder set to the value of `copyright-whoami'.") | |
9556 | |
9557 (defvar copyright-whoami nil "\ | |
9558 *A string containing the name of the owner of new copyright notices.") | |
9559 | |
9560 (defvar copyright-notice-file nil "\ | |
9561 *If non-nil, replace copying notices with this file.") | |
9562 | |
9563 (autoload 'update-copyright "upd-copyr" "\ | |
9564 Update the copyright notice at the beginning of the buffer | |
9565 to indicate the current year. If optional arg REPLACE is given | |
9566 \(interactively, with prefix arg) replace the years in the notice | |
9567 rather than adding the current year after them. | |
9568 If `copyright-notice-file' is set, the copying permissions following the | |
9569 copyright are replaced as well. | |
9570 | |
9571 If optional third argument ASK is non-nil, the user is prompted for whether | |
9572 or not to update the copyright. If optional fourth argument ASK-YEAR is | |
9573 non-nil, the user is prompted for whether or not to replace the year rather | |
9574 than adding to it." t nil) | |
9575 | |
9576 (autoload 'ask-to-update-copyright "upd-copyr" "\ | |
9577 If the current buffer contains a copyright notice that is out of date, | |
9578 ask the user if it should be updated with `update-copyright' (which see). | |
9579 Put this on write-file-hooks." nil nil) | |
9580 | |
9581 ;;;*** | |
9582 | |
9583 ;;;*** | |
9584 | |
9585 ;;;### (autoloads nil "vc-hooks" "packages/vc-hooks.el" (12983 25991)) | |
9586 ;;; Generated autoloads from packages/vc-hooks.el | |
9587 | |
9588 ;;;### (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" (12983 27909)) | |
9589 ;;; Generated autoloads from packages/vc.el | |
9590 | |
9591 (defvar vc-checkin-hook nil "\ | |
9592 *List of functions called after a checkin is done. See `run-hooks'.") | |
9593 | |
9594 (autoload 'vc-file-status "vc" "\ | |
9595 Display the current status of the file being visited. | |
9596 Currently, this is only defined for CVS. The information provided in the | |
9597 modeline is generally sufficient for RCS and SCCS." t nil) | |
9598 | |
9599 (autoload 'vc-next-action "vc" "\ | |
9600 Do the next logical checkin or checkout operation on the current file. | |
9601 | |
9602 For RCS and SCCS files: | |
9603 If the file is not already registered, this registers it for version | |
9604 control and then retrieves a writable, locked copy for editing. | |
9605 If the file is registered and not locked by anyone, this checks out | |
9606 a writable and locked file ready for editing. | |
9607 If the file is checked out and locked by the calling user, this | |
9608 first checks to see if the file has changed since checkout. If not, | |
9609 it performs a revert. | |
9610 If the file has been changed, this pops up a buffer for entry | |
9611 of a log message; when the message has been entered, it checks in the | |
9612 resulting changes along with the log message as change commentary. If | |
9613 the variable `vc-keep-workfiles' is non-nil (which is its default), a | |
9614 read-only copy of the changed file is left in place afterwards. | |
9615 If the file is registered and locked by someone else, you are given | |
9616 the option to steal the lock. | |
9617 | |
9618 For CVS files: | |
9619 If the file is not already registered, this registers it for version | |
9620 control. This does a \"cvs add\", but no \"cvs commit\". | |
9621 If the file is added but not committed, it is committed. | |
9622 If the file has not been changed, neither in your working area or | |
9623 in the repository, a message is printed and nothing is done. | |
9624 If your working file is changed, but the repository file is | |
9625 unchanged, this pops up a buffer for entry of a log message; when the | |
9626 message has been entered, it checks in the resulting changes along | |
9627 with the logmessage as change commentary. A writable file is retained. | |
9628 If the repository file is changed, you are asked if you want to | |
9629 merge in the changes into your working copy. | |
9630 | |
9631 The following is true regardless of which version control system you | |
9632 are using: | |
9633 | |
9634 If you call this from within a VC dired buffer with no files marked, | |
9635 it will operate on the file in the current line. | |
9636 If you call this from within a VC dired buffer, and one or more | |
9637 files are marked, it will accept a log message and then operate on | |
9638 each one. The log message will be used as a comment for any register | |
9639 or checkin operations, but ignored when doing checkouts. Attempted | |
9640 lock steals will raise an error. | |
9641 | |
9642 For checkin, a prefix argument lets you specify the version number to use." t nil) | |
9643 | |
9644 (autoload 'vc-register "vc" "\ | |
9645 Register the current file into your version-control system." t nil) | |
9646 | |
9647 (autoload 'vc-diff "vc" "\ | |
9648 Display diffs between file versions. | |
9649 Normally this compares the current file and buffer with the most recent | |
9650 checked in version of that file. This uses no arguments. | |
9651 With a prefix argument, it reads the file name to use | |
9652 and two version designators specifying which versions to compare." t nil) | |
9653 | |
9654 (autoload 'vc-version-diff "vc" "\ | |
9655 For FILE, report diffs between two stored versions REL1 and REL2 of it. | |
9656 If FILE is a directory, generate diffs between versions for all registered | |
9657 files in or below it." t nil) | |
9658 | |
9659 (autoload 'vc-version-other-window "vc" "\ | |
9660 Visit version REV of the current buffer in another window. | |
9661 If the current buffer is named `F', the version is named `F.~REV~'. | |
9662 If `F.~REV~' already exists, it is used instead of being re-created." t nil) | |
9663 | |
9664 (autoload 'vc-insert-headers "vc" "\ | |
9665 Insert headers in a file for use with your version-control system. | |
9666 Headers desired are inserted at the start of the buffer, and are pulled from | |
9667 the variable `vc-header-alist'." t nil) | |
9668 | |
9669 (autoload 'vc-directory "vc" "\ | |
9670 Show version-control status of all files in the directory DIR. | |
9671 If the second argument VERBOSE is non-nil, show all files; | |
9672 otherwise show only files that current locked in the version control system. | |
9673 Interactively, supply a prefix arg to make VERBOSE non-nil. | |
9674 | |
9675 If the optional third argument NESTED is non-nil, | |
9676 scan the entire tree of subdirectories of the current directory." t nil) | |
9677 | |
9678 (autoload 'vc-create-snapshot "vc" "\ | |
9679 Make a snapshot called NAME. | |
9680 The snapshot is made from all registered files at or below the current | |
9681 directory. For each file, the version level of its latest | |
9682 version becomes part of the named configuration." t nil) | |
9683 | |
9684 (autoload 'vc-retrieve-snapshot "vc" "\ | |
9685 Retrieve the snapshot called NAME. | |
9686 This function fails if any files are locked at or below the current directory | |
9687 Otherwise, all registered files are checked out (unlocked) at their version | |
9688 levels in the snapshot." t nil) | |
9689 | |
9690 (autoload 'vc-print-log "vc" "\ | |
9691 List the change log of the current buffer in a window." t nil) | |
9692 | |
9693 (autoload 'vc-revert-buffer "vc" "\ | |
9694 Revert the current buffer's file back to the latest checked-in version. | |
9695 This asks for confirmation if the buffer contents are not identical | |
9696 to that version. | |
9697 If the back-end is CVS, this will give you the most recent revision of | |
9698 the file on the branch you are editing." t nil) | |
9699 | |
9700 (autoload 'vc-cancel-version "vc" "\ | |
9701 Get rid of most recently checked in version of this file. | |
9702 A prefix argument means do not revert the buffer afterwards." t nil) | |
9703 | |
9704 (autoload 'vc-rename-file "vc" "\ | |
9705 Rename file OLD to NEW, and rename its master file likewise." t nil) | |
9706 | |
9707 (autoload 'vc-rename-this-file "vc" nil t nil) | |
9708 | |
9709 (autoload 'vc-update-change-log "vc" "\ | |
9710 Find change log file and add entries from recent RCS logs. | |
9711 The mark is left at the end of the text prepended to the change log. | |
9712 With prefix arg of C-u, only find log entries for the current buffer's file. | |
9713 With any numeric prefix arg, find log entries for all files currently visited. | |
9714 Otherwise, find log entries for all registered files in the default directory. | |
9715 From a program, any arguments are passed to the `rcs2log' script." t nil) | |
9716 | |
9717 ;;;*** | |
9718 | |
9719 ;;;*** | |
9720 | |
9721 ;;;### (autoloads nil "webster-ucb" "packages/webster-ucb.el" (12983 26014)) | |
9722 ;;; Generated autoloads from packages/webster-ucb.el | |
9723 | |
9724 ;;;### (autoloads (webster-spell webster-endings webster) "webster" "packages/webster.el" (12983 26017)) | |
9725 ;;; Generated autoloads from packages/webster.el | |
9726 | |
9727 (autoload 'webster "webster" "\ | |
9728 Look up a word in the Webster's dictionary. | |
9729 Open a network login connection to a webster host if necessary. | |
9730 Communication with host is recorded in a buffer *webster*." t nil) | |
9731 | |
9732 (autoload 'webster-endings "webster" "\ | |
9733 Look up endings for a word in the Webster's dictionary. | |
9734 Open a network login connection to a webster host if necessary. | |
9735 Communication with host is recorded in a buffer *webster*." t nil) | |
9736 | |
9737 (autoload 'webster-spell "webster" "\ | |
9738 Look spelling for a word in the Webster's dictionary. | |
9739 Open a network login connection to a webster host if necessary. | |
9740 Communication with host is recorded in a buffer *webster*." t nil) | |
9741 | |
9742 ;;;*** | |
9743 | |
9744 ;;;### (autoloads (run-scheme) "xscheme" "packages/xscheme.el" (12983 26813)) | |
9745 ;;; Generated autoloads from packages/xscheme.el | |
9746 | |
9747 (defvar scheme-program-name "scheme" "\ | |
9748 *Program invoked by the `run-scheme' command.") | |
9749 | |
9750 (defvar scheme-band-name nil "\ | |
9751 *Band loaded by the `run-scheme' command.") | |
9752 | |
9753 (defvar scheme-program-arguments nil "\ | |
9754 *Arguments passed to the Scheme program by the `run-scheme' command.") | |
9755 | |
9756 (autoload 'run-scheme "xscheme" "\ | |
9757 Run an inferior Scheme process. | |
9758 Output goes to the buffer `*scheme*'. | |
9759 With argument, asks for a command line." t nil) | |
9760 | |
9761 ;;;*** | |
9762 | |
9763 ;;;### (autoloads nil "compile-all" "pcl-cvs/compile-all.el" (12376 19549)) | |
9764 ;;; Generated autoloads from pcl-cvs/compile-all.el | |
9765 | |
9766 ;;;*** | |
9767 | |
9768 ;;;*** | |
9769 | |
9770 ;;;*** | |
9771 | |
9772 ;;;### (autoloads nil "cookie" "pcl-cvs/cookie.el" (12983 26841)) | |
9773 ;;; Generated autoloads from pcl-cvs/cookie.el | |
9774 | |
9775 ;;;*** | |
9776 | |
9777 ;;;### (autoloads nil "dll-debug" "pcl-cvs/dll-debug.el" (12983 26058)) | |
9778 ;;; Generated autoloads from pcl-cvs/dll-debug.el | |
9779 | |
9780 ;;;*** | |
9781 | |
9782 ;;;### (autoloads nil "dll" "pcl-cvs/dll.el" (12983 26059)) | |
9783 ;;; Generated autoloads from pcl-cvs/dll.el | |
9784 | |
9785 ;;;*** | |
9786 | |
9787 ;;;### (autoloads nil "elib-node" "pcl-cvs/elib-node.el" (12983 26059)) | |
9788 ;;; Generated autoloads from pcl-cvs/elib-node.el | |
9789 | |
9790 ;;;### (autoloads nil "pcl-cvs-lucid" "pcl-cvs/pcl-cvs-lucid.el" (12675 57126)) | |
9791 ;;; Generated autoloads from pcl-cvs/pcl-cvs-lucid.el | |
9792 | |
9793 ;;;*** | |
9794 | |
9795 ;;;*** | |
9796 | |
9797 ;;;### (autoloads nil "pcl-cvs-startup" "pcl-cvs/pcl-cvs-startup.el" (12983 26059)) | |
9798 ;;; Generated autoloads from pcl-cvs/pcl-cvs-startup.el | |
9799 | |
9800 ;;;### (autoloads (pcl-cvs-fontify) "pcl-cvs-xemacs" "pcl-cvs/pcl-cvs-xemacs.el" (12983 26060)) | |
9801 ;;; Generated autoloads from pcl-cvs/pcl-cvs-xemacs.el | |
9802 | |
9803 (autoload 'pcl-cvs-fontify "pcl-cvs-xemacs" nil nil nil) | |
9804 | |
9805 ;;;*** | |
9806 | |
9807 ;;;### (autoloads (cvs-update-other-window cvs-update) "pcl-cvs" "pcl-cvs/pcl-cvs.el" (12988 54979)) | |
9808 ;;; Generated autoloads from pcl-cvs/pcl-cvs.el | |
9809 | |
9810 (autoload 'cvs-update "pcl-cvs" "\ | |
9811 Run a 'cvs update' in the current working directory. Feed the | |
9812 output to a *cvs* buffer and run cvs-mode on it. | |
9813 If optional prefix argument LOCAL is non-nil, 'cvs update -l' is run." t nil) | |
9814 | |
9815 (autoload 'cvs-update-other-window "pcl-cvs" "\ | |
9816 Run a 'cvs update' in the current working directory. Feed the | |
9817 output to a *cvs* buffer, display it in the other window, and run | |
9818 cvs-mode on it. | |
9819 | |
9820 If optional prefix argument LOCAL is non-nil, 'cvs update -l' is run." t nil) | |
9821 | |
9822 ;;;*** | |
9823 | |
9824 ;;;*** | |
9825 | |
9826 ;;;### (autoloads nil "string" "pcl-cvs/string.el" (12983 26060)) | |
9827 ;;; Generated autoloads from pcl-cvs/string.el | |
9828 | |
9829 ;;;### (autoloads (about-xemacs) "about" "prim/about.el" (12983 26830)) | |
9830 ;;; Generated autoloads from prim/about.el | |
9831 | |
9832 (autoload 'about-xemacs "about" nil t nil) | |
9833 | |
9834 ;;;*** | |
9835 | |
9836 ;;;### (autoloads (all-hail-emacs all-hail-xemacs praise-be-unto-emacs praise-be-unto-xemacs) "advocacy" "prim/advocacy.el" (12983 26840)) | |
9837 ;;; Generated autoloads from prim/advocacy.el | |
9838 | |
9839 (defvar xemacs-praise-sound-file "sounds/im_so_happy.au" "\ | |
9840 The name of an audio file containing something to play | |
9841 when praising XEmacs") | |
9842 | |
9843 (defvar xemacs-praise-message "All Hail XEmacs!\n" "\ | |
9844 What to praise XEmacs with") | |
9845 | |
9846 (autoload 'praise-be-unto-xemacs "advocacy" "\ | |
9847 All Hail XEmacs!" t nil) | |
9848 | |
9849 (autoload 'praise-be-unto-emacs "advocacy" nil t nil) | |
9850 | |
9851 (autoload 'all-hail-xemacs "advocacy" "\ | |
9852 All Hail XEmacs!" t nil) | |
9853 | |
9854 (autoload 'all-hail-emacs "advocacy" nil t nil) | |
9855 | |
9856 ;;;*** | |
9857 | |
9858 ;;;*** | |
9859 | |
9860 ;;;### (autoloads nil "backquote" "prim/backquote.el" (12983 26056)) | |
9861 ;;; Generated autoloads from prim/backquote.el | |
9862 | |
9863 ;;;*** | |
9864 | |
9865 ;;;*** | |
9866 | |
9867 ;;;### (autoloads nil "buffer" "prim/buffer.el" (12983 27342)) | |
9868 ;;; Generated autoloads from prim/buffer.el | |
9869 | |
9870 ;;;*** | |
9871 | |
9872 ;;;### (autoloads (describe-buffer-case-table) "case-table" "prim/case-table.el" (12983 26038)) | |
9873 ;;; Generated autoloads from prim/case-table.el | |
9874 | |
9875 (autoload 'describe-buffer-case-table "case-table" "\ | |
9876 Describe the case table of the current buffer." t nil) | |
9877 | |
9878 ;;;*** | |
9879 | |
9880 ;;;*** | |
9881 | |
9882 ;;;### (autoloads nil "cmdloop" "prim/cmdloop.el" (12983 26833)) | |
9883 ;;; Generated autoloads from prim/cmdloop.el | |
9884 | |
9885 ;;;*** | |
9886 | |
9887 ;;;### (autoloads nil "cmdloop1" "prim/cmdloop1.el" (12983 26050)) | |
9888 ;;; Generated autoloads from prim/cmdloop1.el | |
9889 | |
9890 ;;;*** | |
9891 | |
9892 ;;;### (autoloads nil "console" "prim/console.el" (12983 26057)) | |
9893 ;;; Generated autoloads from prim/console.el | |
9894 | |
9895 ;;;### (autoloads (cancel-debug-on-entry debug-on-entry debug) "debug" "prim/debug.el" (12983 27332)) | |
9896 ;;; Generated autoloads from prim/debug.el | |
9897 | |
9898 (autoload 'debug "debug" "\ | |
9899 Enter debugger. To return, type \\<debugger-mode-map>`\\[debugger-continue]'. | |
9900 Arguments are mainly for use when this is called from the internals | |
9901 of the evaluator. | |
9902 | |
9903 You may call with no args, or you may pass nil as the first arg and | |
9904 any other args you like. In that case, the list of args after the | |
9905 first will be printed into the backtrace buffer." t nil) | |
9906 | |
9907 (autoload 'debug-on-entry "debug" "\ | |
9908 Request FUNCTION to invoke debugger each time it is called. | |
9909 If you tell the debugger to continue, FUNCTION's execution proceeds. | |
9910 This works by modifying the definition of FUNCTION, | |
9911 which must be written in Lisp, not predefined. | |
9912 Use \\[cancel-debug-on-entry] to cancel the effect of this command. | |
9913 Redefining FUNCTION also cancels it." t nil) | |
9914 | |
9915 (autoload 'cancel-debug-on-entry "debug" "\ | |
9916 Undo effect of \\[debug-on-entry] on FUNCTION. | |
9917 If argument is nil or an empty string, cancel for all functions." t nil) | |
9918 | |
9919 ;;;*** | |
9920 | |
9921 ;;;*** | |
9922 | |
9923 ;;;### (autoloads nil "device" "prim/device.el" (12983 26038)) | |
9924 ;;; Generated autoloads from prim/device.el | |
9925 | |
9926 ;;;*** | |
9927 | |
9928 ;;;### (autoloads nil "dialog" "prim/dialog.el" (12983 26053)) | |
9929 ;;; Generated autoloads from prim/dialog.el | |
9930 | |
9931 ;;;### (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" (12983 26836)) | |
9932 ;;; Generated autoloads from prim/disp-table.el | |
9933 | |
9934 (autoload 'describe-current-display-table "disp-table" "\ | |
9935 Describe the display table in use in the selected window and buffer." t nil) | |
9936 | |
9937 (autoload 'make-display-table "disp-table" "\ | |
9938 Return a new, empty display table." nil nil) | |
9939 | |
9940 (autoload 'standard-display-8bit "disp-table" "\ | |
9941 Display characters in the range L to H literally." nil nil) | |
9942 | |
9943 (autoload 'standard-display-default "disp-table" "\ | |
9944 Display characters in the range L to H using the default notation." nil nil) | |
9945 | |
9946 (autoload 'standard-display-ascii "disp-table" "\ | |
9947 Display character C using printable string S." nil nil) | |
9948 | |
9949 (autoload 'standard-display-g1 "disp-table" "\ | |
9950 Display character C as character SC in the g1 character set. | |
9951 This function assumes that your terminal uses the SO/SI characters; | |
9952 it is meaningless for an X frame." nil nil) | |
9953 | |
9954 (autoload 'standard-display-graphic "disp-table" "\ | |
9955 Display character C as character GC in graphics character set. | |
9956 This function assumes VT100-compatible escapes; it is meaningless for an | |
9957 X frame." nil nil) | |
9958 | |
9959 (autoload 'standard-display-underline "disp-table" "\ | |
9960 Display character C as character UC plus underlining." nil nil) | |
9961 | |
9962 (autoload 'standard-display-european "disp-table" "\ | |
9963 Toggle display of European characters encoded with ISO 8859. | |
9964 When enabled, characters in the range of 160 to 255 display not | |
9965 as octal escapes, but as accented characters. | |
9966 With prefix argument, enable European character display iff arg is positive." t nil) | |
9967 | |
9968 ;;;*** | |
9969 | |
9970 ;;;### (autoloads (setenv) "env" "prim/env.el" (12983 26834)) | |
9971 ;;; Generated autoloads from prim/env.el | |
9972 | |
9973 (autoload 'setenv "env" "\ | |
9974 Set the value of the environment variable named VARIABLE to VALUE. | |
9975 VARIABLE should be a string. VALUE is optional; if not provided or is | |
9976 `nil', the environment variable VARIABLE will be removed. | |
9977 | |
9978 Interactively, a prefix argument means to unset the variable. | |
9979 Interactively, the current value (if any) of the variable | |
9980 appears at the front of the history list when you type in the new value. | |
9981 | |
9982 This function works by modifying `process-environment'." t nil) | |
9983 | |
9984 ;;;*** | |
9985 | |
9986 ;;;*** | |
9987 | |
9988 ;;;### (autoloads nil "events" "prim/events.el" (12983 26057)) | |
9989 ;;; Generated autoloads from prim/events.el | |
9990 | |
9991 ;;;*** | |
9992 | |
9993 ;;;*** | |
9994 | |
9995 ;;;### (autoloads nil "extents" "prim/extents.el" (12983 26835)) | |
9996 ;;; Generated autoloads from prim/extents.el | |
9997 | |
9998 ;;;*** | |
9999 | |
10000 ;;;### (autoloads nil "faces" "prim/faces.el" (12983 26821)) | |
10001 ;;; Generated autoloads from prim/faces.el | |
10002 | |
10003 ;;;*** | |
10004 | |
10005 ;;;*** | |
10006 | |
10007 ;;;*** | |
10008 | |
10009 ;;;*** | |
10010 | |
10011 ;;;*** | |
10012 | |
10013 ;;;### (autoloads nil "files" "prim/files.el" (12988 32998)) | |
10014 ;;; Generated autoloads from prim/files.el | |
10015 | |
10016 ;;;*** | |
10017 | |
10018 ;;;### (autoloads nil "fill" "prim/fill.el" (12983 27330)) | |
10019 ;;; Generated autoloads from prim/fill.el | |
10020 | |
10021 ;;;*** | |
10022 | |
10023 ;;;### (autoloads nil "float-sup" "prim/float-sup.el" (12983 26825)) | |
10024 ;;; Generated autoloads from prim/float-sup.el | |
10025 | |
10026 ;;;*** | |
10027 | |
10028 ;;;### (autoloads nil "format" "prim/format.el" (12983 27342)) | |
10029 ;;; Generated autoloads from prim/format.el | |
10030 | |
10031 ;;;*** | |
10032 | |
10033 ;;;*** | |
10034 | |
10035 ;;;### (autoloads nil "frame" "prim/frame.el" (12992 16709)) | |
10036 ;;; Generated autoloads from prim/frame.el | |
10037 | |
10038 ;;;*** | |
10039 | |
10040 ;;;*** | |
10041 | |
10042 ;;;### (autoloads nil "glyphs" "prim/glyphs.el" (12988 32999)) | |
10043 ;;; Generated autoloads from prim/glyphs.el | |
10044 | |
10045 ;;;*** | |
10046 | |
10047 ;;;### (autoloads nil "gui" "prim/gui.el" (12983 26054)) | |
10048 ;;; Generated autoloads from prim/gui.el | |
10049 | |
10050 ;;;*** | |
10051 | |
10052 ;;;*** | |
10053 | |
10054 ;;;### (autoloads nil "help" "prim/help.el" (12996 6745)) | |
10055 ;;; Generated autoloads from prim/help.el | |
10056 | |
10057 ;;;*** | |
10058 | |
10059 ;;;### (autoloads nil "inc-vers" "prim/inc-vers.el" (12983 26042)) | |
10060 ;;; Generated autoloads from prim/inc-vers.el | |
10061 | |
10062 ;;;*** | |
10063 | |
10064 ;;;### (autoloads nil "indent" "prim/indent.el" (12983 27331)) | |
10065 ;;; Generated autoloads from prim/indent.el | |
10066 | |
10067 ;;;*** | |
10068 | |
10069 ;;;### (autoloads nil "isearch-mode" "prim/isearch-mode.el" (12983 26054)) | |
10070 ;;; Generated autoloads from prim/isearch-mode.el | |
10071 | |
10072 ;;;*** | |
10073 | |
10074 ;;;### (autoloads nil "itimer" "prim/itimer.el" (12983 26050)) | |
10075 ;;; Generated autoloads from prim/itimer.el | |
10076 | |
10077 ;;;*** | |
10078 | |
10079 ;;;*** | |
10080 | |
10081 ;;;### (autoloads nil "keydefs" "prim/keydefs.el" (12983 26042)) | |
10082 ;;; Generated autoloads from prim/keydefs.el | |
10083 | |
10084 ;;;*** | |
10085 | |
10086 ;;;### (autoloads nil "keymap" "prim/keymap.el" (12983 26833)) | |
10087 ;;; Generated autoloads from prim/keymap.el | |
10088 | |
10089 ;;;*** | |
10090 | |
10091 ;;;*** | |
10092 | |
10093 ;;;*** | |
10094 | |
10095 ;;;### (autoloads nil "lisp" "prim/lisp.el" (12991 23249)) | |
10096 ;;; Generated autoloads from prim/lisp.el | |
10097 | |
10098 ;;;*** | |
10099 | |
10100 ;;;*** | |
10101 | |
10102 ;;;*** | |
10103 | |
10104 ;;;*** | |
10105 | |
10106 ;;;*** | |
10107 | |
10108 ;;;*** | |
10109 | |
10110 ;;;*** | |
10111 | |
10112 ;;;*** | |
10113 | |
10114 ;;;*** | |
10115 | |
10116 ;;;*** | |
10117 | |
10118 ;;;*** | |
10119 | |
10120 ;;;### (autoloads nil "loaddefs" "prim/loaddefs.el" (12988 40815)) | |
10121 ;;; Generated autoloads from prim/loaddefs.el | |
10122 | |
10123 ;;;### (autoloads nil "loadup-el" "prim/loadup-el.el" (12983 26053)) | |
10124 ;;; Generated autoloads from prim/loadup-el.el | |
10125 | |
10126 ;;;*** | |
10127 | |
10128 ;;;### (autoloads nil "loadup" "prim/loadup.el" (12988 33000)) | |
10129 ;;; Generated autoloads from prim/loadup.el | |
10130 | |
10131 ;;;### (autoloads (apply-macro-to-region-lines kbd-macro-query insert-kbd-macro name-last-kbd-macro) "macros" "prim/macros.el" (12983 26037)) | |
10132 ;;; Generated autoloads from prim/macros.el | |
10133 | |
10134 (autoload 'name-last-kbd-macro "macros" "\ | |
10135 Assign a name to the last keyboard macro defined. | |
10136 Argument SYMBOL is the name to define. | |
10137 The symbol's function definition becomes the keyboard macro string. | |
10138 Such a \"function\" cannot be called from Lisp, but it is a valid | |
10139 editor command." t nil) | |
10140 | |
10141 (autoload 'insert-kbd-macro "macros" "\ | |
10142 Insert in buffer the definition of kbd macro NAME, as Lisp code. | |
10143 Optional second argument KEYS means also record the keys it is on | |
10144 \(this is the prefix argument, when calling interactively). | |
10145 | |
10146 This Lisp code will, when executed, define the kbd macro with the | |
10147 same definition it has now. If you say to record the keys, | |
10148 the Lisp code will also rebind those keys to the macro. | |
10149 Only global key bindings are recorded since executing this Lisp code | |
10150 always makes global bindings. | |
10151 | |
10152 To save a kbd macro, visit a file of Lisp code such as your `~/.emacs', | |
10153 use this command, and then save the file." t nil) | |
10154 | |
10155 (autoload 'kbd-macro-query "macros" "\ | |
10156 Query user during kbd macro execution. | |
10157 With prefix argument, enters recursive edit, | |
10158 reading keyboard commands even within a kbd macro. | |
10159 You can give different commands each time the macro executes. | |
10160 Without prefix argument, asks whether to continue running the macro. | |
10161 Your options are: \\<query-replace-map> | |
10162 \\[act] Finish this iteration normally and continue with the next. | |
10163 \\[skip] Skip the rest of this iteration, and start the next. | |
10164 \\[exit] Stop the macro entirely right now. | |
10165 \\[recenter] Redisplay the frame, then ask again. | |
10166 \\[edit] Enter recursive edit; ask again when you exit from that." t nil) | |
10167 | |
10168 (autoload 'apply-macro-to-region-lines "macros" "\ | |
10169 For each complete line between point and mark, move to the beginning | |
10170 of the line, and run the last keyboard macro. | |
10171 | |
10172 When called from lisp, this function takes two arguments TOP and | |
10173 BOTTOM, describing the current region. TOP must be before BOTTOM. | |
10174 The optional third argument MACRO specifies a keyboard macro to | |
10175 execute. | |
10176 | |
10177 This is useful for quoting or unquoting included text, adding and | |
10178 removing comments, or producing tables where the entries are regular. | |
10179 | |
10180 For example, in Usenet articles, sections of text quoted from another | |
10181 author are indented, or have each line start with `>'. To quote a | |
10182 section of text, define a keyboard macro which inserts `>', put point | |
10183 and mark at opposite ends of the quoted section, and use | |
10184 `\\[apply-macro-to-region-lines]' to mark the entire section. | |
10185 | |
10186 Suppose you wanted to build a keyword table in C where each entry | |
10187 looked like this: | |
10188 | |
10189 { \"foo\", foo_data, foo_function }, | |
10190 { \"bar\", bar_data, bar_function }, | |
10191 { \"baz\", baz_data, baz_function }, | |
10192 | |
10193 You could enter the names in this format: | |
10194 | |
10195 foo | |
10196 bar | |
10197 baz | |
10198 | |
10199 and write a macro to massage a word into a table entry: | |
10200 | |
10201 \\C-x ( | |
10202 \\M-d { \"\\C-y\", \\C-y_data, \\C-y_function }, | |
10203 \\C-x ) | |
10204 | |
10205 and then select the region of un-tablified names and use | |
10206 `\\[apply-macro-to-region-lines]' to build the table from the names. | |
10207 " t nil) | |
10208 | |
10209 ;;;*** | |
10210 | |
10211 ;;;*** | |
10212 | |
10213 ;;;### (autoloads nil "menubar" "prim/menubar.el" (12983 26057)) | |
10214 ;;; Generated autoloads from prim/menubar.el | |
10215 | |
10216 ;;;*** | |
10217 | |
10218 ;;;*** | |
10219 | |
10220 ;;;*** | |
10221 | |
10222 ;;;*** | |
10223 | |
10224 ;;;*** | |
10225 | |
10226 ;;;### (autoloads nil "minibuf" "prim/minibuf.el" (12983 27934)) | |
10227 ;;; Generated autoloads from prim/minibuf.el | |
10228 | |
10229 ;;;*** | |
10230 | |
10231 ;;;### (autoloads nil "misc" "prim/misc.el" (12983 26826)) | |
10232 ;;; Generated autoloads from prim/misc.el | |
10233 | |
10234 ;;;*** | |
10235 | |
10236 ;;;### (autoloads nil "mode-motion" "prim/mode-motion.el" (12983 26038)) | |
10237 ;;; Generated autoloads from prim/mode-motion.el | |
10238 | |
10239 ;;;*** | |
10240 | |
10241 ;;;### (autoloads nil "modeline" "prim/modeline.el" (12983 26836)) | |
10242 ;;; Generated autoloads from prim/modeline.el | |
10243 | |
10244 ;;;*** | |
10245 | |
10246 ;;;### (autoloads nil "mouse" "prim/mouse.el" (12983 27933)) | |
10247 ;;; Generated autoloads from prim/mouse.el | |
10248 | |
10249 ;;;### (autoloads (disable-command enable-command disabled-command-hook) "novice" "prim/novice.el" (12983 27334)) | |
10250 ;;; Generated autoloads from prim/novice.el | |
10251 | |
10252 (autoload 'disabled-command-hook "novice" nil nil nil) | |
10253 | |
10254 (autoload 'enable-command "novice" "\ | |
10255 Allow COMMAND to be executed without special confirmation from now on. | |
10256 The user's .emacs file is altered so that this will apply | |
10257 to future sessions." t nil) | |
10258 | |
10259 (autoload 'disable-command "novice" "\ | |
10260 Require special confirmation to execute COMMAND from now on. | |
10261 The user's .emacs file is altered so that this will apply | |
10262 to future sessions." t nil) | |
10263 | |
10264 ;;;*** | |
10265 | |
10266 ;;;*** | |
10267 | |
10268 ;;;### (autoloads nil "objects" "prim/objects.el" (12983 26057)) | |
10269 ;;; Generated autoloads from prim/objects.el | |
10270 | |
10271 ;;;*** | |
10272 | |
10273 ;;;### (autoloads nil "obsolete" "prim/obsolete.el" (12983 26053)) | |
10274 ;;; Generated autoloads from prim/obsolete.el | |
10275 | |
10276 ;;;### (autoloads (edit-options list-options) "options" "prim/options.el" (12983 27332)) | |
10277 ;;; Generated autoloads from prim/options.el | |
10278 | |
10279 (autoload 'list-options "options" "\ | |
10280 Display a list of XEmacs user options, with values and documentation." t nil) | |
10281 | |
10282 (autoload 'edit-options "options" "\ | |
10283 Edit a list of XEmacs user option values. | |
10284 Selects a buffer containing such a list, | |
10285 in which there are commands to set the option values. | |
10286 Type \\[describe-mode] in that buffer for a list of commands." t nil) | |
10287 | |
10288 ;;;*** | |
10289 | |
10290 ;;;*** | |
10291 | |
10292 ;;;*** | |
10293 | |
10294 ;;;### (autoloads nil "page" "prim/page.el" (12983 27330)) | |
10295 ;;; Generated autoloads from prim/page.el | |
10296 | |
10297 ;;;*** | |
10298 | |
10299 ;;;### (autoloads nil "paragraphs" "prim/paragraphs.el" (12983 27335)) | |
10300 ;;; Generated autoloads from prim/paragraphs.el | |
10301 | |
10302 ;;;*** | |
10303 | |
10304 ;;;### (autoloads nil "process" "prim/process.el" (12983 26055)) | |
10305 ;;; Generated autoloads from prim/process.el | |
10306 | |
10307 ;;;*** | |
10308 | |
10309 ;;;### (autoloads nil "profile" "prim/profile.el" (12983 26057)) | |
10310 ;;; Generated autoloads from prim/profile.el | |
10311 | |
10312 ;;;### (autoloads (clear-rectangle string-rectangle open-rectangle insert-rectangle yank-rectangle kill-rectangle extract-rectangle delete-extract-rectangle delete-rectangle) "rect" "prim/rect.el" (12983 27333)) | |
10313 ;;; Generated autoloads from prim/rect.el | |
10314 | |
10315 (autoload 'delete-rectangle "rect" "\ | |
10316 Delete (don't save) text in rectangle with point and mark as corners. | |
10317 The same range of columns is deleted in each line starting with the line | |
10318 where the region begins and ending with the line where the region ends." t nil) | |
10319 | |
10320 (autoload 'delete-extract-rectangle "rect" "\ | |
10321 Delete contents of rectangle and return it as a list of strings. | |
10322 Arguments START and END are the corners of the rectangle. | |
10323 The value is list of strings, one for each line of the rectangle." nil nil) | |
10324 | |
10325 (autoload 'extract-rectangle "rect" "\ | |
10326 Return contents of rectangle with corners at START and END. | |
10327 Value is list of strings, one for each line of the rectangle." nil nil) | |
10328 | |
10329 (defvar killed-rectangle nil "\ | |
10330 Rectangle for yank-rectangle to insert.") | |
10331 | |
10332 (autoload 'kill-rectangle "rect" "\ | |
10333 Delete rectangle with corners at point and mark; save as last killed one. | |
10334 Calling from program, supply two args START and END, buffer positions. | |
10335 But in programs you might prefer to use `delete-extract-rectangle'." t nil) | |
10336 | |
10337 (autoload 'yank-rectangle "rect" "\ | |
10338 Yank the last killed rectangle with upper left corner at point." t nil) | |
10339 | |
10340 (autoload 'insert-rectangle "rect" "\ | |
10341 Insert text of RECTANGLE with upper left corner at point. | |
10342 RECTANGLE's first line is inserted at point, its second | |
10343 line is inserted at a point vertically under point, etc. | |
10344 RECTANGLE should be a list of strings. | |
10345 After this command, the mark is at the upper left corner | |
10346 and point is at the lower right corner." nil nil) | |
10347 | |
10348 (autoload 'open-rectangle "rect" "\ | |
10349 Blank out rectangle with corners at point and mark, shifting text right. | |
10350 The text previously in the region is not overwritten by the blanks, | |
10351 but instead winds up to the right of the rectangle." t nil) | |
10352 | |
10353 (autoload 'string-rectangle "rect" "\ | |
10354 Insert STRING on each line of the region-rectangle, shifting text right. | |
10355 The left edge of the rectangle specifies the column for insertion. | |
10356 This command does not delete or overwrite any existing text. | |
10357 | |
10358 Called from a program, takes three args; START, END and STRING." t nil) | |
10359 | |
10360 (autoload 'clear-rectangle "rect" "\ | |
10361 Blank out rectangle with corners at point and mark. | |
10362 The text previously in the region is overwritten by the blanks. | |
10363 When called from a program, requires two args which specify the corners." t nil) | |
10364 | |
10365 ;;;*** | |
10366 | |
10367 ;;;*** | |
10368 | |
10369 ;;;*** | |
10370 | |
10371 ;;;### (autoloads nil "register" "prim/register.el" (12983 27332)) | |
10372 ;;; Generated autoloads from prim/register.el | |
10373 | |
10374 ;;;*** | |
10375 | |
10376 ;;;*** | |
10377 | |
10378 ;;;*** | |
10379 | |
10380 ;;;*** | |
10381 | |
10382 ;;;### (autoloads nil "replace" "prim/replace.el" (12983 27332)) | |
10383 ;;; Generated autoloads from prim/replace.el | |
10384 | |
10385 ;;;### (autoloads (reposition-window) "reposition" "prim/reposition.el" (12983 27334)) | |
10386 ;;; Generated autoloads from prim/reposition.el | |
10387 | |
10388 (autoload 'reposition-window "reposition" "\ | |
10389 Make the current definition and/or comment visible. | |
10390 Further invocations move it to the top of the window or toggle the | |
10391 visibility of comments that precede it. | |
10392 Point is left unchanged unless prefix ARG is supplied. | |
10393 If the definition is fully onscreen, it is moved to the top of the | |
10394 window. If it is partly offscreen, the window is scrolled to get the | |
10395 definition (or as much as will fit) onscreen, unless point is in a comment | |
10396 which is also partly offscreen, in which case the scrolling attempts to get | |
10397 as much of the comment onscreen as possible. | |
10398 Initially `reposition-window' attempts to make both the definition and | |
10399 preceding comments visible. Further invocations toggle the visibility of | |
10400 the comment lines. | |
10401 If ARG is non-nil, point may move in order to make the whole defun | |
10402 visible (if only part could otherwise be made so), to make the defun line | |
10403 visible (if point is in code and it could not be made so, or if only | |
10404 comments, including the first comment line, are visible), or to make the | |
10405 first comment line visible (if point is in a comment)." t nil) | |
10406 | |
10407 ;;;*** | |
10408 | |
10409 ;;;*** | |
10410 | |
10411 ;;;### (autoloads nil "scrollbar" "prim/scrollbar.el" (12983 26055)) | |
10412 ;;; Generated autoloads from prim/scrollbar.el | |
10413 | |
10414 ;;;*** | |
10415 | |
10416 ;;;*** | |
10417 | |
10418 ;;;*** | |
10419 | |
10420 ;;;*** | |
10421 | |
10422 ;;;*** | |
10423 | |
10424 ;;;### (autoloads nil "simple" "prim/simple.el" (12988 33001)) | |
10425 ;;; Generated autoloads from prim/simple.el | |
10426 | |
10427 ;;;### (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" (12996 13148)) | |
10428 ;;; Generated autoloads from prim/sort.el | |
10429 | |
10430 (autoload 'sort-subr "sort" "\ | |
10431 General text sorting routine to divide buffer into records and sort them. | |
10432 Arguments are REVERSE NEXTRECFUN ENDRECFUN &optional STARTKEYFUN ENDKEYFUN. | |
10433 | |
10434 We divide the accessible portion of the buffer into disjoint pieces | |
10435 called sort records. A portion of each sort record (perhaps all of | |
10436 it) is designated as the sort key. The records are rearranged in the | |
10437 buffer in order by their sort keys. The records may or may not be | |
10438 contiguous. | |
10439 | |
10440 Usually the records are rearranged in order of ascending sort key. | |
10441 If REVERSE is non-nil, they are rearranged in order of descending sort key. | |
10442 The variable `sort-fold-case' determines whether alphabetic case affects | |
10443 the sort order. | |
10444 | |
10445 The next four arguments are functions to be called to move point | |
10446 across a sort record. They will be called many times from within sort-subr. | |
10447 | |
10448 NEXTRECFUN is called with point at the end of the previous record. | |
10449 It moves point to the start of the next record. | |
10450 It should move point to the end of the buffer if there are no more records. | |
10451 The first record is assumed to start at the position of point when sort-subr | |
10452 is called. | |
10453 | |
10454 ENDRECFUN is called with point within the record. | |
10455 It should move point to the end of the record. | |
10456 | |
10457 STARTKEYFUN moves from the start of the record to the start of the key. | |
10458 It may return either a non-nil value to be used as the key, or | |
10459 else the key is the substring between the values of point after | |
10460 STARTKEYFUN and ENDKEYFUN are called. If STARTKEYFUN is nil, the key | |
10461 starts at the beginning of the record. | |
10462 | |
10463 ENDKEYFUN moves from the start of the sort key to the end of the sort key. | |
10464 ENDKEYFUN may be nil if STARTKEYFUN returns a value or if it would be the | |
10465 same as ENDRECFUN." nil nil) | |
10466 | |
10467 (autoload 'sort-lines "sort" "\ | |
10468 Sort lines in region alphabetically; argument means descending order. | |
10469 Called from a program, there are three arguments: | |
10470 REVERSE (non-nil means reverse order), BEG and END (region to sort). | |
10471 The variable `sort-fold-case' determines whether alphabetic case affects | |
10472 the sort order." t nil) | |
10473 | |
10474 (autoload 'sort-paragraphs "sort" "\ | |
10475 Sort paragraphs in region alphabetically; argument means descending order. | |
10476 Called from a program, there are three arguments: | |
10477 REVERSE (non-nil means reverse order), BEG and END (region to sort). | |
10478 The variable `sort-fold-case' determines whether alphabetic case affects | |
10479 the sort order." t nil) | |
10480 | |
10481 (autoload 'sort-pages "sort" "\ | |
10482 Sort pages in region alphabetically; argument means descending order. | |
10483 Called from a program, there are three arguments: | |
10484 REVERSE (non-nil means reverse order), BEG and END (region to sort). | |
10485 The variable `sort-fold-case' determines whether alphabetic case affects | |
10486 the sort order." t nil) | |
10487 | |
10488 (autoload 'sort-numeric-fields "sort" "\ | |
10489 Sort lines in region numerically by the ARGth field of each line. | |
10490 Fields are separated by whitespace and numbered from 1 up. | |
10491 Specified field must contain a number in each line of the region. | |
10492 With a negative arg, sorts by the ARGth field counted from the right. | |
10493 Called from a program, there are three arguments: | |
10494 FIELD, BEG and END. BEG and END specify region to sort. | |
10495 The variable `sort-fold-case' determines whether alphabetic case affects | |
10496 the sort order. | |
10497 If you want to sort floating-point numbers, try `sort-float-fields'." t nil) | |
10498 | |
10499 (autoload 'sort-float-fields "sort" "\ | |
10500 Sort lines in region numerically by the ARGth field of each line. | |
10501 Fields are separated by whitespace and numbered from 1 up. Specified field | |
10502 must contain a floating point number in each line of the region. With a | |
10503 negative arg, sorts by the ARGth field counted from the right. Called from a | |
10504 program, there are three arguments: FIELD, BEG and END. BEG and END specify | |
10505 region to sort." t nil) | |
10506 | |
10507 (autoload 'sort-fields "sort" "\ | |
10508 Sort lines in region lexicographically by the ARGth field of each line. | |
10509 Fields are separated by whitespace and numbered from 1 up. | |
10510 With a negative arg, sorts by the ARGth field counted from the right. | |
10511 Called from a program, there are three arguments: | |
10512 FIELD, BEG and END. BEG and END specify region to sort." t nil) | |
10513 | |
10514 (autoload 'sort-regexp-fields "sort" "\ | |
10515 Sort the region lexicographically as specified by RECORD-REGEXP and KEY. | |
10516 RECORD-REGEXP specifies the textual units which should be sorted. | |
10517 For example, to sort lines RECORD-REGEXP would be \"^.*$\" | |
10518 KEY specifies the part of each record (ie each match for RECORD-REGEXP) | |
10519 is to be used for sorting. | |
10520 If it is \"\\\\digit\" then the digit'th \"\\\\(...\\\\)\" match field from | |
10521 RECORD-REGEXP is used. | |
10522 If it is \"\\\\&\" then the whole record is used. | |
10523 Otherwise, it is a regular-expression for which to search within the record. | |
10524 If a match for KEY is not found within a record then that record is ignored. | |
10525 | |
10526 With a negative prefix arg sorts in reverse order. | |
10527 | |
10528 The variable `sort-fold-case' determines whether alphabetic case affects | |
10529 the sort order. | |
10530 | |
10531 For example: to sort lines in the region by the first word on each line | |
10532 starting with the letter \"f\", | |
10533 RECORD-REGEXP would be \"^.*$\" and KEY would be \"\\\\=\\<f\\\\w*\\\\>\"" t nil) | |
10534 | |
10535 (autoload 'sort-columns "sort" "\ | |
10536 Sort lines in region alphabetically by a certain range of columns. | |
10537 For the purpose of this command, the region includes | |
10538 the entire line that point is in and the entire line the mark is in. | |
10539 The column positions of point and mark bound the range of columns to sort on. | |
10540 A prefix argument means sort into reverse order. | |
10541 The variable `sort-fold-case' determines whether alphabetic case affects | |
10542 the sort order. | |
10543 | |
10544 Note that `sort-columns' rejects text that contains tabs, | |
10545 because tabs could be split across the specified columns | |
10546 and it doesn't know how to handle that. Also, when possible, | |
10547 it uses the `sort' utility program, which doesn't understand tabs. | |
10548 Use \\[untabify] to convert tabs to spaces before sorting." t nil) | |
10549 | |
10550 (autoload 'reverse-region "sort" "\ | |
10551 Reverse the order of lines in a region. | |
10552 From a program takes two point or marker arguments, BEG and END." t nil) | |
10553 | |
10554 ;;;*** | |
10555 | |
10556 ;;;### (autoloads (load-default-sounds load-sound-file) "sound" "prim/sound.el" (12983 26049)) | |
10557 ;;; Generated autoloads from prim/sound.el | |
10558 | |
10559 (or sound-alist (setq sound-alist '((ready nil) (warp nil)))) | |
10560 | |
10561 (autoload 'load-sound-file "sound" "\ | |
10562 Read in an audio-file and add it to the sound-alist. | |
10563 | |
10564 You can only play sound files if you are running on display 0 of the console | |
10565 of a Sun SparcStation, SGI machine, or HP9000s700, or running a NetAudio | |
10566 server. The sound file must be in the Sun/NeXT U-LAW format." t nil) | |
10567 | |
10568 (autoload 'load-default-sounds "sound" "\ | |
10569 Load and install some sound files as beep-types. | |
10570 This only works if you're on display 0 of a Sun SparcStation, SGI machine, | |
10571 or HP9000s700, or running a NetAudio server." t nil) | |
10572 | |
10573 ;;;*** | |
10574 | |
10575 ;;;*** | |
10576 | |
10577 ;;;*** | |
10578 | |
10579 ;;;### (autoloads nil "specifier" "prim/specifier.el" (12983 26836)) | |
10580 ;;; Generated autoloads from prim/specifier.el | |
10581 | |
10582 ;;;*** | |
10583 | |
10584 ;;;*** | |
10585 | |
10586 ;;;*** | |
10587 | |
10588 ;;;### (autoloads nil "startup" "prim/startup.el" (12995 23032)) | |
10589 ;;; Generated autoloads from prim/startup.el | |
10590 | |
10591 ;;;*** | |
10592 | |
10593 ;;;### (autoloads nil "subr" "prim/subr.el" (12983 27329)) | |
10594 ;;; Generated autoloads from prim/subr.el | |
10595 | |
10596 ;;;*** | |
10597 | |
10598 ;;;### (autoloads nil "symbols" "prim/symbols.el" (12983 26057)) | |
10599 ;;; Generated autoloads from prim/symbols.el | |
10600 | |
10601 ;;;*** | |
10602 | |
10603 ;;;### (autoloads nil "syntax" "prim/syntax.el" (12983 26051)) | |
10604 ;;; Generated autoloads from prim/syntax.el | |
10605 | |
10606 ;;;### (autoloads (tabify untabify) "tabify" "prim/tabify.el" (12983 26833)) | |
10607 ;;; Generated autoloads from prim/tabify.el | |
10608 | |
10609 (autoload 'untabify "tabify" "\ | |
10610 Convert all tabs in region to multiple spaces, preserving columns. | |
10611 Called non-interactively, the region is specified by arguments | |
10612 START and END, rather than by the position of point and mark. | |
10613 The variable `tab-width' controls the spacing of tab stops." t nil) | |
10614 | |
10615 (autoload 'tabify "tabify" "\ | |
10616 Convert multiple spaces in region to tabs when possible. | |
10617 A group of spaces is partially replaced by tabs | |
10618 when this can be done without changing the column they end at. | |
10619 Called non-interactively, the region is specified by arguments | |
10620 START and END, rather than by the position of point and mark. | |
10621 The variable `tab-width' controls the spacing of tab stops." t nil) | |
10622 | |
10623 ;;;*** | |
10624 | |
10625 ;;;*** | |
10626 | |
10627 ;;;### (autoloads nil "toolbar" "prim/toolbar.el" (12983 26050)) | |
10628 ;;; Generated autoloads from prim/toolbar.el | |
10629 | |
10630 ;;;*** | |
10631 | |
10632 ;;;*** | |
10633 | |
10634 ;;;### (autoloads nil "undo-stack" "prim/undo-stack.el" (12983 26840)) | |
10635 ;;; Generated autoloads from prim/undo-stack.el | |
10636 | |
10637 ;;;*** | |
10638 | |
10639 ;;;### (autoloads nil "update-elc" "prim/update-elc.el" (12983 26053)) | |
10640 ;;; Generated autoloads from prim/update-elc.el | |
10641 | |
10642 ;;;### (autoloads (ask-user-about-supersession-threat ask-user-about-lock) "userlock" "prim/userlock.el" (12983 27338)) | |
10643 ;;; Generated autoloads from prim/userlock.el | |
10644 | |
10645 (autoload 'ask-user-about-lock "userlock" "\ | |
10646 Ask user what to do when he wants to edit FILE but it is locked by USER. | |
10647 This function has a choice of three things to do: | |
10648 do (signal 'file-locked (list FILE USER)) | |
10649 to refrain from editing the file | |
10650 return t (grab the lock on the file) | |
10651 return nil (edit the file even though it is locked). | |
10652 You can rewrite it to use any criterion you like to choose which one to do." nil nil) | |
10653 | |
10654 (autoload 'ask-user-about-supersession-threat "userlock" "\ | |
10655 Ask a user who is about to modify an obsolete buffer what to do. | |
10656 This function has two choices: it can return, in which case the modification | |
10657 of the buffer will proceed, or it can (signal 'file-supersession (file)), | |
10658 in which case the proposed buffer modification will not be made. | |
10659 | |
10660 You can rewrite this to use any criterion you like to choose which one to do. | |
10661 The buffer in question is current when this function is called." nil nil) | |
10662 | |
10663 ;;;*** | |
10664 | |
10665 ;;;*** | |
10666 | |
10667 ;;;### (autoloads nil "window" "prim/window.el" (12983 26048)) | |
10668 ;;; Generated autoloads from prim/window.el | |
10669 | |
10670 ;;;*** | |
10671 | |
10672 ;;;*** | |
10673 | |
10674 ;;;### (autoloads nil "iso-sgml" "psgml/iso-sgml.el" (12983 26945)) | |
10675 ;;; Generated autoloads from psgml/iso-sgml.el | |
10676 | |
10677 ;;;*** | |
10678 | |
10679 ;;;*** | |
10680 | |
10681 ;;;### (autoloads nil "nefarious" "psgml/nefarious.el" (12983 26948)) | |
10682 ;;; Generated autoloads from psgml/nefarious.el | |
10683 | |
10684 ;;;*** | |
10685 | |
10686 ;;;### (autoloads nil "psgml-api" "psgml/psgml-api.el" (12983 26945)) | |
10687 ;;; Generated autoloads from psgml/psgml-api.el | |
10688 | |
10689 ;;;*** | |
10690 | |
10691 ;;;### (autoloads nil "psgml-charent" "psgml/psgml-charent.el" (12983 26945)) | |
10692 ;;; Generated autoloads from psgml/psgml-charent.el | |
10693 | |
10694 ;;;*** | |
10695 | |
10696 ;;;*** | |
10697 | |
10698 ;;;### (autoloads nil "psgml-debug" "psgml/psgml-debug.el" (12983 26945)) | |
10699 ;;; Generated autoloads from psgml/psgml-debug.el | |
10700 | |
10701 ;;;*** | |
10702 | |
10703 ;;;### (autoloads nil "psgml-dtd" "psgml/psgml-dtd.el" (12983 26945)) | |
10704 ;;; Generated autoloads from psgml/psgml-dtd.el | |
10705 | |
10706 ;;;*** | |
10707 | |
10708 ;;;### (autoloads nil "psgml-edit" "psgml/psgml-edit.el" (12983 26946)) | |
10709 ;;; Generated autoloads from psgml/psgml-edit.el | |
10710 | |
10711 ;;;### (autoloads (style-format) "psgml-fs" "psgml/psgml-fs.el" (12983 26945)) | |
10712 ;;; Generated autoloads from psgml/psgml-fs.el | |
10713 | |
10714 (autoload 'style-format "psgml-fs" nil t nil) | |
10715 | |
10716 ;;;*** | |
10717 | |
10718 ;;;### (autoloads nil "psgml-html" "psgml/psgml-html.el" (12983 26946)) | |
10719 ;;; Generated autoloads from psgml/psgml-html.el | |
10720 | |
10721 (autoload 'html-mode "psgml-html" "\ | |
10722 HTML mode." t) | |
10723 | |
10724 (autoload 'html3-mode "psgml-html" "\ | |
10725 HTML3 mode." t) | |
10726 | |
10727 ;;;*** | |
10728 | |
10729 ;;;*** | |
10730 | |
10731 ;;;*** | |
10732 | |
10733 ;;;### (autoloads nil "psgml-info" "psgml/psgml-info.el" (12983 26946)) | |
10734 ;;; Generated autoloads from psgml/psgml-info.el | |
10735 | |
10736 ;;;*** | |
10737 | |
10738 ;;;*** | |
10739 | |
10740 ;;;### (autoloads nil "psgml-lfix" "psgml/psgml-lfix.el" (12983 26948)) | |
10741 ;;; Generated autoloads from psgml/psgml-lfix.el | |
10742 | |
10743 ;;;*** | |
10744 | |
10745 ;;;*** | |
10746 | |
10747 ;;;### (autoloads nil "psgml-other" "psgml/psgml-other.el" (12983 26946)) | |
10748 ;;; Generated autoloads from psgml/psgml-other.el | |
10749 | |
10750 ;;;*** | |
10751 | |
10752 ;;;*** | |
10753 | |
10754 ;;;### (autoloads nil "psgml-parse" "psgml/psgml-parse.el" (12989 49155)) | |
10755 ;;; Generated autoloads from psgml/psgml-parse.el | |
10756 | |
10757 ;;;### (autoloads nil "psgml-xemacs" "psgml/psgml-xemacs.el" (12983 26947)) | |
10758 ;;; Generated autoloads from psgml/psgml-xemacs.el | |
10759 | |
10760 ;;;### (autoloads (sgml-mode) "psgml" "psgml/psgml.el" (12983 26947)) | |
10761 ;;; Generated autoloads from psgml/psgml.el | |
10762 | |
10763 (autoload 'sgml-mode "psgml" "\ | |
10764 Major mode for editing SGML.\\<sgml-mode-map> | |
10765 Makes > display the matching <. Makes / display matching /. | |
10766 Use \\[sgml-validate] to validate your document with an SGML parser. | |
10767 | |
10768 You can find information with: | |
10769 \\[sgml-show-context] Show the nesting of elements at cursor position. | |
10770 \\[sgml-list-valid-tags] Show the tags valid at cursor position. | |
10771 | |
10772 Insert tags with completion of contextually valid tags with \\[sgml-insert-tag]. | |
10773 End the current element with \\[sgml-insert-end-tag]. Insert an element (i.e. | |
10774 both start and end tag) with \\[sgml-insert-element]. Or tag a region with | |
10775 \\[sgml-tag-region]. | |
10776 | |
10777 To tag a region with the mouse, use transient mark mode or secondary selection. | |
10778 | |
10779 Structure editing: | |
10780 \\[sgml-backward-element] Moves backwards over the previous element. | |
10781 \\[sgml-forward-element] Moves forward over the nex element. | |
10782 \\[sgml-down-element] Move forward and down one level in the element structure. | |
10783 \\[sgml-backward-up-element] Move backward out of this element level. | |
10784 \\[sgml-beginning-of-element] Move to after the start tag of the current element. | |
10785 \\[sgml-end-of-element] Move to before the end tag of the current element. | |
10786 \\[sgml-kill-element] Kill the element following the cursor. | |
10787 | |
10788 Finding interesting positions | |
10789 \\[sgml-next-data-field] Move forward to next point where data is allowed. | |
10790 \\[sgml-next-trouble-spot] Move forward to next point where something is | |
10791 amiss with the structure. | |
10792 | |
10793 Folding and unfolding | |
10794 \\[sgml-fold-element] Fold the lines comprising the current element, leaving | |
10795 the first line visible. | |
10796 \\[sgml-fold-subelement] Fold the elements in the content of the current element. | |
10797 Leaving the first line of every element visible. | |
10798 \\[sgml-unfold-line] Show hidden lines in current line. | |
10799 | |
10800 User options: | |
10801 | |
10802 sgml-omittag Set this to reflect OMITTAG in the SGML declaration. | |
10803 sgml-shortag Set this to reflect SHORTTAG in the SGML declaration. | |
10804 sgml-auto-insert-required-elements If non-nil, automatically insert required | |
10805 elements in the content of an inserted element. | |
10806 sgml-balanced-tag-edit If non-nil, always insert start-end tag pairs. | |
10807 sgml-omittag-transparent If non-nil, will show legal tags inside elements | |
10808 with omitable start tags and legal tags beyond omitable end tags. | |
10809 sgml-leave-point-after-insert If non-nil, the point will remain after | |
10810 inserted tag(s). | |
10811 sgml-warn-about-undefined-elements If non-nil, print a warning when a tag | |
10812 for a undefined element is found. | |
10813 sgml-max-menu-size Max number of entries in Tags and Entities menus before | |
10814 they are split into several panes. | |
10815 sgml-always-quote-attributes If non-nil, quote all attribute values | |
10816 inserted after finishing edit attributes. | |
10817 sgml-minimize-attributes Determines minimization of attributes inserted by | |
10818 edit-attributes. | |
10819 sgml-normalize-trims If non-nil, sgml-normalize will trim off white space | |
10820 from end of element when adding end tag. | |
10821 sgml-indent-step How much to increament indent for every element level. | |
10822 sgml-indent-data If non-nil, indent in data/mixed context also. | |
10823 sgml-set-face If non-nil, psgml will set the face of parsed markup. | |
10824 sgml-markup-faces The faces used when the above variable is non-nil. | |
10825 sgml-system-path List of directorys used to look for system identifiers. | |
10826 sgml-public-map Mapping from public identifiers to file names. | |
10827 sgml-offer-save If non-nil, ask about saving modified buffers before | |
10828 \\[sgml-validate] is run. | |
10829 | |
10830 All bindings: | |
10831 \\{sgml-mode-map} | |
10832 " t nil) | |
10833 | |
10834 ;;;*** | |
10835 | |
10836 ;;;*** | |
10837 | |
10838 ;;;### (autoloads nil "tempo" "psgml/tempo.el" (12983 26235)) | |
10839 ;;; Generated autoloads from psgml/tempo.el | |
10840 | |
10841 ;;;*** | |
10842 | |
10843 ;;;*** | |
10844 | |
10845 ;;;### (autoloads nil "rmail-kill" "rmail/rmail-kill.el" (12983 27345)) | |
10846 ;;; Generated autoloads from rmail/rmail-kill.el | |
10847 | |
10848 ;;;*** | |
10849 | |
10850 ;;;### (autoloads nil "rmail-xemacs" "rmail/rmail-xemacs.el" (12983 27346)) | |
10851 ;;; Generated autoloads from rmail/rmail-xemacs.el | |
10852 | |
10853 ;;;### (autoloads (rmail-input rmail-mode rmail) "rmail" "rmail/rmail.el" (12983 27346)) | |
10854 ;;; Generated autoloads from rmail/rmail.el | |
10855 | |
10856 (defvar rmail-dont-reply-to-names nil "\ | |
10857 *A regexp specifying names to prune of reply to messages. | |
10858 A value of nil means exclude your own name only.") | |
10859 | |
10860 (defvar rmail-default-dont-reply-to-names "info-" "\ | |
10861 A regular expression specifying part of the value of the default value of | |
10862 the variable `rmail-dont-reply-to-names', for when the user does not set | |
10863 `rmail-dont-reply-to-names' explicitly. (The other part of the default | |
10864 value is the user's name.) | |
10865 It is useful to set this variable in the site customization file.") | |
10866 | |
10867 (defvar rmail-displayed-headers nil "\ | |
10868 *Regexp to match Header fields that Rmail should display. | |
10869 If nil, display all header fields except those matched by | |
10870 `rmail-ignored-headers'.") | |
10871 | |
10872 (defvar rmail-retry-ignored-headers nil "\ | |
10873 *Headers that should be stripped when retrying a failed message.") | |
10874 | |
10875 (defvar rmail-highlighted-headers "^From:\\|^Subject:" "\ | |
10876 *Regexp to match Header fields that Rmail should normally highlight. | |
10877 A value of nil means don't highlight. | |
10878 See also `rmail-highlight-face'.") | |
10879 | |
10880 (defvar rmail-highlight-face nil "\ | |
10881 *Face used by Rmail for highlighting headers.") | |
10882 | |
10883 (defvar rmail-delete-after-output nil "\ | |
10884 *Non-nil means automatically delete a message that is copied to a file.") | |
10885 | |
10886 (defvar rmail-primary-inbox-list nil "\ | |
10887 *List of files which are inboxes for user's primary mail file `~/RMAIL'. | |
10888 `nil' means the default, which is (\"/usr/spool/mail/$USER\") | |
10889 \(the name varies depending on the operating system, | |
10890 and the value of the environment variable MAIL overrides it).") | |
10891 | |
10892 (defvar rmail-mail-new-frame nil "\ | |
10893 *Non-nil means Rmail makes a new frame for composing outgoing mail.") | |
10894 | |
10895 (defvar rmail-retry-setup-hook nil "\ | |
10896 Hook that `rmail-retry-failure' uses in place of `mail-setup-hook'.") | |
10897 | |
10898 (defvar rmail-last-file nil) | |
10899 | |
10900 (autoload 'rmail "rmail" "\ | |
10901 Read and edit incoming mail. | |
10902 Moves messages into file named by `rmail-file-name' (a babyl format file) | |
10903 and edits that file in RMAIL Mode. | |
10904 Type \\[describe-mode] once editing that file, for a list of RMAIL commands. | |
10905 | |
10906 May be called with filename as argument; then performs rmail editing on | |
10907 that file, but does not copy any new mail into the file." t nil) | |
10908 | |
10909 (autoload 'rmail-mode "rmail" "\ | |
10910 Rmail Mode is used by \\<rmail-mode-map>\\[rmail] for editing Rmail files. | |
10911 All normal editing commands are turned off. | |
10912 Instead, these commands are available: | |
10913 | |
10914 \\[rmail-beginning-of-message] Move point to front of this message (same as \\[beginning-of-buffer]). | |
10915 \\[scroll-up] Scroll to next screen of this message. | |
10916 \\[scroll-down] Scroll to previous screen of this message. | |
10917 \\[rmail-next-undeleted-message] Move to Next non-deleted message. | |
10918 \\[rmail-previous-undeleted-message] Move to Previous non-deleted message. | |
10919 \\[rmail-next-message] Move to Next message whether deleted or not. | |
10920 \\[rmail-previous-message] Move to Previous message whether deleted or not. | |
10921 \\[rmail-first-message] Move to the first message in Rmail file. | |
10922 \\[rmail-last-message] Move to the last message in Rmail file. | |
10923 \\[rmail-show-message] Jump to message specified by numeric position in file. | |
10924 \\[rmail-search] Search for string and show message it is found in. | |
10925 \\[rmail-delete-forward] Delete this message, move to next nondeleted. | |
10926 \\[rmail-delete-backward] Delete this message, move to previous nondeleted. | |
10927 \\[rmail-undelete-previous-message] Undelete message. Tries current message, then earlier messages | |
10928 till a deleted message is found. | |
10929 \\[rmail-edit-current-message] Edit the current message. \\[rmail-cease-edit] to return to Rmail. | |
10930 \\[rmail-expunge] Expunge deleted messages. | |
10931 \\[rmail-expunge-and-save] Expunge and save the file. | |
10932 \\[rmail-quit] Quit Rmail: expunge, save, then switch to another buffer. | |
10933 \\[save-buffer] Save without expunging. | |
10934 \\[rmail-get-new-mail] Move new mail from system spool directory into this file. | |
10935 \\[rmail-mail] Mail a message (same as \\[mail-other-window]). | |
10936 \\[rmail-continue] Continue composing outgoing message started before. | |
10937 \\[rmail-reply] Reply to this message. Like \\[rmail-mail] but initializes some fields. | |
10938 \\[rmail-retry-failure] Send this message again. Used on a mailer failure message. | |
10939 \\[rmail-forward] Forward this message to another user. | |
10940 \\[rmail-output-to-rmail-file] Output this message to an Rmail file (append it). | |
10941 \\[rmail-output] Output this message to a Unix-format mail file (append it). | |
10942 \\[rmail-input] Input Rmail file. Run Rmail on that file. | |
10943 \\[rmail-add-label] Add label to message. It will be displayed in the mode line. | |
10944 \\[rmail-kill-label] Kill label. Remove a label from current message. | |
10945 \\[rmail-next-labeled-message] Move to Next message with specified label | |
10946 (label defaults to last one specified). | |
10947 Standard labels: filed, unseen, answered, forwarded, deleted. | |
10948 Any other label is present only if you add it with \\[rmail-add-label]. | |
10949 \\[rmail-previous-labeled-message] Move to Previous message with specified label | |
10950 \\[rmail-summary] Show headers buffer, with a one line summary of each message. | |
10951 \\[rmail-summary-by-labels] Summarize only messages with particular label(s). | |
10952 \\[rmail-summary-by-recipients] Summarize only messages with particular recipient(s). | |
10953 \\[rmail-summary-by-regexp] Summarize only messages with particular regexp(s). | |
10954 \\[rmail-summary-by-topic] Summarize only messages with subject line regexp(s). | |
10955 \\[rmail-toggle-header] Toggle display of complete header." t nil) | |
10956 | |
10957 (autoload 'rmail-input "rmail" "\ | |
10958 Run Rmail on file FILENAME." t nil) | |
10959 | |
10960 ;;;*** | |
10961 | |
10962 ;;;*** | |
10963 | |
10964 ;;;### (autoloads nil "rmailedit" "rmail/rmailedit.el" (12983 26061)) | |
10965 ;;; Generated autoloads from rmail/rmailedit.el | |
10966 | |
10967 ;;;*** | |
10968 | |
10969 ;;;### (autoloads nil "rmailkwd" "rmail/rmailkwd.el" (12983 26066)) | |
10970 ;;; Generated autoloads from rmail/rmailkwd.el | |
10971 | |
10972 ;;;*** | |
10973 | |
10974 ;;;### (autoloads nil "rmailmsc" "rmail/rmailmsc.el" (12983 26066)) | |
10975 ;;; Generated autoloads from rmail/rmailmsc.el | |
10976 | |
10977 ;;;### (autoloads (rmail-file-p) "rmailout" "rmail/rmailout.el" (12983 26067)) | |
10978 ;;; Generated autoloads from rmail/rmailout.el | |
10979 | |
10980 (autoload 'rmail-file-p "rmailout" nil nil nil) | |
10981 | |
10982 ;;;*** | |
10983 | |
10984 ;;;*** | |
10985 | |
10986 ;;;### (autoloads nil "rmailsort" "rmail/rmailsort.el" (12983 26068)) | |
10987 ;;; Generated autoloads from rmail/rmailsort.el | |
10988 | |
10989 ;;;*** | |
10990 | |
10991 ;;;### (autoloads nil "rmailsum" "rmail/rmailsum.el" (12983 26067)) | |
10992 ;;; Generated autoloads from rmail/rmailsum.el | |
10993 | |
10994 ;;;*** | |
10995 | |
10996 ;;;### (autoloads nil "undigest" "rmail/undigest.el" (12983 26069)) | |
10997 ;;; Generated autoloads from rmail/undigest.el | |
10998 | |
10999 ;;;### (autoloads (unrmail batch-unrmail) "unrmail" "rmail/unrmail.el" (12983 26069)) | |
11000 ;;; Generated autoloads from rmail/unrmail.el | |
11001 | |
11002 (autoload 'batch-unrmail "unrmail" "\ | |
11003 Convert Rmail files to mailbox files. | |
11004 Specify the input Rmail file names as command line arguments. | |
11005 For each Rmail file, the corresponding output file name | |
11006 is made by adding `.mail' at the end. | |
11007 For example, invoke `emacs -batch -f batch-unrmail RMAIL'." nil nil) | |
11008 | |
11009 (autoload 'unrmail "unrmail" "\ | |
11010 Convert Rmail file FILE to mailbox-format file TO-FILE." t nil) | |
11011 | |
11012 ;;;*** | |
11013 | |
11014 ;;;### (autoloads nil "eserve" "sunpro/eserve.el" (12690 2205)) | |
11015 ;;; Generated autoloads from sunpro/eserve.el | |
11016 | |
11017 ;;;*** | |
11018 | |
11019 ;;;*** | |
11020 | |
11021 ;;;*** | |
11022 | |
11023 ;;;### (autoloads nil "sunpro-init" "sunpro/sunpro-init.el" (12983 26875)) | |
11024 ;;; Generated autoloads from sunpro/sunpro-init.el | |
11025 | |
11026 ;;;*** | |
11027 | |
11028 ;;;### (autoloads nil "sunpro-keys" "sunpro/sunpro-keys.el" (12983 26111)) | |
11029 ;;; Generated autoloads from sunpro/sunpro-keys.el | |
11030 | |
11031 ;;;*** | |
11032 | |
11033 ;;;### (autoloads nil "sunpro-load" "sunpro/sunpro-load.el" (12983 26111)) | |
11034 ;;; Generated autoloads from sunpro/sunpro-load.el | |
11035 | |
11036 ;;;*** | |
11037 | |
11038 ;;;### (autoloads nil "sunpro-menubar" "sunpro/sunpro-menubar.el" (12983 26111)) | |
11039 ;;; Generated autoloads from sunpro/sunpro-menubar.el | |
11040 | |
11041 ;;;*** | |
11042 | |
11043 ;;;### (autoloads nil "sunpro-sparcworks" "sunpro/sunpro-sparcworks.el" (12983 26112)) | |
11044 ;;; Generated autoloads from sunpro/sunpro-sparcworks.el | |
11045 | |
11046 ;;;### (autoloads nil "workshop" "sunpro/workshop.el" (12690 2204)) | |
11047 ;;; Generated autoloads from sunpro/workshop.el | |
11048 | |
11049 ;;;*** | |
11050 | |
11051 ;;;### (autoloads nil "AT386" "term/AT386.el" (12983 26070)) | |
11052 ;;; Generated autoloads from term/AT386.el | |
11053 | |
11054 ;;;*** | |
11055 | |
11056 ;;;### (autoloads nil "apollo" "term/apollo.el" (12983 26070)) | |
11057 ;;; Generated autoloads from term/apollo.el | |
11058 | |
11059 ;;;*** | |
11060 | |
11061 ;;;### (autoloads nil "bg-mouse" "term/bg-mouse.el" (12983 26071)) | |
11062 ;;; Generated autoloads from term/bg-mouse.el | |
11063 | |
11064 ;;;*** | |
11065 | |
11066 ;;;### (autoloads nil "bobcat" "term/bobcat.el" (12983 26071)) | |
11067 ;;; Generated autoloads from term/bobcat.el | |
11068 | |
11069 ;;;*** | |
11070 | |
11071 ;;;### (autoloads nil "internal" "term/internal.el" (12983 26071)) | |
11072 ;;; Generated autoloads from term/internal.el | |
11073 | |
11074 ;;;*** | |
11075 | |
11076 ;;;### (autoloads nil "keyswap" "term/keyswap.el" (12983 26071)) | |
11077 ;;; Generated autoloads from term/keyswap.el | |
11078 | |
11079 ;;;*** | |
11080 | |
11081 ;;;### (autoloads nil "linux" "term/linux.el" (12983 26071)) | |
11082 ;;; Generated autoloads from term/linux.el | |
11083 | |
11084 ;;;*** | |
11085 | |
11086 ;;;### (autoloads nil "lk201" "term/lk201.el" (12983 26071)) | |
11087 ;;; Generated autoloads from term/lk201.el | |
11088 | |
11089 ;;;*** | |
11090 | |
11091 ;;;### (autoloads nil "news" "term/news.el" (12983 26069)) | |
11092 ;;; Generated autoloads from term/news.el | |
11093 | |
11094 ;;;*** | |
11095 | |
11096 ;;;### (autoloads nil "pc-win" "term/pc-win.el" (12983 26071)) | |
11097 ;;; Generated autoloads from term/pc-win.el | |
11098 | |
11099 ;;;*** | |
11100 | |
11101 ;;;### (autoloads nil "scoansi" "term/scoansi.el" (12983 26071)) | |
11102 ;;; Generated autoloads from term/scoansi.el | |
11103 | |
11104 ;;;*** | |
11105 | |
11106 ;;;### (autoloads nil "sun-mouse" "term/sun-mouse.el" (12983 26848)) | |
11107 ;;; Generated autoloads from term/sun-mouse.el | |
11108 | |
11109 ;;;*** | |
11110 | |
11111 ;;;### (autoloads nil "sun" "term/sun.el" (12983 26071)) | |
11112 ;;; Generated autoloads from term/sun.el | |
11113 | |
11114 ;;;*** | |
11115 | |
11116 ;;;### (autoloads nil "sup-mouse" "term/sup-mouse.el" (12983 26071)) | |
11117 ;;; Generated autoloads from term/sup-mouse.el | |
11118 | |
11119 ;;;*** | |
11120 | |
11121 ;;;### (autoloads nil "tty-init" "term/tty-init.el" (12983 26069)) | |
11122 ;;; Generated autoloads from term/tty-init.el | |
11123 | |
11124 ;;;*** | |
11125 | |
11126 ;;;### (autoloads nil "tvi970" "term/tvi970.el" (12983 26071)) | |
11127 ;;; Generated autoloads from term/tvi970.el | |
11128 | |
11129 ;;;*** | |
11130 | |
11131 ;;;### (autoloads nil "vt-control" "term/vt-control.el" (12983 26070)) | |
11132 ;;; Generated autoloads from term/vt-control.el | |
11133 | |
11134 ;;;*** | |
11135 | |
11136 ;;;### (autoloads nil "vt100-led" "term/vt100-led.el" (12983 26070)) | |
11137 ;;; Generated autoloads from term/vt100-led.el | |
11138 | |
11139 ;;;*** | |
11140 | |
11141 ;;;### (autoloads nil "vt100" "term/vt100.el" (12983 26069)) | |
11142 ;;; Generated autoloads from term/vt100.el | |
11143 | |
11144 ;;;*** | |
11145 | |
11146 ;;;### (autoloads nil "vt102" "term/vt102.el" (12983 26071)) | |
11147 ;;; Generated autoloads from term/vt102.el | |
11148 | |
11149 ;;;*** | |
11150 | |
11151 ;;;### (autoloads nil "vt125" "term/vt125.el" (12983 26071)) | |
11152 ;;; Generated autoloads from term/vt125.el | |
11153 | |
11154 ;;;*** | |
11155 | |
11156 ;;;### (autoloads nil "vt200" "term/vt200.el" (12983 26071)) | |
11157 ;;; Generated autoloads from term/vt200.el | |
11158 | |
11159 ;;;*** | |
11160 | |
11161 ;;;### (autoloads nil "vt201" "term/vt201.el" (12983 26071)) | |
11162 ;;; Generated autoloads from term/vt201.el | |
11163 | |
11164 ;;;*** | |
11165 | |
11166 ;;;### (autoloads nil "vt220" "term/vt220.el" (12983 26071)) | |
11167 ;;; Generated autoloads from term/vt220.el | |
11168 | |
11169 ;;;*** | |
11170 | |
11171 ;;;### (autoloads nil "vt240" "term/vt240.el" (12983 26071)) | |
11172 ;;; Generated autoloads from term/vt240.el | |
11173 | |
11174 ;;;*** | |
11175 | |
11176 ;;;### (autoloads nil "vt300" "term/vt300.el" (12983 26071)) | |
11177 ;;; Generated autoloads from term/vt300.el | |
11178 | |
11179 ;;;*** | |
11180 | |
11181 ;;;### (autoloads nil "vt320" "term/vt320.el" (12983 26071)) | |
11182 ;;; Generated autoloads from term/vt320.el | |
11183 | |
11184 ;;;*** | |
11185 | |
11186 ;;;### (autoloads nil "vt400" "term/vt400.el" (12983 26071)) | |
11187 ;;; Generated autoloads from term/vt400.el | |
11188 | |
11189 ;;;*** | |
11190 | |
11191 ;;;### (autoloads nil "vt420" "term/vt420.el" (12983 26071)) | |
11192 ;;; Generated autoloads from term/vt420.el | |
11193 | |
11194 ;;;*** | |
11195 | |
11196 ;;;### (autoloads nil "win32-win" "term/win32-win.el" (12983 26071)) | |
11197 ;;; Generated autoloads from term/win32-win.el | |
11198 | |
11199 ;;;*** | |
11200 | |
11201 ;;;### (autoloads nil "wyse50" "term/wyse50.el" (12983 26071)) | |
11202 ;;; Generated autoloads from term/wyse50.el | |
11203 | |
11204 ;;;*** | |
11205 | |
11206 ;;;### (autoloads nil "xterm" "term/xterm.el" (12983 26071)) | |
11207 ;;; Generated autoloads from term/xterm.el | |
11208 | |
11209 ;;;*** | |
11210 | |
11211 ;;;*** | |
11212 | |
11213 ;;;### (autoloads nil "bitmap" "tl/bitmap.el" (12983 27443)) | |
11214 ;;; Generated autoloads from tl/bitmap.el | |
11215 | |
11216 ;;;*** | |
11217 | |
11218 ;;;*** | |
11219 | |
11220 ;;;### (autoloads nil "cless" "tl/cless.el" (12996 50654)) | |
11221 ;;; Generated autoloads from tl/cless.el | |
11222 | |
11223 ;;;*** | |
11224 | |
11225 ;;;### (autoloads nil "emu-e19" "tl/emu-e19.el" (12996 50654)) | |
11226 ;;; Generated autoloads from tl/emu-e19.el | |
11227 | |
11228 ;;;### (autoloads nil "emu-orig" "tl/emu-orig.el" (12983 27443)) | |
11229 ;;; Generated autoloads from tl/emu-orig.el | |
11230 | |
11231 ;;;*** | |
11232 | |
11233 ;;;*** | |
11234 | |
11235 ;;;### (autoloads nil "emu-x20" "tl/emu-x20.el" (12996 50654)) | |
11236 ;;; Generated autoloads from tl/emu-x20.el | |
11237 | |
11238 ;;;*** | |
11239 | |
11240 ;;;### (autoloads nil "emu-xemacs" "tl/emu-xemacs.el" (12996 50654)) | |
11241 ;;; Generated autoloads from tl/emu-xemacs.el | |
11242 | |
11243 ;;;*** | |
11244 | |
11245 ;;;### (autoloads nil "emu" "tl/emu.el" (12996 50654)) | |
11246 ;;; Generated autoloads from tl/emu.el | |
11247 | |
11248 ;;;*** | |
11249 | |
11250 ;;;### (autoloads nil "file-detect" "tl/file-detect.el" (12996 50654)) | |
11251 ;;; Generated autoloads from tl/file-detect.el | |
11252 | |
11253 ;;;*** | |
11254 | |
11255 ;;;*** | |
11256 | |
11257 ;;;### (autoloads nil "filename" "tl/filename.el" (12996 50654)) | |
11258 ;;; Generated autoloads from tl/filename.el | |
11259 | |
11260 ;;;### (autoloads nil "mu-comment" "tl/mu-comment.el" (12983 27443)) | |
11261 ;;; Generated autoloads from tl/mu-comment.el | |
11262 | |
11263 ;;;*** | |
11264 | |
11265 ;;;### (autoloads nil "mu-replace" "tl/mu-replace.el" (12983 27443)) | |
11266 ;;; Generated autoloads from tl/mu-replace.el | |
11267 | |
11268 ;;;*** | |
11269 | |
11270 ;;;*** | |
11271 | |
11272 ;;;### (autoloads nil "range" "tl/range.el" (12996 50654)) | |
11273 ;;; Generated autoloads from tl/range.el | |
11274 | |
11275 ;;;*** | |
11276 | |
11277 ;;;### (autoloads nil "richtext" "tl/richtext.el" (12996 50654)) | |
11278 ;;; Generated autoloads from tl/richtext.el | |
11279 | |
11280 ;;;*** | |
11281 | |
11282 ;;;### (autoloads nil "texi-util" "tl/texi-util.el" (12996 50654)) | |
11283 ;;; Generated autoloads from tl/texi-util.el | |
11284 | |
11285 ;;;### (autoloads nil "tinyrich" "tl/tinyrich.el" (12983 27443)) | |
11286 ;;; Generated autoloads from tl/tinyrich.el | |
11287 | |
11288 ;;;*** | |
11289 | |
11290 ;;;*** | |
11291 | |
11292 ;;;### (autoloads nil "tl-atype" "tl/tl-atype.el" (12996 50654)) | |
11293 ;;; Generated autoloads from tl/tl-atype.el | |
11294 | |
11295 ;;;*** | |
11296 | |
11297 ;;;### (autoloads nil "tl-list" "tl/tl-list.el" (12996 50654)) | |
11298 ;;; Generated autoloads from tl/tl-list.el | |
11299 | |
11300 ;;;*** | |
11301 | |
11302 ;;;### (autoloads nil "tl-misc" "tl/tl-misc.el" (12996 50654)) | |
11303 ;;; Generated autoloads from tl/tl-misc.el | |
11304 | |
11305 ;;;*** | |
11306 | |
11307 ;;;### (autoloads nil "tl-num" "tl/tl-num.el" (12996 50654)) | |
11308 ;;; Generated autoloads from tl/tl-num.el | |
11309 | |
11310 ;;;*** | |
11311 | |
11312 ;;;### (autoloads nil "tl-seq" "tl/tl-seq.el" (12996 50654)) | |
11313 ;;; Generated autoloads from tl/tl-seq.el | |
11314 | |
11315 ;;;*** | |
11316 | |
11317 ;;;### (autoloads nil "tl-str" "tl/tl-str.el" (12996 50654)) | |
11318 ;;; Generated autoloads from tl/tl-str.el | |
11319 | |
11320 ;;;*** | |
11321 | |
11322 ;;;### (autoloads nil "tu-comment" "tl/tu-comment.el" (12996 50654)) | |
11323 ;;; Generated autoloads from tl/tu-comment.el | |
11324 | |
11325 ;;;*** | |
11326 | |
11327 ;;;### (autoloads nil "tu-replace" "tl/tu-replace.el" (12996 50654)) | |
11328 ;;; Generated autoloads from tl/tu-replace.el | |
11329 | |
11330 ;;;*** | |
11331 | |
11332 ;;;### (autoloads nil "gnus-art-mime" "tm/gnus-art-mime.el" (12996 50654)) | |
11333 ;;; Generated autoloads from tm/gnus-art-mime.el | |
11334 | |
11335 ;;;*** | |
11336 | |
11337 ;;;### (autoloads nil "gnus-charset" "tm/gnus-charset.el" (12996 50654)) | |
11338 ;;; Generated autoloads from tm/gnus-charset.el | |
11339 | |
11340 ;;;*** | |
11341 | |
11342 ;;;### (autoloads nil "gnus-mime-old" "tm/gnus-mime-old.el" (12996 50654)) | |
11343 ;;; Generated autoloads from tm/gnus-mime-old.el | |
11344 | |
11345 ;;;*** | |
11346 | |
11347 ;;;### (autoloads nil "gnus-mime" "tm/gnus-mime.el" (12996 50654)) | |
11348 ;;; Generated autoloads from tm/gnus-mime.el | |
11349 | |
11350 ;;;### (autoloads nil "gnus-msg-mime" "tm/gnus-msg-mime.el" (12983 27443)) | |
11351 ;;; Generated autoloads from tm/gnus-msg-mime.el | |
11352 | |
11353 ;;;*** | |
11354 | |
11355 ;;;*** | |
11356 | |
11357 ;;;### (autoloads nil "gnus-sum-mime" "tm/gnus-sum-mime.el" (12996 50654)) | |
11358 ;;; Generated autoloads from tm/gnus-sum-mime.el | |
11359 | |
11360 ;;;*** | |
11361 | |
11362 ;;;### (autoloads nil "message-mime" "tm/message-mime.el" (12996 50654)) | |
11363 ;;; Generated autoloads from tm/message-mime.el | |
11364 | |
11365 ;;;*** | |
11366 | |
11367 ;;;### (autoloads nil "mime-setup" "tm/mime-setup.el" (12996 50654)) | |
11368 ;;; Generated autoloads from tm/mime-setup.el | |
11369 | |
11370 ;;;*** | |
11371 | |
11372 ;;;### (autoloads nil "sc-setup" "tm/sc-setup.el" (12996 50655)) | |
11373 ;;; Generated autoloads from tm/sc-setup.el | |
11374 | |
11375 ;;;*** | |
11376 | |
11377 ;;;### (autoloads nil "signature" "tm/signature.el" (12996 50655)) | |
11378 ;;; Generated autoloads from tm/signature.el | |
11379 | |
11380 ;;;*** | |
11381 | |
11382 ;;;### (autoloads nil "tm-bbdb" "tm/tm-bbdb.el" (12996 50655)) | |
11383 ;;; Generated autoloads from tm/tm-bbdb.el | |
11384 | |
11385 ;;;*** | |
11386 | |
11387 ;;;### (autoloads nil "tm-def" "tm/tm-def.el" (12996 50655)) | |
11388 ;;; Generated autoloads from tm/tm-def.el | |
11389 | |
11390 ;;;*** | |
11391 | |
11392 ;;;### (autoloads nil "tm-edit-mc" "tm/tm-edit-mc.el" (12996 50655)) | |
11393 ;;; Generated autoloads from tm/tm-edit-mc.el | |
11394 | |
11395 ;;;*** | |
11396 | |
11397 ;;;### (autoloads nil "tm-edit-tipgp" "tm/tm-edit-tipgp.el" (12996 50655)) | |
11398 ;;; Generated autoloads from tm/tm-edit-tipgp.el | |
11399 | |
11400 ;;;### (autoloads (mime/editor-mode) "tm-edit" "tm/tm-edit.el" (12996 50655)) | |
11401 ;;; Generated autoloads from tm/tm-edit.el | |
11402 | |
11403 (autoload 'mime/editor-mode "tm-edit" "\ | |
11404 MIME minor mode for editing the tagged MIME message. | |
11405 | |
11406 In this mode, basically, the message is composed in the tagged MIME | |
11407 format. The message tag looks like: | |
11408 | |
11409 --[[text/plain; charset=ISO-2022-JP][7bit]] | |
11410 | |
11411 The tag specifies the MIME content type, subtype, optional parameters | |
11412 and transfer encoding of the message following the tag. Messages | |
11413 without any tag are treated as `text/plain' by default. Charset and | |
11414 transfer encoding are automatically defined unless explicitly | |
11415 specified. Binary messages such as audio and image are usually hidden. | |
11416 The messages in the tagged MIME format are automatically translated | |
11417 into a MIME compliant message when exiting this mode. | |
11418 | |
11419 Available charsets depend on Emacs version being used. The following | |
11420 lists the available charsets of each emacs. | |
11421 | |
11422 EMACS 18: US-ASCII is only available. | |
11423 NEmacs: US-ASCII and ISO-2022-JP are available. | |
11424 EMACS 19: US-ASCII and ISO-8859-1 (or other charset) are available. | |
11425 XEmacs 19: US-ASCII and ISO-8859-1 (or other charset) are available. | |
11426 Mule: US-ASCII, ISO-8859-* (except for ISO-8859-5), KOI8-R, | |
11427 ISO-2022-JP, ISO-2022-JP-2, ISO-2022-KR, BIG5 and | |
11428 ISO-2022-INT-1 are available. | |
11429 | |
11430 ISO-2022-JP-2 and ISO-2022-INT-1 charsets used in mule is expected to | |
11431 be used to represent multilingual text in intermixed manner. Any | |
11432 languages that has no registered charset are represented as either | |
11433 ISO-2022-JP-2 or ISO-2022-INT-1 in mule. | |
11434 | |
11435 If you want to use non-ISO-8859-1 charset in EMACS 19 or XEmacs 19, | |
11436 please set variable `default-mime-charset'. This variable must be | |
11437 symbol of which name is a MIME charset. | |
11438 | |
11439 If you want to add more charsets in mule, please set variable | |
11440 `charsets-mime-charset-alist'. This variable must be alist of which | |
11441 key is list of leading-char/charset and value is symbol of MIME | |
11442 charset. (leading-char is a term of MULE 1.* and 2.*. charset is a | |
11443 term of XEmacs/mule, mule merged EMACS and MULE 3.*) If name of | |
11444 coding-system is different as MIME charset, please set variable | |
11445 `mime-charset-coding-system-alist'. This variable must be alist of | |
11446 which key is MIME charset and value is coding-system. | |
11447 | |
11448 Following commands are available in addition to major mode commands: | |
11449 | |
11450 [make single part] | |
11451 \\[mime-editor/insert-text] insert a text message. | |
11452 \\[mime-editor/insert-file] insert a (binary) file. | |
11453 \\[mime-editor/insert-external] insert a reference to external body. | |
11454 \\[mime-editor/insert-voice] insert a voice message. | |
11455 \\[mime-editor/insert-message] insert a mail or news message. | |
11456 \\[mime-editor/insert-mail] insert a mail message. | |
11457 \\[mime-editor/insert-signature] insert a signature file at end. | |
11458 \\[mime-editor/insert-key] insert PGP public key. | |
11459 \\[mime-editor/insert-tag] insert a new MIME tag. | |
11460 | |
11461 [make enclosure (maybe multipart)] | |
11462 \\[mime-editor/enclose-alternative-region] enclose as multipart/alternative. | |
11463 \\[mime-editor/enclose-parallel-region] enclose as multipart/parallel. | |
11464 \\[mime-editor/enclose-mixed-region] enclose as multipart/mixed. | |
11465 \\[mime-editor/enclose-digest-region] enclose as multipart/digest. | |
11466 \\[mime-editor/enclose-signed-region] enclose as PGP signed. | |
11467 \\[mime-editor/enclose-encrypted-region] enclose as PGP encrypted. | |
11468 \\[mime-editor/enclose-quote-region] enclose as verbose mode (to avoid to expand tags) | |
11469 | |
11470 [other commands] | |
11471 \\[mime-editor/set-transfer-level-7bit] set transfer-level as 7. | |
11472 \\[mime-editor/set-transfer-level-8bit] set transfer-level as 8. | |
11473 \\[mime-editor/set-split] set message splitting mode. | |
11474 \\[mime-editor/set-sign] set PGP-sign mode. | |
11475 \\[mime-editor/set-encrypt] set PGP-encryption mode. | |
11476 \\[mime-editor/preview-message] preview editing MIME message. | |
11477 \\[mime-editor/exit] exit and translate into a MIME compliant message. | |
11478 \\[mime-editor/help] show this help. | |
11479 \\[mime-editor/maybe-translate] exit and translate if in MIME mode, then split. | |
11480 | |
11481 Additional commands are available in some major modes: | |
11482 C-c C-c exit, translate and run the original command. | |
11483 C-c C-s exit, translate and run the original command. | |
11484 | |
11485 The following is a message example written in the tagged MIME format. | |
11486 TABs at the beginning of the line are not a part of the message: | |
11487 | |
11488 This is a conventional plain text. It should be translated | |
11489 into text/plain. | |
11490 --[[text/plain]] | |
11491 This is also a plain text. But, it is explicitly specified as | |
11492 is. | |
11493 --[[text/plain; charset=ISO-2022-JP]] | |
11494 $B$3$l$O(B charset $B$r(B ISO-2022-JP $B$K;XDj$7$?F|K8l$N(B plain $B%F%-%9(B | |
11495 $B%H$G$9(B. | |
11496 --[[text/richtext]] | |
11497 <center>This is a richtext.</center> | |
11498 --[[image/gif][base64]]^M...image encoded in base64 here... | |
11499 --[[audio/basic][base64]]^M...audio encoded in base64 here... | |
11500 | |
11501 User customizable variables (not documented all of them): | |
11502 mime-prefix | |
11503 Specifies a key prefix for MIME minor mode commands. | |
11504 | |
11505 mime-ignore-preceding-spaces | |
11506 Preceding white spaces in a message body are ignored if non-nil. | |
11507 | |
11508 mime-ignore-trailing-spaces | |
11509 Trailing white spaces in a message body are ignored if non-nil. | |
11510 | |
11511 mime-auto-hide-body | |
11512 Hide a non-textual body message encoded in base64 after insertion | |
11513 if non-nil. | |
11514 | |
11515 mime-editor/transfer-level | |
11516 A number of network transfer level. It should be bigger than 7. | |
11517 If you are in 8bit-through environment, please set 8. | |
11518 | |
11519 mime-editor/voice-recorder | |
11520 Specifies a function to record a voice message and encode it. | |
11521 The function `mime-editor/voice-recorder-for-sun' is for Sun | |
11522 SparcStations. | |
11523 | |
11524 mime/editor-mode-hook | |
11525 Turning on MIME mode calls the value of mime/editor-mode-hook, if | |
11526 it is non-nil. | |
11527 | |
11528 mime-editor/translate-hook | |
11529 The value of mime-editor/translate-hook is called just before translating | |
11530 the tagged MIME format into a MIME compliant message if it is | |
11531 non-nil. If the hook call the function mime-editor/insert-signature, | |
11532 the signature file will be inserted automatically. | |
11533 | |
11534 mime-editor/exit-hook | |
11535 Turning off MIME mode calls the value of mime-editor/exit-hook, if it is | |
11536 non-nil." t nil) | |
11537 | |
11538 (defalias 'edit-mime 'mime/editor-mode) | |
11539 | |
11540 ;;;*** | |
11541 | |
11542 ;;;*** | |
11543 | |
11544 ;;;*** | |
11545 | |
11546 ;;;### (autoloads nil "tm-ew-d" "tm/tm-ew-d.el" (12996 50655)) | |
11547 ;;; Generated autoloads from tm/tm-ew-d.el | |
11548 | |
11549 ;;;*** | |
11550 | |
11551 ;;;### (autoloads nil "tm-ew-e" "tm/tm-ew-e.el" (12996 50655)) | |
11552 ;;; Generated autoloads from tm/tm-ew-e.el | |
11553 | |
11554 ;;;*** | |
11555 | |
11556 ;;;### (autoloads nil "tm-file" "tm/tm-file.el" (12996 50655)) | |
11557 ;;; Generated autoloads from tm/tm-file.el | |
11558 | |
11559 ;;;*** | |
11560 | |
11561 ;;;### (autoloads nil "tm-ftp" "tm/tm-ftp.el" (12996 50655)) | |
11562 ;;; Generated autoloads from tm/tm-ftp.el | |
11563 | |
11564 ;;;### (autoloads nil "tm-gd3" "tm/tm-gd3.el" (12983 27443)) | |
11565 ;;; Generated autoloads from tm/tm-gd3.el | |
11566 | |
11567 ;;;*** | |
11568 | |
11569 ;;;### (autoloads nil "tm-gnus" "tm/tm-gnus.el" (12983 27443)) | |
11570 ;;; Generated autoloads from tm/tm-gnus.el | |
11571 | |
11572 ;;;*** | |
11573 | |
11574 ;;;### (autoloads nil "tm-gnus4" "tm/tm-gnus4.el" (12983 27443)) | |
11575 ;;; Generated autoloads from tm/tm-gnus4.el | |
11576 | |
11577 ;;;*** | |
11578 | |
11579 ;;;### (autoloads nil "tm-gnus5" "tm/tm-gnus5.el" (12983 27444)) | |
11580 ;;; Generated autoloads from tm/tm-gnus5.el | |
11581 | |
11582 ;;;*** | |
11583 | |
11584 ;;;*** | |
11585 | |
11586 ;;;### (autoloads nil "tm-html" "tm/tm-html.el" (12996 50655)) | |
11587 ;;; Generated autoloads from tm/tm-html.el | |
11588 | |
11589 ;;;*** | |
11590 | |
11591 ;;;### (autoloads nil "tm-image" "tm/tm-image.el" (12996 50655)) | |
11592 ;;; Generated autoloads from tm/tm-image.el | |
11593 | |
11594 ;;;*** | |
11595 | |
11596 ;;;### (autoloads nil "tm-latex" "tm/tm-latex.el" (12996 50655)) | |
11597 ;;; Generated autoloads from tm/tm-latex.el | |
11598 | |
11599 ;;;*** | |
11600 | |
11601 ;;;### (autoloads nil "tm-mail" "tm/tm-mail.el" (12996 50655)) | |
11602 ;;; Generated autoloads from tm/tm-mail.el | |
11603 | |
11604 ;;;*** | |
11605 | |
11606 ;;;### (autoloads nil "tm-mh-e" "tm/tm-mh-e.el" (12996 50655)) | |
11607 ;;; Generated autoloads from tm/tm-mh-e.el | |
11608 | |
11609 ;;;### (autoloads nil "tm-orig" "tm/tm-orig.el" (12983 27444)) | |
11610 ;;; Generated autoloads from tm/tm-orig.el | |
11611 | |
11612 ;;;*** | |
11613 | |
11614 ;;;*** | |
11615 | |
11616 ;;;### (autoloads nil "tm-parse" "tm/tm-parse.el" (12996 50655)) | |
11617 ;;; Generated autoloads from tm/tm-parse.el | |
11618 | |
11619 ;;;*** | |
11620 | |
11621 ;;;### (autoloads nil "tm-partial" "tm/tm-partial.el" (12996 50655)) | |
11622 ;;; Generated autoloads from tm/tm-partial.el | |
11623 | |
11624 ;;;*** | |
11625 | |
11626 ;;;### (autoloads nil "tm-pgp" "tm/tm-pgp.el" (12996 50655)) | |
11627 ;;; Generated autoloads from tm/tm-pgp.el | |
11628 | |
11629 ;;;*** | |
11630 | |
11631 ;;;### (autoloads nil "tm-play" "tm/tm-play.el" (12996 50655)) | |
11632 ;;; Generated autoloads from tm/tm-play.el | |
11633 | |
11634 ;;;### (autoloads nil "tm-rich" "tm/tm-rich.el" (12983 27444)) | |
11635 ;;; Generated autoloads from tm/tm-rich.el | |
11636 | |
11637 ;;;*** | |
11638 | |
11639 ;;;*** | |
11640 | |
11641 ;;;### (autoloads nil "tm-rmail" "tm/tm-rmail.el" (12996 50655)) | |
11642 ;;; Generated autoloads from tm/tm-rmail.el | |
11643 | |
11644 ;;;*** | |
11645 | |
11646 ;;;### (autoloads nil "tm-setup" "tm/tm-setup.el" (12996 50655)) | |
11647 ;;; Generated autoloads from tm/tm-setup.el | |
11648 | |
11649 ;;;### (autoloads nil "tm-sgnus" "tm/tm-sgnus.el" (12983 27444)) | |
11650 ;;; Generated autoloads from tm/tm-sgnus.el | |
11651 | |
11652 ;;;*** | |
11653 | |
11654 ;;;*** | |
11655 | |
11656 ;;;### (autoloads nil "tm-tar" "tm/tm-tar.el" (12996 50655)) | |
11657 ;;; Generated autoloads from tm/tm-tar.el | |
11658 | |
11659 ;;;*** | |
11660 | |
11661 ;;;### (autoloads nil "tm-text" "tm/tm-text.el" (12996 50655)) | |
11662 ;;; Generated autoloads from tm/tm-text.el | |
11663 | |
11664 ;;;*** | |
11665 | |
11666 ;;;### (autoloads nil "tm-view" "tm/tm-view.el" (12996 50655)) | |
11667 ;;; Generated autoloads from tm/tm-view.el | |
11668 | |
11669 ;;;*** | |
11670 | |
11671 ;;;### (autoloads nil "tm-vm" "tm/tm-vm.el" (12996 50655)) | |
11672 ;;; Generated autoloads from tm/tm-vm.el | |
11673 | |
11674 ;;;*** | |
11675 | |
11676 ;;;### (autoloads nil "tmh-comp" "tm/tmh-comp.el" (12996 50655)) | |
11677 ;;; Generated autoloads from tm/tmh-comp.el | |
11678 | |
11679 ;;;### (autoloads nil "tooltalk-init" "tooltalk/tooltalk-init.el" (12983 26111)) | |
11680 ;;; Generated autoloads from tooltalk/tooltalk-init.el | |
11681 | |
11682 ;;;*** | |
11683 | |
11684 ;;;### (autoloads nil "tooltalk-load" "tooltalk/tooltalk-load.el" (12983 26111)) | |
11685 ;;; Generated autoloads from tooltalk/tooltalk-load.el | |
11686 | |
11687 ;;;*** | |
11688 | |
11689 ;;;### (autoloads nil "tooltalk-macros" "tooltalk/tooltalk-macros.el" (12983 26111)) | |
11690 ;;; Generated autoloads from tooltalk/tooltalk-macros.el | |
11691 | |
11692 ;;;*** | |
11693 | |
11694 ;;;### (autoloads nil "tooltalk-util" "tooltalk/tooltalk-util.el" (12983 26111)) | |
11695 ;;; Generated autoloads from tooltalk/tooltalk-util.el | |
11696 | |
11697 ;;;*** | |
11698 | |
11699 ;;;### (autoloads nil "base64" "url/base64.el" (12983 26222)) | |
11700 ;;; Generated autoloads from url/base64.el | |
11701 | |
11702 ;;;*** | |
11703 | |
11704 ;;;### (autoloads nil "md5" "url/md5.el" (12983 26222)) | |
11705 ;;; Generated autoloads from url/md5.el | |
11706 | |
11707 ;;;*** | |
11708 | |
11709 ;;;*** | |
11710 | |
11711 ;;;### (autoloads nil "mm" "url/mm.el" (12983 26940)) | |
11712 ;;; Generated autoloads from url/mm.el | |
11713 | |
11714 ;;;*** | |
11715 | |
11716 ;;;*** | |
11717 | |
11718 ;;;### (autoloads nil "ssl" "url/ssl.el" (12983 26224)) | |
11719 ;;; Generated autoloads from url/ssl.el | |
11720 | |
11721 ;;;*** | |
11722 | |
11723 ;;;### (autoloads nil "url-cookie" "url/url-cookie.el" (12983 26943)) | |
11724 ;;; Generated autoloads from url/url-cookie.el | |
11725 | |
11726 ;;;*** | |
11727 | |
11728 ;;;### (autoloads nil "url-file" "url/url-file.el" (12983 26941)) | |
11729 ;;; Generated autoloads from url/url-file.el | |
11730 | |
11731 ;;;*** | |
11732 | |
11733 ;;;### (autoloads nil "url-gopher" "url/url-gopher.el" (12983 26225)) | |
11734 ;;; Generated autoloads from url/url-gopher.el | |
11735 | |
11736 ;;;*** | |
11737 | |
11738 ;;;### (autoloads nil "url-hash" "url/url-hash.el" (12983 26939)) | |
11739 ;;; Generated autoloads from url/url-hash.el | |
11740 | |
11741 ;;;*** | |
11742 | |
11743 ;;;### (autoloads nil "url-http" "url/url-http.el" (12983 26941)) | |
11744 ;;; Generated autoloads from url/url-http.el | |
11745 | |
11746 ;;;*** | |
11747 | |
11748 ;;;### (autoloads nil "url-irc" "url/url-irc.el" (12983 26943)) | |
11749 ;;; Generated autoloads from url/url-irc.el | |
11750 | |
11751 ;;;*** | |
11752 | |
11753 ;;;### (autoloads nil "url-mail" "url/url-mail.el" (12983 26225)) | |
11754 ;;; Generated autoloads from url/url-mail.el | |
11755 | |
11756 ;;;*** | |
11757 | |
11758 ;;;*** | |
11759 | |
11760 ;;;### (autoloads nil "url-misc" "url/url-misc.el" (12983 26225)) | |
11761 ;;; Generated autoloads from url/url-misc.el | |
11762 | |
11763 ;;;*** | |
11764 | |
11765 ;;;### (autoloads nil "url-news" "url/url-news.el" (12983 26942)) | |
11766 ;;; Generated autoloads from url/url-news.el | |
11767 | |
11768 ;;;*** | |
11769 | |
11770 ;;;### (autoloads nil "url-nfs" "url/url-nfs.el" (12983 26228)) | |
11771 ;;; Generated autoloads from url/url-nfs.el | |
11772 | |
11773 ;;;*** | |
11774 | |
11775 ;;;### (autoloads nil "url-parse" "url/url-parse.el" (12983 26227)) | |
11776 ;;; Generated autoloads from url/url-parse.el | |
11777 | |
11778 ;;;*** | |
11779 | |
11780 ;;;*** | |
11781 | |
11782 ;;;### (autoloads nil "url-pgp" "url/url-pgp.el" (12983 26227)) | |
11783 ;;; Generated autoloads from url/url-pgp.el | |
11784 | |
11785 ;;;*** | |
11786 | |
11787 ;;;### (autoloads nil "url-sysdp" "url/url-sysdp.el" (12983 26942)) | |
11788 ;;; Generated autoloads from url/url-sysdp.el | |
11789 | |
11790 ;;;*** | |
11791 | |
11792 ;;;### (autoloads nil "url-vars" "url/url-vars.el" (12983 26941)) | |
11793 ;;; Generated autoloads from url/url-vars.el | |
11794 | |
11795 ;;;*** | |
11796 | |
11797 ;;;### (autoloads nil "url-wais" "url/url-wais.el" (12983 26942)) | |
11798 ;;; Generated autoloads from url/url-wais.el | |
11799 | |
11800 ;;;### (autoloads (url-retrieve url-cache-expired url-popup-info url-get-url-at-point url-buffer-visiting url-normalize-url url-file-attributes) "url" "url/url.el" (12983 26939)) | |
11801 ;;; Generated autoloads from url/url.el | |
11802 | |
11803 (autoload 'url-file-attributes "url" "\ | |
11804 Return a list of attributes of URL. | |
11805 Value is nil if specified file cannot be opened. | |
11806 Otherwise, list elements are: | |
11807 0. t for directory, string (name linked to) for symbolic link, or nil. | |
11808 1. Number of links to file. | |
11809 2. File uid. | |
11810 3. File gid. | |
11811 4. Last access time, as a list of two integers. | |
11812 First integer has high-order 16 bits of time, second has low 16 bits. | |
11813 5. Last modification time, likewise. | |
11814 6. Last status change time, likewise. | |
11815 7. Size in bytes. (-1, if number is out of range). | |
11816 8. File modes, as a string of ten letters or dashes as in ls -l. | |
11817 If URL is on an http server, this will return the content-type if possible. | |
11818 9. t iff file's gid would change if file were deleted and recreated. | |
11819 10. inode number. | |
11820 11. Device number. | |
11821 | |
11822 If file does not exist, returns nil." nil nil) | |
11823 | |
11824 (autoload 'url-normalize-url "url" "\ | |
11825 Return a 'normalized' version of URL. This strips out default port | |
11826 numbers, etc." nil nil) | |
11827 | |
11828 (autoload 'url-buffer-visiting "url" "\ | |
11829 Return the name of a buffer (if any) that is visiting URL." nil nil) | |
11830 | |
11831 (autoload 'url-get-url-at-point "url" "\ | |
11832 Get the URL closest to point, but don't change your | |
11833 position. Has a preference for looking backward when not | |
11834 directly on a symbol." nil nil) | |
11835 | |
11836 (autoload 'url-popup-info "url" "\ | |
11837 Retrieve the HTTP/1.0 headers and display them in a temp buffer." nil nil) | |
11838 | |
11839 (autoload 'url-cache-expired "url" "\ | |
11840 Return t iff a cached file has expired." nil nil) | |
11841 | |
11842 (autoload 'url-retrieve "url" "\ | |
11843 Retrieve a document over the World Wide Web. | |
11844 The document should be specified by its fully specified | |
11845 Uniform Resource Locator. No parsing is done, just return the | |
11846 document as the server sent it. The document is left in the | |
11847 buffer specified by url-working-buffer. url-working-buffer is killed | |
11848 immediately before starting the transfer, so that no buffer-local | |
11849 variables interfere with the retrieval. HTTP/1.0 redirection will | |
11850 be honored before this function exits." nil nil) | |
11851 | |
11852 ;;;*** | |
11853 | |
11854 ;;;*** | |
11855 | |
11856 ;;;### (autoloads nil "urlauth" "url/urlauth.el" (12983 26222)) | |
11857 ;;; Generated autoloads from url/urlauth.el | |
11858 | |
11859 ;;;*** | |
11860 | |
11861 ;;;*** | |
11862 | |
11863 ;;;### (autoloads nil "abbrevlist" "utils/abbrevlist.el" (12983 26850)) | |
11864 ;;; Generated autoloads from utils/abbrevlist.el | |
11865 | |
11866 ;;;### (autoloads (defadvice ad-add-advice) "advice" "utils/advice.el" (12983 26852)) | |
11867 ;;; Generated autoloads from utils/advice.el | |
11868 | |
11869 (defvar ad-redefinition-action 'warn "\ | |
11870 *Defines what to do with redefinitions during Advice de/activation. | |
11871 Redefinition occurs if a previously activated function that already has an | |
11872 original definition associated with it gets redefined and then de/activated. | |
11873 In such a case we can either accept the current definition as the new | |
11874 original definition, discard the current definition and replace it with the | |
11875 old original, or keep it and raise an error. The values `accept', `discard', | |
11876 `error' or `warn' govern what will be done. `warn' is just like `accept' but | |
11877 it additionally prints a warning message. All other values will be | |
11878 interpreted as `error'.") | |
11879 | |
11880 (defvar ad-default-compilation-action 'maybe "\ | |
11881 *Defines whether to compile advised definitions during activation. | |
11882 A value of `always' will result in unconditional compilation, `never' will | |
11883 always avoid compilation, `maybe' will compile if the byte-compiler is already | |
11884 loaded, and `like-original' will compile if the original definition of the | |
11885 advised function is compiled or a built-in function. Every other value will | |
11886 be interpreted as `maybe'. This variable will only be considered if the | |
11887 COMPILE argument of `ad-activate' was supplied as nil.") | |
11888 | |
11889 (autoload 'ad-add-advice "advice" "\ | |
11890 Adds a piece of ADVICE to FUNCTION's list of advices in CLASS. | |
11891 If FUNCTION already has one or more pieces of advice of the specified | |
11892 CLASS then POSITION determines where the new piece will go. The value | |
11893 of POSITION can either be `first', `last' or a number where 0 corresponds | |
11894 to `first'. Numbers outside the range will be mapped to the closest | |
11895 extreme position. If there was already a piece of ADVICE with the same | |
11896 name, then the position argument will be ignored and the old advice | |
11897 will be overwritten with the new one. | |
11898 If the FUNCTION was not advised already, then its advice info will be | |
11899 initialized. Redefining a piece of advice whose name is part of the cache-id | |
11900 will clear the cache." nil nil) | |
11901 | |
11902 (autoload 'defadvice "advice" "\ | |
11903 Defines a piece of advice for FUNCTION (a symbol). | |
11904 The syntax of `defadvice' is as follows: | |
11905 | |
11906 (defadvice FUNCTION (CLASS NAME [POSITION] [ARGLIST] FLAG...) | |
11907 [DOCSTRING] [INTERACTIVE-FORM] | |
11908 BODY... ) | |
11909 | |
11910 FUNCTION ::= Name of the function to be advised. | |
11911 CLASS ::= `before' | `around' | `after' | `activation' | `deactivation'. | |
11912 NAME ::= Non-nil symbol that names this piece of advice. | |
11913 POSITION ::= `first' | `last' | NUMBER. Optional, defaults to `first', | |
11914 see also `ad-add-advice'. | |
11915 ARGLIST ::= An optional argument list to be used for the advised function | |
11916 instead of the argument list of the original. The first one found in | |
11917 before/around/after-advices will be used. | |
11918 FLAG ::= `protect'|`disable'|`activate'|`compile'|`preactivate'|`freeze'. | |
11919 All flags can be specified with unambiguous initial substrings. | |
11920 DOCSTRING ::= Optional documentation for this piece of advice. | |
11921 INTERACTIVE-FORM ::= Optional interactive form to be used for the advised | |
11922 function. The first one found in before/around/after-advices will be used. | |
11923 BODY ::= Any s-expression. | |
11924 | |
11925 Semantics of the various flags: | |
11926 `protect': The piece of advice will be protected against non-local exits in | |
11927 any code that precedes it. If any around-advice of a function is protected | |
11928 then automatically all around-advices will be protected (the complete onion). | |
11929 | |
11930 `activate': All advice of FUNCTION will be activated immediately if | |
11931 FUNCTION has been properly defined prior to this application of `defadvice'. | |
11932 | |
11933 `compile': In conjunction with `activate' specifies that the resulting | |
11934 advised function should be compiled. | |
11935 | |
11936 `disable': The defined advice will be disabled, hence, it will not be used | |
11937 during activation until somebody enables it. | |
11938 | |
11939 `preactivate': Preactivates the advised FUNCTION at macro-expansion/compile | |
11940 time. This generates a compiled advised definition according to the current | |
11941 advice state that will be used during activation if appropriate. Only use | |
11942 this if the `defadvice' gets actually compiled. | |
11943 | |
11944 `freeze': Expands the `defadvice' into a redefining `defun/defmacro' according | |
11945 to this particular single advice. No other advice information will be saved. | |
11946 Frozen advices cannot be undone, they behave like a hard redefinition of | |
11947 the advised function. `freeze' implies `activate' and `preactivate'. The | |
11948 documentation of the advised function can be dumped onto the `DOC' file | |
11949 during preloading. | |
11950 | |
11951 Look at the file `advice.el' for comprehensive documentation." nil 'macro) | |
11952 | |
11953 ;;;*** | |
11954 | |
11955 ;;;### (autoloads (all-annotations annotation-list annotations-at annotations-in-region annotation-at annotationp delete-annotation make-annotation) "annotations" "utils/annotations.el" (12983 26084)) | |
11956 ;;; Generated autoloads from utils/annotations.el | |
11957 | |
11958 (defvar make-annotation-hook nil "\ | |
11959 *Function or functions to run immediately after creating an annotation.") | |
11960 | |
11961 (defvar before-delete-annotation-hook nil "\ | |
11962 *Function or functions to run immediately before deleting an annotation.") | |
11963 | |
11964 (defvar after-delete-annotation-hook nil "\ | |
11965 *Function or functions to run immediately after deleting an annotation.") | |
11966 | |
11967 (autoload 'make-annotation "annotations" "\ | |
11968 Create a marginal annotation, displayed using GLYPH, at position POS. | |
11969 GLYPH may be either a glyph object or a string. Use layout policy | |
11970 LAYOUT and place the annotation in buffer BUFFER. If POS is nil, point is | |
11971 used. If LAYOUT is nil, `whitespace' is used. If BUFFER is nil, the | |
11972 current buffer is used. If WITH-EVENT is non-nil, then when an annotation | |
11973 is activated, the triggering event is passed as the second arg to the | |
11974 annotation function. If D-GLYPH is non-nil then it is used as the glyph | |
11975 that will be displayed when button1 is down. If RIGHTP is non-nil then | |
11976 the glyph will be displayed on the right side of the buffer instead of the | |
11977 left." nil nil) | |
11978 | |
11979 (autoload 'delete-annotation "annotations" "\ | |
11980 Remove ANNOTATION from its buffer. This does not modify the buffer text." nil nil) | |
11981 | |
11982 (autoload 'annotationp "annotations" "\ | |
11983 T if OBJECT is an annotation." nil nil) | |
11984 | |
11985 (autoload 'annotation-at "annotations" "\ | |
11986 Return the first annotation at POS in BUFFER. | |
11987 BUFFER defaults to the current buffer. POS defaults to point in BUFFER." nil nil) | |
11988 | |
11989 (autoload 'annotations-in-region "annotations" "\ | |
11990 Return all annotations in BUFFER between START and END inclusively." nil nil) | |
11991 | |
11992 (autoload 'annotations-at "annotations" "\ | |
11993 Return a list of all annotations at POS in BUFFER. | |
11994 If BUFFER is nil, the current buffer is used. If POS is nil, point is used." nil nil) | |
11995 | |
11996 (autoload 'annotation-list "annotations" "\ | |
11997 Return a list of all annotations in BUFFER. | |
11998 If BUFFER is nil, the current buffer is used." nil nil) | |
11999 | |
12000 (autoload 'all-annotations "annotations" "\ | |
12001 Return a list of all annotations in existence." nil nil) | |
12002 | |
12003 ;;;*** | |
12004 | |
12005 ;;;*** | |
12006 | |
12007 ;;;*** | |
12008 | |
12009 ;;;### (autoloads nil "assoc" "utils/assoc.el" (12983 26858)) | |
12010 ;;; Generated autoloads from utils/assoc.el | |
12011 | |
12012 ;;;*** | |
12013 | |
12014 ;;;### (autoloads nil "atomic-extents" "utils/atomic-extents.el" (12983 26084)) | |
12015 ;;; Generated autoloads from utils/atomic-extents.el | |
12016 | |
12017 ;;;### (autoloads (batch-update-autoloads update-directory-autoloads update-autoloads-here update-file-autoloads generate-file-autoloads) "autoload" "utils/autoload.el" (12983 26074)) | |
12018 ;;; Generated autoloads from utils/autoload.el | |
12019 | |
12020 (autoload 'generate-file-autoloads "autoload" "\ | |
12021 Insert at point a loaddefs autoload section for FILE. | |
12022 autoloads are generated for defuns and defmacros in FILE | |
12023 marked by `generate-autoload-cookie' (which see). | |
12024 If FILE is being visited in a buffer, the contents of the buffer | |
12025 are used." t nil) | |
12026 | |
12027 (autoload 'update-file-autoloads "autoload" "\ | |
12028 Update the autoloads for FILE in `generated-autoload-file' | |
12029 \(which FILE might bind in its local variables)." t nil) | |
12030 | |
12031 (autoload 'update-autoloads-here "autoload" "\ | |
12032 Update sections of the current buffer generated by \\[update-file-autoloads]." t nil) | |
12033 | |
12034 (autoload 'update-directory-autoloads "autoload" "\ | |
12035 Run \\[update-file-autoloads] on each .el file in DIR." t nil) | |
12036 | |
12037 (autoload 'batch-update-autoloads "autoload" "\ | |
12038 Update the autoloads for the files or directories on the command line. | |
12039 Runs \\[update-file-autoloads] on files and \\[update-directory-autoloads] | |
12040 on directories. Must be used only with -batch, and kills Emacs on completion. | |
12041 Each file will be processed even if an error occurred previously. | |
12042 For example, invoke `emacs -batch -f batch-update-autoloads *.el'." nil nil) | |
12043 | |
12044 ;;;*** | |
12045 | |
12046 ;;;*** | |
12047 | |
12048 ;;;*** | |
12049 | |
12050 ;;;### (autoloads nil "bench" "utils/bench.el" (12988 33419)) | |
12051 ;;; Generated autoloads from utils/bench.el | |
12052 | |
12053 ;;;*** | |
12054 | |
12055 ;;;### (autoloads nil "blessmail" "utils/blessmail.el" (12983 26859)) | |
12056 ;;; Generated autoloads from utils/blessmail.el | |
12057 | |
12058 ;;;### (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" (12983 26091)) | |
12059 ;;; Generated autoloads from utils/browse-url.el | |
12060 | |
12061 (defvar browse-url-browser-function 'browse-url-w3 "\ | |
12062 *Function to display the current buffer in a WWW browser. | |
12063 Used by the `browse-url-at-point', `browse-url-at-mouse', and | |
12064 `browse-url-of-file' commands.") | |
12065 | |
12066 (autoload 'browse-url-netscape "browse-url" "\ | |
12067 Ask the Netscape WWW browser to load URL. | |
12068 | |
12069 Default to the URL around or before point. The strings in variable | |
12070 `browse-url-netscape-arguments' are also passed to Netscape. | |
12071 | |
12072 When called interactively, if variable `browse-url-new-window-p' is | |
12073 non-nil, load the document in a new Netscape window, otherwise use a | |
12074 random existing one. A non-nil interactive prefix argument reverses | |
12075 the effect of browse-url-new-window-p. | |
12076 | |
12077 When called non-interactively, optional second argument NEW-WINDOW is | |
12078 used instead of browse-url-new-window-p." t nil) | |
12079 | |
12080 (autoload 'browse-url-mosaic "browse-url" "\ | |
12081 Ask the XMosaic WWW browser to load URL. | |
12082 Default to the URL around or before point." t nil) | |
12083 | |
12084 (autoload 'browse-url-grail "browse-url" "\ | |
12085 Ask the Grail WWW browser to load URL. | |
12086 Default to the URL around or before point. Runs the program in the | |
12087 variable `browse-url-grail'." t nil) | |
12088 | |
12089 (autoload 'browse-url-iximosaic "browse-url" "\ | |
12090 Ask the IXIMosaic WWW browser to load URL. | |
12091 Default to the URL around or before point." t nil) | |
12092 | |
12093 (autoload 'browse-url-w3 "browse-url" "\ | |
12094 Ask the w3 WWW browser to load URL. | |
12095 Default to the URL around or before point." t nil) | |
12096 | |
12097 (autoload 'browse-url-lynx-xterm "browse-url" "\ | |
12098 Ask the Lynx WWW browser to load URL. | |
12099 Default to the URL around or before point. A new Lynx process is run | |
12100 in an Xterm window." t nil) | |
12101 | |
12102 (autoload 'browse-url-lynx-emacs "browse-url" "\ | |
12103 Ask the Lynx WWW browser to load URL. | |
12104 Default to the URL around or before point. Run a new Lynx process in | |
12105 an Emacs buffer." t nil) | |
12106 | |
12107 ;;;*** | |
12108 | |
12109 ;;;*** | |
12110 | |
12111 ;;;### (autoloads nil "crontab" "utils/crontab.el" (12983 26090)) | |
12112 ;;; Generated autoloads from utils/crontab.el | |
12113 | |
12114 ;;;*** | |
12115 | |
12116 ;;;*** | |
12117 | |
12118 ;;;### (autoloads nil "delbackspace" "utils/delbackspace.el" (12992 6983)) | |
12119 ;;; Generated autoloads from utils/delbackspace.el | |
12120 | |
12121 ;;;### (autoloads nil "derived" "utils/derived.el" (12983 26850)) | |
12122 ;;; Generated autoloads from utils/derived.el | |
12123 | |
12124 ;;;### (autoloads (docref-setup) "docref" "utils/docref.el" (12983 26859)) | |
12125 ;;; Generated autoloads from utils/docref.el | |
12126 | |
12127 (autoload 'docref-setup "docref" "\ | |
12128 Process docref cross-references in the current buffer. | |
12129 See also \\(f@docref-subst)." t nil) | |
12130 | |
12131 ;;;*** | |
12132 | |
12133 ;;;### (autoloads (easy-menu-define) "easymenu" "utils/easymenu.el" (12983 26853)) | |
12134 ;;; Generated autoloads from utils/easymenu.el | |
12135 | |
12136 (autoload 'easy-menu-define "easymenu" "\ | |
12137 Define a menu bar submenu in maps MAPS, according to MENU. | |
12138 The arguments SYMBOL and DOC are ignored; they are present for | |
12139 compatibility only. SYMBOL is not evaluated. In other Emacs versions | |
12140 these arguments may be used as a variable to hold the menu data, and a | |
12141 doc string for that variable. | |
12142 | |
12143 The first element of MENU must be a string. It is the menu bar item name. | |
12144 The rest of the elements are menu items. | |
12145 | |
12146 A menu item is usually a vector of three elements: [NAME CALLBACK ENABLE] | |
12147 | |
12148 NAME is a string--the menu item name. | |
12149 | |
12150 CALLBACK is a command to run when the item is chosen, | |
12151 or a list to evaluate when the item is chosen. | |
12152 | |
12153 ENABLE is an expression; the item is enabled for selection | |
12154 whenever this expression's value is non-nil. | |
12155 | |
12156 Alternatively, a menu item may have the form: | |
12157 | |
12158 [ NAME CALLBACK [ KEYWORD ARG ] ... ] | |
12159 | |
12160 Where KEYWORD is one of the symbol defined below. | |
12161 | |
12162 :keys KEYS | |
12163 | |
12164 KEYS is a string; a complex keyboard equivalent to this menu item. | |
12165 | |
12166 :active ENABLE | |
12167 | |
12168 ENABLE is an expression; the item is enabled for selection | |
12169 whenever this expression's value is non-nil. | |
12170 | |
12171 :suffix NAME | |
12172 | |
12173 NAME is a string; the name of an argument to CALLBACK. | |
12174 | |
12175 :style STYLE | |
12176 | |
12177 STYLE is a symbol describing the type of menu item. The following are | |
12178 defined: | |
12179 | |
12180 toggle: A checkbox. | |
12181 Currently just prepend the name with the string \"Toggle \". | |
12182 radio: A radio button. | |
12183 nil: An ordinary menu item. | |
12184 | |
12185 :selected SELECTED | |
12186 | |
12187 SELECTED is an expression; the checkbox or radio button is selected | |
12188 whenever this expression's value is non-nil. | |
12189 Currently just disable radio buttons, no effect on checkboxes. | |
12190 | |
12191 A menu item can be a string. Then that string appears in the menu as | |
12192 unselectable text. A string consisting solely of hyphens is displayed | |
12193 as a solid horizontal line. | |
12194 | |
12195 A menu item can be a list. It is treated as a submenu. | |
12196 The first element should be the submenu name. That's used as the | |
12197 menu item in the top-level menu. The cdr of the submenu list | |
12198 is a list of menu items, as above." nil 'macro) | |
12199 | |
12200 ;;;*** | |
12201 | |
12202 ;;;### (autoloads (elp-submit-bug-report elp-results elp-instrument-package elp-instrument-list elp-restore-function elp-instrument-function) "elp" "utils/elp.el" (12983 27353)) | |
12203 ;;; Generated autoloads from utils/elp.el | |
12204 | |
12205 (autoload 'elp-instrument-function "elp" "\ | |
12206 Instrument FUNSYM for profiling. | |
12207 FUNSYM must be a symbol of a defined function." t nil) | |
12208 | |
12209 (autoload 'elp-restore-function "elp" "\ | |
12210 Restore an instrumented function to its original definition. | |
12211 Argument FUNSYM is the symbol of a defined function." t nil) | |
12212 | |
12213 (autoload 'elp-instrument-list "elp" "\ | |
12214 Instrument for profiling, all functions in `elp-function-list'. | |
12215 Use optional LIST if provided instead." t nil) | |
12216 | |
12217 (autoload 'elp-instrument-package "elp" "\ | |
12218 Instrument for profiling, all functions which start with PREFIX. | |
12219 For example, to instrument all ELP functions, do the following: | |
12220 | |
12221 \\[elp-instrument-package] RET elp- RET" t nil) | |
12222 | |
12223 (autoload 'elp-results "elp" "\ | |
12224 Display current profiling results. | |
12225 If `elp-reset-after-results' is non-nil, then current profiling | |
12226 information for all instrumented functions are reset after results are | |
12227 displayed." t nil) | |
12228 | |
12229 (autoload 'elp-submit-bug-report "elp" "\ | |
12230 Submit via mail, a bug report on elp." t nil) | |
12231 | |
12232 ;;;*** | |
12233 | |
12234 ;;;### (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" (12983 26077)) | |
12235 ;;; Generated autoloads from utils/facemenu.el | |
12236 | |
12237 (defvar facemenu-menu nil "\ | |
12238 Facemenu top-level menu keymap.") | |
12239 | |
12240 (defvar facemenu-keymap (let ((map (make-sparse-keymap "Set face"))) (define-key map 111 'facemenu-set-face) map) "\ | |
12241 Keymap for face-changing commands. | |
12242 `Facemenu-update' fills in the keymap according to the bindings | |
12243 requested in `facemenu-keybindings'.") | |
12244 | |
12245 (autoload 'facemenu-set-face "facemenu" "\ | |
12246 Add FACE to the region or next character typed. | |
12247 It will be added to the top of the face list; any faces lower on the list that | |
12248 will not show through at all will be removed. | |
12249 | |
12250 Interactively, the face to be used is read with the minibuffer. | |
12251 | |
12252 If the region is active and there is no prefix argument, | |
12253 this command sets the region to the requested face. | |
12254 | |
12255 Otherwise, this command specifies the face for the next character | |
12256 inserted. Moving point or switching buffers before | |
12257 typing a character to insert cancels the specification." t nil) | |
12258 | |
12259 (autoload 'facemenu-set-foreground "facemenu" "\ | |
12260 Set the foreground color of the region or next character typed. | |
12261 The color is prompted for. A face named `fg:color' is used (or created). | |
12262 If the region is active, it will be set to the requested face. If | |
12263 it is inactive (even if mark-even-if-inactive is set) the next | |
12264 character that is typed (via `self-insert-command') will be set to | |
12265 the selected face. Moving point or switching buffers before | |
12266 typing a character cancels the request." t nil) | |
12267 | |
12268 (autoload 'facemenu-set-background "facemenu" "\ | |
12269 Set the background color of the region or next character typed. | |
12270 The color is prompted for. A face named `bg:color' is used (or created). | |
12271 If the region is active, it will be set to the requested face. If | |
12272 it is inactive (even if mark-even-if-inactive is set) the next | |
12273 character that is typed (via `self-insert-command') will be set to | |
12274 the selected face. Moving point or switching buffers before | |
12275 typing a character cancels the request." t nil) | |
12276 | |
12277 (autoload 'facemenu-set-face-from-menu "facemenu" "\ | |
12278 Set the face of the region or next character typed. | |
12279 This function is designed to be called from a menu; the face to use | |
12280 is the menu item's name. | |
12281 | |
12282 If the region is active and there is no prefix argument, | |
12283 this command sets the region to the requested face. | |
12284 | |
12285 Otherwise, this command specifies the face for the next character | |
12286 inserted. Moving point or switching buffers before | |
12287 typing a character to insert cancels the specification." nil nil) | |
12288 | |
12289 (autoload 'facemenu-set-size-default "facemenu" nil t nil) | |
12290 | |
12291 (autoload 'facemenu-make-larger "facemenu" nil t nil) | |
12292 | |
12293 (autoload 'facemenu-make-smaller "facemenu" nil t nil) | |
12294 | |
12295 (autoload 'facemenu-make-much-larger "facemenu" nil t nil) | |
12296 | |
12297 (autoload 'facemenu-make-much-smaller "facemenu" nil t nil) | |
12298 | |
12299 (autoload 'facemenu-set-invisible "facemenu" "\ | |
12300 Make the region invisible. | |
12301 This sets the `invisible' text property; it can be undone with | |
12302 `facemenu-remove-special'." t nil) | |
12303 | |
12304 (autoload 'facemenu-set-intangible "facemenu" "\ | |
12305 Make the region intangible: disallow moving into it. | |
12306 This sets the `intangible' text property; it can be undone with | |
12307 `facemenu-remove-special'." t nil) | |
12308 | |
12309 (autoload 'facemenu-set-read-only "facemenu" "\ | |
12310 Make the region unmodifiable. | |
12311 This sets the `read-only' text property; it can be undone with | |
12312 `facemenu-remove-special'." t nil) | |
12313 | |
12314 (autoload 'facemenu-remove-props "facemenu" "\ | |
12315 Remove all text properties that facemenu added to region." t nil) | |
12316 | |
12317 (autoload 'facemenu-remove-special "facemenu" "\ | |
12318 Remove all the \"special\" text properties from the region. | |
12319 These special properties include `invisible', `intangible' and `read-only'." t nil) | |
12320 | |
12321 (autoload 'list-text-properties-at "facemenu" "\ | |
12322 Pop up a buffer listing text-properties at LOCATION." t nil) | |
12323 | |
12324 (autoload 'facemenu-read-color "facemenu" "\ | |
12325 Read a color using the minibuffer." nil nil) | |
12326 | |
12327 (autoload 'list-colors-display "facemenu" "\ | |
12328 Display names of defined colors, and show what they look like. | |
12329 If the optional argument LIST is non-nil, it should be a list of | |
12330 colors to display. Otherwise, this command computes a list | |
12331 of colors that the current display can handle." t nil) | |
12332 | |
12333 ;;;*** | |
12334 | |
12335 ;;;*** | |
12336 | |
12337 ;;;### (autoloads nil "find-gc" "utils/find-gc.el" (12983 26089)) | |
12338 ;;; Generated autoloads from utils/find-gc.el | |
12339 | |
12340 ;;;*** | |
12341 | |
12342 ;;;*** | |
12343 | |
12344 ;;;### (autoloads nil "finder-inf" "utils/finder-inf.el" (12983 26084)) | |
12345 ;;; Generated autoloads from utils/finder-inf.el | |
12346 | |
12347 ;;;*** | |
12348 | |
12349 ;;;### (autoloads nil "finder" "utils/finder.el" (12983 26856)) | |
12350 ;;; Generated autoloads from utils/finder.el | |
12351 | |
12352 ;;;*** | |
12353 | |
12354 ;;;### (autoloads (enable-flow-control-on enable-flow-control) "flow-ctrl" "utils/flow-ctrl.el" (12983 27359)) | |
12355 ;;; Generated autoloads from utils/flow-ctrl.el | |
12356 | |
12357 (autoload 'enable-flow-control "flow-ctrl" "\ | |
12358 Toggle flow control handling. | |
12359 When handling is enabled, user can type C-s as C-\\, and C-q as C-^. | |
12360 With arg, enable flow control mode if arg is positive, otherwise disable." t nil) | |
12361 | |
12362 (autoload 'enable-flow-control-on "flow-ctrl" "\ | |
12363 Enable flow control if using one of a specified set of terminal types. | |
12364 Use `(enable-flow-control-on \"vt100\" \"h19\")' to enable flow control | |
12365 on VT-100 and H19 terminals. When flow control is enabled, | |
12366 you must type C-\\ to get the effect of a C-s, and type C-^ | |
12367 to get the effect of a C-q. | |
12368 | |
12369 This function has no effect unless the current device is a tty. | |
12370 | |
12371 The tty terminal type is determined from the TERM environment variable. | |
12372 Trailing hyphens and everything following is stripped, so a TERM | |
12373 value of \"vt100-nam\" is treated the same as \"vt100\"." nil nil) | |
12374 | |
12375 ;;;*** | |
12376 | |
12377 ;;;*** | |
12378 | |
12379 ;;;### (autoloads nil "foldout" "utils/foldout.el" (12983 26859)) | |
12380 ;;; Generated autoloads from utils/foldout.el | |
12381 | |
12382 ;;;*** | |
12383 | |
12384 ;;;### (autoloads nil "forms-d2" "utils/forms-d2.el" (12983 26855)) | |
12385 ;;; Generated autoloads from utils/forms-d2.el | |
12386 | |
12387 ;;;*** | |
12388 | |
12389 ;;;### (autoloads nil "forms-pass" "utils/forms-pass.el" (12983 26856)) | |
12390 ;;; Generated autoloads from utils/forms-pass.el | |
12391 | |
12392 ;;;### (autoloads (forms-find-file-other-window forms-find-file forms-mode) "forms" "utils/forms.el" (12983 27356)) | |
12393 ;;; Generated autoloads from utils/forms.el | |
12394 | |
12395 (autoload 'forms-mode "forms" "\ | |
12396 Major mode to visit files in a field-structured manner using a form. | |
12397 | |
12398 Commands: Equivalent keys in read-only mode: | |
12399 TAB forms-next-field TAB | |
12400 \\C-c TAB forms-next-field | |
12401 \\C-c < forms-first-record < | |
12402 \\C-c > forms-last-record > | |
12403 \\C-c ? describe-mode ? | |
12404 \\C-c \\C-k forms-delete-record | |
12405 \\C-c \\C-q forms-toggle-read-only q | |
12406 \\C-c \\C-o forms-insert-record | |
12407 \\C-c \\C-l forms-jump-record l | |
12408 \\C-c \\C-n forms-next-record n | |
12409 \\C-c \\C-p forms-prev-record p | |
12410 \\C-c \\C-r forms-search-backward r | |
12411 \\C-c \\C-s forms-search-forward s | |
12412 \\C-c \\C-x forms-exit x | |
12413 " t nil) | |
12414 | |
12415 (autoload 'forms-find-file "forms" "\ | |
12416 Visit a file in Forms mode." t nil) | |
12417 | |
12418 (autoload 'forms-find-file-other-window "forms" "\ | |
12419 Visit a file in Forms mode in other window." t nil) | |
12420 | |
12421 ;;;*** | |
12422 | |
12423 ;;;*** | |
12424 | |
12425 ;;;### (autoloads nil "hide-copyleft" "utils/hide-copyleft.el" (12983 26092)) | |
12426 ;;; Generated autoloads from utils/hide-copyleft.el | |
12427 | |
12428 ;;;### (autoloads (highlight-headers-follow-url highlight-headers-follow-url-mosaic highlight-headers-follow-url-netscape highlight-headers) "highlight-headers" "utils/highlight-headers.el" (12983 26851)) | |
12429 ;;; Generated autoloads from utils/highlight-headers.el | |
12430 | |
12431 (autoload 'highlight-headers "highlight-headers" "\ | |
12432 Highlight message headers between start and end. | |
12433 Faces used: | |
12434 message-headers the part before the colon | |
12435 message-header-contents the part after the colon | |
12436 message-highlighted-header-contents contents of \"special\" headers | |
12437 message-cited-text quoted text from other messages | |
12438 | |
12439 Variables used: | |
12440 | |
12441 highlight-headers-regexp what makes a \"special\" header | |
12442 highlight-headers-citation-regexp matches lines of quoted text | |
12443 highlight-headers-citation-header-regexp matches headers for quoted text | |
12444 | |
12445 If HACK-SIG is true,then we search backward from END for something that | |
12446 looks like the beginning of a signature block, and don't consider that a | |
12447 part of the message (this is because signatures are often incorrectly | |
12448 interpreted as cited text.)" nil nil) | |
12449 | |
12450 (autoload 'highlight-headers-follow-url-netscape "highlight-headers" nil nil nil) | |
12451 | |
12452 (autoload 'highlight-headers-follow-url-mosaic "highlight-headers" nil nil nil) | |
12453 | |
12454 (autoload 'highlight-headers-follow-url "highlight-headers" nil t nil) | |
12455 | |
12456 ;;;*** | |
12457 | |
12458 ;;;### (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" (12983 27361)) | |
12459 ;;; Generated autoloads from utils/id-select.el | |
12460 | |
12461 (autoload 'id-select-thing "id-select" "\ | |
12462 Mark the region selected by the syntax of the thing at point. | |
12463 If invoked repeatedly, selects bigger and bigger things. | |
12464 If `id-select-display-type' is non-nil, the type of selection is displayed in | |
12465 the minibuffer." t nil) | |
12466 | |
12467 (autoload 'id-select-thing-with-mouse "id-select" "\ | |
12468 Select a region based on the syntax of the character from a mouse click. | |
12469 If the click occurs at the same point as the last click, select | |
12470 the next larger syntactic structure. If `id-select-display-type' is non-nil, | |
12471 the type of selection is displayed in the minibuffer." t nil) | |
12472 | |
12473 (autoload 'id-select-goto-matching-tag "id-select" "\ | |
12474 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. | |
12475 Returns t if point is moved, else nil. | |
12476 Signals an error if no tag is found following point or if the closing tag | |
12477 does not have a `>' terminator character." t nil) | |
12478 | |
12479 (autoload 'id-select-and-copy-thing "id-select" "\ | |
12480 Copy the region surrounding the syntactical unit at point." t nil) | |
12481 | |
12482 (autoload 'id-select-and-kill-thing "id-select" "\ | |
12483 Kill the region surrounding the syntactical unit at point." t nil) | |
12484 | |
12485 (autoload 'id-select-double-click-hook "id-select" "\ | |
12486 Select a region based on the syntax of the character wherever the mouse is double-clicked. | |
12487 If the double-click occurs at the same point as the last double-click, select | |
12488 the next larger syntactic structure. If `id-select-display-type' is non-nil, | |
12489 the type of selection is displayed in the minibuffer." nil nil) | |
12490 | |
12491 ;;;*** | |
12492 | |
12493 ;;;*** | |
12494 | |
12495 ;;;### (autoloads nil "lib-complete" "utils/lib-complete.el" (12983 26089)) | |
12496 ;;; Generated autoloads from utils/lib-complete.el | |
12497 | |
12498 ;;;*** | |
12499 | |
12500 ;;;### (autoloads nil "live-icon" "utils/live-icon.el" (12983 26087)) | |
12501 ;;; Generated autoloads from utils/live-icon.el | |
12502 | |
12503 ;;;### (autoloads (unload-feature) "loadhist" "utils/loadhist.el" (12983 26859)) | |
12504 ;;; Generated autoloads from utils/loadhist.el | |
12505 | |
12506 (autoload 'unload-feature "loadhist" "\ | |
12507 Unload the library that provided FEATURE, restoring all its autoloads. | |
12508 If the feature is required by any other loaded code, and optional FORCE | |
12509 is nil, raise an error." t nil) | |
12510 | |
12511 ;;;*** | |
12512 | |
12513 ;;;### (autoloads (what-domain mail-extract-address-components) "mail-extr" "utils/mail-extr.el" (12983 27955)) | |
12514 ;;; Generated autoloads from utils/mail-extr.el | |
12515 | |
12516 (autoload 'mail-extract-address-components "mail-extr" "\ | |
12517 Given an RFC-822 ADDRESS, extract full name and canonical address. | |
12518 Returns a list of the form (FULL-NAME CANONICAL-ADDRESS). | |
12519 If no name can be extracted, FULL-NAME will be nil. | |
12520 ADDRESS may be a string or a buffer. If it is a buffer, the visible | |
12521 (narrowed) portion of the buffer will be interpreted as the address. | |
12522 (This feature exists so that the clever caller might be able to avoid | |
12523 consing a string.) | |
12524 If ADDRESS contains more than one RFC-822 address, only the first is | |
12525 returned. Some day this function may be extended to extract multiple | |
12526 addresses, or perhaps return the position at which parsing stopped." nil nil) | |
12527 | |
12528 (autoload 'what-domain "mail-extr" "\ | |
12529 Prompts for a mail domain, and prints the country it corresponds to | |
12530 in the minibuffer." t nil) | |
12531 | |
12532 ;;;*** | |
12533 | |
12534 ;;;### (autoloads (mail-fetch-field mail-file-babyl-p) "mail-utils" "utils/mail-utils.el" (12983 26072)) | |
12535 ;;; Generated autoloads from utils/mail-utils.el | |
12536 | |
12537 (defvar mail-use-rfc822 nil "\ | |
12538 *If non-nil, use a full, hairy RFC822 parser on mail addresses. | |
12539 Otherwise, (the default) use a smaller, somewhat faster, and | |
12540 often correct parser.") | |
12541 | |
12542 (autoload 'mail-file-babyl-p "mail-utils" nil nil nil) | |
12543 | |
12544 (autoload 'mail-fetch-field "mail-utils" "\ | |
12545 Return the value of the header field FIELD-NAME. | |
12546 The buffer is expected to be narrowed to just the headers of the message. | |
12547 If second arg LAST is non-nil, use the last such field if there are several. | |
12548 If third arg ALL is non-nil, concatenate all such fields with commas between." nil nil) | |
12549 | |
12550 ;;;*** | |
12551 | |
12552 ;;;*** | |
12553 | |
12554 ;;;*** | |
12555 | |
12556 ;;;### (autoloads nil "mailpost" "utils/mailpost.el" (12983 26850)) | |
12557 ;;; Generated autoloads from utils/mailpost.el | |
12558 | |
12559 ;;;*** | |
12560 | |
12561 ;;;### (autoloads nil "map-ynp" "utils/map-ynp.el" (12983 26072)) | |
12562 ;;; Generated autoloads from utils/map-ynp.el | |
12563 | |
12564 ;;;*** | |
12565 | |
12566 ;;;### (autoloads nil "meese" "utils/meese.el" (12983 26850)) | |
12567 ;;; Generated autoloads from utils/meese.el | |
12568 | |
12569 ;;;### (autoloads (read-passwd) "passwd" "utils/passwd.el" (12983 26082)) | |
12570 ;;; Generated autoloads from utils/passwd.el | |
12571 | |
12572 (autoload 'read-passwd "passwd" "\ | |
12573 Prompts for a password in the minibuffer, and returns it as a string. | |
12574 If PROMPT may be a prompt string or an alist of elements | |
12575 '(prompt . default). | |
12576 If optional arg CONFIRM is true, then ask the user to type the password | |
12577 again to confirm that they typed it correctly. | |
12578 If optional arg DEFAULT is provided, then it is a string to insert as | |
12579 the default choice (it is not, of course, displayed.) | |
12580 | |
12581 If running under X, the keyboard will be grabbed (with XGrabKeyboard()) | |
12582 to reduce the possibility that evesdropping is occuring. | |
12583 | |
12584 When reading a password, all keys self-insert, except for: | |
12585 \\<read-passwd-map> | |
12586 \\[read-passwd-erase-line] Erase the entire line. | |
12587 \\[quoted-insert] Insert the next character literally. | |
12588 \\[delete-backward-char] Delete the previous character. | |
12589 \\[exit-minibuffer] Accept what you have typed. | |
12590 \\[keyboard-quit] Abort the command. | |
12591 | |
12592 The returned value is always a newly-created string. No additional copies | |
12593 of the password remain after this function has returned. | |
12594 | |
12595 NOTE: unless great care is taken, the typed password will exist in plaintext | |
12596 form in the running image for an arbitrarily long time. Priveleged users may | |
12597 be able to extract it from memory. If emacs crashes, it may appear in the | |
12598 resultant core file. | |
12599 | |
12600 Some steps you can take to prevent the password from being copied around: | |
12601 | |
12602 - as soon as you are done with the returned string, destroy it with | |
12603 (fillarray string 0). The same goes for any default passwords | |
12604 or password histories. | |
12605 | |
12606 - do not copy the string, as with concat or substring - if you do, be | |
12607 sure to keep track of and destroy all copies. | |
12608 | |
12609 - do not insert the password into a buffer - if you do, be sure to | |
12610 overwrite the buffer text before killing it, as with the functions | |
12611 `passwd-erase-buffer' or `passwd-kill-buffer'. Note that deleting | |
12612 the text from the buffer does NOT necessarily remove the text from | |
12613 memory. | |
12614 | |
12615 - be careful of the undo history - if you insert the password into a | |
12616 buffer which has undo recording turned on, the password will be | |
12617 copied onto the undo list, and thus recoverable. | |
12618 | |
12619 - do not pass it as an argument to a shell command - anyone will be | |
12620 able to see it if they run `ps' at the right time. | |
12621 | |
12622 Note that the password will be temporarily recoverable with the `view-lossage' | |
12623 command. This data will not be overwritten until another hundred or so | |
12624 characters are typed. There's not currently a way around this." nil nil) | |
12625 | |
12626 ;;;*** | |
12627 | |
12628 ;;;### (autoloads (pp-eval-last-sexp pp-eval-expression pp) "pp" "utils/pp.el" (12983 26856)) | |
12629 ;;; Generated autoloads from utils/pp.el | |
12630 | |
12631 (defalias 'pprint 'pp) | |
12632 | |
12633 (autoload 'pp "pp" "\ | |
12634 Output the pretty-printed representation of OBJECT, any Lisp object. | |
12635 Quoting characters are printed when needed to make output that `read' | |
12636 can handle, whenever this is possible. | |
12637 Output stream is STREAM, or value of `standard-output' (which see)." nil nil) | |
12638 | |
12639 (autoload 'pp-eval-expression "pp" "\ | |
12640 Evaluate EXPRESSION and pretty-print value into a new display buffer. | |
12641 If the pretty-printed value fits on one line, the message line is used | |
12642 instead. Value is also consed on to front of variable values 's | |
12643 value." t nil) | |
12644 | |
12645 (autoload 'pp-eval-last-sexp "pp" "\ | |
12646 Run `pp-eval-expression' on sexp before point (which see). | |
12647 With argument, pretty-print output into current buffer. | |
12648 Ignores leading comment characters." t nil) | |
12649 | |
12650 ;;;*** | |
12651 | |
12652 ;;;*** | |
12653 | |
12654 ;;;*** | |
12655 | |
12656 ;;;### (autoloads nil "regi" "utils/regi.el" (12983 26854)) | |
12657 ;;; Generated autoloads from utils/regi.el | |
12658 | |
12659 ;;;### (autoloads (reporter-submit-bug-report) "reporter" "utils/reporter.el" (12983 26854)) | |
12660 ;;; Generated autoloads from utils/reporter.el | |
12661 | |
12662 (autoload 'reporter-submit-bug-report "reporter" nil nil nil) | |
12663 | |
12664 ;;;*** | |
12665 | |
12666 ;;;*** | |
12667 | |
12668 ;;;### (autoloads nil "rfc822" "utils/rfc822.el" (12983 26072)) | |
12669 ;;; Generated autoloads from utils/rfc822.el | |
12670 | |
12671 ;;;### (autoloads (make-ring ringp) "ring" "utils/ring.el" (12983 26854)) | |
12672 ;;; Generated autoloads from utils/ring.el | |
12673 | |
12674 (autoload 'ringp "ring" "\ | |
12675 Returns t if X is a ring; nil otherwise." nil nil) | |
12676 | |
12677 (define-obsolete-function-alias 'ring-p 'ringp) | |
12678 | |
12679 (autoload 'make-ring "ring" "\ | |
12680 Make a ring that can contain SIZE elements." nil nil) | |
12681 | |
12682 ;;;*** | |
12683 | |
12684 ;;;*** | |
12685 | |
12686 ;;;*** | |
12687 | |
12688 ;;;### (autoloads nil "shadowfile" "utils/shadowfile.el" (12983 26860)) | |
12689 ;;; Generated autoloads from utils/shadowfile.el | |
12690 | |
12691 ;;;*** | |
12692 | |
12693 ;;;*** | |
12694 | |
12695 ;;;### (autoloads (skeleton-pair-insert-maybe skeleton-insert skeleton-proxy skeleton-proxy-new define-skeleton) "skeleton" "utils/skeleton.el" (12983 26853)) | |
12696 ;;; Generated autoloads from utils/skeleton.el | |
12697 | |
12698 (defvar skeleton-filter 'identity "\ | |
12699 Function for transforming a skeleton proxy's aliases' variable value.") | |
12700 | |
12701 (autoload 'define-skeleton "skeleton" "\ | |
12702 Define a user-configurable COMMAND that enters a statement skeleton. | |
12703 DOCUMENTATION is that of the command, while the variable of the same name, | |
12704 which contains the skeleton, has a documentation to that effect. | |
12705 INTERACTOR and ELEMENT ... are as defined under `skeleton-insert'." nil 'macro) | |
12706 | |
12707 (autoload 'skeleton-proxy-new "skeleton" "\ | |
12708 Insert skeleton defined by variable of same name (see `skeleton-insert'). | |
12709 Prefix ARG allows wrapping around words or regions (see `skeleton-insert'). | |
12710 If no ARG was given, but the region is visible, ARG defaults to -1 depending | |
12711 on `skeleton-autowrap'. An ARG of M-0 will prevent this just for once. | |
12712 This command can also be an abbrev expansion (3rd and 4th columns in | |
12713 \\[edit-abbrevs] buffer: \"\" command-name). | |
12714 | |
12715 When called as a function, optional first argument STR may also be a string | |
12716 which will be the value of `str' whereas the skeleton's interactor is then | |
12717 ignored." t nil) | |
12718 | |
12719 (autoload 'skeleton-proxy "skeleton" "\ | |
12720 Insert skeleton defined by variable of same name (see `skeleton-insert'). | |
12721 Prefix ARG allows wrapping around words or regions (see `skeleton-insert'). | |
12722 If no ARG was given, but the region is visible, ARG defaults to -1 depending | |
12723 on `skeleton-autowrap'. An ARG of M-0 will prevent this just for once. | |
12724 This command can also be an abbrev expansion (3rd and 4th columns in | |
12725 \\[edit-abbrevs] buffer: \"\" command-name). | |
12726 | |
12727 When called as a function, optional first argument STR may also be a string | |
12728 which will be the value of `str' whereas the skeleton's interactor is then | |
12729 ignored." t nil) | |
12730 | |
12731 (autoload 'skeleton-insert "skeleton" "\ | |
12732 Insert the complex statement skeleton SKELETON describes very concisely. | |
12733 | |
12734 With optional third REGIONS wrap first interesting point (`_') in skeleton | |
12735 around next REGIONS words, if REGIONS is positive. If REGIONS is negative, | |
12736 wrap REGIONS preceding interregions into first REGIONS interesting positions | |
12737 \(successive `_'s) in skeleton. An interregion is the stretch of text between | |
12738 two contiguous marked points. If you marked A B C [] (where [] is the cursor) | |
12739 in alphabetical order, the 3 interregions are simply the last 3 regions. But | |
12740 if you marked B A [] C, the interregions are B-A, A-[], []-C. | |
12741 | |
12742 Optional fourth STR is the value for the variable `str' within the skeleton. | |
12743 When this is non-`nil' the interactor gets ignored, and this should be a valid | |
12744 skeleton element. | |
12745 | |
12746 SKELETON is made up as (INTERACTOR ELEMENT ...). INTERACTOR may be nil if | |
12747 not needed, a prompt-string or an expression for complex read functions. | |
12748 | |
12749 If ELEMENT is a string or a character it gets inserted (see also | |
12750 `skeleton-transformation'). Other possibilities are: | |
12751 | |
12752 \\n go to next line and indent according to mode | |
12753 _ interesting point, interregion here, point after termination | |
12754 > indent line (or interregion if > _) according to major mode | |
12755 & do next ELEMENT if previous moved point | |
12756 | do next ELEMENT if previous didn't move point | |
12757 -num delete num preceding characters (see `skeleton-untabify') | |
12758 resume: skipped, continue here if quit is signaled | |
12759 nil skipped | |
12760 | |
12761 Further elements can be defined via `skeleton-further-elements'. ELEMENT may | |
12762 itself be a SKELETON with an INTERACTOR. The user is prompted repeatedly for | |
12763 different inputs. The SKELETON is processed as often as the user enters a | |
12764 non-empty string. \\[keyboard-quit] terminates skeleton insertion, but | |
12765 continues after `resume:' and positions at `_' if any. If INTERACTOR in such | |
12766 a subskeleton is a prompt-string which contains a \".. %s ..\" it is | |
12767 formatted with `skeleton-subprompt'. Such an INTERACTOR may also a list of | |
12768 strings with the subskeleton being repeated once for each string. | |
12769 | |
12770 Quoted Lisp expressions are evaluated evaluated for their side-effect. | |
12771 Other Lisp expressions are evaluated and the value treated as above. | |
12772 Note that expressions may not return `t' since this implies an | |
12773 endless loop. Modes can define other symbols by locally setting them | |
12774 to any valid skeleton element. The following local variables are | |
12775 available: | |
12776 | |
12777 str first time: read a string according to INTERACTOR | |
12778 then: insert previously read string once more | |
12779 help help-form during interaction with the user or `nil' | |
12780 input initial input (string or cons with index) while reading str | |
12781 v1, v2 local variables for memorizing anything you want | |
12782 | |
12783 When done with skeleton, but before going back to `_'-point call | |
12784 `skeleton-end-hook' if that is non-`nil'." nil nil) | |
12785 | |
12786 (autoload 'skeleton-pair-insert-maybe "skeleton" "\ | |
12787 Insert the character you type ARG times. | |
12788 | |
12789 With no ARG, if `skeleton-pair' is non-nil, pairing can occur. If the region | |
12790 is visible the pair is wrapped around it depending on `skeleton-autowrap'. | |
12791 Else, if `skeleton-pair-on-word' is non-nil or we are not before or inside a | |
12792 word, and if `skeleton-pair-filter' returns nil, pairing is performed. | |
12793 | |
12794 If a match is found in `skeleton-pair-alist', that is inserted, else | |
12795 the defaults are used. These are (), [], {}, <> and `' for the | |
12796 symmetrical ones, and the same character twice for the others." t nil) | |
12797 | |
12798 ;;;*** | |
12799 | |
12800 ;;;*** | |
12801 | |
12802 ;;;### (autoloads nil "smtpmail" "utils/smtpmail.el" (12983 27361)) | |
12803 ;;; Generated autoloads from utils/smtpmail.el | |
12804 | |
12805 ;;;*** | |
12806 | |
12807 ;;;### (autoloads nil "soundex" "utils/soundex.el" (12983 26860)) | |
12808 ;;; Generated autoloads from utils/soundex.el | |
12809 | |
12810 ;;;*** | |
12811 | |
12812 ;;;### (autoloads nil "symbol-syntax" "utils/symbol-syntax.el" (12983 26071)) | |
12813 ;;; Generated autoloads from utils/symbol-syntax.el | |
12814 | |
12815 ;;;*** | |
12816 | |
12817 ;;;### (autoloads nil "sysdep" "utils/sysdep.el" (12983 26088)) | |
12818 ;;; Generated autoloads from utils/sysdep.el | |
12819 | |
12820 ;;;*** | |
12821 | |
12822 ;;;### (autoloads nil "text-props" "utils/text-props.el" (12983 26855)) | |
12823 ;;; Generated autoloads from utils/text-props.el | |
12824 | |
12825 ;;;*** | |
12826 | |
12827 ;;;### (autoloads nil "thing" "utils/thing.el" (12983 26090)) | |
12828 ;;; Generated autoloads from utils/thing.el | |
12829 | |
12830 ;;;*** | |
12831 | |
12832 ;;;### (autoloads nil "timezone" "utils/timezone.el" (12983 26092)) | |
12833 ;;; Generated autoloads from utils/timezone.el | |
12834 | |
12835 ;;;### (autoloads (tq-create) "tq" "utils/tq.el" (12983 26861)) | |
12836 ;;; Generated autoloads from utils/tq.el | |
12837 | |
12838 (autoload 'tq-create "tq" "\ | |
12839 Create and return a transaction queue communicating with PROCESS. | |
12840 PROCESS should be a subprocess capable of sending and receiving | |
12841 streams of bytes. It may be a local process, or it may be connected | |
12842 to a tcp server on another machine." nil nil) | |
12843 | |
12844 ;;;*** | |
12845 | |
12846 ;;;### (autoloads (trace-function-background trace-function) "trace" "utils/trace.el" (12983 26855)) | |
12847 ;;; Generated autoloads from utils/trace.el | |
12848 | |
12849 (defvar trace-buffer "*trace-output*" "\ | |
12850 *Trace output will by default go to that buffer.") | |
12851 | |
12852 (autoload 'trace-function "trace" "\ | |
12853 Traces FUNCTION with trace output going to BUFFER. | |
12854 For every call of FUNCTION Lisp-style trace messages that display argument | |
12855 and return values will be inserted into BUFFER. This function generates the | |
12856 trace advice for FUNCTION and activates it together with any other advice | |
12857 there might be!! The trace BUFFER will popup whenever FUNCTION is called. | |
12858 Do not use this to trace functions that switch buffers or do any other | |
12859 display oriented stuff, use `trace-function-background' instead." t nil) | |
12860 | |
12861 (autoload 'trace-function-background "trace" "\ | |
12862 Traces FUNCTION with trace output going quietly to BUFFER. | |
12863 For every call of FUNCTION Lisp-style trace messages that display argument | |
12864 and return values will be inserted into BUFFER. This function generates the | |
12865 trace advice for FUNCTION and activates it together with any other advice | |
12866 there might be!! Trace output will quietly go to BUFFER without changing | |
12867 the window or buffer configuration at all." t nil) | |
12868 | |
12869 ;;;*** | |
12870 | |
12871 ;;;*** | |
12872 | |
12873 ;;;### (autoloads nil "tree-menu" "utils/tree-menu.el" (12983 26087)) | |
12874 ;;; Generated autoloads from utils/tree-menu.el | |
12875 | |
12876 ;;;*** | |
12877 | |
12878 ;;;### (autoloads nil "uniquify" "utils/uniquify.el" (12983 26861)) | |
12879 ;;; Generated autoloads from utils/uniquify.el | |
12880 | |
12881 ;;;### (autoloads (y-or-n-p-with-timeout yes-or-no-p-with-timeout with-timeout with-timeout-internal) "with-timeout" "utils/with-timeout.el" (12983 26073)) | |
12882 ;;; Generated autoloads from utils/with-timeout.el | |
12883 | |
12884 (autoload 'with-timeout-internal "with-timeout" nil nil nil) | |
12885 | |
12886 (autoload 'with-timeout "with-timeout" "\ | |
12887 Usage: (with-timeout (seconds &rest timeout-forms) &rest body) | |
12888 This is just like progn, but if the given number of seconds expires before | |
12889 the body returns, then timeout-forms are evaluated and returned instead. | |
12890 The body won't be interrupted in the middle of a computation: the check for | |
12891 the timer expiration only occurs when body does a redisplay, or prompts the | |
12892 user for input, or calls accept-process-output." nil 'macro) | |
12893 | |
12894 (autoload 'yes-or-no-p-with-timeout "with-timeout" "\ | |
12895 Just like yes-or-no-p, but will time out after TIMEOUT seconds | |
12896 if the user has not yes answered, returning DEFAULT-VALUE." nil nil) | |
12897 | |
12898 (autoload 'y-or-n-p-with-timeout "with-timeout" "\ | |
12899 Just like y-or-n-p, but will time out after TIMEOUT seconds | |
12900 if the user has not yes answered, returning DEFAULT-VALUE." nil nil) | |
12901 | |
12902 ;;;*** | |
12903 | |
12904 ;;;### (autoloads (xbm-button-create) "xbm-button" "utils/xbm-button.el" (12983 26092)) | |
12905 ;;; Generated autoloads from utils/xbm-button.el | |
12906 | |
12907 (autoload 'xbm-button-create "xbm-button" "\ | |
12908 Returns a list of XBM image instantiators for a button displaying TEXT. | |
12909 The list is of the form | |
12910 (UP DOWN DISABLED) | |
12911 where UP, DOWN, and DISABLED are the up, down and disabled image | |
12912 instantiators for the button. | |
12913 | |
12914 BORDER-THICKNESS specifies how many pixels should be used for the | |
12915 borders on the edges of the buttons. It should be a positive integer, | |
12916 or 0 to mean no border." nil nil) | |
12917 | |
12918 ;;;*** | |
12919 | |
12920 ;;;### (autoloads (xpm-button-create) "xpm-button" "utils/xpm-button.el" (12983 26076)) | |
12921 ;;; Generated autoloads from utils/xpm-button.el | |
12922 | |
12923 (autoload 'xpm-button-create "xpm-button" "\ | |
12924 Returns a list of XPM image instantiators for a button displaying TEXT. | |
12925 The list is of the form | |
12926 (UP DOWN DISABLED) | |
12927 where UP, DOWN, and DISABLED are the up, down and disabled image | |
12928 instantiators for the button. | |
12929 | |
12930 SHADOW-THICKNESS specifies how many pixels should be used for the | |
12931 shadows on the edges of the buttons. It should be a positive integer, | |
12932 or 0 to mean no shadows on the edges. | |
12933 FG-COLOR is the color used to display the text. It should be a string. | |
12934 BG-COLOR is the background color the text will be displayed upon. | |
12935 It should be a string." nil nil) | |
12936 | |
12937 ;;;*** | |
12938 | |
12939 ;;;*** | |
12940 | |
12941 ;;;### (autoloads nil "viper-ex" "viper/viper-ex.el" (12983 26192)) | |
12942 ;;; Generated autoloads from viper/viper-ex.el | |
12943 | |
12944 ;;;*** | |
12945 | |
12946 ;;;### (autoloads nil "viper-keym" "viper/viper-keym.el" (12983 26193)) | |
12947 ;;; Generated autoloads from viper/viper-keym.el | |
12948 | |
12949 ;;;*** | |
12950 | |
12951 ;;;### (autoloads nil "viper-macs" "viper/viper-macs.el" (12983 26192)) | |
12952 ;;; Generated autoloads from viper/viper-macs.el | |
12953 | |
12954 ;;;*** | |
12955 | |
12956 ;;;### (autoloads nil "viper-mous" "viper/viper-mous.el" (12983 26193)) | |
12957 ;;; Generated autoloads from viper/viper-mous.el | |
12958 | |
12959 ;;;*** | |
12960 | |
12961 ;;;### (autoloads nil "viper-util" "viper/viper-util.el" (12983 26194)) | |
12962 ;;; Generated autoloads from viper/viper-util.el | |
12963 | |
12964 ;;;### (autoloads (viper-mode) "viper" "viper/viper.el" (12983 26196)) | |
12965 ;;; Generated autoloads from viper/viper.el | |
12966 | |
12967 (autoload 'viper-mode "viper" "\ | |
12968 Turn on Viper emulation of Vi." t nil) | |
12969 | |
12970 (defalias 'vip-mode 'viper-mode) | |
12971 | |
12972 ;;;*** | |
12973 | |
12974 ;;;*** | |
12975 | |
12976 ;;;### (autoloads nil "tapestry" "vm/tapestry.el" (12983 26104)) | |
12977 ;;; Generated autoloads from vm/tapestry.el | |
12978 | |
12979 ;;;*** | |
12980 | |
12981 ;;;*** | |
12982 | |
12983 ;;;*** | |
12984 | |
12985 ;;;*** | |
12986 | |
12987 ;;;### (autoloads nil "vm-autoload" "vm/vm-autoload.el" (12995 34887)) | |
12988 ;;; Generated autoloads from vm/vm-autoload.el | |
12989 | |
12990 ;;;### (autoloads nil "vm-byteopts" "vm/vm-byteopts.el" (12983 26104)) | |
12991 ;;; Generated autoloads from vm/vm-byteopts.el | |
12992 | |
12993 ;;;*** | |
12994 | |
12995 ;;;*** | |
12996 | |
12997 ;;;### (autoloads nil "vm-delete" "vm/vm-delete.el" (12983 26862)) | |
12998 ;;; Generated autoloads from vm/vm-delete.el | |
12999 | |
13000 ;;;*** | |
13001 | |
13002 ;;;### (autoloads nil "vm-digest" "vm/vm-digest.el" (12983 26861)) | |
13003 ;;; Generated autoloads from vm/vm-digest.el | |
13004 | |
13005 ;;;### (autoloads (vm-easy-menu-create-keymaps vm-easy-menu-define) "vm-easymenu" "vm/vm-easymenu.el" (12983 26104)) | |
13006 ;;; Generated autoloads from vm/vm-easymenu.el | |
13007 | |
13008 (autoload 'vm-easy-menu-define "vm-easymenu" "\ | |
13009 Define a menu bar submenu in maps MAPS, according to MENU. | |
13010 The menu keymap is stored in symbol SYMBOL, both as its value | |
13011 and as its function definition. DOC is used as the doc string for SYMBOL. | |
13012 | |
13013 The first element of MENU must be a string. It is the menu bar item name. | |
13014 The rest of the elements are menu items. | |
13015 | |
13016 A menu item is usually a vector of three elements: [NAME CALLBACK ENABLE] | |
13017 | |
13018 NAME is a string--the menu item name. | |
13019 | |
13020 CALLBACK is a command to run when the item is chosen, | |
13021 or a list to evaluate when the item is chosen. | |
13022 | |
13023 ENABLE is an expression; the item is enabled for selection | |
13024 whenever this expression's value is non-nil. | |
13025 | |
13026 Alternatively, a menu item may have the form: | |
13027 | |
13028 [ NAME CALLBACK [ KEYWORD ARG ] ... ] | |
13029 | |
13030 Where KEYWORD is one of the symbol defined below. | |
13031 | |
13032 :keys KEYS | |
13033 | |
13034 KEYS is a string; a complex keyboard equivalent to this menu item. | |
13035 This is normally not needed because keyboard equivalents are usually | |
13036 computed automatically. | |
13037 | |
13038 :active ENABLE | |
13039 | |
13040 ENABLE is an expression; the item is enabled for selection | |
13041 whenever this expression's value is non-nil. | |
13042 | |
13043 :suffix NAME | |
13044 | |
13045 NAME is a string; the name of an argument to CALLBACK. | |
13046 | |
13047 :style | |
13048 | |
13049 STYLE is a symbol describing the type of menu item. The following are | |
13050 defined: | |
13051 | |
13052 toggle: A checkbox. | |
13053 Currently just prepend the name with the string \"Toggle \". | |
13054 radio: A radio button. | |
13055 nil: An ordinary menu item. | |
13056 | |
13057 :selected SELECTED | |
13058 | |
13059 SELECTED is an expression; the checkbox or radio button is selected | |
13060 whenever this expression's value is non-nil. | |
13061 Currently just disable radio buttons, no effect on checkboxes. | |
13062 | |
13063 A menu item can be a string. Then that string appears in the menu as | |
13064 unselectable text. A string consisting solely of hyphens is displayed | |
13065 as a solid horizontal line. | |
13066 | |
13067 A menu item can be a list. It is treated as a submenu. | |
13068 The first element should be the submenu name. That's used as the | |
13069 menu item in the top-level menu. The cdr of the submenu list | |
13070 is a list of menu items, as above." nil 'macro) | |
13071 | |
13072 (autoload 'vm-easy-menu-create-keymaps "vm-easymenu" nil nil nil) | |
13073 | |
13074 ;;;*** | |
13075 | |
13076 ;;;*** | |
13077 | |
13078 ;;;### (autoloads nil "vm-edit" "vm/vm-edit.el" (12983 26093)) | |
13079 ;;; Generated autoloads from vm/vm-edit.el | |
13080 | |
13081 ;;;*** | |
13082 | |
13083 ;;;*** | |
13084 | |
13085 ;;;*** | |
13086 | |
13087 ;;;### (autoloads nil "vm-folder" "vm/vm-folder.el" (12989 40981)) | |
13088 ;;; Generated autoloads from vm/vm-folder.el | |
13089 | |
13090 ;;;### (autoloads nil "vm-license" "vm/vm-license.el" (12983 26094)) | |
13091 ;;; Generated autoloads from vm/vm-license.el | |
13092 | |
13093 ;;;*** | |
13094 | |
13095 ;;;### (autoloads nil "vm-mark" "vm/vm-mark.el" (12983 26094)) | |
13096 ;;; Generated autoloads from vm/vm-mark.el | |
13097 | |
13098 ;;;*** | |
13099 | |
13100 ;;;### (autoloads nil "vm-menu" "vm/vm-menu.el" (12983 26094)) | |
13101 ;;; Generated autoloads from vm/vm-menu.el | |
13102 | |
13103 ;;;*** | |
13104 | |
13105 ;;;### (autoloads nil "vm-message" "vm/vm-message.el" (12983 26094)) | |
13106 ;;; Generated autoloads from vm/vm-message.el | |
13107 | |
13108 ;;;*** | |
13109 | |
13110 ;;;### (autoloads nil "vm-minibuf" "vm/vm-minibuf.el" (12983 26104)) | |
13111 ;;; Generated autoloads from vm/vm-minibuf.el | |
13112 | |
13113 ;;;*** | |
13114 | |
13115 ;;;*** | |
13116 | |
13117 ;;;### (autoloads nil "vm-misc" "vm/vm-misc.el" (12989 40635)) | |
13118 ;;; Generated autoloads from vm/vm-misc.el | |
13119 | |
13120 ;;;### (autoloads nil "vm-motion" "vm/vm-motion.el" (12983 26097)) | |
13121 ;;; Generated autoloads from vm/vm-motion.el | |
13122 | |
13123 ;;;*** | |
13124 | |
13125 ;;;### (autoloads nil "vm-mouse" "vm/vm-mouse.el" (12983 26103)) | |
13126 ;;; Generated autoloads from vm/vm-mouse.el | |
13127 | |
13128 ;;;*** | |
13129 | |
13130 ;;;### (autoloads nil "vm-page" "vm/vm-page.el" (12983 26097)) | |
13131 ;;; Generated autoloads from vm/vm-page.el | |
13132 | |
13133 ;;;*** | |
13134 | |
13135 ;;;### (autoloads nil "vm-pop" "vm/vm-pop.el" (12983 26094)) | |
13136 ;;; Generated autoloads from vm/vm-pop.el | |
13137 | |
13138 ;;;*** | |
13139 | |
13140 ;;;### (autoloads nil "vm-reply" "vm/vm-reply.el" (12983 26862)) | |
13141 ;;; Generated autoloads from vm/vm-reply.el | |
13142 | |
13143 ;;;*** | |
13144 | |
13145 ;;;### (autoloads nil "vm-save" "vm/vm-save.el" (12983 26097)) | |
13146 ;;; Generated autoloads from vm/vm-save.el | |
13147 | |
13148 ;;;*** | |
13149 | |
13150 ;;;*** | |
13151 | |
13152 ;;;### (autoloads nil "vm-search" "vm/vm-search.el" (12995 34859)) | |
13153 ;;; Generated autoloads from vm/vm-search.el | |
13154 | |
13155 ;;;### (autoloads nil "vm-search18" "vm/vm-search18.el" (12983 26102)) | |
13156 ;;; Generated autoloads from vm/vm-search18.el | |
13157 | |
13158 ;;;*** | |
13159 | |
13160 ;;;### (autoloads nil "vm-search19" "vm/vm-search19.el" (12983 26103)) | |
13161 ;;; Generated autoloads from vm/vm-search19.el | |
13162 | |
13163 ;;;*** | |
13164 | |
13165 ;;;### (autoloads nil "vm-sort" "vm/vm-sort.el" (12983 26101)) | |
13166 ;;; Generated autoloads from vm/vm-sort.el | |
13167 | |
13168 ;;;*** | |
13169 | |
13170 ;;;### (autoloads nil "vm-startup" "vm/vm-startup.el" (12983 26104)) | |
13171 ;;; Generated autoloads from vm/vm-startup.el | |
13172 | |
13173 ;;;*** | |
13174 | |
13175 ;;;### (autoloads nil "vm-summary" "vm/vm-summary.el" (12983 26098)) | |
13176 ;;; Generated autoloads from vm/vm-summary.el | |
13177 | |
13178 ;;;*** | |
13179 | |
13180 ;;;### (autoloads nil "vm-thread" "vm/vm-thread.el" (12983 26104)) | |
13181 ;;; Generated autoloads from vm/vm-thread.el | |
13182 | |
13183 ;;;*** | |
13184 | |
13185 ;;;### (autoloads nil "vm-toolbar" "vm/vm-toolbar.el" (12983 26105)) | |
13186 ;;; Generated autoloads from vm/vm-toolbar.el | |
13187 | |
13188 ;;;*** | |
13189 | |
13190 ;;;### (autoloads nil "vm-undo" "vm/vm-undo.el" (12983 26098)) | |
13191 ;;; Generated autoloads from vm/vm-undo.el | |
13192 | |
13193 ;;;*** | |
13194 | |
13195 ;;;*** | |
13196 | |
13197 ;;;*** | |
13198 | |
13199 ;;;*** | |
13200 | |
13201 ;;;### (autoloads nil "vm-vars" "vm/vm-vars.el" (12997 29669)) | |
13202 ;;; Generated autoloads from vm/vm-vars.el | |
13203 | |
13204 ;;;### (autoloads nil "vm-version" "vm/vm-version.el" (12983 26101)) | |
13205 ;;; Generated autoloads from vm/vm-version.el | |
13206 | |
13207 ;;;*** | |
13208 | |
13209 ;;;### (autoloads nil "vm-virtual" "vm/vm-virtual.el" (12983 26101)) | |
13210 ;;; Generated autoloads from vm/vm-virtual.el | |
13211 | |
13212 ;;;*** | |
13213 | |
13214 ;;;### (autoloads nil "vm-window" "vm/vm-window.el" (12983 26101)) | |
13215 ;;; Generated autoloads from vm/vm-window.el | |
13216 | |
13217 ;;;*** | |
13218 | |
13219 ;;;*** | |
13220 | |
13221 ;;;### (autoloads nil "docomp" "w3/docomp.el" (12983 26881)) | |
13222 ;;; Generated autoloads from w3/docomp.el | |
13223 | |
13224 ;;;*** | |
13225 | |
13226 ;;;### (autoloads nil "font" "w3/font.el" (12983 26884)) | |
13227 ;;; Generated autoloads from w3/font.el | |
13228 | |
13229 ;;;*** | |
13230 | |
13231 ;;;### (autoloads nil "images" "w3/images.el" (12983 26883)) | |
13232 ;;; Generated autoloads from w3/images.el | |
13233 | |
13234 ;;;*** | |
13235 | |
13236 ;;;### (autoloads nil "w3-about" "w3/w3-about.el" (12983 26881)) | |
13237 ;;; Generated autoloads from w3/w3-about.el | |
13238 | |
13239 ;;;*** | |
13240 | |
13241 ;;;### (autoloads nil "w3-annotat" "w3/w3-annotat.el" (12983 26885)) | |
13242 ;;; Generated autoloads from w3/w3-annotat.el | |
13243 | |
13244 ;;;*** | |
13245 | |
13246 ;;;### (autoloads nil "w3-auto" "w3/w3-auto.el" (12983 26891)) | |
13247 ;;; Generated autoloads from w3/w3-auto.el | |
13248 | |
13249 ;;;*** | |
13250 | |
13251 ;;;### (autoloads nil "w3-draw" "w3/w3-draw.el" (12983 26886)) | |
13252 ;;; Generated autoloads from w3/w3-draw.el | |
13253 | |
13254 ;;;*** | |
13255 | |
13256 ;;;### (autoloads nil "w3-e19" "w3/w3-e19.el" (12983 26882)) | |
13257 ;;; Generated autoloads from w3/w3-e19.el | |
13258 | |
13259 ;;;*** | |
13260 | |
13261 ;;;### (autoloads nil "w3-emulate" "w3/w3-emulate.el" (12983 26885)) | |
13262 ;;; Generated autoloads from w3/w3-emulate.el | |
13263 | |
13264 ;;;*** | |
13265 | |
13266 ;;;### (autoloads nil "w3-forms" "w3/w3-forms.el" (12983 26884)) | |
13267 ;;; Generated autoloads from w3/w3-forms.el | |
13268 | |
13269 ;;;*** | |
13270 | |
13271 ;;;### (autoloads (w3-use-hotlist) "w3-hot" "w3/w3-hot.el" (12983 26887)) | |
13272 ;;; Generated autoloads from w3/w3-hot.el | |
13273 | |
13274 (autoload 'w3-use-hotlist "w3-hot" "\ | |
13275 Possibly go to a link in your W3/Mosaic hotlist. | |
13276 This is part of the emacs World Wide Web browser. It will prompt for | |
13277 one of the items in your 'hotlist'. A hotlist is a list of often | |
13278 visited or interesting items you have found on the World Wide Web." t nil) | |
13279 | |
13280 ;;;*** | |
13281 | |
13282 ;;;*** | |
13283 | |
13284 ;;;### (autoloads nil "w3-imap" "w3/w3-imap.el" (12983 26886)) | |
13285 ;;; Generated autoloads from w3/w3-imap.el | |
13286 | |
13287 ;;;*** | |
13288 | |
13289 ;;;### (autoloads nil "w3-keyword" "w3/w3-keyword.el" (12983 26887)) | |
13290 ;;; Generated autoloads from w3/w3-keyword.el | |
13291 | |
13292 ;;;*** | |
13293 | |
13294 ;;;### (autoloads nil "w3-latex" "w3/w3-latex.el" (12983 26891)) | |
13295 ;;; Generated autoloads from w3/w3-latex.el | |
13296 | |
13297 ;;;*** | |
13298 | |
13299 ;;;### (autoloads nil "w3-menu" "w3/w3-menu.el" (12983 26889)) | |
13300 ;;; Generated autoloads from w3/w3-menu.el | |
13301 | |
13302 ;;;*** | |
13303 | |
13304 ;;;### (autoloads nil "w3-mouse" "w3/w3-mouse.el" (12983 26890)) | |
13305 ;;; Generated autoloads from w3/w3-mouse.el | |
13306 | |
13307 ;;;*** | |
13308 | |
13309 ;;;### (autoloads nil "w3-mule" "w3/w3-mule.el" (12983 26885)) | |
13310 ;;; Generated autoloads from w3/w3-mule.el | |
13311 | |
13312 ;;;*** | |
13313 | |
13314 ;;;### (autoloads nil "w3-parse" "w3/w3-parse.el" (12983 26887)) | |
13315 ;;; Generated autoloads from w3/w3-parse.el | |
13316 | |
13317 ;;;*** | |
13318 | |
13319 ;;;### (autoloads nil "w3-prefs" "w3/w3-prefs.el" (12983 26892)) | |
13320 ;;; Generated autoloads from w3/w3-prefs.el | |
13321 | |
13322 ;;;*** | |
13323 | |
13324 ;;;### (autoloads nil "w3-print" "w3/w3-print.el" (12983 26888)) | |
13325 ;;; Generated autoloads from w3/w3-print.el | |
13326 | |
13327 ;;;*** | |
13328 | |
13329 ;;;### (autoloads nil "w3-speak" "w3/w3-speak.el" (12983 26892)) | |
13330 ;;; Generated autoloads from w3/w3-speak.el | |
13331 | |
13332 ;;;*** | |
13333 | |
13334 ;;;### (autoloads nil "w3-style" "w3/w3-style.el" (12983 26890)) | |
13335 ;;; Generated autoloads from w3/w3-style.el | |
13336 | |
13337 ;;;*** | |
13338 | |
13339 ;;;### (autoloads nil "w3-sysdp" "w3/w3-sysdp.el" (12983 26885)) | |
13340 ;;; Generated autoloads from w3/w3-sysdp.el | |
13341 | |
13342 ;;;*** | |
13343 | |
13344 ;;;### (autoloads nil "w3-toolbar" "w3/w3-toolbar.el" (12983 26889)) | |
13345 ;;; Generated autoloads from w3/w3-toolbar.el | |
13346 | |
13347 ;;;*** | |
13348 | |
13349 ;;;### (autoloads nil "w3-vars" "w3/w3-vars.el" (12983 26883)) | |
13350 ;;; Generated autoloads from w3/w3-vars.el | |
13351 | |
13352 ;;;*** | |
13353 | |
13354 ;;;### (autoloads nil "w3-widget" "w3/w3-widget.el" (12983 26891)) | |
13355 ;;; Generated autoloads from w3/w3-widget.el | |
13356 | |
13357 ;;;*** | |
13358 | |
13359 ;;;### (autoloads nil "w3-xem20" "w3/w3-xem20.el" (12983 26892)) | |
13360 ;;; Generated autoloads from w3/w3-xem20.el | |
13361 | |
13362 ;;;*** | |
13363 | |
13364 ;;;### (autoloads nil "w3-xemac" "w3/w3-xemac.el" (12983 26886)) | |
13365 ;;; Generated autoloads from w3/w3-xemac.el | |
13366 | |
13367 ;;;*** | |
13368 | |
13369 ;;;### (autoloads (w3-follow-link w3-follow-link-other-frame w3-do-setup w3 w3-preview-this-buffer w3-batch-fetch w3-follow-url-at-point w3-follow-url-at-point-other-frame w3-maybe-follow-link w3-maybe-follow-link-mouse w3-fetch w3-fetch-other-frame w3-find-file w3-open-local) "w3" "w3/w3.el" (12983 26882)) | |
13370 ;;; Generated autoloads from w3/w3.el | |
13371 | |
13372 (autoload 'w3-open-local "w3" "\ | |
13373 Find a local file, and interpret it as a hypertext document. | |
13374 It will prompt for an existing file or directory, and retrieve it as a | |
13375 hypertext document. If it is a directory, and url-use-hypertext-dired | |
13376 is non-nil, then an HTML directory listing is created on the fly. | |
13377 Otherwise, dired-mode is used to visit the buffer." t nil) | |
13378 | |
13379 (autoload 'w3-find-file "w3" "\ | |
13380 Find a local file, and interpret it as a hypertext document. | |
13381 It will prompt for an existing file or directory, and retrieve it as a | |
13382 hypertext document. If it is a directory, and url-use-hypertext-dired | |
13383 is non-nil, then an HTML directory listing is created on the fly. | |
13384 Otherwise, dired-mode is used to visit the buffer." t nil) | |
13385 | |
13386 (autoload 'w3-fetch-other-frame "w3" "\ | |
13387 Attempt to follow the hypertext reference under point in a new frame. | |
13388 With prefix-arg P, ignore viewers and dump the link straight | |
13389 to disk." t nil) | |
13390 | |
13391 (autoload 'w3-fetch "w3" "\ | |
13392 Retrieve a document over the World Wide Web. | |
13393 The World Wide Web is a global hypertext system started by CERN in | |
13394 Switzerland in 1991. | |
13395 | |
13396 The document should be specified by its fully specified | |
13397 Uniform Resource Locator. The document will be parsed, printed, or | |
13398 passed to an external viewer as appropriate. Variable | |
13399 `mm-mime-info' specifies viewers for particular file types." t nil) | |
13400 | |
13401 (autoload 'w3-maybe-follow-link-mouse "w3" "\ | |
13402 Maybe follow a hypertext link under point. | |
13403 If there is no link under point, this will try using | |
13404 url-get-url-at-point" t nil) | |
13405 | |
13406 (autoload 'w3-maybe-follow-link "w3" "\ | |
13407 Maybe follow a hypertext link under point. | |
13408 If there is no link under point, this will try using | |
13409 url-get-url-at-point" t nil) | |
13410 | |
13411 (autoload 'w3-follow-url-at-point-other-frame "w3" "\ | |
13412 Follow the URL under PT, defaults to link under (point)" t nil) | |
13413 | |
13414 (autoload 'w3-follow-url-at-point "w3" "\ | |
13415 Follow the URL under PT, defaults to link under (point)" t nil) | |
13416 | |
13417 (autoload 'w3-batch-fetch "w3" "\ | |
13418 Fetch all the URLs on the command line and save them to files in | |
13419 the current directory. The first argument after the -f w3-batch-fetch | |
13420 on the command line should be a string specifying how to save the | |
13421 information retrieved. If it is \"html\", then the page will be | |
13422 unformatted when it is written to disk. If it is \"text\", then the | |
13423 page will be formatted before it is written to disk. If it is | |
13424 \"binary\" it will not mess with the file extensions, and just save | |
13425 the data in raw binary format. If none of those, the default is | |
13426 \"text\", and the first argument is treated as a normal URL." nil nil) | |
13427 | |
13428 (autoload 'w3-preview-this-buffer "w3" "\ | |
13429 See what this buffer will look like when its formatted as HTML. | |
13430 HTML is the HyperText Markup Language used by the World Wide Web to | |
13431 specify formatting for text. More information on HTML can be found at | |
13432 ftp.w3.org:/pub/www/doc." t nil) | |
13433 | |
13434 (autoload 'w3 "w3" "\ | |
13435 Retrieve the default World Wide Web home page. | |
13436 The World Wide Web is a global hypertext system started by CERN in | |
13437 Switzerland in 1991. | |
13438 | |
13439 The home page is specified by the variable w3-default-homepage. The | |
13440 document should be specified by its fully specified Uniform Resource | |
13441 Locator. The document will be parsed as HTML (if appropriate) and | |
13442 displayed in a new buffer." t nil) | |
13443 | |
13444 (autoload 'w3-do-setup "w3" "\ | |
13445 Do setup - this is to avoid conflict with user settings when W3 is | |
13446 dumped with emacs." nil nil) | |
13447 | |
13448 (autoload 'w3-follow-link-other-frame "w3" "\ | |
13449 Attempt to follow the hypertext reference under point in a new frame. | |
13450 With prefix-arg P, ignore viewers and dump the link straight | |
13451 to disk." nil nil) | |
13452 | |
13453 (autoload 'w3-follow-link "w3" "\ | |
13454 Attempt to follow the hypertext reference under point. | |
13455 With prefix-arg P, ignore viewers and dump the link straight | |
13456 to disk." t nil) | |
13457 | |
13458 ;;;*** | |
13459 | |
13460 ;;;*** | |
13461 | |
13462 ;;;### (autoloads nil "widget-edit" "w3/widget-edit.el" (12983 26890)) | |
13463 ;;; Generated autoloads from w3/widget-edit.el | |
13464 | |
13465 ;;;*** | |
13466 | |
13467 ;;;### (autoloads nil "widget" "w3/widget.el" (12983 26133)) | |
13468 ;;; Generated autoloads from w3/widget.el | |
13469 | |
13470 ;;;*** | |
13471 | |
13472 ;;;### (autoloads nil "x-compose" "x11/x-compose.el" (12983 26871)) | |
13473 ;;; Generated autoloads from x11/x-compose.el | |
13474 | |
13475 ;;;*** | |
13476 | |
13477 ;;;### (autoloads nil "x-faces" "x11/x-faces.el" (12983 26108)) | |
13478 ;;; Generated autoloads from x11/x-faces.el | |
13479 | |
13480 ;;;*** | |
13481 | |
13482 ;;;*** | |
13483 | |
13484 ;;;### (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" (12996 41586)) | |
13485 ;;; Generated autoloads from x11/x-font-menu.el | |
13486 | |
13487 (defvar font-menu-ignore-scaled-fonts t "\ | |
13488 *If non-nil, then the font menu will try to show only bitmap fonts.") | |
13489 | |
13490 (defvar font-menu-this-frame-only-p nil "\ | |
13491 *If non-nil, then changing the default font from the font menu will only | |
13492 affect one frame instead of all frames.") | |
13493 | |
13494 (fset 'install-font-menus 'reset-device-font-menus) | |
13495 | |
13496 (autoload 'reset-device-font-menus "x-font-menu" "\ | |
13497 Generates the `Font', `Size', and `Weight' submenus for the Options menu. | |
13498 This is run the first time that a font-menu is needed for each device. | |
13499 If you don't like the lazy invocation of this function, you can add it to | |
13500 `create-device-hook' and that will make the font menus respond more quickly | |
13501 when they are selected for the first time. If you add fonts to your system, | |
13502 or if you change your font path, you can call this to re-initialize the menus." nil nil) | |
13503 | |
13504 (autoload 'font-menu-family-constructor "x-font-menu" nil nil nil) | |
13505 | |
13506 (autoload 'font-menu-size-constructor "x-font-menu" nil nil nil) | |
13507 | |
13508 (autoload 'font-menu-weight-constructor "x-font-menu" nil nil nil) | |
13509 | |
13510 ;;;*** | |
13511 | |
13512 ;;;*** | |
13513 | |
13514 ;;;### (autoloads nil "x-init" "x11/x-init.el" (12983 27374)) | |
13515 ;;; Generated autoloads from x11/x-init.el | |
13516 | |
13517 ;;;*** | |
13518 | |
13519 ;;;*** | |
13520 | |
13521 ;;;*** | |
13522 | |
13523 ;;;*** | |
13524 | |
13525 ;;;### (autoloads nil "x-iso8859-1" "x11/x-iso8859-1.el" (12983 26108)) | |
13526 ;;; Generated autoloads from x11/x-iso8859-1.el | |
13527 | |
13528 ;;;*** | |
13529 | |
13530 ;;;*** | |
13531 | |
13532 ;;;### (autoloads nil "x-menubar" "x11/x-menubar.el" (12997 29205)) | |
13533 ;;; Generated autoloads from x11/x-menubar.el | |
13534 | |
13535 ;;;### (autoloads nil "x-misc" "x11/x-misc.el" (12983 26110)) | |
13536 ;;; Generated autoloads from x11/x-misc.el | |
13537 | |
13538 ;;;*** | |
13539 | |
13540 ;;;### (autoloads nil "x-mouse" "x11/x-mouse.el" (12983 26109)) | |
13541 ;;; Generated autoloads from x11/x-mouse.el | |
13542 | |
13543 ;;;*** | |
13544 | |
13545 ;;;### (autoloads nil "x-scrollbar" "x11/x-scrollbar.el" (12983 26110)) | |
13546 ;;; Generated autoloads from x11/x-scrollbar.el | |
13547 | |
13548 ;;;*** | |
13549 | |
13550 ;;;### (autoloads nil "x-select" "x11/x-select.el" (12983 26107)) | |
13551 ;;; Generated autoloads from x11/x-select.el | |
13552 | |
13553 ;;;### (autoloads nil "x-toolbar" "x11/x-toolbar.el" (12714 11727)) | |
13554 ;;; Generated autoloads from x11/x-toolbar.el | |
13555 | |
13556 ;;;### (autoloads nil "x-win-sun" "x11/x-win-sun.el" (12690 2180)) | |
13557 ;;; Generated autoloads from x11/x-win-sun.el | |
13558 | |
13559 ;;;### (autoloads nil "x-win-xfree86" "x11/x-win-xfree86.el" (12639 8662)) | |
13560 ;;; Generated autoloads from x11/x-win-xfree86.el | |
13561 | |
13562 ;;; Generated autoloads from x11/x-win-sun.el | |
13563 | |
13564 ;;; Don't make backup versions of this file - most of it is generated | |
13565 ;;; automatically by autoload.el, and what isn't changes rarely. | |
13566 ;;; Local Variables: | 317 ;;; Local Variables: |
13567 ;;; version-control: never | |
13568 ;;; no-byte-compile: t | 318 ;;; no-byte-compile: t |
13569 ;;; no-update-autoloads: t | 319 ;;; no-update-autoloads: t |
13570 ;;; End: | 320 ;;; End: |
13571 ;;; loaddefs.el ends here | 321 ;;; loaddefs.el ends here |