comparison lisp/prim/loaddefs.el @ 70:131b0175ea99 r20-0b30

Import from CVS: tag r20-0b30
author cvs
date Mon, 13 Aug 2007 09:02:59 +0200
parents bcdc7deadc19
children b9518feda344
comparison
equal deleted inserted replaced
69:804d1389bcd6 70:131b0175ea99
89 ".dvi" ".toc" ".log" ".aux" ".a" ".ln" 89 ".dvi" ".toc" ".log" ".aux" ".a" ".ln"
90 ".lof" ".blg" ".bbl" ".glo" ".idx" ".lot" ".fmt" 90 ".lof" ".blg" ".bbl" ".glo" ".idx" ".lot" ".fmt"
91 ".diff" ".oi")))) 91 ".diff" ".oi"))))
92 92
93 (make-variable-buffer-local 'indent-tabs-mode) 93 (make-variable-buffer-local 'indent-tabs-mode)
94
95 94
96 ;;; This code also was not generated by autoload.el, because VM goes out 95 ;;; This code also was not generated by autoload.el, because VM goes out
97 ;;; of its way to be perverse. 96 ;;; of its way to be perverse.
98 97
99 (autoload 'vm "vm" 98 (autoload 'vm "vm"
307 "\ 306 "\
308 Send a mail message from within View Mail, or from without." 307 Send a mail message from within View Mail, or from without."
309 t) 308 t)
310 309
311 310
312 ;;; Load in generated autoloads (made by autoload.el). 311
313 (condition-case nil 312 ;;; Generated autoloads follow (made by autoload.el).
314 (load "auto-autoloads") 313
315 (file-error nil)) 314 ;;; To sort them, execute the following after narrowing
316 315 ;;; to a region starting just after the following formfeed (control-l)
316 ;;; and ending just after the last formfeed in the file.
317
318 ;;;(sort-regexp-fields nil "\n*.*\n.*from \\(.*\\)[^ ]* " "\\1"
319 ;;; (point-min) (point-max))
320
321 ;;;***
322
323 ;;;***
324
325 ;;;### (autoloads nil "byte-optimize" "bytecomp/byte-optimize.el" (12823 45185))
326 ;;; Generated autoloads from bytecomp/byte-optimize.el
327
328 ;;;***
329
330 ;;;### (autoloads nil "bytecomp-runtime" "bytecomp/bytecomp-runtime.el" (12823 45186))
331 ;;; Generated autoloads from bytecomp/bytecomp-runtime.el
332
333 ;;;### (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" (12823 45188))
334 ;;; Generated autoloads from bytecomp/bytecomp.el
335
336 (autoload 'byte-force-recompile "bytecomp" "\
337 Recompile every `.el' file in DIRECTORY that already has a `.elc' file.
338 Files in subdirectories of DIRECTORY are processed also." t nil)
339
340 (autoload 'byte-recompile-directory "bytecomp" "\
341 Recompile every `.el' file in DIRECTORY that needs recompilation.
342 This is if a `.elc' file exists but is older than the `.el' file.
343 Files in subdirectories of DIRECTORY are processed also unless argument
344 NORECURSION is non-nil.
345
346 If the `.elc' file does not exist, normally the `.el' file is *not* compiled.
347 But a prefix argument (optional second arg) means ask user,
348 for each such `.el' file, whether to compile it. Prefix argument 0 means
349 don't ask and compile the file anyway.
350
351 A nonzero prefix argument also means ask about each subdirectory.
352
353 If the fourth argument FORCE is non-nil,
354 recompile every `.el' file that already has a `.elc' file." t nil)
355
356 (autoload 'byte-recompile-file "bytecomp" "\
357 Recompile a file of Lisp code named FILENAME if it needs recompilation.
358 This is if the `.elc' file exists but is older than the `.el' file.
359
360 If the `.elc' file does not exist, normally the `.el' file is *not*
361 compiled. But a prefix argument (optional second arg) means ask user
362 whether to compile it. Prefix argument 0 don't ask and recompile anyway." t nil)
363
364 (autoload 'byte-compile-file "bytecomp" "\
365 Compile a file of Lisp code named FILENAME into a file of byte code.
366 The output file's name is made by appending `c' to the end of FILENAME.
367 With prefix arg (noninteractively: 2nd arg), load the file after compiling." t nil)
368
369 (autoload 'compile-defun "bytecomp" "\
370 Compile and evaluate the current top-level form.
371 Print the result in the minibuffer.
372 With argument, insert value in current buffer after the form." t nil)
373
374 (autoload 'byte-compile "bytecomp" "\
375 If FORM is a symbol, byte-compile its function definition.
376 If FORM is a lambda or a macro, byte-compile it as a function." nil nil)
377
378 (autoload 'byte-compile-sexp "bytecomp" "\
379 Compile and return SEXP." nil nil)
380
381 (autoload 'display-call-tree "bytecomp" "\
382 Display a call graph of a specified file.
383 This lists which functions have been called, what functions called
384 them, and what functions they call. The list includes all functions
385 whose definitions have been compiled in this Emacs session, as well as
386 all functions called by those functions.
387
388 The call graph does not include macros, inline functions, or
389 primitives that the byte-code interpreter knows about directly (eq,
390 cons, etc.).
391
392 The call tree also lists those functions which are not known to be called
393 \(that is, to which no calls have been compiled), and which cannot be
394 invoked interactively." t nil)
395
396 (autoload 'batch-byte-compile "bytecomp" "\
397 Run `byte-compile-file' on the files remaining on the command line.
398 Use this from the command line, with `-batch';
399 it won't work in an interactive Emacs.
400 Each file is processed even if an error occurred previously.
401 For example, invoke \"emacs -batch -f batch-byte-compile $emacs/ ~/*.el\"" nil nil)
402
403 (autoload 'batch-byte-recompile-directory-norecurse "bytecomp" "\
404 Same as `batch-byte-recompile-directory' but without recursion." nil nil)
405
406 (autoload 'batch-byte-recompile-directory "bytecomp" "\
407 Runs `byte-recompile-directory' on the dirs remaining on the command line.
408 Must be used only with `-batch', and kills Emacs on completion.
409 For example, invoke `xemacs -batch -f batch-byte-recompile-directory .'." nil nil)
410
411 ;;;***
412
413 ;;;### (autoloads (disassemble) "disass" "bytecomp/disass.el" (12147 26365))
414 ;;; Generated autoloads from bytecomp/disass.el
415
416 (autoload 'disassemble "disass" "\
417 Print disassembled code for OBJECT in (optional) BUFFER.
418 OBJECT can be a symbol defined as a function, or a function itself
419 \(a lambda expression or a compiled-function object).
420 If OBJECT is not already compiled, we compile it, but do not
421 redefine OBJECT if it is a symbol." t nil)
422
423 ;;;***
424
425 ;;;### (autoloads nil "appt" "calendar/appt.el" (12341 149))
426 ;;; Generated autoloads from calendar/appt.el
427
428 ;;;### (autoloads nil "cal-french" "calendar/cal-french.el" (12147 26371))
429 ;;; Generated autoloads from calendar/cal-french.el
430
431 ;;;***
432
433 ;;;### (autoloads nil "cal-mayan" "calendar/cal-mayan.el" (12147 26370))
434 ;;; Generated autoloads from calendar/cal-mayan.el
435
436 ;;;### (autoloads nil "cal-x" "calendar/cal-x.el" (12247 39168))
437 ;;; Generated autoloads from calendar/cal-x.el
438
439 (defvar calendar-setup 'one-frame "\
440 The frame set up of the calendar.
441 The choices are `one-frame' (calendar and diary together in one separate,
442 dediciated frame) or `two-frames' (calendar and diary in separate, dedicated
443 frames); with any other value the current frame is used.")
444
445 ;;;***
446
447 ;;;### (autoloads nil "cal-xemacs" "calendar/cal-xemacs.el" (12554 53321))
448 ;;; Generated autoloads from calendar/cal-xemacs.el
449
450 ;;;### (autoloads (list-yahrzeit-dates calendar) "calendar" "calendar/calendar.el" (12823 45189))
451 ;;; Generated autoloads from calendar/calendar.el
452
453 (defvar calendar-week-start-day 0 "\
454 *The day of the week on which a week in the calendar begins.
455 0 means Sunday (default), 1 means Monday, and so on.")
456
457 (defvar calendar-offset 0 "\
458 *The offset of the principal month from the center of the calendar window.
459 0 means the principal month is in the center (default), -1 means on the left,
460 +1 means on the right. Larger (or smaller) values push the principal month off
461 the screen.")
462
463 (defvar view-diary-entries-initially nil "\
464 *Non-nil means display current date's diary entries on entry.
465 The diary is displayed in another window when the calendar is first displayed,
466 if the current date is visible. The number of days of diary entries displayed
467 is governed by the variable `number-of-diary-entries'.")
468
469 (defvar number-of-diary-entries 1 "\
470 *Specifies how many days of diary entries are to be displayed initially.
471 This variable affects the diary display when the command M-x diary is used,
472 or if the value of the variable `view-diary-entries-initially' is t. For
473 example, if the default value 1 is used, then only the current day's diary
474 entries will be displayed. If the value 2 is used, then both the current
475 day's and the next day's entries will be displayed.
476
477 The value can also be a vector such as [0 2 2 2 2 4 1]; this value
478 says to display no diary entries on Sunday, the display the entries
479 for the current date and the day after on Monday through Thursday,
480 display Friday through Monday's entries on Friday, and display only
481 Saturday's entries on Saturday.
482
483 This variable does not affect the diary display with the `d' command
484 from the calendar; in that case, the prefix argument controls the
485 number of days of diary entries displayed.")
486
487 (defvar mark-diary-entries-in-calendar nil "\
488 *Non-nil means mark dates with diary entries, in the calendar window.
489 The marking symbol is specified by the variable `diary-entry-marker'.")
490
491 (defvar view-calendar-holidays-initially nil "\
492 *Non-nil means display holidays for current three month period on entry.
493 The holidays are displayed in another window when the calendar is first
494 displayed.")
495
496 (defvar mark-holidays-in-calendar nil "\
497 *Non-nil means mark dates of holidays in the calendar window.
498 The marking symbol is specified by the variable `calendar-holiday-marker'.")
499
500 (defvar all-hebrew-calendar-holidays nil "\
501 *If nil, show only major holidays from the Hebrew calendar.
502 This means only those Jewish holidays that appear on secular calendars.
503
504 If t, show all the holidays that would appear in a complete Hebrew calendar.")
505
506 (defvar all-christian-calendar-holidays nil "\
507 *If nil, show only major holidays from the Christian calendar.
508 This means only those Christian holidays that appear on secular calendars.
509
510 If t, show all the holidays that would appear in a complete Christian
511 calendar.")
512
513 (defvar all-islamic-calendar-holidays nil "\
514 *If nil, show only major holidays from the Islamic calendar.
515 This means only those Islamic holidays that appear on secular calendars.
516
517 If t, show all the holidays that would appear in a complete Islamic
518 calendar.")
519
520 (defvar calendar-load-hook nil "\
521 *List of functions to be called after the calendar is first loaded.
522 This is the place to add key bindings to `calendar-mode-map'.")
523
524 (defvar initial-calendar-window-hook nil "\
525 *List of functions to be called when the calendar window is first opened.
526 The functions invoked are called after the calendar window is opened, but
527 once opened is never called again. Leaving the calendar with the `q' command
528 and reentering it will cause these functions to be called again.")
529
530 (defvar today-visible-calendar-hook nil "\
531 *List of functions called whenever the current date is visible.
532 This can be used, for example, to replace today's date with asterisks; a
533 function `calendar-star-date' is included for this purpose:
534 (setq today-visible-calendar-hook 'calendar-star-date)
535 It can also be used to mark the current date with `calendar-today-marker';
536 a function is also provided for this:
537 (setq today-visible-calendar-hook 'calendar-mark-today)
538
539 The corresponding variable `today-invisible-calendar-hook' is the list of
540 functions called when the calendar function was called when the current
541 date is not visible in the window.
542
543 Other than the use of the provided functions, the changing of any
544 characters in the calendar buffer by the hooks may cause the failure of the
545 functions that move by days and weeks.")
546
547 (defvar today-invisible-calendar-hook nil "\
548 *List of functions called whenever the current date is not visible.
549
550 The corresponding variable `today-visible-calendar-hook' is the list of
551 functions called when the calendar function was called when the current
552 date is visible in the window.
553
554 Other than the use of the provided functions, the changing of any
555 characters in the calendar buffer by the hooks may cause the failure of the
556 functions that move by days and weeks.")
557
558 (defvar diary-file "~/diary" "\
559 *Name of the file in which one's personal diary of dates is kept.
560
561 The file's entries are lines in any of the forms
562
563 MONTH/DAY
564 MONTH/DAY/YEAR
565 MONTHNAME DAY
566 MONTHNAME DAY, YEAR
567 DAYNAME
568
569 at the beginning of the line; the remainder of the line is the diary entry
570 string for that date. MONTH and DAY are one or two digit numbers, YEAR is
571 a number and may be written in full or abbreviated to the final two digits.
572 If the date does not contain a year, it is generic and applies to any year.
573 DAYNAME entries apply to any date on which is on that day of the week.
574 MONTHNAME and DAYNAME can be spelled in full, abbreviated to three
575 characters (with or without a period), capitalized or not. Any of DAY,
576 MONTH, or MONTHNAME, YEAR can be `*' which matches any day, month, or year,
577 respectively.
578
579 The European style (in which the day precedes the month) can be used
580 instead, if you execute `european-calendar' when in the calendar, or set
581 `european-calendar-style' to t in your .emacs file. The European forms are
582
583 DAY/MONTH
584 DAY/MONTH/YEAR
585 DAY MONTHNAME
586 DAY MONTHNAME YEAR
587 DAYNAME
588
589 To revert to the default American style from the European style, execute
590 `american-calendar' in the calendar.
591
592 A diary entry can be preceded by the character
593 `diary-nonmarking-symbol' (ordinarily `&') to make that entry
594 nonmarking--that is, it will not be marked on dates in the calendar
595 window but will appear in a diary window.
596
597 Multiline diary entries are made by indenting lines after the first with
598 either a TAB or one or more spaces.
599
600 Lines not in one the above formats are ignored. Here are some sample diary
601 entries (in the default American style):
602
603 12/22/1988 Twentieth wedding anniversary!!
604 &1/1. Happy New Year!
605 10/22 Ruth's birthday.
606 21: Payday
607 Tuesday--weekly meeting with grad students at 10am
608 Supowit, Shen, Bitner, and Kapoor to attend.
609 1/13/89 Friday the thirteenth!!
610 &thu 4pm squash game with Lloyd.
611 mar 16 Dad's birthday
612 April 15, 1989 Income tax due.
613 &* 15 time cards due.
614
615 If the first line of a diary entry consists only of the date or day name with
616 no trailing blanks or punctuation, then that line is not displayed in the
617 diary window; only the continuation lines is shown. For example, the
618 single diary entry
619
620 02/11/1989
621 Bill Blattner visits Princeton today
622 2pm Cognitive Studies Committee meeting
623 2:30-5:30 Lizzie at Lawrenceville for `Group Initiative'
624 4:00pm Jamie Tappenden
625 7:30pm Dinner at George and Ed's for Alan Ryan
626 7:30-10:00pm dance at Stewart Country Day School
627
628 will appear in the diary window without the date line at the beginning. This
629 facility allows the diary window to look neater, but can cause confusion if
630 used with more than one day's entries displayed.
631
632 Diary entries can be based on Lisp sexps. For example, the diary entry
633
634 %%(diary-block 11 1 1990 11 10 1990) Vacation
635
636 causes the diary entry \"Vacation\" to appear from November 1 through November
637 10, 1990. Other functions available are `diary-float', `diary-anniversary',
638 `diary-cyclic', `diary-day-of-year', `diary-iso-date', `diary-french-date',
639 `diary-hebrew-date', `diary-islamic-date', `diary-mayan-date',
640 `diary-yahrzeit', `diary-sunrise-sunset', `diary-phases-of-moon',
641 `diary-parasha', `diary-omer', `diary-rosh-hodesh', and
642 `diary-sabbath-candles'. See the documentation for the function
643 `list-sexp-diary-entries' for more details.
644
645 Diary entries based on the Hebrew and/or the Islamic calendar are also
646 possible, but because these are somewhat slow, they are ignored
647 unless you set the `nongregorian-diary-listing-hook' and the
648 `nongregorian-diary-marking-hook' appropriately. See the documentation
649 for these functions for details.
650
651 Diary files can contain directives to include the contents of other files; for
652 details, see the documentation for the variable `list-diary-entries-hook'.")
653
654 (defvar diary-nonmarking-symbol "&" "\
655 *Symbol indicating that a diary entry is not to be marked in the calendar.")
656
657 (defvar hebrew-diary-entry-symbol "H" "\
658 *Symbol indicating a diary entry according to the Hebrew calendar.")
659
660 (defvar islamic-diary-entry-symbol "I" "\
661 *Symbol indicating a diary entry according to the Islamic calendar.")
662
663 (defvar diary-include-string "#include" "\
664 *The string indicating inclusion of another file of diary entries.
665 See the documentation for the function `include-other-diary-files'.")
666
667 (defvar sexp-diary-entry-symbol "%%" "\
668 *The string used to indicate a sexp diary entry in diary-file.
669 See the documentation for the function `list-sexp-diary-entries'.")
670
671 (defvar abbreviated-calendar-year t "\
672 *Interpret a two-digit year DD in a diary entry as either 19DD or 20DD.
673 For the Gregorian calendar; similarly for the Hebrew and Islamic calendars.
674 If this variable is nil, years must be written in full.")
675
676 (defvar european-calendar-style nil "\
677 *Use the European style of dates in the diary and in any displays.
678 If this variable is t, a date 1/2/1990 would be interpreted as February 1,
679 1990. The accepted European date styles are
680
681 DAY/MONTH
682 DAY/MONTH/YEAR
683 DAY MONTHNAME
684 DAY MONTHNAME YEAR
685 DAYNAME
686
687 Names can be capitalized or not, written in full, or abbreviated to three
688 characters with or without a period.")
689
690 (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")) "\
691 *List of pseudo-patterns describing the American patterns of date used.
692 See the documentation of `diary-date-forms' for an explanation.")
693
694 (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")) "\
695 *List of pseudo-patterns describing the European patterns of date used.
696 See the documentation of `diary-date-forms' for an explanation.")
697
698 (defvar european-calendar-display-form '((if dayname (concat dayname ", ")) day " " monthname " " year) "\
699 *Pseudo-pattern governing the way a date appears in the European style.
700 See the documentation of calendar-date-display-form for an explanation.")
701
702 (defvar american-calendar-display-form '((if dayname (concat dayname ", ")) monthname " " day ", " year) "\
703 *Pseudo-pattern governing the way a date appears in the American style.
704 See the documentation of `calendar-date-display-form' for an explanation.")
705
706 (defvar print-diary-entries-hook 'lpr-buffer "\
707 *List of functions called after a temporary diary buffer is prepared.
708 The buffer shows only the diary entries currently visible in the diary
709 buffer. The default just does the printing. Other uses might include, for
710 example, rearranging the lines into order by day and time, saving the buffer
711 instead of deleting it, or changing the function used to do the printing.")
712
713 (defvar list-diary-entries-hook nil "\
714 *List of functions called after diary file is culled for relevant entries.
715 It is to be used for diary entries that are not found in the diary file.
716
717 A function `include-other-diary-files' is provided for use as the value of
718 this hook. This function enables you to use shared diary files together
719 with your own. The files included are specified in the diary file by lines
720 of the form
721
722 #include \"filename\"
723
724 This is recursive; that is, #include directives in files thus included are
725 obeyed. You can change the \"#include\" to some other string by changing
726 the variable `diary-include-string'. When you use `include-other-diary-files'
727 as part of the list-diary-entries-hook, you will probably also want to use the
728 function `mark-included-diary-files' as part of `mark-diary-entries-hook'.
729
730 For example, you could use
731
732 (setq list-diary-entries-hook
733 '(include-other-diary-files sort-diary-entries))
734 (setq diary-display-hook 'fancy-diary-display)
735
736 in your `.emacs' file to cause the fancy diary buffer to be displayed with
737 diary entries from various included files, each day's entries sorted into
738 lexicographic order.")
739
740 (defvar diary-hook nil "\
741 *List of functions called after the display of the diary.
742 Can be used for appointment notification.")
743
744 (defvar diary-display-hook nil "\
745 *List of functions that handle the display of the diary.
746 If nil (the default), `simple-diary-display' is used. Use `ignore' for no
747 diary display.
748
749 Ordinarily, this just displays the diary buffer (with holidays indicated in
750 the mode line), if there are any relevant entries. At the time these
751 functions are called, the variable `diary-entries-list' is a list, in order
752 by date, of all relevant diary entries in the form of ((MONTH DAY YEAR)
753 STRING), where string is the diary entry for the given date. This can be
754 used, for example, a different buffer for display (perhaps combined with
755 holidays), or produce hard copy output.
756
757 A function `fancy-diary-display' is provided as an alternative
758 choice for this hook; this function prepares a special noneditable diary
759 buffer with the relevant diary entries that has neat day-by-day arrangement
760 with headings. The fancy diary buffer will show the holidays unless the
761 variable `holidays-in-diary-buffer' is set to nil. Ordinarily, the fancy
762 diary buffer will not show days for which there are no diary entries, even
763 if that day is a holiday; if you want such days to be shown in the fancy
764 diary buffer, set the variable `diary-list-include-blanks' to t.")
765
766 (defvar nongregorian-diary-listing-hook nil "\
767 *List of functions called for listing diary file and included files.
768 As the files are processed for diary entries, these functions are used to cull
769 relevant entries. You can use either or both of `list-hebrew-diary-entries'
770 and `list-islamic-diary-entries'. The documentation for these functions
771 describes the style of such diary entries.")
772
773 (defvar mark-diary-entries-hook nil "\
774 *List of functions called after marking diary entries in the calendar.
775
776 A function `mark-included-diary-files' is also provided for use as the
777 mark-diary-entries-hook; it enables you to use shared diary files together
778 with your own. The files included are specified in the diary file by lines
779 of the form
780 #include \"filename\"
781 This is recursive; that is, #include directives in files thus included are
782 obeyed. You can change the \"#include\" to some other string by changing the
783 variable `diary-include-string'. When you use `mark-included-diary-files' as
784 part of the mark-diary-entries-hook, you will probably also want to use the
785 function `include-other-diary-files' as part of `list-diary-entries-hook'.")
786
787 (defvar nongregorian-diary-marking-hook nil "\
788 *List of functions called for marking diary file and included files.
789 As the files are processed for diary entries, these functions are used to cull
790 relevant entries. You can use either or both of `mark-hebrew-diary-entries'
791 and `mark-islamic-diary-entries'. The documentation for these functions
792 describes the style of such diary entries.")
793
794 (defvar diary-list-include-blanks nil "\
795 *If nil, do not include days with no diary entry in the list of diary entries.
796 Such days will then not be shown in the fancy diary buffer, even if they
797 are holidays.")
798
799 (defvar holidays-in-diary-buffer t "\
800 *Non-nil means include holidays in the diary display.
801 The holidays appear in the mode line of the diary buffer, or in the
802 fancy diary buffer next to the date. This slows down the diary functions
803 somewhat; setting it to nil makes the diary display faster.")
804
805 (put 'general-holidays 'risky-local-variable t)
806
807 (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")) "\
808 *General holidays. Default value is for the United States.
809 See the documentation for `calendar-holidays' for details.")
810
811 (put 'local-holidays 'risky-local-variable t)
812
813 (defvar local-holidays nil "\
814 *Local holidays.
815 See the documentation for `calendar-holidays' for details.")
816
817 (put 'other-holidays 'risky-local-variable t)
818
819 (defvar other-holidays nil "\
820 *User defined holidays.
821 See the documentation for `calendar-holidays' for details.")
822
823 (put 'hebrew-holidays-1 'risky-local-variable t)
824
825 (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)"))))
826
827 (put 'hebrew-holidays-2 'risky-local-variable t)
828
829 (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"))))
830
831 (put 'hebrew-holidays-3 'risky-local-variable t)
832
833 (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"))))
834
835 (put 'hebrew-holidays-4 'risky-local-variable t)
836
837 (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))))
838
839 (put 'hebrew-holidays 'risky-local-variable t)
840
841 (defvar hebrew-holidays (append hebrew-holidays-1 hebrew-holidays-2 hebrew-holidays-3 hebrew-holidays-4) "\
842 *Jewish holidays.
843 See the documentation for `calendar-holidays' for details.")
844
845 (put 'christian-holidays 'risky-local-variable t)
846
847 (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"))) "\
848 *Christian holidays.
849 See the documentation for `calendar-holidays' for details.")
850
851 (put 'islamic-holidays 'risky-local-variable t)
852
853 (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"))) "\
854 *Islamic holidays.
855 See the documentation for `calendar-holidays' for details.")
856
857 (put 'solar-holidays 'risky-local-variable t)
858
859 (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) "")))) "\
860 *Sun-related holidays.
861 See the documentation for `calendar-holidays' for details.")
862
863 (put 'calendar-holidays 'risky-local-variable t)
864
865 (autoload 'calendar "calendar" "\
866 Display a three-month calendar in another window.
867 The three months appear side by side, with the current month in the middle
868 surrounded by the previous and next months. The cursor is put on today's date.
869
870 If called with an optional prefix argument, prompts for month and year.
871
872 This function is suitable for execution in a .emacs file; appropriate setting
873 of the variable `view-diary-entries-initially' will cause the diary entries for
874 the current date to be displayed in another window. The value of the variable
875 `number-of-diary-entries' controls the number of days of diary entries
876 displayed upon initial display of the calendar.
877
878 An optional prefix argument ARG causes the calendar displayed to be ARG
879 months in the future if ARG is positive or in the past if ARG is negative;
880 in this case the cursor goes on the first day of the month.
881
882 Once in the calendar window, future or past months can be moved into view.
883 Arbitrary months can be displayed, or the calendar can be scrolled forward
884 or backward.
885
886 The cursor can be moved forward or backward by one day, one week, one month,
887 or one year. All of these commands take prefix arguments which, when negative,
888 cause movement in the opposite direction. For convenience, the digit keys
889 and the minus sign are automatically prefixes. The window is replotted as
890 necessary to display the desired date.
891
892 Diary entries can be marked on the calendar or displayed in another window.
893
894 Use M-x describe-mode for details of the key bindings in the calendar window.
895
896 The Gregorian calendar is assumed.
897
898 After loading the calendar, the hooks given by the variable
899 `calendar-load-hook' are run. This is the place to add key bindings to the
900 calendar-mode-map.
901
902 After preparing the calendar window initially, the hooks given by the variable
903 `initial-calendar-window-hook' are run.
904
905 The hooks given by the variable `today-visible-calendar-hook' are run
906 everytime the calendar window gets scrolled, if the current date is visible
907 in the window. If it is not visible, the hooks given by the variable
908 `today-invisible-calendar-hook' are run. Thus, for example, setting
909 `today-visible-calendar-hook' to 'calendar-star-date will cause today's date
910 to be replaced by asterisks to highlight it whenever it is in the window." t nil)
911
912 (autoload 'list-yahrzeit-dates "calendar" "\
913 List Yahrzeit dates for *Gregorian* DEATH-DATE from START-YEAR to END-YEAR.
914 When called interactively from the calendar window, the date of death is taken
915 from the cursor position." t nil)
916
917 ;;;***
918
919 ;;;### (autoloads nil "cal-dst" "calendar/cal-dst.el" (12147 26371))
920 ;;; Generated autoloads from calendar/cal-dst.el
921
922 (put 'calendar-daylight-savings-starts 'risky-local-variable t)
923
924 (put 'calendar-daylight-savings-ends 'risky-local-variable t)
925
926 ;;;***
927
928 ;;;### (autoloads nil "diary-ins" "calendar/diary-ins.el" (12147 26375))
929 ;;; Generated autoloads from calendar/diary-ins.el
930
931 ;;;### (autoloads (diary) "diary-lib" "calendar/diary-lib.el" (12147 26376))
932 ;;; Generated autoloads from calendar/diary-lib.el
933
934 (autoload 'diary "diary-lib" "\
935 Generate the diary window for ARG days starting with the current date.
936 If no argument is provided, the number of days of diary entries is governed
937 by the variable `number-of-diary-entries'. This function is suitable for
938 execution in a `.emacs' file." t nil)
939
940 ;;;***
941
942 ;;;### (autoloads (holidays) "holidays" "calendar/holidays.el" (12247 8260))
943 ;;; Generated autoloads from calendar/holidays.el
944
945 (autoload 'holidays "holidays" "\
946 Display the holidays for last month, this month, and next month.
947 If called with an optional prefix argument, prompts for month and year.
948
949 This function is suitable for execution in a .emacs file." t nil)
950
951 ;;;***
952
953 ;;;### (autoloads (phases-of-moon) "lunar" "calendar/lunar.el" (12147 26373))
954 ;;; Generated autoloads from calendar/lunar.el
955
956 (autoload 'phases-of-moon "lunar" "\
957 Display the quarters of the moon for last month, this month, and next month.
958 If called with an optional prefix argument, prompts for month and year.
959
960 This function is suitable for execution in a .emacs file." t nil)
961
962 ;;;***
963
964 ;;;### (autoloads (solar-equinoxes-solstices sunrise-sunset) "solar" "calendar/solar.el" (12147 26373))
965 ;;; Generated autoloads from calendar/solar.el
966
967 (defvar calendar-time-display-form '(12-hours ":" minutes am-pm (if time-zone " (") time-zone (if time-zone ")")) "\
968 *The pseudo-pattern that governs the way a time of day is formatted.
969
970 A pseudo-pattern is a list of expressions that can involve the keywords
971 `12-hours', `24-hours', and `minutes', all numbers in string form,
972 and `am-pm' and `time-zone', both alphabetic strings.
973
974 For example, the form
975
976 '(24-hours \":\" minutes
977 (if time-zone \" (\") time-zone (if time-zone \")\"))
978
979 would give military-style times like `21:07 (UTC)'.")
980
981 (defvar calendar-latitude nil "\
982 *Latitude of `calendar-location-name' in degrees.
983
984 The value can be either a decimal fraction (one place of accuracy is
985 sufficient), + north, - south, such as 40.7 for New York City, or the value
986 can be a vector [degrees minutes north/south] such as [40 50 north] for New
987 York City.
988
989 This variable should be set in site-local.el.")
990
991 (defvar calendar-longitude nil "\
992 *Longitude of `calendar-location-name' in degrees.
993
994 The value can be either a decimal fraction (one place of accuracy is
995 sufficient), + east, - west, such as -73.9 for New York City, or the value
996 can be a vector [degrees minutes east/west] such as [73 55 west] for New
997 York City.
998
999 This variable should be set in site-local.el.")
1000
1001 (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")))) "\
1002 *Expression evaluating to name of `calendar-longitude', calendar-latitude'.
1003 For example, \"New York City\". Default value is just the latitude, longitude
1004 pair.
1005
1006 This variable should be set in site-local.el.")
1007
1008 (autoload 'sunrise-sunset "solar" "\
1009 Local time of sunrise and sunset for today. Accurate to +/- 2 minutes.
1010 If called with an optional prefix argument, prompt for date.
1011
1012 If called with an optional double prefix argument, prompt for longitude,
1013 latitude, time zone, and date, and always use standard time.
1014
1015 This function is suitable for execution in a .emacs file." t nil)
1016
1017 (autoload 'solar-equinoxes-solstices "solar" "\
1018 Date and time of equinoxes and solstices, if visible in the calendar window.
1019 Requires floating point." nil nil)
1020
1021 ;;;***
1022
1023 ;;;***
1024
1025 ;;;### (autoloads nil "cl-autoload" "cl/cl-autoload.el" (12860 15636))
1026 ;;; Generated autoloads from cl/cl-autoload.el
1027
1028 ;;;***
1029
1030 ;;;### (autoloads nil "cl-compat" "cl/cl-compat.el" (12860 15631))
1031 ;;; Generated autoloads from cl/cl-compat.el
1032
1033 ;;;### (autoloads nil "cl-defs" "cl/cl-defs.el" (12638 48659))
1034 ;;; Generated autoloads from cl/cl-defs.el
1035
1036 ;;;***
1037
1038 ;;;***
1039
1040 ;;;***
1041
1042 ;;;### (autoloads nil "cl-extra" "cl/cl-extra.el" (12860 15632))
1043 ;;; Generated autoloads from cl/cl-extra.el
1044
1045 ;;;***
1046
1047 ;;;### (autoloads nil "cl-macs" "cl/cl-macs.el" (12860 15634))
1048 ;;; Generated autoloads from cl/cl-macs.el
1049
1050 ;;;***
1051
1052 ;;;### (autoloads nil "cl-seq" "cl/cl-seq.el" (12860 15635))
1053 ;;; Generated autoloads from cl/cl-seq.el
1054
1055 ;;;***
1056
1057 ;;;### (autoloads nil "cl" "cl/cl.el" (12860 15636))
1058 ;;; Generated autoloads from cl/cl.el
1059
1060 ;;;### (autoloads nil "background" "comint/background.el" (12675 57052))
1061 ;;; Generated autoloads from comint/background.el
1062
1063 ;;;***
1064
1065 ;;;### (autoloads (comint-dynamic-list-completions comint-dynamic-complete comint-run make-comint) "comint" "comint/comint.el" (12860 15481))
1066 ;;; Generated autoloads from comint/comint.el
1067
1068 (autoload 'make-comint "comint" "\
1069 Make a comint process NAME in a buffer, running PROGRAM.
1070 The name of the buffer is made by surrounding NAME with `*'s.
1071 PROGRAM should be either a string denoting an executable program to create
1072 via `start-process', or a cons pair of the form (HOST . SERVICE) denoting a TCP
1073 connection to be opened via `open-network-stream'. If there is already a
1074 running process in that buffer, it is not restarted. Optional third arg
1075 STARTFILE is the name of a file to send the contents of to the process.
1076
1077 If PROGRAM is a string, any more args are arguments to PROGRAM." nil nil)
1078
1079 (autoload 'comint-run "comint" "\
1080 Run PROGRAM in a comint buffer and switch to it.
1081 The buffer name is made by surrounding the file name of PROGRAM with `*'s.
1082 The file name is used to make a symbol name, such as `comint-sh-hook', and any
1083 hooks on this symbol are run in the buffer.
1084 See `make-comint' and `comint-exec'." t nil)
1085
1086 (autoload 'comint-dynamic-complete "comint" "\
1087 Dynamically perform completion at point.
1088 Calls the functions in `comint-dynamic-complete-functions' to perform
1089 completion until a function returns non-nil, at which point completion is
1090 assumed to have occurred." t nil)
1091
1092 (autoload 'comint-dynamic-list-completions "comint" "\
1093 List in help buffer sorted COMPLETIONS.
1094 Typing SPC flushes the help buffer." nil nil)
1095
1096 ;;;***
1097
1098 ;;;### (autoloads nil "dbx" "comint/dbx.el" (12178 29434))
1099 ;;; Generated autoloads from comint/dbx.el
1100
1101 ;;;### (autoloads (gdb) "gdb" "comint/gdb.el" (12727 30106))
1102 ;;; Generated autoloads from comint/gdb.el
1103
1104 (defvar gdb-command-name "gdb" "\
1105 Pathname for executing gdb.")
1106
1107 (autoload 'gdb "gdb" "\
1108 Run gdb on program FILE in buffer *gdb-FILE*.
1109 The directory containing FILE becomes the initial working directory
1110 and source-file directory for GDB. If you wish to change this, use
1111 the GDB commands `cd DIR' and `directory'." t nil)
1112
1113 ;;;***
1114
1115 ;;;### (autoloads (gdbsrc) "gdbsrc" "comint/gdbsrc.el" (12743 11618))
1116 ;;; Generated autoloads from comint/gdbsrc.el
1117
1118 (autoload 'gdbsrc "gdbsrc" "\
1119 Activates a gdb session with gdbsrc-mode turned on. A numeric prefix
1120 argument can be used to specify a running process to attach, and a non-numeric
1121 prefix argument will cause you to be prompted for a core file to debug." t nil)
1122
1123 ;;;***
1124
1125 ;;;### (autoloads (perldb xdb dbx sdb) "gud" "comint/gud.el" (12823 45194))
1126 ;;; Generated autoloads from comint/gud.el
1127
1128 (autoload 'sdb "gud" "\
1129 Run sdb on program FILE in buffer *gud-FILE*.
1130 The directory containing FILE becomes the initial working directory
1131 and source-file directory for your debugger." t nil)
1132
1133 (autoload 'dbx "gud" "\
1134 Run dbx on program FILE in buffer *gud-FILE*.
1135 The directory containing FILE becomes the initial working directory
1136 and source-file directory for your debugger." t nil)
1137
1138 (autoload 'xdb "gud" "\
1139 Run xdb on program FILE in buffer *gud-FILE*.
1140 The directory containing FILE becomes the initial working directory
1141 and source-file directory for your debugger.
1142
1143 You can set the variable 'gud-xdb-directories' to a list of program source
1144 directories if your program contains sources from more than one directory." t nil)
1145
1146 (autoload 'perldb "gud" "\
1147 Run perldb on program FILE in buffer *gud-FILE*.
1148 The directory containing FILE becomes the initial working directory
1149 and source-file directory for your debugger." t nil)
1150
1151 ;;;***
1152
1153 ;;;### (autoloads nil "history" "comint/history.el" (12178 29436))
1154 ;;; Generated autoloads from comint/history.el
1155
1156 ;;;### (autoloads nil "inf-lisp" "comint/inf-lisp.el" (12546 37582))
1157 ;;; Generated autoloads from comint/inf-lisp.el
1158
1159 (add-hook 'same-window-buffer-names "*inferior-lisp*")
1160
1161 ;;;***
1162
1163 ;;;***
1164
1165 ;;;### (autoloads nil "kermit" "comint/kermit.el" (12823 45193))
1166 ;;; Generated autoloads from comint/kermit.el
1167
1168 ;;;### (autoloads (rlogin) "rlogin" "comint/rlogin.el" (12282 38441))
1169 ;;; Generated autoloads from comint/rlogin.el
1170
1171 (add-hook 'same-window-regexps "^\\*rlogin-.*\\*\\(\\|<[0-9]+>\\)")
1172
1173 (autoload 'rlogin "rlogin" "\
1174 Open a network login connection to HOST via the `rlogin' program.
1175 Input is sent line-at-a-time to the remote connection.
1176
1177 Communication with the remote host is recorded in a buffer `*rlogin-HOST*'
1178 \(or `*rlogin-USER@HOST*' if the remote username differs).
1179 If a prefix argument is given and the buffer `*rlogin-HOST*' already exists,
1180 a new buffer with a different connection will be made.
1181
1182 When called from a program, if the optional second argument is a string or
1183 buffer, it names the buffer to use.
1184
1185 The variable `rlogin-program' contains the name of the actual program to
1186 run. It can be a relative or absolute path.
1187
1188 The variable `rlogin-explicit-args' is a list of arguments to give to
1189 the rlogin when starting. They are added after any arguments given in
1190 INPUT-ARGS.
1191
1192 If the default value of `rlogin-directory-tracking-mode' is t, then the
1193 default directory in that buffer is set to a remote (FTP) file name to
1194 access your home directory on the remote machine. Occasionally this causes
1195 an error, if you cannot access the home directory on that machine. This
1196 error is harmless as long as you don't try to use that default directory.
1197
1198 If `rlogin-directory-tracking-mode' is neither t nor nil, then the default
1199 directory is initially set up to your (local) home directory.
1200 This is useful if the remote machine and your local machine
1201 share the same files via NFS. This is the default.
1202
1203 If you wish to change directory tracking styles during a session, use the
1204 function `rlogin-directory-tracking-mode' rather than simply setting the
1205 variable." t nil)
1206
1207 ;;;***
1208
1209 ;;;### (autoloads (shell) "shell" "comint/shell.el" (12554 53325))
1210 ;;; Generated autoloads from comint/shell.el
1211
1212 (defvar shell-prompt-pattern (purecopy "^[^#$%>\n]*[#$%>] *") "\
1213 Regexp to match prompts in the inferior shell.
1214 Defaults to \"^[^#$%>\\n]*[#$%>] *\", which works pretty well.
1215 This variable is used to initialise `comint-prompt-regexp' in the
1216 shell buffer.
1217
1218 The pattern should probably not match more than one line. If it does,
1219 shell-mode may become confused trying to distinguish prompt from input
1220 on lines which don't start with a prompt.
1221
1222 This is a fine thing to set in your `.emacs' file.")
1223
1224 (autoload 'shell "shell" "\
1225 Run an inferior shell, with I/O through buffer *shell*.
1226 If buffer exists but shell process is not running, make new shell.
1227 If buffer exists and shell process is running,
1228 just switch to buffer `*shell*'.
1229 Program used comes from variable `explicit-shell-file-name',
1230 or (if that is nil) from the ESHELL environment variable,
1231 or else from SHELL if there is no ESHELL.
1232 If a file `~/.emacs_SHELLNAME' exists, it is given as initial input
1233 (Note that this may lose due to a timing error if the shell
1234 discards input when it starts up.)
1235 The buffer is put in Shell mode, giving commands for sending input
1236 and controlling the subjobs of the shell. See `shell-mode'.
1237 See also the variable `shell-prompt-pattern'.
1238
1239 The shell file name (sans directories) is used to make a symbol name
1240 such as `explicit-csh-args'. If that symbol is a variable,
1241 its value is used as a list of arguments when invoking the shell.
1242 Otherwise, one argument `-i' is passed to the shell.
1243
1244 \(Type \\[describe-mode] in the shell buffer for a list of commands.)" t nil)
1245
1246 (add-hook 'same-window-buffer-names "*shell*")
1247
1248 ;;;***
1249
1250 ;;;### (autoloads (rsh telnet) "telnet" "comint/telnet.el" (12546 37583))
1251 ;;; Generated autoloads from comint/telnet.el
1252
1253 (add-hook 'same-window-regexps "\\*telnet-.*\\*\\(\\|<[0-9]+>\\)")
1254
1255 (autoload 'telnet "telnet" "\
1256 Open a network login connection to host named HOST (a string).
1257 With a prefix argument, prompts for the port name or number as well.
1258 Communication with HOST is recorded in a buffer `*HOST-telnet*'.
1259 Normally input is edited in Emacs and sent a line at a time.
1260 See also `\\[rsh]'." t nil)
1261
1262 (add-hook 'same-window-regexps "\\*rsh-[^-]*\\*\\(\\|<[0-9]*>\\)")
1263
1264 (autoload 'rsh "telnet" "\
1265 Open a network login connection to host named HOST (a string).
1266 Communication with HOST is recorded in a buffer `*rsh-HOST*'.
1267 Normally input is edited in Emacs and sent a line at a time.
1268 See also `\\[telnet]'." t nil)
1269
1270 ;;;***
1271
1272 ;;;### (autoloads (ange-ftp-hook-function) "ange-ftp" "dired/ange-ftp.el" (12823 45197))
1273 ;;; Generated autoloads from dired/ange-ftp.el
1274
1275 (defvar ange-ftp-path-format '("^/\\(\\([^@/:]*\\)@\\)?\\([^@/:]*\\):\\(.*\\)" 3 2 4) "\
1276 *Format of a fully expanded remote pathname. This is a cons
1277 \(REGEXP . (HOST USER PATH)), where REGEXP is a regular expression matching
1278 the full remote pathname, and HOST, USER, and PATH are the numbers of
1279 parenthesized expressions in REGEXP for the components (in that order).")
1280
1281 (autoload 'ange-ftp-hook-function "ange-ftp" nil nil nil)
1282
1283 (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)))
1284
1285 ;;;***
1286
1287 ;;;### (autoloads nil "dired-cd" "dired/dired-cd.el" (11903 15627))
1288 ;;; Generated autoloads from dired/dired-cd.el
1289
1290 ;;;***
1291
1292 ;;;### (autoloads (dired-make-permissions-interactive) "dired-chmod" "dired/dired-chmod.el" (12860 15485))
1293 ;;; Generated autoloads from dired/dired-chmod.el
1294
1295 (autoload 'dired-make-permissions-interactive "dired-chmod" nil nil nil)
1296
1297 ;;;***
1298
1299 ;;;***
1300
1301 ;;;### (autoloads nil "dired-guess" "dired/dired-guess.el" (11903 15633))
1302 ;;; Generated autoloads from dired/dired-guess.el
1303
1304 ;;;### (autoloads nil "dired-link" "dired/dired-link.el" (12294 55504))
1305 ;;; Generated autoloads from dired/dired-link.el
1306
1307 ;;;### (autoloads nil "dired-lisp" "dired/dired-lisp.el" (11903 15631))
1308 ;;; Generated autoloads from dired/dired-lisp.el
1309
1310 ;;;***
1311
1312 ;;;### (autoloads nil "dired-nstd" "dired/dired-nstd.el" (11903 15632))
1313 ;;; Generated autoloads from dired/dired-nstd.el
1314
1315 ;;;***
1316
1317 ;;;### (autoloads nil "dired-trns" "dired/dired-trns.el" (11903 15635))
1318 ;;; Generated autoloads from dired/dired-trns.el
1319
1320 ;;;***
1321
1322 ;;;### (autoloads nil "dired-vms" "dired/dired-vms.el" (12147 26387))
1323 ;;; Generated autoloads from dired/dired-vms.el
1324
1325 ;;;***
1326
1327 ;;;### (autoloads nil "dired-xemacs-highlight" "dired/dired-xemacs-highlight.el" (12745 48557))
1328 ;;; Generated autoloads from dired/dired-xemacs-highlight.el
1329
1330 ;;;### (autoloads nil "dired-xemacs-menu" "dired/dired-xemacs-menu.el" (12322 9364))
1331 ;;; Generated autoloads from dired/dired-xemacs-menu.el
1332
1333 ;;;### (autoloads (dired-noselect dired-other-frame dired-other-window dired) "dired" "dired/dired.el" (12958 21743))
1334 ;;; Generated autoloads from dired/dired.el
1335
1336 (defvar dired-listing-switches (purecopy "-al") "\
1337 *Switches passed to ls for dired. MUST contain the `l' option.
1338 Can contain even `F', `b', `i' and `s'.")
1339
1340 (defvar dired-chown-program (purecopy (if (memq system-type '(dgux-unix hpux usg-unix-v silicon-graphics-unix irix)) "chown" "/etc/chown")) "\
1341 *Name of chown command (usully `chown' or `/etc/chown').")
1342
1343 (defvar dired-ls-program (purecopy "ls") "\
1344 *Absolute or relative name of the ls program used by dired.")
1345
1346 (defvar dired-ls-F-marks-symlinks t "\
1347 *Informs dired about how ls -lF marks symbolic links.
1348 Set this to t if `dired-ls-program' with -lF marks the symbolic link
1349 itself with a trailing @ (usually the case under Ultrix).
1350
1351 Example: if `ln -s foo bar; ls -F bar' gives `bar -> foo', set it to
1352 nil, if it gives `bar@ -> foo', set it to t.
1353
1354 Dired checks if there is really a @ appended. Thus, if you have a
1355 marking ls program on one host and a non-marking on another host, and
1356 don't care about symbolic links which really end in a @, you can
1357 always set this variable to t.")
1358
1359 (defvar dired-trivial-filenames (purecopy "^\\.\\.?$\\|^#") "\
1360 *Regexp of files to skip when moving point to the first file of a new directory listing.
1361 Nil means move to the subdir line, t means move to first file.")
1362
1363 (defvar dired-keep-marker-move t "\
1364 If t, moved marked files are marked if their originals were.
1365 If a character, those files (marked or not) are marked with that character.")
1366
1367 (defvar dired-keep-marker-copy ?C "\
1368 If t, copied files are marked if their source files were.
1369 If a character, those files are always marked with that character.")
1370
1371 (defvar dired-keep-marker-hardlink ?H "\
1372 If t, hard-linked files are marked if the linked-to files were.
1373 If a character, those files are always marked with that character.")
1374
1375 (defvar dired-keep-marker-symlink ?Y "\
1376 If t, symlinked marked files are marked if the linked-to files were.
1377 If a character, those files are always marked with that character.")
1378
1379 (defvar dired-dwim-target nil "\
1380 *If non-nil, dired tries to guess a default target directory:
1381 If there is a dired buffer displayed in the next window, use
1382 its current subdir, instead of the current subdir of this dired
1383 buffer.
1384
1385 The target is used in the prompt for file copy, move etc.")
1386
1387 (defvar dired-copy-preserve-time nil "\
1388 *If non-nil, Dired preserves the last-modified time in a file copy.
1389 \(This works on only some systems.)\\<dired-mode-map>
1390 Use `\\[dired-do-copy]' with a zero prefix argument to toggle its value.")
1391
1392 (define-key ctl-x-map "d" 'dired)
1393
1394 (autoload 'dired "dired" "\
1395 \"Edit\" directory DIRNAME--delete, rename, print, etc. some files in it.
1396 With an optional prefix argument you can specify the ls SWITCHES that are used.
1397 Dired displays a list of files in DIRNAME (which may also have
1398 shell wildcards appended to select certain files).
1399 You can move around in it with the usual commands.
1400 You can flag files for deletion with \\<dired-mode-map>\\[dired-flag-file-deleted] and then delete them by
1401 typing \\[dired-do-deletions].
1402 Type \\[describe-mode] after entering dired for more info.
1403
1404 If DIRNAME is already in a dired buffer, that buffer is used without refresh." t nil)
1405
1406 (define-key ctl-x-4-map "d" 'dired-other-window)
1407
1408 (autoload 'dired-other-window "dired" "\
1409 \"Edit\" directory DIRNAME. Like `dired' but selects in another window." t nil)
1410
1411 (define-key ctl-x-5-map "d" 'dired-other-frame)
1412
1413 (autoload 'dired-other-frame "dired" "\
1414 \"Edit\" directory DIRNAME. Like `dired' but makes a new frame." t nil)
1415
1416 (autoload 'dired-noselect "dired" "\
1417 Like `dired' but returns the dired buffer as value, does not select it." nil nil)
1418
1419 ;;;***
1420
1421 ;;;### (autoloads (dired-cwd-make-magic) "dired-cwd" "dired/dired-cwd.el" (11903 15632))
1422 ;;; Generated autoloads from dired/dired-cwd.el
1423
1424 (autoload 'dired-cwd-make-magic "dired-cwd" "\
1425 Modify COMMAND so that it's working directory is the current dired directory.
1426 This works by binding `default-directory' to `(default-directory)'s value.
1427 See also function `default-directory'." t nil)
1428
1429 ;;;***
1430
1431 ;;;### (autoloads (dired-do-rename-list dired-do-rename-numeric) "dired-num" "dired/dired-num.el" (12013 11569))
1432 ;;; Generated autoloads from dired/dired-num.el
1433
1434 (autoload 'dired-do-rename-numeric "dired-num" "\
1435 Rename all marked (or next ARG) files using numbers.
1436 You are prompted for a format string, e.g \"part_%d_of_8\", and a starting
1437 number, e.g. 1. If there are 8 marked files, this example will rename them to
1438
1439 part_1_of_8
1440 part_2_of_8
1441 ...
1442 part_8_of_8" t nil)
1443
1444 (autoload 'dired-do-rename-list "dired-num" "\
1445 Rename all marked (or next ARG) files using elements from LIST.
1446 You are prompted for a format string, e.g \"x_%s\", and the list,
1447 e.g. '(foo bar zod). This example will rename the marked files to
1448
1449 x_foo
1450 x_bar
1451 x_zod
1452
1453 It is an error if LIST has not as many elements as there are files." t nil)
1454
1455 ;;;***
1456
1457 ;;;### (autoloads (dired-rcs-mark-rcs-files dired-rcs-mark-rcs-locked-files) "dired-rcs" "dired/dired-rcs.el" (12013 11570))
1458 ;;; Generated autoloads from dired/dired-rcs.el
1459
1460 (autoload 'dired-rcs-mark-rcs-locked-files "dired-rcs" "\
1461 Mark all files that are under RCS control and RCS-locked.
1462 With prefix argument, unflag all those files.
1463 Mentions RCS files for which a working file was not found in this buffer.
1464 Type \\[dired-why] to see them again." t nil)
1465
1466 (autoload 'dired-rcs-mark-rcs-files "dired-rcs" "\
1467 Mark all files that are under RCS control.
1468 With prefix argument, unflag all those files.
1469 Mentions RCS files for which a working file was not found in this buffer.
1470 Type \\[dired-why] to see them again." t nil)
1471
1472 ;;;***
1473
1474 ;;;### (autoloads (dired-extra-startup) "dired-x" "dired/dired-x.el" (12823 45197))
1475 ;;; Generated autoloads from dired/dired-x.el
1476
1477 (autoload 'dired-extra-startup "dired-x" "\
1478 Automatically put on dired-mode-hook to get extra dired features:
1479 \\<dired-mode-map>
1480 \\[dired-vm] -- VM on folder
1481 \\[dired-rmail] -- Rmail on folder
1482 \\[dired-do-insert-subdir] -- insert all marked subdirs
1483 \\[dired-do-find-file] -- visit all marked files simultaneously
1484 \\[dired-set-marker-char], \\[dired-restore-marker-char] -- change and display dired-marker-char dynamically.
1485 \\[dired-omit-toggle] -- toggle omitting of files
1486 \\[dired-mark-sexp] -- mark by lisp expression
1487 \\[dired-do-unmark] -- replace existing marker with another.
1488 \\[dired-mark-rcs-files] -- mark all RCS controlled files
1489 \\[dired-mark-files-compilation-buffer] -- mark compilation files
1490 \\[dired-copy-filename-as-kill] -- copy the file or subdir names into the kill ring.
1491 You can feed it to other commands using \\[yank].
1492
1493 For more features, see variables
1494
1495 dired-omit-files
1496 dired-omit-extenstions
1497 dired-dangerous-shell-command
1498 dired-mark-keys
1499 dired-local-variables-file
1500 dired-find-subdir
1501 dired-guess-have-gnutar
1502 dired-auto-shell-command-alist
1503
1504 See also functions
1505
1506 dired-sort-on-size
1507 dired-do-relsymlink
1508 dired-flag-extension
1509 dired-virtual
1510 dired-jump-back
1511 dired-jump-back-other-window
1512 " t nil)
1513
1514 ;;;***
1515
1516 ;;;### (autoloads (find-grep-dired find-name-dired find-dired) "find-dired" "dired/find-dired.el" (12675 57053))
1517 ;;; Generated autoloads from dired/find-dired.el
1518
1519 (defvar find-ls-option (purecopy (if (eq system-type 'berkeley-unix) '("-ls" . "-gilsb") '("-exec ls -ld {} \\;" . "-ld"))) "\
1520 *Description of the option to `find' to produce an `ls -l'-type listing.
1521 This is a cons of two strings (FIND-OPTION . LS-SWITCHES). FIND-OPTION
1522 gives the option (or options) to `find' that produce the desired output.
1523 LS-SWITCHES is a list of `ls' switches to tell dired how to parse the output.")
1524
1525 (defvar find-grep-options (purecopy (if (eq system-type 'berkeley-unix) "-s" "-q")) "\
1526 *Option to grep to be as silent as possible.
1527 On Berkeley systems, this is `-s'; on Posix, and with GNU grep, `-q' does it.
1528 On other systems, the closest you can come is to use `-l'.")
1529
1530 (defvar find-dired-multiple-buffers nil "\
1531 *If non-nil, generates a new buffer for each find")
1532
1533 (autoload 'find-dired "find-dired" "\
1534 Run `find' and go into dired-mode on a buffer of the output.
1535 The command run (after changing into DIR) is
1536
1537 find . \\( ARGS \\) -ls" t nil)
1538
1539 (autoload 'find-name-dired "find-dired" "\
1540 Search DIR recursively for files matching the globbing pattern PATTERN,
1541 and run dired on those files.
1542 PATTERN is a shell wildcard (not an Emacs regexp) and need not be quoted.
1543 The command run (after changing into DIR) is
1544
1545 find . -name 'PATTERN' -ls" t nil)
1546
1547 (autoload 'find-grep-dired "find-dired" "\
1548 Find files in DIR containing a regexp ARG and start Dired on output.
1549 The command run (after changing into DIR) is
1550
1551 find . -type f -exec test -r {} \\; -exec egrep -s ARG {} \\; -ls
1552
1553 Thus ARG can also contain additional grep options." t nil)
1554
1555 ;;;***
1556
1557 ;;;### (autoloads nil "gmhist-app" "dired/gmhist-app.el" (11903 15638))
1558 ;;; Generated autoloads from dired/gmhist-app.el
1559
1560 ;;;***
1561
1562 ;;;### (autoloads nil "gmhist-cmp" "dired/gmhist-cmp.el" (11903 15639))
1563 ;;; Generated autoloads from dired/gmhist-cmp.el
1564
1565 ;;;***
1566
1567 ;;;### (autoloads nil "gmhist-mh" "dired/gmhist-mh.el" (11903 15640))
1568 ;;; Generated autoloads from dired/gmhist-mh.el
1569
1570 ;;;***
1571
1572 ;;;### (autoloads nil "gmhist" "dired/gmhist.el" (12637 31043))
1573 ;;; Generated autoloads from dired/gmhist.el
1574
1575 ;;;***
1576
1577 ;;;***
1578
1579 ;;;### (autoloads nil "cl-read" "edebug/cl-read.el" (12823 45305))
1580 ;;; Generated autoloads from edebug/cl-read.el
1581
1582 ;;;### (autoloads nil "cl-specs" "edebug/cl-specs.el" (12546 50525))
1583 ;;; Generated autoloads from edebug/cl-specs.el
1584
1585 ;;;***
1586
1587 ;;;### (autoloads nil "cust-print" "edebug/cust-print.el" (12546 50527))
1588 ;;; Generated autoloads from edebug/cust-print.el
1589
1590 ;;;***
1591
1592 ;;;### (autoloads nil "edebug-cl-read" "edebug/edebug-cl-read.el" (12546 50528))
1593 ;;; Generated autoloads from edebug/edebug-cl-read.el
1594
1595 ;;;***
1596
1597 ;;;### (autoloads nil "edebug-test" "edebug/edebug-test.el" (12546 50557))
1598 ;;; Generated autoloads from edebug/edebug-test.el
1599
1600 ;;;***
1601
1602 ;;;### (autoloads (edebug-eval-top-level-form def-edebug-spec) "edebug" "edebug/edebug.el" (12637 28000))
1603 ;;; Generated autoloads from edebug/edebug.el
1604
1605 (autoload 'def-edebug-spec "edebug" "\
1606 Set the edebug-form-spec property of SYMBOL according to SPEC.
1607 Both SYMBOL and SPEC are unevaluated. The SPEC can be 0, t, a symbol
1608 \(naming a function), or a list." nil 'macro)
1609
1610 (defalias 'edebug-defun 'edebug-eval-top-level-form)
1611
1612 (autoload 'edebug-eval-top-level-form "edebug" "\
1613 Evaluate a top level form, such as a defun or defmacro.
1614 This is like `eval-defun', but the code is always instrumented for Edebug.
1615 Print its name in the minibuffer and leave point where it is,
1616 or if an error occurs, leave point after it with mark at the original point." t nil)
1617
1618 ;;;***
1619
1620 ;;;### (autoloads nil "eval-reg" "edebug/eval-reg.el" (12546 50557))
1621 ;;; Generated autoloads from edebug/eval-reg.el
1622
1623 ;;;***
1624
1625 ;;;### (autoloads nil "ediff-diff" "ediff/ediff-diff.el" (12747 30850))
1626 ;;; Generated autoloads from ediff/ediff-diff.el
1627
1628 ;;;### (autoloads nil "ediff-hook" "ediff/ediff-hook.el" (12675 57178))
1629 ;;; Generated autoloads from ediff/ediff-hook.el
1630
1631 ;;;### (autoloads nil "ediff-init" "ediff/ediff-init.el" (12675 57168))
1632 ;;; Generated autoloads from ediff/ediff-init.el
1633
1634 ;;;***
1635
1636 ;;;### (autoloads nil "ediff-merg" "ediff/ediff-merg.el" (12675 57169))
1637 ;;; Generated autoloads from ediff/ediff-merg.el
1638
1639 ;;;***
1640
1641 ;;;### (autoloads (ediff-show-registry) "ediff-mult" "ediff/ediff-mult.el" (12823 45330))
1642 ;;; Generated autoloads from ediff/ediff-mult.el
1643
1644 (autoload 'ediff-show-registry "ediff-mult" "\
1645 Display Ediff's registry." t nil)
1646
1647 (defalias 'eregistry 'ediff-show-registry)
1648
1649 ;;;***
1650
1651 ;;;### (autoloads nil "ediff-ptch" "ediff/ediff-ptch.el" (12639 8398))
1652 ;;; Generated autoloads from ediff/ediff-ptch.el
1653
1654 ;;;***
1655
1656 ;;;***
1657
1658 ;;;### (autoloads nil "ediff-util" "ediff/ediff-util.el" (12823 45327))
1659 ;;; Generated autoloads from ediff/ediff-util.el
1660
1661 ;;;### (autoloads nil "ediff-vers" "ediff/ediff-vers.el" (12675 57179))
1662 ;;; Generated autoloads from ediff/ediff-vers.el
1663
1664 ;;;***
1665
1666 ;;;### (autoloads nil "ediff-wind" "ediff/ediff-wind.el" (12823 45327))
1667 ;;; Generated autoloads from ediff/ediff-wind.el
1668
1669 ;;;### (autoloads (electric-buffer-list) "ebuff-menu" "electric/ebuff-menu.el" (12695 11397))
1670 ;;; Generated autoloads from electric/ebuff-menu.el
1671
1672 (autoload 'electric-buffer-list "ebuff-menu" "\
1673 Pops up a buffer describing the set of Emacs buffers.
1674 Vaguely like ITS lunar select buffer; combining typeoutoid buffer
1675 listing with menuoid buffer selection.
1676
1677 If the very next character typed is a space then the buffer list
1678 window disappears. Otherwise, one may move around in the
1679 buffer list window, marking buffers to be selected, saved or deleted.
1680
1681 To exit and select a new buffer, type a space when the cursor is on the
1682 appropriate line of the buffer-list window.
1683
1684 Other commands are much like those of buffer-menu-mode.
1685
1686 Calls value of `electric-buffer-menu-mode-hook' on entry if non-nil.
1687
1688 Non-null optional arg FILES-ONLY means mention only file buffers.
1689 When called from Lisp code, FILES-ONLY may be a regular expression,
1690 in which case only buffers whose names match that expression are listed,
1691 or an arbitrary predicate function.
1692
1693 \\{electric-buffer-menu-mode-map}" t nil)
1694
1695 ;;;***
1696
1697 ;;;### (autoloads (electric-command-history Electric-command-history-redo-expression) "echistory" "electric/echistory.el" (12657 12773))
1698 ;;; Generated autoloads from electric/echistory.el
1699
1700 (autoload 'Electric-command-history-redo-expression "echistory" "\
1701 Edit current history line in minibuffer and execute result.
1702 With prefix argument NOCONFIRM, execute current line as-is without editing." t nil)
1703
1704 (autoload 'electric-command-history "echistory" "\
1705 \\<electric-history-map>Major mode for examining and redoing commands from `command-history'.
1706 This pops up a window with the Command History listing.
1707 The number of command listed is controlled by `list-command-history-max'.
1708 The command history is filtered by `list-command-history-filter' if non-nil.
1709 Combines typeout Command History list window with menu like selection
1710 of an expression from the history for re-evaluation in the *original* buffer.
1711
1712 The history displayed is filtered by `list-command-history-filter' if non-nil.
1713
1714 This pops up a window with the Command History listing. If the very
1715 next character typed is Space, the listing is killed and the previous
1716 window configuration is restored. Otherwise, you can browse in the
1717 Command History with Return moving down and Delete moving up, possibly
1718 selecting an expression to be redone with Space or quitting with `Q'.
1719
1720 Like Emacs-Lisp mode except that characters do not insert themselves and
1721 Tab and Linefeed do not indent. Instead these commands are provided:
1722 \\{electric-history-map}
1723
1724 Calls the value of `electric-command-history-hook' if that is non-nil.
1725 The Command History listing is recomputed each time this mode is invoked." t nil)
1726
1727 ;;;***
1728
1729 ;;;### (autoloads (electric-helpify with-electric-help) "ehelp" "electric/ehelp.el" (12657 13467))
1730 ;;; Generated autoloads from electric/ehelp.el
1731
1732 (autoload 'with-electric-help "ehelp" "\
1733 Pop up an \"electric\" help buffer.
1734 The arguments are THUNK &optional BUFFER NOERASE MINHEIGHT.
1735 THUNK is a function of no arguments which is called to initialize the
1736 contents of BUFFER. BUFFER defaults to `*Help*'. BUFFER will be
1737 erased before THUNK is called unless NOERASE is non-nil. THUNK will
1738 be called while BUFFER is current and with `standard-output' bound to
1739 the buffer specified by BUFFER.
1740
1741 If THUNK returns nil, we display BUFFER starting at the top, and
1742 shrink the window to fit. If THUNK returns non-nil, we don't do those things.
1743
1744 After THUNK has been called, this function \"electrically\" pops up a window
1745 in which BUFFER is displayed and allows the user to scroll through that buffer
1746 in electric-help-mode. The window's height will be at least MINHEIGHT if
1747 this value is non-nil.
1748
1749 If THUNK returns nil, we display BUFFER starting at the top, and
1750 shrink the window to fit. If THUNK returns non-nil, we don't do those
1751 things.
1752
1753 When the user exits (with `electric-help-exit', or otherwise) the help
1754 buffer's window disappears (i.e., we use `save-window-excursion')
1755 BUFFER is put into `default-major-mode' (or `fundamental-mode') when we exit." nil nil)
1756
1757 (autoload 'electric-helpify "ehelp" nil nil nil)
1758
1759 ;;;***
1760
1761 ;;;### (autoloads nil "electric" "electric/electric.el" (12657 12771))
1762 ;;; Generated autoloads from electric/electric.el
1763
1764 ;;;### (autoloads (Helper-help Helper-describe-bindings) "helper" "electric/helper.el" (12657 12774))
1765 ;;; Generated autoloads from electric/helper.el
1766
1767 (autoload 'Helper-describe-bindings "helper" "\
1768 Describe local key bindings of current mode." t nil)
1769
1770 (autoload 'Helper-help "helper" "\
1771 Provide help for current mode." t nil)
1772
1773 ;;;***
1774
1775 ;;;### (autoloads nil "edt" "emulators/edt.el" (12147 26395))
1776 ;;; Generated autoloads from emulators/edt.el
1777
1778 ;;;### (autoloads (evi) "evi" "emulators/evi.el" (12106 7816))
1779 ;;; Generated autoloads from emulators/evi.el
1780
1781 (autoload 'evi "evi" "\
1782 Start vi emulation in this buffer." t nil)
1783
1784 ;;;***
1785
1786
1787 ;;;### (autoloads (convert-mocklisp-buffer) "mlconvert" "emulators/mlconvert.el" (12147 26396))
1788 ;;; Generated autoloads from emulators/mlconvert.el
1789
1790 (autoload 'convert-mocklisp-buffer "mlconvert" "\
1791 Convert buffer of Mocklisp code to real Lisp that GNU Emacs can run." t nil)
1792
1793 ;;;***
1794
1795 ;;;### (autoloads nil "mlsupport" "emulators/mlsupport.el" (12546 37584))
1796 ;;; Generated autoloads from emulators/mlsupport.el
1797
1798 ;;;### (autoloads (teco-command) "teco" "emulators/teco.el" (12013 11585))
1799 ;;; Generated autoloads from emulators/teco.el
1800
1801 (autoload 'teco-command "teco" "\
1802 Read and execute a Teco command string." t nil)
1803
1804 ;;;***
1805
1806 ;;;***
1807
1808 ;;;### (autoloads nil "tpu-doc" "emulators/tpu-doc.el" (12823 45200))
1809 ;;; Generated autoloads from emulators/tpu-doc.el
1810
1811 ;;;### (autoloads (tpu-edt-on) "tpu-edt" "emulators/tpu-edt.el" (12657 14847))
1812 ;;; Generated autoloads from emulators/tpu-edt.el
1813
1814 (fset 'tpu-edt-mode 'tpu-edt-on)
1815
1816 (fset 'tpu-edt 'tpu-edt-on)
1817
1818 (autoload 'tpu-edt-on "tpu-edt" "\
1819 Turn on TPU/edt emulation." t nil)
1820
1821 ;;;***
1822
1823 ;;;### (autoloads nil "tpu-extras" "emulators/tpu-extras.el" (12147 26399))
1824 ;;; Generated autoloads from emulators/tpu-extras.el
1825
1826 ;;;***
1827
1828 ;;;### (autoloads nil "tpu-mapper" "emulators/tpu-mapper.el" (12147 26401))
1829 ;;; Generated autoloads from emulators/tpu-mapper.el
1830
1831 ;;;***
1832
1833 ;;;### (autoloads nil "ws-mode" "emulators/ws-mode.el" (11903 15657))
1834 ;;; Generated autoloads from emulators/ws-mode.el
1835
1836 ;;;***
1837
1838 ;;;### (autoloads nil "backtrace-logging" "energize/backtrace-logging.el" (11903 15662))
1839 ;;; Generated autoloads from energize/backtrace-logging.el
1840
1841 ;;;***
1842
1843 ;;;### (autoloads nil "energize-advice" "energize/energize-advice.el" (12111 23959))
1844 ;;; Generated autoloads from energize/energize-advice.el
1845
1846 ;;;***
1847
1848 ;;;### (autoloads nil "energize-annoprint" "energize/energize-annoprint.el" (11903 15669))
1849 ;;; Generated autoloads from energize/energize-annoprint.el
1850
1851 ;;;***
1852
1853 ;;;### (autoloads nil "energize-font-lock" "energize/energize-font-lock.el" (12147 26402))
1854 ;;; Generated autoloads from energize/energize-font-lock.el
1855
1856 ;;;***
1857
1858 ;;;### (autoloads nil "energize-font-size" "energize/energize-font-size.el" (12178 36802))
1859 ;;; Generated autoloads from energize/energize-font-size.el
1860
1861 ;;;### (autoloads nil "energize-init" "energize/energize-init.el" (12051 23190))
1862 ;;; Generated autoloads from energize/energize-init.el
1863
1864 ;;;***
1865
1866 ;;;### (autoloads nil "energize-load" "energize/energize-load.el" (12111 23959))
1867 ;;; Generated autoloads from energize/energize-load.el
1868
1869 ;;;***
1870
1871 ;;;### (autoloads nil "energize-menus" "energize/energize-menus.el" (12142 23800))
1872 ;;; Generated autoloads from energize/energize-menus.el
1873
1874 ;;;***
1875
1876 ;;;### (autoloads nil "energize-mode" "energize/energize-mode.el" (12720 34134))
1877 ;;; Generated autoloads from energize/energize-mode.el
1878
1879 ;;;***
1880
1881 ;;;### (autoloads nil "energize-shell" "energize/energize-shell.el" (12110 33408))
1882 ;;; Generated autoloads from energize/energize-shell.el
1883
1884 ;;;### (autoloads nil "energize-uimx" "energize/energize-uimx.el" (12147 26403))
1885 ;;; Generated autoloads from energize/energize-uimx.el
1886
1887 ;;;***
1888
1889 ;;;### (autoloads nil "energize-vi" "energize/energize-vi.el" (12122 13994))
1890 ;;; Generated autoloads from energize/energize-vi.el
1891
1892 ;;;### (autoloads nil "energize-visit-use" "energize/energize-visit-use.el" (12008 37450))
1893 ;;; Generated autoloads from energize/energize-visit-use.el
1894
1895 ;;;***
1896
1897 ;;;### (autoloads nil "energize-windows" "energize/energize-windows.el" (12008 37451))
1898 ;;; Generated autoloads from energize/energize-windows.el
1899
1900 ;;;***
1901
1902 ;;;### (autoloads nil "ostore" "energize/ostore.el" (11903 15667))
1903 ;;; Generated autoloads from energize/ostore.el
1904
1905 ;;;***
1906
1907 ;;;### (autoloads nil "write-file" "energize/write-file.el" (11903 15661))
1908 ;;; Generated autoloads from energize/write-file.el
1909
1910 ;;;***
1911
1912 ;;;### (autoloads nil "eos" "eos/eos.el" (12738 54604))
1913 ;;; Generated autoloads from eos/eos.el
1914
1915 ;;;***
1916
1917 ;;;***
1918
1919 ;;;### (autoloads nil "loaddefs-eos" "eos/loaddefs-eos.el" (12823 45323))
1920 ;;; Generated autoloads from eos/loaddefs-eos.el
1921
1922 ;;;***
1923
1924 ;;;### (autoloads nil "sun-eos-browser" "eos/sun-eos-browser.el" (12738 54603))
1925 ;;; Generated autoloads from eos/sun-eos-browser.el
1926
1927 ;;;***
1928
1929 ;;;### (autoloads nil "sun-eos-common" "eos/sun-eos-common.el" (12345 62348))
1930 ;;; Generated autoloads from eos/sun-eos-common.el
1931
1932 ;;;### (autoloads nil "sun-eos-debugger-extra" "eos/sun-eos-debugger-extra.el" (12738 54601))
1933 ;;; Generated autoloads from eos/sun-eos-debugger-extra.el
1934
1935 ;;;***
1936
1937 ;;;### (autoloads nil "sun-eos-debugger" "eos/sun-eos-debugger.el" (12738 54600))
1938 ;;; Generated autoloads from eos/sun-eos-debugger.el
1939
1940 ;;;***
1941
1942 ;;;### (autoloads nil "sun-eos-editor" "eos/sun-eos-editor.el" (12738 54604))
1943 ;;; Generated autoloads from eos/sun-eos-editor.el
1944
1945 ;;;***
1946
1947 ;;;### (autoloads nil "sun-eos-init" "eos/sun-eos-init.el" (12738 54603))
1948 ;;; Generated autoloads from eos/sun-eos-init.el
1949
1950 ;;;***
1951
1952 ;;;### (autoloads nil "sun-eos-load" "eos/sun-eos-load.el" (12738 54602))
1953 ;;; Generated autoloads from eos/sun-eos-load.el
1954
1955 ;;;***
1956
1957 ;;;### (autoloads nil "sun-eos-menubar" "eos/sun-eos-menubar.el" (12738 54605))
1958 ;;; Generated autoloads from eos/sun-eos-menubar.el
1959
1960 ;;;***
1961
1962 ;;;***
1963
1964 ;;;### (autoloads nil "sun-eos-toolbar" "eos/sun-eos-toolbar.el" (12860 15620))
1965 ;;; Generated autoloads from eos/sun-eos-toolbar.el
1966
1967 ;;;### (autoloads nil "sun-eos" "eos/sun-eos.el" (12738 54602))
1968 ;;; Generated autoloads from eos/sun-eos.el
1969
1970 ;;;### (autoloads nil "epoch" "epoch/epoch.el" (11903 15869))
1971 ;;; Generated autoloads from epoch/epoch.el
1972
1973 ;;;### (autoloads (term make-term) "term" "eterm/term.el" (12254 10521))
1974 ;;; Generated autoloads from eterm/term.el
1975
1976 (autoload 'make-term "term" "\
1977 Make a term process NAME in a buffer, running PROGRAM.
1978 The name of the buffer is made by surrounding NAME with `*'s.
1979 If there is already a running process in that buffer, it is not restarted.
1980 Optional third arg STARTFILE is the name of a file to send the contents of to
1981 the process. Any more args are arguments to PROGRAM." nil nil)
1982
1983 (autoload 'term "term" "\
1984 Start a terminal-emulator in a new buffer." t nil)
1985
1986 ;;;***
1987
1988 ;;;### (autoloads (tperldb txdb tdbx tsdb tgdb) "tgud" "eterm/tgud.el" (12147 26618))
1989 ;;; Generated autoloads from eterm/tgud.el
1990
1991 (autoload 'tgdb "tgud" "\
1992 Run gdb on program FILE in buffer *tgud-FILE*.
1993 The directory containing FILE becomes the initial working directory
1994 and source-file directory for your debugger." t nil)
1995
1996 (autoload 'tsdb "tgud" "\
1997 Run sdb on program FILE in buffer *tgud-FILE*.
1998 The directory containing FILE becomes the initial working directory
1999 and source-file directory for your debugger." t nil)
2000
2001 (autoload 'tdbx "tgud" "\
2002 Run dbx on program FILE in buffer *tgud-FILE*.
2003 The directory containing FILE becomes the initial working directory
2004 and source-file directory for your debugger." t nil)
2005
2006 (autoload 'txdb "tgud" "\
2007 Run xdb on program FILE in buffer *tgud-FILE*.
2008 The directory containing FILE becomes the initial working directory
2009 and source-file directory for your debugger.
2010
2011 You can set the variable 'tgud-xdb-directories' to a list of program source
2012 directories if your program contains sources from more than one directory." t nil)
2013
2014 (autoload 'tperldb "tgud" "\
2015 Run perldb on program FILE in buffer *tgud-FILE*.
2016 The directory containing FILE becomes the initial working directory
2017 and source-file directory for your debugger." t nil)
2018
2019 ;;;***
2020
2021 ;;;### (autoloads (tshell) "tshell" "eterm/tshell.el" (12147 26618))
2022 ;;; Generated autoloads from eterm/tshell.el
2023
2024 (defvar tshell-prompt-pattern "^[^#$%>\n]*[#$%>] *" "\
2025 Regexp to match prompts in the inferior shell.
2026 Defaults to \"^[^#$%>\\n]*[#$%>] *\", which works pretty well.
2027 This variable is used to initialise `term-prompt-regexp' in the
2028 shell buffer.
2029
2030 The pattern should probably not match more than one line. If it does,
2031 tshell-mode may become confused trying to distinguish prompt from input
2032 on lines which don't start with a prompt.
2033
2034 This is a fine thing to set in your `.emacs' file.")
2035
2036 (autoload 'tshell "tshell" "\
2037 Run an inferior shell, with I/O through buffer *shell*.
2038 If buffer exists but shell process is not running, make new shell.
2039 If buffer exists and shell process is running, just switch to buffer `*shell*'.
2040 Program used comes from variable `explicit-shell-file-name',
2041 or (if that is nil) from the ESHELL environment variable,
2042 or else from SHELL if there is no ESHELL.
2043 If a file `~/.emacs_SHELLNAME' exists, it is given as initial input
2044 (Note that this may lose due to a timing error if the shell
2045 discards input when it starts up.)
2046 The buffer is put in Tshell mode, giving commands for sending input
2047 and controlling the subjobs of the shell. See `tshell-mode'.
2048 See also the variable `tshell-prompt-pattern'.
2049
2050 The shell file name (sans directories) is used to make a symbol name
2051 such as `explicit-csh-args'. If that symbol is a variable,
2052 its value is used as a list of arguments when invoking the shell.
2053 Otherwise, one argument `-i' is passed to the shell.
2054
2055 \(Type \\[describe-mode] in the shell buffer for a list of commands.)" t nil)
2056
2057 ;;;***
2058
2059 ;;;### (autoloads nil "NeXTify" "games/NeXTify.el" (11903 15936))
2060 ;;; Generated autoloads from games/NeXTify.el
2061
2062 ;;;### (autoloads (blackbox) "blackbox" "games/blackbox.el" (12147 26583))
2063 ;;; Generated autoloads from games/blackbox.el
2064
2065 (autoload 'blackbox "blackbox" "\
2066 Play blackbox. Optional prefix argument is the number of balls;
2067 the default is 4.
2068
2069 What is blackbox?
2070
2071 Blackbox is a game of hide and seek played on an 8 by 8 grid (the
2072 Blackbox). Your opponent (Emacs, in this case) has hidden several
2073 balls (usually 4) within this box. By shooting rays into the box and
2074 observing where they emerge it is possible to deduce the positions of
2075 the hidden balls. The fewer rays you use to find the balls, the lower
2076 your score.
2077
2078 Overview of play:
2079
2080 \\<blackbox-mode-map>To play blackbox, type \\[blackbox]. An optional prefix argument
2081 specifies the number of balls to be hidden in the box; the default is
2082 four.
2083
2084 The cursor can be moved around the box with the standard cursor
2085 movement keys.
2086
2087 To shoot a ray, move the cursor to the edge of the box and press SPC.
2088 The result will be determined and the playfield updated.
2089
2090 You may place or remove balls in the box by moving the cursor into the
2091 box and pressing \\[bb-romp].
2092
2093 When you think the configuration of balls you have placed is correct,
2094 press \\[bb-done]. You will be informed whether you are correct or
2095 not, and be given your score. Your score is the number of letters and
2096 numbers around the outside of the box plus five for each incorrectly
2097 placed ball. If you placed any balls incorrectly, they will be
2098 indicated with `x', and their actual positions indicated with `o'.
2099
2100 Details:
2101
2102 There are three possible outcomes for each ray you send into the box:
2103
2104 Detour: the ray is deflected and emerges somewhere other than
2105 where you sent it in. On the playfield, detours are
2106 denoted by matching pairs of numbers -- one where the
2107 ray went in, and the other where it came out.
2108
2109 Reflection: the ray is reflected and emerges in the same place
2110 it was sent in. On the playfield, reflections are
2111 denoted by the letter `R'.
2112
2113 Hit: the ray strikes a ball directly and is absorbed. It does
2114 not emerge from the box. On the playfield, hits are
2115 denoted by the letter `H'.
2116
2117 The rules for how balls deflect rays are simple and are best shown by
2118 example.
2119
2120 As a ray approaches a ball it is deflected ninety degrees. Rays can
2121 be deflected multiple times. In the diagrams below, the dashes
2122 represent empty box locations and the letter `O' represents a ball.
2123 The entrance and exit points of each ray are marked with numbers as
2124 described under \"Detour\" above. Note that the entrance and exit
2125 points are always interchangeable. `*' denotes the path taken by the
2126 ray.
2127
2128 Note carefully the relative positions of the ball and the ninety
2129 degree deflection it causes.
2130
2131 1
2132 - * - - - - - - - - - - - - - - - - - - - - - -
2133 - * - - - - - - - - - - - - - - - - - - - - - -
2134 1 * * - - - - - - - - - - - - - - - O - - - - O -
2135 - - O - - - - - - - O - - - - - - - * * * * - -
2136 - - - - - - - - - - - * * * * * 2 3 * * * - - * - -
2137 - - - - - - - - - - - * - - - - - - - O - * - -
2138 - - - - - - - - - - - * - - - - - - - - * * - -
2139 - - - - - - - - - - - * - - - - - - - - * - O -
2140 2 3
2141
2142 As mentioned above, a reflection occurs when a ray emerges from the same point
2143 it was sent in. This can happen in several ways:
2144
2145
2146 - - - - - - - - - - - - - - - - - - - - - - - -
2147 - - - - O - - - - - O - O - - - - - - - - - - -
2148 R * * * * - - - - - - - * - - - - O - - - - - - -
2149 - - - - O - - - - - - * - - - - R - - - - - - - -
2150 - - - - - - - - - - - * - - - - - - - - - - - -
2151 - - - - - - - - - - - * - - - - - - - - - - - -
2152 - - - - - - - - R * * * * - - - - - - - - - - - -
2153 - - - - - - - - - - - - O - - - - - - - - - - -
2154
2155 In the first example, the ray is deflected downwards by the upper
2156 ball, then left by the lower ball, and finally retraces its path to
2157 its point of origin. The second example is similar. The third
2158 example is a bit anomalous but can be rationalized by realizing the
2159 ray never gets a chance to get into the box. Alternatively, the ray
2160 can be thought of as being deflected downwards and immediately
2161 emerging from the box.
2162
2163 A hit occurs when a ray runs straight into a ball:
2164
2165 - - - - - - - - - - - - - - - - - - - - - - - -
2166 - - - - - - - - - - - - - - - - - - - - O - - -
2167 - - - - - - - - - - - - O - - - H * * * * - - - -
2168 - - - - - - - - H * * * * O - - - - - - * - - - -
2169 - - - - - - - - - - - - O - - - - - - O - - - -
2170 H * * * O - - - - - - - - - - - - - - - - - - - -
2171 - - - - - - - - - - - - - - - - - - - - - - - -
2172 - - - - - - - - - - - - - - - - - - - - - - - -
2173
2174 Be sure to compare the second example of a hit with the first example of
2175 a reflection." t nil)
2176
2177 ;;;***
2178
2179 ;;;### (autoloads (conx-load conx conx-region conx-buffer) "conx" "games/conx.el" (12013 11851))
2180 ;;; Generated autoloads from games/conx.el
2181
2182 (autoload 'conx-buffer "conx" "\
2183 Absorb the text in the current buffer into the tree." t nil)
2184
2185 (autoload 'conx-region "conx" "\
2186 Absorb the text in the current region into the tree." t nil)
2187
2188 (autoload 'conx "conx" "\
2189 Generate some random sentences in the *conx* buffer." t nil)
2190
2191 (autoload 'conx-load "conx" "\
2192 Load in a CONX database written by the \\[conx-save] command.
2193 This clears the database currently in memory." t nil)
2194
2195 ;;;***
2196
2197 ;;;### (autoloads (shuffle-vector cookie-snarf cookie-insert cookie) "cookie1" "games/cookie1.el" (12147 26582))
2198 ;;; Generated autoloads from games/cookie1.el
2199
2200 (autoload 'cookie "cookie1" "\
2201 Return a random phrase from PHRASE-FILE. When the phrase file
2202 is read in, display STARTMSG at beginning of load, ENDMSG at end." nil nil)
2203
2204 (autoload 'cookie-insert "cookie1" "\
2205 Insert random phrases from PHRASE-FILE; COUNT of them. When the phrase file
2206 is read in, display STARTMSG at beginning of load, ENDMSG at end." nil nil)
2207
2208 (autoload 'cookie-snarf "cookie1" "\
2209 Reads in the PHRASE-FILE, returns it as a vector of strings.
2210 Emit STARTMSG and ENDMSG before and after. Caches the result; second
2211 and subsequent calls on the same file won't go to disk." nil nil)
2212
2213 (autoload 'shuffle-vector "cookie1" "\
2214 Randomly permute the elements of VECTOR (all permutations equally likely)" nil nil)
2215
2216 ;;;***
2217
2218 ;;;### (autoloads (dissociated-press) "dissociate" "games/dissociate.el" (12147 26583))
2219 ;;; Generated autoloads from games/dissociate.el
2220
2221 (autoload 'dissociated-press "dissociate" "\
2222 Dissociate the text of the current buffer.
2223 Output goes in buffer named *Dissociation*,
2224 which is redisplayed each time text is added to it.
2225 Every so often the user must say whether to continue.
2226 If ARG is positive, require ARG chars of continuity.
2227 If ARG is negative, require -ARG words of continuity.
2228 Default is 2." t nil)
2229
2230 ;;;***
2231
2232 ;;;### (autoloads (doctor) "doctor" "games/doctor.el" (12147 26585))
2233 ;;; Generated autoloads from games/doctor.el
2234
2235 (autoload 'doctor "doctor" "\
2236 Switch to *doctor* buffer and start giving psychotherapy." t nil)
2237
2238 ;;;***
2239
2240 ;;;### (autoloads (dunnet) "dunnet" "games/dunnet.el" (12147 26589))
2241 ;;; Generated autoloads from games/dunnet.el
2242
2243 (autoload 'dunnet "dunnet" "\
2244 Switch to *dungeon* buffer and start game." t nil)
2245
2246 ;;;***
2247
2248 ;;;### (autoloads (flame) "flame" "games/flame.el" (12142 23857))
2249 ;;; Generated autoloads from games/flame.el
2250
2251 (autoload 'flame "flame" "\
2252 Generate ARG (default 1) sentences of half-crazed gibberish." t nil)
2253
2254 ;;;***
2255
2256 ;;;### (autoloads (gomoku) "gomoku" "games/gomoku.el" (12546 37634))
2257 ;;; Generated autoloads from games/gomoku.el
2258
2259 (autoload 'gomoku "gomoku" "\
2260 Start a Gomoku game between you and Emacs.
2261 If a game is in progress, this command allow you to resume it.
2262 If optional arguments N and M are given, an N by M board is used.
2263
2264 You and Emacs play in turn by marking a free square. You mark it with X
2265 and Emacs marks it with O. The winner is the first to get five contiguous
2266 marks horizontally, vertically or in diagonal.
2267 You play by moving the cursor over the square you choose and hitting
2268 \\<gomoku-mode-map>\\[gomoku-human-plays].
2269 Use \\[describe-mode] for more info." t nil)
2270
2271 ;;;***
2272
2273 ;;;### (autoloads (hanoi) "hanoi" "games/hanoi.el" (12546 37635))
2274 ;;; Generated autoloads from games/hanoi.el
2275
2276 (autoload 'hanoi "hanoi" "\
2277 Towers of Hanoi diversion. Argument is number of rings." t nil)
2278
2279 ;;;***
2280
2281 ;;;### (autoloads (life) "life" "games/life.el" (12742 53079))
2282 ;;; Generated autoloads from games/life.el
2283
2284 (autoload 'life "life" "\
2285 Run Conway's Life simulation.
2286 The starting pattern is randomly selected. Prefix arg (optional first
2287 arg non-nil from a program) is the number of seconds to sleep between
2288 generations (this defaults to 1)." t nil)
2289
2290 ;;;***
2291
2292 ;;;### (autoloads (mpuz) "mpuz" "games/mpuz.el" (12546 37635))
2293 ;;; Generated autoloads from games/mpuz.el
2294
2295 (autoload 'mpuz "mpuz" "\
2296 Multiplication puzzle with GNU Emacs." t nil)
2297
2298 ;;;***
2299
2300 ;;;### (autoloads (snarf-spooks spook) "spook" "games/spook.el" (12546 37636))
2301 ;;; Generated autoloads from games/spook.el
2302
2303 (autoload 'spook "spook" "\
2304 Adds that special touch of class to your outgoing mail." t nil)
2305
2306 (autoload 'snarf-spooks "spook" "\
2307 Return a vector containing the lines from `spook-phrases-file'." nil nil)
2308
2309 ;;;***
2310
2311 ;;;### (autoloads nil "studly" "games/studly.el" (11903 15936))
2312 ;;; Generated autoloads from games/studly.el
2313
2314 ;;;### (autoloads (psychoanalyze-pinhead insert-zippyism yow) "yow" "games/yow.el" (12546 37637))
2315 ;;; Generated autoloads from games/yow.el
2316
2317 (autoload 'yow "yow" "\
2318 Return or display a random Zippy quotation. With prefix arg, insert it." t nil)
2319
2320 (autoload 'insert-zippyism "yow" "\
2321 Prompt with completion for a known Zippy quotation, and insert it at point." t nil)
2322
2323 (autoload 'psychoanalyze-pinhead "yow" "\
2324 Zippy goes to the analyst." t nil)
2325
2326 ;;;***
2327
2328 ;;;***
2329
2330 ;;;### (autoloads nil "custom" "gnus/custom.el" (12823 45985))
2331 ;;; Generated autoloads from gnus/custom.el
2332
2333 ;;;***
2334
2335 ;;;### (autoloads nil "dgnushack" "gnus/dgnushack.el" (12823 45985))
2336 ;;; Generated autoloads from gnus/dgnushack.el
2337
2338 ;;;### (autoloads (gnus-earcon-display) "earcon" "gnus/earcon.el" (12823 45575))
2339 ;;; Generated autoloads from gnus/earcon.el
2340
2341 (autoload 'gnus-earcon-display "earcon" "\
2342 Play sounds in message buffers." t nil)
2343
2344 ;;;***
2345
2346 ;;;### (autoloads (gnus-cache-generate-nov-databases gnus-cache-generate-active gnus-jog-cache) "gnus-cache" "gnus/gnus-cache.el" (12823 45986))
2347 ;;; Generated autoloads from gnus/gnus-cache.el
2348
2349 (autoload 'gnus-jog-cache "gnus-cache" "\
2350 Go through all groups and put the articles into the cache." t nil)
2351
2352 (autoload 'gnus-cache-generate-active "gnus-cache" "\
2353 Generate the cache active file." t nil)
2354
2355 (autoload 'gnus-cache-generate-nov-databases "gnus-cache" "\
2356 Generate NOV files recursively starting in DIR." t nil)
2357
2358 ;;;***
2359
2360 ;;;***
2361
2362 ;;;### (autoloads nil "gnus-cite" "gnus/gnus-cite.el" (12823 45985))
2363 ;;; Generated autoloads from gnus/gnus-cite.el
2364
2365 ;;;***
2366
2367 ;;;### (autoloads nil "gnus-cus" "gnus/gnus-cus.el" (12823 45985))
2368 ;;; Generated autoloads from gnus/gnus-cus.el
2369
2370 ;;;### (autoloads nil "gnus-demon" "gnus/gnus-demon.el" (12740 29837))
2371 ;;; Generated autoloads from gnus/gnus-demon.el
2372
2373 ;;;***
2374
2375 ;;;***
2376
2377 ;;;### (autoloads nil "gnus-edit" "gnus/gnus-edit.el" (12823 45217))
2378 ;;; Generated autoloads from gnus/gnus-edit.el
2379
2380 ;;;***
2381
2382 ;;;### (autoloads nil "gnus-ems" "gnus/gnus-ems.el" (12823 45986))
2383 ;;; Generated autoloads from gnus/gnus-ems.el
2384
2385 ;;;***
2386
2387 ;;;### (autoloads nil "gnus-gl" "gnus/gnus-gl.el" (12823 45219))
2388 ;;; Generated autoloads from gnus/gnus-gl.el
2389
2390 ;;;***
2391
2392 ;;;### (autoloads nil "gnus-kill" "gnus/gnus-kill.el" (12727 30137))
2393 ;;; Generated autoloads from gnus/gnus-kill.el
2394
2395 ;;;### (autoloads nil "gnus-mh" "gnus/gnus-mh.el" (12740 29832))
2396 ;;; Generated autoloads from gnus/gnus-mh.el
2397
2398 ;;;***
2399
2400 ;;;***
2401
2402 ;;;### (autoloads nil "gnus-msg" "gnus/gnus-msg.el" (12823 45986))
2403 ;;; Generated autoloads from gnus/gnus-msg.el
2404
2405 ;;;***
2406
2407 ;;;### (autoloads nil "gnus-nocem" "gnus/gnus-nocem.el" (12823 45988))
2408 ;;; Generated autoloads from gnus/gnus-nocem.el
2409
2410 ;;;***
2411
2412 ;;;### (autoloads nil "gnus-picon" "gnus/gnus-picon.el" (12823 45989))
2413 ;;; Generated autoloads from gnus/gnus-picon.el
2414
2415 ;;;### (autoloads nil "gnus-salt" "gnus/gnus-salt.el" (12745 38029))
2416 ;;; Generated autoloads from gnus/gnus-salt.el
2417
2418 ;;;### (autoloads nil "gnus-score" "gnus/gnus-score.el" (12823 45982))
2419 ;;; Generated autoloads from gnus/gnus-score.el
2420
2421 ;;;### (autoloads nil "gnus-setup" "gnus/gnus-setup.el" (12727 30250))
2422 ;;; Generated autoloads from gnus/gnus-setup.el
2423
2424 ;;;### (autoloads (gnus-sound-play) "gnus-sound" "gnus/gnus-sound.el" (12823 45576))
2425 ;;; Generated autoloads from gnus/gnus-sound.el
2426
2427 (autoload 'gnus-sound-play "gnus-sound" "\
2428 Play a sound through the speaker." t nil)
2429
2430 ;;;***
2431
2432 ;;;### (autoloads (gnus-batch-brew-soup) "gnus-soup" "gnus/gnus-soup.el" (12743 11653))
2433 ;;; Generated autoloads from gnus/gnus-soup.el
2434
2435 (autoload 'gnus-batch-brew-soup "gnus-soup" "\
2436 Brew a SOUP packet from groups mention on the command line.
2437 Will use the remaining command line arguments as regular expressions
2438 for matching on group names.
2439
2440 For instance, if you want to brew on all the nnml groups, as well as
2441 groups with \"emacs\" in the name, you could say something like:
2442
2443 $ emacs -batch -f gnus-batch-brew-soup ^nnml \".*emacs.*\"" t nil)
2444
2445 ;;;***
2446
2447 ;;;### (autoloads nil "gnus-srvr" "gnus/gnus-srvr.el" (12744 54656))
2448 ;;; Generated autoloads from gnus/gnus-srvr.el
2449
2450 ;;;***
2451
2452 ;;;***
2453
2454 ;;;### (autoloads nil "gnus-topic" "gnus/gnus-topic.el" (12823 45988))
2455 ;;; Generated autoloads from gnus/gnus-topic.el
2456
2457 ;;;***
2458
2459 ;;;### (autoloads nil "gnus-uu" "gnus/gnus-uu.el" (12823 45987))
2460 ;;; Generated autoloads from gnus/gnus-uu.el
2461
2462 ;;;***
2463
2464 ;;;### (autoloads nil "gnus-vis" "gnus/gnus-vis.el" (12823 45987))
2465 ;;; Generated autoloads from gnus/gnus-vis.el
2466
2467 ;;;***
2468
2469 ;;;### (autoloads nil "gnus-vm" "gnus/gnus-vm.el" (12727 30143))
2470 ;;; Generated autoloads from gnus/gnus-vm.el
2471
2472 ;;;***
2473
2474 ;;;### (autoloads nil "gnus-xmas" "gnus/gnus-xmas.el" (12823 45989))
2475 ;;; Generated autoloads from gnus/gnus-xmas.el
2476
2477 ;;;### (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" (12851 23291))
2478 ;;; Generated autoloads from gnus/gnus.el
2479
2480 (autoload 'gnus-update-format "gnus" "\
2481 Update the format specification near point." t nil)
2482
2483 (autoload 'gnus-add-configuration "gnus" "\
2484 Add the window configuration CONF to `gnus-buffer-configuration'." nil nil)
2485
2486 (autoload 'gnus-slave-no-server "gnus" "\
2487 Read network news as a slave, without connecting to local server" t nil)
2488
2489 (autoload 'gnus-no-server "gnus" "\
2490 Read network news.
2491 If ARG is a positive number, Gnus will use that as the
2492 startup level. If ARG is nil, Gnus will be started at level 2.
2493 If ARG is non-nil and not a positive number, Gnus will
2494 prompt the user for the name of an NNTP server to use.
2495 As opposed to `gnus', this command will not connect to the local server." t nil)
2496
2497 (autoload 'gnus-slave "gnus" "\
2498 Read news as a slave." t nil)
2499
2500 (autoload 'gnus-other-frame "gnus" "\
2501 Pop up a frame to read news." t nil)
2502
2503 (autoload 'gnus "gnus" "\
2504 Read network news.
2505 If ARG is non-nil and a positive number, Gnus will use that as the
2506 startup level. If ARG is non-nil and not a positive number, Gnus will
2507 prompt the user for the name of an NNTP server to use." t nil)
2508
2509 (autoload 'gnus-fetch-group "gnus" "\
2510 Start Gnus if necessary and enter GROUP.
2511 Returns whether the fetching was successful or not." t nil)
2512
2513 (defalias 'gnus-batch-kill 'gnus-batch-score)
2514
2515 (autoload 'gnus-batch-score "gnus" "\
2516 Run batched scoring.
2517 Usage: emacs -batch -l gnus -f gnus-batch-score <newsgroups> ...
2518 Newsgroups is a list of strings in Bnews format. If you want to score
2519 the comp hierarchy, you'd say \"comp.all\". If you would not like to
2520 score the alt hierarchy, you'd say \"!alt.all\"." t nil)
2521
2522 ;;;***
2523
2524 ;;;### (autoloads nil "mailheader" "gnus/mailheader.el" (12727 30254))
2525 ;;; Generated autoloads from gnus/mailheader.el
2526
2527 ;;;### (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" (12851 23288))
2528 ;;; Generated autoloads from gnus/message.el
2529
2530 (defvar message-fcc-handler-function 'rmail-output "\
2531 *A function called to save outgoing articles.
2532 This function will be called with the name of the file to store the
2533 article in. The default function is `rmail-output' which saves in Unix
2534 mailbox format.")
2535
2536 (defvar message-courtesy-message "The following message is a courtesy copy of an article\nthat has been posted as well.\n\n" "\
2537 *This is inserted at the start of a mailed copy of a posted message.
2538 If this variable is nil, no such courtesy message will be added.")
2539
2540 (defvar message-ignored-bounced-headers "^\\(Received\\|Return-Path\\):" "\
2541 *Regexp that matches headers to be removed in resent bounced mail.")
2542
2543 (defvar message-from-style 'default "\
2544 *Specifies how \"From\" headers look.
2545
2546 If `nil', they contain just the return address like:
2547 king@grassland.com
2548 If `parens', they look like:
2549 king@grassland.com (Elvis Parsley)
2550 If `angles', they look like:
2551 Elvis Parsley <king@grassland.com>
2552
2553 Otherwise, most addresses look like `angles', but they look like
2554 `parens' if `angles' would need quoting and `parens' would not.")
2555
2556 (defvar message-syntax-checks nil "\
2557 Controls what syntax checks should not be performed on outgoing posts.
2558 To disable checking of long signatures, for instance, add
2559 `(signature . disabled)' to this list.
2560
2561 Don't touch this variable unless you really know what you're doing.
2562
2563 Checks include subject-cmsg multiple-headers sendsys message-id from
2564 long-lines control-chars size new-text redirected-followup signature
2565 approved sender empty empty-headers message-id from subject.")
2566
2567 (defvar message-required-news-headers '(From Newsgroups Subject Date Message-ID (optional . Organization) Lines (optional . X-Newsreader)) "\
2568 *Headers to be generated or prompted for when posting an article.
2569 RFC977 and RFC1036 require From, Date, Newsgroups, Subject,
2570 Message-ID. Organization, Lines, In-Reply-To, Expires, and
2571 X-Newsreader are optional. If don't you want message to insert some
2572 header, remove it from this list.")
2573
2574 (defvar message-required-mail-headers '(From Subject Date (optional . In-Reply-To) Message-ID Lines (optional . X-Mailer)) "\
2575 *Headers to be generated or prompted for when mailing a message.
2576 RFC822 required that From, Date, To, Subject and Message-ID be
2577 included. Organization, Lines and X-Mailer are optional.")
2578
2579 (defvar message-deletable-headers '(Message-ID Date) "\
2580 *Headers to be deleted if they already exist and were generated by message previously.")
2581
2582 (defvar message-ignored-news-headers "^NNTP-Posting-Host:\\|^Xref:\\|^Bcc:\\|^Gcc:\\|^Fcc:" "\
2583 *Regexp of headers to be removed unconditionally before posting.")
2584
2585 (defvar message-ignored-mail-headers "^Gcc:\\|^Fcc:" "\
2586 *Regexp of headers to be removed unconditionally before mailing.")
2587
2588 (defvar message-ignored-supersedes-headers "^Path:\\|^Date\\|^NNTP-Posting-Host:\\|^Xref:\\|^Lines:\\|^Received:\\|^X-From-Line:\\|Return-Path:\\|^Supersedes:" "\
2589 *Header lines matching this regexp will be deleted before posting.
2590 It's best to delete old Path and Date headers before posting to avoid
2591 any confusion.")
2592
2593 (defvar message-signature-separator "^-- *$" "\
2594 Regexp matching the signature separator.")
2595
2596 (defvar message-interactive nil "\
2597 Non-nil means when sending a message wait for and display errors.
2598 nil means let mailer mail back a message to report errors.")
2599
2600 (defvar message-generate-new-buffers t "\
2601 *Non-nil means that a new message buffer will be created whenever `mail-setup' is called.
2602 If this is a function, call that function with three parameters: The type,
2603 the to address and the group name. (Any of these may be nil.) The function
2604 should return the new buffer name.")
2605
2606 (defvar message-kill-buffer-on-exit nil "\
2607 *Non-nil means that the message buffer will be killed after sending a message.")
2608
2609 (defvar message-user-organization-file "/usr/lib/news/organization" "\
2610 *Local news organization file.")
2611
2612 (defvar message-signature-before-forwarded-message t "\
2613 *If non-nil, put the signature before any included forwarded message.")
2614
2615 (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:" "\
2616 *Regexp matching headers to be included in forwarded messages.")
2617
2618 (defvar message-ignored-resent-headers "^Return-receipt" "\
2619 *All headers that match this regexp will be deleted when resending a message.")
2620
2621 (defvar message-ignored-cited-headers "." "\
2622 Delete these headers from the messages you yank.")
2623
2624 (defvar message-send-mail-function 'message-send-mail-with-sendmail "\
2625 Function to call to send the current buffer as mail.
2626 The headers should be delimited by a line whose contents match the
2627 variable `mail-header-separator'.
2628
2629 Legal values include `message-send-mail-with-mh' and
2630 `message-send-mail-with-sendmail', which is the default.")
2631
2632 (defvar message-send-news-function 'message-send-news "\
2633 Function to call to send the current buffer as news.
2634 The headers should be delimited by a line whose contents match the
2635 variable `mail-header-separator'.")
2636
2637 (defvar message-reply-to-function nil "\
2638 Function that should return a list of headers.
2639 This function should pick out addresses from the To, Cc, and From headers
2640 and respond with new To and Cc headers.")
2641
2642 (defvar message-wide-reply-to-function nil "\
2643 Function that should return a list of headers.
2644 This function should pick out addresses from the To, Cc, and From headers
2645 and respond with new To and Cc headers.")
2646
2647 (defvar message-followup-to-function nil "\
2648 Function that should return a list of headers.
2649 This function should pick out addresses from the To, Cc, and From headers
2650 and respond with new To and Cc headers.")
2651
2652 (defvar message-use-followup-to 'ask "\
2653 *Specifies what to do with Followup-To header.
2654 If nil, ignore the header. If it is t, use its value, but query before
2655 using the \"poster\" value. If it is the symbol `ask', query the user
2656 whether to ignore the \"poster\" value. If it is the symbol `use',
2657 always use the value.")
2658
2659 (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 ""))) "\
2660 Method used to post news.")
2661
2662 (defvar message-generate-headers-first nil "\
2663 *If non-nil, generate all possible headers before composing.")
2664
2665 (defvar message-citation-line-function 'message-insert-citation-line "\
2666 *Function called to insert the \"Whomever writes:\" line.")
2667
2668 (defvar message-yank-prefix "> " "\
2669 *Prefix inserted on the lines of yanked messages.
2670 nil means use indentation.")
2671
2672 (defvar message-cite-function 'message-cite-original "\
2673 *Function for citing an original message.")
2674
2675 (defvar message-indent-citation-function 'message-indent-citation "\
2676 *Function for modifying a citation just inserted in the mail buffer.
2677 This can also be a list of functions. Each function can find the
2678 citation between (point) and (mark t). And each function should leave
2679 point and mark around the citation text as modified.")
2680
2681 (defvar message-signature t "\
2682 *String to be inserted at the end of the message buffer.
2683 If t, the `message-signature-file' file will be inserted instead.
2684 If a function, the result from the function will be used instead.
2685 If a form, the result from the form will be used instead.")
2686
2687 (defvar message-signature-file "~/.signature" "\
2688 *File containing the text inserted at end of message. buffer.")
2689
2690 (defvar message-default-headers nil "\
2691 *A string containing header lines to be inserted in outgoing messages.
2692 It is inserted before you edit the message, so you can edit or delete
2693 these lines.")
2694
2695 (defvar message-default-mail-headers nil "\
2696 *A string of header lines to be inserted in outgoing mails.")
2697
2698 (defvar message-default-news-headers nil "\
2699 *A string of header lines to be inserted in outgoing news articles.")
2700
2701 (autoload 'message-mode "message" "\
2702 Major mode for editing mail and news to be sent.
2703 Like Text Mode but with these additional commands:
2704 C-c C-s message-send (send the message) C-c C-c message-send-and-exit
2705 C-c C-f move to a header field (and create it if there isn't):
2706 C-c C-f C-t move to To C-c C-f C-s move to Subject
2707 C-c C-f C-c move to Cc C-c C-f C-b move to Bcc
2708 C-c C-f C-f move to Fcc C-c C-f C-r move to Reply-To
2709 C-c C-f C-u move to Summary C-c C-f C-n move to Newsgroups
2710 C-c C-f C-k move to Keywords C-c C-f C-d move to Distribution
2711 C-c C-f C-o move to Followup-To
2712 C-c C-t message-insert-to (add a To header to a news followup)
2713 C-c C-n message-insert-newsgroups (add a Newsgroup header to a news reply)
2714 C-c C-b message-goto-body (move to beginning of message text).
2715 C-c C-i message-goto-signature (move to the beginning of the signature).
2716 C-c C-w message-insert-signature (insert `message-signature-file' file).
2717 C-c C-y message-yank-original (insert current message, if any).
2718 C-c C-q message-fill-yanked-message (fill what was yanked).
2719 C-c C-r message-ceasar-buffer-body (rot13 the message body)." t nil)
2720
2721 (autoload 'message-mail "message" "\
2722 Start editing a mail message to be sent." t nil)
2723
2724 (autoload 'message-news "message" "\
2725 Start editing a news article to be sent." t nil)
2726
2727 (autoload 'message-reply "message" "\
2728 Start editing a reply to the article in the current buffer." t nil)
2729
2730 (autoload 'message-wide-reply "message" nil t nil)
2731
2732 (autoload 'message-followup "message" nil t nil)
2733
2734 (autoload 'message-cancel-news "message" "\
2735 Cancel an article you posted." t nil)
2736
2737 (autoload 'message-supersede "message" "\
2738 Start composing a message to supersede the current message.
2739 This is done simply by taking the old article and adding a Supersedes
2740 header line with the old Message-ID." t nil)
2741
2742 (autoload 'message-recover "message" "\
2743 Reread contents of current buffer from its last auto-save file." t nil)
2744
2745 (autoload 'message-forward "message" "\
2746 Forward the current message via mail.
2747 Optional NEWS will use news to forward instead of mail." t nil)
2748
2749 (autoload 'message-resend "message" "\
2750 Resend the current article to ADDRESS." t nil)
2751
2752 (autoload 'message-bounce "message" "\
2753 Re-mail the current message.
2754 This only makes sense if the current message is a bounce message than
2755 contains some mail you have written which has been bounced back to
2756 you." t nil)
2757
2758 (autoload 'message-mail-other-window "message" "\
2759 Like `message-mail' command, but display mail buffer in another window." t nil)
2760
2761 (autoload 'message-mail-other-frame "message" "\
2762 Like `message-mail' command, but display mail buffer in another frame." t nil)
2763
2764 (autoload 'message-news-other-window "message" "\
2765 Start editing a news article to be sent." t nil)
2766
2767 (autoload 'message-news-other-frame "message" "\
2768 Start editing a news article to be sent." t nil)
2769
2770 (autoload 'bold-region "message" "\
2771 Bold all nonblank characters in the region.
2772 Works by overstriking characters.
2773 Called from program, takes two arguments START and END
2774 which specify the range to operate on." t nil)
2775
2776 (autoload 'unbold-region "message" "\
2777 Remove all boldness (overstruck characters) in the region.
2778 Called from program, takes two arguments START and END
2779 which specify the range to operate on." t nil)
2780
2781 ;;;***
2782
2783 ;;;***
2784
2785 ;;;### (autoloads nil "messagexmas" "gnus/messagexmas.el" (12823 45989))
2786 ;;; Generated autoloads from gnus/messagexmas.el
2787
2788 ;;;***
2789
2790 ;;;### (autoloads nil "messcompat" "gnus/messcompat.el" (12852 5837))
2791 ;;; Generated autoloads from gnus/messcompat.el
2792
2793 ;;;***
2794
2795 ;;;### (autoloads nil "nnbabyl" "gnus/nnbabyl.el" (12823 45987))
2796 ;;; Generated autoloads from gnus/nnbabyl.el
2797
2798 ;;;### (autoloads nil "nndb" "gnus/nndb.el" (12740 29838))
2799 ;;; Generated autoloads from gnus/nndb.el
2800
2801 ;;;***
2802
2803 ;;;### (autoloads nil "nndir" "gnus/nndir.el" (12823 45987))
2804 ;;; Generated autoloads from gnus/nndir.el
2805
2806 ;;;***
2807
2808 ;;;### (autoloads nil "nndoc" "gnus/nndoc.el" (12851 23285))
2809 ;;; Generated autoloads from gnus/nndoc.el
2810
2811 ;;;### (autoloads nil "nndraft" "gnus/nndraft.el" (12727 30258))
2812 ;;; Generated autoloads from gnus/nndraft.el
2813
2814 ;;;***
2815
2816 ;;;***
2817
2818 ;;;### (autoloads nil "nneething" "gnus/nneething.el" (12823 45987))
2819 ;;; Generated autoloads from gnus/nneething.el
2820
2821 ;;;### (autoloads (nnfolder-generate-active-file) "nnfolder" "gnus/nnfolder.el" (12823 45988))
2822 ;;; Generated autoloads from gnus/nnfolder.el
2823
2824 (autoload 'nnfolder-generate-active-file "nnfolder" "\
2825 Look for mbox folders in the nnfolder directory and make them into groups." t nil)
2826
2827 ;;;***
2828
2829 ;;;***
2830
2831 ;;;### (autoloads nil "nnheader" "gnus/nnheader.el" (12823 45988))
2832 ;;; Generated autoloads from gnus/nnheader.el
2833
2834 ;;;### (autoloads nil "nnheaderxm" "gnus/nnheaderxm.el" (12740 29470))
2835 ;;; Generated autoloads from gnus/nnheaderxm.el
2836
2837 ;;;### (autoloads (nnkiboze-generate-groups) "nnkiboze" "gnus/nnkiboze.el" (12727 30150))
2838 ;;; Generated autoloads from gnus/nnkiboze.el
2839
2840 (autoload 'nnkiboze-generate-groups "nnkiboze" "\
2841 Usage: emacs -batch -l nnkiboze -f nnkiboze-generate-groups
2842 Finds out what articles are to be part of the nnkiboze groups." t nil)
2843
2844 ;;;***
2845
2846 ;;;***
2847
2848 ;;;### (autoloads nil "nnmail" "gnus/nnmail.el" (12823 45988))
2849 ;;; Generated autoloads from gnus/nnmail.el
2850
2851 ;;;***
2852
2853 ;;;### (autoloads nil "nnmbox" "gnus/nnmbox.el" (12823 45988))
2854 ;;; Generated autoloads from gnus/nnmbox.el
2855
2856 ;;;***
2857
2858 ;;;### (autoloads nil "nnmh" "gnus/nnmh.el" (12823 45988))
2859 ;;; Generated autoloads from gnus/nnmh.el
2860
2861 ;;;### (autoloads (nnml-generate-nov-databases) "nnml" "gnus/nnml.el" (12745 38029))
2862 ;;; Generated autoloads from gnus/nnml.el
2863
2864 (autoload 'nnml-generate-nov-databases "nnml" "\
2865 Generate nov databases in all nnml directories." t nil)
2866
2867 ;;;***
2868
2869 ;;;### (autoloads nil "nnoo" "gnus/nnoo.el" (12727 30260))
2870 ;;; Generated autoloads from gnus/nnoo.el
2871
2872 ;;;### (autoloads (nnsoup-revert-variables nnsoup-set-variables nnsoup-pack-replies) "nnsoup" "gnus/nnsoup.el" (12727 30260))
2873 ;;; Generated autoloads from gnus/nnsoup.el
2874
2875 (autoload 'nnsoup-pack-replies "nnsoup" "\
2876 Make an outbound package of SOUP replies." t nil)
2877
2878 (autoload 'nnsoup-set-variables "nnsoup" "\
2879 Use the SOUP methods for posting news and mailing mail." t nil)
2880
2881 (autoload 'nnsoup-revert-variables "nnsoup" "\
2882 Revert posting and mailing methods to the standard Emacs methods." t nil)
2883
2884 ;;;***
2885
2886 ;;;***
2887
2888 ;;;### (autoloads nil "nnspool" "gnus/nnspool.el" (12823 45985))
2889 ;;; Generated autoloads from gnus/nnspool.el
2890
2891 ;;;***
2892
2893 ;;;### (autoloads nil "nntp" "gnus/nntp.el" (12823 45986))
2894 ;;; Generated autoloads from gnus/nntp.el
2895
2896 ;;;***
2897
2898 ;;;### (autoloads nil "nnvirtual" "gnus/nnvirtual.el" (12740 29836))
2899 ;;; Generated autoloads from gnus/nnvirtual.el
2900
2901 ;;;### (autoloads (gnus-score-mode) "score-mode" "gnus/score-mode.el" (12823 45989))
2902 ;;; Generated autoloads from gnus/score-mode.el
2903
2904 (autoload 'gnus-score-mode "score-mode" "\
2905 Mode for editing Gnus score files.
2906 This mode is an extended emacs-lisp mode.
2907
2908 \\{gnus-score-mode-map}" t nil)
2909
2910 ;;;***
2911
2912 ;;;### (autoloads (gnus-smiley-display smiley-buffer smiley-region) "smiley" "gnus/smiley.el" (12823 45989))
2913 ;;; Generated autoloads from gnus/smiley.el
2914
2915 (autoload 'smiley-region "smiley" "\
2916 Smilify the region between point and mark." t nil)
2917
2918 (autoload 'smiley-buffer "smiley" nil t nil)
2919
2920 (autoload 'gnus-smiley-display "smiley" nil t nil)
2921
2922 ;;;***
2923
2924 ;;;***
2925
2926 ;;;### (autoloads nil "adapt" "hm--html-menus/adapt.el" (12851 23327))
2927 ;;; Generated autoloads from hm--html-menus/adapt.el
2928
2929 ;;;***
2930
2931 ;;;### (autoloads nil "hm--date" "hm--html-menus/hm--date.el" (12851 23329))
2932 ;;; Generated autoloads from hm--html-menus/hm--date.el
2933
2934 ;;;***
2935
2936 ;;;### (autoloads nil "hm--html-configuration" "hm--html-menus/hm--html-configuration.el" (12851 23333))
2937 ;;; Generated autoloads from hm--html-menus/hm--html-configuration.el
2938
2939 ;;;***
2940
2941 ;;;### (autoloads nil "hm--html-drag-and-drop" "hm--html-menus/hm--html-drag-and-drop.el" (12851 23386))
2942 ;;; Generated autoloads from hm--html-menus/hm--html-drag-and-drop.el
2943
2944 ;;;***
2945
2946 ;;;***
2947
2948 ;;;### (autoloads nil "hm--html-keys" "hm--html-menus/hm--html-keys.el" (12861 22552))
2949 ;;; Generated autoloads from hm--html-menus/hm--html-keys.el
2950
2951 ;;;### (autoloads nil "hm--html-menu" "hm--html-menus/hm--html-menu.el" (12851 23329))
2952 ;;; Generated autoloads from hm--html-menus/hm--html-menu.el
2953
2954 ;;;### (autoloads (hm--html-minor-mode hm--html-mode) "hm--html-mode" "hm--html-menus/hm--html-mode.el" (12851 23385))
2955 ;;; Generated autoloads from hm--html-menus/hm--html-mode.el
2956
2957 (autoload 'hm--html-mode "hm--html-mode" "\
2958 Major mode for editing HTML hypertext documents.
2959 Special commands:\\{hm--html-mode-map}
2960 Turning on hm--html-mode calls the value of the variable hm--html-mode-hook,
2961 if that value is non-nil." t nil)
2962
2963 (autoload 'hm--html-minor-mode "hm--html-mode" "\
2964 Toggle hm--html-minor-mode.
2965 With arg, turn hm--html-minor-mode on iff arg is positive." t nil)
2966
2967 ;;;***
2968
2969 ;;;***
2970
2971 ;;;### (autoloads nil "hm--html" "hm--html-menus/hm--html.el" (12851 23333))
2972 ;;; Generated autoloads from hm--html-menus/hm--html.el
2973
2974 ;;;### (autoloads nil "html-mode" "hm--html-menus/html-mode.el" (12638 48648))
2975 ;;; Generated autoloads from hm--html-menus/html-mode.el
2976
2977 ;;;### (autoloads (html-view-get-display html-view-goto-url html-view-view-buffer html-view-view-file html-view-start-mosaic) "html-view" "hm--html-menus/html-view.el" (12318 54261))
2978 ;;; Generated autoloads from hm--html-menus/html-view.el
2979
2980 (autoload 'html-view-start-mosaic "html-view" "\
2981 Start Mosaic." t nil)
2982
2983 (autoload 'html-view-view-file "html-view" "\
2984 View an html file with Mosaic." t nil)
2985
2986 (autoload 'html-view-view-buffer "html-view" "\
2987 View html buffer with Mosaic.
2988 If BUFFER-TO-VIEW is nil, then the current buffer is used." t nil)
2989
2990 (autoload 'html-view-goto-url "html-view" "\
2991 Goto an URL in Mosaic." t nil)
2992
2993 (autoload 'html-view-get-display "html-view" "\
2994 Get the display for Mosaic." t nil)
2995
2996 ;;;***
2997
2998 ;;;***
2999
3000 ;;;### (autoloads nil "internal-drag-and-drop" "hm--html-menus/internal-drag-and-drop.el" (12851 23387))
3001 ;;; Generated autoloads from hm--html-menus/internal-drag-and-drop.el
3002
3003 ;;;***
3004
3005 ;;;### (autoloads nil "tmpl-minor-mode" "hm--html-menus/tmpl-minor-mode.el" (12852 6134))
3006 ;;; Generated autoloads from hm--html-menus/tmpl-minor-mode.el
3007
3008 ;;;### (autoloads nil "hact" "hyperbole/hact.el" (12178 36891))
3009 ;;; Generated autoloads from hyperbole/hact.el
3010
3011 ;;;***
3012
3013 ;;;### (autoloads nil "hactypes" "hyperbole/hactypes.el" (12558 62953))
3014 ;;; Generated autoloads from hyperbole/hactypes.el
3015
3016 ;;;### (autoloads nil "hargs" "hyperbole/hargs.el" (12378 2532))
3017 ;;; Generated autoloads from hyperbole/hargs.el
3018
3019 ;;;***
3020
3021 ;;;### (autoloads nil "hbdata" "hyperbole/hbdata.el" (12178 36894))
3022 ;;; Generated autoloads from hyperbole/hbdata.el
3023
3024 ;;;***
3025
3026 ;;;### (autoloads nil "hbmap" "hyperbole/hbmap.el" (12558 62954))
3027 ;;; Generated autoloads from hyperbole/hbmap.el
3028
3029 ;;;***
3030
3031 ;;;### (autoloads nil "hbut" "hyperbole/hbut.el" (12558 62955))
3032 ;;; Generated autoloads from hyperbole/hbut.el
3033
3034 ;;;***
3035
3036 ;;;### (autoloads nil "hgnus" "hyperbole/hgnus.el" (12558 62955))
3037 ;;; Generated autoloads from hyperbole/hgnus.el
3038
3039 ;;;***
3040
3041 ;;;### (autoloads nil "hhist" "hyperbole/hhist.el" (12178 36897))
3042 ;;; Generated autoloads from hyperbole/hhist.el
3043
3044 ;;;***
3045
3046 ;;;### (autoloads nil "hib-doc-id" "hyperbole/hib-doc-id.el" (12178 36897))
3047 ;;; Generated autoloads from hyperbole/hib-doc-id.el
3048
3049 ;;;***
3050
3051 ;;;### (autoloads nil "hib-kbd" "hyperbole/hib-kbd.el" (12558 62956))
3052 ;;; Generated autoloads from hyperbole/hib-kbd.el
3053
3054 ;;;***
3055
3056 ;;;### (autoloads nil "hibtypes" "hyperbole/hibtypes.el" (12558 62957))
3057 ;;; Generated autoloads from hyperbole/hibtypes.el
3058
3059 ;;;***
3060
3061 ;;;### (autoloads nil "hinit" "hyperbole/hinit.el" (12558 62958))
3062 ;;; Generated autoloads from hyperbole/hinit.el
3063
3064 ;;;***
3065
3066 ;;;### (autoloads nil "hlvar" "hyperbole/hlvar.el" (12264 40810))
3067 ;;; Generated autoloads from hyperbole/hlvar.el
3068
3069 ;;;***
3070
3071 ;;;### (autoloads (hmail:compose) "hmail" "hyperbole/hmail.el" (12558 62959))
3072 ;;; Generated autoloads from hyperbole/hmail.el
3073
3074 (autoload 'hmail:compose "hmail" "\
3075 Compose mail with ADDRESS and evaluation of EXPR.
3076 Optional SUBJECT and HELP message may also be given." t nil)
3077
3078 ;;;***
3079
3080 ;;;### (autoloads nil "hmh" "hyperbole/hmh.el" (12222 24177))
3081 ;;; Generated autoloads from hyperbole/hmh.el
3082
3083 ;;;***
3084
3085 ;;;### (autoloads nil "hmoccur" "hyperbole/hmoccur.el" (12178 36902))
3086 ;;; Generated autoloads from hyperbole/hmoccur.el
3087
3088 ;;;***
3089
3090 ;;;### (autoloads (Info-handle-in-note smart-info-assist smart-info) "hmous-info" "hyperbole/hmous-info.el" (12558 62960))
3091 ;;; Generated autoloads from hyperbole/hmous-info.el
3092
3093 (autoload 'smart-info "hmous-info" "\
3094 Walks through Info documentation networks using one key or mouse key.
3095
3096 If key is pressed within:
3097 (1) the first line of an Info Menu Entry or Cross Reference, the desired node
3098 is found;
3099 (2) the Up, Next, or Previous entries of a Node Header (first line),
3100 the desired node is found;
3101 (3) the File entry of a Node Header (first line),
3102 the 'Top' node within that file is found;
3103 (4) at the end of the current node, the Next node is found (this will
3104 descend subtrees if the function 'Info-global-next' is bound);
3105 (5) anywhere else (e.g. at the end of a line), the current node entry is
3106 scrolled up one windowful.
3107
3108 Returns t if key is pressed within an Info Node Header, Cross Reference,
3109 or a Menu; otherwise returns nil." t nil)
3110
3111 (autoload 'smart-info-assist "hmous-info" "\
3112 Walks through Info documentation networks using one assist-key or mouse assist-key.
3113
3114 If assist-key is pressed within:
3115 (1) the first line of an Info Menu Entry or Cross Reference, the desired node
3116 is found;
3117 (2) the Up, Next, or Previous entries of a Node Header (first line),
3118 the last node in the history list is found;
3119 (3) the File entry of a Node Header (first line),
3120 the 'DIR' root-level node is found;
3121 (4) at the end of the current node, the Previous node is found (this will
3122 return from subtrees if the function 'Info-global-prev is bound);
3123 (5) anywhere else (e.g. at the end of a line), the current node entry is
3124 scrolled down one windowful.
3125
3126 Returns t if assist-key is pressed within an Info Node Header, Cross Reference,
3127 or a Menu; otherwise returns nil." t nil)
3128
3129 (autoload 'Info-handle-in-note "hmous-info" "\
3130 Follows an Info cross-reference.
3131 If point is within the first line of an Info note (cross-reference), follows
3132 cross-reference and returns t; otherwise returns nil." nil nil)
3133
3134 ;;;***
3135
3136 ;;;### (autoloads nil "hmouse-drv" "hyperbole/hmouse-drv.el" (12558 62962))
3137 ;;; Generated autoloads from hyperbole/hmouse-drv.el
3138
3139 ;;;### (autoloads nil "hmouse-key" "hyperbole/hmouse-key.el" (12378 2537))
3140 ;;; Generated autoloads from hyperbole/hmouse-key.el
3141
3142 ;;;***
3143
3144 ;;;### (autoloads nil "hmouse-mod" "hyperbole/hmouse-mod.el" (12178 36905))
3145 ;;; Generated autoloads from hyperbole/hmouse-mod.el
3146
3147 ;;;### (autoloads nil "hmouse-reg" "hyperbole/hmouse-reg.el" (12378 2537))
3148 ;;; Generated autoloads from hyperbole/hmouse-reg.el
3149
3150 ;;;***
3151
3152 ;;;### (autoloads nil "hmouse-sh" "hyperbole/hmouse-sh.el" (12378 2538))
3153 ;;; Generated autoloads from hyperbole/hmouse-sh.el
3154
3155 ;;;### (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" (12378 2539))
3156 ;;; Generated autoloads from hyperbole/hmouse-tag.el
3157
3158 (autoload 'smart-asm-at-tag-p "hmouse-tag" "\
3159 Return assembly tag name that point is within, else nil." nil nil)
3160
3161 (autoload 'smart-c-at-tag-p "hmouse-tag" "\
3162 Return C tag name that point is within, else nil." nil nil)
3163
3164 (autoload 'smart-c++ "hmouse-tag" "\
3165 Jumps to the definition of optional C++ IDENTIFIER or the one at point.
3166 Optional second arg NEXT means jump to next matching C++ tag.
3167
3168 It assumes that its caller has already checked that the key was pressed in an
3169 appropriate buffer and has moved the cursor to the selected buffer.
3170
3171 If:
3172 (1) on a '#include' statement, the include file is displayed;
3173 Look for include file in directory lists 'smart-c-cpp-include-dirs'
3174 and 'smart-c-include-dirs'.
3175 (2) on a C++ identifier, the identifier definition is displayed,
3176 assuming the identifier is found within an 'etags' generated tag file
3177 in the current directory or any of its ancestor directories.
3178 (3) if 'smart-c-use-lib-man' is non-nil, the C++ identifier is
3179 recognized as a library symbol, and a man page is found for the
3180 identifier, then the man page is displayed." t nil)
3181
3182 (autoload 'smart-c++-oobr "hmouse-tag" "\
3183 Jumps to the definition of selected C++ construct via OO-Browser support.
3184 Optional JUNK is ignored. Does nothing if the OO-Browser is not available.
3185
3186 It assumes that its caller has already checked that the key was pressed in an
3187 appropriate buffer and has moved the cursor to the selected buffer.
3188
3189 If key is pressed:
3190 (1) on a '#include' statement, the include file is displayed;
3191 Look for include file in directory lists 'smart-c-cpp-include-dirs'
3192 and 'smart-c-include-dirs'.
3193 (2) within a method declaration, its definition is displayed;
3194 (3) on a class name, the class definition is shown.
3195
3196 (2) and (3) require that an OO-Browser Environment has been loaded with
3197 the {M-x br-env-load RTN} command." t nil)
3198
3199 (autoload 'smart-fortran-at-tag-p "hmouse-tag" "\
3200 Return Fortran tag name that point is within, else nil." nil nil)
3201
3202 (autoload 'smart-objc "hmouse-tag" "\
3203 Jumps to the definition of optional Objective-C IDENTIFIER or the one at point.
3204 Optional second arg NEXT means jump to next matching Objective-C tag.
3205
3206 It assumes that its caller has already checked that the key was pressed in an
3207 appropriate buffer and has moved the cursor to the selected buffer.
3208
3209 If:
3210 (1) on a '#include' statement, the include file is displayed;
3211 Look for include file in directory lists 'smart-c-cpp-include-dirs'
3212 and 'smart-c-include-dirs'.
3213 (2) on an Objective-C identifier, the identifier definition is displayed,
3214 assuming the identifier is found within an 'etags' generated tag file
3215 in the current directory or any of its ancestor directories.
3216 (3) if 'smart-c-use-lib-man' is non-nil, the Objective-C identifier is
3217 recognized as a library symbol, and a man page is found for the
3218 identifier, then the man page is displayed." t nil)
3219
3220 (autoload 'smart-objc-oobr "hmouse-tag" "\
3221 Jumps to the definition of selected Objective-C construct via OO-Browser support.
3222 Optional JUNK is ignored. Does nothing if the OO-Browser is not available.
3223
3224 It assumes that its caller has already checked that the key was pressed in an
3225 appropriate buffer and has moved the cursor to the selected buffer.
3226
3227 If key is pressed:
3228 (1) on a '#include' statement, the include file is displayed;
3229 Look for include file in directory lists 'smart-c-cpp-include-dirs'
3230 and 'smart-c-include-dirs'.
3231 (2) within a method declaration, its definition is displayed;
3232 (3) on a class name, the class definition is shown.
3233
3234 (2) and (3) require that an OO-Browser Environment has been loaded with
3235 the {M-x br-env-load RTN} command." t nil)
3236
3237 (autoload 'smart-tags-file-path "hmouse-tag" "\
3238 Expand relative FILE name by looking it up in the nearest tags file.
3239 Return FILE unchanged if it exists relative to the current directory or
3240 cannot be expanded via a tags file." nil nil)
3241
3242 (autoload 'smart-tags-file "hmouse-tag" "\
3243 Return appropriate tags file name for CURR-FILENAME or 'tags-file-name'." nil nil)
3244
3245 ;;;***
3246
3247 ;;;### (autoloads nil "hpath" "hyperbole/hpath.el" (12558 62962))
3248 ;;; Generated autoloads from hyperbole/hpath.el
3249
3250 ;;;***
3251
3252 ;;;### (autoloads nil "hrmail" "hyperbole/hrmail.el" (12222 24179))
3253 ;;; Generated autoloads from hyperbole/hrmail.el
3254
3255 ;;;***
3256
3257 ;;;### (autoloads nil "hsite-ex" "hyperbole/hsite-ex.el" (12558 62963))
3258 ;;; Generated autoloads from hyperbole/hsite-ex.el
3259
3260 ;;;***
3261
3262 ;;;### (autoloads nil "hsite" "hyperbole/hsite.el" (12558 62974))
3263 ;;; Generated autoloads from hyperbole/hsite.el
3264
3265 ;;;***
3266
3267 ;;;### (autoloads nil "hsmail" "hyperbole/hsmail.el" (12331 54478))
3268 ;;; Generated autoloads from hyperbole/hsmail.el
3269
3270 ;;;***
3271
3272 ;;;### (autoloads nil "hsys-hbase" "hyperbole/hsys-hbase.el" (12558 62963))
3273 ;;; Generated autoloads from hyperbole/hsys-hbase.el
3274
3275 ;;;***
3276
3277 ;;;### (autoloads nil "hsys-w3" "hyperbole/hsys-w3.el" (12558 62964))
3278 ;;; Generated autoloads from hyperbole/hsys-w3.el
3279
3280 ;;;***
3281
3282 ;;;### (autoloads nil "hsys-wais" "hyperbole/hsys-wais.el" (12558 62965))
3283 ;;; Generated autoloads from hyperbole/hsys-wais.el
3284
3285 ;;;***
3286
3287 ;;;### (autoloads nil "hsys-www" "hyperbole/hsys-www.el" (12178 36913))
3288 ;;; Generated autoloads from hyperbole/hsys-www.el
3289
3290 ;;;***
3291
3292 ;;;### (autoloads nil "htz" "hyperbole/htz.el" (12285 55426))
3293 ;;; Generated autoloads from hyperbole/htz.el
3294
3295 ;;;***
3296
3297 ;;;### (autoloads nil "hui-em19-b" "hyperbole/hui-em19-b.el" (12558 62965))
3298 ;;; Generated autoloads from hyperbole/hui-em19-b.el
3299
3300 ;;;***
3301
3302 ;;;### (autoloads nil "hui-ep-but" "hyperbole/hui-ep-but.el" (12178 36916))
3303 ;;; Generated autoloads from hyperbole/hui-ep-but.el
3304
3305 ;;;***
3306
3307 ;;;### (autoloads nil "hui-epV4-b" "hyperbole/hui-epV4-b.el" (12178 36916))
3308 ;;; Generated autoloads from hyperbole/hui-epV4-b.el
3309
3310 ;;;***
3311
3312 ;;;### (autoloads nil "hui-menu" "hyperbole/hui-menu.el" (12558 62975))
3313 ;;; Generated autoloads from hyperbole/hui-menu.el
3314
3315 ;;;***
3316
3317 ;;;### (autoloads nil "hui-mini" "hyperbole/hui-mini.el" (12558 63020))
3318 ;;; Generated autoloads from hyperbole/hui-mini.el
3319
3320 ;;;***
3321
3322 ;;;### (autoloads nil "hui-mouse" "hyperbole/hui-mouse.el" (12558 62966))
3323 ;;; Generated autoloads from hyperbole/hui-mouse.el
3324
3325 ;;;***
3326
3327 ;;;### (autoloads nil "hui-window" "hyperbole/hui-window.el" (12558 62968))
3328 ;;; Generated autoloads from hyperbole/hui-window.el
3329
3330 ;;;***
3331
3332 ;;;### (autoloads nil "hui-xe-but" "hyperbole/hui-xe-but.el" (12558 62969))
3333 ;;; Generated autoloads from hyperbole/hui-xe-but.el
3334
3335 ;;;***
3336
3337 ;;;### (autoloads nil "hui" "hyperbole/hui.el" (12351 16413))
3338 ;;; Generated autoloads from hyperbole/hui.el
3339
3340 ;;;***
3341
3342 ;;;### (autoloads (var:append) "hvar" "hyperbole/hvar.el" (12178 36921))
3343 ;;; Generated autoloads from hyperbole/hvar.el
3344
3345 (autoload 'var:append "hvar" "\
3346 Appends to value held by VAR-SYMBOL-NAME, LIST-TO-ADD. Returns new value.
3347 If VAR-SYMBOL-NAME is unbound, it is set to LIST-TO-ADD.
3348 Often used to append to 'hook' variables." nil nil)
3349
3350 ;;;***
3351
3352 ;;;### (autoloads nil "hversion" "hyperbole/hversion.el" (12558 62969))
3353 ;;; Generated autoloads from hyperbole/hversion.el
3354
3355 ;;;***
3356
3357 ;;;### (autoloads nil "hvm" "hyperbole/hvm.el" (12285 55427))
3358 ;;; Generated autoloads from hyperbole/hvm.el
3359
3360 ;;;### (autoloads (hypb:configuration) "hypb" "hyperbole/hypb.el" (12558 62970))
3361 ;;; Generated autoloads from hyperbole/hypb.el
3362
3363 (autoload 'hypb:configuration "hypb" "\
3364 Insert Emacs configuration information at the end of optional OUT-BUF or the current buffer." nil nil)
3365
3366 ;;;***
3367
3368 ;;;### (autoloads nil "hyperbole" "hyperbole/hyperbole.el" (12558 62971))
3369 ;;; Generated autoloads from hyperbole/hyperbole.el
3370
3371 (defvar action-key-url-function 'w3-fetch "\
3372 Value is a function of one argument, a url, which displays the url referent.
3373 Possible values are:
3374 w3-fetch - display using the W3 Emacs web browser;
3375 highlight-headers-follow-url-netscape - display in Netscape;
3376 highlight-headers-follow-url-mosaic - display in Mosaic.")
3377
3378 (defvar kimport:mode-alist '((t . kimport:text) (outline-mode . kimport:star-outline)) "\
3379 Alist of (major-mode . importation-function) elements.
3380 This determines the type of importation done on a file when `kimport:file' is
3381 called if the major mode of the import file matches the car of an element in
3382 this list. If there is no match, then `kimport:suffix-alist' is checked. If
3383 that yields no match, the element in this list whose car is 't is used. It
3384 normally does an import of a koutline or text file.
3385
3386 Each importation-function must take two arguments, a buffer/file to import
3387 and a buffer/file into which to insert the imported elements and a third
3388 optional argument, CHILDREN-P, which when non-nil means insert imported cells
3389 as the initial set of children of the current cell, if any.
3390
3391 outline-mode - imported as an Emacs outline whose entries begin with
3392 asterisks;
3393 .kot
3394 .kotl - imported as a structured koutline
3395
3396 all others - imported as text.")
3397
3398 (defvar kimport:suffix-alist '(("\\.otl$" . kimport:star-outline) ("\\.aug$" . kimport:aug-post-outline)) "\
3399 Alist of (buffer-name-suffix-regexp . importation-function) elements.
3400 This determines the type of importation done on a file when `kimport:file' is
3401 called. Each importation-function must take two arguments, a buffer/file to
3402 import and a buffer/file into which to insert the imported elements and a
3403 third optional argument, CHILDREN-P, which when non-nil means insert imported
3404 cells as the initial set of children of the current cell, if any.
3405
3406 .otl - imported as an Emacs outline whose entries begin with asterisks;
3407 .kot
3408 .kotl - imported as a structured koutline
3409 .aug - imported as an Augment post-numbered outline.")
3410
3411 ;;;***
3412
3413 ;;;### (autoloads nil "set" "hyperbole/set.el" (12178 36925))
3414 ;;; Generated autoloads from hyperbole/set.el
3415
3416 ;;;### (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" (12178 36925))
3417 ;;; Generated autoloads from hyperbole/wconfig.el
3418
3419 (autoload 'wconfig-add-by-name "wconfig" "\
3420 Saves the current window configuration under the string NAME.
3421 When called interactively and a window configuration already exists under
3422 NAME, confirms whether or not to replace it." t nil)
3423
3424 (autoload 'wconfig-delete-by-name "wconfig" "\
3425 Deletes window configuration saved under NAME." t nil)
3426
3427 (autoload 'wconfig-restore-by-name "wconfig" "\
3428 Restores window configuration saved under NAME." t nil)
3429
3430 (autoload 'wconfig-delete-pop "wconfig" "\
3431 Replaces current window config with most recently saved config in ring.
3432 Then deletes this new configuration from the ring." t nil)
3433
3434 (autoload 'wconfig-ring-save "wconfig" "\
3435 Saves the current window configuration onto the save ring.
3436 Use {\\[wconfig-yank-pop]} to restore it at a later time." t nil)
3437
3438 (autoload 'wconfig-yank-pop "wconfig" "\
3439 Replaces current window config with prefix arg Nth prior one in save ring.
3440 Interactively, default value of N = 1, meaning the last saved window
3441 configuration is displayed.
3442
3443 The sequence of window configurations wraps around, so that after the oldest
3444 one comes the newest one." t nil)
3445
3446 ;;;***
3447
3448 ;;;### (autoloads (rolo-logic) "wrolo-logic" "hyperbole/wrolo-logic.el" (12178 36926))
3449 ;;; Generated autoloads from hyperbole/wrolo-logic.el
3450
3451 (autoload 'rolo-logic "wrolo-logic" "\
3452 Apply FUNC to all entries in optional IN-BUFS, display entries where FUNC is non-nil.
3453 If IN-BUFS is nil, 'rolo-file-list' is used. If optional COUNT-ONLY is
3454 non-nil, don't display entries, return count of matching entries only. If
3455 optional INCLUDE-SUB-ENTRIES flag is non-nil, FUNC will be applied across all
3456 sub-entries at once. Default is to apply FUNC to each entry and sub-entry
3457 separately. Entries are displayed with all of their sub-entries unless
3458 INCLUDE-SUB-ENTRIES is nil and optional NO-SUB-ENTRIES-OUT flag is non-nil.
3459 FUNC should use the free variables 'start' and 'end' which contain the limits
3460 of the region on which it should operate. Returns number of applications of
3461 FUNC that return non-nil." t nil)
3462
3463 ;;;***
3464
3465 ;;;### (autoloads nil "wrolo-menu" "hyperbole/wrolo-menu.el" (12558 62975))
3466 ;;; Generated autoloads from hyperbole/wrolo-menu.el
3467
3468 ;;;***
3469
3470 ;;;### (autoloads (rolo-yank rolo-sort rolo-kill rolo-grep rolo-fgrep rolo-edit rolo-display-matches rolo-add) "wrolo" "hyperbole/wrolo.el" (12558 62972))
3471 ;;; Generated autoloads from hyperbole/wrolo.el
3472
3473 (autoload 'rolo-add "wrolo" "\
3474 Adds a new entry in personal rolodex for NAME.
3475 Last name first is best, e.g. \"Smith, John\".
3476 With prefix argument, prompts for optional FILE to add entry within.
3477 NAME may be of the form: parent/child to insert child below a parent
3478 entry which begins with the parent string." t nil)
3479
3480 (autoload 'rolo-display-matches "wrolo" "\
3481 Display optional DISPLAY-BUF buffer of previously found rolodex matches.
3482 If DISPLAY-BUF is nil, use the value in 'rolo-display-buffer'.
3483 Second arg RETURN-TO-BUFFER is the buffer to leave point within after the display." t nil)
3484
3485 (autoload 'rolo-edit "wrolo" "\
3486 Edits a rolodex entry given by optional NAME within 'rolo-file-list'.
3487 With prefix argument, prompts for optional FILE to locate entry within.
3488 With no NAME arg, simply displays FILE or first entry in 'rolo-file-list' in an
3489 editable mode. NAME may be of the form: parent/child to edit child below a
3490 parent entry which begins with the parent string." t nil)
3491
3492 (autoload 'rolo-fgrep "wrolo" "\
3493 Display rolodex entries matching STRING.
3494 To a maximum of optional prefix arg MAX-MATCHES, in file(s) from optional
3495 ROLO-FILE or rolo-file-list. Default is to find all matching entries. Each
3496 entry is displayed with all of its sub-entries. Optional COUNT-ONLY non-nil
3497 means don't retrieve and don't display matching entries. Optional NO-DISPLAY
3498 non-nil means retrieve entries but don't display.
3499
3500 Nil value of MAX-MATCHES means find all matches, t value means find all matches
3501 but omit file headers, negative values mean find up to the inverse of that
3502 number of entries and omit file headers.
3503
3504 Returns number of entries matched. See also documentation for the variable
3505 rolo-file-list." t nil)
3506
3507 (autoload 'rolo-grep "wrolo" "\
3508 Display rolodex entries matching REGEXP.
3509 To a maximum of prefix arg MAX-MATCHES, in buffer(s) from optional ROLO-BUFS or
3510 rolo-file-list. Default is to find all matching entries. Each entry is
3511 displayed with all of its sub-entries. Optional COUNT-ONLY non-nil means don't
3512 retrieve and don't display matching entries. Optional NO-DISPLAY non-nil
3513 means retrieve entries but don't display.
3514
3515 Nil value of MAX-MATCHES means find all matches, t value means find all matches
3516 but omit file headers, negative values mean find up to the inverse of that
3517 number of entries and omit file headers.
3518
3519 Returns number of entries matched. See also documentation for the variable
3520 rolo-file-list." t nil)
3521
3522 (autoload 'rolo-kill "wrolo" "\
3523 Kills a rolodex entry given by NAME within 'rolo-file-list'.
3524 With prefix argument, prompts for optional FILE to locate entry within.
3525 NAME may be of the form: parent/child to kill child below a parent entry
3526 which begins with the parent string.
3527 Returns t if entry is killed, nil otherwise." t nil)
3528
3529 (autoload 'rolo-sort "wrolo" "\
3530 Sorts up to 14 levels of entries in ROLO-FILE (default is personal rolo).
3531 Assumes entries are delimited by one or more '*'characters.
3532 Returns list of number of groupings at each entry level." t nil)
3533
3534 (autoload 'rolo-yank "wrolo" "\
3535 Inserts at point the first rolodex entry matching NAME.
3536 With optional prefix arg, REGEXP-P, treats NAME as a regular expression instead
3537 of a string." t nil)
3538
3539 ;;;***
3540
3541 ;;;### (autoloads nil "bridge" "ilisp/bridge.el" (12071 49092))
3542 ;;; Generated autoloads from ilisp/bridge.el
3543
3544 ;;;***
3545
3546 ;;;### (autoloads nil "comint-ipc" "ilisp/comint-ipc.el" (12071 49086))
3547 ;;; Generated autoloads from ilisp/comint-ipc.el
3548
3549 ;;;***
3550
3551 ;;;***
3552
3553 ;;;### (autoloads nil "comint-v18" "ilisp/comint-v18.el" (12823 45220))
3554 ;;; Generated autoloads from ilisp/comint-v18.el
3555
3556 ;;;### (autoloads nil "completer" "ilisp/completer.el" (12666 32964))
3557 ;;; Generated autoloads from ilisp/completer.el
3558
3559 ;;;***
3560
3561 ;;;### (autoloads nil "ilcompat" "ilisp/ilcompat.el" (12071 49152))
3562 ;;; Generated autoloads from ilisp/ilcompat.el
3563
3564 ;;;### (autoloads nil "ilfsf18" "ilisp/ilfsf18.el" (12071 49153))
3565 ;;; Generated autoloads from ilisp/ilfsf18.el
3566
3567 ;;;***
3568
3569 ;;;### (autoloads nil "ilfsf19" "ilisp/ilfsf19.el" (12071 49154))
3570 ;;; Generated autoloads from ilisp/ilfsf19.el
3571
3572 ;;;***
3573
3574 ;;;### (autoloads nil "ilisp-acl" "ilisp/ilisp-acl.el" (12071 49099))
3575 ;;; Generated autoloads from ilisp/ilisp-acl.el
3576
3577 ;;;***
3578
3579 ;;;### (autoloads nil "ilisp-aut" "ilisp/ilisp-aut.el" (12071 49100))
3580 ;;; Generated autoloads from ilisp/ilisp-aut.el
3581
3582 ;;;***
3583
3584 ;;;### (autoloads nil "ilisp-bat" "ilisp/ilisp-bat.el" (12071 49087))
3585 ;;; Generated autoloads from ilisp/ilisp-bat.el
3586
3587 ;;;***
3588
3589 ;;;### (autoloads nil "ilisp-bug" "ilisp/ilisp-bug.el" (12071 49097))
3590 ;;; Generated autoloads from ilisp/ilisp-bug.el
3591
3592 ;;;***
3593
3594 ;;;### (autoloads nil "ilisp-chs" "ilisp/ilisp-chs.el" (12071 49154))
3595 ;;; Generated autoloads from ilisp/ilisp-chs.el
3596
3597 ;;;***
3598
3599 ;;;### (autoloads nil "ilisp-cl" "ilisp/ilisp-cl.el" (12071 49099))
3600 ;;; Generated autoloads from ilisp/ilisp-cl.el
3601
3602 ;;;***
3603
3604 ;;;### (autoloads nil "ilisp-cmp" "ilisp/ilisp-cmp.el" (12106 7817))
3605 ;;; Generated autoloads from ilisp/ilisp-cmp.el
3606
3607 ;;;***
3608
3609 ;;;### (autoloads nil "ilisp-cmt" "ilisp/ilisp-cmt.el" (12071 49100))
3610 ;;; Generated autoloads from ilisp/ilisp-cmt.el
3611
3612 ;;;***
3613
3614 ;;;### (autoloads nil "ilisp-cmu" "ilisp/ilisp-cmu.el" (12071 49104))
3615 ;;; Generated autoloads from ilisp/ilisp-cmu.el
3616
3617 ;;;***
3618
3619 ;;;### (autoloads nil "ilisp-cpat" "ilisp/ilisp-cpat.el" (12071 49094))
3620 ;;; Generated autoloads from ilisp/ilisp-cpat.el
3621
3622 ;;;***
3623
3624 ;;;### (autoloads nil "ilisp-def" "ilisp/ilisp-def.el" (12071 49103))
3625 ;;; Generated autoloads from ilisp/ilisp-def.el
3626
3627 ;;;***
3628
3629 ;;;### (autoloads nil "ilisp-dia" "ilisp/ilisp-dia.el" (12071 49102))
3630 ;;; Generated autoloads from ilisp/ilisp-dia.el
3631
3632 ;;;***
3633
3634 ;;;### (autoloads nil "ilisp-doc" "ilisp/ilisp-doc.el" (12071 49101))
3635 ;;; Generated autoloads from ilisp/ilisp-doc.el
3636
3637 ;;;***
3638
3639 ;;;### (autoloads nil "ilisp-el" "ilisp/ilisp-el.el" (12071 49104))
3640 ;;; Generated autoloads from ilisp/ilisp-el.el
3641
3642 ;;;***
3643
3644 ;;;### (autoloads nil "ilisp-ext" "ilisp/ilisp-ext.el" (12071 49088))
3645 ;;; Generated autoloads from ilisp/ilisp-ext.el
3646
3647 ;;;***
3648
3649 ;;;### (autoloads nil "ilisp-hi" "ilisp/ilisp-hi.el" (12071 49106))
3650 ;;; Generated autoloads from ilisp/ilisp-hi.el
3651
3652 ;;;***
3653
3654 ;;;### (autoloads nil "ilisp-hlw" "ilisp/ilisp-hlw.el" (12071 49154))
3655 ;;; Generated autoloads from ilisp/ilisp-hlw.el
3656
3657 ;;;***
3658
3659 ;;;### (autoloads nil "ilisp-hnd" "ilisp/ilisp-hnd.el" (12071 49106))
3660 ;;; Generated autoloads from ilisp/ilisp-hnd.el
3661
3662 ;;;***
3663
3664 ;;;### (autoloads nil "ilisp-ind" "ilisp/ilisp-ind.el" (12071 49107))
3665 ;;; Generated autoloads from ilisp/ilisp-ind.el
3666
3667 ;;;***
3668
3669 ;;;### (autoloads nil "ilisp-inp" "ilisp/ilisp-inp.el" (12071 49107))
3670 ;;; Generated autoloads from ilisp/ilisp-inp.el
3671
3672 ;;;***
3673
3674 ;;;### (autoloads nil "ilisp-kcl" "ilisp/ilisp-kcl.el" (12071 49110))
3675 ;;; Generated autoloads from ilisp/ilisp-kcl.el
3676
3677 ;;;***
3678
3679 ;;;### (autoloads nil "ilisp-key" "ilisp/ilisp-key.el" (12071 49109))
3680 ;;; Generated autoloads from ilisp/ilisp-key.el
3681
3682 ;;;***
3683
3684 ;;;### (autoloads nil "ilisp-kil" "ilisp/ilisp-kil.el" (12071 49108))
3685 ;;; Generated autoloads from ilisp/ilisp-kil.el
3686
3687 ;;;***
3688
3689 ;;;### (autoloads nil "ilisp-low" "ilisp/ilisp-low.el" (12071 49109))
3690 ;;; Generated autoloads from ilisp/ilisp-low.el
3691
3692 ;;;***
3693
3694 ;;;### (autoloads nil "ilisp-luc" "ilisp/ilisp-luc.el" (12071 49110))
3695 ;;; Generated autoloads from ilisp/ilisp-luc.el
3696
3697 ;;;***
3698
3699 ;;;### (autoloads nil "ilisp-mak" "ilisp/ilisp-mak.el" (12071 49096))
3700 ;;; Generated autoloads from ilisp/ilisp-mak.el
3701
3702 ;;;***
3703
3704 ;;;### (autoloads nil "ilisp-menu" "ilisp/ilisp-menu.el" (12071 49089))
3705 ;;; Generated autoloads from ilisp/ilisp-menu.el
3706
3707 ;;;***
3708
3709 ;;;### (autoloads nil "ilisp-mnb" "ilisp/ilisp-mnb.el" (12071 49155))
3710 ;;; Generated autoloads from ilisp/ilisp-mnb.el
3711
3712 ;;;***
3713
3714 ;;;### (autoloads nil "ilisp-mod" "ilisp/ilisp-mod.el" (12554 53331))
3715 ;;; Generated autoloads from ilisp/ilisp-mod.el
3716
3717 ;;;***
3718
3719 ;;;### (autoloads nil "ilisp-mov" "ilisp/ilisp-mov.el" (12071 49112))
3720 ;;; Generated autoloads from ilisp/ilisp-mov.el
3721
3722 ;;;***
3723
3724 ;;;### (autoloads nil "ilisp-out" "ilisp/ilisp-out.el" (12142 23804))
3725 ;;; Generated autoloads from ilisp/ilisp-out.el
3726
3727 ;;;### (autoloads nil "ilisp-prc" "ilisp/ilisp-prc.el" (12071 49113))
3728 ;;; Generated autoloads from ilisp/ilisp-prc.el
3729
3730 ;;;***
3731
3732 ;;;### (autoloads nil "ilisp-prn" "ilisp/ilisp-prn.el" (12071 49112))
3733 ;;; Generated autoloads from ilisp/ilisp-prn.el
3734
3735 ;;;***
3736
3737 ;;;### (autoloads nil "ilisp-rng" "ilisp/ilisp-rng.el" (12071 49114))
3738 ;;; Generated autoloads from ilisp/ilisp-rng.el
3739
3740 ;;;***
3741
3742 ;;;### (autoloads nil "ilisp-s2c" "ilisp/ilisp-s2c.el" (12071 49152))
3743 ;;; Generated autoloads from ilisp/ilisp-s2c.el
3744
3745 ;;;***
3746
3747 ;;;### (autoloads nil "ilisp-sch" "ilisp/ilisp-sch.el" (12071 49115))
3748 ;;; Generated autoloads from ilisp/ilisp-sch.el
3749
3750 ;;;***
3751
3752 ;;;### (autoloads nil "ilisp-snd" "ilisp/ilisp-snd.el" (12071 49117))
3753 ;;; Generated autoloads from ilisp/ilisp-snd.el
3754
3755 ;;;***
3756
3757 ;;;### (autoloads nil "ilisp-src" "ilisp/ilisp-src.el" (12071 49090))
3758 ;;; Generated autoloads from ilisp/ilisp-src.el
3759
3760 ;;;***
3761
3762 ;;;### (autoloads nil "ilisp-sym" "ilisp/ilisp-sym.el" (12071 49117))
3763 ;;; Generated autoloads from ilisp/ilisp-sym.el
3764
3765 ;;;***
3766
3767 ;;;### (autoloads nil "ilisp-utl" "ilisp/ilisp-utl.el" (12071 49117))
3768 ;;; Generated autoloads from ilisp/ilisp-utl.el
3769
3770 ;;;***
3771
3772 ;;;### (autoloads nil "ilisp-val" "ilisp/ilisp-val.el" (12071 49117))
3773 ;;; Generated autoloads from ilisp/ilisp-val.el
3774
3775 ;;;***
3776
3777 ;;;### (autoloads nil "ilisp-xfr" "ilisp/ilisp-xfr.el" (12071 49119))
3778 ;;; Generated autoloads from ilisp/ilisp-xfr.el
3779
3780 ;;;***
3781
3782 ;;;### (autoloads nil "ilisp" "ilisp/ilisp.el" (12071 49091))
3783 ;;; Generated autoloads from ilisp/ilisp.el
3784
3785 ;;;***
3786
3787 ;;;### (autoloads nil "illuc19" "ilisp/illuc19.el" (12071 49156))
3788 ;;; Generated autoloads from ilisp/illuc19.el
3789
3790 ;;;***
3791
3792 ;;;### (autoloads nil "ilxemacs" "ilisp/ilxemacs.el" (12657 15247))
3793 ;;; Generated autoloads from ilisp/ilxemacs.el
3794
3795 ;;;***
3796
3797 ;;;### (autoloads nil "iso-ascii" "iso/iso-ascii.el" (12860 15621))
3798 ;;; Generated autoloads from iso/iso-ascii.el
3799
3800 ;;;***
3801
3802 ;;;### (autoloads nil "iso-cvt" "iso/iso-cvt.el" (12860 15621))
3803 ;;; Generated autoloads from iso/iso-cvt.el
3804
3805 ;;;***
3806
3807 ;;;### (autoloads nil "iso-insert" "iso/iso-insert.el" (12860 15622))
3808 ;;; Generated autoloads from iso/iso-insert.el
3809
3810 ;;;***
3811
3812 ;;;### (autoloads nil "iso-swed" "iso/iso-swed.el" (12860 15623))
3813 ;;; Generated autoloads from iso/iso-swed.el
3814
3815 ;;;***
3816
3817 ;;;### (autoloads nil "iso-syntax" "iso/iso-syntax.el" (12860 15624))
3818 ;;; Generated autoloads from iso/iso-syntax.el
3819
3820 ;;;### (autoloads nil "iso8859-1" "iso/iso8859-1.el" (12147 26518))
3821 ;;; Generated autoloads from iso/iso8859-1.el
3822
3823 ;;;***
3824
3825 ;;;***
3826
3827 ;;;### (autoloads nil "swedish" "iso/swedish.el" (12860 15624))
3828 ;;; Generated autoloads from iso/swedish.el
3829
3830 ;;;### (autoloads nil "site-start" "lisp/site-start.el" (12354 5512))
3831 ;;; Generated autoloads from lisp/site-start.el
3832
3833 ;;;### (autoloads (mc-deactivate-passwd mc-install-write-mode mc-install-read-mode) "mailcrypt" "mailcrypt/mailcrypt.el" (12675 57163))
3834 ;;; Generated autoloads from mailcrypt/mailcrypt.el
3835
3836 (autoload 'mc-install-read-mode "mailcrypt" nil t nil)
3837
3838 (autoload 'mc-install-write-mode "mailcrypt" nil t nil)
3839
3840 (autoload 'mc-deactivate-passwd "mailcrypt" "\
3841 *Deactivate the passphrase cache." t nil)
3842
3843 ;;;***
3844
3845 ;;;### (autoloads (mc-pgp-fetch-key mc-scheme-pgp) "mc-pgp" "mailcrypt/mc-pgp.el" (12639 8334))
3846 ;;; Generated autoloads from mailcrypt/mc-pgp.el
3847
3848 (autoload 'mc-scheme-pgp "mc-pgp" nil nil nil)
3849
3850 (autoload 'mc-pgp-fetch-key "mc-pgp" "\
3851 Attempt to fetch a key for addition to PGP keyring. Interactively,
3852 prompt for string matching key to fetch.
3853
3854 Non-interactively, ID must be a pair. The CAR must be a bare Email
3855 address and the CDR a keyID (with \"0x\" prefix). Either, but not
3856 both, may be nil.
3857
3858 Return t if we think we were successful; nil otherwise. Note that nil
3859 is not necessarily an error, since we may have merely fired off an Email
3860 request for the key." t nil)
3861
3862 ;;;***
3863
3864 ;;;### (autoloads (mc-remailer-insert-response-block mc-remailer-encrypt-for-chain mc-remailer-insert-pseudonym) "mc-remail" "mailcrypt/mc-remail.el" (12639 8334))
3865 ;;; Generated autoloads from mailcrypt/mc-remail.el
3866
3867 (autoload 'mc-remailer-insert-pseudonym "mc-remail" "\
3868 Insert pseudonym as a From field in the hash-mark header.
3869
3870 See the documentation for the variable `mc-remailer-pseudonyms' for
3871 more information." t nil)
3872
3873 (autoload 'mc-remailer-encrypt-for-chain "mc-remail" "\
3874 Encrypt message for a remailer chain, prompting for chain to use.
3875
3876 With \\[universal-argument], pause before each encryption." t nil)
3877
3878 (autoload 'mc-remailer-insert-response-block "mc-remail" "\
3879 Insert response block at point, prompting for chain to use.
3880
3881 With \\[universal-argument], enter a recursive edit of the innermost
3882 layer of the block before encrypting it." t nil)
3883
3884 ;;;***
3885
3886 ;;;### (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" (12860 15628))
3887 ;;; Generated autoloads from mailcrypt/mc-toplev.el
3888
3889 (autoload 'mc-cleanup-recipient-headers "mc-toplev" nil nil nil)
3890
3891 (autoload 'mc-encrypt "mc-toplev" "\
3892 *Encrypt the current buffer.
3893
3894 Exact behavior depends on current major mode.
3895
3896 With \\[universal-argument], prompt for User ID to sign as.
3897
3898 With \\[universal-argument] \\[universal-argument], prompt for encryption scheme to use." t nil)
3899
3900 (autoload 'mc-encrypt-message "mc-toplev" "\
3901 *Encrypt a message for RECIPIENTS using the given encryption SCHEME.
3902 RECIPIENTS is a comma separated string. If SCHEME is nil, use the value
3903 of `mc-default-scheme'. Returns t on success, nil otherwise." nil nil)
3904
3905 (autoload 'mc-decrypt "mc-toplev" "\
3906 *Decrypt a message in the current buffer.
3907
3908 Exact behavior depends on current major mode." t nil)
3909
3910 (autoload 'mc-decrypt-message "mc-toplev" "\
3911 Decrypt whatever message is in the current buffer.
3912 Returns a pair (SUCCEEDED . VERIFIED) where SUCCEEDED is t if the encryption
3913 succeeded and VERIFIED is t if it had a valid signature." nil nil)
3914
3915 (autoload 'mc-sign "mc-toplev" "\
3916 *Sign a message in the current buffer.
3917
3918 Exact behavior depends on current major mode.
3919
3920 With one prefix arg, prompts for private key to use, with two prefix args,
3921 also prompts for encryption scheme to use. With negative prefix arg,
3922 inhibits clearsigning (pgp)." t nil)
3923
3924 (autoload 'mc-sign-message "mc-toplev" "\
3925 Clear sign the message." nil nil)
3926
3927 (autoload 'mc-verify "mc-toplev" "\
3928 *Verify a message in the current buffer.
3929
3930 Exact behavior depends on current major mode." t nil)
3931
3932 (autoload 'mc-verify-signature "mc-toplev" "\
3933 *Verify the signature of the signed message in the current buffer.
3934 Show the result as a message in the minibuffer. Returns t if the signature
3935 is verified." nil nil)
3936
3937 (autoload 'mc-insert-public-key "mc-toplev" "\
3938 *Insert your public key at point.
3939 With one prefix arg, prompts for user id to use. With two prefix
3940 args, prompts for encryption scheme." t nil)
3941
3942 (autoload 'mc-snarf "mc-toplev" "\
3943 *Add all public keys in the buffer to your keyring.
3944
3945 Exact behavior depends on current major mode." t nil)
3946
3947 (autoload 'mc-snarf-keys "mc-toplev" "\
3948 *Add all public keys in the buffer to your keyring." t nil)
3949
3950 (autoload 'mc-rmail-summary-verify-signature "mc-toplev" "\
3951 *Verify the signature in the current message." t nil)
3952
3953 (autoload 'mc-rmail-summary-decrypt-message "mc-toplev" "\
3954 *Decrypt the contents of this message" t nil)
3955
3956 (autoload 'mc-rmail-summary-snarf-keys "mc-toplev" "\
3957 *Adds keys from current message to public key ring" t nil)
3958
3959 (autoload 'mc-rmail-verify-signature "mc-toplev" "\
3960 *Verify the signature in the current message." t nil)
3961
3962 (autoload 'mc-rmail-decrypt-message "mc-toplev" "\
3963 *Decrypt the contents of this message" t nil)
3964
3965 (autoload 'mc-vm-verify-signature "mc-toplev" "\
3966 *Verify the signature in the current VM message" t nil)
3967
3968 (autoload 'mc-vm-decrypt-message "mc-toplev" "\
3969 *Decrypt the contents of the current VM message" t nil)
3970
3971 (autoload 'mc-vm-snarf-keys "mc-toplev" "\
3972 *Snarf public key from the contents of the current VM message" t nil)
3973
3974 (autoload 'mc-gnus-verify-signature "mc-toplev" nil t nil)
3975
3976 (autoload 'mc-gnus-snarf-keys "mc-toplev" nil t nil)
3977
3978 (autoload 'mc-gnus-decrypt-message "mc-toplev" nil t nil)
3979
3980 (autoload 'mc-mh-decrypt-message "mc-toplev" "\
3981 Decrypt the contents of the current MH message in the show buffer." t nil)
3982
3983 (autoload 'mc-mh-verify-signature "mc-toplev" "\
3984 *Verify the signature in the current MH message." t nil)
3985
3986 (autoload 'mc-mh-snarf-keys "mc-toplev" nil t nil)
3987
3988 ;;;***
3989
3990 ;;;### (autoloads (mh-letter-mode mh-smail-other-window mh-smail-batch mh-smail) "mh-comp" "mh-e/mh-comp.el" (12657 40619))
3991 ;;; Generated autoloads from mh-e/mh-comp.el
3992
3993 (autoload 'mh-smail "mh-comp" "\
3994 Compose and send mail with the MH mail system.
3995 This function is an entry point to mh-e, the Emacs front end
3996 to the MH mail system.
3997
3998 See documentation of `\\[mh-send]' for more details on composing mail." t nil)
3999
4000 (autoload 'mh-smail-batch "mh-comp" "\
4001 Set up a mail composition draft with the MH mail system.
4002 This function is an entry point to mh-e, the Emacs front end
4003 to the MH mail system. This function does not prompt the user
4004 for any header fields, and thus is suitable for use by programs
4005 that want to create a mail buffer.
4006 Users should use `\\[mh-smail]' to compose mail." nil nil)
4007
4008 (autoload 'mh-smail-other-window "mh-comp" "\
4009 Compose and send mail in other window with the MH mail system.
4010 This function is an entry point to mh-e, the Emacs front end
4011 to the MH mail system.
4012
4013 See documentation of `\\[mh-send]' for more details on composing mail." t nil)
4014
4015 (autoload 'mh-letter-mode "mh-comp" "\
4016 Mode for composing letters in mh-e.\\<mh-letter-mode-map>
4017 When you have finished composing, type \\[mh-send-letter] to send the message
4018 using the MH mail handling system.
4019 See the documentation for \\[mh-edit-mhn] for information on composing MIME
4020 messages.
4021
4022 \\{mh-letter-mode-map}
4023
4024 Variables controlling this mode (defaults in parentheses):
4025
4026 mh-delete-yanked-msg-window (nil)
4027 If non-nil, \\[mh-yank-cur-msg] will delete any windows displaying
4028 the yanked message.
4029
4030 mh-yank-from-start-of-msg (t)
4031 If non-nil, \\[mh-yank-cur-msg] will include the entire message.
4032 If `body', just yank the body (no header).
4033 If nil, only the portion of the message following the point will be yanked.
4034 If there is a region, this variable is ignored.
4035
4036 mh-ins-buf-prefix (\"> \")
4037 String to insert before each non-blank line of a message as it is
4038 inserted in a draft letter.
4039
4040 mh-signature-file-name (\"~/.signature\")
4041 File to be inserted into message by \\[mh-insert-signature].
4042
4043 Upon invoking mh-letter-mode, text-mode-hook and mh-letter-mode-hook are
4044 invoked with no args, if those values are non-nil." t nil)
4045
4046 ;;;***
4047
4048 ;;;### (autoloads (mh-version mh-rmail) "mh-e" "mh-e/mh-e.el" (12747 30151))
4049 ;;; Generated autoloads from mh-e/mh-e.el
4050
4051 (autoload 'mh-rmail "mh-e" "\
4052 Inc(orporate) new mail with MH, or, with arg, scan an MH mail folder.
4053 This function is an entry point to mh-e, the Emacs front end
4054 to the MH mail system." t nil)
4055
4056 (autoload 'mh-version "mh-e" "\
4057 Display version information about mh-e and the MH mail handling system." t nil)
4058
4059 ;;;***
4060
4061 ;;;### (autoloads nil "mh-funcs" "mh-e/mh-funcs.el" (12657 40621))
4062 ;;; Generated autoloads from mh-e/mh-funcs.el
4063
4064 ;;;### (autoloads nil "mh-mime" "mh-e/mh-mime.el" (12657 40622))
4065 ;;; Generated autoloads from mh-e/mh-mime.el
4066
4067 (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")) "\
4068 Legal MIME content types. See documentation for \\[mh-edit-mhn].")
4069
4070 ;;;***
4071
4072 ;;;### (autoloads nil "mh-pick" "mh-e/mh-pick.el" (12657 40622))
4073 ;;; Generated autoloads from mh-e/mh-pick.el
4074
4075 ;;;***
4076
4077 ;;;### (autoloads nil "mh-seq" "mh-e/mh-seq.el" (12657 40624))
4078 ;;; Generated autoloads from mh-e/mh-seq.el
4079
4080 ;;;### (autoloads nil "mh-utils" "mh-e/mh-utils.el" (12860 15630))
4081 ;;; Generated autoloads from mh-e/mh-utils.el
4082
4083 (put 'mh-progs 'risky-local-variable t)
4084
4085 (put 'mh-lib 'risky-local-variable t)
4086
4087 ;;;***
4088
4089 ;;;***
4090
4091 ;;;### (autoloads nil "abbrev" "modes/abbrev.el" (12860 15488))
4092 ;;; Generated autoloads from modes/abbrev.el
4093
4094 ;;;### (autoloads (ada-make-filename-from-adaname ada-mode) "ada-mode" "modes/ada-mode.el" (12860 15512))
4095 ;;; Generated autoloads from modes/ada-mode.el
4096
4097 (autoload 'ada-mode "ada-mode" "\
4098 Ada Mode is the major mode for editing Ada code.
4099
4100 Bindings are as follows: (Note: 'LFD' is control-j.)
4101
4102 Indent line '\\[ada-tab]'
4103 Indent line, insert newline and indent the new line. '\\[newline-and-indent]'
4104
4105 Re-format the parameter-list point is in '\\[ada-format-paramlist]'
4106 Indent all lines in region '\\[ada-indent-region]'
4107 Call external pretty printer program '\\[ada-call-pretty-printer]'
4108
4109 Adjust case of identifiers and keywords in region '\\[ada-adjust-case-region]'
4110 Adjust case of identifiers and keywords in buffer '\\[ada-adjust-case-buffer]'
4111
4112 Call EXTERNAL pretty printer (if you have one) '\\[ada-call-pretty-printer]'
4113
4114 Fill comment paragraph '\\[ada-fill-comment-paragraph]'
4115 Fill comment paragraph and justify each line '\\[ada-fill-comment-paragraph-justify]'
4116 Fill comment paragraph, justify and append postfix '\\[ada-fill-comment-paragraph-postfix]'
4117
4118 Next func/proc/task '\\[ada-next-procedure]' Previous func/proc/task '\\[ada-previous-procedure]'
4119 Next package '\\[ada-next-package]' Previous package '\\[ada-previous-package]'
4120
4121 Goto matching start of current 'end ...;' '\\[ada-move-to-start]'
4122 Goto end of current block '\\[ada-move-to-end]'
4123
4124 Comments are handled using standard GNU Emacs conventions, including:
4125 Start a comment '\\[indent-for-comment]'
4126 Comment region '\\[comment-region]'
4127 Uncomment region '\\[ada-uncomment-region]'
4128 Continue comment on next line '\\[indent-new-comment-line]'
4129
4130 If you use imenu.el:
4131 Display index-menu of functions & procedures '\\[imenu]'
4132
4133 If you use find-file.el:
4134 Switch to other file (Body <-> Spec) '\\[ff-find-other-file]'
4135 or '\\[ff-mouse-find-other-file]
4136 Switch to other file in other window '\\[ada-ff-other-window]'
4137 or '\\[ff-mouse-find-other-file-other-window]
4138 If you use this function in a spec and no body is available, it gets created
4139 with body stubs.
4140
4141 If you use ada-xref.el:
4142 Goto declaration: '\\[ada-point-and-xref]' on the identifier
4143 or '\\[ada-goto-declaration]' with point on the identifier
4144 Complete identifier: '\\[ada-complete-identifier]'
4145 Execute Gnatf: '\\[ada-gnatf-current]'" t nil)
4146
4147 (autoload 'ada-make-filename-from-adaname "ada-mode" "\
4148 Determine the filename of a package/procedure from its own Ada name." t nil)
4149
4150 ;;;***
4151
4152 ;;;### (autoloads (archive-mode) "arc-mode" "modes/arc-mode.el" (12860 15517))
4153 ;;; Generated autoloads from modes/arc-mode.el
4154
4155 (autoload 'archive-mode "arc-mode" "\
4156 Major mode for viewing an archive file in a dired-like way.
4157 You can move around using the usual cursor motion commands.
4158 Letters no longer insert themselves.
4159 Type `e' to pull a file out of the archive and into its own buffer;
4160 or click mouse-2 on the file's line in the archive mode buffer.
4161
4162 If you edit a sub-file of this archive (as with the `e' command) and
4163 save it, the contents of that buffer will be saved back into the
4164 archive.
4165
4166 \\{archive-mode-map}" nil nil)
4167
4168 ;;;***
4169
4170 ;;;### (autoloads (asm-mode) "asm-mode" "modes/asm-mode.el" (12860 15505))
4171 ;;; Generated autoloads from modes/asm-mode.el
4172
4173 (autoload 'asm-mode "asm-mode" "\
4174 Major mode for editing typical assembler code.
4175 Features a private abbrev table and the following bindings:
4176
4177 \\[asm-colon] outdent a preceding label, tab to next tab stop.
4178 \\[tab-to-tab-stop] tab to next tab stop.
4179 \\[asm-newline] newline, then tab to next tab stop.
4180 \\[asm-comment] smart placement of assembler comments.
4181
4182 The character used for making comments is set by the variable
4183 `asm-comment-char' (which defaults to `?;').
4184
4185 Alternatively, you may set this variable in `asm-mode-set-comment-hook',
4186 which is called near the beginning of mode initialization.
4187
4188 Turning on Asm mode runs the hook `asm-mode-hook' at the end of initialization.
4189
4190 Special commands:
4191 \\{asm-mode-map}
4192 " t nil)
4193
4194 ;;;***
4195
4196 ;;;***
4197
4198 ;;;### (autoloads nil "auto-show" "modes/auto-show.el" (12861 45400))
4199 ;;; Generated autoloads from modes/auto-show.el
4200
4201 ;;;### (autoloads (awk-mode) "awk-mode" "modes/awk-mode.el" (12860 15487))
4202 ;;; Generated autoloads from modes/awk-mode.el
4203
4204 (autoload 'awk-mode "awk-mode" "\
4205 Major mode for editing AWK code.
4206 This is much like C mode except for the syntax of comments. It uses
4207 the same keymap as C mode and has the same variables for customizing
4208 indentation. It has its own abbrev table and its own syntax table.
4209
4210 Turning on AWK mode calls the value of the variable `awk-mode-hook'
4211 with no args, if that value is non-nil." t nil)
4212
4213 ;;;***
4214
4215 ;;;***
4216
4217 ;;;### (autoloads nil "bib-mode" "modes/bib-mode.el" (12860 15489))
4218 ;;; Generated autoloads from modes/bib-mode.el
4219
4220 ;;;### (autoloads (bibtex-mode) "bibtex" "modes/bibtex.el" (12823 45223))
4221 ;;; Generated autoloads from modes/bibtex.el
4222
4223 (autoload 'bibtex-mode "bibtex" "\
4224 Major mode for editing bibtex files.
4225
4226 \\{bibtex-mode-map}
4227
4228 A command such as \\[bibtex-Book] will outline the fields for a BibTeX book entry.
4229
4230 The optional fields start with the string OPT, and thus ignored by BibTeX.
4231 The OPT string may be removed from a field with \\[bibtex-remove-OPT].
4232 \\[bibtex-kill-optional-field] kills the current optional field entirely.
4233 \\[bibtex-remove-double-quotes] removes the double-quotes around the text of
4234 the current field. \\[bibtex-empty-field] replaces the text of the current
4235 field with the default \"\".
4236
4237 The command \\[bibtex-clean-entry] cleans the current entry, i.e. (i) removes
4238 double-quotes from entirely numerical fields, (ii) removes OPT from all
4239 non-empty optional fields, (iii) removes all empty optional fields, and (iv)
4240 checks that no non-optional fields are empty.
4241
4242 Use \\[bibtex-find-text] to position the dot at the end of the current field.
4243 Use \\[bibtex-next-field] to move to end of the next field.
4244
4245 The following may be of interest as well:
4246
4247 Functions:
4248 find-bibtex-duplicates
4249 find-bibtex-entry-location
4250 hide-bibtex-entry-bodies
4251 sort-bibtex-entries
4252 validate-bibtex-buffer
4253
4254 Variables:
4255 bibtex-clean-entry-zap-empty-opts
4256 bibtex-entry-field-alist
4257 bibtex-include-OPTannote
4258 bibtex-include-OPTcrossref
4259 bibtex-include-OPTkey
4260 bibtex-maintain-sorted-entries
4261 bibtex-mode-user-optional-fields
4262
4263 Fields:
4264 address
4265 Publisher's address
4266 annote
4267 Long annotation used for annotated bibliographies (begins sentence)
4268 author
4269 Name(s) of author(s), in BibTeX name format
4270 booktitle
4271 Book title when the thing being referenced isn't the whole book.
4272 For book entries, the title field should be used instead.
4273 chapter
4274 Chapter number
4275 crossref
4276 The database key of the entry being cross referenced.
4277 edition
4278 Edition of a book (e.g., \"second\")
4279 editor
4280 Name(s) of editor(s), in BibTeX name format.
4281 If there is also an author field, then the editor field should be
4282 for the book or collection that the work appears in
4283 howpublished
4284 How something strange has been published (begins sentence)
4285 institution
4286 Sponsoring institution
4287 journal
4288 Journal name (macros are provided for many)
4289 key
4290 Alphabetizing and labeling key (needed when no author or editor)
4291 month
4292 Month (macros are provided)
4293 note
4294 To help the reader find a reference (begins sentence)
4295 number
4296 Number of a journal or technical report
4297 organization
4298 Organization (sponsoring a conference)
4299 pages
4300 Page number or numbers (use `--' to separate a range)
4301 publisher
4302 Publisher name
4303 school
4304 School name (for theses)
4305 series
4306 The name of a series or set of books.
4307 An individual book will also have its own title
4308 title
4309 The title of the thing being referenced
4310 type
4311 Type of a technical report (e.g., \"Research Note\") to be used
4312 instead of the default \"Technical Report\"
4313 volume
4314 Volume of a journal or multivolume work
4315 year
4316 Year---should contain only numerals
4317 ---------------------------------------------------------
4318 Entry to this mode calls the value of bibtex-mode-hook if that value is
4319 non-nil." t nil)
4320
4321 ;;;***
4322
4323 ;;;### (autoloads nil "c-comment" "modes/c-comment.el" (12689 65199))
4324 ;;; Generated autoloads from modes/c-comment.el
4325
4326 ;;;### (autoloads nil "c-fill" "modes/c-fill.el" (12559 35044))
4327 ;;; Generated autoloads from modes/c-fill.el
4328
4329 ;;;***
4330
4331 ;;;### (autoloads nil "c-style" "modes/c-style.el" (12559 35045))
4332 ;;; Generated autoloads from modes/c-style.el
4333
4334 ;;;***
4335
4336 ;;;### (autoloads nil "cc-compat" "modes/cc-compat.el" (12559 35048))
4337 ;;; Generated autoloads from modes/cc-compat.el
4338
4339 ;;;***
4340
4341 ;;;### (autoloads nil "cc-guess" "modes/cc-guess.el" (12559 35050))
4342 ;;; Generated autoloads from modes/cc-guess.el
4343
4344 ;;;***
4345
4346 ;;;### (autoloads nil "cc-lobotomy" "modes/cc-lobotomy.el" (12559 35048))
4347 ;;; Generated autoloads from modes/cc-lobotomy.el
4348
4349 ;;;***
4350
4351 ;;;***
4352
4353 ;;;### (autoloads nil "cc-mode" "modes/cc-mode.el" (12851 27450))
4354 ;;; Generated autoloads from modes/cc-mode.el
4355
4356 ;;;### (autoloads (common-lisp-indent-function) "cl-indent" "modes/cl-indent.el" (12860 15491))
4357 ;;; Generated autoloads from modes/cl-indent.el
4358
4359 (autoload 'common-lisp-indent-function "cl-indent" nil nil nil)
4360
4361 ;;;***
4362
4363 ;;;### (autoloads (c-macro-expand) "cmacexp" "modes/cmacexp.el" (12860 15492))
4364 ;;; Generated autoloads from modes/cmacexp.el
4365
4366 (autoload 'c-macro-expand "cmacexp" "\
4367 Expand C macros in the region, using the C preprocessor.
4368 Normally display output in temp buffer, but
4369 prefix arg means replace the region with it.
4370
4371 `c-macro-preprocessor' specifies the preprocessor to use.
4372 Prompt for arguments to the preprocessor (e.g. `-DDEBUG -I ./include')
4373 if the user option `c-macro-prompt-flag' is non-nil.
4374
4375 Noninteractive args are START, END, SUBST.
4376 For use inside Lisp programs, see also `c-macro-expansion'." t nil)
4377
4378 ;;;***
4379
4380 ;;;***
4381
4382 ;;;### (autoloads nil "cperl-mode" "modes/cperl-mode.el" (12823 45235))
4383 ;;; Generated autoloads from modes/cperl-mode.el
4384
4385 ;;;### (autoloads (enriched-decode enriched-encode enriched-mode) "enriched" "modes/enriched.el" (12860 15518))
4386 ;;; Generated autoloads from modes/enriched.el
4387
4388 (autoload 'enriched-mode "enriched" "\
4389 Minor mode for editing text/enriched files.
4390 These are files with embedded formatting information in the MIME standard
4391 text/enriched format.
4392 Turning the mode on runs `enriched-mode-hook'.
4393
4394 More information about Enriched mode is available in the file
4395 etc/enriched.doc in the Emacs distribution directory.
4396
4397 Commands:
4398
4399 \\<enriched-mode-map>\\{enriched-mode-map}" t nil)
4400
4401 (autoload 'enriched-encode "enriched" nil nil nil)
4402
4403 (autoload 'enriched-decode "enriched" nil nil nil)
4404
4405 ;;;***
4406
4407 ;;;### (autoloads (executable-self-display executable-set-magic) "executable" "modes/executable.el" (12860 38184))
4408 ;;; Generated autoloads from modes/executable.el
4409
4410 (autoload 'executable-set-magic "executable" "\
4411 Set this buffer's interpreter to INTERPRETER with optional ARGUMENT.
4412 The variables `executable-magicless-file-regexp', `executable-prefix',
4413 `executable-insert', `executable-query' and `executable-chmod' control
4414 when and how magic numbers are inserted or replaced and scripts made
4415 executable." t nil)
4416
4417 (autoload 'executable-self-display "executable" "\
4418 Turn a text file into a self-displaying Un*x command.
4419 The magic number of such a command displays all lines but itself." t nil)
4420
4421 ;;;***
4422
4423 ;;;### (autoloads (f90-mode) "f90" "modes/f90.el" (12860 15515))
4424 ;;; Generated autoloads from modes/f90.el
4425
4426 (autoload 'f90-mode "f90" "\
4427 Major mode for editing Fortran 90 code in free format.
4428
4429 \\[f90-indent-new-line] corrects current indentation and creates new indented line.
4430 \\[f90-indent-line] indents the current line correctly.
4431 \\[f90-indent-subprogram] indents the current subprogram.
4432
4433 Type `? or `\\[help-command] to display a list of built-in abbrevs for F90 keywords.
4434
4435 Key definitions:
4436 \\{f90-mode-map}
4437
4438 Variables controlling indentation style and extra features:
4439
4440 f90-do-indent
4441 Extra indentation within do blocks. (default 3)
4442 f90-if-indent
4443 Extra indentation within if/select case/where/forall blocks. (default 3)
4444 f90-type-indent
4445 Extra indentation within type/interface/block-data blocks. (default 3)
4446 f90-program-indent
4447 Extra indentation within program/module/subroutine/function blocks.
4448 (default 2)
4449 f90-continuation-indent
4450 Extra indentation applied to continuation lines. (default 5)
4451 f90-comment-region
4452 String inserted by \\[f90-comment-region] at start of each line in
4453 region. (default \"!!!$\")
4454 f90-indented-comment-re
4455 Regexp determining the type of comment to be intended like code.
4456 (default \"!\")
4457 f90-directive-comment-re
4458 Regexp of comment-like directive like \"!HPF\\\\$\", not to be indented.
4459 (default \"!hpf\\\\$\")
4460 f90-break-delimiters
4461 Regexp holding list of delimiters at which lines may be broken.
4462 (default \"[-+*/><=,% \\t]\")
4463 f90-break-before-delimiters
4464 Non-nil causes `f90-do-auto-fill' to break lines before delimiters.
4465 (default t)
4466 f90-beginning-ampersand
4467 Automatic insertion of & at beginning of continuation lines. (default t)
4468 f90-smart-end
4469 From an END statement, check and fill the end using matching block start.
4470 Allowed values are 'blink, 'no-blink, and nil, which determine
4471 whether to blink the matching beginning.) (default 'blink)
4472 f90-auto-keyword-case
4473 Automatic change of case of keywords. (default nil)
4474 The possibilities are 'downcase-word, 'upcase-word, 'capitalize-word.
4475 f90-leave-line-no
4476 Do not left-justify line numbers. (default nil)
4477 f90-startup-message
4478 Set to nil to inhibit message first time F90 mode is used. (default t)
4479 f90-keywords-re
4480 List of keywords used for highlighting/upcase-keywords etc.
4481
4482 Turning on F90 mode calls the value of the variable `f90-mode-hook'
4483 with no args, if that value is non-nil." t nil)
4484
4485 ;;;***
4486
4487 ;;;### (autoloads (follow-delete-other-windows-and-split follow-mode turn-off-follow-mode turn-on-follow-mode) "follow" "modes/follow.el" (12860 15510))
4488 ;;; Generated autoloads from modes/follow.el
4489
4490 (add-minor-mode 'follow-mode nil 'follow-mode-map)
4491
4492 (autoload 'turn-on-follow-mode "follow" "\
4493 Turn on Follow mode. Please see the function `follow-mode'." t nil)
4494
4495 (autoload 'turn-off-follow-mode "follow" "\
4496 Turn off Follow mode. Please see the function `follow-mode'." t nil)
4497
4498 (autoload 'follow-mode "follow" "\
4499 Minor mode which combines windows into one tall virtual window.
4500
4501 The feeling of a \"virtual window\" has been accomplished by the use
4502 of two major techniques:
4503
4504 * The windows always displays adjacent sections of the buffer.
4505 This means that whenever one window is moved, all the
4506 others will follow. (Hence the name Follow Mode.)
4507
4508 * Should the point (cursor) end up outside a window, another
4509 window displaying that point is selected, if possible. This
4510 makes it possible to walk between windows using normal cursor
4511 movement commands.
4512
4513 Follow mode comes to its prime when used on a large screen and two
4514 side-by-side window are used. The user can, with the help of Follow
4515 mode, use two full-height windows as though they would have been
4516 one. Imagine yourself editing a large function, or section of text,
4517 and beeing able to use 144 lines instead of the normal 72... (your
4518 mileage may vary).
4519
4520 To split one large window into two side-by-side windows, the commands
4521 `\\[split-window-horizontally]' or `M-x follow-delete-other-windows-and-split' can be used.
4522
4523 Only windows displayed in the same frame follow each-other.
4524
4525 If the variable `follow-intercept-processes' is non-nil, Follow mode
4526 will listen to the output of processes and redisplay accordingly.
4527 \(This is the default.)
4528
4529 When Follow mode is switched on, the hook `follow-mode-hook'
4530 is called. When turned off, `follow-mode-off-hook' is called.
4531
4532 Keys specific to Follow mode:
4533 \\{follow-mode-map}" t nil)
4534
4535 (autoload 'follow-delete-other-windows-and-split "follow" "\
4536 Create two side by side windows and enter Follow Mode.
4537
4538 Execute this command to display as much as possible of the text
4539 in the selected window. All other windows, in the current
4540 frame, are deleted and the selected window is split in two
4541 side-by-side windows. Follow Mode is activated, hence the
4542 two windows always will display two successive pages.
4543 \(If one window is moved, the other one will follow.)
4544
4545 If ARG is positive, the leftmost window is selected. If it negative,
4546 the rightmost is selected. If ARG is nil, the leftmost window is
4547 selected if the original window is the first one in the frame.
4548
4549 To bind this command to a hotkey, place the following line
4550 in your `~/.emacs' file, replacing [f7] by your favourite key:
4551 (global-set-key [f7] 'follow-delete-other-windows-and-split)" t nil)
4552
4553 ;;;***
4554
4555 ;;;### (autoloads nil "fortran-misc" "modes/fortran-misc.el" (11903 15745))
4556 ;;; Generated autoloads from modes/fortran-misc.el
4557
4558 ;;;### (autoloads (fortran-mode) "fortran" "modes/fortran.el" (12860 15494))
4559 ;;; Generated autoloads from modes/fortran.el
4560
4561 (defvar fortran-tab-mode-default nil "\
4562 *Default tabbing/carriage control style for empty files in Fortran mode.
4563 A value of t specifies tab-digit style of continuation control.
4564 A value of nil specifies that continuation lines are marked
4565 with a character in column 6.")
4566
4567 (autoload 'fortran-mode "fortran" "\
4568 Major mode for editing Fortran code.
4569 \\[fortran-indent-line] indents the current Fortran line correctly.
4570 DO statements must not share a common CONTINUE.
4571
4572 Type ;? or ;\\[help-command] to display a list of built-in abbrevs for Fortran keywords.
4573
4574 Key definitions:
4575 \\{fortran-mode-map}
4576
4577 Variables controlling indentation style and extra features:
4578
4579 comment-start
4580 Normally nil in Fortran mode. If you want to use comments
4581 starting with `!', set this to the string \"!\".
4582 fortran-do-indent
4583 Extra indentation within do blocks. (default 3)
4584 fortran-if-indent
4585 Extra indentation within if blocks. (default 3)
4586 fortran-structure-indent
4587 Extra indentation within structure, union, map and interface blocks.
4588 (default 3)
4589 fortran-continuation-indent
4590 Extra indentation applied to continuation statements. (default 5)
4591 fortran-comment-line-extra-indent
4592 Amount of extra indentation for text within full-line comments. (default 0)
4593 fortran-comment-indent-style
4594 nil means don't change indentation of text in full-line comments,
4595 fixed means indent that text at `fortran-comment-line-extra-indent' beyond
4596 the value of `fortran-minimum-statement-indent-fixed' (for fixed
4597 format continuation style) or `fortran-minimum-statement-indent-tab'
4598 (for TAB format continuation style).
4599 relative means indent at `fortran-comment-line-extra-indent' beyond the
4600 indentation for a line of code.
4601 (default 'fixed)
4602 fortran-comment-indent-char
4603 Single-character string to be inserted instead of space for
4604 full-line comment indentation. (default \" \")
4605 fortran-minimum-statement-indent-fixed
4606 Minimum indentation for Fortran statements in fixed format mode. (def.6)
4607 fortran-minimum-statement-indent-tab
4608 Minimum indentation for Fortran statements in TAB format mode. (default 9)
4609 fortran-line-number-indent
4610 Maximum indentation for line numbers. A line number will get
4611 less than this much indentation if necessary to avoid reaching
4612 column 5. (default 1)
4613 fortran-check-all-num-for-matching-do
4614 Non-nil causes all numbered lines to be treated as possible \"continue\"
4615 statements. (default nil)
4616 fortran-blink-matching-if
4617 Non-nil causes \\[fortran-indent-line] on an ENDIF statement to blink on
4618 matching IF. Also, from an ENDDO statement, blink on matching DO [WHILE]
4619 statement. (default nil)
4620 fortran-continuation-string
4621 Single-character string to be inserted in column 5 of a continuation
4622 line. (default \"$\")
4623 fortran-comment-region
4624 String inserted by \\[fortran-comment-region] at start of each line in
4625 region. (default \"c$$$\")
4626 fortran-electric-line-number
4627 Non-nil causes line number digits to be moved to the correct column
4628 as typed. (default t)
4629 fortran-break-before-delimiters
4630 Non-nil causes `fortran-fill' breaks lines before delimiters.
4631 (default t)
4632 fortran-startup-message
4633 Set to nil to inhibit message first time Fortran mode is used.
4634
4635 Turning on Fortran mode calls the value of the variable `fortran-mode-hook'
4636 with no args, if that value is non-nil." t nil)
4637
4638 ;;;***
4639
4640 ;;;### (autoloads (hide-ifdef-mode) "hideif" "modes/hideif.el" (12860 15495))
4641 ;;; Generated autoloads from modes/hideif.el
4642
4643 (add-minor-mode 'hide-ifdef-mode " Ifdef")
4644
4645 (autoload 'hide-ifdef-mode "hideif" "\
4646 Toggle Hide-Ifdef mode. This is a minor mode, albeit a large one.
4647 With ARG, turn Hide-Ifdef mode on if arg is positive, off otherwise.
4648 In Hide-Ifdef mode, code within #ifdef constructs that the C preprocessor
4649 would eliminate may be hidden from view. Several variables affect
4650 how the hiding is done:
4651
4652 hide-ifdef-env
4653 An association list of defined and undefined symbols for the
4654 current buffer. Initially, the global value of `hide-ifdef-env'
4655 is used.
4656
4657 hide-ifdef-define-alist
4658 An association list of defined symbol lists.
4659 Use `hide-ifdef-set-define-alist' to save the current `hide-ifdef-env'
4660 and `hide-ifdef-use-define-alist' to set the current `hide-ifdef-env'
4661 from one of the lists in `hide-ifdef-define-alist'.
4662
4663 hide-ifdef-lines
4664 Set to non-nil to not show #if, #ifdef, #ifndef, #else, and
4665 #endif lines when hiding.
4666
4667 hide-ifdef-initially
4668 Indicates whether `hide-ifdefs' should be called when Hide-Ifdef mode
4669 is activated.
4670
4671 hide-ifdef-read-only
4672 Set to non-nil if you want to make buffers read only while hiding.
4673 After `show-ifdefs', read-only status is restored to previous value.
4674
4675 \\{hide-ifdef-mode-map}" t nil)
4676
4677 (defvar hide-ifdef-initially nil "\
4678 *Non-nil means call `hide-ifdefs' when Hide-Ifdef mode is first activated.")
4679
4680 (defvar hide-ifdef-read-only nil "\
4681 *Set to non-nil if you want buffer to be read-only while hiding text.")
4682
4683 (defvar hide-ifdef-lines nil "\
4684 *Non-nil means hide the #ifX, #else, and #endif lines.")
4685
4686 ;;;***
4687
4688 ;;;### (autoloads (hs-minor-mode hs-hide-block hs-hide-all) "hideshow" "modes/hideshow.el" (12860 15515))
4689 ;;; Generated autoloads from modes/hideshow.el
4690
4691 (defvar hs-minor-mode nil "\
4692 Non-nil if using hideshow mode as a minor mode of some other mode.
4693 Use the command `hs-minor-mode' to toggle this variable.")
4694
4695 (autoload 'hs-hide-all "hideshow" "\
4696 Hides all top-level blocks, displaying only first and last lines.
4697 It moves point to the beginning of the line, and it runs the normal hook
4698 `hs-hide-hook'. See documentation for `run-hooks'." t nil)
4699
4700 (autoload 'hs-hide-block "hideshow" "\
4701 Selects a block and hides it. With prefix arg, reposition at end.
4702 Block is defined as a sexp for lispish modes, mode-specific otherwise.
4703 Comments are blocks, too. Upon completion, point is at repositioned and
4704 the normal hook `hs-hide-hook' is run. See documentation for `run-hooks'." t nil)
4705
4706 (autoload 'hs-minor-mode "hideshow" "\
4707 Toggle hideshow minor mode.
4708 With ARG, turn hideshow minor mode on if ARG is positive, off otherwise.
4709 When hideshow minor mode is on, the menu bar is augmented with hideshow
4710 commands and the hideshow commands are enabled. The variables
4711 `selective-display' and `selective-display-ellipses' are set to t.
4712 Last, the normal hook `hs-minor-mode-hook' is run; see the doc for `run-hooks'.
4713
4714 Turning hideshow minor mode off reverts the menu bar and the
4715 variables to default values and disables the hideshow commands." t nil)
4716
4717 (add-minor-mode 'hs-minor-mode " hs" 'hs-minor-mode-map)
4718
4719 ;;;***
4720
4721 ;;;### (autoloads (icon-mode) "icon" "modes/icon.el" (12860 15492))
4722 ;;; Generated autoloads from modes/icon.el
4723
4724 (autoload 'icon-mode "icon" "\
4725 Major mode for editing Icon code.
4726 Expression and list commands understand all Icon brackets.
4727 Tab indents for Icon code.
4728 Paragraphs are separated by blank lines only.
4729 Delete converts tabs to spaces as it moves back.
4730 \\{icon-mode-map}
4731 Variables controlling indentation style:
4732 icon-tab-always-indent
4733 Non-nil means TAB in Icon mode should always reindent the current line,
4734 regardless of where in the line point is when the TAB command is used.
4735 icon-auto-newline
4736 Non-nil means automatically newline before and after braces
4737 inserted in Icon code.
4738 icon-indent-level
4739 Indentation of Icon statements within surrounding block.
4740 The surrounding block's indentation is the indentation
4741 of the line on which the open-brace appears.
4742 icon-continued-statement-offset
4743 Extra indentation given to a substatement, such as the
4744 then-clause of an if or body of a while.
4745 icon-continued-brace-offset
4746 Extra indentation given to a brace that starts a substatement.
4747 This is in addition to `icon-continued-statement-offset'.
4748 icon-brace-offset
4749 Extra indentation for line if it starts with an open brace.
4750 icon-brace-imaginary-offset
4751 An open brace following other text is treated as if it were
4752 this far to the right of the start of its line.
4753
4754 Turning on Icon mode calls the value of the variable `icon-mode-hook'
4755 with no args, if that value is non-nil." t nil)
4756
4757 ;;;***
4758
4759 ;;;### (autoloads (imenu imenu-add-to-menubar) "imenu" "modes/imenu.el" (12860 15672))
4760 ;;; Generated autoloads from modes/imenu.el
4761
4762 (defvar imenu-generic-expression nil "\
4763 The regex pattern to use for creating a buffer index.
4764
4765 If non-nil this pattern is passed to `imenu-create-index-with-pattern'
4766 to create a buffer index.
4767
4768 It is an alist with elements that look like this: (MENU-TITLE
4769 REGEXP INDEX).
4770
4771 MENU-TITLE is a string used as the title for the submenu or nil if the
4772 entries are not nested.
4773
4774 REGEXP is a regexp that should match a construct in the buffer that is
4775 to be displayed in the menu; i.e., function or variable definitions,
4776 etc. It contains a substring which is the name to appear in the
4777 menu. See the info section on Regexps for more information.
4778
4779 INDEX points to the substring in REGEXP that contains the name (of the
4780 function, variable or type) that is to appear in the menu.
4781
4782 For emacs-lisp-mode for example PATTERN would look like:
4783
4784 '((nil \"^\\\\s-*(def\\\\(un\\\\|subst\\\\|macro\\\\|advice\\\\)\\\\s-+\\\\([-A-Za-z0-9+]+\\\\)\" 2)
4785 (\"*Vars*\" \"^\\\\s-*(def\\\\(var\\\\|const\\\\)\\\\s-+\\\\([-A-Za-z0-9+]+\\\\)\" 2)
4786 (\"*Types*\" \"^\\\\s-*(def\\\\(type\\\\|struct\\\\|class\\\\|ine-condition\\\\)\\\\s-+\\\\([-A-Za-z0-9+]+\\\\)\" 2))
4787
4788 The variable is buffer-local.")
4789
4790 (make-variable-buffer-local 'imenu-generic-expression)
4791
4792 (autoload 'imenu-add-to-menubar "imenu" "\
4793 Adds an `imenu' entry to the menu bar for the current buffer.
4794 NAME is a string used to name the menu bar item.
4795 See the command `imenu' for more information." t nil)
4796
4797 (autoload 'imenu "imenu" "\
4798 Jump to a place in the buffer chosen using a buffer menu or mouse menu.
4799 See `imenu-choose-buffer-index' for more information." t nil)
4800
4801 ;;;***
4802
4803 ;;;### (autoloads (ksh-mode) "ksh-mode" "modes/ksh-mode.el" (12860 15508))
4804 ;;; Generated autoloads from modes/ksh-mode.el
4805
4806 (autoload 'ksh-mode "ksh-mode" "\
4807 ksh-mode $Revision: 1.1.1.1 $ - Major mode for editing (Bourne, Korn or Bourne again)
4808 shell scripts.
4809 Special key bindings and commands:
4810 \\{ksh-mode-map}
4811 Variables controlling indentation style:
4812 ksh-indent
4813 Indentation of ksh statements with respect to containing block.
4814 Default value is 2.
4815 ksh-case-indent
4816 Additional indentation for statements under case items.
4817 Default value is nil which will align the statements one position
4818 past the \")\" of the pattern.
4819 ksh-case-item-offset
4820 Additional indentation for case items within a case statement.
4821 Default value is 2.
4822 ksh-group-offset
4823 Additional indentation for keywords \"do\" and \"then\".
4824 Default value is -2.
4825 ksh-brace-offset
4826 Additional indentation of \"{\" under functions or brace groupings.
4827 Default value is 0.
4828 ksh-multiline-offset
4829 Additional indentation of line that is preceded of a line ending with a
4830 \\ to make it continue on next line.
4831 ksh-tab-always-indent
4832 Controls the operation of the TAB key. If t (the default), always
4833 reindent the current line. If nil, indent the current line only if
4834 point is at the left margin or in the line's indentation; otherwise
4835 insert a tab.
4836 ksh-match-and-tell
4837 If non-nil echo in the minibuffer the matching compound command
4838 for the \"done\", \"}\", \"fi\", or \"esac\". Default value is t.
4839
4840 ksh-align-to-keyword
4841 Controls whether nested constructs align from the keyword or
4842 the current indentation. If non-nil, indentation will be relative to
4843 the column the keyword starts. If nil, indentation will be relative to
4844 the current indentation of the line the keyword is on.
4845 The default value is non-nil.
4846
4847 ksh-comment-regexp
4848 Regular expression used to recognize comments. Customize to support
4849 ksh-like languages. Default value is \"\\s *#\".
4850
4851 Style Guide.
4852 By setting
4853 (setq ksh-indent default-tab-width)
4854 (setq ksh-group-offset 0)
4855
4856 The following style is obtained:
4857
4858 if [ -z $foo ]
4859 then
4860 bar # <-- ksh-group-offset is additive to ksh-indent
4861 foo
4862 fi
4863
4864 By setting
4865 (setq ksh-indent default-tab-width)
4866 (setq ksh-group-offset (- 0 ksh-indent))
4867
4868 The following style is obtained:
4869
4870 if [ -z $foo ]
4871 then
4872 bar
4873 foo
4874 fi
4875
4876 By setting
4877 (setq ksh-case-item-offset 1)
4878 (setq ksh-case-indent nil)
4879
4880 The following style is obtained:
4881
4882 case x in *
4883 foo) bar # <-- ksh-case-item-offset
4884 baz;; # <-- ksh-case-indent aligns with \")\"
4885 foobar) foo
4886 bar;;
4887 esac
4888
4889 By setting
4890 (setq ksh-case-item-offset 1)
4891 (setq ksh-case-indent 6)
4892
4893 The following style is obtained:
4894
4895 case x in *
4896 foo) bar # <-- ksh-case-item-offset
4897 baz;; # <-- ksh-case-indent
4898 foobar) foo
4899 bar;;
4900 esac
4901
4902
4903 Installation:
4904
4905 (setq ksh-mode-hook
4906 (function (lambda ()
4907 (font-lock-mode 1) ;; font-lock the buffer
4908 (setq ksh-indent 8)
4909 (setq ksh-group-offset -8)
4910 (setq ksh-brace-offset -8)
4911 (setq ksh-tab-always-indent t)
4912 (setq ksh-match-and-tell t)
4913 (setq ksh-align-to-keyword t) ;; Turn on keyword alignment
4914 )))" t nil)
4915
4916 ;;;***
4917
4918 ;;;***
4919
4920 ;;;### (autoloads nil "lisp-mnt" "modes/lisp-mnt.el" (12860 15511))
4921 ;;; Generated autoloads from modes/lisp-mnt.el
4922
4923 ;;;***
4924
4925 ;;;### (autoloads nil "lisp-mode" "modes/lisp-mode.el" (12860 15496))
4926 ;;; Generated autoloads from modes/lisp-mode.el
4927
4928 ;;;***
4929
4930 ;;;### (autoloads nil "list-mode" "modes/list-mode.el" (12851 27101))
4931 ;;; Generated autoloads from modes/list-mode.el
4932
4933 ;;;### (autoloads (makefile-mode) "make-mode" "modes/make-mode.el" (12860 15486))
4934 ;;; Generated autoloads from modes/make-mode.el
4935
4936 (autoload 'makefile-mode "make-mode" "\
4937 Major mode for editing Makefiles.
4938 This function ends by invoking the function(s) `makefile-mode-hook'.
4939
4940 \\{makefile-mode-map}
4941
4942 In the browser, use the following keys:
4943
4944 \\{makefile-browser-map}
4945
4946 Makefile mode can be configured by modifying the following variables:
4947
4948 makefile-browser-buffer-name:
4949 Name of the macro- and target browser buffer.
4950
4951 makefile-target-colon:
4952 The string that gets appended to all target names
4953 inserted by `makefile-insert-target'.
4954 \":\" or \"::\" are quite common values.
4955
4956 makefile-macro-assign:
4957 The string that gets appended to all macro names
4958 inserted by `makefile-insert-macro'.
4959 The normal value should be \" = \", since this is what
4960 standard make expects. However, newer makes such as dmake
4961 allow a larger variety of different macro assignments, so you
4962 might prefer to use \" += \" or \" := \" .
4963
4964 makefile-tab-after-target-colon:
4965 If you want a TAB (instead of a space) to be appended after the
4966 target colon, then set this to a non-nil value.
4967
4968 makefile-browser-leftmost-column:
4969 Number of blanks to the left of the browser selection mark.
4970
4971 makefile-browser-cursor-column:
4972 Column in which the cursor is positioned when it moves
4973 up or down in the browser.
4974
4975 makefile-browser-selected-mark:
4976 String used to mark selected entries in the browser.
4977
4978 makefile-browser-unselected-mark:
4979 String used to mark unselected entries in the browser.
4980
4981 makefile-browser-auto-advance-after-selection-p:
4982 If this variable is set to a non-nil value the cursor
4983 will automagically advance to the next line after an item
4984 has been selected in the browser.
4985
4986 makefile-pickup-everything-picks-up-filenames-p:
4987 If this variable is set to a non-nil value then
4988 `makefile-pickup-everything' also picks up filenames as targets
4989 (i.e. it calls `makefile-find-filenames-as-targets'), otherwise
4990 filenames are omitted.
4991
4992 makefile-cleanup-continuations-p:
4993 If this variable is set to a non-nil value then makefile-mode
4994 will assure that no line in the file ends with a backslash
4995 (the continuation character) followed by any whitespace.
4996 This is done by silently removing the trailing whitespace, leaving
4997 the backslash itself intact.
4998 IMPORTANT: Please note that enabling this option causes makefile-mode
4999 to MODIFY A FILE WITHOUT YOUR CONFIRMATION when \"it seems necessary\".
5000
5001 makefile-browser-hook:
5002 A function or list of functions to be called just before the
5003 browser is entered. This is executed in the makefile buffer.
5004
5005 makefile-special-targets-list:
5006 List of special targets. You will be offered to complete
5007 on one of those in the minibuffer whenever you enter a `.'.
5008 at the beginning of a line in Makefile mode." t nil)
5009
5010 ;;;***
5011
5012 ;;;### (autoloads nil "old-c++-mode" "modes/old-c++-mode.el" (12211 28119))
5013 ;;; Generated autoloads from modes/old-c++-mode.el
5014
5015 ;;;***
5016
5017 ;;;### (autoloads nil "old-c-mode" "modes/old-c-mode.el" (12546 37597))
5018 ;;; Generated autoloads from modes/old-c-mode.el
5019
5020 ;;;### (autoloads (python-mode) "python-mode" "modes/python-mode.el" (12849 46013))
5021 ;;; Generated autoloads from modes/python-mode.el
5022
5023 (eval-when-compile (condition-case nil (progn (require 'cl) (require 'imenu)) (error nil)))
5024
5025 (autoload 'python-mode "python-mode" "\
5026 Major mode for editing Python files.
5027 To submit a problem report, enter `\\[py-submit-bug-report]' from a
5028 `python-mode' buffer. Do `\\[py-describe-mode]' for detailed
5029 documentation. To see what version of `python-mode' you are running,
5030 enter `\\[py-version]'.
5031
5032 This mode knows about Python indentation, tokens, comments and
5033 continuation lines. Paragraphs are separated by blank lines only.
5034
5035 COMMANDS
5036 \\{py-mode-map}
5037 VARIABLES
5038
5039 py-indent-offset indentation increment
5040 py-block-comment-prefix comment string used by comment-region
5041 py-python-command shell command to invoke Python interpreter
5042 py-scroll-process-buffer always scroll Python process buffer
5043 py-temp-directory directory used for temp files (if needed)
5044 py-beep-if-tab-change ring the bell if tab-width is changed" t nil)
5045
5046 ;;;***
5047
5048 ;;;### (autoloads (rexx-mode) "rexx-mode" "modes/rexx-mode.el" (12554 53343))
5049 ;;; Generated autoloads from modes/rexx-mode.el
5050
5051 (autoload 'rexx-mode "rexx-mode" "\
5052 Major mode for editing REXX code.
5053 \\{rexx-mode-map}
5054
5055 Variables controlling indentation style:
5056 rexx-indent
5057 The basic indentation for do-blocks.
5058 rexx-end-indent
5059 The relative offset of the \"end\" statement. 0 places it in the
5060 same column as the statements of the block. Setting it to the same
5061 value as rexx-indent places the \"end\" under the do-line.
5062 rexx-cont-indent
5063 The indention for lines following \"then\", \"else\" and \",\"
5064 (continued) lines.
5065 rexx-tab-always-indent
5066 Non-nil means TAB in REXX mode should always reindent the current
5067 line, regardless of where in the line the point is when the TAB
5068 command is used.
5069
5070 If you have set rexx-end-indent to a nonzero value, you probably want to
5071 remap RETURN to rexx-indent-newline-indent. It makes sure that lines
5072 indents correctly when you press RETURN.
5073
5074 An extensive abbrevation table consisting of all the keywords of REXX are
5075 supplied. Expanded keywords are converted into upper case making it
5076 easier to distinguish them. To use this feature the buffer must be in
5077 abbrev-mode. (See example below.)
5078
5079 Turning on REXX mode calls the value of the variable rexx-mode-hook with
5080 no args, if that value is non-nil.
5081
5082 For example:
5083 \(setq rexx-mode-hook '(lambda ()
5084 (setq rexx-indent 4)
5085 (setq rexx-end-indent 4)
5086 (setq rexx-cont-indent 4)
5087 (local-set-key \"\\C-m\" 'rexx-indent-newline-indent)
5088 (abbrev-mode 1)
5089 ))
5090
5091 will make the END aligned with the DO/SELECT. It will indent blocks and
5092 IF-statenents four steps and make sure that the END jumps into the
5093 correct position when RETURN is pressed. Finaly it will use the abbrev
5094 table to convert all REXX keywords into upper case." t nil)
5095
5096 ;;;***
5097
5098 ;;;### (autoloads (define-mail-alias build-mail-aliases mail-aliases-setup) "mail-abbrevs" "modes/mail-abbrevs.el" (12399 59968))
5099 ;;; Generated autoloads from modes/mail-abbrevs.el
5100
5101 (defvar mail-abbrev-mailrc-file nil "\
5102 Name of file with mail aliases. If nil, ~/.mailrc is used.")
5103
5104 (defvar mail-aliases nil "\
5105 Word-abbrev table of mail address aliases.
5106 If this is nil, it means the aliases have not yet been initialized and
5107 should be read from the .mailrc file. (This is distinct from there being
5108 no aliases, which is represented by this being a table with no entries.)")
5109
5110 (autoload 'mail-aliases-setup "mail-abbrevs" nil nil nil)
5111
5112 (autoload 'build-mail-aliases "mail-abbrevs" "\
5113 Read mail aliases from .mailrc and set mail-aliases." nil nil)
5114
5115 (autoload 'define-mail-alias "mail-abbrevs" "\
5116 Define NAME as a mail-alias that translates to DEFINITION.
5117 If DEFINITION contains multiple addresses, separate them with commas." t nil)
5118
5119 ;;;***
5120
5121 ;;;### (autoloads (modula-2-mode) "modula2" "modes/modula2.el" (12860 15497))
5122 ;;; Generated autoloads from modes/modula2.el
5123
5124 (autoload 'modula-2-mode "modula2" "\
5125 This is a mode intended to support program development in Modula-2.
5126 All control constructs of Modula-2 can be reached by typing C-c
5127 followed by the first character of the construct.
5128 \\<m2-mode-map>
5129 \\[m2-begin] begin \\[m2-case] case
5130 \\[m2-definition] definition \\[m2-else] else
5131 \\[m2-for] for \\[m2-header] header
5132 \\[m2-if] if \\[m2-module] module
5133 \\[m2-loop] loop \\[m2-or] or
5134 \\[m2-procedure] procedure Control-c Control-w with
5135 \\[m2-record] record \\[m2-stdio] stdio
5136 \\[m2-type] type \\[m2-until] until
5137 \\[m2-var] var \\[m2-while] while
5138 \\[m2-export] export \\[m2-import] import
5139 \\[m2-begin-comment] begin-comment \\[m2-end-comment] end-comment
5140 \\[suspend-emacs] suspend Emacs \\[m2-toggle] toggle
5141 \\[m2-compile] compile \\[m2-next-error] next-error
5142 \\[m2-link] link
5143
5144 `m2-indent' controls the number of spaces for each indentation.
5145 `m2-compile-command' holds the command to compile a Modula-2 program.
5146 `m2-link-command' holds the command to link a Modula-2 program." t nil)
5147
5148 ;;;***
5149
5150 ;;;### (autoloads (electric-nroff-mode nroff-mode) "nroff-mode" "modes/nroff-mode.el" (12860 15502))
5151 ;;; Generated autoloads from modes/nroff-mode.el
5152
5153 (autoload 'nroff-mode "nroff-mode" "\
5154 Major mode for editing text intended for nroff to format.
5155 \\{nroff-mode-map}
5156 Turning on Nroff mode runs `text-mode-hook', then `nroff-mode-hook'.
5157 Also, try `nroff-electric-mode', for automatically inserting
5158 closing requests for requests that are used in matched pairs." t nil)
5159
5160 (autoload 'electric-nroff-mode "nroff-mode" "\
5161 Toggle `nroff-electric-newline' minor mode.
5162 `nroff-electric-newline' forces Emacs to check for an nroff request at the
5163 beginning of the line, and insert the matching closing request if necessary.
5164 This command toggles that mode (off->on, on->off), with an argument,
5165 turns it on iff arg is positive, otherwise off." t nil)
5166
5167 (defvar nroff-electric-mode nil "\
5168 Non-nil if in electric-nroff minor mode.")
5169
5170 (add-minor-mode 'nroff-electric-mode " Electric" nil nil 'electric-nroff-mode)
5171
5172 ;;;***
5173
5174 ;;;### (autoloads (outl-mouse-minor-mode outl-mouse-mode) "outl-mouse" "modes/outl-mouse.el" (12235 18865))
5175 ;;; Generated autoloads from modes/outl-mouse.el
5176
5177 (autoload 'outl-mouse-mode "outl-mouse" "\
5178 Calls outline-mode, with outl-mouse extensions" t nil)
5179
5180 (autoload 'outl-mouse-minor-mode "outl-mouse" "\
5181 Toggles outline-minor-mode, with outl-mouse extensions" t nil)
5182
5183 ;;;***
5184
5185 ;;;### (autoloads (outline-minor-mode outline-mode) "outline" "modes/outline.el" (12860 15490))
5186 ;;; Generated autoloads from modes/outline.el
5187
5188 (defvar outline-minor-mode nil "\
5189 Non-nil if using Outline mode as a minor mode of some other mode.")
5190
5191 (make-variable-buffer-local 'outline-minor-mode)
5192
5193 (put 'outline-minor-mode 'permanent-local t)
5194
5195 (add-minor-mode 'outline-minor-mode " Outl")
5196
5197 (autoload 'outline-mode "outline" "\
5198 Set major mode for editing outlines with selective display.
5199 Headings are lines which start with asterisks: one for major headings,
5200 two for subheadings, etc. Lines not starting with asterisks are body lines.
5201
5202 Body text or subheadings under a heading can be made temporarily
5203 invisible, or visible again. Invisible lines are attached to the end
5204 of the heading, so they move with it, if the line is killed and yanked
5205 back. A heading with text hidden under it is marked with an ellipsis (...).
5206
5207 Commands:\\<outline-mode-map>
5208 \\[outline-next-visible-heading] outline-next-visible-heading move by visible headings
5209 \\[outline-previous-visible-heading] outline-previous-visible-heading
5210 \\[outline-forward-same-level] outline-forward-same-level similar but skip subheadings
5211 \\[outline-backward-same-level] outline-backward-same-level
5212 \\[outline-up-heading] outline-up-heading move from subheading to heading
5213
5214 \\[hide-body] make all text invisible (not headings).
5215 \\[show-all] make everything in buffer visible.
5216
5217 The remaining commands are used when point is on a heading line.
5218 They apply to some of the body or subheadings of that heading.
5219 \\[hide-subtree] hide-subtree make body and subheadings invisible.
5220 \\[show-subtree] show-subtree make body and subheadings visible.
5221 \\[show-children] show-children make direct subheadings visible.
5222 No effect on body, or subheadings 2 or more levels down.
5223 With arg N, affects subheadings N levels down.
5224 \\[hide-entry] make immediately following body invisible.
5225 \\[show-entry] make it visible.
5226 \\[hide-leaves] make body under heading and under its subheadings invisible.
5227 The subheadings remain visible.
5228 \\[show-branches] make all subheadings at all levels visible.
5229
5230 The variable `outline-regexp' can be changed to control what is a heading.
5231 A line is a heading if `outline-regexp' matches something at the
5232 beginning of the line. The longer the match, the deeper the level.
5233
5234 Turning on outline mode calls the value of `text-mode-hook' and then of
5235 `outline-mode-hook', if they are non-nil." t nil)
5236
5237 (autoload 'outline-minor-mode "outline" "\
5238 Toggle Outline minor mode.
5239 With arg, turn Outline minor mode on if arg is positive, off otherwise.
5240 See the command `outline-mode' for more information on this mode." t nil)
5241
5242 ;;;***
5243
5244 ;;;### (autoloads (pascal-mode) "pascal" "modes/pascal.el" (12698 34037))
5245 ;;; Generated autoloads from modes/pascal.el
5246
5247 (autoload 'pascal-mode "pascal" "\
5248 Major mode for editing Pascal code. \\<pascal-mode-map>
5249 TAB indents for Pascal code. Delete converts tabs to spaces as it moves back.
5250
5251 \\[pascal-complete-word] completes the word around current point with respect to position in code
5252 \\[pascal-show-completions] shows all possible completions at this point.
5253
5254 Other useful functions are:
5255
5256 \\[pascal-mark-defun] - Mark function.
5257 \\[pascal-insert-block] - insert begin ... end;
5258 \\[pascal-star-comment] - insert (* ... *)
5259 \\[pascal-comment-area] - Put marked area in a comment, fixing nested comments.
5260 \\[pascal-uncomment-area] - Uncomment an area commented with \\[pascal-comment-area].
5261 \\[pascal-beg-of-defun] - Move to beginning of current function.
5262 \\[pascal-end-of-defun] - Move to end of current function.
5263 \\[pascal-goto-defun] - Goto function prompted for in the minibuffer.
5264 \\[pascal-outline] - Enter pascal-outline-mode (see also pascal-outline).
5265
5266 Variables controlling indentation/edit style:
5267
5268 pascal-indent-level (default 3)
5269 Indentation of Pascal statements with respect to containing block.
5270 pascal-case-indent (default 2)
5271 Indentation for case statements.
5272 pascal-auto-newline (default nil)
5273 Non-nil means automatically newline after simcolons and the punctation mark
5274 after an end.
5275 pascal-tab-always-indent (default t)
5276 Non-nil means TAB in Pascal mode should always reindent the current line,
5277 regardless of where in the line point is when the TAB command is used.
5278 pascal-auto-endcomments (default t)
5279 Non-nil means a comment { ... } is set after the ends which ends cases and
5280 functions. The name of the function or case will be set between the braces.
5281 pascal-auto-lineup (default t)
5282 List of contexts where auto lineup of :'s or ='s hould be done.
5283
5284 See also the user variables pascal-type-keywords, pascal-start-keywords and
5285 pascal-separator-keywords.
5286
5287 Turning on Pascal mode calls the value of the variable pascal-mode-hook with
5288 no args, if that value is non-nil." t nil)
5289
5290 ;;;***
5291
5292 ;;;### (autoloads (perl-mode) "perl-mode" "modes/perl-mode.el" (12568 8627))
5293 ;;; Generated autoloads from modes/perl-mode.el
5294
5295 (autoload 'perl-mode "perl-mode" "\
5296 Major mode for editing Perl code.
5297 Expression and list commands understand all Perl brackets.
5298 Tab indents for Perl code.
5299 Comments are delimited with # ... \\n.
5300 Paragraphs are separated by blank lines only.
5301 Delete converts tabs to spaces as it moves back.
5302 \\{perl-mode-map}
5303 Variables controlling indentation style:
5304 perl-tab-always-indent
5305 Non-nil means TAB in Perl mode should always indent the current line,
5306 regardless of where in the line point is when the TAB command is used.
5307 perl-tab-to-comment
5308 Non-nil means that for lines which don't need indenting, TAB will
5309 either delete an empty comment, indent an existing comment, move
5310 to end-of-line, or if at end-of-line already, create a new comment.
5311 perl-nochange
5312 Lines starting with this regular expression are not auto-indented.
5313 perl-indent-level
5314 Indentation of Perl statements within surrounding block.
5315 The surrounding block's indentation is the indentation
5316 of the line on which the open-brace appears.
5317 perl-continued-statement-offset
5318 Extra indentation given to a substatement, such as the
5319 then-clause of an if or body of a while.
5320 perl-continued-brace-offset
5321 Extra indentation given to a brace that starts a substatement.
5322 This is in addition to `perl-continued-statement-offset'.
5323 perl-brace-offset
5324 Extra indentation for line if it starts with an open brace.
5325 perl-brace-imaginary-offset
5326 An open brace following other text is treated as if it were
5327 this far to the right of the start of its line.
5328 perl-label-offset
5329 Extra indentation for line that is a label.
5330
5331 Various indentation styles: K&R BSD BLK GNU LW
5332 perl-indent-level 5 8 0 2 4
5333 perl-continued-statement-offset 5 8 4 2 4
5334 perl-continued-brace-offset 0 0 0 0 -4
5335 perl-brace-offset -5 -8 0 0 0
5336 perl-brace-imaginary-offset 0 0 4 0 0
5337 perl-label-offset -5 -8 -2 -2 -2
5338
5339 Turning on Perl mode runs the normal hook `perl-mode-hook'." t nil)
5340
5341 ;;;***
5342
5343 ;;;### (autoloads (picture-mode) "picture" "modes/picture.el" (12637 39889))
5344 ;;; Generated autoloads from modes/picture.el
5345
5346 (autoload 'picture-mode "picture" "\
5347 Switch to Picture mode, in which a quarter-plane screen model is used.
5348 Printing characters replace instead of inserting themselves with motion
5349 afterwards settable by these commands:
5350 C-c < Move left after insertion.
5351 C-c > Move right after insertion.
5352 C-c ^ Move up after insertion.
5353 C-c . Move down after insertion.
5354 C-c ` Move northwest (nw) after insertion.
5355 C-c ' Move northeast (ne) after insertion.
5356 C-c / Move southwest (sw) after insertion.
5357 C-c \\ Move southeast (se) after insertion.
5358 The current direction is displayed in the modeline. The initial
5359 direction is right. Whitespace is inserted and tabs are changed to
5360 spaces when required by movement. You can move around in the buffer
5361 with these commands:
5362 \\[picture-move-down] Move vertically to SAME column in previous line.
5363 \\[picture-move-up] Move vertically to SAME column in next line.
5364 \\[picture-end-of-line] Move to column following last non-whitespace character.
5365 \\[picture-forward-column] Move right inserting spaces if required.
5366 \\[picture-backward-column] Move left changing tabs to spaces if required.
5367 C-c C-f Move in direction of current picture motion.
5368 C-c C-b Move in opposite direction of current picture motion.
5369 Return Move to beginning of next line.
5370 You can edit tabular text with these commands:
5371 M-Tab Move to column beneath (or at) next interesting character.
5372 `Indents' relative to a previous line.
5373 Tab Move to next stop in tab stop list.
5374 C-c Tab Set tab stops according to context of this line.
5375 With ARG resets tab stops to default (global) value.
5376 See also documentation of variable picture-tab-chars
5377 which defines \"interesting character\". You can manually
5378 change the tab stop list with command \\[edit-tab-stops].
5379 You can manipulate text with these commands:
5380 C-d Clear (replace) ARG columns after point without moving.
5381 C-c C-d Delete char at point - the command normally assigned to C-d.
5382 \\[picture-backward-clear-column] Clear (replace) ARG columns before point, moving back over them.
5383 \\[picture-clear-line] Clear ARG lines, advancing over them. The cleared
5384 text is saved in the kill ring.
5385 \\[picture-open-line] Open blank line(s) beneath current line.
5386 You can manipulate rectangles with these commands:
5387 C-c C-k Clear (or kill) a rectangle and save it.
5388 C-c C-w Like C-c C-k except rectangle is saved in named register.
5389 C-c C-y Overlay (or insert) currently saved rectangle at point.
5390 C-c C-x Like C-c C-y except rectangle is taken from named register.
5391 \\[copy-rectangle-to-register] Copies a rectangle to a register.
5392 \\[advertised-undo] Can undo effects of rectangle overlay commands
5393 commands if invoked soon enough.
5394 You can return to the previous mode with:
5395 C-c C-c Which also strips trailing whitespace from every line.
5396 Stripping is suppressed by supplying an argument.
5397
5398 Entry to this mode calls the value of picture-mode-hook if non-nil.
5399
5400 Note that Picture mode commands will work outside of Picture mode, but
5401 they are not defaultly assigned to keys." t nil)
5402
5403 (defalias 'edit-picture 'picture-mode)
5404
5405 ;;;***
5406
5407 ;;;### (autoloads (postscript-mode) "postscript" "modes/postscript.el" (12554 53338))
5408 ;;; Generated autoloads from modes/postscript.el
5409
5410 (autoload 'postscript-mode "postscript" "\
5411 Major mode for editing PostScript files.
5412
5413 \\[ps-execute-buffer] will send the contents of the buffer to the NeWS
5414 server using psh(1). \\[ps-execute-region] sends the current region.
5415 \\[ps-shell] starts an interactive psh(1) window which will be used for
5416 subsequent \\[ps-execute-buffer] or \\[ps-execute-region] commands.
5417
5418 In this mode, TAB and \\[indent-region] attempt to indent code
5419 based on the position of {}, [], and begin/end pairs. The variable
5420 ps-indent-level controls the amount of indentation used inside
5421 arrays and begin/end pairs.
5422
5423 \\{ps-mode-map}
5424
5425 \\[postscript-mode] calls the value of the variable postscript-mode-hook
5426 with no args, if that value is non-nil." t nil)
5427
5428 ;;;***
5429
5430 ;;;### (autoloads (run-prolog inferior-prolog-mode prolog-mode) "prolog" "modes/prolog.el" (12860 15503))
5431 ;;; Generated autoloads from modes/prolog.el
5432
5433 (autoload 'prolog-mode "prolog" "\
5434 Major mode for editing Prolog code for Prologs.
5435 Blank lines and `%%...' separate paragraphs. `%'s start comments.
5436 Commands:
5437 \\{prolog-mode-map}
5438 Entry to this mode calls the value of `prolog-mode-hook'
5439 if that value is non-nil." t nil)
5440
5441 (autoload 'inferior-prolog-mode "prolog" "\
5442 Major mode for interacting with an inferior Prolog process.
5443
5444 The following commands are available:
5445 \\{inferior-prolog-mode-map}
5446
5447 Entry to this mode calls the value of `prolog-mode-hook' with no arguments,
5448 if that value is non-nil. Likewise with the value of `comint-mode-hook'.
5449 `prolog-mode-hook' is called after `comint-mode-hook'.
5450
5451 You can send text to the inferior Prolog from other buffers
5452 using the commands `send-region', `send-string' and \\[prolog-consult-region].
5453
5454 Commands:
5455 Tab indents for Prolog; with argument, shifts rest
5456 of expression rigidly with the current line.
5457 Paragraphs are separated only by blank lines and '%%'.
5458 '%'s start comments.
5459
5460 Return at end of buffer sends line as input.
5461 Return not at end copies rest of line to end and sends it.
5462 \\[comint-kill-input] and \\[backward-kill-word] are kill commands, imitating normal Unix input editing.
5463 \\[comint-interrupt-subjob] interrupts the shell or its current subjob if any.
5464 \\[comint-stop-subjob] stops. \\[comint-quit-subjob] sends quit signal." t nil)
5465
5466 (autoload 'run-prolog "prolog" "\
5467 Run an inferior Prolog process, input and output via buffer *prolog*." t nil)
5468
5469 ;;;***
5470
5471 ;;;### (autoloads (resize-minibuffer-mode) "rsz-minibuf" "modes/rsz-minibuf.el" (12546 37599))
5472 ;;; Generated autoloads from modes/rsz-minibuf.el
5473
5474 (defvar resize-minibuffer-mode nil "\
5475 *If non-`nil', resize the minibuffer so its entire contents are visible.")
5476
5477 (defvar resize-minibuffer-window-max-height nil "\
5478 *Maximum size the minibuffer window is allowed to become.
5479 If less than 1 or not a number, the limit is the height of the frame in
5480 which the active minibuffer window resides.")
5481
5482 (defvar resize-minibuffer-window-exactly t "\
5483 *If non-`nil', make minibuffer exactly the size needed to display all its contents.
5484 Otherwise, the minibuffer window can temporarily increase in size but
5485 never get smaller while it is active.")
5486
5487 (defvar resize-minibuffer-frame nil "\
5488 *If non-`nil' and the active minibuffer is the sole window in its frame, allow changing the frame height.")
5489
5490 (defvar resize-minibuffer-frame-max-height nil "\
5491 *Maximum size the minibuffer frame is allowed to become.
5492 If less than 1 or not a number, there is no limit.")
5493
5494 (defvar resize-minibuffer-frame-exactly nil "\
5495 *If non-`nil', make minibuffer frame exactly the size needed to display all its contents.
5496 Otherwise, the minibuffer frame can temporarily increase in size but
5497 never get smaller while it is active.")
5498
5499 (autoload 'resize-minibuffer-mode "rsz-minibuf" "\
5500 Enable or disable resize-minibuffer mode.
5501 A negative prefix argument disables this mode. A positive argument or
5502 argument of 0 enables it.
5503
5504 When this minor mode is enabled, the minibuffer is dynamically resized to
5505 contain the entire region of text put in it as you type.
5506
5507 The variable `resize-minibuffer-mode' is set to t or nil depending on
5508 whether this mode is active or not.
5509
5510 The maximum height to which the minibuffer can grow is controlled by the
5511 variable `resize-minibuffer-window-max-height'.
5512
5513 The variable `resize-minibuffer-window-exactly' determines whether the
5514 minibuffer window should ever be shrunk to make it no larger than needed to
5515 display its contents.
5516
5517 When using a window system, it is possible for a minibuffer to tbe the sole
5518 window in a frame. Since that window is already its maximum size, the only
5519 way to make more text visible at once is to increase the size of the frame.
5520 The variable `resize-minibuffer-frame' controls whether this should be
5521 done. The variables `resize-minibuffer-frame-max-height' and
5522 `resize-minibuffer-frame-exactly' are analogous to their window
5523 counterparts." t nil)
5524
5525 ;;;***
5526
5527 ;;;### (autoloads (scheme-mode) "scheme" "modes/scheme.el" (12860 15504))
5528 ;;; Generated autoloads from modes/scheme.el
5529
5530 (autoload 'scheme-mode "scheme" "\
5531 Major mode for editing Scheme code.
5532 Editing commands are similar to those of lisp-mode.
5533
5534 In addition, if an inferior Scheme process is running, some additional
5535 commands will be defined, for evaluating expressions and controlling
5536 the interpreter, and the state of the process will be displayed in the
5537 modeline of all Scheme buffers. The names of commands that interact
5538 with the Scheme process start with \"xscheme-\". For more information
5539 see the documentation for xscheme-interaction-mode.
5540
5541 Commands:
5542 Delete converts tabs to spaces as it moves back.
5543 Blank lines separate paragraphs. Semicolons start comments.
5544 \\{scheme-mode-map}
5545 Entry to this mode calls the value of scheme-mode-hook
5546 if that value is non-nil." t nil)
5547
5548 ;;;***
5549
5550 ;;;### (autoloads (scribe-mode) "scribe" "modes/scribe.el" (12078 45205))
5551 ;;; Generated autoloads from modes/scribe.el
5552
5553 (autoload 'scribe-mode "scribe" "\
5554 Major mode for editing files of Scribe (a text formatter) source.
5555 Scribe-mode is similar text-mode, with a few extra commands added.
5556 \\{scribe-mode-map}
5557
5558 Interesting variables:
5559
5560 scribe-fancy-paragraphs
5561 Non-nil makes Scribe mode use a different style of paragraph separation.
5562
5563 scribe-electric-quote
5564 Non-nil makes insert of double quote use `` or '' depending on context.
5565
5566 scribe-electric-parenthesis
5567 Non-nil makes an open-parenthesis char (one of `([<{')
5568 automatically insert its close if typed after an @Command form." t nil)
5569
5570 ;;;***
5571
5572 ;;;### (autoloads (mail-other-frame mail-other-window mail mail-mode) "sendmail" "modes/sendmail.el" (12686 31726))
5573 ;;; Generated autoloads from modes/sendmail.el
5574
5575 (defvar mail-from-style 'angles "\
5576 *Specifies how \"From:\" fields look.
5577
5578 If `nil', they contain just the return address like:
5579 king@grassland.com
5580 If `parens', they look like:
5581 king@grassland.com (Elvis Parsley)
5582 If `angles', they look like:
5583 Elvis Parsley <king@grassland.com>")
5584
5585 (defvar mail-self-blind nil "\
5586 Non-nil means insert BCC to self in messages to be sent.
5587 This is done when the message is initialized,
5588 so you can remove or alter the BCC field to override the default.")
5589
5590 (defvar mail-interactive nil "\
5591 Non-nil means when sending a message wait for and display errors.
5592 nil means let mailer mail back a message to report errors.")
5593
5594 (defvar mail-dir nil "\
5595 *Default directory for saving messages.")
5596
5597 (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-") "\\|") "\\)")) "\
5598 *Gubbish header fields one would rather not see.")
5599
5600 (defvar mail-yank-ignored-headers (purecopy (concat rmail-ignored-headers "\\|" "^\\(" (mapconcat 'identity '("Resent-To:" "Resent-By:" "Resent-CC:" "To:" "Subject:" "In-Reply-To:") "\\|") "\\)")) "\
5601 Delete these headers from old message when it's inserted in a reply.")
5602
5603 (defvar send-mail-function 'sendmail-send-it "\
5604 Function to call to send the current buffer as mail.
5605 The headers should be delimited by a line whose contents
5606 match the variable `mail-header-separator'.")
5607
5608 (defvar mail-header-separator (purecopy "--text follows this line--") "\
5609 *Line used to separate headers from text in messages being composed.")
5610
5611 (defvar mail-archive-file-name nil "\
5612 *Name of file to write all outgoing messages in, or nil for none.
5613 This can be an inbox file or an Rmail file.")
5614
5615 (defvar mail-default-reply-to nil "\
5616 *Address to insert as default Reply-to field of outgoing messages.
5617 If nil, it will be initialized from the REPLYTO environment variable
5618 when you first send mail.")
5619
5620 (defvar mail-alias-file nil "\
5621 *If non-nil, the name of a file to use instead of `/usr/lib/aliases'.
5622 This file defines aliases to be expanded by the mailer; this is a different
5623 feature from that of defining aliases in `.mailrc' to be expanded in Emacs.
5624 This variable has no effect unless your system uses sendmail as its mailer.")
5625
5626 (defvar mail-yank-prefix "> " "\
5627 *Prefix insert on lines of yanked message being replied to.
5628 nil means use indentation.")
5629
5630 (defvar mail-signature nil "\
5631 *Text inserted at end of mail buffer when a message is initialized.
5632 If t, it means to insert the contents of the file `mail-signature-file'.")
5633
5634 (autoload 'mail-mode "sendmail" "\
5635 Major mode for editing mail to be sent.
5636 Like Text Mode but with these additional commands:
5637 C-c C-s mail-send (send the message) C-c C-c mail-send-and-exit
5638 C-c C-f move to a header field (and create it if there isn't):
5639 C-c C-f C-t move to To: C-c C-f C-s move to Subj:
5640 C-c C-f C-b move to BCC: C-c C-f C-c move to CC:
5641 C-c C-f C-f move to FCC: C-c C-f C-r move to Reply-To:
5642 C-c C-t mail-text (move to beginning of message text).
5643 C-c C-w mail-signature (insert `mail-signature-file' file).
5644 C-c C-y mail-yank-original (insert current message, in Rmail).
5645 C-c C-q mail-fill-yanked-message (fill what was yanked).
5646 C-c C-v mail-sent-via (add a sent-via field for each To or CC)." t nil)
5647
5648 (autoload 'mail "sendmail" "\
5649 Edit a message to be sent. Prefix arg means resume editing (don't erase).
5650 When this function returns, the buffer `*mail*' is selected.
5651 The value is t if the message was newly initialized; otherwise, nil.
5652
5653 Optionally, the signature file `mail-signature-file' can be inserted at the
5654 end; see the variable `mail-signature'.
5655
5656 \\<mail-mode-map>
5657 While editing message, type \\[mail-send-and-exit] to send the message and exit.
5658
5659 Various special commands starting with C-c are available in sendmail mode
5660 to move to message header fields:
5661 \\{mail-mode-map}
5662
5663 The variable `mail-signature' controls whether the signature file
5664 `mail-signature-file' is inserted immediately.
5665
5666 If `mail-signature' is nil, use \\[mail-signature] to insert the
5667 signature in `mail-signature-file'.
5668
5669 If `mail-self-blind' is non-nil, a BCC to yourself is inserted
5670 when the message is initialized.
5671
5672 If `mail-default-reply-to' is non-nil, it should be an address (a string);
5673 a Reply-to: field with that address is inserted.
5674
5675 If `mail-archive-file-name' is non-nil, an FCC field with that file name
5676 is inserted.
5677
5678 The normal hook `mail-setup-hook' is run after the message is
5679 initialized. It can add more default fields to the message.
5680
5681 When calling from a program, the first argument if non-nil says
5682 not to erase the existing contents of the `*mail*' buffer.
5683
5684 The second through fifth arguments,
5685 TO, SUBJECT, IN-REPLY-TO and CC, specify if non-nil
5686 the initial contents of those header fields.
5687 These arguments should not have final newlines.
5688 The sixth argument REPLYBUFFER is a buffer whose contents
5689 should be yanked if the user types C-c C-y.
5690 The seventh argument ACTIONS is a list of actions to take
5691 if/when the message is sent. Each action looks like (FUNCTION . ARGS);
5692 when the message is sent, we apply FUNCTION to ARGS.
5693 This is how Rmail arranges to mark messages `answered'." t nil)
5694
5695 (autoload 'mail-other-window "sendmail" "\
5696 Like `mail' command, but display mail buffer in another window." t nil)
5697
5698 (autoload 'mail-other-frame "sendmail" "\
5699 Like `mail' command, but display mail buffer in another frame." t nil)
5700
5701 (define-key ctl-x-map "m" 'mail)
5702
5703 (define-key ctl-x-4-map "m" 'mail-other-window)
5704
5705 (define-key ctl-x-5-map "m" 'mail-other-frame)
5706
5707 (add-hook 'same-window-buffer-names "*mail*")
5708
5709 ;;;***
5710
5711 ;;;### (autoloads (sh-mode) "sh-script" "modes/sh-script.el" (12860 38184))
5712 ;;; Generated autoloads from modes/sh-script.el
5713
5714 (put 'sh-mode 'mode-class 'special)
5715
5716 (autoload 'sh-mode "sh-script" "\
5717 Major mode for editing shell scripts.
5718 This mode works for many shells, since they all have roughly the same syntax,
5719 as far as commands, arguments, variables, pipes, comments etc. are concerned.
5720 Unless the file's magic number indicates the shell, your usual shell is
5721 assumed. Since filenames rarely give a clue, they are not further analyzed.
5722
5723 This mode adapts to the variations between shells (see `sh-set-shell') by
5724 means of an inheritance based feature lookup (see `sh-feature'). This
5725 mechanism applies to all variables (including skeletons) that pertain to
5726 shell-specific features.
5727
5728 The default style of this mode is that of Rosenblatt's Korn shell book.
5729 The syntax of the statements varies with the shell being used. The
5730 following commands are available, based on the current shell's syntax:
5731
5732 \\[sh-case] case statement
5733 \\[sh-for] for loop
5734 \\[sh-function] function definition
5735 \\[sh-if] if statement
5736 \\[sh-indexed-loop] indexed loop from 1 to n
5737 \\[sh-while-getopts] while getopts loop
5738 \\[sh-repeat] repeat loop
5739 \\[sh-select] select loop
5740 \\[sh-until] until loop
5741 \\[sh-while] while loop
5742
5743 \\[backward-delete-char-untabify] Delete backward one position, even if it was a tab.
5744 \\[sh-newline-and-indent] Delete unquoted space and indent new line same as this one.
5745 \\[sh-end-of-command] Go to end of successive commands.
5746 \\[sh-beginning-of-command] Go to beginning of successive commands.
5747 \\[sh-set-shell] Set this buffer's shell, and maybe its magic number.
5748 \\[sh-execute-region] Have optional header and region be executed in a subshell.
5749
5750 \\[sh-maybe-here-document] Without prefix, following an unquoted < inserts here document.
5751 {, (, [, ', \", `
5752 Unless quoted with \\, insert the pairs {}, (), [], or '', \"\", ``.
5753
5754 If you generally program a shell different from your login shell you can
5755 set `sh-shell-file' accordingly. If your shell's file name doesn't correctly
5756 indicate what shell it is use `sh-alias-alist' to translate.
5757
5758 If your shell gives error messages with line numbers, you can use \\[executable-interpret]
5759 with your script for an edit-interpret-debug cycle." t nil)
5760
5761 (defalias 'shell-script-mode 'sh-mode)
5762
5763 ;;;***
5764
5765 ;;;### (autoloads nil "simula" "modes/simula.el" (12546 37593))
5766 ;;; Generated autoloads from modes/simula.el
5767
5768 ;;;### (autoloads (tcl-help-on-word inferior-tcl tcl-mode) "tcl" "modes/tcl.el" (12823 45232))
5769 ;;; Generated autoloads from modes/tcl.el
5770
5771 (autoload 'tcl-mode "tcl" "\
5772 Major mode for editing Tcl code.
5773 Expression and list commands understand all Tcl brackets.
5774 Tab indents for Tcl code.
5775 Paragraphs are separated by blank lines only.
5776 Delete converts tabs to spaces as it moves back.
5777
5778 Variables controlling indentation style:
5779 tcl-indent-level
5780 Indentation of Tcl statements within surrounding block.
5781 tcl-continued-indent-level
5782 Indentation of continuation line relative to first line of command.
5783
5784 Variables controlling user interaction with mode (see variable
5785 documentation for details):
5786 tcl-tab-always-indent
5787 Controls action of TAB key.
5788 tcl-auto-newline
5789 Non-nil means automatically newline before and after braces, brackets,
5790 and semicolons inserted in Tcl code.
5791 tcl-electric-hash-style
5792 Controls action of `#' key.
5793 tcl-use-hairy-comment-detector
5794 If t, use more complicated, but slower, comment detector.
5795 This variable is only used in GNU Emacs 19.
5796 tcl-use-smart-word-finder
5797 If not nil, use a smarter, Tcl-specific way to find the current
5798 word when looking up help on a Tcl command.
5799
5800 Turning on Tcl mode calls the value of the variable `tcl-mode-hook'
5801 with no args, if that value is non-nil. Read the documentation for
5802 `tcl-mode-hook' to see what kinds of interesting hook functions
5803 already exist.
5804
5805 Commands:
5806 \\{tcl-mode-map}" t nil)
5807
5808 (autoload 'inferior-tcl "tcl" "\
5809 Run inferior Tcl process.
5810 Prefix arg means enter program name interactively.
5811 See documentation for function `inferior-tcl-mode' for more information." t nil)
5812
5813 (autoload 'tcl-help-on-word "tcl" "\
5814 Get help on Tcl command. Default is word at point.
5815 Prefix argument means invert sense of `tcl-use-smart-word-finder'." t nil)
5816
5817 ;;;***
5818
5819 ;;;### (autoloads (latex-mode plain-tex-mode tex-mode) "tex-mode" "modes/tex-mode.el" (12147 26435))
5820 ;;; Generated autoloads from modes/tex-mode.el
5821
5822 (autoload 'tex-mode "tex-mode" "\
5823 Major mode for editing files of input for TeX, LaTeX, or SliTeX.
5824 Tries to determine (by looking at the beginning of the file) whether
5825 this file is for plain TeX, LaTeX, or SliTeX and calls plain-tex-mode,
5826 latex-mode, or slitex-mode, respectively. If it cannot be determined,
5827 such as if there are no commands in the file, the value of tex-default-mode
5828 is used." t nil)
5829
5830 (fset 'TeX-mode 'tex-mode)
5831
5832 (fset 'LaTeX-mode 'latex-mode)
5833
5834 (autoload 'plain-tex-mode "tex-mode" "\
5835 Major mode for editing files of input for plain TeX.
5836 Makes $ and } display the characters they match.
5837 Makes \" insert `` when it seems to be the beginning of a quotation,
5838 and '' when it appears to be the end; it inserts \" only after a \\.
5839
5840 Use \\[tex-region] to run TeX on the current region, plus a \"header\"
5841 copied from the top of the file (containing macro definitions, etc.),
5842 running TeX under a special subshell. \\[tex-buffer] does the whole buffer.
5843 \\[tex-file] saves the buffer and then processes the file.
5844 \\[tex-print] prints the .dvi file made by any of these.
5845 \\[tex-view] previews the .dvi file made by any of these.
5846 \\[tex-bibtex-file] runs bibtex on the file of the current buffer.
5847
5848 Use \\[validate-tex-buffer] to check buffer for paragraphs containing
5849 mismatched $'s or braces.
5850
5851 Special commands:
5852 \\{tex-mode-map}
5853
5854 Mode variables:
5855 tex-run-command
5856 Command string used by \\[tex-region] or \\[tex-buffer].
5857 tex-directory
5858 Directory in which to create temporary files for TeX jobs
5859 run by \\[tex-region] or \\[tex-buffer].
5860 tex-dvi-print-command
5861 Command string used by \\[tex-print] to print a .dvi file.
5862 tex-alt-dvi-print-command
5863 Alternative command string used by \\[tex-print] (when given a prefix
5864 argument) to print a .dvi file.
5865 tex-dvi-view-command
5866 Command string used by \\[tex-view] to preview a .dvi file.
5867 tex-show-queue-command
5868 Command string used by \\[tex-show-print-queue] to show the print
5869 queue that \\[tex-print] put your job on.
5870
5871 Entering Plain-tex mode calls the value of text-mode-hook, then the value of
5872 tex-mode-hook, and then the value of plain-tex-mode-hook. When the special
5873 subshell is initiated, the value of tex-shell-hook is called." t nil)
5874
5875 (fset 'plain-TeX-mode 'plain-tex-mode)
5876
5877 (autoload 'latex-mode "tex-mode" "\
5878 Major mode for editing files of input for LaTeX.
5879 Makes $ and } display the characters they match.
5880 Makes \" insert `` when it seems to be the beginning of a quotation,
5881 and '' when it appears to be the end; it inserts \" only after a \\.
5882
5883 Use \\[tex-region] to run LaTeX on the current region, plus the preamble
5884 copied from the top of the file (containing \\documentstyle, etc.),
5885 running LaTeX under a special subshell. \\[tex-buffer] does the whole buffer.
5886 \\[tex-file] saves the buffer and then processes the file.
5887 \\[tex-print] prints the .dvi file made by any of these.
5888 \\[tex-view] previews the .dvi file made by any of these.
5889 \\[tex-bibtex-file] runs bibtex on the file of the current buffer.
5890
5891 Use \\[validate-tex-buffer] to check buffer for paragraphs containing
5892 mismatched $'s or braces.
5893
5894 Special commands:
5895 \\{tex-mode-map}
5896
5897 Mode variables:
5898 latex-run-command
5899 Command string used by \\[tex-region] or \\[tex-buffer].
5900 tex-directory
5901 Directory in which to create temporary files for LaTeX jobs
5902 run by \\[tex-region] or \\[tex-buffer].
5903 tex-dvi-print-command
5904 Command string used by \\[tex-print] to print a .dvi file.
5905 tex-alt-dvi-print-command
5906 Alternative command string used by \\[tex-print] (when given a prefix
5907 argument) to print a .dvi file.
5908 tex-dvi-view-command
5909 Command string used by \\[tex-view] to preview a .dvi file.
5910 tex-show-queue-command
5911 Command string used by \\[tex-show-print-queue] to show the print
5912 queue that \\[tex-print] put your job on.
5913
5914 Entering Latex mode calls the value of text-mode-hook, then the value of
5915 tex-mode-hook, and then the value of latex-mode-hook. When the special
5916 subshell is initiated, the value of tex-shell-hook is called." t nil)
5917
5918 ;;;***
5919
5920 ;;;### (autoloads (texinfo-mode) "texinfo" "modes/texinfo.el" (12554 53342))
5921 ;;; Generated autoloads from modes/texinfo.el
5922
5923 (autoload 'texinfo-mode "texinfo" "\
5924 Major mode for editing Texinfo files.
5925
5926 It has these extra commands:
5927 \\{texinfo-mode-map}
5928
5929 These are files that are used as input for TeX to make printed manuals
5930 and also to be turned into Info files with \\[makeinfo-buffer] or
5931 the `makeinfo' program. These files must be written in a very restricted and
5932 modified version of TeX input format.
5933
5934 Editing commands are like text-mode except that the syntax table is
5935 set up so expression commands skip Texinfo bracket groups. To see
5936 what the Info version of a region of the Texinfo file will look like,
5937 use \\[makeinfo-region], which runs `makeinfo' on the current region.
5938
5939 You can show the structure of a Texinfo file with \\[texinfo-show-structure].
5940 This command shows the structure of a Texinfo file by listing the
5941 lines with the @-sign commands for @chapter, @section, and the like.
5942 These lines are displayed in another window called the *Occur* window.
5943 In that window, you can position the cursor over one of the lines and
5944 use \\[occur-mode-goto-occurrence], to jump to the corresponding spot
5945 in the Texinfo file.
5946
5947 In addition, Texinfo mode provides commands that insert various
5948 frequently used @-sign commands into the buffer. You can use these
5949 commands to save keystrokes. And you can insert balanced braces with
5950 \\[texinfo-insert-braces] and later use the command \\[up-list] to
5951 move forward past the closing brace.
5952
5953 Also, Texinfo mode provides functions for automatically creating or
5954 updating menus and node pointers. These functions
5955
5956 * insert the `Next', `Previous' and `Up' pointers of a node,
5957 * insert or update the menu for a section, and
5958 * create a master menu for a Texinfo source file.
5959
5960 Here are the functions:
5961
5962 texinfo-update-node \\[texinfo-update-node]
5963 texinfo-every-node-update \\[texinfo-every-node-update]
5964 texinfo-sequential-node-update
5965
5966 texinfo-make-menu \\[texinfo-make-menu]
5967 texinfo-all-menus-update \\[texinfo-all-menus-update]
5968 texinfo-master-menu
5969
5970 texinfo-indent-menu-description (column &optional region-p)
5971
5972 The `texinfo-column-for-description' variable specifies the column to
5973 which menu descriptions are indented.
5974
5975 Passed an argument (a prefix argument, if interactive), the
5976 `texinfo-update-node' and `texinfo-make-menu' functions do their jobs
5977 in the region.
5978
5979 To use the updating commands, you must structure your Texinfo file
5980 hierarchically, such that each `@node' line, with the exception of the
5981 Top node, is accompanied by some kind of section line, such as an
5982 `@chapter' or `@section' line.
5983
5984 If the file has a `top' node, it must be called `top' or `Top' and
5985 be the first node in the file.
5986
5987 Entering Texinfo mode calls the value of text-mode-hook, and then the
5988 value of texinfo-mode-hook." t nil)
5989
5990 ;;;***
5991
5992 ;;;***
5993
5994 ;;;### (autoloads nil "text-mode" "modes/text-mode.el" (12860 15506))
5995 ;;; Generated autoloads from modes/text-mode.el
5996
5997 ;;;### (autoloads (tc-recenter tc-scroll-down tc-scroll-up tc-scroll-line tc-associated-buffer tc-merge tc-dissociate tc-split tc-associate-buffer tc-two-columns) "two-column" "modes/two-column.el" (12648 2852))
5998 ;;; Generated autoloads from modes/two-column.el
5999
6000 (defvar tc-mode-map nil "\
6001 Keymap for commands for two-column mode.")
6002
6003 (if tc-mode-map nil (setq tc-mode-map (make-sparse-keymap)) (define-key tc-mode-map "1" 'tc-merge) (define-key tc-mode-map "2" 'tc-two-columns) (define-key tc-mode-map "b" 'tc-associate-buffer) (define-key tc-mode-map "d" 'tc-dissociate) (define-key tc-mode-map "\^L" 'tc-recenter) (define-key tc-mode-map "o" 'tc-associated-buffer) (define-key tc-mode-map "s" 'tc-split) (define-key tc-mode-map "{" 'shrink-window-horizontally) (define-key tc-mode-map "}" 'enlarge-window-horizontally) (define-key tc-mode-map " " 'tc-scroll-up) (define-key tc-mode-map "" 'tc-scroll-down) (define-key tc-mode-map "
6004 " 'tc-scroll-line))
6005
6006 (global-set-key "6" tc-mode-map)
6007
6008 (defvar tc-other nil "\
6009 Marker to the associated buffer, if non-nil.")
6010
6011 (make-variable-buffer-local 'tc-other)
6012
6013 (put 'tc-other 'permanent-local t)
6014
6015 (autoload 'tc-two-columns "two-column" "\
6016 Split current window vertically for two-column editing.
6017
6018 When called the first time, associates a buffer with the current
6019 buffer. Both buffers are put in two-column minor mode and
6020 tc-mode-hook gets called on both. These buffers remember
6021 about one another, even when renamed.
6022
6023 When called again, restores the screen layout with the current buffer
6024 first and the associated buffer to it's right.
6025
6026 If you include long lines, i.e which will span both columns (eg.
6027 source code), they should be in what will be the first column, with
6028 the associated buffer having empty lines next to them.
6029
6030 You have the following commands at your disposal:
6031
6032 \\[tc-two-columns] Rearrange screen
6033 \\[tc-associate-buffer] Reassociate buffer after changing major mode
6034 \\[tc-scroll-up] Scroll both buffers up by a screenfull
6035 \\[tc-scroll-down] Scroll both buffers down by a screenful
6036 \\[tc-scroll-line] Scroll both buffers up by one or more lines
6037 \\[tc-recenter] Recenter and realign other buffer
6038 \\[shrink-window-horizontally], \\[enlarge-window-horizontally] Shrink, enlarge current column
6039 \\[tc-associated-buffer] Switch to associated buffer
6040 \\[tc-merge] Merge both buffers
6041
6042 These keybindings can be customized in your ~/.emacs by `tc-prefix'
6043 and `tc-mode-map'.
6044
6045 The appearance of the screen can be customized by the variables
6046 `tc-window-width', `tc-beyond-fill-column',
6047 `tc-mode-line-format' and `truncate-partial-width-windows'." t nil)
6048
6049 (add-minor-mode 'tc-other " 2C" nil nil 'tc-two-columns)
6050
6051 (autoload 'tc-associate-buffer "two-column" "\
6052 Associate another buffer with this one in two-column minor mode.
6053 Can also be used to associate a just previously visited file, by
6054 accepting the proposed default buffer.
6055
6056 See \\[tc-two-columns] and `lisp/two-column.el' for further details." t nil)
6057
6058 (autoload 'tc-split "two-column" "\
6059 Unmerge a two-column text into two buffers in two-column minor mode.
6060 The text is unmerged at the cursor's column which becomes the local
6061 value of `tc-window-width'. Only lines that have the ARG same
6062 preceding characters at that column get split. The ARG preceding
6063 characters without any leading whitespace become the local value for
6064 `tc-separator'. This way lines that continue across both
6065 columns remain untouched in the first buffer.
6066
6067 This function can be used with a prototype line, to set up things as
6068 you like them. You write the first line of each column with the
6069 separator you like and then unmerge that line. E.g.:
6070
6071 First column's text sSs Second columns text
6072 \\___/\\
6073 / \\
6074 5 character Separator You type M-5 \\[tc-split] with the point here
6075
6076 See \\[tc-two-columns] and `lisp/two-column.el' for further details." t nil)
6077
6078 (autoload 'tc-dissociate "two-column" "\
6079 Turn off two-column minor mode in current and associated buffer.
6080 If the associated buffer is unmodified and empty, it is killed." t nil)
6081
6082 (autoload 'tc-merge "two-column" "\
6083 Merges the associated buffer with the current buffer.
6084 They get merged at the column, which is the value of
6085 `tc-window-width', i.e. usually at the vertical window
6086 separator. This separator gets replaced with white space. Beyond
6087 that the value of gets inserted on merged lines. The two columns are
6088 thus pasted side by side, in a single text. If the other buffer is
6089 not displayed to the left of this one, then this one becomes the left
6090 column.
6091
6092 If you want `tc-separator' on empty lines in the second column,
6093 you should put just one space in them. In the final result, you can strip
6094 off trailing spaces with \\[beginning-of-buffer] \\[replace-regexp] [ SPC TAB ] + $ RET RET" t nil)
6095
6096 (autoload 'tc-associated-buffer "two-column" "\
6097 Switch to associated buffer." t nil)
6098
6099 (autoload 'tc-scroll-line "two-column" "\
6100 Scroll current window upward by ARG lines.
6101 The associated window gets scrolled to the same line." t nil)
6102
6103 (autoload 'tc-scroll-up "two-column" "\
6104 Scroll current window upward by ARG screens.
6105 The associated window gets scrolled to the same line." t nil)
6106
6107 (autoload 'tc-scroll-down "two-column" "\
6108 Scroll current window downward by ARG screens.
6109 The associated window gets scrolled to the same line." t nil)
6110
6111 (autoload 'tc-recenter "two-column" "\
6112 Center point in window. With ARG, put point on line ARG.
6113 This counts from bottom if ARG is negative. The associated window
6114 gets scrolled to the same line." t nil)
6115
6116 ;;;***
6117
6118 ;;;### (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" (12742 53066))
6119 ;;; Generated autoloads from modes/view-less.el
6120
6121 (autoload 'view-file "view-less" "\
6122 Find FILE, enter view mode. With prefix arg OTHER-P, use other window." t nil)
6123
6124 (autoload 'view-buffer "view-less" "\
6125 Switch to BUF, enter view mode. With prefix arg use other window." t nil)
6126
6127 (autoload 'view-file-other-window "view-less" "\
6128 Find FILE in other window, and enter view mode." t nil)
6129
6130 (autoload 'view-buffer-other-window "view-less" "\
6131 Switch to BUFFER in another window, and enter view mode." t nil)
6132
6133 (autoload 'view-minor-mode "view-less" "\
6134 Minor mode for viewing text, with bindings like `less'.
6135 Commands are:
6136 \\<view-minor-mode-map>
6137 0..9 prefix args
6138 - prefix minus
6139 \\[scroll-up] page forward
6140 \\[scroll-down] page back
6141 \\[view-scroll-lines-up] scroll prefix-arg lines forward, default 1.
6142 \\[view-scroll-lines-down] scroll prefix-arg lines backward, default 1.
6143 \\[view-scroll-some-lines-down] scroll prefix-arg lines backward, default 10.
6144 \\[view-scroll-some-lines-up] scroll prefix-arg lines forward, default 10.
6145 \\[what-line] print line number
6146 \\[view-mode-describe] print this help message
6147 \\[view-search-forward] regexp search, uses previous string if you just hit RET
6148 \\[view-search-backward] as above but searches backward
6149 \\[view-repeat-search] repeat last search
6150 \\[view-goto-line] goto line prefix-arg, default 1
6151 \\[view-last-windowful] goto line prefix-arg, default last line
6152 \\[view-goto-percent] goto a position by percentage
6153 \\[toggle-truncate-lines] toggle truncate-lines
6154 \\[view-file] view another file
6155 \\[view-buffer] view another buffer
6156 \\[view-cleanup-backspaces] cleanup backspace constructions
6157 \\[shell-command] execute a shell command
6158 \\[shell-command-on-region] execute a shell command with the region as input
6159 \\[view-quit] exit view-mode, and bury the current buffer.
6160
6161 If invoked with the optional (prefix) arg non-nil, view-mode cleans up
6162 backspace constructions.
6163
6164 More precisely:
6165 \\{view-minor-mode-map}" t nil)
6166
6167 (autoload 'view-mode "view-less" "\
6168 View the current buffer using view-minor-mode. This exists to be 99.9%
6169 compatible with the implementations of `view-mode' in view.el and older
6170 versions of view-less.el." t nil)
6171
6172 (autoload 'view-major-mode "view-less" "\
6173 View the current buffer using view-mode, as a major mode.
6174 This function has a nonstandard name because `view-mode' is wrongly
6175 named but is like this for compatibility reasons." t nil)
6176
6177 (autoload 'auto-view-mode "view-less" "\
6178 If the file of the current buffer is not writable, call view-mode.
6179 This is meant to be added to `find-file-hooks'." nil nil)
6180
6181 ;;;***
6182
6183 ;;;***
6184
6185 ;;;### (autoloads nil "view" "modes/view.el" (12860 15506))
6186 ;;; Generated autoloads from modes/view.el
6187
6188 ;;;### (autoloads (vrml-mode) "vrml-mode" "modes/vrml-mode.el" (12823 45230))
6189 ;;; Generated autoloads from modes/vrml-mode.el
6190
6191 (autoload 'vrml-mode "vrml-mode" "\
6192 Major mode for editing VRML code.
6193 Expression and list commands understand all VRML brackets.
6194 Tab indents for VRML code.
6195 Paragraphs are separated by blank lines only.
6196 Delete converts tabs to spaces as it moves back.
6197
6198 Variables controlling indentation style:
6199 vrml-indent-level
6200 Indentation of VRML statements within surrounding block.
6201
6202 Variables controlling user interaction with mode (see variable
6203 documentation for details):
6204 vrml-tab-always-indent
6205 Controls action of TAB key.
6206 vrml-auto-newline
6207 Non-nil means automatically newline before and after braces
6208 inserted in VRML code.
6209
6210 Turning on VRML mode calls the value of the variable `vrml-mode-hook'
6211 with no args, if that value is non-nil. Read the documentation for
6212 `vrml-mode-hook' to see what kinds of interesting hook functions
6213 already exist.
6214
6215 Commands:
6216 \\{vrml-mode-map}" t nil)
6217
6218 ;;;***
6219
6220 ;;;### (autoloads (xpm-mode) "xpm-mode" "modes/xpm-mode.el" (12860 15517))
6221 ;;; Generated autoloads from modes/xpm-mode.el
6222
6223 (autoload 'xpm-mode "xpm-mode" "\
6224 Treat the current buffer as an xpm file and colorize it.
6225
6226 Shift-button-1 lets you paint by dragging the mouse. Shift-button-1 on a
6227 color definition line will change the current painting color to that line's
6228 value.
6229
6230 Characters inserted from the keyboard will NOT be colored properly yet.
6231 Use the mouse, or do xpm-init (\\[xpm-init]) after making changes.
6232
6233 \\[xpm-add-color] Add a new color, prompting for character and value
6234 \\[xpm-show-image] show the current image at the top of the buffer
6235 \\[xpm-parse-color] parse the current line's color definition and add
6236 it to the color table. Provided as a means of changing colors.
6237 XPM minor mode bindings:
6238 \\{xpm-mode-map}" t nil)
6239
6240 ;;;***
6241
6242 ;;;### (autoloads nil "ns-init" "ns/ns-init.el" (12528 15474))
6243 ;;; Generated autoloads from ns/ns-init.el
6244
6245 ;;;***
6246
6247 ;;;### (autoloads nil "br-c++-ft" "oobr/br-c++-ft.el" (12202 46025))
6248 ;;; Generated autoloads from oobr/br-c++-ft.el
6249
6250 ;;;***
6251
6252 ;;;### (autoloads nil "br-c++" "oobr/br-c++.el" (12558 62979))
6253 ;;; Generated autoloads from oobr/br-c++.el
6254
6255 ;;;***
6256
6257 ;;;### (autoloads nil "br-c-ft" "oobr/br-c-ft.el" (12558 62993))
6258 ;;; Generated autoloads from oobr/br-c-ft.el
6259
6260 ;;;***
6261
6262 ;;;### (autoloads nil "br-clos-ft" "oobr/br-clos-ft.el" (12351 16429))
6263 ;;; Generated autoloads from oobr/br-clos-ft.el
6264
6265 ;;;***
6266
6267 ;;;### (autoloads nil "br-clos" "oobr/br-clos.el" (12558 62980))
6268 ;;; Generated autoloads from oobr/br-clos.el
6269
6270 ;;;***
6271
6272 ;;;### (autoloads nil "br-compl" "oobr/br-compl.el" (12202 46027))
6273 ;;; Generated autoloads from oobr/br-compl.el
6274
6275 ;;;***
6276
6277 ;;;### (autoloads nil "br-eif-ft" "oobr/br-eif-ft.el" (12212 18736))
6278 ;;; Generated autoloads from oobr/br-eif-ft.el
6279
6280 ;;;***
6281
6282 ;;;### (autoloads nil "br-eif" "oobr/br-eif.el" (12558 62980))
6283 ;;; Generated autoloads from oobr/br-eif.el
6284
6285 ;;;***
6286
6287 ;;;### (autoloads (br-env-load br-env-browse) "br-env" "oobr/br-env.el" (12714 11760))
6288 ;;; Generated autoloads from oobr/br-env.el
6289
6290 (autoload 'br-env-browse "br-env" "\
6291 Invoke the OO-Browser on an existing or to be created Environment ENV-FILE." t nil)
6292
6293 (autoload 'br-env-load "br-env" "\
6294 Load browser Environment or spec from optional ENV-FILE or 'br-env-file'.
6295 Non-nil PROMPT means prompt user before building tables.
6296 Non-nil NO-BUILD means skip build of Environment entirely.
6297 Return t if load is successful, else nil." t nil)
6298
6299 ;;;***
6300
6301 ;;;### (autoloads nil "br-ftr" "oobr/br-ftr.el" (12355 23867))
6302 ;;; Generated autoloads from oobr/br-ftr.el
6303
6304 ;;;***
6305
6306 ;;;### (autoloads nil "br-info" "oobr/br-info.el" (12558 62982))
6307 ;;; Generated autoloads from oobr/br-info.el
6308
6309 ;;;***
6310
6311 ;;;### (autoloads nil "br-init" "oobr/br-init.el" (12714 11761))
6312 ;;; Generated autoloads from oobr/br-init.el
6313
6314 ;;;### (autoloads nil "br-java-ft" "oobr/br-java-ft.el" (12558 62996))
6315 ;;; Generated autoloads from oobr/br-java-ft.el
6316
6317 ;;;***
6318
6319 ;;;### (autoloads nil "br-java" "oobr/br-java.el" (12558 62996))
6320 ;;; Generated autoloads from oobr/br-java.el
6321
6322 ;;;***
6323
6324 ;;;### (autoloads nil "br-lib" "oobr/br-lib.el" (12558 62984))
6325 ;;; Generated autoloads from oobr/br-lib.el
6326
6327 ;;;***
6328
6329 ;;;### (autoloads nil "br-menu" "oobr/br-menu.el" (12558 62984))
6330 ;;; Generated autoloads from oobr/br-menu.el
6331
6332 ;;;***
6333
6334 ;;;### (autoloads nil "br-objc-ft" "oobr/br-objc-ft.el" (12202 46031))
6335 ;;; Generated autoloads from oobr/br-objc-ft.el
6336
6337 ;;;***
6338
6339 ;;;### (autoloads nil "br-objc" "oobr/br-objc.el" (12558 62985))
6340 ;;; Generated autoloads from oobr/br-objc.el
6341
6342 ;;;***
6343
6344 ;;;### (autoloads nil "br-python-ft" "oobr/br-python-ft.el" (12714 11806))
6345 ;;; Generated autoloads from oobr/br-python-ft.el
6346
6347 ;;;***
6348
6349 ;;;### (autoloads nil "br-python" "oobr/br-python.el" (12714 11806))
6350 ;;; Generated autoloads from oobr/br-python.el
6351
6352 ;;;### (autoloads nil "br-site" "oobr/br-site.el" (12351 16433))
6353 ;;; Generated autoloads from oobr/br-site.el
6354
6355 ;;;***
6356
6357 ;;;### (autoloads nil "br-smt" "oobr/br-smt.el" (12558 62986))
6358 ;;; Generated autoloads from oobr/br-smt.el
6359
6360 ;;;***
6361
6362 ;;;### (autoloads (oo-browser) "br-start" "oobr/br-start.el" (12558 62986))
6363 ;;; Generated autoloads from oobr/br-start.el
6364
6365 (fset 'oobr 'oo-browser)
6366
6367 (autoload 'oo-browser "br-start" "\
6368 Prompt for an Environment and language over which to run the OO-Browser.
6369 Optional prefix argument SAME-ENV-FLAG means browse the current Environment,
6370 if any, without prompting." t nil)
6371
6372 ;;;***
6373
6374 ;;;### (autoloads nil "br-tree" "oobr/br-tree.el" (12294 59327))
6375 ;;; Generated autoloads from oobr/br-tree.el
6376
6377 ;;;***
6378
6379 ;;;### (autoloads nil "br-vers" "oobr/br-vers.el" (12714 11762))
6380 ;;; Generated autoloads from oobr/br-vers.el
6381
6382 ;;;### (autoloads (br-to-from-viewer br-add-class-file) "br" "oobr/br.el" (12714 11763))
6383 ;;; Generated autoloads from oobr/br.el
6384
6385 (autoload 'br-add-class-file "br" "\
6386 Add a file of classes to the current Environment.
6387 Interactively or when optional CLASS-PATH is nil, CLASS-PATH defaults to the
6388 current buffer file pathname. If optional LIB-TABLE-P is non-nil, add to
6389 Library Environment, otherwise add to System Environment. If optional
6390 SAVE-FILE is t, the Environment is then stored to the filename given by
6391 'br-env-file'. If SAVE-FILE is non-nil and not t, its string value is used
6392 as the file to which to save the Environment." t nil)
6393
6394 (autoload 'br-to-from-viewer "br" "\
6395 Move point to viewer window or back to last recorded listing window." t nil)
6396
6397 ;;;***
6398
6399 ;;;### (autoloads (c++-browse) "c++-browse" "oobr/c++-browse.el" (12558 62989))
6400 ;;; Generated autoloads from oobr/c++-browse.el
6401
6402 (autoload 'c++-browse "c++-browse" "\
6403 Invoke the C++ OO-Browser.
6404 This allows browsing through C++ library and system class hierarchies. With
6405 an optional non-nil prefix argument ENV-FILE, prompt for Environment file to
6406 use. Alternatively, a string value of ENV-FILE is used as the Environment
6407 file name. See also the file \"br-help\"." t nil)
6408
6409 ;;;***
6410
6411 ;;;### (autoloads (clos-browse) "clos-brows" "oobr/clos-brows.el" (12558 62989))
6412 ;;; Generated autoloads from oobr/clos-brows.el
6413
6414 (autoload 'clos-browse "clos-brows" "\
6415 Invoke the CLOS OO-Browser.
6416 This allows browsing through CLOS library and system class hierarchies. With
6417 an optional non-nil prefix argument ENV-FILE, prompt for Environment file
6418 to use. Alternatively, a string value of ENV-FILE is used as the
6419 Environment file name. See also the file \"br-help\"." t nil)
6420
6421 ;;;***
6422
6423 ;;;### (autoloads (eif-browse) "eif-browse" "oobr/eif-browse.el" (12558 62989))
6424 ;;; Generated autoloads from oobr/eif-browse.el
6425
6426 (autoload 'eif-browse "eif-browse" "\
6427 Invoke the Eiffel OO-Browser.
6428 This allows browsing through Eiffel library and system class hierarchies.
6429 With an optional prefix arg ENV-FILE equal to t, prompt for Environment file
6430 to use. Alternatively, a string value of ENV-FILE is used as the Environment
6431 file name. See also the file \"br-help\"." t nil)
6432
6433 ;;;***
6434
6435 ;;;### (autoloads nil "eif-calls" "oobr/eif-calls.el" (12356 62998))
6436 ;;; Generated autoloads from oobr/eif-calls.el
6437
6438 ;;;***
6439
6440 ;;;### (autoloads nil "eif-ise-er" "oobr/eif-ise-er.el" (12193 28644))
6441 ;;; Generated autoloads from oobr/eif-ise-er.el
6442
6443 ;;;***
6444
6445 ;;;### (autoloads nil "hash-test" "oobr/hash-test.el" (12178 36955))
6446 ;;; Generated autoloads from oobr/hash-test.el
6447
6448 ;;;***
6449
6450 ;;;### (autoloads nil "hasht" "oobr/hasht.el" (12558 62990))
6451 ;;; Generated autoloads from oobr/hasht.el
6452
6453 ;;;***
6454
6455 ;;;### (autoloads nil "hmouse-br" "oobr/hmouse-br.el" (12558 62991))
6456 ;;; Generated autoloads from oobr/hmouse-br.el
6457
6458 ;;;### (autoloads (info-browse) "info-brows" "oobr/info-brows.el" (12558 62991))
6459 ;;; Generated autoloads from oobr/info-brows.el
6460
6461 (autoload 'info-browse "info-brows" "\
6462 Invoke the Info OO-Browser.
6463 This allows browsing through Info library and system class hierarchies. With
6464 an optional non-nil prefix argument ENV-FILE, prompt for Environment file to
6465 use. Alternatively, a string value of ENV-FILE is used as the Environment
6466 file name. See also the file \"br-help\"." t nil)
6467
6468 ;;;***
6469
6470 ;;;### (autoloads (java-browse) "java-brows" "oobr/java-brows.el" (12558 62998))
6471 ;;; Generated autoloads from oobr/java-brows.el
6472
6473 (autoload 'java-browse "java-brows" "\
6474 Invoke the Java OO-Browser.
6475 This allows browsing through Java library and system class hierarchies. With
6476 an optional non-nil prefix argument ENV-FILE, prompt for Environment file to
6477 use. Alternatively, a string value of ENV-FILE is used as the Environment
6478 file name. See also the file \"br-help\"." t nil)
6479
6480 ;;;***
6481
6482 ;;;### (autoloads (objc-browse) "objc-brows" "oobr/objc-brows.el" (12558 62992))
6483 ;;; Generated autoloads from oobr/objc-brows.el
6484
6485 (autoload 'objc-browse "objc-brows" "\
6486 Invoke the Objective-C OO-Browser.
6487 This allows browsing through Objective-C library and system class
6488 hierarchies. With an optional non-nil prefix argument ENV-FILE, prompt for
6489 Environment file to use. Alternatively, a string value of ENV-FILE is used
6490 as the Environment file name. See also the file \"br-help\"." t nil)
6491
6492 ;;;***
6493
6494 ;;;### (autoloads (python-browse) "python-browse" "oobr/python-browse.el" (12714 11806))
6495 ;;; Generated autoloads from oobr/python-browse.el
6496
6497 (autoload 'python-browse "python-browse" "\
6498 Invoke the Python OO-Browser.
6499 This allows browsing through Python library and system class hierarchies.
6500 With an optional non-nil prefix argument ENV-FILE, prompt for Environment
6501 file to use. Alternatively, a string value of ENV-FILE is used as the
6502 Environment file name. See also the file \"br-help\"." t nil)
6503
6504 ;;;***
6505
6506 ;;;### (autoloads (smt-browse) "smt-browse" "oobr/smt-browse.el" (12558 62993))
6507 ;;; Generated autoloads from oobr/smt-browse.el
6508
6509 (autoload 'smt-browse "smt-browse" "\
6510 Invoke the Smalltalk OO-Browser.
6511 This allows browsing through Smalltalk library and system class hierarchies.
6512 With an optional non-nil prefix argument ENV-FILE, prompt for Environment
6513 file to use. Alternatively, a string value of ENV-FILE is used as the
6514 Environment file name. See also the file \"br-help\"." t nil)
6515
6516 ;;;***
6517
6518 ;;;### (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" (12860 15522))
6519 ;;; Generated autoloads from packages/add-log.el
6520
6521 (defvar change-log-default-name nil "\
6522 *Name of a change log file for \\[add-change-log-entry].")
6523
6524 (defvar add-log-current-defun-function nil "\
6525 *If non-nil, function to guess name of current function from surrounding text.
6526 \\[add-change-log-entry] calls this function (if nil, `add-log-current-defun'
6527 instead) with no arguments. It returns a string or nil if it cannot guess.")
6528
6529 (defvar add-log-full-name nil "\
6530 *Full name of user, for inclusion in ChangeLog daily headers.
6531 This defaults to the value returned by the `user-full-name' function.")
6532
6533 (defvar add-log-mailing-address nil "\
6534 *Electronic mail address of user, for inclusion in ChangeLog daily headers.
6535 This defaults to the value of `user-mail-address'.")
6536
6537 (autoload 'prompt-for-change-log-name "add-log" "\
6538 Prompt for a change log name." nil nil)
6539
6540 (autoload 'find-change-log "add-log" "\
6541 Find a change log file for \\[add-change-log-entry] and return the name.
6542
6543 Optional arg FILE-NAME specifies the file to use.
6544 If FILE-NAME is nil, use the value of `change-log-default-name'.
6545 If 'change-log-default-name' is nil, behave as though it were 'ChangeLog'
6546 \(or whatever we use on this operating system).
6547
6548 If 'change-log-default-name' contains a leading directory component, then
6549 simply find it in the current directory. Otherwise, search in the current
6550 directory and its successive parents for a file so named.
6551
6552 Once a file is found, `change-log-default-name' is set locally in the
6553 current buffer to the complete file name." nil nil)
6554
6555 (autoload 'add-change-log-entry "add-log" "\
6556 Find change log file and add an entry for today.
6557 Optional arg (interactive prefix) non-nil means prompt for user name and site.
6558 Second arg is file name of change log. If nil, uses `change-log-default-name'.
6559 Third arg OTHER-WINDOW non-nil means visit in other window.
6560 Fourth arg NEW-ENTRY non-nil means always create a new entry at the front;
6561 never append to an existing entry." t nil)
6562
6563 (autoload 'add-change-log-entry-other-window "add-log" "\
6564 Find change log file in other window and add an entry for today.
6565 Optional arg (interactive prefix) non-nil means prompt for user name and site.
6566 Second arg is file name of change log. If nil, uses `change-log-default-name'." t nil)
6567
6568 (define-key ctl-x-4-map "a" 'add-change-log-entry-other-window)
6569
6570 (autoload 'change-log-mode "add-log" "\
6571 Major mode for editing change logs; like Indented Text Mode.
6572 Prevents numeric backups and sets `left-margin' to 8 and `fill-column' to 74.
6573 New log entries are usually made with \\[add-change-log-entry] or \\[add-change-log-entry-other-window].
6574 Each entry behaves as a paragraph, and the entries for one day as a page.
6575 Runs `change-log-mode-hook'." t nil)
6576
6577 (autoload 'add-log-current-defun "add-log" "\
6578 Return name of function definition point is in, or nil.
6579
6580 Understands C, Lisp, LaTeX (\"functions\" are chapters, sections, ...),
6581 Texinfo (@node titles), Perl, and Fortran.
6582
6583 Other modes are handled by a heuristic that looks in the 10K before
6584 point for uppercase headings starting in the first column or
6585 identifiers followed by `:' or `=', see variable
6586 `add-log-current-defun-header-regexp'.
6587
6588 Has a preference of looking backwards." nil nil)
6589
6590 ;;;***
6591
6592 ;;;### (autoloads (apropos-documentation apropos-value apropos apropos-command) "apropos" "packages/apropos.el" (12860 15525))
6593 ;;; Generated autoloads from packages/apropos.el
6594
6595 (fset 'command-apropos 'apropos-command)
6596
6597 (autoload 'apropos-command "apropos" "\
6598 Shows commands (interactively callable functions) that match REGEXP.
6599 With optional prefix ARG or if `apropos-do-all' is non-nil, also show
6600 variables." t nil)
6601
6602 (autoload 'apropos "apropos" "\
6603 Show all bound symbols whose names match REGEXP.
6604 With optional prefix ARG or if `apropos-do-all' is non-nil, also show unbound
6605 symbols and key bindings, which is a little more time-consuming.
6606 Returns list of symbols and documentation found." t nil)
6607
6608 (autoload 'apropos-value "apropos" "\
6609 Show all symbols whose value's printed image matches REGEXP.
6610 With optional prefix ARG or if `apropos-do-all' is non-nil, also looks
6611 at the function and at the names and values of properties.
6612 Returns list of symbols and values found." t nil)
6613
6614 (autoload 'apropos-documentation "apropos" "\
6615 Show symbols whose documentation contain matches for REGEXP.
6616 With optional prefix ARG or if `apropos-do-all' is non-nil, also use
6617 documentation that is not stored in the documentation file and show key
6618 bindings.
6619 Returns list of symbols and documentation found." t nil)
6620
6621 ;;;***
6622
6623 ;;;***
6624
6625 ;;;***
6626
6627 ;;;### (autoloads nil "array" "packages/array.el" (12860 15523))
6628 ;;; Generated autoloads from packages/array.el
6629
6630 ;;;***
6631
6632 ;;;### (autoloads nil "auto-save" "packages/auto-save.el" (12178 28935))
6633 ;;; Generated autoloads from packages/auto-save.el
6634
6635 ;;;### (autoloads (define-auto-insert auto-insert) "autoinsert" "packages/autoinsert.el" (12860 15525))
6636 ;;; Generated autoloads from packages/autoinsert.el
6637
6638 (autoload 'auto-insert "autoinsert" "\
6639 Insert default contents into a new file if `auto-insert' is non-nil.
6640 Matches the visited file name against the elements of `auto-insert-alist'." t nil)
6641
6642 (autoload 'define-auto-insert "autoinsert" "\
6643 Associate CONDITION with (additional) ACTION in `auto-insert-alist'.
6644 Optional AFTER means to insert action after all existing actions for CONDITION,
6645 or if CONDITION had no actions, after all other CONDITIONs." nil nil)
6646
6647 ;;;***
6648
6649 ;;;### (autoloads (mouse-avoidance-mode) "avoid" "packages/avoid.el" (12860 15565))
6650 ;;; Generated autoloads from packages/avoid.el
6651
6652 (autoload 'mouse-avoidance-mode "avoid" "\
6653 Set cursor avoidance mode to MODE.
6654 MODE should be one of the symbols `banish', `exile', `jump', `animate',
6655 `cat-and-mouse', `proteus', or `none'.
6656
6657 If MODE is nil, toggle mouse avoidance between `none` and `banish'
6658 modes. Positive numbers and symbols other than the above are treated
6659 as equivalent to `banish'; negative numbers and `-' are equivalent to `none'.
6660
6661 Effects of the different modes:
6662 * banish: Move the mouse to the upper-right corner on any keypress.
6663 * exile: Move the mouse to the corner only if the cursor gets too close,
6664 and allow it to return once the cursor is out of the way.
6665 * jump: If the cursor gets too close to the mouse, displace the mouse
6666 a random distance & direction.
6667 * animate: As `jump', but shows steps along the way for illusion of motion.
6668 * cat-and-mouse: Same as `animate'.
6669 * proteus: As `animate', but changes the shape of the mouse pointer too.
6670
6671 Whenever the mouse is moved, the frame is also raised.
6672
6673 \(see `mouse-avoidance-threshold' for definition of \"too close\",
6674 and `mouse-avoidance-nudge-dist' and `mouse-avoidance-nudge-var' for
6675 definition of \"random distance\".)" t nil)
6676
6677 (add-minor-mode 'mouse-avoidance-mode " Avoid")
6678
6679 ;;;***
6680
6681 ;;;### (autoloads nil "balloon-help" "packages/balloon-help.el" (12547 41272))
6682 ;;; Generated autoloads from packages/balloon-help.el
6683
6684 ;;;***
6685
6686 ;;;***
6687
6688 ;;;### (autoloads nil "big-menubar" "packages/big-menubar.el" (12851 23299))
6689 ;;; Generated autoloads from packages/big-menubar.el
6690
6691 ;;;### (autoloads (blink-cursor-mode) "blink-cursor" "packages/blink-cursor.el" (12637 24293))
6692 ;;; Generated autoloads from packages/blink-cursor.el
6693
6694 (autoload 'blink-cursor-mode "blink-cursor" "\
6695 Enable or disable a blinking cursor.
6696 If TIMEOUT is nil, toggle on or off.
6697 If TIMEOUT is t, enable with the previous timeout value.
6698 If TIMEOUT is 0, disable.
6699 If TIMEOUT is greater than 0, then the cursor will blink once
6700 each TIMEOUT secs (can be a float)." t nil)
6701
6702 ;;;***
6703
6704 ;;;### (autoloads nil "blink-paren" "packages/blink-paren.el" (12178 36812))
6705 ;;; Generated autoloads from packages/blink-paren.el
6706
6707 ;;;### (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" (12823 45244))
6708 ;;; Generated autoloads from packages/bookmark.el
6709
6710 (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)))
6711
6712 (defvar bookmark-map nil "\
6713 Keymap containing bindings to bookmark functions.
6714 It is not bound to any key by default: to bind it
6715 so that you have a bookmark prefix, just use `global-set-key' and bind a
6716 key of your choice to `bookmark-map'. All interactive bookmark
6717 functions have a binding in this keymap.")
6718
6719 (define-prefix-command 'bookmark-map)
6720
6721 (define-key bookmark-map "x" 'bookmark-set)
6722
6723 (define-key bookmark-map "m" 'bookmark-set)
6724
6725 (define-key bookmark-map "j" 'bookmark-jump)
6726
6727 (define-key bookmark-map "g" 'bookmark-jump)
6728
6729 (define-key bookmark-map "i" 'bookmark-insert)
6730
6731 (define-key bookmark-map "e" 'edit-bookmarks)
6732
6733 (define-key bookmark-map "f" 'bookmark-insert-location)
6734
6735 (define-key bookmark-map "r" 'bookmark-rename)
6736
6737 (define-key bookmark-map "d" 'bookmark-delete)
6738
6739 (define-key bookmark-map "l" 'bookmark-load)
6740
6741 (define-key bookmark-map "w" 'bookmark-write)
6742
6743 (define-key bookmark-map "s" 'bookmark-save)
6744
6745 (autoload 'bookmark-set "bookmark" "\
6746 Set a bookmark named NAME inside a file.
6747 If name is nil, then the user will be prompted.
6748 With prefix arg, will not overwrite a bookmark that has the same name
6749 as NAME if such a bookmark already exists, but instead will \"push\"
6750 the new bookmark onto the bookmark alist. Thus the most recently set
6751 bookmark with name NAME would be the one in effect at any given time,
6752 but the others are still there, should you decide to delete the most
6753 recent one.
6754
6755 To yank words from the text of the buffer and use them as part of the
6756 bookmark name, type C-w while setting a bookmark. Successive C-w's
6757 yank successive words.
6758
6759 Typing C-u inserts the name of the last bookmark used in the buffer
6760 \(as an aid in using a single bookmark name to track your progress
6761 through a large file). If no bookmark was used, then C-u inserts the
6762 name of the file being visited.
6763
6764 Use \\[bookmark-delete] to remove bookmarks (you give it a name,
6765 and it removes only the first instance of a bookmark with that name from
6766 the list of bookmarks.)" t nil)
6767
6768 (autoload 'bookmark-jump "bookmark" "\
6769 Jump to bookmark BOOKMARK (a point in some file).
6770 You may have a problem using this function if the value of variable
6771 `bookmark-alist' is nil. If that happens, you need to load in some
6772 bookmarks. See help on function `bookmark-load' for more about
6773 this.
6774
6775 If the file pointed to by BOOKMARK no longer exists, you will be asked
6776 if you wish to give the bookmark a new location, and bookmark-jump
6777 will then jump to the new location, as well as recording it in place
6778 of the old one in the permanent bookmark record." t nil)
6779
6780 (autoload 'bookmark-relocate "bookmark" "\
6781 Relocate BOOKMARK -- prompts for a filename, and makes an already
6782 existing bookmark point to that file, instead of the one it used to
6783 point at. Useful when a file has been renamed after a bookmark was
6784 set in it." t nil)
6785
6786 (autoload 'bookmark-insert-location "bookmark" "\
6787 Insert the name of the file associated with BOOKMARK.
6788 Optional second arg NO-HISTORY means don't record this in the
6789 minibuffer history list `bookmark-history'." t nil)
6790
6791 (autoload 'bookmark-rename "bookmark" "\
6792 Change the name of OLD bookmark to NEW name. If called from
6793 keyboard, prompts for OLD and NEW. If called from menubar, OLD is
6794 selected from a menu, and prompts for NEW.
6795
6796 If called from Lisp, prompts for NEW if only OLD was passed as an
6797 argument. If called with two strings, then no prompting is done. You
6798 must pass at least OLD when calling from Lisp.
6799
6800 While you are entering the new name, consecutive C-w's insert
6801 consectutive words from the text of the buffer into the new bookmark
6802 name." t nil)
6803
6804 (autoload 'bookmark-insert "bookmark" "\
6805 Insert the text of the file pointed to by bookmark BOOKMARK.
6806 You may have a problem using this function if the value of variable
6807 `bookmark-alist' is nil. If that happens, you need to load in some
6808 bookmarks. See help on function `bookmark-load' for more about
6809 this." t nil)
6810
6811 (autoload 'bookmark-delete "bookmark" "\
6812 Delete BOOKMARK from the bookmark list.
6813 Removes only the first instance of a bookmark with that name. If
6814 there are one or more other bookmarks with the same name, they will
6815 not be deleted. Defaults to the \"current\" bookmark (that is, the
6816 one most recently used in this file, if any).
6817 Optional second arg BATCH means don't update the bookmark list buffer,
6818 probably because we were called from there." t nil)
6819
6820 (autoload 'bookmark-write "bookmark" "\
6821 Write bookmarks to a file (for which the user will be prompted
6822 interactively). Don't use this in Lisp programs; use bookmark-save
6823 instead." t nil)
6824
6825 (autoload 'bookmark-save "bookmark" "\
6826 Save currently defined bookmarks.
6827 Saves by default in the file defined by the variable
6828 `bookmark-default-file'. With a prefix arg, save it in file FILE
6829 \(second argument).
6830
6831 If you are calling this from Lisp, the two arguments are PREFIX-ARG
6832 and FILE, and if you just want it to write to the default file, then
6833 pass no arguments. Or pass in nil and FILE, and it will save in FILE
6834 instead. If you pass in one argument, and it is non-nil, then the
6835 user will be interactively queried for a file to save in.
6836
6837 When you want to load in the bookmarks from a file, use
6838 `bookmark-load', \\[bookmark-load]. That function will prompt you
6839 for a file, defaulting to the file defined by variable
6840 `bookmark-default-file'." t nil)
6841
6842 (autoload 'bookmark-load "bookmark" "\
6843 Load bookmarks from FILE (which must be in bookmark format).
6844 Appends loaded bookmarks to the front of the list of bookmarks. If
6845 optional second argument REVERT is non-nil, existing bookmarks are
6846 destroyed. Optional third arg NO-MSG means don't display any messages
6847 while loading.
6848
6849 If you load a file that doesn't contain a proper bookmark alist, you
6850 will corrupt Emacs's bookmark list. Generally, you should only load
6851 in files that were created with the bookmark functions in the first
6852 place. Your own personal bookmark file, `~/.emacs.bmk', is
6853 maintained automatically by Emacs; you shouldn't need to load it
6854 explicitly." t nil)
6855
6856 (autoload 'bookmark-bmenu-list "bookmark" "\
6857 Display a list of existing bookmarks.
6858 The list is displayed in a buffer named `*Bookmark List*'.
6859 The leftmost column displays a D if the bookmark is flagged for
6860 deletion, or > if it is flagged for displaying." t nil)
6861
6862 (defalias 'list-bookmarks 'bookmark-bmenu-list)
6863
6864 (defalias 'edit-bookmarks 'bookmark-bmenu-list)
6865
6866 (autoload 'bookmark-menu-insert "bookmark" "\
6867 Insert the text of the file pointed to by bookmark BOOKMARK.
6868 You may have a problem using this function if the value of variable
6869 `bookmark-alist' is nil. If that happens, you need to load in some
6870 bookmarks. See help on function `bookmark-load' for more about
6871 this.
6872
6873 Warning: this function only takes an EVENT as argument. Use the
6874 corresponding bookmark function from Lisp (the one without the
6875 \"-menu-\" in its name)." t nil)
6876
6877 (autoload 'bookmark-menu-jump "bookmark" "\
6878 Jump to bookmark BOOKMARK (a point in some file).
6879 You may have a problem using this function if the value of variable
6880 `bookmark-alist' is nil. If that happens, you need to load in some
6881 bookmarks. See help on function `bookmark-load' for more about
6882 this.
6883
6884 Warning: this function only takes an EVENT as argument. Use the
6885 corresponding bookmark function from Lisp (the one without the
6886 \"-menu-\" in its name)." t nil)
6887
6888 (autoload 'bookmark-menu-locate "bookmark" "\
6889 Insert the name of the file associated with BOOKMARK.
6890 \(This is not the same as the contents of that file).
6891
6892 Warning: this function only takes an EVENT as argument. Use the
6893 corresponding bookmark function from Lisp (the one without the
6894 \"-menu-\" in its name)." t nil)
6895
6896 (autoload 'bookmark-menu-rename "bookmark" "\
6897 Change the name of OLD-BOOKMARK to NEWNAME.
6898 If called from keyboard, prompts for OLD-BOOKMARK and NEWNAME.
6899 If called from menubar, OLD-BOOKMARK is selected from a menu, and
6900 prompts for NEWNAME.
6901 If called from Lisp, prompts for NEWNAME if only OLD-BOOKMARK was
6902 passed as an argument. If called with two strings, then no prompting
6903 is done. You must pass at least OLD-BOOKMARK when calling from Lisp.
6904
6905 While you are entering the new name, consecutive C-w's insert
6906 consectutive words from the text of the buffer into the new bookmark
6907 name.
6908
6909 Warning: this function only takes an EVENT as argument. Use the
6910 corresponding bookmark function from Lisp (the one without the
6911 \"-menu-\" in its name)." t nil)
6912
6913 (autoload 'bookmark-menu-delete "bookmark" "\
6914 Delete the bookmark named NAME from the bookmark list.
6915 Removes only the first instance of a bookmark with that name. If
6916 there are one or more other bookmarks with the same name, they will
6917 not be deleted. Defaults to the \"current\" bookmark (that is, the
6918 one most recently used in this file, if any).
6919
6920 Warning: this function only takes an EVENT as argument. Use the
6921 corresponding bookmark function from Lisp (the one without the
6922 \"-menu-\" in its name)." t nil)
6923
6924 ;;;***
6925
6926 ;;;### (autoloads nil "buff-menu" "packages/buff-menu.el" (12731 19095))
6927 ;;; Generated autoloads from packages/buff-menu.el
6928
6929 ;;;### (autoloads (command-history-mode list-command-history repeat-matching-complex-command) "chistory" "packages/chistory.el" (12860 15528))
6930 ;;; Generated autoloads from packages/chistory.el
6931
6932 (autoload 'repeat-matching-complex-command "chistory" "\
6933 Edit and re-evaluate complex command with name matching PATTERN.
6934 Matching occurrences are displayed, most recent first, until you select
6935 a form for evaluation. If PATTERN is empty (or nil), every form in the
6936 command history is offered. The form is placed in the minibuffer for
6937 editing and the result is evaluated." t nil)
6938
6939 (autoload 'list-command-history "chistory" "\
6940 List history of commands typed to minibuffer.
6941 The number of commands listed is controlled by `list-command-history-max'.
6942 Calls value of `list-command-history-filter' (if non-nil) on each history
6943 element to judge if that element should be excluded from the list.
6944
6945 The buffer is left in Command History mode." t nil)
6946
6947 (autoload 'command-history-mode "chistory" "\
6948 Major mode for examining commands from `command-history'.
6949 The number of commands listed is controlled by `list-command-history-max'.
6950 The command history is filtered by `list-command-history-filter' if non-nil.
6951 Use \\<command-history-map>\\[command-history-repeat] to repeat the command on the current line.
6952
6953 Otherwise much like Emacs-Lisp Mode except that there is no self-insertion
6954 and digits provide prefix arguments. Tab does not indent.
6955 \\{command-history-map}
6956 Calls the value of `command-history-hook' if that is non-nil.
6957 The Command History listing is recomputed each time this mode is invoked." t nil)
6958
6959 ;;;***
6960
6961 ;;;### (autoloads nil "cmuscheme" "packages/cmuscheme.el" (12861 45241))
6962 ;;; Generated autoloads from packages/cmuscheme.el
6963
6964 (add-hook 'same-window-buffer-names "*scheme*")
6965
6966 ;;;***
6967
6968 ;;;### (autoloads (display-column-mode) "column" "packages/column.el" (12657 15255))
6969 ;;; Generated autoloads from packages/column.el
6970
6971 (autoload 'display-column-mode "column" "\
6972 Toggle display column mode.
6973 With prefix arg, turn display column mode on iff arg is positive.
6974
6975 When display column mode is on, the current column and line number are
6976 displayed in the mode line." t nil)
6977
6978 ;;;***
6979
6980 ;;;### (autoloads (compare-windows) "compare-w" "packages/compare-w.el" (12860 15529))
6981 ;;; Generated autoloads from packages/compare-w.el
6982
6983 (autoload 'compare-windows "compare-w" "\
6984 Compare text in current window with text in next window.
6985 Compares the text starting at point in each window,
6986 moving over text in each one as far as they match.
6987
6988 This command pushes the mark in each window
6989 at the prior location of point in that window.
6990 If both windows display the same buffer,
6991 the mark is pushed twice in that buffer:
6992 first in the other window, then in the selected window.
6993
6994 A prefix arg means ignore changes in whitespace.
6995 The variable `compare-windows-whitespace' controls how whitespace is skipped.
6996 If `compare-ignore-case' is non-nil, changes in case are also ignored." t nil)
6997
6998 ;;;***
6999
7000 ;;;### (autoloads (first-error previous-error next-error compilation-minor-mode grep compile) "compile" "packages/compile.el" (12860 15527))
7001 ;;; Generated autoloads from packages/compile.el
7002
7003 (defvar compilation-mode-hook nil "\
7004 *List of hook functions run by `compilation-mode' (see `run-hooks').")
7005
7006 (defvar compilation-window-height nil "\
7007 *Number of lines in a compilation window. If nil, use Emacs default.")
7008
7009 (defvar compilation-buffer-name-function nil "\
7010 Function to compute the name of a compilation buffer.
7011 The function receives one argument, the name of the major mode of the
7012 compilation buffer. It should return a string.
7013 nil means compute the name with `(concat \"*\" (downcase major-mode) \"*\")'.")
7014
7015 (defvar compilation-finish-function nil "\
7016 *Function to call when a compilation process finishes.
7017 It is called with two arguments: the compilation buffer, and a string
7018 describing how the process finished.")
7019
7020 (defvar compilation-search-path '(nil) "\
7021 *List of directories to search for source files named in error messages.
7022 Elements should be directory names, not file names of directories.
7023 nil as an element means to try the default directory.")
7024
7025 (autoload 'compile "compile" "\
7026 Compile the program including the current buffer. Default: run `make'.
7027 Runs COMMAND, a shell command, in a separate process asynchronously
7028 with output going to the buffer `*compilation*'.
7029
7030 You can then use the command \\[next-error] to find the next error message
7031 and move to the source code that caused it.
7032
7033 Interactively, prompts for the command if `compilation-read-command' is
7034 non-nil; otherwise uses `compile-command'. With prefix arg, always prompts.
7035
7036 To run more than one compilation at once, start one and rename the
7037 `*compilation*' buffer to some other name with \\[rename-buffer].
7038 Then start the next one.
7039
7040 The name used for the buffer is actually whatever is returned by
7041 the function in `compilation-buffer-name-function', so you can set that
7042 to a function that generates a unique name." t nil)
7043
7044 (autoload 'grep "compile" "\
7045 Run grep, with user-specified args, and collect output in a buffer.
7046 While grep runs asynchronously, you can use the \\[next-error] command
7047 to find the text that grep hits refer to.
7048
7049 This command uses a special history list for its arguments, so you can
7050 easily repeat a grep command." t nil)
7051
7052 (autoload 'compilation-minor-mode "compile" "\
7053 Toggle compilation minor mode.
7054 With arg, turn compilation mode on if and only if arg is positive.
7055 See `compilation-mode'.
7056 ! \\{compilation-mode-map}" t nil)
7057
7058 (autoload 'next-error "compile" "\
7059 Visit next compilation error message and corresponding source code.
7060 This operates on the output from the \\[compile] command.
7061 If all preparsed error messages have been processed,
7062 the error message buffer is checked for new ones.
7063
7064 A prefix arg specifies how many error messages to move;
7065 negative means move back to previous error messages.
7066 Just C-u as a prefix means reparse the error message buffer
7067 and start at the first error.
7068
7069 \\[next-error] normally applies to the most recent compilation started,
7070 but as long as you are in the middle of parsing errors from one compilation
7071 output buffer, you stay with that compilation output buffer.
7072
7073 Use \\[next-error] in a compilation output buffer to switch to
7074 processing errors from that compilation.
7075
7076 See variables `compilation-parse-errors-function' and
7077 `compilation-error-regexp-alist' for customization ideas." t nil)
7078
7079 (define-key ctl-x-map "`" 'next-error)
7080
7081 (autoload 'previous-error "compile" "\
7082 Visit previous compilation error message and corresponding source code.
7083 This operates on the output from the \\[compile] command." t nil)
7084
7085 (autoload 'first-error "compile" "\
7086 Reparse the error message buffer and start at the first error
7087 Visit corresponding source code.
7088 This operates on the output from the \\[compile] command." t nil)
7089
7090 ;;;***
7091
7092 ;;;***
7093
7094 ;;;### (autoloads nil "completion" "packages/completion.el" (12860 15571))
7095 ;;; Generated autoloads from packages/completion.el
7096
7097 ;;;### (autoloads nil "crypt" "packages/crypt.el" (12743 22072))
7098 ;;; Generated autoloads from packages/crypt.el
7099
7100 ;;;***
7101
7102 ;;;### (autoloads (dabbrev-expand dabbrev-completion) "dabbrev" "packages/dabbrev.el" (12860 15531))
7103 ;;; Generated autoloads from packages/dabbrev.el
7104
7105 (define-key global-map [(meta /)] 'dabbrev-expand)
7106
7107 (define-key global-map [(meta control /)] 'dabbrev-completion)
7108
7109 (autoload 'dabbrev-completion "dabbrev" "\
7110 Completion on current word.
7111 Like \\[dabbrev-expand] but finds all expansions in the current buffer
7112 and presents suggestions for completion.
7113
7114 With a prefix argument, it searches all buffers accepted by the
7115 function pointed out by `dabbrev-friend-buffer-function' to find the
7116 completions.
7117
7118 If the prefix argument is 16 (which comes from C-u C-u),
7119 then it searches *all* buffers.
7120
7121 With no prefix argument, it reuses an old completion list
7122 if there is a suitable one already." t nil)
7123
7124 (autoload 'dabbrev-expand "dabbrev" "\
7125 Expand previous word \"dynamically\".
7126
7127 Expands to the most recent, preceding word for which this is a prefix.
7128 If no suitable preceding word is found, words following point are
7129 considered. If still no suitable word is found, then look in the
7130 buffers accepted by the function pointed out by variable
7131 `dabbrev-friend-buffer-function'.
7132
7133 A positive prefix argument, N, says to take the Nth backward *distinct*
7134 possibility. A negative argument says search forward.
7135
7136 If the cursor has not moved from the end of the previous expansion and
7137 no argument is given, replace the previously-made expansion
7138 with the next possible expansion not yet tried.
7139
7140 The variable `dabbrev-backward-only' may be used to limit the
7141 direction of search to backward if set non-nil.
7142
7143 See also `dabbrev-abbrev-char-regexp' and \\[dabbrev-completion]." t nil)
7144
7145 ;;;***
7146
7147 ;;;***
7148
7149 ;;;***
7150
7151 ;;;### (autoloads nil "desktop" "packages/desktop.el" (12860 15558))
7152 ;;; Generated autoloads from packages/desktop.el
7153
7154 ;;;***
7155
7156 ;;;### (autoloads nil "detexinfo" "packages/detexinfo.el" (12285 55375))
7157 ;;; Generated autoloads from packages/detexinfo.el
7158
7159 ;;;### (autoloads (diff-backup diff) "diff" "packages/diff.el" (12860 15530))
7160 ;;; Generated autoloads from packages/diff.el
7161
7162 (defvar diff-switches (purecopy "-c") "\
7163 *A string or list of strings specifying switches to be passed to diff.")
7164
7165 (autoload 'diff "diff" "\
7166 Find and display the differences between OLD and NEW files.
7167 Interactively the current buffer's file name is the default for NEW
7168 and a backup file for NEW is the default for OLD.
7169 With prefix arg, prompt for diff switches." t nil)
7170
7171 (autoload 'diff-backup "diff" "\
7172 Diff this file with its backup file or vice versa.
7173 Uses the latest backup, if there are several numerical backups.
7174 If this file is a backup, diff it with its original.
7175 The backup file is the first file given to `diff'." t nil)
7176
7177 ;;;***
7178
7179 ;;;### (autoloads nil "doctex" "packages/doctex.el" (12073 20620))
7180 ;;; Generated autoloads from packages/doctex.el
7181
7182 ;;;### (autoloads (edit-faces) "edit-faces" "packages/edit-faces.el" (12860 15569))
7183 ;;; Generated autoloads from packages/edit-faces.el
7184
7185 (autoload 'edit-faces "edit-faces" "\
7186 Alter face characteristics by editing a list of defined faces.
7187 Pops up a buffer containing a list of defined faces.
7188
7189 Editing commands:
7190
7191 \\{edit-faces-mode-map}" t nil)
7192
7193 ;;;***
7194
7195 ;;;### (autoloads (report-xemacs-bug) "emacsbug" "packages/emacsbug.el" (12860 15533))
7196 ;;; Generated autoloads from packages/emacsbug.el
7197
7198 (autoload 'report-xemacs-bug "emacsbug" "\
7199 Report a bug in XEmacs.
7200 Prompts for bug subject. Leaves you in a mail buffer." t nil)
7201
7202 ;;;***
7203
7204 ;;;### (autoloads (emerge-merge-directories emerge-revisions-with-ancestor emerge-revisions emerge-files-with-ancestor-remote emerge-files-remote emerge-files-with-ancestor-command emerge-files-command emerge-buffers-with-ancestor emerge-buffers emerge-files-with-ancestor emerge-files) "emerge" "packages/emerge.el" (12547 41220))
7205 ;;; Generated autoloads from packages/emerge.el
7206
7207 (autoload 'emerge-files "emerge" "\
7208 Run Emerge on two files." t nil)
7209
7210 (fset 'emerge 'emerge-files)
7211
7212 (autoload 'emerge-files-with-ancestor "emerge" "\
7213 Run Emerge on two files, giving another file as the ancestor." t nil)
7214
7215 (autoload 'emerge-buffers "emerge" "\
7216 Run Emerge on two buffers." t nil)
7217
7218 (autoload 'emerge-buffers-with-ancestor "emerge" "\
7219 Run Emerge on two buffers, giving another buffer as the ancestor." t nil)
7220
7221 (autoload 'emerge-files-command "emerge" nil nil nil)
7222
7223 (autoload 'emerge-files-with-ancestor-command "emerge" nil nil nil)
7224
7225 (autoload 'emerge-files-remote "emerge" nil nil nil)
7226
7227 (autoload 'emerge-files-with-ancestor-remote "emerge" nil nil nil)
7228
7229 (autoload 'emerge-revisions "emerge" "\
7230 Emerge two RCS revisions of a file." t nil)
7231
7232 (autoload 'emerge-revisions-with-ancestor "emerge" "\
7233 Emerge two RCS revisions of a file, with another revision as ancestor." t nil)
7234
7235 (autoload 'emerge-merge-directories "emerge" nil t nil)
7236
7237 ;;;***
7238
7239 ;;;### (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" (12860 15534))
7240 ;;; Generated autoloads from packages/etags.el
7241
7242 (defvar tags-build-completion-table 'ask "\
7243 *If this variable is nil, then tags completion is disabled.
7244 If this variable is t, then things which prompt for tags will do so with
7245 completion across all known tags.
7246 If this variable is the symbol `ask', then you will be asked whether each
7247 tags table should be added to the completion list as it is read in.
7248 (With the exception that for very small tags tables, you will not be asked,
7249 since they can be parsed quickly.)")
7250
7251 (defvar tags-always-exact nil "\
7252 *If this variable is non-nil, then tags always looks for exact matches.")
7253
7254 (defvar tag-table-alist nil "\
7255 *A list which determines which tags files should be active for a
7256 given buffer. This is not really an association list, in that all
7257 elements are checked. The CAR of each element of this list is a
7258 pattern against which the buffer's file name is compared; if it
7259 matches, then the CDR of the list should be the name of the tags
7260 table to use. If more than one element of this list matches the
7261 buffer's file name, then all of the associated tags tables will be
7262 used. Earlier ones will be searched first.
7263
7264 If the CAR of elements of this list are strings, then they are treated
7265 as regular-expressions against which the file is compared (like the
7266 auto-mode-alist). If they are not strings, then they are evaluated.
7267 If they evaluate to non-nil, then the current buffer is considered to
7268 match.
7269
7270 If the CDR of the elements of this list are strings, then they are
7271 assumed to name a TAGS file. If they name a directory, then the string
7272 \"TAGS\" is appended to them to get the file name. If they are not
7273 strings, then they are evaluated, and must return an appropriate string.
7274
7275 For example:
7276 (setq tag-table-alist
7277 '((\"/usr/src/public/perl/\" . \"/usr/src/public/perl/perl-3.0/\")
7278 (\"\\\\.el$\" . \"/usr/local/emacs/src/\")
7279 (\"/jbw/gnu/\" . \"/usr15/degree/stud/jbw/gnu/\")
7280 (\"\" . \"/usr/local/emacs/src/\")
7281 ))
7282
7283 This means that anything in the /usr/src/public/perl/ directory should use
7284 the TAGS file /usr/src/public/perl/perl-3.0/TAGS; and file ending in .el should
7285 use the TAGS file /usr/local/emacs/src/TAGS; and anything in or below the
7286 directory /jbw/gnu/ should use the TAGS file /usr15/degree/stud/jbw/gnu/TAGS.
7287 A file called something like \"/usr/jbw/foo.el\" would use both the TAGS files
7288 /usr/local/emacs/src/TAGS and /usr15/degree/stud/jbw/gnu/TAGS (in that order)
7289 because it matches both patterns.
7290
7291 If the buffer-local variable `buffer-tag-table' is set, then it names a tags
7292 table that is searched before all others when find-tag is executed from this
7293 buffer.
7294
7295 If there is a file called \"TAGS\" in the same directory as the file in
7296 question, then that tags file will always be used as well (after the
7297 `buffer-tag-table' but before the tables specified by this list.)
7298
7299 If the variable tags-file-name is set, then the tags file it names will apply
7300 to all buffers (for backwards compatibility.) It is searched first.
7301 ")
7302
7303 (autoload 'visit-tags-table "etags" "\
7304 Tell tags commands to use tags table file FILE first.
7305 FILE should be the name of a file created with the `etags' program.
7306 A directory name is ok too; it means file TAGS in that directory." t nil)
7307
7308 (autoload 'find-tag "etags" "\
7309 *Find tag whose name contains TAGNAME.
7310 Selects the buffer that the tag is contained in
7311 and puts point at its definition.
7312 If TAGNAME is a null string, the expression in the buffer
7313 around or before point is used as the tag name.
7314 If called interactively with a numeric argument, searches for the next tag
7315 in the tag table that matches the tagname used in the previous find-tag.
7316 If second arg OTHER-WINDOW is non-nil, uses another window to display
7317 the tag.
7318
7319 This version of this function supports multiple active tags tables,
7320 and completion.
7321
7322 Variables of note:
7323
7324 tag-table-alist controls which tables apply to which buffers
7325 tags-file-name a default tags table
7326 tags-build-completion-table controls completion behavior
7327 buffer-tag-table another way of specifying a buffer-local table
7328 make-tags-files-invisible whether tags tables should be very hidden
7329 tag-mark-stack-max how many tags-based hops to remember" t nil)
7330
7331 (autoload 'find-tag-other-window "etags" "\
7332 *Find tag whose name contains TAGNAME.
7333 Selects the buffer that the tag is contained in in another window
7334 and puts point at its definition.
7335 If TAGNAME is a null string, the expression in the buffer
7336 around or before point is used as the tag name.
7337 If second arg NEXT is non-nil (interactively, with prefix arg),
7338 searches for the next tag in the tag table
7339 that matches the tagname used in the previous find-tag.
7340
7341 This version of this function supports multiple active tags tables,
7342 and completion.
7343
7344 Variables of note:
7345
7346 tag-table-alist controls which tables apply to which buffers
7347 tags-file-name a default tags table
7348 tags-build-completion-table controls completion behavior
7349 buffer-tag-table another way of specifying a buffer-local table
7350 make-tags-files-invisible whether tags tables should be very hidden
7351 tag-mark-stack-max how many tags-based hops to remember" t nil)
7352
7353 (autoload 'next-file "etags" "\
7354 Select next file among files in current tag table(s).
7355
7356 A first argument of t (prefix arg, if interactive) initializes to the
7357 beginning of the list of files in the (first) tags table. If the argument
7358 is neither nil nor t, it is evalled to initialize the list of files.
7359
7360 Non-nil second argument NOVISIT means use a temporary buffer
7361 to save time and avoid uninteresting warnings.
7362
7363 Value is nil if the file was already visited;
7364 if the file was newly read in, the value is the filename." t nil)
7365
7366 (autoload 'tags-loop-continue "etags" "\
7367 Continue last \\[tags-search] or \\[tags-query-replace] command.
7368 Used noninteractively with non-nil argument to begin such a command (the
7369 argument is passed to `next-file', which see).
7370 Two variables control the processing we do on each file:
7371 the value of `tags-loop-scan' is a form to be executed on each file
7372 to see if it is interesting (it returns non-nil if so)
7373 and `tags-loop-operate' is a form to execute to operate on an interesting file
7374 If the latter returns non-nil, we exit; otherwise we scan the next file." t nil)
7375
7376 (autoload 'tags-search "etags" "\
7377 Search through all files listed in tags table for match for REGEXP.
7378 Stops when a match is found.
7379 To continue searching for next match, use command \\[tags-loop-continue].
7380
7381 See documentation of variable `tag-table-alist'." t nil)
7382
7383 (autoload 'tags-query-replace "etags" "\
7384 Query-replace-regexp FROM with TO through all files listed in tags table.
7385 Third arg DELIMITED (prefix arg) means replace only word-delimited matches.
7386 If you exit (\\[keyboard-quit] or ESC), you can resume the query-replace
7387 with the command \\[tags-loop-continue].
7388
7389 See documentation of variable `tag-table-alist'." t nil)
7390
7391 (autoload 'list-tags "etags" "\
7392 Display list of tags in file FILE.
7393 FILE should not contain a directory spec
7394 unless it has one in the tag table." t nil)
7395
7396 (autoload 'tags-apropos "etags" "\
7397 Display list of all tags in tag table REGEXP matches." t nil)
7398
7399 ;;;***
7400
7401 ;;;### (autoloads nil "fa-extras" "packages/fa-extras.el" (12547 41264))
7402 ;;; Generated autoloads from packages/fa-extras.el
7403
7404 ;;;### (autoloads (turn-on-fast-lock fast-lock-mode) "fast-lock" "packages/fast-lock.el" (12860 15546))
7405 ;;; Generated autoloads from packages/fast-lock.el
7406
7407 (defvar fast-lock-mode nil)
7408
7409 (autoload 'fast-lock-mode "fast-lock" "\
7410 Toggle Fast Lock mode.
7411 With arg, turn Fast Lock mode on if and only if arg is positive and the buffer
7412 is associated with a file. Enable it automatically in your `~/.emacs' by:
7413
7414 (setq font-lock-support-mode 'fast-lock-mode)
7415
7416 If Fast Lock mode is enabled, and the current buffer does not contain any text
7417 properties, any associated Font Lock cache is used if its timestamp matches the
7418 buffer's file, and its `font-lock-keywords' match those that you are using.
7419
7420 Font Lock caches may be saved:
7421 - When you save the file's buffer.
7422 - When you kill an unmodified file's buffer.
7423 - When you exit Emacs, for all unmodified or saved buffers.
7424 Depending on the value of `fast-lock-save-events'.
7425 See also the commands `fast-lock-read-cache' and `fast-lock-save-cache'.
7426
7427 Use \\[font-lock-fontify-buffer] to fontify the buffer if the cache is bad.
7428
7429 Various methods of control are provided for the Font Lock cache. In general,
7430 see variable `fast-lock-cache-directories' and function `fast-lock-cache-name'.
7431 For saving, see variables `fast-lock-minimum-size', `fast-lock-save-events',
7432 `fast-lock-save-others' and `fast-lock-save-faces'.
7433
7434 Use \\[fast-lock-submit-bug-report] to send bug reports or feedback." t nil)
7435
7436 (autoload 'turn-on-fast-lock "fast-lock" "\
7437 Unconditionally turn on Fast Lock mode." nil nil)
7438
7439 (if (fboundp 'add-minor-mode) (add-minor-mode 'fast-lock-mode nil))
7440
7441 ;;;***
7442
7443 ;;;### (autoloads (feedmail-send-it) "feedmail" "packages/feedmail.el" (12695 9732))
7444 ;;; Generated autoloads from packages/feedmail.el
7445
7446 (autoload 'feedmail-send-it "feedmail" nil nil nil)
7447
7448 ;;;***
7449
7450 ;;;### (autoloads (make-file-part) "file-part" "packages/file-part.el" (12637 25166))
7451 ;;; Generated autoloads from packages/file-part.el
7452
7453 (autoload 'make-file-part "file-part" "\
7454 Make a file part on buffer BUFFER out of the region. Call it NAME.
7455 This command creates a new buffer containing the contents of the
7456 region and marks the buffer as referring to the specified buffer,
7457 called the `master buffer'. When the file-part buffer is saved,
7458 its changes are integrated back into the master buffer. When the
7459 master buffer is deleted, all file parts are deleted with it.
7460
7461 When called from a function, expects four arguments, START, END,
7462 NAME, and BUFFER, all of which are optional and default to the
7463 beginning of BUFFER, the end of BUFFER, a name generated from
7464 BUFFER's name, and the current buffer, respectively." t nil)
7465
7466 ;;;***
7467
7468 ;;;### (autoloads nil "filladapt" "packages/filladapt.el" (12731 26117))
7469 ;;; Generated autoloads from packages/filladapt.el
7470
7471 ;;;***
7472
7473 ;;;### (autoloads (font-lock-fontify-buffer turn-off-font-lock turn-on-font-lock font-lock-mode) "font-lock" "packages/font-lock.el" (12823 45243))
7474 ;;; Generated autoloads from packages/font-lock.el
7475
7476 (defvar font-lock-auto-fontify t "\
7477 *Whether font-lock should automatically fontify files as they're loaded.
7478 This will only happen if font-lock has fontifying keywords for the major
7479 mode of the file. You can get finer-grained control over auto-fontification
7480 by using this variable in combination with `font-lock-mode-enable-list' or
7481 `font-lock-mode-disable-list'.")
7482
7483 (defvar font-lock-mode-enable-list nil "\
7484 *List of modes to auto-fontify, if `font-lock-auto-fontify' is nil.")
7485
7486 (defvar font-lock-mode-disable-list nil "\
7487 *List of modes not to auto-fontify, if `font-lock-auto-fontify' is t.")
7488
7489 (defvar font-lock-use-colors '(color) "\
7490 *Specification for when Font Lock will set up color defaults.
7491 Normally this should be '(color), meaning that Font Lock will set up
7492 color defaults that are only used on color displays. Set this to nil
7493 if you don't want Font Lock to set up color defaults at all. This
7494 should be one of
7495
7496 -- a list of valid tags, meaning that the color defaults will be used
7497 when all of the tags apply. (e.g. '(color x))
7498 -- a list whose first element is 'or and whose remaining elements are
7499 lists of valid tags, meaning that the defaults will be used when
7500 any of the tag lists apply.
7501 -- nil, meaning that the defaults should not be set up at all.
7502
7503 \(If you specify face values in your init file, they will override any
7504 that Font Lock specifies, regardless of whether you specify the face
7505 values before or after loading Font Lock.)
7506
7507 See also `font-lock-use-fonts'. If you want more control over the faces
7508 used for fontification, see the documentation of `font-lock-mode' for
7509 how to do it.")
7510
7511 (defvar font-lock-use-fonts '(or (mono) (grayscale)) "\
7512 *Specification for when Font Lock will set up non-color defaults.
7513
7514 Normally this should be '(or (mono) (grayscale)), meaning that Font
7515 Lock will set up non-color defaults that are only used on either mono
7516 or grayscale displays. Set this to nil if you don't want Font Lock to
7517 set up non-color defaults at all. This should be one of
7518
7519 -- a list of valid tags, meaning that the non-color defaults will be used
7520 when all of the tags apply. (e.g. '(grayscale x))
7521 -- a list whose first element is 'or and whose remaining elements are
7522 lists of valid tags, meaning that the defaults will be used when
7523 any of the tag lists apply.
7524 -- nil, meaning that the defaults should not be set up at all.
7525
7526 \(If you specify face values in your init file, they will override any
7527 that Font Lock specifies, regardless of whether you specify the face
7528 values before or after loading Font Lock.)
7529
7530 See also `font-lock-use-colors'. If you want more control over the faces
7531 used for fontification, see the documentation of `font-lock-mode' for
7532 how to do it.")
7533
7534 (defvar font-lock-maximum-decoration nil "\
7535 *If non-nil, the maximum decoration level for fontifying.
7536 If nil, use the minimum decoration (equivalent to level 0).
7537 If t, use the maximum decoration available.
7538 If a number, use that level of decoration (or if not available the maximum).
7539 If a list, each element should be a cons pair of the form (MAJOR-MODE . LEVEL),
7540 where MAJOR-MODE is a symbol or t (meaning the default). For example:
7541 ((c++-mode . 2) (c-mode . t) (t . 1))
7542 means use level 2 decoration for buffers in `c++-mode', the maximum decoration
7543 available for buffers in `c-mode', and level 1 decoration otherwise.")
7544
7545 (define-obsolete-variable-alias 'font-lock-use-maximal-decoration 'font-lock-maximum-decoration)
7546
7547 (defvar font-lock-maximum-size (* 250 1024) "\
7548 *If non-nil, the maximum size for buffers for fontifying.
7549 Only buffers less than this can be fontified when Font Lock mode is turned on.
7550 If nil, means size is irrelevant.
7551 If a list, each element should be a cons pair of the form (MAJOR-MODE . SIZE),
7552 where MAJOR-MODE is a symbol or t (meaning the default). For example:
7553 ((c++-mode . 256000) (c-mode . 256000) (rmail-mode . 1048576))
7554 means that the maximum size is 250K for buffers in `c++-mode' or `c-mode', one
7555 megabyte for buffers in `rmail-mode', and size is irrelevant otherwise.")
7556
7557 (defvar font-lock-keywords nil "\
7558 *A list of the keywords to highlight.
7559 Each element should be of the form:
7560
7561 MATCHER
7562 (MATCHER . MATCH)
7563 (MATCHER . FACENAME)
7564 (MATCHER . HIGHLIGHT)
7565 (MATCHER HIGHLIGHT ...)
7566
7567 where HIGHLIGHT should be either MATCH-HIGHLIGHT or MATCH-ANCHORED.
7568
7569 For highlighting single items, typically only MATCH-HIGHLIGHT is required.
7570 However, if an item or (typically) items is to be hightlighted following the
7571 instance of another item (the anchor) then MATCH-ANCHORED may be required.
7572
7573 MATCH-HIGHLIGHT should be of the form:
7574
7575 (MATCH FACENAME OVERRIDE LAXMATCH)
7576
7577 Where MATCHER can be either the regexp to search for, or the function name to
7578 call to make the search (called with one argument, the limit of the search).
7579 MATCH is the subexpression of MATCHER to be highlighted. FACENAME is either
7580 a symbol naming a face, or an expression whose value is the face name to use.
7581 If you want FACENAME to be a symbol that evaluates to a face, use a form
7582 like \"(progn sym)\".
7583
7584 OVERRIDE and LAXMATCH are flags. If OVERRIDE is t, existing fontification may
7585 be overwritten. If `keep', only parts not already fontified are highlighted.
7586 If `prepend' or `append', existing fontification is merged with the new, in
7587 which the new or existing fontification, respectively, takes precedence.
7588 If LAXMATCH is non-nil, no error is signalled if there is no MATCH in MATCHER.
7589
7590 For example, an element of the form highlights (if not already highlighted):
7591
7592 \"\\\\\\=<foo\\\\\\=>\" Discrete occurrences of \"foo\" in the value of the
7593 variable `font-lock-keyword-face'.
7594 (\"fu\\\\(bar\\\\)\" . 1) Substring \"bar\" within all occurrences of \"fubar\" in
7595 the value of `font-lock-keyword-face'.
7596 (\"fubar\" . fubar-face) Occurrences of \"fubar\" in the value of `fubar-face'.
7597 (\"foo\\\\|bar\" 0 foo-bar-face t)
7598 Occurrences of either \"foo\" or \"bar\" in the value
7599 of `foo-bar-face', even if already highlighted.
7600
7601 MATCH-ANCHORED should be of the form:
7602
7603 (MATCHER PRE-MATCH-FORM POST-MATCH-FORM MATCH-HIGHLIGHT ...)
7604
7605 Where MATCHER is as for MATCH-HIGHLIGHT with one exception. The limit of the
7606 search is currently guaranteed to be (no greater than) the end of the line.
7607 PRE-MATCH-FORM and POST-MATCH-FORM are evaluated before the first, and after
7608 the last, instance MATCH-ANCHORED's MATCHER is used. Therefore they can be
7609 used to initialise before, and cleanup after, MATCHER is used. Typically,
7610 PRE-MATCH-FORM is used to move to some position relative to the original
7611 MATCHER, before starting with MATCH-ANCHORED's MATCHER. POST-MATCH-FORM might
7612 be used to move, before resuming with MATCH-ANCHORED's parent's MATCHER.
7613
7614 For example, an element of the form highlights (if not already highlighted):
7615
7616 (\"\\\\\\=<anchor\\\\\\=>\" (0 anchor-face) (\"\\\\\\=<item\\\\\\=>\" nil nil (0 item-face)))
7617
7618 Discrete occurrences of \"anchor\" in the value of `anchor-face', and subsequent
7619 discrete occurrences of \"item\" (on the same line) in the value of `item-face'.
7620 (Here PRE-MATCH-FORM and POST-MATCH-FORM are nil. Therefore \"item\" is
7621 initially searched for starting from the end of the match of \"anchor\", and
7622 searching for subsequent instance of \"anchor\" resumes from where searching
7623 for \"item\" concluded.)
7624
7625 Note that the MATCH-ANCHORED feature is experimental; in the future, we may
7626 replace it with other ways of providing this functionality.
7627
7628 These regular expressions should not match text which spans lines. While
7629 \\[font-lock-fontify-buffer] handles multi-line patterns correctly, updating
7630 when you edit the buffer does not, since it considers text one line at a time.
7631
7632 Be very careful composing regexps for this list;
7633 the wrong pattern can dramatically slow things down!")
7634
7635 (make-variable-buffer-local 'font-lock-keywords)
7636
7637 (defvar font-lock-mode nil)
7638
7639 (defvar font-lock-mode-hook nil "\
7640 Function or functions to run on entry to font-lock-mode.")
7641
7642 (autoload 'font-lock-mode "font-lock" "\
7643 Toggle Font Lock Mode.
7644 With arg, turn font-lock mode on if and only if arg is positive.
7645
7646 When Font Lock mode is enabled, text is fontified as you type it:
7647
7648 - Comments are displayed in `font-lock-comment-face';
7649 - Strings are displayed in `font-lock-string-face';
7650 - Documentation strings (in Lisp-like languages) are displayed in
7651 `font-lock-doc-string-face';
7652 - Language keywords (\"reserved words\") are displayed in
7653 `font-lock-keyword-face';
7654 - Function names in their defining form are displayed in
7655 `font-lock-function-name-face';
7656 - Variable names in their defining form are displayed in
7657 `font-lock-variable-name-face';
7658 - Type names are displayed in `font-lock-type-face';
7659 - References appearing in help files and the like are displayed
7660 in `font-lock-reference-face';
7661 - Preprocessor declarations are displayed in
7662 `font-lock-preprocessor-face';
7663
7664 and
7665
7666 - Certain other expressions are displayed in other faces according
7667 to the value of the variable `font-lock-keywords'.
7668
7669 Where modes support different levels of fontification, you can use the variable
7670 `font-lock-maximum-decoration' to specify which level you generally prefer.
7671 When you turn Font Lock mode on/off the buffer is fontified/defontified, though
7672 fontification occurs only if the buffer is less than `font-lock-maximum-size'.
7673 To fontify a buffer without turning on Font Lock mode, and regardless of buffer
7674 size, you can use \\[font-lock-fontify-buffer].
7675
7676 See the variable `font-lock-keywords' for customization." t nil)
7677
7678 (autoload 'turn-on-font-lock "font-lock" "\
7679 Unconditionally turn on Font Lock mode." nil nil)
7680
7681 (autoload 'turn-off-font-lock "font-lock" "\
7682 Unconditionally turn off Font Lock mode." nil nil)
7683
7684 (autoload 'font-lock-fontify-buffer "font-lock" "\
7685 Fontify the current buffer the way `font-lock-mode' would.
7686 See `font-lock-mode' for details.
7687
7688 This can take a while for large buffers." t nil)
7689
7690 (add-minor-mode 'font-lock-mode " Font")
7691
7692 ;;;***
7693
7694 ;;;### (autoloads nil "fontl-hooks" "packages/fontl-hooks.el" (12554 42334))
7695 ;;; Generated autoloads from packages/fontl-hooks.el
7696
7697 ;;;***
7698
7699 ;;;### (autoloads nil "func-menu" "packages/func-menu.el" (12721 2451))
7700 ;;; Generated autoloads from packages/func-menu.el
7701
7702 ;;;### (autoloads (sc-mode) "generic-sc" "packages/generic-sc.el" (12860 15522))
7703 ;;; Generated autoloads from packages/generic-sc.el
7704
7705 (autoload 'sc-mode "generic-sc" "\
7706 Toggle sc-mode.
7707 SYSTEM can be sccs, rcs or cvs.
7708 Cvs requires the pcl-cvs package.
7709
7710 The following commands are available
7711 \\[sc-next-operation] perform next logical source control operation on current file
7712 \\[sc-show-changes] compare the version being edited with an older one
7713 \\[sc-version-diff-file] compare two older versions of a file
7714 \\[sc-show-history] display change history of current file
7715 \\[sc-visit-previous-revision] display an older revision of current file
7716 \\[sc-revert-file] revert buffer to last checked-in version
7717 \\[sc-list-all-locked-files] show all files locked in current directory
7718 \\[sc-list-locked-files] show all files locked by you in current directory
7719 \\[sc-list-registered-files] show all files under source control in current directory
7720 \\[sc-update-directory] get fresh copies of files checked-in by others in current directory
7721 \\[sc-rename-file] rename the current file and its source control file
7722
7723
7724 While you are entering a change log message for a check in, sc-log-entry-mode
7725 will be in effect.
7726
7727 Global user options:
7728 sc-diff-command A list consisting of the command and flags
7729 to be used for generating context diffs.
7730 sc-mode-expert suppresses some conformation prompts,
7731 notably for delta aborts and file saves.
7732 sc-max-log-size specifies the maximum allowable size
7733 of a log message plus one.
7734
7735
7736 When using SCCS you have additional commands and options
7737
7738 \\[sccs-insert-headers] insert source control headers in current file
7739
7740 When you generate headers into a buffer using \\[sccs-insert-headers],
7741 the value of sc-insert-headers-hook is called before insertion. If the
7742 file is recognized a C or Lisp source, sc-insert-c-header-hook or
7743 sc-insert-lisp-header-hook is called after insertion respectively.
7744
7745 sccs-headers-wanted which %-keywords to insert when adding
7746 headers with C-c h
7747 sccs-insert-static if non-nil, keywords inserted in C files
7748 get stuffed in a static string area so that
7749 what(1) can see them in the compiled object code.
7750
7751 When using CVS you have additional commands
7752
7753 \\[sc-cvs-update-directory] update the current directory using pcl-cvs
7754 \\[sc-cvs-file-status] show the CVS status of current file
7755 " t nil)
7756
7757 ;;;***
7758
7759 ;;;### (autoloads (gnuserv-start) "gnuserv" "packages/gnuserv.el" (12860 15561))
7760 ;;; Generated autoloads from packages/gnuserv.el
7761
7762 (autoload 'gnuserv-start "gnuserv" "\
7763 Allow this Emacs process to be a server for client processes.
7764 This starts a server communications subprocess through which
7765 client \"editors\" (gnuclient and gnudoit) can send editing commands to
7766 this Emacs job. See the gnuserv(1) manual page for more details.
7767
7768 Prefix arg means just kill any existing server communications subprocess." t nil)
7769
7770 ;;;***
7771
7772 ;;;### (autoloads (gopher-atpoint gopher) "gopher" "packages/gopher.el" (12073 20627))
7773 ;;; Generated autoloads from packages/gopher.el
7774
7775 (autoload 'gopher "gopher" "\
7776 Start a gopher session. With C-u, prompt for a gopher server." t nil)
7777
7778 (autoload 'gopher-atpoint "gopher" "\
7779 Try to interpret the text around point as a gopher bookmark, and dispatch
7780 to that object." t nil)
7781
7782 ;;;***
7783
7784 ;;;### (autoloads (hexlify-buffer hexl-find-file hexl-mode) "hexl" "packages/hexl.el" (12860 15536))
7785 ;;; Generated autoloads from packages/hexl.el
7786
7787 (autoload 'hexl-mode "hexl" "\
7788 \\<hexl-mode-map>
7789 A major mode for editing binary files in hex dump format.
7790
7791 This function automatically converts a buffer into the hexl format
7792 using the function `hexlify-buffer'.
7793
7794 Each line in the buffer has an \"address\" (displayed in hexadecimal)
7795 representing the offset into the file that the characters on this line
7796 are at and 16 characters from the file (displayed as hexadecimal
7797 values grouped every 16 bits) and as their ASCII values.
7798
7799 If any of the characters (displayed as ASCII characters) are
7800 unprintable (control or meta characters) they will be replaced as
7801 periods.
7802
7803 If `hexl-mode' is invoked with an argument the buffer is assumed to be
7804 in hexl format.
7805
7806 A sample format:
7807
7808 HEX ADDR: 0001 0203 0405 0607 0809 0a0b 0c0d 0e0f ASCII-TEXT
7809 -------- ---- ---- ---- ---- ---- ---- ---- ---- ----------------
7810 00000000: 5468 6973 2069 7320 6865 786c 2d6d 6f64 This is hexl-mod
7811 00000010: 652e 2020 4561 6368 206c 696e 6520 7265 e. Each line re
7812 00000020: 7072 6573 656e 7473 2031 3620 6279 7465 presents 16 byte
7813 00000030: 7320 6173 2068 6578 6164 6563 696d 616c s as hexadecimal
7814 00000040: 2041 5343 4949 0a61 6e64 2070 7269 6e74 ASCII.and print
7815 00000050: 6162 6c65 2041 5343 4949 2063 6861 7261 able ASCII chara
7816 00000060: 6374 6572 732e 2020 416e 7920 636f 6e74 cters. Any cont
7817 00000070: 726f 6c20 6f72 206e 6f6e 2d41 5343 4949 rol or non-ASCII
7818 00000080: 2063 6861 7261 6374 6572 730a 6172 6520 characters.are
7819 00000090: 6469 7370 6c61 7965 6420 6173 2070 6572 displayed as per
7820 000000a0: 696f 6473 2069 6e20 7468 6520 7072 696e iods in the prin
7821 000000b0: 7461 626c 6520 6368 6172 6163 7465 7220 table character
7822 000000c0: 7265 6769 6f6e 2e0a region..
7823
7824 Movement is as simple as movement in a normal emacs text buffer. Most
7825 cursor movement bindings are the same (ie. Use \\[hexl-backward-char], \\[hexl-forward-char], \\[hexl-next-line], and \\[hexl-previous-line]
7826 to move the cursor left, right, down, and up).
7827
7828 Advanced cursor movement commands (ala \\[hexl-beginning-of-line], \\[hexl-end-of-line], \\[hexl-beginning-of-buffer], and \\[hexl-end-of-buffer]) are
7829 also supported.
7830
7831 There are several ways to change text in hexl mode:
7832
7833 ASCII characters (character between space (0x20) and tilde (0x7E)) are
7834 bound to self-insert so you can simply type the character and it will
7835 insert itself (actually overstrike) into the buffer.
7836
7837 \\[hexl-quoted-insert] followed by another keystroke allows you to insert the key even if
7838 it isn't bound to self-insert. An octal number can be supplied in place
7839 of another key to insert the octal number's ASCII representation.
7840
7841 \\[hexl-insert-hex-char] will insert a given hexadecimal value (if it is between 0 and 0xFF)
7842 into the buffer at the current point.
7843
7844 \\[hexl-insert-octal-char] will insert a given octal value (if it is between 0 and 0377)
7845 into the buffer at the current point.
7846
7847 \\[hexl-insert-decimal-char] will insert a given decimal value (if it is between 0 and 255)
7848 into the buffer at the current point.
7849
7850 \\[hexl-mode-exit] will exit hexl-mode.
7851
7852 Note: saving the file with any of the usual Emacs commands
7853 will actually convert it back to binary format while saving.
7854
7855 You can use \\[hexl-find-file] to visit a file in hexl-mode.
7856
7857 \\[describe-bindings] for advanced commands." t nil)
7858
7859 (autoload 'hexl-find-file "hexl" "\
7860 Edit file FILENAME in hexl-mode.
7861 Switch to a buffer visiting file FILENAME, creating one in none exists." t nil)
7862
7863 (autoload 'hexlify-buffer "hexl" "\
7864 Convert a binary buffer to hexl format.
7865 This discards the buffer's undo information." t nil)
7866
7867 ;;;***
7868
7869 ;;;### (autoloads (hypropos-popup-menu hypropos-set-variable hyper-describe-function hyper-describe-variable hyper-apropos) "hyper-apropos" "packages/hyper-apropos.el" (12606 7439))
7870 ;;; Generated autoloads from packages/hyper-apropos.el
7871
7872 (defvar hypropos-show-brief-docs t "\
7873 *If non-nil, `hyper-apropos' will display some documentation in the
7874 \"*Hyper Apropos*\" buffer. Setting this to nil will speed up searches.")
7875
7876 (autoload 'hyper-apropos "hyper-apropos" "\
7877 Display lists of functions and variables matching REGEXP
7878 in buffer \"*Hyper Apropos*\". If optional prefix arg is given, then the value
7879 of `hypropos-programming-apropos' is toggled for this search.
7880 See also `hyper-apropos-mode'." t nil)
7881
7882 (autoload 'hyper-describe-variable "hyper-apropos" "\
7883 Hypertext drop-in replacement for `describe-variable'.
7884 See also `hyper-apropos' and `hyper-describe-function'." t nil)
7885
7886 (autoload 'hyper-describe-function "hyper-apropos" "\
7887 Hypertext replacement for `describe-function'. Unlike `describe-function'
7888 in that the symbol under the cursor is the default if it is a function.
7889 See also `hyper-apropos' and `hyper-describe-variable'." t nil)
7890
7891 (autoload 'hypropos-set-variable "hyper-apropos" "\
7892 Interactively set the variable on the current line." t nil)
7893
7894 (autoload 'hypropos-popup-menu "hyper-apropos" nil t nil)
7895
7896 ;;;***
7897
7898 ;;;### (autoloads (icomplete-minibuffer-setup icomplete-mode) "icomplete" "packages/icomplete.el" (12860 15553))
7899 ;;; Generated autoloads from packages/icomplete.el
7900
7901 (autoload 'icomplete-mode "icomplete" "\
7902 Activate incremental minibuffer completion for this emacs session,
7903 or deactivate with negative prefix arg." t nil)
7904
7905 (autoload 'icomplete-minibuffer-setup "icomplete" "\
7906 Run in minibuffer on activation to establish incremental completion.
7907 Usually run by inclusion in `minibuffer-setup-hook'." nil nil)
7908
7909 ;;;***
7910
7911 ;;;### (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" (12860 15521))
7912 ;;; Generated autoloads from packages/info.el
7913
7914 (autoload 'info "info" "\
7915 Enter Info, the documentation browser.
7916 Optional argument FILE specifies the file to examine;
7917 the default is the top-level directory of Info.
7918
7919 In interactive use, a prefix argument directs this command
7920 to read a file name from the minibuffer." t nil)
7921
7922 (autoload 'Info-query "info" "\
7923 Enter Info, the documentation browser. Prompt for name of Info file." t nil)
7924
7925 (autoload 'Info-goto-node "info" "\
7926 Go to info node named NAME. Give just NODENAME or (FILENAME)NODENAME.
7927 Actually, the following interpretations of NAME are tried in order:
7928 (FILENAME)NODENAME
7929 (FILENAME) (using Top node)
7930 NODENAME (in current file)
7931 TAGNAME (see below)
7932 FILENAME (using Top node)
7933 where TAGNAME is a string that appears in quotes: \"TAGNAME\", in an
7934 annotation for any node of any file. (See `a' and `x' commands.)" t nil)
7935
7936 (autoload 'Info-visit-file "info" "\
7937 Directly visit an info file." t nil)
7938
7939 (autoload 'Info-search "info" "\
7940 Search for REGEXP, starting from point, and select node it's found in." t nil)
7941
7942 (autoload 'Info-emacs-command "info" "\
7943 Look up an Emacs command in the Emacs manual in the Info system.
7944 This command is designed to be used whether you are already in Info or not." t nil)
7945
7946 (autoload 'Info-goto-emacs-command-node "info" "\
7947 Look up an Emacs command in the Emacs manual in the Info system.
7948 This command is designed to be used whether you are already in Info or not." t nil)
7949
7950 (autoload 'Info-goto-emacs-key-command-node "info" "\
7951 Look up an Emacs key sequence in the Emacs manual in the Info system.
7952 This command is designed to be used whether you are already in Info or not." t nil)
7953
7954 (autoload 'Info-emacs-key "info" "\
7955 Look up an Emacs key sequence in the Emacs manual in the Info system.
7956 This command is designed to be used whether you are already in Info or not." t nil)
7957
7958 (autoload 'Info-elisp-ref "info" "\
7959 Look up an Emacs Lisp function in the Elisp manual in the Info system.
7960 This command is designed to be used whether you are already in Info or not." t nil)
7961
7962 ;;;***
7963
7964 ;;;### (autoloads (batch-info-validate Info-validate Info-split Info-tagify) "informat" "packages/informat.el" (12860 15537))
7965 ;;; Generated autoloads from packages/informat.el
7966
7967 (autoload 'Info-tagify "informat" "\
7968 Create or update Info-file tag table in current buffer." t nil)
7969
7970 (autoload 'Info-split "informat" "\
7971 Split an info file into an indirect file plus bounded-size subfiles.
7972 Each subfile will be up to 50,000 characters plus one node.
7973
7974 To use this command, first visit a large Info file that has a tag
7975 table. The buffer is modified into a (small) indirect info file which
7976 should be saved in place of the original visited file.
7977
7978 The subfiles are written in the same directory the original file is
7979 in, with names generated by appending `-' and a number to the original
7980 file name. The indirect file still functions as an Info file, but it
7981 contains just the tag table and a directory of subfiles." t nil)
7982
7983 (autoload 'Info-validate "informat" "\
7984 Check current buffer for validity as an Info file.
7985 Check that every node pointer points to an existing node." t nil)
7986
7987 (autoload 'batch-info-validate "informat" "\
7988 Runs `Info-validate' on the files remaining on the command line.
7989 Must be used only with -batch, and kills Emacs on completion.
7990 Each file will be processed even if an error occurred previously.
7991 For example, invoke \"emacs -batch -f batch-info-validate $info/ ~/*.info\"" nil nil)
7992
7993 ;;;***
7994
7995 ;;;### (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" (12860 15540))
7996 ;;; Generated autoloads from packages/ispell.el
7997
7998 (defvar ispell-personal-dictionary nil "\
7999 *File name of your personal spelling dictionary, or nil.
8000 If nil, the default personal dictionary, \"~/.ispell_DICTNAME\" is used,
8001 where DICTNAME is the name of your default dictionary.")
8002
8003 (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)))
8004
8005 (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)))
8006
8007 (defvar ispell-dictionary-alist (append ispell-dictionary-alist-1 ispell-dictionary-alist-2) "\
8008 An alist of dictionaries and their associated parameters.
8009
8010 Each element of this list is also a list:
8011
8012 \(DICTIONARY-NAME CASECHARS NOT-CASECHARS OTHERCHARS MANY-OTHERCHARS-P
8013 ISPELL-ARGS EXTENDED-CHARACTER-MODE)
8014
8015 DICTIONARY-NAME is a possible value of variable `ispell-dictionary', nil
8016 means the default dictionary.
8017
8018 CASECHARS is a regular expression of valid characters that comprise a
8019 word.
8020
8021 NOT-CASECHARS is the opposite regexp of CASECHARS.
8022
8023 OTHERCHARS is a regular expression of other characters that are valid
8024 in word constructs. Otherchars cannot be adjacent to each other in a
8025 word, nor can they begin or end a word. This implies we can't check
8026 \"Stevens'\" as a correct possessive and other correct formations.
8027
8028 Hint: regexp syntax requires the hyphen to be declared first here.
8029
8030 MANY-OTHERCHARS-P is non-nil if many otherchars are to be allowed in a
8031 word instead of only one.
8032
8033 ISPELL-ARGS is a list of additional arguments passed to the ispell
8034 subprocess.
8035
8036 EXTENDED-CHARACTER-MODE should be used when dictionaries are used which
8037 have been configured in an Ispell affix file. (For example, umlauts
8038 can be encoded as \\\"a, a\\\", \"a, ...) Defaults are ~tex and ~nroff
8039 in English. This has the same effect as the command-line `-T' option.
8040 The buffer Major Mode controls Ispell's parsing in tex or nroff mode,
8041 but the dictionary can control the extended character mode.
8042 Both defaults can be overruled in a buffer-local fashion. See
8043 `ispell-parsing-keyword' for details on this.
8044
8045 Note that the CASECHARS and OTHERCHARS slots of the alist should
8046 contain the same character set as casechars and otherchars in the
8047 language.aff file (e.g., english.aff).")
8048
8049 (defvar ispell-menu-map nil "\
8050 Key map for ispell menu")
8051
8052 (defvar ispell-menu-xemacs nil "\
8053 Spelling menu for XEmacs.")
8054
8055 (defconst ispell-menu-map-needed (and (not ispell-menu-map) (string-lessp "19" emacs-version) (not (string-match "XEmacs" emacs-version))))
8056
8057 (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))))))))
8058
8059 (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))))
8060
8061 (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))))
8062
8063 (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))))
8064
8065 (defvar ispell-local-pdict ispell-personal-dictionary "\
8066 A buffer local variable containing the current personal dictionary.
8067 If non-nil, the value must be a string, which is a file name.
8068
8069 If you specify a personal dictionary for the current buffer which is
8070 different from the current personal dictionary, the effect is similar
8071 to calling \\[ispell-change-dictionary]. This variable is automatically
8072 set when defined in the file with either `ispell-pdict-keyword' or the
8073 local variable syntax.")
8074
8075 (define-key global-map "¤" 'ispell-word)
8076
8077 (autoload 'ispell-word "ispell" "\
8078 Check spelling of word under or before the cursor.
8079 If the word is not found in dictionary, display possible corrections
8080 in a window allowing you to choose one.
8081
8082 With a prefix argument (or if CONTINUE is non-nil),
8083 resume interrupted spell-checking of a buffer or region.
8084
8085 If optional argument FOLLOWING is non-nil or if `ispell-following-word'
8086 is non-nil when called interactively, then the following word
8087 \(rather than preceding) is checked when the cursor is not over a word.
8088 When the optional argument QUIETLY is non-nil or `ispell-quietly' is non-nil
8089 when called interactively, non-corrective messages are suppressed.
8090
8091 Word syntax described by `ispell-dictionary-alist' (which see).
8092
8093 This will check or reload the dictionary. Use \\[ispell-change-dictionary]
8094 or \\[ispell-region] to update the Ispell process." t nil)
8095
8096 (autoload 'ispell-help "ispell" "\
8097 Display a list of the options available when a misspelling is encountered.
8098
8099 Selections are:
8100
8101 DIGIT: Replace the word with a digit offered in the *Choices* buffer.
8102 SPC: Accept word this time.
8103 `i': Accept word and insert into private dictionary.
8104 `a': Accept word for this session.
8105 `A': Accept word and place in `buffer-local dictionary'.
8106 `r': Replace word with typed-in value. Rechecked.
8107 `R': Replace word with typed-in value. Query-replaced in buffer. Rechecked.
8108 `?': Show these commands.
8109 `x': Exit spelling buffer. Move cursor to original point.
8110 `X': Exit spelling buffer. Leaves cursor at the current point, and permits
8111 the aborted check to be completed later.
8112 `q': Quit spelling session (Kills ispell process).
8113 `l': Look up typed-in replacement in alternate dictionary. Wildcards okay.
8114 `u': Like `i', but the word is lower-cased first.
8115 `m': Like `i', but allows one to include dictionary completion information.
8116 `C-l': redraws screen
8117 `C-r': recursive edit
8118 `C-z': suspend emacs or iconify frame" nil nil)
8119
8120 (autoload 'ispell-kill-ispell "ispell" "\
8121 Kill current Ispell process (so that you may start a fresh one).
8122 With NO-ERROR, just return non-nil if there was no Ispell running." t nil)
8123
8124 (autoload 'ispell-change-dictionary "ispell" "\
8125 Change `ispell-dictionary' (q.v.) and kill old Ispell process.
8126 A new one will be started as soon as necessary.
8127
8128 By just answering RET you can find out what the current dictionary is.
8129
8130 With prefix argument, set the default directory." t nil)
8131
8132 (autoload 'ispell-region "ispell" "\
8133 Interactively check a region for spelling errors." t nil)
8134
8135 (autoload 'ispell-buffer "ispell" "\
8136 Check the current buffer for spelling errors interactively." t nil)
8137
8138 (autoload 'ispell-continue "ispell" nil t nil)
8139
8140 (autoload 'ispell-complete-word "ispell" "\
8141 Look up word before or under point in dictionary (see lookup-words command)
8142 and try to complete it. If optional INTERIOR-FRAG is non-nil then the word
8143 may be a character sequence inside of a word.
8144
8145 Standard ispell choices are then available." t nil)
8146
8147 (autoload 'ispell-complete-word-interior-frag "ispell" "\
8148 Completes word matching character sequence inside a word." t nil)
8149
8150 (autoload 'ispell-minor-mode "ispell" "\
8151 Toggle Ispell minor mode.
8152 With prefix arg, turn Ispell minor mode on iff arg is positive.
8153
8154 In Ispell minor mode, pressing SPC or RET
8155 warns you if the previous word is incorrectly spelled." t nil)
8156
8157 (autoload 'ispell-message "ispell" "\
8158 Check the spelling of a mail message or news post.
8159 Don't check spelling of message headers except the Subject field.
8160 Don't check included messages.
8161
8162 To abort spell checking of a message region and send the message anyway,
8163 use the `x' or `q' command. (Any subsequent regions will be checked.)
8164 The `X' command aborts the message send so that you can edit the buffer.
8165
8166 To spell-check whenever a message is sent, include the appropriate lines
8167 in your .emacs file:
8168 (add-hook 'message-send-hook 'ispell-message)
8169 (add-hook 'mail-send-hook 'ispell-message)
8170 (add-hook 'mh-before-send-letter-hook 'ispell-message)
8171
8172 You can bind this to the key C-c i in GNUS or mail by adding to
8173 `news-reply-mode-hook' or `mail-mode-hook' the following lambda expression:
8174 (function (lambda () (local-set-key \"\\C-ci\" 'ispell-message)))" t nil)
8175
8176 ;;;***
8177
8178 ;;;### (autoloads (jka-compr-install toggle-auto-compression jka-compr-load) "jka-compr" "packages/jka-compr.el" (12860 15568))
8179 ;;; Generated autoloads from packages/jka-compr.el
8180
8181 (autoload 'jka-compr-load "jka-compr" "\
8182 Documented as original." nil nil)
8183
8184 (autoload 'toggle-auto-compression "jka-compr" "\
8185 Toggle automatic file compression and uncompression.
8186 With prefix argument ARG, turn auto compression on if positive, else off.
8187 Returns the new status of auto compression (non-nil means on).
8188 If the argument MESSAGE is non-nil, it means to print a message
8189 saying whether the mode is now on or off." t nil)
8190
8191 (autoload 'jka-compr-install "jka-compr" "\
8192 Install jka-compr.
8193 This adds entries to `file-name-handler-alist' and `auto-mode-alist'
8194 and `inhibit-first-line-modes-suffixes'." nil nil)
8195
8196 ;;;***
8197
8198 ;;;### (autoloads (turn-on-lazy-lock lazy-lock-mode) "lazy-lock" "packages/lazy-lock.el" (12823 45256))
8199 ;;; Generated autoloads from packages/lazy-lock.el
8200
8201 (defvar lazy-lock-mode nil)
8202
8203 (autoload 'lazy-lock-mode "lazy-lock" "\
8204 Toggle Lazy Lock mode.
8205 With arg, turn Lazy Lock mode on if and only if arg is positive and the buffer
8206 is at least `lazy-lock-minimum-size' characters long.
8207
8208 When Lazy Lock mode is enabled, fontification is demand-driven and stealthy:
8209
8210 - Fontification occurs in visible parts of buffers when necessary.
8211 Occurs if there is no input after pausing for `lazy-lock-continuity-time'.
8212
8213 - Fontification occurs in invisible parts when Emacs has been idle.
8214 Occurs if there is no input after pausing for `lazy-lock-stealth-time'.
8215
8216 If `lazy-lock-hide-invisible' is non-nil, text is not displayed until it is
8217 fontified, otherwise it is displayed in `lazy-lock-invisible-foreground'.
8218
8219 See also variables `lazy-lock-walk-windows' and `lazy-lock-ignore-commands' for
8220 window (scroll) fontification, and `lazy-lock-stealth-lines',
8221 `lazy-lock-stealth-nice' and `lazy-lock-stealth-verbose' for stealth
8222 fontification.
8223
8224 Use \\[lazy-lock-submit-bug-report] to send bug reports or feedback." t nil)
8225
8226 (autoload 'turn-on-lazy-lock "lazy-lock" "\
8227 Unconditionally turn on Lazy Lock mode." nil nil)
8228
8229 (add-minor-mode 'lazy-lock-mode " Lazy")
8230
8231 ;;;***
8232
8233 ;;;### (autoloads (ledit-from-lisp-mode ledit-mode) "ledit" "packages/ledit.el" (12860 15542))
8234 ;;; Generated autoloads from packages/ledit.el
8235
8236 (defconst ledit-save-files t "\
8237 *Non-nil means Ledit should save files before transferring to Lisp.")
8238
8239 (defconst ledit-go-to-lisp-string "%?lisp" "\
8240 *Shell commands to execute to resume Lisp job.")
8241
8242 (defconst ledit-go-to-liszt-string "%?liszt" "\
8243 *Shell commands to execute to resume Lisp compiler job.")
8244
8245 (autoload 'ledit-mode "ledit" "\
8246 \\<ledit-mode-map>Major mode for editing text and stuffing it to a Lisp job.
8247 Like Lisp mode, plus these special commands:
8248 \\[ledit-save-defun] -- record defun at or after point
8249 for later transmission to Lisp job.
8250 \\[ledit-save-region] -- record region for later transmission to Lisp job.
8251 \\[ledit-go-to-lisp] -- transfer to Lisp job and transmit saved text.
8252 \\[ledit-go-to-liszt] -- transfer to Liszt (Lisp compiler) job
8253 and transmit saved text.
8254 \\{ledit-mode-map}
8255 To make Lisp mode automatically change to Ledit mode,
8256 do (setq lisp-mode-hook 'ledit-from-lisp-mode)" t nil)
8257
8258 (autoload 'ledit-from-lisp-mode "ledit" nil nil nil)
8259
8260 ;;;***
8261
8262 ;;;### (autoloads nil "lispm-fonts" "packages/lispm-fonts.el" (12147 26460))
8263 ;;; Generated autoloads from packages/lispm-fonts.el
8264
8265 ;;;### (autoloads (print-region lpr-region print-buffer lpr-buffer) "lpr" "packages/lpr.el" (12860 15544))
8266 ;;; Generated autoloads from packages/lpr.el
8267
8268 (defvar lpr-switches nil "\
8269 *List of strings to pass as extra options for the printer program.
8270 See `lpr-command'.")
8271
8272 (defvar lpr-command (if (memq system-type '(usg-unix-v dgux hpux irix)) "lp" "lpr") "\
8273 *Name of program for printing a file.")
8274
8275 (autoload 'lpr-buffer "lpr" "\
8276 Print buffer contents as with Unix command `lpr'.
8277 `lpr-switches' is a list of extra switches (strings) to pass to lpr." t nil)
8278
8279 (autoload 'print-buffer "lpr" "\
8280 Print buffer contents as with Unix command `lpr -p'.
8281 `lpr-switches' is a list of extra switches (strings) to pass to lpr." t nil)
8282
8283 (autoload 'lpr-region "lpr" "\
8284 Print region contents as with Unix command `lpr'.
8285 `lpr-switches' is a list of extra switches (strings) to pass to lpr." t nil)
8286
8287 (autoload 'print-region "lpr" "\
8288 Print region contents as with Unix command `lpr -p'.
8289 `lpr-switches' is a list of extra switches (strings) to pass to lpr." t nil)
8290
8291 ;;;***
8292
8293 ;;;***
8294
8295 ;;;### (autoloads nil "makeinfo" "packages/makeinfo.el" (12860 15535))
8296 ;;; Generated autoloads from packages/makeinfo.el
8297
8298 ;;;### (autoloads (make-command-summary) "makesum" "packages/makesum.el" (12860 15526))
8299 ;;; Generated autoloads from packages/makesum.el
8300
8301 (autoload 'make-command-summary "makesum" "\
8302 Make a summary of current key bindings in the buffer *Summary*.
8303 Previous contents of that buffer are killed first." t nil)
8304
8305 ;;;***
8306
8307 ;;;### (autoloads (manual-entry) "man" "packages/man.el" (12860 15541))
8308 ;;; Generated autoloads from packages/man.el
8309
8310 (autoload 'manual-entry "man" "\
8311 Display the Unix manual entry (or entries) for TOPIC.
8312 If prefix arg is given, modify the search according to the value:
8313 2 = complement default exact matching of the TOPIC name;
8314 exact matching default is specified by `Manual-match-topic-exactly'
8315 3 = force a search of the unformatted man directories
8316 4 = both 2 and 3
8317 The manual entries are searched according to the variable
8318 Manual-directory-list, which should be a list of directories. If
8319 Manual-directory-list is nil, \\[Manual-directory-list-init] is
8320 invoked to create this list from the MANPATH environment variable.
8321 See the variable Manual-topic-buffer which controls how the buffer
8322 is named. See also the variables Manual-match-topic-exactly,
8323 Manual-query-multiple-pages, and Manual-buffer-view-mode." t nil)
8324
8325 ;;;***
8326
8327 ;;;### (autoloads (metamail-region metamail-buffer metamail-interpret-body metamail-interpret-header) "metamail" "packages/metamail.el" (12860 15560))
8328 ;;; Generated autoloads from packages/metamail.el
8329
8330 (autoload 'metamail-interpret-header "metamail" "\
8331 Interpret a header part of a MIME message in current buffer.
8332 Its body part is not interpreted at all." t nil)
8333
8334 (autoload 'metamail-interpret-body "metamail" "\
8335 Interpret a body part of a MIME message in current buffer.
8336 Optional argument VIEWMODE specifies the value of the
8337 EMACS_VIEW_MODE environment variable (defaulted to 1).
8338 Optional argument NODISPLAY non-nil means buffer is not
8339 redisplayed as output is inserted.
8340 Its header part is not interpreted at all." t nil)
8341
8342 (autoload 'metamail-buffer "metamail" "\
8343 Process current buffer through `metamail'.
8344 Optional argument VIEWMODE specifies the value of the
8345 EMACS_VIEW_MODE environment variable (defaulted to 1).
8346 Optional argument BUFFER specifies a buffer to be filled (nil
8347 means current).
8348 Optional argument NODISPLAY non-nil means buffer is not
8349 redisplayed as output is inserted." t nil)
8350
8351 (autoload 'metamail-region "metamail" "\
8352 Process current region through 'metamail'.
8353 Optional argument VIEWMODE specifies the value of the
8354 EMACS_VIEW_MODE environment variable (defaulted to 1).
8355 Optional argument BUFFER specifies a buffer to be filled (nil
8356 means current).
8357 Optional argument NODISPLAY non-nil means buffer is not
8358 redisplayed as output is inserted." t nil)
8359
8360 ;;;***
8361
8362 ;;;### (autoloads nil "mime-compose" "packages/mime-compose.el" (12727 30161))
8363 ;;; Generated autoloads from packages/mime-compose.el
8364
8365 ;;;***
8366
8367 ;;;***
8368
8369 ;;;### (autoloads nil "mode-motion+" "packages/mode-motion+.el" (12860 15567))
8370 ;;; Generated autoloads from packages/mode-motion+.el
8371
8372 ;;;***
8373
8374 ;;;***
8375
8376 ;;;### (autoloads nil "netunam" "packages/netunam.el" (12547 2100))
8377 ;;; Generated autoloads from packages/netunam.el
8378
8379 ;;;***
8380
8381 ;;;### (autoloads nil "page-ext" "packages/page-ext.el" (12860 15545))
8382 ;;; Generated autoloads from packages/page-ext.el
8383
8384 ;;;### (autoloads (blink-paren paren-set-mode) "paren" "packages/paren.el" (12648 2860))
8385 ;;; Generated autoloads from packages/paren.el
8386
8387 (defvar paren-mode nil "\
8388 *Sets the style of parenthesis highlighting.
8389 Valid values are nil, `blink-paren', `paren', and `sexp'.
8390 nil no parenthesis highlighting.
8391 blink-paren causes the matching paren to blink.
8392 paren causes the matching paren to be highlighted but not to blink.
8393 sexp whole expression enclosed by the local paren at its mate.
8394 nested (not yet implemented) use variable shading to see the
8395 nesting of an expression. Also groks regular expressions
8396 and shell quoting.
8397
8398 This variable is global by default, but you can make it buffer-local and
8399 highlight parentheses differrently in different major modes.")
8400
8401 (autoload 'paren-set-mode "paren" "\
8402 Cycles through possible values for `paren-mode', force off with negative arg.
8403 When called from lisp, a symbolic value for `paren-mode' can be pased directly.
8404 See also `paren-mode' and `paren-highlight'." t nil)
8405
8406 (make-obsolete 'blink-paren 'paren-set-mode)
8407
8408 (autoload 'blink-paren "paren" "\
8409 Obsolete. Use `paren-set-mode' instead." t nil)
8410
8411 ;;;***
8412
8413 ;;;### (autoloads (pending-delete pending-delete-off pending-delete-on) "pending-del" "packages/pending-del.el" (12547 41228))
8414 ;;; Generated autoloads from packages/pending-del.el
8415
8416 (autoload 'pending-delete-on "pending-del" "\
8417 Turn on pending delete.
8418 When it is ON, typed text replaces the selection if the selection is active.
8419 When it is OFF, typed text is just inserted at point." t nil)
8420
8421 (autoload 'pending-delete-off "pending-del" "\
8422 Turn off pending delete.
8423 When it is ON, typed text replaces the selection if the selection is active.
8424 When it is OFF, typed text is just inserted at point." t nil)
8425
8426 (autoload 'pending-delete "pending-del" "\
8427 Toggle automatic deletion of the selected region.
8428 With a positive argument, turns it on.
8429 With a non-positive argument, turns it off.
8430 When active, typed text replaces the selection." t nil)
8431
8432 ;;;***
8433
8434 ;;;### (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" (12860 15563))
8435 ;;; Generated autoloads from packages/ps-print.el
8436
8437 (defvar ps-paper-type 'ps-letter "\
8438 *Specifies the size of paper to format for. Should be one of
8439 `ps-letter', `ps-legal', or `ps-a4'.")
8440
8441 (defvar ps-print-color-p (and (or (fboundp 'x-color-values) (fboundp 'color-instance-rgb-components)) (fboundp 'float)) "\
8442 *If non-nil, print the buffer's text in color.")
8443
8444 (autoload 'ps-print-buffer "ps-print" "\
8445 Generate and print a PostScript image of the buffer.
8446
8447 When called with a numeric prefix argument (C-u), prompts the user for
8448 the name of a file to save the PostScript image in, instead of sending
8449 it to the printer.
8450
8451 More specifically, the FILENAME argument is treated as follows: if it
8452 is nil, send the image to the printer. If FILENAME is a string, save
8453 the PostScript image in a file with that name. If FILENAME is a
8454 number, prompt the user for the name of the file to save in." t nil)
8455
8456 (autoload 'ps-print-buffer-with-faces "ps-print" "\
8457 Generate and print a PostScript image of the buffer.
8458 Like `ps-print-buffer', but includes font, color, and underline
8459 information in the generated image. This command works only if you
8460 are using a window system, so it has a way to determine color values." t nil)
8461
8462 (autoload 'ps-print-region "ps-print" "\
8463 Generate and print a PostScript image of the region.
8464 Like `ps-print-buffer', but prints just the current region." t nil)
8465
8466 (autoload 'ps-print-region-with-faces "ps-print" "\
8467 Generate and print a PostScript image of the region.
8468 Like `ps-print-region', but includes font, color, and underline
8469 information in the generated image. This command works only if you
8470 are using a window system, so it has a way to determine color values." t nil)
8471
8472 (autoload 'ps-spool-buffer "ps-print" "\
8473 Generate and spool a PostScript image of the buffer.
8474 Like `ps-print-buffer' except that the PostScript image is saved in a
8475 local buffer to be sent to the printer later.
8476
8477 Use the command `ps-despool' to send the spooled images to the printer." t nil)
8478
8479 (autoload 'ps-spool-buffer-with-faces "ps-print" "\
8480 Generate and spool a PostScript image of the buffer.
8481 Like `ps-spool-buffer', but includes font, color, and underline
8482 information in the generated image. This command works only if you
8483 are using a window system, so it has a way to determine color values.
8484
8485 Use the command `ps-despool' to send the spooled images to the printer." t nil)
8486
8487 (autoload 'ps-spool-region "ps-print" "\
8488 Generate a PostScript image of the region and spool locally.
8489 Like `ps-spool-buffer', but spools just the current region.
8490
8491 Use the command `ps-despool' to send the spooled images to the printer." t nil)
8492
8493 (autoload 'ps-spool-region-with-faces "ps-print" "\
8494 Generate a PostScript image of the region and spool locally.
8495 Like `ps-spool-region', but includes font, color, and underline
8496 information in the generated image. This command works only if you
8497 are using a window system, so it has a way to determine color values.
8498
8499 Use the command `ps-despool' to send the spooled images to the printer." t nil)
8500
8501 (autoload 'ps-despool "ps-print" "\
8502 Send the spooled PostScript to the printer.
8503
8504 When called with a numeric prefix argument (C-u), prompt the user for
8505 the name of a file to save the spooled PostScript in, instead of sending
8506 it to the printer.
8507
8508 More specifically, the FILENAME argument is treated as follows: if it
8509 is nil, send the image to the printer. If FILENAME is a string, save
8510 the PostScript image in a file with that name. If FILENAME is a
8511 number, prompt the user for the name of the file to save in." t nil)
8512
8513 ;;;***
8514
8515 ;;;### (autoloads (remote-compile) "rcompile" "packages/rcompile.el" (12860 15556))
8516 ;;; Generated autoloads from packages/rcompile.el
8517
8518 (autoload 'remote-compile "rcompile" "\
8519 Compile the current buffer's directory on HOST. Log in as USER.
8520 See \\[compile]." t nil)
8521
8522 ;;;***
8523
8524 ;;;### (autoloads nil "recent-files" "packages/recent-files.el" (12554 42318))
8525 ;;; Generated autoloads from packages/recent-files.el
8526
8527 ;;;***
8528
8529 ;;;***
8530
8531 ;;;***
8532
8533 ;;;### (autoloads nil "refbib" "packages/refbib.el" (12860 15547))
8534 ;;; Generated autoloads from packages/refbib.el
8535
8536 ;;;### (autoloads nil "remote" "packages/remote.el" (12547 2116))
8537 ;;; Generated autoloads from packages/remote.el
8538
8539 ;;;***
8540
8541 ;;;### (autoloads nil "reportmail" "packages/reportmail.el" (12743 22072))
8542 ;;; Generated autoloads from packages/reportmail.el
8543
8544 ;;;***
8545
8546 ;;;### (autoloads (resume-suspend-hook) "resume" "packages/resume.el" (12860 15549))
8547 ;;; Generated autoloads from packages/resume.el
8548
8549 (autoload 'resume-suspend-hook "resume" "\
8550 Clear out the file used for transmitting args when Emacs resumes." nil nil)
8551
8552 ;;;***
8553
8554 ;;;### (autoloads nil "rnews" "packages/rnews.el" (12547 2125))
8555 ;;; Generated autoloads from packages/rnews.el
8556
8557 ;;;***
8558
8559 ;;;### (autoloads nil "rnewspost" "packages/rnewspost.el" (12547 2128))
8560 ;;; Generated autoloads from packages/rnewspost.el
8561
8562 ;;;***
8563
8564 ;;;### (autoloads nil "saveconf" "packages/saveconf.el" (12860 15550))
8565 ;;; Generated autoloads from packages/saveconf.el
8566
8567 ;;;***
8568
8569 ;;;***
8570
8571 ;;;### (autoloads nil "saveplace" "packages/saveplace.el" (12860 15532))
8572 ;;; Generated autoloads from packages/saveplace.el
8573
8574 ;;;### (autoloads nil "sccs" "packages/sccs.el" (12547 2102))
8575 ;;; Generated autoloads from packages/sccs.el
8576
8577 ;;;***
8578
8579 ;;;### (autoloads nil "scroll-in-place" "packages/scroll-in-place.el" (12547 2167))
8580 ;;; Generated autoloads from packages/scroll-in-place.el
8581
8582 ;;;### (autoloads nil "server" "packages/server.el" (12860 15551))
8583 ;;; Generated autoloads from packages/server.el
8584
8585 (make-obsolete 'server-start 'gnuserv-start)
8586
8587 ;;;***
8588
8589 ;;;***
8590
8591 ;;;### (autoloads nil "session" "packages/session.el" (12547 2134))
8592 ;;; Generated autoloads from packages/session.el
8593
8594 ;;;### (autoloads (install-shell-fonts) "shell-font" "packages/shell-font.el" (12547 2123))
8595 ;;; Generated autoloads from packages/shell-font.el
8596
8597 (autoload 'install-shell-fonts "shell-font" "\
8598 Decorate the current interaction buffer with fonts.
8599 This uses the faces called `shell-prompt', `shell-input' and `shell-output';
8600 you can alter the graphical attributes of those with the normal
8601 face-manipulation functions." nil nil)
8602
8603 ;;;***
8604
8605 ;;;### (autoloads (spell-string spell-region spell-word spell-buffer) "spell" "packages/spell.el" (12860 15548))
8606 ;;; Generated autoloads from packages/spell.el
8607
8608 (put 'spell-filter 'risky-local-variable t)
8609
8610 (autoload 'spell-buffer "spell" "\
8611 Check spelling of every word in the buffer.
8612 For each incorrect word, you are asked for the correct spelling
8613 and then put into a query-replace to fix some or all occurrences.
8614 If you do not want to change a word, just give the same word
8615 as its \"correct\" spelling; then the query replace is skipped." t nil)
8616
8617 (autoload 'spell-word "spell" "\
8618 Check spelling of word at or before point.
8619 If it is not correct, ask user for the correct spelling
8620 and `query-replace' the entire buffer to substitute it." t nil)
8621
8622 (autoload 'spell-region "spell" "\
8623 Like `spell-buffer' but applies only to region.
8624 Used in a program, applies from START to END.
8625 DESCRIPTION is an optional string naming the unit being checked:
8626 for example, \"word\"." t nil)
8627
8628 (autoload 'spell-string "spell" "\
8629 Check spelling of string supplied as argument." t nil)
8630
8631 ;;;***
8632
8633 ;;;### (autoloads nil "supercite" "packages/supercite.el" (12637 31054))
8634 ;;; Generated autoloads from packages/supercite.el
8635
8636 ;;;### (autoloads (tar-mode) "tar-mode" "packages/tar-mode.el" (12547 41240))
8637 ;;; Generated autoloads from packages/tar-mode.el
8638
8639 (autoload 'tar-mode "tar-mode" "\
8640 Major mode for viewing a tar file as a dired-like listing of its contents.
8641 You can move around using the usual cursor motion commands.
8642 Letters no longer insert themselves.
8643 Type 'e' to pull a file out of the tar file and into its own buffer.
8644 Type 'c' to copy an entry from the tar file into another file on disk.
8645
8646 If you edit a sub-file of this archive (as with the 'e' command) and
8647 save it with Control-X Control-S, the contents of that buffer will be
8648 saved back into the tar-file buffer; in this way you can edit a file
8649 inside of a tar archive without extracting it and re-archiving it.
8650
8651 See also: variables tar-update-datestamp and tar-anal-blocksize.
8652 \\{tar-mode-map}" nil nil)
8653
8654 ;;;***
8655
8656 ;;;### (autoloads (terminal-emulator) "terminal" "packages/terminal.el" (12743 11661))
8657 ;;; Generated autoloads from packages/terminal.el
8658
8659 (autoload 'terminal-emulator "terminal" "\
8660 Under a display-terminal emulator in BUFFER, run PROGRAM on arguments ARGS.
8661 ARGS is a list of argument-strings. Remaining arguments are WIDTH and HEIGHT.
8662 BUFFER's contents are made an image of the display generated by that program,
8663 and any input typed when BUFFER is the current Emacs buffer is sent to that
8664 program an keyboard input.
8665
8666 Interactively, BUFFER defaults to \"*terminal*\" and PROGRAM and ARGS
8667 are parsed from an input-string using your usual shell.
8668 WIDTH and HEIGHT are determined from the size of the current window
8669 -- WIDTH will be one less than the window's width, HEIGHT will be its height.
8670
8671 To switch buffers and leave the emulator, or to give commands
8672 to the emulator itself (as opposed to the program running under it),
8673 type Control-^. The following character is an emulator command.
8674 Type Control-^ twice to send it to the subprogram.
8675 This escape character may be changed using the variable `terminal-escape-char'.
8676
8677 `Meta' characters may not currently be sent through the terminal emulator.
8678
8679 Here is a list of some of the variables which control the behaviour
8680 of the emulator -- see their documentation for more information:
8681 terminal-escape-char, terminal-scrolling, terminal-more-processing,
8682 terminal-redisplay-interval.
8683
8684 This function calls the value of terminal-mode-hook if that exists
8685 and is non-nil after the terminal buffer has been set up and the
8686 subprocess started.
8687
8688 Presently with `termcap' only; if somebody sends us code to make this
8689 work with `terminfo' we will try to use it." t nil)
8690
8691 ;;;***
8692
8693 ;;;### (autoloads nil "tex-latin1" "packages/tex-latin1.el" (12698 34039))
8694 ;;; Generated autoloads from packages/tex-latin1.el
8695
8696 ;;;***
8697
8698 ;;;### (autoloads (batch-texinfo-format texinfo-format-region texinfo-format-buffer) "texinfmt" "packages/texinfmt.el" (12860 15556))
8699 ;;; Generated autoloads from packages/texinfmt.el
8700
8701 (autoload 'texinfo-format-buffer "texinfmt" "\
8702 Process the current buffer as texinfo code, into an Info file.
8703 The Info file output is generated in a buffer visiting the Info file
8704 names specified in the @setfilename command.
8705
8706 Non-nil argument (prefix, if interactive) means don't make tag table
8707 and don't split the file if large. You can use Info-tagify and
8708 Info-split to do these manually." t nil)
8709
8710 (autoload 'texinfo-format-region "texinfmt" "\
8711 Convert the current region of the Texinfo file to Info format.
8712 This lets you see what that part of the file will look like in Info.
8713 The command is bound to \\[texinfo-format-region]. The text that is
8714 converted to Info is stored in a temporary buffer." t nil)
8715
8716 (autoload 'batch-texinfo-format "texinfmt" "\
8717 Runs texinfo-format-buffer on the files remaining on the command line.
8718 Must be used only with -batch, and kills emacs on completion.
8719 Each file will be processed even if an error occurred previously.
8720 For example, invoke
8721 \"emacs -batch -funcall batch-texinfo-format $docs/ ~/*.texinfo\"." nil nil)
8722
8723 ;;;***
8724
8725 ;;;### (autoloads nil "texnfo-tex" "packages/texnfo-tex.el" (12657 15256))
8726 ;;; Generated autoloads from packages/texnfo-tex.el
8727
8728 ;;;### (autoloads (texinfo-sequential-node-update texinfo-every-node-update texinfo-update-node) "texnfo-upd" "packages/texnfo-upd.el" (12860 15557))
8729 ;;; Generated autoloads from packages/texnfo-upd.el
8730
8731 (autoload 'texinfo-update-node "texnfo-upd" "\
8732 Without any prefix argument, update the node in which point is located.
8733 Non-nil argument (prefix, if interactive) means update the nodes in the
8734 marked region.
8735
8736 The functions for creating or updating nodes and menus, and their
8737 keybindings, are:
8738
8739 texinfo-update-node (&optional region-p) \\[texinfo-update-node]
8740 texinfo-every-node-update () \\[texinfo-every-node-update]
8741 texinfo-sequential-node-update (&optional region-p)
8742
8743 texinfo-make-menu (&optional region-p) \\[texinfo-make-menu]
8744 texinfo-all-menus-update () \\[texinfo-all-menus-update]
8745 texinfo-master-menu ()
8746
8747 texinfo-indent-menu-description (column &optional region-p)
8748
8749 The `texinfo-column-for-description' variable specifies the column to
8750 which menu descriptions are indented. Its default value is 32." t nil)
8751
8752 (autoload 'texinfo-every-node-update "texnfo-upd" "\
8753 Update every node in a Texinfo file." t nil)
8754
8755 (autoload 'texinfo-sequential-node-update "texnfo-upd" "\
8756 Update one node (or many) in a Texinfo file with sequential pointers.
8757
8758 This function causes the `Next' or `Previous' pointer to point to the
8759 immediately preceding or following node, even if it is at a higher or
8760 lower hierarchical level in the document. Continually pressing `n' or
8761 `p' takes you straight through the file.
8762
8763 Without any prefix argument, update the node in which point is located.
8764 Non-nil argument (prefix, if interactive) means update the nodes in the
8765 marked region.
8766
8767 This command makes it awkward to navigate among sections and
8768 subsections; it should be used only for those documents that are meant
8769 to be read like a novel rather than a reference, and for which the
8770 Info `g*' command is inadequate." t nil)
8771
8772 ;;;***
8773
8774 ;;;### (autoloads (time-stamp) "time-stamp" "packages/time-stamp.el" (12547 41218))
8775 ;;; Generated autoloads from packages/time-stamp.el
8776
8777 (autoload 'time-stamp "time-stamp" "\
8778 Update the time stamp string in the buffer.
8779 Only does its thing if the variable time-stamp-active is non-nil.
8780 Typically used on write-file-hooks for automatic time-stamping.
8781 The format of the time stamp is determined by the variable
8782 time-stamp-format. The first time-stamp-line-limit lines of the
8783 buffer (normally 8) are searched for the time stamp template,
8784 and if it is found, a new time stamp is written into it." t nil)
8785
8786 ;;;***
8787
8788 ;;;### (autoloads (display-time) "time" "packages/time.el" (12860 15542))
8789 ;;; Generated autoloads from packages/time.el
8790
8791 (defvar display-time-day-and-date nil "\
8792 *Non-nil means \\[display-time] should display day and date as well as time.")
8793
8794 (autoload 'display-time "time" "\
8795 Display current time, load level, and mail flag in mode line of each buffer.
8796 Updates automatically every minute.
8797 If `display-time-day-and-date' is non-nil, the current day and date
8798 are displayed as well.
8799 After each update, `display-time-hook' is run with `run-hooks'.
8800 If `display-time-echo-area' is non-nil, the time is displayed in the
8801 echo area instead of in the mode-line." t nil)
8802
8803 ;;;***
8804
8805 ;;;***
8806
8807 ;;;### (autoloads nil "uncompress" "packages/uncompress.el" (12860 15552))
8808 ;;; Generated autoloads from packages/uncompress.el
8809
8810 ;;;### (autoloads (ununderline-and-unoverstrike-region overstrike-region unoverstrike-region ununderline-region underline-region) "underline" "packages/underline.el" (12860 15552))
8811 ;;; Generated autoloads from packages/underline.el
8812
8813 (autoload 'underline-region "underline" "\
8814 Underline all nonblank characters in the region.
8815 Works by overstriking underscores.
8816 Called from program, takes two arguments START and END
8817 which specify the range to operate on." t nil)
8818
8819 (autoload 'ununderline-region "underline" "\
8820 Remove all underlining (overstruck underscores) in the region.
8821 Called from program, takes two arguments START and END
8822 which specify the range to operate on." t nil)
8823
8824 (autoload 'unoverstrike-region "underline" "\
8825 Remove all overstriking (character-backspace-character) in the region.
8826 Called from program, takes two arguments START and END which specify the
8827 range to operate on." t nil)
8828
8829 (autoload 'overstrike-region "underline" "\
8830 Overstrike (character-backspace-character) all nonblank characters in
8831 the region. Called from program, takes two arguments START and END which
8832 specify the range to operate on." t nil)
8833
8834 (autoload 'ununderline-and-unoverstrike-region "underline" "\
8835 Remove underlining and overstriking in the region. Called from a program,
8836 takes two arguments START and END which specify the range to operate on." t nil)
8837
8838 ;;;***
8839
8840 ;;;### (autoloads (ask-to-update-copyright update-copyright) "upd-copyr" "packages/upd-copyr.el" (12546 37615))
8841 ;;; Generated autoloads from packages/upd-copyr.el
8842
8843 (defvar copyright-do-not-disturb "Free Software Foundation, Inc." "\
8844 *If non-nil, the existing copyright holder is checked against this regexp.
8845 If it does not match, then a new copyright line is added with the copyright
8846 holder set to the value of `copyright-whoami'.")
8847
8848 (defvar copyright-whoami nil "\
8849 *A string containing the name of the owner of new copyright notices.")
8850
8851 (defvar copyright-notice-file nil "\
8852 *If non-nil, replace copying notices with this file.")
8853
8854 (autoload 'update-copyright "upd-copyr" "\
8855 Update the copyright notice at the beginning of the buffer
8856 to indicate the current year. If optional arg REPLACE is given
8857 \(interactively, with prefix arg) replace the years in the notice
8858 rather than adding the current year after them.
8859 If `copyright-notice-file' is set, the copying permissions following the
8860 copyright are replaced as well.
8861
8862 If optional third argument ASK is non-nil, the user is prompted for whether
8863 or not to update the copyright. If optional fourth argument ASK-YEAR is
8864 non-nil, the user is prompted for whether or not to replace the year rather
8865 than adding to it." t nil)
8866
8867 (autoload 'ask-to-update-copyright "upd-copyr" "\
8868 If the current buffer contains a copyright notice that is out of date,
8869 ask the user if it should be updated with `update-copyright' (which see).
8870 Put this on write-file-hooks." nil nil)
8871
8872 ;;;***
8873
8874 ;;;### (autoloads nil "vc-hooks" "packages/vc-hooks.el" (12728 13773))
8875 ;;; Generated autoloads from packages/vc-hooks.el
8876
8877 ;;;### (autoloads (vc-update-change-log vc-rename-file vc-cancel-version vc-revert-buffer vc-print-log vc-retrieve-snapshot vc-create-snapshot vc-directory vc-insert-headers vc-version-other-window vc-version-diff vc-diff vc-register vc-next-action vc-file-status) "vc" "packages/vc.el" (12823 45238))
8878 ;;; Generated autoloads from packages/vc.el
8879
8880 (defvar vc-checkin-hook nil "\
8881 *List of functions called after a checkin is done. See `run-hooks'.")
8882
8883 (autoload 'vc-file-status "vc" "\
8884 Display the current status of the file being visited.
8885 Currently, this is only defined for CVS. The information provided in the
8886 modeline is generally sufficient for RCS and SCCS." t nil)
8887
8888 (autoload 'vc-next-action "vc" "\
8889 Do the next logical checkin or checkout operation on the current file.
8890
8891 For RCS and SCCS files:
8892 If the file is not already registered, this registers it for version
8893 control and then retrieves a writable, locked copy for editing.
8894 If the file is registered and not locked by anyone, this checks out
8895 a writable and locked file ready for editing.
8896 If the file is checked out and locked by the calling user, this
8897 first checks to see if the file has changed since checkout. If not,
8898 it performs a revert.
8899 If the file has been changed, this pops up a buffer for entry
8900 of a log message; when the message has been entered, it checks in the
8901 resulting changes along with the log message as change commentary. If
8902 the variable `vc-keep-workfiles' is non-nil (which is its default), a
8903 read-only copy of the changed file is left in place afterwards.
8904 If the file is registered and locked by someone else, you are given
8905 the option to steal the lock.
8906
8907 For CVS files:
8908 If the file is not already registered, this registers it for version
8909 control. This does a \"cvs add\", but no \"cvs commit\".
8910 If the file is added but not committed, it is committed.
8911 If the file has not been changed, neither in your working area or
8912 in the repository, a message is printed and nothing is done.
8913 If your working file is changed, but the repository file is
8914 unchanged, this pops up a buffer for entry of a log message; when the
8915 message has been entered, it checks in the resulting changes along
8916 with the logmessage as change commentary. A writable file is retained.
8917 If the repository file is changed, you are asked if you want to
8918 merge in the changes into your working copy.
8919
8920 The following is true regardless of which version control system you
8921 are using:
8922
8923 If you call this from within a VC dired buffer with no files marked,
8924 it will operate on the file in the current line.
8925 If you call this from within a VC dired buffer, and one or more
8926 files are marked, it will accept a log message and then operate on
8927 each one. The log message will be used as a comment for any register
8928 or checkin operations, but ignored when doing checkouts. Attempted
8929 lock steals will raise an error.
8930
8931 For checkin, a prefix argument lets you specify the version number to use." t nil)
8932
8933 (autoload 'vc-register "vc" "\
8934 Register the current file into your version-control system." t nil)
8935
8936 (autoload 'vc-diff "vc" "\
8937 Display diffs between file versions.
8938 Normally this compares the current file and buffer with the most recent
8939 checked in version of that file. This uses no arguments.
8940 With a prefix argument, it reads the file name to use
8941 and two version designators specifying which versions to compare." t nil)
8942
8943 (autoload 'vc-version-diff "vc" "\
8944 For FILE, report diffs between two stored versions REL1 and REL2 of it.
8945 If FILE is a directory, generate diffs between versions for all registered
8946 files in or below it." t nil)
8947
8948 (autoload 'vc-version-other-window "vc" "\
8949 Visit version REV of the current buffer in another window.
8950 If the current buffer is named `F', the version is named `F.~REV~'.
8951 If `F.~REV~' already exists, it is used instead of being re-created." t nil)
8952
8953 (autoload 'vc-insert-headers "vc" "\
8954 Insert headers in a file for use with your version-control system.
8955 Headers desired are inserted at the start of the buffer, and are pulled from
8956 the variable `vc-header-alist'." t nil)
8957
8958 (autoload 'vc-directory "vc" "\
8959 Show version-control status of all files in the directory DIR.
8960 If the second argument VERBOSE is non-nil, show all files;
8961 otherwise show only files that current locked in the version control system.
8962 Interactively, supply a prefix arg to make VERBOSE non-nil.
8963
8964 If the optional third argument NESTED is non-nil,
8965 scan the entire tree of subdirectories of the current directory." t nil)
8966
8967 (autoload 'vc-create-snapshot "vc" "\
8968 Make a snapshot called NAME.
8969 The snapshot is made from all registered files at or below the current
8970 directory. For each file, the version level of its latest
8971 version becomes part of the named configuration." t nil)
8972
8973 (autoload 'vc-retrieve-snapshot "vc" "\
8974 Retrieve the snapshot called NAME.
8975 This function fails if any files are locked at or below the current directory
8976 Otherwise, all registered files are checked out (unlocked) at their version
8977 levels in the snapshot." t nil)
8978
8979 (autoload 'vc-print-log "vc" "\
8980 List the change log of the current buffer in a window." t nil)
8981
8982 (autoload 'vc-revert-buffer "vc" "\
8983 Revert the current buffer's file back to the latest checked-in version.
8984 This asks for confirmation if the buffer contents are not identical
8985 to that version.
8986 If the back-end is CVS, this will give you the most recent revision of
8987 the file on the branch you are editing." t nil)
8988
8989 (autoload 'vc-cancel-version "vc" "\
8990 Get rid of most recently checked in version of this file.
8991 A prefix argument means do not revert the buffer afterwards." t nil)
8992
8993 (autoload 'vc-rename-file "vc" "\
8994 Rename file OLD to NEW, and rename its master file likewise." t nil)
8995
8996 (autoload 'vc-update-change-log "vc" "\
8997 Find change log file and add entries from recent RCS logs.
8998 The mark is left at the end of the text prepended to the change log.
8999 With prefix arg of C-u, only find log entries for the current buffer's file.
9000 With any numeric prefix arg, find log entries for all files currently visited.
9001 Otherwise, find log entries for all registered files in the default directory.
9002 From a program, any arguments are passed to the `rcs2log' script." t nil)
9003
9004 ;;;***
9005
9006 ;;;### (autoloads nil "webster-ucb" "packages/webster-ucb.el" (12547 41248))
9007 ;;; Generated autoloads from packages/webster-ucb.el
9008
9009 ;;;### (autoloads (webster-spell webster-endings webster) "webster" "packages/webster.el" (12547 41251))
9010 ;;; Generated autoloads from packages/webster.el
9011
9012 (autoload 'webster "webster" "\
9013 Look up a word in the Webster's dictionary.
9014 Open a network login connection to a webster host if necessary.
9015 Communication with host is recorded in a buffer *webster*." t nil)
9016
9017 (autoload 'webster-endings "webster" "\
9018 Look up endings for a word in the Webster's dictionary.
9019 Open a network login connection to a webster host if necessary.
9020 Communication with host is recorded in a buffer *webster*." t nil)
9021
9022 (autoload 'webster-spell "webster" "\
9023 Look spelling for a word in the Webster's dictionary.
9024 Open a network login connection to a webster host if necessary.
9025 Communication with host is recorded in a buffer *webster*." t nil)
9026
9027 ;;;***
9028
9029 ;;;### (autoloads (run-scheme) "xscheme" "packages/xscheme.el" (12823 45251))
9030 ;;; Generated autoloads from packages/xscheme.el
9031
9032 (defvar scheme-program-name "scheme" "\
9033 *Program invoked by the `run-scheme' command.")
9034
9035 (defvar scheme-band-name nil "\
9036 *Band loaded by the `run-scheme' command.")
9037
9038 (defvar scheme-program-arguments nil "\
9039 *Arguments passed to the Scheme program by the `run-scheme' command.")
9040
9041 (autoload 'run-scheme "xscheme" "\
9042 Run an inferior Scheme process.
9043 Output goes to the buffer `*scheme*'.
9044 With argument, asks for a command line." t nil)
9045
9046 ;;;***
9047
9048 ;;;### (autoloads nil "compile-all" "pcl-cvs/compile-all.el" (11903 15856))
9049 ;;; Generated autoloads from pcl-cvs/compile-all.el
9050
9051 ;;;***
9052
9053 ;;;***
9054
9055 ;;;### (autoloads nil "cookie" "pcl-cvs/cookie.el" (12823 45288))
9056 ;;; Generated autoloads from pcl-cvs/cookie.el
9057
9058 ;;;### (autoloads nil "dll-debug" "pcl-cvs/dll-debug.el" (12675 57104))
9059 ;;; Generated autoloads from pcl-cvs/dll-debug.el
9060
9061 ;;;***
9062
9063 ;;;### (autoloads nil "dll" "pcl-cvs/dll.el" (12675 57108))
9064 ;;; Generated autoloads from pcl-cvs/dll.el
9065
9066 ;;;***
9067
9068 ;;;### (autoloads nil "elib-node" "pcl-cvs/elib-node.el" (12675 57109))
9069 ;;; Generated autoloads from pcl-cvs/elib-node.el
9070
9071 ;;;***
9072
9073 ;;;### (autoloads nil "pcl-cvs-lucid" "pcl-cvs/pcl-cvs-lucid.el" (12675 57113))
9074 ;;; Generated autoloads from pcl-cvs/pcl-cvs-lucid.el
9075
9076 ;;;***
9077
9078 ;;;### (autoloads nil "pcl-cvs-startup" "pcl-cvs/pcl-cvs-startup.el" (12675 57106))
9079 ;;; Generated autoloads from pcl-cvs/pcl-cvs-startup.el
9080
9081 ;;;***
9082
9083 ;;;### (autoloads (pcl-cvs-fontify) "pcl-cvs-xemacs" "pcl-cvs/pcl-cvs-xemacs.el" (12686 31809))
9084 ;;; Generated autoloads from pcl-cvs/pcl-cvs-xemacs.el
9085
9086 (autoload 'pcl-cvs-fontify "pcl-cvs-xemacs" nil nil nil)
9087
9088 ;;;***
9089
9090 ;;;### (autoloads (cvs-update-other-window cvs-update) "pcl-cvs" "pcl-cvs/pcl-cvs.el" (12686 31737))
9091 ;;; Generated autoloads from pcl-cvs/pcl-cvs.el
9092
9093 (autoload 'cvs-update "pcl-cvs" "\
9094 Run a 'cvs update' in the current working directory. Feed the
9095 output to a *cvs* buffer and run cvs-mode on it.
9096 If optional prefix argument LOCAL is non-nil, 'cvs update -l' is run." t nil)
9097
9098 (autoload 'cvs-update-other-window "pcl-cvs" "\
9099 Run a 'cvs update' in the current working directory. Feed the
9100 output to a *cvs* buffer, display it in the other window, and run
9101 cvs-mode on it.
9102
9103 If optional prefix argument LOCAL is non-nil, 'cvs update -l' is run." t nil)
9104
9105 ;;;***
9106
9107 ;;;### (autoloads nil "string" "pcl-cvs/string.el" (12675 57116))
9108 ;;; Generated autoloads from pcl-cvs/string.el
9109
9110 ;;;***
9111
9112 ;;;### (autoloads (about-xemacs) "about" "prim/about.el" (12823 45280))
9113 ;;; Generated autoloads from prim/about.el
9114
9115 (autoload 'about-xemacs "about" nil t nil)
9116
9117 ;;;***
9118
9119 ;;;### (autoloads (all-hail-emacs all-hail-xemacs praise-be-unto-emacs praise-be-unto-xemacs) "advocacy" "prim/advocacy.el" (12860 15586))
9120 ;;; Generated autoloads from prim/advocacy.el
9121
9122 (defvar xemacs-praise-sound-file "sounds/im_so_happy.au" "\
9123 The name of an audio file containing something to play
9124 when praising XEmacs")
9125
9126 (defvar xemacs-praise-message "All Hail XEmacs!\n" "\
9127 What to praise XEmacs with")
9128
9129 (autoload 'praise-be-unto-xemacs "advocacy" "\
9130 All Hail XEmacs!" t nil)
9131
9132 (autoload 'praise-be-unto-emacs "advocacy" nil t nil)
9133
9134 (autoload 'all-hail-xemacs "advocacy" "\
9135 All Hail XEmacs!" t nil)
9136
9137 (autoload 'all-hail-emacs "advocacy" nil t nil)
9138
9139 ;;;***
9140
9141 ;;;***
9142
9143 ;;;### (autoloads nil "backquote" "prim/backquote.el" (12677 32599))
9144 ;;; Generated autoloads from prim/backquote.el
9145
9146 ;;;***
9147
9148 ;;;### (autoloads nil "buffer" "prim/buffer.el" (12677 32606))
9149 ;;; Generated autoloads from prim/buffer.el
9150
9151 ;;;### (autoloads (describe-buffer-case-table) "case-table" "prim/case-table.el" (12849 46023))
9152 ;;; Generated autoloads from prim/case-table.el
9153
9154 (autoload 'describe-buffer-case-table "case-table" "\
9155 Describe the case table of the current buffer." t nil)
9156
9157 ;;;***
9158
9159 ;;;***
9160
9161 ;;;***
9162
9163 ;;;### (autoloads nil "cmdloop" "prim/cmdloop.el" (12849 46028))
9164 ;;; Generated autoloads from prim/cmdloop.el
9165
9166 ;;;### (autoloads nil "cmdloop1" "prim/cmdloop1.el" (12677 32593))
9167 ;;; Generated autoloads from prim/cmdloop1.el
9168
9169 ;;;***
9170
9171 ;;;### (autoloads nil "console" "prim/console.el" (12677 32604))
9172 ;;; Generated autoloads from prim/console.el
9173
9174 ;;;### (autoloads nil "curmudgeon" "prim/curmudgeon.el" (12648 4996))
9175 ;;; Generated autoloads from prim/curmudgeon.el
9176
9177 ;;;### (autoloads (cancel-debug-on-entry debug-on-entry debug) "debug" "prim/debug.el" (12677 32548))
9178 ;;; Generated autoloads from prim/debug.el
9179
9180 (autoload 'debug "debug" "\
9181 Enter debugger. To return, type \\<debugger-mode-map>`\\[debugger-continue]'.
9182 Arguments are mainly for use when this is called
9183 from the internals of the evaluator.
9184 You may call with no args, or you may
9185 pass nil as the first arg and any other args you like.
9186 In that case, the list of args after the first will
9187 be printed into the backtrace buffer." t nil)
9188
9189 (autoload 'debug-on-entry "debug" "\
9190 Request FUNCTION to invoke debugger each time it is called.
9191 If you tell the debugger to continue, FUNCTION's execution proceeds.
9192 This works by modifying the definition of FUNCTION,
9193 which must be written in Lisp, not predefined.
9194 Use \\[cancel-debug-on-entry] to cancel the effect of this command.
9195 Redefining FUNCTION also cancels it." t nil)
9196
9197 (autoload 'cancel-debug-on-entry "debug" "\
9198 Undo effect of \\[debug-on-entry] on FUNCTION.
9199 If argument is nil or an empty string, cancel for all functions." t nil)
9200
9201 ;;;***
9202
9203 ;;;***
9204
9205 ;;;### (autoloads nil "device" "prim/device.el" (12677 32599))
9206 ;;; Generated autoloads from prim/device.el
9207
9208 ;;;***
9209
9210 ;;;### (autoloads nil "dialog" "prim/dialog.el" (12677 32597))
9211 ;;; Generated autoloads from prim/dialog.el
9212
9213 ;;;### (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" (12849 46029))
9214 ;;; Generated autoloads from prim/disp-table.el
9215
9216 (autoload 'describe-current-display-table "disp-table" "\
9217 Describe the display table in use in the selected window and buffer." t nil)
9218
9219 (autoload 'make-display-table "disp-table" "\
9220 Return a new, empty display table." nil nil)
9221
9222 (autoload 'standard-display-8bit "disp-table" "\
9223 Display characters in the range L to H literally." nil nil)
9224
9225 (autoload 'standard-display-default "disp-table" "\
9226 Display characters in the range L to H using the default notation." nil nil)
9227
9228 (autoload 'standard-display-ascii "disp-table" "\
9229 Display character C using printable string S." nil nil)
9230
9231 (autoload 'standard-display-g1 "disp-table" "\
9232 Display character C as character SC in the g1 character set.
9233 This function assumes that your terminal uses the SO/SI characters;
9234 it is meaningless for an X frame." nil nil)
9235
9236 (autoload 'standard-display-graphic "disp-table" "\
9237 Display character C as character GC in graphics character set.
9238 This function assumes VT100-compatible escapes; it is meaningless for an
9239 X frame." nil nil)
9240
9241 (autoload 'standard-display-underline "disp-table" "\
9242 Display character C as character UC plus underlining." nil nil)
9243
9244 (autoload 'standard-display-european "disp-table" "\
9245 Toggle display of European characters encoded with ISO 8859.
9246 When enabled, characters in the range of 160 to 255 display not
9247 as octal escapes, but as accented characters.
9248 With prefix argument, enable European character display iff arg is positive." t nil)
9249
9250 ;;;***
9251
9252 ;;;### (autoloads (setenv) "env" "prim/env.el" (12860 15585))
9253 ;;; Generated autoloads from prim/env.el
9254
9255 (autoload 'setenv "env" "\
9256 Set the value of the environment variable named VARIABLE to VALUE.
9257 VARIABLE should be a string. VALUE is optional; if not provided or is
9258 `nil', the environment variable VARIABLE will be removed.
9259
9260 Interactively, a prefix argument means to unset the variable.
9261 Interactively, the current value (if any) of the variable
9262 appears at the front of the history list when you type in the new value.
9263
9264 This function works by modifying `process-environment'." t nil)
9265
9266 ;;;***
9267
9268 ;;;### (autoloads nil "events" "prim/events.el" (12723 42162))
9269 ;;; Generated autoloads from prim/events.el
9270
9271 ;;;***
9272
9273 ;;;***
9274
9275 ;;;***
9276
9277 ;;;### (autoloads nil "extents" "prim/extents.el" (12823 45284))
9278 ;;; Generated autoloads from prim/extents.el
9279
9280 ;;;***
9281
9282 ;;;### (autoloads nil "faces" "prim/faces.el" (12849 46018))
9283 ;;; Generated autoloads from prim/faces.el
9284
9285 ;;;### (autoloads nil "files-nomule" "prim/files-nomule.el" (12677 32601))
9286 ;;; Generated autoloads from prim/files-nomule.el
9287
9288 ;;;***
9289
9290 ;;;***
9291
9292 ;;;***
9293
9294 ;;;### (autoloads nil "files" "prim/files.el" (12860 15576))
9295 ;;; Generated autoloads from prim/files.el
9296
9297 ;;;***
9298
9299 ;;;### (autoloads nil "fill" "prim/fill.el" (12860 15577))
9300 ;;; Generated autoloads from prim/fill.el
9301
9302 ;;;***
9303
9304 ;;;### (autoloads nil "float-sup" "prim/float-sup.el" (12860 15579))
9305 ;;; Generated autoloads from prim/float-sup.el
9306
9307 ;;;### (autoloads nil "format" "prim/format.el" (12677 32604))
9308 ;;; Generated autoloads from prim/format.el
9309
9310 ;;;***
9311
9312 ;;;***
9313
9314 ;;;### (autoloads nil "frame" "prim/frame.el" (12823 45284))
9315 ;;; Generated autoloads from prim/frame.el
9316
9317 ;;;***
9318
9319 ;;;### (autoloads nil "glyphs" "prim/glyphs.el" (12738 54594))
9320 ;;; Generated autoloads from prim/glyphs.el
9321
9322 ;;;### (autoloads nil "gui" "prim/gui.el" (12677 32607))
9323 ;;; Generated autoloads from prim/gui.el
9324
9325 ;;;***
9326
9327 ;;;***
9328
9329 ;;;### (autoloads nil "help" "prim/help.el" (12849 46022))
9330 ;;; Generated autoloads from prim/help.el
9331
9332 ;;;### (autoloads nil "inc-vers" "prim/inc-vers.el" (12677 32555))
9333 ;;; Generated autoloads from prim/inc-vers.el
9334
9335 ;;;***
9336
9337 ;;;### (autoloads nil "indent" "prim/indent.el" (12677 32539))
9338 ;;; Generated autoloads from prim/indent.el
9339
9340 ;;;### (autoloads nil "isearch-mode" "prim/isearch-mode.el" (12713 64141))
9341 ;;; Generated autoloads from prim/isearch-mode.el
9342
9343 ;;;***
9344
9345 ;;;***
9346
9347 ;;;### (autoloads nil "itimer" "prim/itimer.el" (12677 32589))
9348 ;;; Generated autoloads from prim/itimer.el
9349
9350 ;;;***
9351
9352 ;;;### (autoloads nil "keydefs" "prim/keydefs.el" (12677 32584))
9353 ;;; Generated autoloads from prim/keydefs.el
9354
9355 ;;;***
9356
9357 ;;;***
9358
9359 ;;;### (autoloads nil "keymap" "prim/keymap.el" (12823 45279))
9360 ;;; Generated autoloads from prim/keymap.el
9361
9362 ;;;***
9363
9364 ;;;### (autoloads nil "lisp" "prim/lisp.el" (12860 15579))
9365 ;;; Generated autoloads from prim/lisp.el
9366
9367 ;;;***
9368
9369 ;;;***
9370
9371 ;;;### (autoloads nil "loaddefs" "prim/loaddefs.el" (12861 37863))
9372 ;;; Generated autoloads from prim/loaddefs.el
9373
9374 ;;;***
9375
9376 ;;;***
9377
9378 ;;;### (autoloads nil "loadup-el" "prim/loadup-el.el" (12637 27959))
9379 ;;; Generated autoloads from prim/loadup-el.el
9380
9381 ;;;***
9382
9383 ;;;### (autoloads nil "loadup" "prim/loadup.el" (12860 15576))
9384 ;;; Generated autoloads from prim/loadup.el
9385
9386 ;;;### (autoloads (apply-macro-to-region-lines kbd-macro-query insert-kbd-macro name-last-kbd-macro) "macros" "prim/macros.el" (12542 34430))
9387 ;;; Generated autoloads from prim/macros.el
9388
9389 (autoload 'name-last-kbd-macro "macros" "\
9390 Assign a name to the last keyboard macro defined.
9391 Argument SYMBOL is the name to define.
9392 The symbol's function definition becomes the keyboard macro string.
9393 Such a \"function\" cannot be called from Lisp, but it is a valid
9394 editor command." t nil)
9395
9396 (autoload 'insert-kbd-macro "macros" "\
9397 Insert in buffer the definition of kbd macro NAME, as Lisp code.
9398 Optional second argument KEYS means also record the keys it is on
9399 \(this is the prefix argument, when calling interactively).
9400
9401 This Lisp code will, when executed, define the kbd macro with the
9402 same definition it has now. If you say to record the keys,
9403 the Lisp code will also rebind those keys to the macro.
9404 Only global key bindings are recorded since executing this Lisp code
9405 always makes global bindings.
9406
9407 To save a kbd macro, visit a file of Lisp code such as your `~/.emacs',
9408 use this command, and then save the file." t nil)
9409
9410 (autoload 'kbd-macro-query "macros" "\
9411 Query user during kbd macro execution.
9412 With prefix argument, enters recursive edit,
9413 reading keyboard commands even within a kbd macro.
9414 You can give different commands each time the macro executes.
9415 Without prefix argument, asks whether to continue running the macro.
9416 Your options are: \\<query-replace-map>
9417 \\[act] Finish this iteration normally and continue with the next.
9418 \\[skip] Skip the rest of this iteration, and start the next.
9419 \\[exit] Stop the macro entirely right now.
9420 \\[recenter] Redisplay the frame, then ask again.
9421 \\[edit] Enter recursive edit; ask again when you exit from that." t nil)
9422
9423 (autoload 'apply-macro-to-region-lines "macros" "\
9424 For each complete line between point and mark, move to the beginning
9425 of the line, and run the last keyboard macro.
9426
9427 When called from lisp, this function takes two arguments TOP and
9428 BOTTOM, describing the current region. TOP must be before BOTTOM.
9429 The optional third argument MACRO specifies a keyboard macro to
9430 execute.
9431
9432 This is useful for quoting or unquoting included text, adding and
9433 removing comments, or producing tables where the entries are regular.
9434
9435 For example, in Usenet articles, sections of text quoted from another
9436 author are indented, or have each line start with `>'. To quote a
9437 section of text, define a keyboard macro which inserts `>', put point
9438 and mark at opposite ends of the quoted section, and use
9439 `\\[apply-macro-to-region-lines]' to mark the entire section.
9440
9441 Suppose you wanted to build a keyword table in C where each entry
9442 looked like this:
9443
9444 { \"foo\", foo_data, foo_function },
9445 { \"bar\", bar_data, bar_function },
9446 { \"baz\", baz_data, baz_function },
9447
9448 You could enter the names in this format:
9449
9450 foo
9451 bar
9452 baz
9453
9454 and write a macro to massage a word into a table entry:
9455
9456 \\C-x (
9457 \\M-d { \"\\C-y\", \\C-y_data, \\C-y_function },
9458 \\C-x )
9459
9460 and then select the region of un-tablified names and use
9461 `\\[apply-macro-to-region-lines]' to build the table from the names.
9462 " t nil)
9463
9464 ;;;***
9465
9466 ;;;### (autoloads nil "menubar" "prim/menubar.el" (12677 32542))
9467 ;;; Generated autoloads from prim/menubar.el
9468
9469 ;;;***
9470
9471 ;;;***
9472
9473 ;;;### (autoloads nil "minibuf" "prim/minibuf.el" (12823 45266))
9474 ;;; Generated autoloads from prim/minibuf.el
9475
9476 ;;;***
9477
9478 ;;;### (autoloads nil "misc" "prim/misc.el" (12860 15580))
9479 ;;; Generated autoloads from prim/misc.el
9480
9481 ;;;### (autoloads nil "mode-motion" "prim/mode-motion.el" (12677 32547))
9482 ;;; Generated autoloads from prim/mode-motion.el
9483
9484 ;;;***
9485
9486 ;;;***
9487
9488 ;;;### (autoloads nil "modeline" "prim/modeline.el" (12860 15586))
9489 ;;; Generated autoloads from prim/modeline.el
9490
9491 ;;;### (autoloads nil "mouse" "prim/mouse.el" (12748 62808))
9492 ;;; Generated autoloads from prim/mouse.el
9493
9494 ;;;### (autoloads (disable-command enable-command disabled-command-hook) "novice" "prim/novice.el" (12677 32578))
9495 ;;; Generated autoloads from prim/novice.el
9496
9497 (autoload 'disabled-command-hook "novice" nil nil nil)
9498
9499 (autoload 'enable-command "novice" "\
9500 Allow COMMAND to be executed without special confirmation from now on.
9501 The user's .emacs file is altered so that this will apply
9502 to future sessions." t nil)
9503
9504 (autoload 'disable-command "novice" "\
9505 Require special confirmation to execute COMMAND from now on.
9506 The user's .emacs file is altered so that this will apply
9507 to future sessions." t nil)
9508
9509 ;;;***
9510
9511 ;;;***
9512
9513 ;;;### (autoloads nil "objects" "prim/objects.el" (12677 32598))
9514 ;;; Generated autoloads from prim/objects.el
9515
9516 ;;;***
9517
9518 ;;;### (autoloads nil "obsolete" "prim/obsolete.el" (12701 8652))
9519 ;;; Generated autoloads from prim/obsolete.el
9520
9521 ;;;### (autoloads (edit-options list-options) "options" "prim/options.el" (12677 32546))
9522 ;;; Generated autoloads from prim/options.el
9523
9524 (autoload 'list-options "options" "\
9525 Display a list of XEmacs user options, with values and documentation." t nil)
9526
9527 (autoload 'edit-options "options" "\
9528 Edit a list of XEmacs user option values.
9529 Selects a buffer containing such a list,
9530 in which there are commands to set the option values.
9531 Type \\[describe-mode] in that buffer for a list of commands." t nil)
9532
9533 ;;;***
9534
9535 ;;;***
9536
9537 ;;;### (autoloads nil "page" "prim/page.el" (12677 32535))
9538 ;;; Generated autoloads from prim/page.el
9539
9540 ;;;***
9541
9542 ;;;### (autoloads nil "paragraphs" "prim/paragraphs.el" (12677 32580))
9543 ;;; Generated autoloads from prim/paragraphs.el
9544
9545 ;;;### (autoloads nil "process" "prim/process.el" (12723 42161))
9546 ;;; Generated autoloads from prim/process.el
9547
9548 ;;;***
9549
9550 ;;;### (autoloads nil "profile" "prim/profile.el" (12677 32606))
9551 ;;; Generated autoloads from prim/profile.el
9552
9553 ;;;### (autoloads (clear-rectangle string-rectangle open-rectangle insert-rectangle yank-rectangle kill-rectangle extract-rectangle delete-extract-rectangle delete-rectangle) "rect" "prim/rect.el" (12677 32555))
9554 ;;; Generated autoloads from prim/rect.el
9555
9556 (autoload 'delete-rectangle "rect" "\
9557 Delete (don't save) text in rectangle with point and mark as corners.
9558 The same range of columns is deleted in each line
9559 starting with the line where the region begins
9560 and ending with the line where the region ends." t nil)
9561
9562 (autoload 'delete-extract-rectangle "rect" "\
9563 Delete contents of rectangle and return it as a list of strings.
9564 Arguments START and END are the corners of the rectangle.
9565 The value is list of strings, one for each line of the rectangle." nil nil)
9566
9567 (autoload 'extract-rectangle "rect" "\
9568 Return contents of rectangle with corners at START and END.
9569 Value is list of strings, one for each line of the rectangle." nil nil)
9570
9571 (defvar killed-rectangle nil "\
9572 Rectangle for yank-rectangle to insert.")
9573
9574 (autoload 'kill-rectangle "rect" "\
9575 Delete rectangle with corners at point and mark; save as last killed one.
9576 Calling from program, supply two args START and END, buffer positions.
9577 But in programs you might prefer to use `delete-extract-rectangle'." t nil)
9578
9579 (autoload 'yank-rectangle "rect" "\
9580 Yank the last killed rectangle with upper left corner at point." t nil)
9581
9582 (autoload 'insert-rectangle "rect" "\
9583 Insert text of RECTANGLE with upper left corner at point.
9584 RECTANGLE's first line is inserted at point,
9585 its second line is inserted at a point vertically under point, etc.
9586 RECTANGLE should be a list of strings.
9587 After this command, the mark is at the upper left corner
9588 and point is at the lower right corner." nil nil)
9589
9590 (autoload 'open-rectangle "rect" "\
9591 Blank out rectangle with corners at point and mark, shifting text right.
9592 The text previously in the region is not overwritten by the blanks,
9593 but instead winds up to the right of the rectangle." t nil)
9594
9595 (autoload 'string-rectangle "rect" "\
9596 Insert STRING on each line of the region-rectangle, shifting text right.
9597 The left edge of the rectangle specifies the column for insertion.
9598 This command does not delete or overwrite any existing text.
9599
9600 Called from a program, takes three args; START, END and STRING." t nil)
9601
9602 (autoload 'clear-rectangle "rect" "\
9603 Blank out rectangle with corners at point and mark.
9604 The text previously in the region is overwritten by the blanks.
9605 When called from a program, requires two args which specify the corners." t nil)
9606
9607 ;;;***
9608
9609 ;;;***
9610
9611 ;;;### (autoloads nil "register" "prim/register.el" (12677 32547))
9612 ;;; Generated autoloads from prim/register.el
9613
9614 ;;;***
9615
9616 ;;;***
9617
9618 ;;;### (autoloads nil "replace" "prim/replace.el" (12823 45264))
9619 ;;; Generated autoloads from prim/replace.el
9620
9621 ;;;***
9622
9623 ;;;### (autoloads (reposition-window) "reposition" "prim/reposition.el" (12542 36921))
9624 ;;; Generated autoloads from prim/reposition.el
9625
9626 (autoload 'reposition-window "reposition" "\
9627 Make the current definition and/or comment visible.
9628 Further invocations move it to the top of the window or toggle the
9629 visibility of comments that precede it.
9630 Point is left unchanged unless prefix ARG is supplied.
9631 If the definition is fully onscreen, it is moved to the top of the
9632 window. If it is partly offscreen, the window is scrolled to get the
9633 definition (or as much as will fit) onscreen, unless point is in a comment
9634 which is also partly offscreen, in which case the scrolling attempts to get
9635 as much of the comment onscreen as possible.
9636 Initially `reposition-window' attempts to make both the definition and
9637 preceding comments visible. Further invocations toggle the visibility of
9638 the comment lines.
9639 If ARG is non-nil, point may move in order to make the whole defun
9640 visible (if only part could otherwise be made so), to make the defun line
9641 visible (if point is in code and it could not be made so, or if only
9642 comments, including the first comment line, are visible), or to make the
9643 first comment line visible (if point is in a comment)." t nil)
9644
9645 ;;;***
9646
9647 ;;;### (autoloads nil "scrollbar" "prim/scrollbar.el" (12677 32600))
9648 ;;; Generated autoloads from prim/scrollbar.el
9649
9650 ;;;***
9651
9652 ;;;### (autoloads nil "simple" "prim/simple.el" (12860 15584))
9653 ;;; Generated autoloads from prim/simple.el
9654
9655 ;;;### (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" (12542 34435))
9656 ;;; Generated autoloads from prim/sort.el
9657
9658 (autoload 'sort-subr "sort" "\
9659 General text sorting routine to divide buffer into records and sort them.
9660 Arguments are REVERSE NEXTRECFUN ENDRECFUN &optional STARTKEYFUN ENDKEYFUN.
9661
9662 We divide the accessible portion of the buffer into disjoint pieces
9663 called sort records. A portion of each sort record (perhaps all of
9664 it) is designated as the sort key. The records are rearranged in the
9665 buffer in order by their sort keys. The records may or may not be
9666 contiguous.
9667
9668 Usually the records are rearranged in order of ascending sort key.
9669 If REVERSE is non-nil, they are rearranged in order of descending sort key.
9670
9671 The next four arguments are functions to be called to move point
9672 across a sort record. They will be called many times from within sort-subr.
9673
9674 NEXTRECFUN is called with point at the end of the previous record.
9675 It moves point to the start of the next record.
9676 It should move point to the end of the buffer if there are no more records.
9677 The first record is assumed to start at the position of point when sort-subr
9678 is called.
9679
9680 ENDRECFUN is called with point within the record.
9681 It should move point to the end of the record.
9682
9683 STARTKEYFUN moves from the start of the record to the start of the key.
9684 It may return either a non-nil value to be used as the key, or
9685 else the key is the substring between the values of point after
9686 STARTKEYFUN and ENDKEYFUN are called. If STARTKEYFUN is nil, the key
9687 starts at the beginning of the record.
9688
9689 ENDKEYFUN moves from the start of the sort key to the end of the sort key.
9690 ENDKEYFUN may be nil if STARTKEYFUN returns a value or if it would be the
9691 same as ENDRECFUN." nil nil)
9692
9693 (autoload 'sort-lines "sort" "\
9694 Sort lines in region alphabetically; argument means descending order.
9695 Called from a program, there are three arguments:
9696 REVERSE (non-nil means reverse order), BEG and END (region to sort)." t nil)
9697
9698 (autoload 'sort-paragraphs "sort" "\
9699 Sort paragraphs in region alphabetically; argument means descending order.
9700 Called from a program, there are three arguments:
9701 REVERSE (non-nil means reverse order), BEG and END (region to sort)." t nil)
9702
9703 (autoload 'sort-pages "sort" "\
9704 Sort pages in region alphabetically; argument means descending order.
9705 Called from a program, there are three arguments:
9706 REVERSE (non-nil means reverse order), BEG and END (region to sort)." t nil)
9707
9708 (autoload 'sort-numeric-fields "sort" "\
9709 Sort lines in region numerically by the ARGth field of each line.
9710 Fields are separated by whitespace and numbered from 1 up.
9711 Specified field must contain a number in each line of the region.
9712 With a negative arg, sorts by the ARGth field counted from the right.
9713 Called from a program, there are three arguments:
9714 FIELD, BEG and END. BEG and END specify region to sort.
9715 If you want to sort floating-point numbers, try `sort-float-fields'." t nil)
9716
9717 (autoload 'sort-float-fields "sort" "\
9718 Sort lines in region numerically by the ARGth field of each line.
9719 Fields are separated by whitespace and numbered from 1 up. Specified field
9720 must contain a floating point number in each line of the region. With a
9721 negative arg, sorts by the ARGth field counted from the right. Called from a
9722 program, there are three arguments: FIELD, BEG and END. BEG and END specify
9723 region to sort." t nil)
9724
9725 (autoload 'sort-fields "sort" "\
9726 Sort lines in region lexicographically by the ARGth field of each line.
9727 Fields are separated by whitespace and numbered from 1 up.
9728 With a negative arg, sorts by the ARGth field counted from the right.
9729 Called from a program, there are three arguments:
9730 FIELD, BEG and END. BEG and END specify region to sort." t nil)
9731
9732 (autoload 'sort-regexp-fields "sort" "\
9733 Sort the region lexicographically as specified by RECORD-REGEXP and KEY.
9734 RECORD-REGEXP specifies the textual units which should be sorted.
9735 For example, to sort lines RECORD-REGEXP would be \"^.*$\"
9736 KEY specifies the part of each record (ie each match for RECORD-REGEXP)
9737 is to be used for sorting.
9738 If it is \"\\\\digit\" then the digit'th \"\\\\(...\\\\)\" match field from
9739 RECORD-REGEXP is used.
9740 If it is \"\\\\&\" then the whole record is used.
9741 Otherwise, it is a regular-expression for which to search within the record.
9742 If a match for KEY is not found within a record then that record is ignored.
9743
9744 With a negative prefix arg sorts in reverse order.
9745
9746 For example: to sort lines in the region by the first word on each line
9747 starting with the letter \"f\",
9748 RECORD-REGEXP would be \"^.*$\" and KEY would be \"\\\\=\\<f\\\\w*\\\\>\"" t nil)
9749
9750 (autoload 'sort-columns "sort" "\
9751 Sort lines in region alphabetically by a certain range of columns.
9752 For the purpose of this command, the region includes
9753 the entire line that point is in and the entire line the mark is in.
9754 The column positions of point and mark bound the range of columns to sort on.
9755 A prefix argument means sort into reverse order.
9756
9757 Note that `sort-columns' rejects text that contains tabs,
9758 because tabs could be split across the specified columns
9759 and it doesn't know how to handle that. Also, when possible,
9760 it uses the `sort' utility program, which doesn't understand tabs.
9761 Use \\[untabify] to convert tabs to spaces before sorting." t nil)
9762
9763 (autoload 'reverse-region "sort" "\
9764 Reverse the order of lines in a region.
9765 From a program takes two point or marker arguments, BEG and END." t nil)
9766
9767 ;;;***
9768
9769 ;;;### (autoloads (load-default-sounds load-sound-file) "sound" "prim/sound.el" (12677 32584))
9770 ;;; Generated autoloads from prim/sound.el
9771
9772 (or sound-alist (setq sound-alist '((ready nil) (warp nil))))
9773
9774 (autoload 'load-sound-file "sound" "\
9775 Read in an audio-file and add it to the sound-alist.
9776
9777 You can only play sound files if you are running on display 0 of the console
9778 of a Sun SparcStation, SGI machine, or HP9000s700, or running a NetAudio
9779 server. The sound file must be in the Sun/NeXT U-LAW format." t nil)
9780
9781 (autoload 'load-default-sounds "sound" "\
9782 Load and install some sound files as beep-types.
9783 This only works if you're on display 0 of a Sun SparcStation, SGI machine,
9784 or HP9000s700, or running a NetAudio server." t nil)
9785
9786 ;;;***
9787
9788 ;;;***
9789
9790 ;;;***
9791
9792 ;;;### (autoloads nil "specifier" "prim/specifier.el" (12849 46031))
9793 ;;; Generated autoloads from prim/specifier.el
9794
9795 ;;;***
9796
9797 ;;;### (autoloads nil "startup" "prim/startup.el" (12849 46024))
9798 ;;; Generated autoloads from prim/startup.el
9799
9800 ;;;***
9801
9802 ;;;### (autoloads nil "subr" "prim/subr.el" (12849 46026))
9803 ;;; Generated autoloads from prim/subr.el
9804
9805 ;;;### (autoloads nil "symbols" "prim/symbols.el" (12677 32605))
9806 ;;; Generated autoloads from prim/symbols.el
9807
9808 ;;;***
9809
9810 ;;;***
9811
9812 ;;;### (autoloads nil "syntax" "prim/syntax.el" (12823 45281))
9813 ;;; Generated autoloads from prim/syntax.el
9814
9815 ;;;***
9816
9817 ;;;### (autoloads (tabify untabify) "tabify" "prim/tabify.el" (12860 15584))
9818 ;;; Generated autoloads from prim/tabify.el
9819
9820 (autoload 'untabify "tabify" "\
9821 Convert all tabs in region to multiple spaces, preserving columns.
9822 Called non-interactively, the region is specified by arguments
9823 START and END, rather than by the position of point and mark.
9824 The variable `tab-width' controls the spacing of tab stops." t nil)
9825
9826 (autoload 'tabify "tabify" "\
9827 Convert multiple spaces in region to tabs when possible.
9828 A group of spaces is partially replaced by tabs
9829 when this can be done without changing the column they end at.
9830 Called non-interactively, the region is specified by arguments
9831 START and END, rather than by the position of point and mark.
9832 The variable `tab-width' controls the spacing of tab stops." t nil)
9833
9834 ;;;***
9835
9836 ;;;### (autoloads nil "toolbar" "prim/toolbar.el" (12677 32580))
9837 ;;; Generated autoloads from prim/toolbar.el
9838
9839 ;;;***
9840
9841 ;;;***
9842
9843 ;;;### (autoloads nil "undo-stack" "prim/undo-stack.el" (12823 45287))
9844 ;;; Generated autoloads from prim/undo-stack.el
9845
9846 ;;;### (autoloads nil "update-elc" "prim/update-elc.el" (12677 32597))
9847 ;;; Generated autoloads from prim/update-elc.el
9848
9849 ;;;### (autoloads (ask-user-about-supersession-threat ask-user-about-lock) "userlock" "prim/userlock.el" (12677 32588))
9850 ;;; Generated autoloads from prim/userlock.el
9851
9852 (autoload 'ask-user-about-lock "userlock" "\
9853 Ask user what to do when he wants to edit FILE but it is locked by USER.
9854 This function has a choice of three things to do:
9855 do (signal 'file-locked (list FILE USER))
9856 to refrain from editing the file
9857 return t (grab the lock on the file)
9858 return nil (edit the file even though it is locked).
9859 You can rewrite it to use any criterion you like to choose which one to do." nil nil)
9860
9861 (autoload 'ask-user-about-supersession-threat "userlock" "\
9862 Ask a user who is about to modify an obsolete buffer what to do.
9863 This function has two choices: it can return, in which case the modification
9864 of the buffer will proceed, or it can (signal 'file-supersession (file)),
9865 in which case the proposed buffer modification will not be made.
9866
9867 You can rewrite this to use any criterion you like to choose which one to do.
9868 The buffer in question is current when this function is called." nil nil)
9869
9870 ;;;***
9871
9872 ;;;***
9873
9874 ;;;### (autoloads nil "window" "prim/window.el" (12677 32584))
9875 ;;; Generated autoloads from prim/window.el
9876
9877 ;;;***
9878
9879 ;;;***
9880
9881 ;;;### (autoloads nil "iso-sgml" "psgml/iso-sgml.el" (12851 23340))
9882 ;;; Generated autoloads from psgml/iso-sgml.el
9883
9884 ;;;***
9885
9886 ;;;***
9887
9888 ;;;### (autoloads nil "nefarious" "psgml/nefarious.el" (12860 15648))
9889 ;;; Generated autoloads from psgml/nefarious.el
9890
9891 ;;;### (autoloads nil "psgml-api" "psgml/psgml-api.el" (12851 23341))
9892 ;;; Generated autoloads from psgml/psgml-api.el
9893
9894 ;;;***
9895
9896 ;;;### (autoloads nil "psgml-charent" "psgml/psgml-charent.el" (12851 23342))
9897 ;;; Generated autoloads from psgml/psgml-charent.el
9898
9899 ;;;***
9900
9901 ;;;***
9902
9903 ;;;### (autoloads nil "psgml-debug" "psgml/psgml-debug.el" (12860 15640))
9904 ;;; Generated autoloads from psgml/psgml-debug.el
9905
9906 ;;;### (autoloads nil "psgml-dtd" "psgml/psgml-dtd.el" (12851 23344))
9907 ;;; Generated autoloads from psgml/psgml-dtd.el
9908
9909 ;;;***
9910
9911 ;;;### (autoloads nil "psgml-edit" "psgml/psgml-edit.el" (12851 23345))
9912 ;;; Generated autoloads from psgml/psgml-edit.el
9913
9914 ;;;### (autoloads (style-format) "psgml-fs" "psgml/psgml-fs.el" (12851 23339))
9915 ;;; Generated autoloads from psgml/psgml-fs.el
9916
9917 (autoload 'style-format "psgml-fs" nil t nil)
9918
9919 ;;;***
9920
9921 ;;;### (autoloads nil "psgml-html" "psgml/psgml-html.el" (12851 23346))
9922 ;;; Generated autoloads from psgml/psgml-html.el
9923
9924 (autoload 'html-mode "psgml-html" "\
9925 HTML mode." t)
9926
9927 (autoload 'html3-mode "psgml-html" "\
9928 HTML3 mode." t)
9929
9930 ;;;***
9931
9932 ;;;***
9933
9934 ;;;***
9935
9936 ;;;### (autoloads nil "psgml-info" "psgml/psgml-info.el" (12851 23347))
9937 ;;; Generated autoloads from psgml/psgml-info.el
9938
9939 ;;;***
9940
9941 ;;;***
9942
9943 ;;;### (autoloads nil "psgml-lfix" "psgml/psgml-lfix.el" (12860 15649))
9944 ;;; Generated autoloads from psgml/psgml-lfix.el
9945
9946 ;;;### (autoloads nil "psgml-other" "psgml/psgml-other.el" (12851 23347))
9947 ;;; Generated autoloads from psgml/psgml-other.el
9948
9949 ;;;***
9950
9951 ;;;***
9952
9953 ;;;### (autoloads nil "psgml-parse" "psgml/psgml-parse.el" (12860 15643))
9954 ;;; Generated autoloads from psgml/psgml-parse.el
9955
9956 ;;;***
9957
9958 ;;;***
9959
9960 ;;;### (autoloads nil "psgml-xemacs" "psgml/psgml-xemacs.el" (12851 23353))
9961 ;;; Generated autoloads from psgml/psgml-xemacs.el
9962
9963 ;;;***
9964
9965 ;;;### (autoloads (sgml-mode) "psgml" "psgml/psgml.el" (12860 15647))
9966 ;;; Generated autoloads from psgml/psgml.el
9967
9968 (autoload 'sgml-mode "psgml" "\
9969 Major mode for editing SGML.\\<sgml-mode-map>
9970 Makes > display the matching <. Makes / display matching /.
9971 Use \\[sgml-validate] to validate your document with an SGML parser.
9972
9973 You can find information with:
9974 \\[sgml-show-context] Show the nesting of elements at cursor position.
9975 \\[sgml-list-valid-tags] Show the tags valid at cursor position.
9976
9977 Insert tags with completion of contextually valid tags with \\[sgml-insert-tag].
9978 End the current element with \\[sgml-insert-end-tag]. Insert an element (i.e.
9979 both start and end tag) with \\[sgml-insert-element]. Or tag a region with
9980 \\[sgml-tag-region].
9981
9982 To tag a region with the mouse, use transient mark mode or secondary selection.
9983
9984 Structure editing:
9985 \\[sgml-backward-element] Moves backwards over the previous element.
9986 \\[sgml-forward-element] Moves forward over the nex element.
9987 \\[sgml-down-element] Move forward and down one level in the element structure.
9988 \\[sgml-backward-up-element] Move backward out of this element level.
9989 \\[sgml-beginning-of-element] Move to after the start tag of the current element.
9990 \\[sgml-end-of-element] Move to before the end tag of the current element.
9991 \\[sgml-kill-element] Kill the element following the cursor.
9992
9993 Finding interesting positions
9994 \\[sgml-next-data-field] Move forward to next point where data is allowed.
9995 \\[sgml-next-trouble-spot] Move forward to next point where something is
9996 amiss with the structure.
9997
9998 Folding and unfolding
9999 \\[sgml-fold-element] Fold the lines comprising the current element, leaving
10000 the first line visible.
10001 \\[sgml-fold-subelement] Fold the elements in the content of the current element.
10002 Leaving the first line of every element visible.
10003 \\[sgml-unfold-line] Show hidden lines in current line.
10004
10005 User options:
10006
10007 sgml-omittag Set this to reflect OMITTAG in the SGML declaration.
10008 sgml-shortag Set this to reflect SHORTTAG in the SGML declaration.
10009 sgml-auto-insert-required-elements If non-nil, automatically insert required
10010 elements in the content of an inserted element.
10011 sgml-balanced-tag-edit If non-nil, always insert start-end tag pairs.
10012 sgml-omittag-transparent If non-nil, will show legal tags inside elements
10013 with omitable start tags and legal tags beyond omitable end tags.
10014 sgml-leave-point-after-insert If non-nil, the point will remain after
10015 inserted tag(s).
10016 sgml-warn-about-undefined-elements If non-nil, print a warning when a tag
10017 for a undefined element is found.
10018 sgml-max-menu-size Max number of entries in Tags and Entities menus before
10019 they are split into several panes.
10020 sgml-always-quote-attributes If non-nil, quote all attribute values
10021 inserted after finishing edit attributes.
10022 sgml-minimize-attributes Determines minimization of attributes inserted by
10023 edit-attributes.
10024 sgml-normalize-trims If non-nil, sgml-normalize will trim off white space
10025 from end of element when adding end tag.
10026 sgml-indent-step How much to increament indent for every element level.
10027 sgml-indent-data If non-nil, indent in data/mixed context also.
10028 sgml-set-face If non-nil, psgml will set the face of parsed markup.
10029 sgml-markup-faces The faces used when the above variable is non-nil.
10030 sgml-system-path List of directorys used to look for system identifiers.
10031 sgml-public-map Mapping from public identifiers to file names.
10032 sgml-offer-save If non-nil, ask about saving modified buffers before
10033 \\[sgml-validate] is run.
10034
10035 All bindings:
10036 \\{sgml-mode-map}
10037 " t nil)
10038
10039 ;;;***
10040
10041 ;;;### (autoloads nil "tempo" "psgml/tempo.el" (12677 33139))
10042 ;;; Generated autoloads from psgml/tempo.el
10043
10044 ;;;***
10045
10046 ;;;### (autoloads nil "rmail-kill" "rmail/rmail-kill.el" (12677 32616))
10047 ;;; Generated autoloads from rmail/rmail-kill.el
10048
10049 ;;;***
10050
10051 ;;;### (autoloads nil "rmail-lucid" "rmail/rmail-lucid.el" (12677 32616))
10052 ;;; Generated autoloads from rmail/rmail-lucid.el
10053
10054 ;;;***
10055
10056 ;;;### (autoloads nil "rmail-xemacs" "rmail/rmail-xemacs.el" (12860 15674))
10057 ;;; Generated autoloads from rmail/rmail-xemacs.el
10058
10059 ;;;### (autoloads (rmail-input rmail-mode rmail) "rmail" "rmail/rmail.el" (12860 15588))
10060 ;;; Generated autoloads from rmail/rmail.el
10061
10062 (defvar rmail-dont-reply-to-names nil "\
10063 *A regexp specifying names to prune of reply to messages.
10064 A value of nil means exclude your own name only.")
10065
10066 (defvar rmail-default-dont-reply-to-names "info-" "\
10067 A regular expression specifying part of the value of the default value of
10068 the variable `rmail-dont-reply-to-names', for when the user does not set
10069 `rmail-dont-reply-to-names' explicitly. (The other part of the default
10070 value is the user's name.)
10071 It is useful to set this variable in the site customization file.")
10072
10073 (defvar rmail-delete-after-output nil "\
10074 *Non-nil means automatically delete a message that is copied to a file.")
10075
10076 (defvar rmail-primary-inbox-list nil "\
10077 *List of files which are inboxes for user's primary mail file `~/RMAIL'.
10078 `nil' means the default, which is (\"/usr/spool/mail/$USER\")
10079 \(the name varies depending on the operating system,
10080 and the value of the environment variable MAIL overrides it).")
10081
10082 (defvar rmail-mail-new-frame nil "\
10083 *Non-nil means Rmail makes a new frame for composing outgoing mail.")
10084
10085 (defvar rmail-retry-setup-hook nil "\
10086 Hook that `rmail-retry-failure' uses in place of `mail-setup-hook'.")
10087
10088 (defvar rmail-last-file nil)
10089
10090 (autoload 'rmail "rmail" "\
10091 Read and edit incoming mail.
10092 Moves messages into file named by `rmail-file-name' (a babyl format file)
10093 and edits that file in RMAIL Mode.
10094 Type \\[describe-mode] once editing that file, for a list of RMAIL commands.
10095
10096 May be called with filename as argument; then performs rmail editing on
10097 that file, but does not copy any new mail into the file." t nil)
10098
10099 (autoload 'rmail-mode "rmail" "\
10100 Rmail Mode is used by \\<rmail-mode-map>\\[rmail] for editing Rmail files.
10101 All normal editing commands are turned off.
10102 Instead, these commands are available:
10103
10104 \\[rmail-beginning-of-message] Move point to front of this message (same as \\[beginning-of-buffer]).
10105 \\[scroll-up] Scroll to next screen of this message.
10106 \\[scroll-down] Scroll to previous screen of this message.
10107 \\[rmail-next-undeleted-message] Move to Next non-deleted message.
10108 \\[rmail-previous-undeleted-message] Move to Previous non-deleted message.
10109 \\[rmail-next-message] Move to Next message whether deleted or not.
10110 \\[rmail-previous-message] Move to Previous message whether deleted or not.
10111 \\[rmail-first-message] Move to the first message in Rmail file.
10112 \\[rmail-last-message] Move to the last message in Rmail file.
10113 \\[rmail-show-message] Jump to message specified by numeric position in file.
10114 \\[rmail-search] Search for string and show message it is found in.
10115 \\[rmail-delete-forward] Delete this message, move to next nondeleted.
10116 \\[rmail-delete-backward] Delete this message, move to previous nondeleted.
10117 \\[rmail-undelete-previous-message] Undelete message. Tries current message, then earlier messages
10118 till a deleted message is found.
10119 \\[rmail-edit-current-message] Edit the current message. \\[rmail-cease-edit] to return to Rmail.
10120 \\[rmail-expunge] Expunge deleted messages.
10121 \\[rmail-expunge-and-save] Expunge and save the file.
10122 \\[rmail-quit] Quit Rmail: expunge, save, then switch to another buffer.
10123 \\[save-buffer] Save without expunging.
10124 \\[rmail-get-new-mail] Move new mail from system spool directory into this file.
10125 \\[rmail-mail] Mail a message (same as \\[mail-other-window]).
10126 \\[rmail-continue] Continue composing outgoing message started before.
10127 \\[rmail-reply] Reply to this message. Like \\[rmail-mail] but initializes some fields.
10128 \\[rmail-retry-failure] Send this message again. Used on a mailer failure message.
10129 \\[rmail-forward] Forward this message to another user.
10130 \\[rmail-output-to-rmail-file] Output this message to an Rmail file (append it).
10131 \\[rmail-output] Output this message to a Unix-format mail file (append it).
10132 \\[rmail-input] Input Rmail file. Run Rmail on that file.
10133 \\[rmail-add-label] Add label to message. It will be displayed in the mode line.
10134 \\[rmail-kill-label] Kill label. Remove a label from current message.
10135 \\[rmail-next-labeled-message] Move to Next message with specified label
10136 (label defaults to last one specified).
10137 Standard labels: filed, unseen, answered, forwarded, deleted.
10138 Any other label is present only if you add it with \\[rmail-add-label].
10139 \\[rmail-previous-labeled-message] Move to Previous message with specified label
10140 \\[rmail-summary] Show headers buffer, with a one line summary of each message.
10141 \\[rmail-summary-by-labels] Summarize only messages with particular label(s).
10142 \\[rmail-summary-by-recipients] Summarize only messages with particular recipient(s).
10143 \\[rmail-summary-by-regexp] Summarize only messages with particular regexp(s).
10144 \\[rmail-summary-by-topic] Summarize only messages with subject line regexp(s).
10145 \\[rmail-toggle-header] Toggle display of complete header." t nil)
10146
10147 (autoload 'rmail-input "rmail" "\
10148 Run Rmail on file FILENAME." t nil)
10149
10150 ;;;***
10151
10152 ;;;***
10153
10154 ;;;### (autoloads nil "rmailedit" "rmail/rmailedit.el" (12677 32616))
10155 ;;; Generated autoloads from rmail/rmailedit.el
10156
10157 ;;;***
10158
10159 ;;;### (autoloads nil "rmailkwd" "rmail/rmailkwd.el" (12677 32619))
10160 ;;; Generated autoloads from rmail/rmailkwd.el
10161
10162 ;;;***
10163
10164 ;;;### (autoloads nil "rmailmsc" "rmail/rmailmsc.el" (12677 32619))
10165 ;;; Generated autoloads from rmail/rmailmsc.el
10166
10167 ;;;### (autoloads (rmail-file-p) "rmailout" "rmail/rmailout.el" (12677 32620))
10168 ;;; Generated autoloads from rmail/rmailout.el
10169
10170 (autoload 'rmail-file-p "rmailout" nil nil nil)
10171
10172 ;;;***
10173
10174 ;;;***
10175
10176 ;;;### (autoloads nil "rmailsort" "rmail/rmailsort.el" (12677 32620))
10177 ;;; Generated autoloads from rmail/rmailsort.el
10178
10179 ;;;***
10180
10181 ;;;### (autoloads nil "rmailsum" "rmail/rmailsum.el" (12677 32620))
10182 ;;; Generated autoloads from rmail/rmailsum.el
10183
10184 ;;;***
10185
10186 ;;;### (autoloads nil "undigest" "rmail/undigest.el" (12677 32621))
10187 ;;; Generated autoloads from rmail/undigest.el
10188
10189 ;;;### (autoloads (unrmail batch-unrmail) "unrmail" "rmail/unrmail.el" (12677 32621))
10190 ;;; Generated autoloads from rmail/unrmail.el
10191
10192 (autoload 'batch-unrmail "unrmail" "\
10193 Convert Rmail files to mailbox files.
10194 Specify the input Rmail file names as command line arguments.
10195 For each Rmail file, the corresponding output file name
10196 is made by adding `.mail' at the end.
10197 For example, invoke `emacs -batch -f batch-unrmail RMAIL'." nil nil)
10198
10199 (autoload 'unrmail "unrmail" "\
10200 Convert Rmail file FILE to mailbox-format file TO-FILE." t nil)
10201
10202 ;;;***
10203
10204 ;;;***
10205
10206 ;;;***
10207
10208 ;;;### (autoloads nil "sunpro-init" "sunpro/sunpro-init.el" (12823 45304))
10209 ;;; Generated autoloads from sunpro/sunpro-init.el
10210
10211 ;;;### (autoloads nil "sunpro-keys" "sunpro/sunpro-keys.el" (12677 32713))
10212 ;;; Generated autoloads from sunpro/sunpro-keys.el
10213
10214 ;;;***
10215
10216 ;;;### (autoloads nil "sunpro-load" "sunpro/sunpro-load.el" (12688 9300))
10217 ;;; Generated autoloads from sunpro/sunpro-load.el
10218
10219 ;;;### (autoloads nil "sunpro-menubar" "sunpro/sunpro-menubar.el" (12738 54596))
10220 ;;; Generated autoloads from sunpro/sunpro-menubar.el
10221
10222 ;;;***
10223
10224 ;;;### (autoloads nil "sunpro-sparcworks" "sunpro/sunpro-sparcworks.el" (12738 54598))
10225 ;;; Generated autoloads from sunpro/sunpro-sparcworks.el
10226
10227 ;;;***
10228
10229 ;;;### (autoloads nil "AT386" "term/AT386.el" (12677 32622))
10230 ;;; Generated autoloads from term/AT386.el
10231
10232 ;;;***
10233
10234 ;;;### (autoloads nil "apollo" "term/apollo.el" (12677 32622))
10235 ;;; Generated autoloads from term/apollo.el
10236
10237 ;;;***
10238
10239 ;;;### (autoloads nil "bg-mouse" "term/bg-mouse.el" (12677 32623))
10240 ;;; Generated autoloads from term/bg-mouse.el
10241
10242 ;;;***
10243
10244 ;;;### (autoloads nil "bobcat" "term/bobcat.el" (12677 32624))
10245 ;;; Generated autoloads from term/bobcat.el
10246
10247 ;;;***
10248
10249 ;;;### (autoloads nil "internal" "term/internal.el" (12677 32624))
10250 ;;; Generated autoloads from term/internal.el
10251
10252 ;;;***
10253
10254 ;;;### (autoloads nil "keyswap" "term/keyswap.el" (12677 32624))
10255 ;;; Generated autoloads from term/keyswap.el
10256
10257 ;;;***
10258
10259 ;;;### (autoloads nil "linux" "term/linux.el" (12677 32624))
10260 ;;; Generated autoloads from term/linux.el
10261
10262 ;;;***
10263
10264 ;;;### (autoloads nil "lk201" "term/lk201.el" (12677 32624))
10265 ;;; Generated autoloads from term/lk201.el
10266
10267 ;;;***
10268
10269 ;;;### (autoloads nil "news" "term/news.el" (12677 32622))
10270 ;;; Generated autoloads from term/news.el
10271
10272 ;;;***
10273
10274 ;;;### (autoloads nil "pc-win" "term/pc-win.el" (12677 32625))
10275 ;;; Generated autoloads from term/pc-win.el
10276
10277 ;;;***
10278
10279 ;;;### (autoloads nil "scoansi" "term/scoansi.el" (12748 62974))
10280 ;;; Generated autoloads from term/scoansi.el
10281
10282 ;;;***
10283
10284 ;;;***
10285
10286 ;;;### (autoloads nil "sun-mouse" "term/sun-mouse.el" (12823 45290))
10287 ;;; Generated autoloads from term/sun-mouse.el
10288
10289 ;;;### (autoloads nil "sun" "term/sun.el" (12677 32627))
10290 ;;; Generated autoloads from term/sun.el
10291
10292 ;;;***
10293
10294 ;;;### (autoloads nil "sup-mouse" "term/sup-mouse.el" (12677 32628))
10295 ;;; Generated autoloads from term/sup-mouse.el
10296
10297 ;;;***
10298
10299 ;;;### (autoloads nil "tty-init" "term/tty-init.el" (12701 8657))
10300 ;;; Generated autoloads from term/tty-init.el
10301
10302 ;;;***
10303
10304 ;;;### (autoloads nil "tvi970" "term/tvi970.el" (12677 32628))
10305 ;;; Generated autoloads from term/tvi970.el
10306
10307 ;;;***
10308
10309 ;;;### (autoloads nil "vt-control" "term/vt-control.el" (12677 32623))
10310 ;;; Generated autoloads from term/vt-control.el
10311
10312 ;;;***
10313
10314 ;;;### (autoloads nil "vt100-led" "term/vt100-led.el" (12677 32623))
10315 ;;; Generated autoloads from term/vt100-led.el
10316
10317 ;;;***
10318
10319 ;;;### (autoloads nil "vt100" "term/vt100.el" (12677 32622))
10320 ;;; Generated autoloads from term/vt100.el
10321
10322 ;;;***
10323
10324 ;;;### (autoloads nil "vt102" "term/vt102.el" (12677 32628))
10325 ;;; Generated autoloads from term/vt102.el
10326
10327 ;;;***
10328
10329 ;;;### (autoloads nil "vt125" "term/vt125.el" (12677 32623))
10330 ;;; Generated autoloads from term/vt125.el
10331
10332 ;;;***
10333
10334 ;;;### (autoloads nil "vt200" "term/vt200.el" (12677 32628))
10335 ;;; Generated autoloads from term/vt200.el
10336
10337 ;;;***
10338
10339 ;;;### (autoloads nil "vt201" "term/vt201.el" (12677 32628))
10340 ;;; Generated autoloads from term/vt201.el
10341
10342 ;;;***
10343
10344 ;;;### (autoloads nil "vt220" "term/vt220.el" (12677 32629))
10345 ;;; Generated autoloads from term/vt220.el
10346
10347 ;;;***
10348
10349 ;;;### (autoloads nil "vt240" "term/vt240.el" (12677 32629))
10350 ;;; Generated autoloads from term/vt240.el
10351
10352 ;;;***
10353
10354 ;;;### (autoloads nil "vt300" "term/vt300.el" (12677 32628))
10355 ;;; Generated autoloads from term/vt300.el
10356
10357 ;;;***
10358
10359 ;;;### (autoloads nil "vt320" "term/vt320.el" (12677 32630))
10360 ;;; Generated autoloads from term/vt320.el
10361
10362 ;;;***
10363
10364 ;;;### (autoloads nil "vt400" "term/vt400.el" (12677 32629))
10365 ;;; Generated autoloads from term/vt400.el
10366
10367 ;;;***
10368
10369 ;;;### (autoloads nil "vt420" "term/vt420.el" (12677 32630))
10370 ;;; Generated autoloads from term/vt420.el
10371
10372 ;;;***
10373
10374 ;;;### (autoloads nil "win32-win" "term/win32-win.el" (12677 32630))
10375 ;;; Generated autoloads from term/win32-win.el
10376
10377 ;;;***
10378
10379 ;;;### (autoloads nil "wyse50" "term/wyse50.el" (12677 32630))
10380 ;;; Generated autoloads from term/wyse50.el
10381
10382 ;;;***
10383
10384 ;;;### (autoloads nil "xterm" "term/xterm.el" (12677 32630))
10385 ;;; Generated autoloads from term/xterm.el
10386
10387 ;;;### (autoloads nil "tooltalk-init" "tooltalk/tooltalk-init.el" (12713 64143))
10388 ;;; Generated autoloads from tooltalk/tooltalk-init.el
10389
10390 ;;;***
10391
10392 ;;;### (autoloads nil "tooltalk-load" "tooltalk/tooltalk-load.el" (12677 32712))
10393 ;;; Generated autoloads from tooltalk/tooltalk-load.el
10394
10395 ;;;***
10396
10397 ;;;### (autoloads nil "tooltalk-macros" "tooltalk/tooltalk-macros.el" (12677 32712))
10398 ;;; Generated autoloads from tooltalk/tooltalk-macros.el
10399
10400 ;;;***
10401
10402 ;;;### (autoloads nil "tooltalk-util" "tooltalk/tooltalk-util.el" (12677 32711))
10403 ;;; Generated autoloads from tooltalk/tooltalk-util.el
10404
10405 ;;;***
10406
10407 ;;;### (autoloads nil "base64" "url/base64.el" (12677 33090))
10408 ;;; Generated autoloads from url/base64.el
10409
10410 ;;;***
10411
10412 ;;;### (autoloads nil "md5" "url/md5.el" (12748 62894))
10413 ;;; Generated autoloads from url/md5.el
10414
10415 ;;;***
10416
10417 ;;;***
10418
10419 ;;;### (autoloads nil "mm" "url/mm.el" (12823 49284))
10420 ;;; Generated autoloads from url/mm.el
10421
10422 ;;;### (autoloads nil "ssl" "url/ssl.el" (12718 1318))
10423 ;;; Generated autoloads from url/ssl.el
10424
10425 ;;;***
10426
10427 ;;;***
10428
10429 ;;;### (autoloads nil "url-cookie" "url/url-cookie.el" (12823 49285))
10430 ;;; Generated autoloads from url/url-cookie.el
10431
10432 ;;;***
10433
10434 ;;;### (autoloads nil "url-file" "url/url-file.el" (12823 49284))
10435 ;;; Generated autoloads from url/url-file.el
10436
10437 ;;;### (autoloads nil "url-gopher" "url/url-gopher.el" (12677 33103))
10438 ;;; Generated autoloads from url/url-gopher.el
10439
10440 ;;;***
10441
10442 ;;;***
10443
10444 ;;;### (autoloads nil "url-hash" "url/url-hash.el" (12823 49284))
10445 ;;; Generated autoloads from url/url-hash.el
10446
10447 ;;;***
10448
10449 ;;;### (autoloads nil "url-http" "url/url-http.el" (12823 49285))
10450 ;;; Generated autoloads from url/url-http.el
10451
10452 ;;;***
10453
10454 ;;;### (autoloads nil "url-irc" "url/url-irc.el" (12823 49284))
10455 ;;; Generated autoloads from url/url-irc.el
10456
10457 ;;;### (autoloads nil "url-mail" "url/url-mail.el" (12731 38036))
10458 ;;; Generated autoloads from url/url-mail.el
10459
10460 ;;;***
10461
10462 ;;;### (autoloads nil "url-misc" "url/url-misc.el" (12748 62902))
10463 ;;; Generated autoloads from url/url-misc.el
10464
10465 ;;;***
10466
10467 ;;;***
10468
10469 ;;;### (autoloads nil "url-news" "url/url-news.el" (12823 49285))
10470 ;;; Generated autoloads from url/url-news.el
10471
10472 ;;;### (autoloads nil "url-nfs" "url/url-nfs.el" (12748 62975))
10473 ;;; Generated autoloads from url/url-nfs.el
10474
10475 ;;;***
10476
10477 ;;;### (autoloads nil "url-parse" "url/url-parse.el" (12677 33107))
10478 ;;; Generated autoloads from url/url-parse.el
10479
10480 ;;;***
10481
10482 ;;;### (autoloads nil "url-pgp" "url/url-pgp.el" (12718 1367))
10483 ;;; Generated autoloads from url/url-pgp.el
10484
10485 ;;;***
10486
10487 ;;;***
10488
10489 ;;;### (autoloads nil "url-sysdp" "url/url-sysdp.el" (12823 49285))
10490 ;;; Generated autoloads from url/url-sysdp.el
10491
10492 ;;;***
10493
10494 ;;;### (autoloads nil "url-vars" "url/url-vars.el" (12823 49285))
10495 ;;; Generated autoloads from url/url-vars.el
10496
10497 ;;;***
10498
10499 ;;;### (autoloads nil "url-wais" "url/url-wais.el" (12823 49285))
10500 ;;; Generated autoloads from url/url-wais.el
10501
10502 ;;;***
10503
10504 ;;;### (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" (12823 49283))
10505 ;;; Generated autoloads from url/url.el
10506
10507 (autoload 'url-file-attributes "url" "\
10508 Return a list of attributes of URL.
10509 Value is nil if specified file cannot be opened.
10510 Otherwise, list elements are:
10511 0. t for directory, string (name linked to) for symbolic link, or nil.
10512 1. Number of links to file.
10513 2. File uid.
10514 3. File gid.
10515 4. Last access time, as a list of two integers.
10516 First integer has high-order 16 bits of time, second has low 16 bits.
10517 5. Last modification time, likewise.
10518 6. Last status change time, likewise.
10519 7. Size in bytes. (-1, if number is out of range).
10520 8. File modes, as a string of ten letters or dashes as in ls -l.
10521 If URL is on an http server, this will return the content-type if possible.
10522 9. t iff file's gid would change if file were deleted and recreated.
10523 10. inode number.
10524 11. Device number.
10525
10526 If file does not exist, returns nil." nil nil)
10527
10528 (autoload 'url-normalize-url "url" "\
10529 Return a 'normalized' version of URL. This strips out default port
10530 numbers, etc." nil nil)
10531
10532 (autoload 'url-buffer-visiting "url" "\
10533 Return the name of a buffer (if any) that is visiting URL." nil nil)
10534
10535 (autoload 'url-get-url-at-point "url" "\
10536 Get the URL closest to point, but don't change your
10537 position. Has a preference for looking backward when not
10538 directly on a symbol." nil nil)
10539
10540 (autoload 'url-popup-info "url" "\
10541 Retrieve the HTTP/1.0 headers and display them in a temp buffer." nil nil)
10542
10543 (autoload 'url-cache-expired "url" "\
10544 Return t iff a cached file has expired." nil nil)
10545
10546 (autoload 'url-retrieve "url" "\
10547 Retrieve a document over the World Wide Web.
10548 The document should be specified by its fully specified
10549 Uniform Resource Locator. No parsing is done, just return the
10550 document as the server sent it. The document is left in the
10551 buffer specified by url-working-buffer. url-working-buffer is killed
10552 immediately before starting the transfer, so that no buffer-local
10553 variables interfere with the retrieval. HTTP/1.0 redirection will
10554 be honored before this function exits." nil nil)
10555
10556 ;;;***
10557
10558
10559 ;;; Generated autoloads from url/urlauth.el
10560
10561 ;;;***
10562
10563 ;;;### (autoloads nil "abbrevlist" "utils/abbrevlist.el" (12860 15589))
10564 ;;; Generated autoloads from utils/abbrevlist.el
10565
10566 ;;;### (autoloads (defadvice ad-add-advice) "advice" "utils/advice.el" (12860 15594))
10567 ;;; Generated autoloads from utils/advice.el
10568
10569 (defvar ad-redefinition-action 'warn "\
10570 *Defines what to do with redefinitions during Advice de/activation.
10571 Redefinition occurs if a previously activated function that already has an
10572 original definition associated with it gets redefined and then de/activated.
10573 In such a case we can either accept the current definition as the new
10574 original definition, discard the current definition and replace it with the
10575 old original, or keep it and raise an error. The values `accept', `discard',
10576 `error' or `warn' govern what will be done. `warn' is just like `accept' but
10577 it additionally prints a warning message. All other values will be
10578 interpreted as `error'.")
10579
10580 (defvar ad-default-compilation-action 'maybe "\
10581 *Defines whether to compile advised definitions during activation.
10582 A value of `always' will result in unconditional compilation, `never' will
10583 always avoid compilation, `maybe' will compile if the byte-compiler is already
10584 loaded, and `like-original' will compile if the original definition of the
10585 advised function is compiled or a built-in function. Every other value will
10586 be interpreted as `maybe'. This variable will only be considered if the
10587 COMPILE argument of `ad-activate' was supplied as nil.")
10588
10589 (autoload 'ad-add-advice "advice" "\
10590 Adds a piece of ADVICE to FUNCTION's list of advices in CLASS.
10591 If FUNCTION already has one or more pieces of advice of the specified
10592 CLASS then POSITION determines where the new piece will go. The value
10593 of POSITION can either be `first', `last' or a number where 0 corresponds
10594 to `first'. Numbers outside the range will be mapped to the closest
10595 extreme position. If there was already a piece of ADVICE with the same
10596 name, then the position argument will be ignored and the old advice
10597 will be overwritten with the new one.
10598 If the FUNCTION was not advised already, then its advice info will be
10599 initialized. Redefining a piece of advice whose name is part of the cache-id
10600 will clear the cache." nil nil)
10601
10602 (autoload 'defadvice "advice" "\
10603 Defines a piece of advice for FUNCTION (a symbol).
10604 The syntax of `defadvice' is as follows:
10605
10606 (defadvice FUNCTION (CLASS NAME [POSITION] [ARGLIST] FLAG...)
10607 [DOCSTRING] [INTERACTIVE-FORM]
10608 BODY... )
10609
10610 FUNCTION ::= Name of the function to be advised.
10611 CLASS ::= `before' | `around' | `after' | `activation' | `deactivation'.
10612 NAME ::= Non-nil symbol that names this piece of advice.
10613 POSITION ::= `first' | `last' | NUMBER. Optional, defaults to `first',
10614 see also `ad-add-advice'.
10615 ARGLIST ::= An optional argument list to be used for the advised function
10616 instead of the argument list of the original. The first one found in
10617 before/around/after-advices will be used.
10618 FLAG ::= `protect'|`disable'|`activate'|`compile'|`preactivate'|`freeze'.
10619 All flags can be specified with unambiguous initial substrings.
10620 DOCSTRING ::= Optional documentation for this piece of advice.
10621 INTERACTIVE-FORM ::= Optional interactive form to be used for the advised
10622 function. The first one found in before/around/after-advices will be used.
10623 BODY ::= Any s-expression.
10624
10625 Semantics of the various flags:
10626 `protect': The piece of advice will be protected against non-local exits in
10627 any code that precedes it. If any around-advice of a function is protected
10628 then automatically all around-advices will be protected (the complete onion).
10629
10630 `activate': All advice of FUNCTION will be activated immediately if
10631 FUNCTION has been properly defined prior to this application of `defadvice'.
10632
10633 `compile': In conjunction with `activate' specifies that the resulting
10634 advised function should be compiled.
10635
10636 `disable': The defined advice will be disabled, hence, it will not be used
10637 during activation until somebody enables it.
10638
10639 `preactivate': Preactivates the advised FUNCTION at macro-expansion/compile
10640 time. This generates a compiled advised definition according to the current
10641 advice state that will be used during activation if appropriate. Only use
10642 this if the `defadvice' gets actually compiled.
10643
10644 `freeze': Expands the `defadvice' into a redefining `defun/defmacro' according
10645 to this particular single advice. No other advice information will be saved.
10646 Frozen advices cannot be undone, they behave like a hard redefinition of
10647 the advised function. `freeze' implies `activate' and `preactivate'. The
10648 documentation of the advised function can be dumped onto the `DOC' file
10649 during preloading.
10650
10651 Look at the file `advice.el' for comprehensive documentation." nil 'macro)
10652
10653 ;;;***
10654
10655 ;;;### (autoloads (all-annotations annotation-list annotations-at annotations-in-region annotation-at annotationp delete-annotation make-annotation) "annotations" "utils/annotations.el" (12559 34624))
10656 ;;; Generated autoloads from utils/annotations.el
10657
10658 (defvar make-annotation-hook nil "\
10659 *Function or functions to run immediately after creating an annotation.")
10660
10661 (defvar before-delete-annotation-hook nil "\
10662 *Function or functions to run immediately before deleting an annotation.")
10663
10664 (defvar after-delete-annotation-hook nil "\
10665 *Function or functions to run immediately after deleting an annotation.")
10666
10667 (autoload 'make-annotation "annotations" "\
10668 Create a marginal annotation, displayed using GLYPH, at position POS.
10669 GLYPH may be either a glyph object or a string. Use layout policy
10670 LAYOUT and place the annotation in buffer BUFFER. If POS is nil, point is
10671 used. If LAYOUT is nil, `whitespace' is used. If BUFFER is nil, the
10672 current buffer is used. If WITH-EVENT is non-nil, then when an annotation
10673 is activated, the triggering event is passed as the second arg to the
10674 annotation function. If D-GLYPH is non-nil then it is used as the glyph
10675 that will be displayed when button1 is down. If RIGHTP is non-nil then
10676 the glyph will be displayed on the right side of the buffer instead of the
10677 left." nil nil)
10678
10679 (autoload 'delete-annotation "annotations" "\
10680 Remove ANNOTATION from its buffer. This does not modify the buffer text." nil nil)
10681
10682 (autoload 'annotationp "annotations" "\
10683 T if OBJECT is an annotation." nil nil)
10684
10685 (autoload 'annotation-at "annotations" "\
10686 Return the first annotation at POS in BUFFER.
10687 BUFFER defaults to the current buffer. POS defaults to point in BUFFER." nil nil)
10688
10689 (autoload 'annotations-in-region "annotations" "\
10690 Return all annotations in BUFFER between START and END inclusively." nil nil)
10691
10692 (autoload 'annotations-at "annotations" "\
10693 Return a list of all annotations at POS in BUFFER.
10694 If BUFFER is nil, the current buffer is used. If POS is nil, point is used." nil nil)
10695
10696 (autoload 'annotation-list "annotations" "\
10697 Return a list of all annotations in BUFFER.
10698 If BUFFER is nil, the current buffer is used." nil nil)
10699
10700 (autoload 'all-annotations "annotations" "\
10701 Return a list of all annotations in existence." nil nil)
10702
10703 ;;;***
10704
10705 ;;;***
10706
10707 ;;;### (autoloads nil "assoc" "utils/assoc.el" (12860 15600))
10708 ;;; Generated autoloads from utils/assoc.el
10709
10710 ;;;### (autoloads nil "atomic-extents" "utils/atomic-extents.el" (12677 32653))
10711 ;;; Generated autoloads from utils/atomic-extents.el
10712
10713 ;;;***
10714
10715 ;;;### (autoloads (batch-update-autoloads update-directory-autoloads update-autoloads-here update-file-autoloads generate-file-autoloads) "autoload" "utils/autoload.el" (12677 32640))
10716 ;;; Generated autoloads from utils/autoload.el
10717
10718 (autoload 'generate-file-autoloads "autoload" "\
10719 Insert at point a loaddefs autoload section for FILE.
10720 autoloads are generated for defuns and defmacros in FILE
10721 marked by `generate-autoload-cookie' (which see).
10722 If FILE is being visited in a buffer, the contents of the buffer
10723 are used." t nil)
10724
10725 (autoload 'update-file-autoloads "autoload" "\
10726 Update the autoloads for FILE in `generated-autoload-file'
10727 \(which FILE might bind in its local variables)." t nil)
10728
10729 (autoload 'update-autoloads-here "autoload" "\
10730 Update sections of the current buffer generated by \\[update-file-autoloads]." t nil)
10731
10732 (autoload 'update-directory-autoloads "autoload" "\
10733 Run \\[update-file-autoloads] on each .el file in DIR." t nil)
10734
10735 (autoload 'batch-update-autoloads "autoload" "\
10736 Update the autoloads for the files or directories on the command line.
10737 Runs \\[update-file-autoloads] on files and \\[update-directory-autoloads]
10738 on directories. Must be used only with -batch, and kills Emacs on completion.
10739 Each file will be processed even if an error occurred previously.
10740 For example, invoke `emacs -batch -f batch-update-autoloads *.el'." nil nil)
10741
10742 ;;;***
10743
10744 ;;;***
10745
10746 ;;;### (autoloads nil "blessmail" "utils/blessmail.el" (12860 15603))
10747 ;;; Generated autoloads from utils/blessmail.el
10748
10749 ;;;***
10750
10751 ;;;### (autoloads (browse-url-lynx-emacs browse-url-lynx-xterm browse-url-w3 browse-url-iximosaic browse-url-grail browse-url-mosaic browse-url-netscape) "browse-url" "utils/browse-url.el" (12745 43111))
10752 ;;; Generated autoloads from utils/browse-url.el
10753
10754 (defvar browse-url-browser-function 'browse-url-w3 "\
10755 *Function to display the current buffer in a WWW browser.
10756 Used by the `browse-url-at-point', `browse-url-at-mouse', and
10757 `browse-url-of-file' commands.")
10758
10759 (autoload 'browse-url-netscape "browse-url" "\
10760 Ask the Netscape WWW browser to load URL.
10761
10762 Default to the URL around or before point. The strings in variable
10763 `browse-url-netscape-arguments' are also passed to Netscape.
10764
10765 When called interactively, if variable `browse-url-new-window-p' is
10766 non-nil, load the document in a new Netscape window, otherwise use a
10767 random existing one. A non-nil interactive prefix argument reverses
10768 the effect of browse-url-new-window-p.
10769
10770 When called non-interactively, optional second argument NEW-WINDOW is
10771 used instead of browse-url-new-window-p." t nil)
10772
10773 (autoload 'browse-url-mosaic "browse-url" "\
10774 Ask the XMosaic WWW browser to load URL.
10775 Default to the URL around or before point." t nil)
10776
10777 (autoload 'browse-url-grail "browse-url" "\
10778 Ask the Grail WWW browser to load URL.
10779 Default to the URL around or before point. Runs the program in the
10780 variable `browse-url-grail'." t nil)
10781
10782 (autoload 'browse-url-iximosaic "browse-url" "\
10783 Ask the IXIMosaic WWW browser to load URL.
10784 Default to the URL around or before point." t nil)
10785
10786 (autoload 'browse-url-w3 "browse-url" "\
10787 Ask the w3 WWW browser to load URL.
10788 Default to the URL around or before point." t nil)
10789
10790 (autoload 'browse-url-lynx-xterm "browse-url" "\
10791 Ask the Lynx WWW browser to load URL.
10792 Default to the URL around or before point. A new Lynx process is run
10793 in an Xterm window." t nil)
10794
10795 (autoload 'browse-url-lynx-emacs "browse-url" "\
10796 Ask the Lynx WWW browser to load URL.
10797 Default to the URL around or before point. Run a new Lynx process in
10798 an Emacs buffer." t nil)
10799
10800 ;;;***
10801
10802 ;;;### (autoloads nil "crontab" "utils/crontab.el" (12677 32660))
10803 ;;; Generated autoloads from utils/crontab.el
10804
10805 ;;;***
10806
10807 ;;;### (autoloads nil "delbackspace" "utils/delbackspace.el" (12748 62831))
10808 ;;; Generated autoloads from utils/delbackspace.el
10809
10810 ;;;***
10811
10812 ;;;***
10813
10814 ;;;### (autoloads nil "derived" "utils/derived.el" (12860 15590))
10815 ;;; Generated autoloads from utils/derived.el
10816
10817 ;;;### (autoloads (docref-setup) "docref" "utils/docref.el" (12860 15605))
10818 ;;; Generated autoloads from utils/docref.el
10819
10820 (autoload 'docref-setup "docref" "\
10821 Process docref cross-references in the current buffer.
10822 See also \\(f@docref-subst)." t nil)
10823
10824 ;;;***
10825
10826 ;;;### (autoloads (easy-menu-define) "easymenu" "utils/easymenu.el" (12860 15607))
10827 ;;; Generated autoloads from utils/easymenu.el
10828
10829 (autoload 'easy-menu-define "easymenu" "\
10830 Define a menu bar submenu in maps MAPS, according to MENU.
10831 The arguments SYMBOL and DOC are ignored; they are present for
10832 compatibility only. SYMBOL is not evaluated. In other Emacs versions
10833 these arguments may be used as a variable to hold the menu data, and a
10834 doc string for that variable.
10835
10836 The first element of MENU must be a string. It is the menu bar item name.
10837 The rest of the elements are menu items.
10838
10839 A menu item is usually a vector of three elements: [NAME CALLBACK ENABLE]
10840
10841 NAME is a string--the menu item name.
10842
10843 CALLBACK is a command to run when the item is chosen,
10844 or a list to evaluate when the item is chosen.
10845
10846 ENABLE is an expression; the item is enabled for selection
10847 whenever this expression's value is non-nil.
10848
10849 Alternatively, a menu item may have the form:
10850
10851 [ NAME CALLBACK [ KEYWORD ARG ] ... ]
10852
10853 Where KEYWORD is one of the symbol defined below.
10854
10855 :keys KEYS
10856
10857 KEYS is a string; a complex keyboard equivalent to this menu item.
10858
10859 :active ENABLE
10860
10861 ENABLE is an expression; the item is enabled for selection
10862 whenever this expression's value is non-nil.
10863
10864 :suffix NAME
10865
10866 NAME is a string; the name of an argument to CALLBACK.
10867
10868 :style STYLE
10869
10870 STYLE is a symbol describing the type of menu item. The following are
10871 defined:
10872
10873 toggle: A checkbox.
10874 Currently just prepend the name with the string \"Toggle \".
10875 radio: A radio button.
10876 nil: An ordinary menu item.
10877
10878 :selected SELECTED
10879
10880 SELECTED is an expression; the checkbox or radio button is selected
10881 whenever this expression's value is non-nil.
10882 Currently just disable radio buttons, no effect on checkboxes.
10883
10884 A menu item can be a string. Then that string appears in the menu as
10885 unselectable text. A string consisting solely of hyphens is displayed
10886 as a solid horizontal line.
10887
10888 A menu item can be a list. It is treated as a submenu.
10889 The first element should be the submenu name. That's used as the
10890 menu item in the top-level menu. The cdr of the submenu list
10891 is a list of menu items, as above." nil 'macro)
10892
10893 ;;;***
10894
10895 ;;;### (autoloads (elp-submit-bug-report elp-results elp-instrument-package elp-instrument-list elp-restore-function elp-instrument-function) "elp" "utils/elp.el" (12677 32656))
10896 ;;; Generated autoloads from utils/elp.el
10897
10898 (autoload 'elp-instrument-function "elp" "\
10899 Instrument FUNSYM for profiling.
10900 FUNSYM must be a symbol of a defined function." t nil)
10901
10902 (autoload 'elp-restore-function "elp" "\
10903 Restore an instrumented function to its original definition.
10904 Argument FUNSYM is the symbol of a defined function." t nil)
10905
10906 (autoload 'elp-instrument-list "elp" "\
10907 Instrument for profiling, all functions in `elp-function-list'.
10908 Use optional LIST if provided instead." t nil)
10909
10910 (autoload 'elp-instrument-package "elp" "\
10911 Instrument for profiling, all functions which start with PREFIX.
10912 For example, to instrument all ELP functions, do the following:
10913
10914 \\[elp-instrument-package] RET elp- RET" t nil)
10915
10916 (autoload 'elp-results "elp" "\
10917 Display current profiling results.
10918 If `elp-reset-after-results' is non-nil, then current profiling
10919 information for all instrumented functions are reset after results are
10920 displayed." t nil)
10921
10922 (autoload 'elp-submit-bug-report "elp" "\
10923 Submit via mail, a bug report on elp." t nil)
10924
10925 ;;;***
10926
10927 ;;;### (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" (12677 32647))
10928 ;;; Generated autoloads from utils/facemenu.el
10929
10930 (defvar facemenu-menu nil "\
10931 Facemenu top-level menu keymap.")
10932
10933 (defvar facemenu-keymap (let ((map (make-sparse-keymap "Set face"))) (define-key map ?o 'facemenu-set-face) map) "\
10934 Keymap for face-changing commands.
10935 `Facemenu-update' fills in the keymap according to the bindings
10936 requested in `facemenu-keybindings'.")
10937
10938 (autoload 'facemenu-set-face "facemenu" "\
10939 Add FACE to the region or next character typed.
10940 It will be added to the top of the face list; any faces lower on the list that
10941 will not show through at all will be removed.
10942
10943 Interactively, the face to be used is read with the minibuffer.
10944
10945 If the region is active and there is no prefix argument,
10946 this command sets the region to the requested face.
10947
10948 Otherwise, this command specifies the face for the next character
10949 inserted. Moving point or switching buffers before
10950 typing a character to insert cancels the specification." t nil)
10951
10952 (autoload 'facemenu-set-foreground "facemenu" "\
10953 Set the foreground color of the region or next character typed.
10954 The color is prompted for. A face named `fg:color' is used (or created).
10955 If the region is active, it will be set to the requested face. If
10956 it is inactive (even if mark-even-if-inactive is set) the next
10957 character that is typed (via `self-insert-command') will be set to
10958 the selected face. Moving point or switching buffers before
10959 typing a character cancels the request." t nil)
10960
10961 (autoload 'facemenu-set-background "facemenu" "\
10962 Set the background color of the region or next character typed.
10963 The color is prompted for. A face named `bg:color' is used (or created).
10964 If the region is active, it will be set to the requested face. If
10965 it is inactive (even if mark-even-if-inactive is set) the next
10966 character that is typed (via `self-insert-command') will be set to
10967 the selected face. Moving point or switching buffers before
10968 typing a character cancels the request." t nil)
10969
10970 (autoload 'facemenu-set-face-from-menu "facemenu" "\
10971 Set the face of the region or next character typed.
10972 This function is designed to be called from a menu; the face to use
10973 is the menu item's name.
10974
10975 If the region is active and there is no prefix argument,
10976 this command sets the region to the requested face.
10977
10978 Otherwise, this command specifies the face for the next character
10979 inserted. Moving point or switching buffers before
10980 typing a character to insert cancels the specification." nil nil)
10981
10982 (autoload 'facemenu-set-size-default "facemenu" nil t nil)
10983
10984 (autoload 'facemenu-make-larger "facemenu" nil t nil)
10985
10986 (autoload 'facemenu-make-smaller "facemenu" nil t nil)
10987
10988 (autoload 'facemenu-make-much-larger "facemenu" nil t nil)
10989
10990 (autoload 'facemenu-make-much-smaller "facemenu" nil t nil)
10991
10992 (autoload 'facemenu-set-invisible "facemenu" "\
10993 Make the region invisible.
10994 This sets the `invisible' text property; it can be undone with
10995 `facemenu-remove-special'." t nil)
10996
10997 (autoload 'facemenu-set-intangible "facemenu" "\
10998 Make the region intangible: disallow moving into it.
10999 This sets the `intangible' text property; it can be undone with
11000 `facemenu-remove-special'." t nil)
11001
11002 (autoload 'facemenu-set-read-only "facemenu" "\
11003 Make the region unmodifiable.
11004 This sets the `read-only' text property; it can be undone with
11005 `facemenu-remove-special'." t nil)
11006
11007 (autoload 'facemenu-remove-props "facemenu" "\
11008 Remove all text properties that facemenu added to region." t nil)
11009
11010 (autoload 'facemenu-remove-special "facemenu" "\
11011 Remove all the \"special\" text properties from the region.
11012 These special properties include `invisible', `intangible' and `read-only'." t nil)
11013
11014 (autoload 'list-text-properties-at "facemenu" "\
11015 Pop up a buffer listing text-properties at LOCATION." t nil)
11016
11017 (autoload 'facemenu-read-color "facemenu" "\
11018 Read a color using the minibuffer." nil nil)
11019
11020 (autoload 'list-colors-display "facemenu" "\
11021 Display names of defined colors, and show what they look like.
11022 If the optional argument LIST is non-nil, it should be a list of
11023 colors to display. Otherwise, this command computes a list
11024 of colors that the current display can handle." t nil)
11025
11026 ;;;***
11027
11028 ;;;***
11029
11030 ;;;### (autoloads nil "find-gc" "utils/find-gc.el" (12677 32658))
11031 ;;; Generated autoloads from utils/find-gc.el
11032
11033 ;;;***
11034
11035 ;;;### (autoloads nil "finder-inf" "utils/finder-inf.el" (12677 32657))
11036 ;;; Generated autoloads from utils/finder-inf.el
11037
11038 ;;;***
11039
11040 ;;;***
11041
11042 ;;;### (autoloads nil "finder" "utils/finder.el" (12860 15601))
11043 ;;; Generated autoloads from utils/finder.el
11044
11045 ;;;***
11046
11047 ;;;### (autoloads (enable-flow-control-on enable-flow-control) "flow-ctrl" "utils/flow-ctrl.el" (12823 45292))
11048 ;;; Generated autoloads from utils/flow-ctrl.el
11049
11050 (autoload 'enable-flow-control "flow-ctrl" "\
11051 Toggle flow control handling.
11052 When handling is enabled, user can type C-s as C-\\, and C-q as C-^.
11053 With arg, enable flow control mode if arg is positive, otherwise disable." t nil)
11054
11055 (autoload 'enable-flow-control-on "flow-ctrl" "\
11056 Enable flow control if using one of a specified set of terminal types.
11057 Use `(enable-flow-control-on \"vt100\" \"h19\")' to enable flow control
11058 on VT-100 and H19 terminals. When flow control is enabled,
11059 you must type C-\\ to get the effect of a C-s, and type C-^
11060 to get the effect of a C-q.
11061
11062 This function has no effect unless the current device is a tty.
11063
11064 The tty terminal type is determined from the TERM environment variable.
11065 Trailing hyphens and everything following is stripped, so a TERM
11066 value of \"vt100-nam\" is treated the same as \"vt100\"." nil nil)
11067
11068 ;;;***
11069
11070 ;;;***
11071
11072 ;;;### (autoloads nil "foldout" "utils/foldout.el" (12860 15602))
11073 ;;; Generated autoloads from utils/foldout.el
11074
11075 ;;;***
11076
11077 ;;;### (autoloads nil "forms-d2" "utils/forms-d2.el" (12860 15598))
11078 ;;; Generated autoloads from utils/forms-d2.el
11079
11080 ;;;***
11081
11082 ;;;### (autoloads nil "forms-pass" "utils/forms-pass.el" (12860 15599))
11083 ;;; Generated autoloads from utils/forms-pass.el
11084
11085 ;;;***
11086
11087 ;;;### (autoloads (forms-find-file-other-window forms-find-file forms-mode) "forms" "utils/forms.el" (12559 34621))
11088 ;;; Generated autoloads from utils/forms.el
11089
11090 (autoload 'forms-mode "forms" "\
11091 Major mode to visit files in a field-structured manner using a form.
11092
11093 Commands: Equivalent keys in read-only mode:
11094
11095 TAB forms-next-field TAB
11096 C-c TAB forms-next-field
11097 C-c < forms-first-record <
11098 C-c > forms-last-record >
11099 C-c ? describe-mode ?
11100 C-c C-k forms-delete-record
11101 C-c C-q forms-toggle-read-only q
11102 C-c C-o forms-insert-record
11103 C-c C-l forms-jump-record l
11104 C-c C-n forms-next-record n
11105 C-c C-p forms-prev-record p
11106 C-c C-s forms-search s
11107 C-c C-x forms-exit x" t nil)
11108
11109 (autoload 'forms-find-file "forms" "\
11110 Visit a file in Forms mode." t nil)
11111
11112 (autoload 'forms-find-file-other-window "forms" "\
11113 Visit a file in Forms mode in other window." t nil)
11114
11115 ;;;***
11116
11117 ;;;### (autoloads nil "hide-copyleft" "utils/hide-copyleft.el" (12748 62974))
11118 ;;; Generated autoloads from utils/hide-copyleft.el
11119
11120 ;;;### (autoloads (highlight-headers-follow-url highlight-headers-follow-url-mosaic highlight-headers-follow-url-netscape highlight-headers) "highlight-headers" "utils/highlight-headers.el" (12823 45291))
11121 ;;; Generated autoloads from utils/highlight-headers.el
11122
11123 (autoload 'highlight-headers "highlight-headers" "\
11124 Highlight message headers between start and end.
11125 Faces used:
11126 message-headers the part before the colon
11127 message-header-contents the part after the colon
11128 message-highlighted-header-contents contents of \"special\" headers
11129 message-cited-text quoted text from other messages
11130
11131 Variables used:
11132
11133 highlight-headers-regexp what makes a \"special\" header
11134 highlight-headers-citation-regexp matches lines of quoted text
11135 highlight-headers-citation-header-regexp matches headers for quoted text
11136
11137 If HACK-SIG is true,then we search backward from END for something that
11138 looks like the beginning of a signature block, and don't consider that a
11139 part of the message (this is because signatures are often incorrectly
11140 interpreted as cited text.)" nil nil)
11141
11142 (autoload 'highlight-headers-follow-url-netscape "highlight-headers" nil nil nil)
11143
11144 (autoload 'highlight-headers-follow-url-mosaic "highlight-headers" nil nil nil)
11145
11146 (autoload 'highlight-headers-follow-url "highlight-headers" nil t nil)
11147
11148 ;;;***
11149
11150 ;;;***
11151
11152 ;;;### (autoloads nil "lib-complete" "utils/lib-complete.el" (12677 32661))
11153 ;;; Generated autoloads from utils/lib-complete.el
11154
11155 ;;;***
11156
11157 ;;;### (autoloads nil "live-icon" "utils/live-icon.el" (12677 32663))
11158 ;;; Generated autoloads from utils/live-icon.el
11159
11160 ;;;### (autoloads (unload-feature) "loadhist" "utils/loadhist.el" (12860 15604))
11161 ;;; Generated autoloads from utils/loadhist.el
11162
11163 (autoload 'unload-feature "loadhist" "\
11164 Unload the library that provided FEATURE, restoring all its autoloads.
11165 If the feature is required by any other loaded code, and optional FORCE
11166 is nil, raise an error." t nil)
11167
11168 ;;;***
11169
11170 ;;;### (autoloads (what-domain mail-extract-address-components) "mail-extr" "utils/mail-extr.el" (12823 45293))
11171 ;;; Generated autoloads from utils/mail-extr.el
11172
11173 (autoload 'mail-extract-address-components "mail-extr" "\
11174 Given an RFC-822 ADDRESS, extract full name and canonical address.
11175 Returns a list of the form (FULL-NAME CANONICAL-ADDRESS).
11176 If no name can be extracted, FULL-NAME will be nil.
11177 ADDRESS may be a string or a buffer. If it is a buffer, the visible
11178 (narrowed) portion of the buffer will be interpreted as the address.
11179 (This feature exists so that the clever caller might be able to avoid
11180 consing a string.)
11181 If ADDRESS contains more than one RFC-822 address, only the first is
11182 returned. Some day this function may be extended to extract multiple
11183 addresses, or perhaps return the position at which parsing stopped." nil nil)
11184
11185 (autoload 'what-domain "mail-extr" "\
11186 Prompts for a mail domain, and prints the country it corresponds to
11187 in the minibuffer." t nil)
11188
11189 ;;;***
11190
11191 ;;;### (autoloads (mail-fetch-field mail-file-babyl-p) "mail-utils" "utils/mail-utils.el" (12748 62828))
11192 ;;; Generated autoloads from utils/mail-utils.el
11193
11194 (defvar mail-use-rfc822 nil "\
11195 *If non-nil, use a full, hairy RFC822 parser on mail addresses.
11196 Otherwise, (the default) use a smaller, somewhat faster, and
11197 often correct parser.")
11198
11199 (autoload 'mail-file-babyl-p "mail-utils" nil nil nil)
11200
11201 (autoload 'mail-fetch-field "mail-utils" "\
11202 Return the value of the header field FIELD-NAME.
11203 The buffer is expected to be narrowed to just the headers of the message.
11204 If second arg LAST is non-nil, use the last such field if there are several.
11205 If third arg ALL is non-nil, concatenate all such fields with commas between." nil nil)
11206
11207 ;;;***
11208
11209 ;;;***
11210
11211 ;;;***
11212
11213 ;;;### (autoloads nil "mailpost" "utils/mailpost.el" (12860 15591))
11214 ;;; Generated autoloads from utils/mailpost.el
11215
11216 ;;;### (autoloads nil "map-ynp" "utils/map-ynp.el" (12748 62829))
11217 ;;; Generated autoloads from utils/map-ynp.el
11218
11219 ;;;***
11220
11221 ;;;***
11222
11223 ;;;### (autoloads nil "meese" "utils/meese.el" (12860 15591))
11224 ;;; Generated autoloads from utils/meese.el
11225
11226 ;;;### (autoloads (read-passwd) "passwd" "utils/passwd.el" (12559 34616))
11227 ;;; Generated autoloads from utils/passwd.el
11228
11229 (autoload 'read-passwd "passwd" "\
11230 Prompts for a password in the minibuffer, and returns it as a string.
11231 If PROMPT may be a prompt string or an alist of elements
11232 '(prompt . default).
11233 If optional arg CONFIRM is true, then ask the user to type the password
11234 again to confirm that they typed it correctly.
11235 If optional arg DEFAULT is provided, then it is a string to insert as
11236 the default choice (it is not, of course, displayed.)
11237
11238 If running under X, the keyboard will be grabbed (with XGrabKeyboard())
11239 to reduce the possibility that evesdropping is occuring.
11240
11241 When reading a password, all keys self-insert, except for:
11242 \\<read-passwd-map>
11243 \\[read-passwd-erase-line] Erase the entire line.
11244 \\[quoted-insert] Insert the next character literally.
11245 \\[delete-backward-char] Delete the previous character.
11246 \\[exit-minibuffer] Accept what you have typed.
11247 \\[keyboard-quit] Abort the command.
11248
11249 The returned value is always a newly-created string. No additional copies
11250 of the password remain after this function has returned.
11251
11252 NOTE: unless great care is taken, the typed password will exist in plaintext
11253 form in the running image for an arbitrarily long time. Priveleged users may
11254 be able to extract it from memory. If emacs crashes, it may appear in the
11255 resultant core file.
11256
11257 Some steps you can take to prevent the password from being copied around:
11258
11259 - as soon as you are done with the returned string, destroy it with
11260 (fillarray string 0). The same goes for any default passwords
11261 or password histories.
11262
11263 - do not copy the string, as with concat or substring - if you do, be
11264 sure to keep track of and destroy all copies.
11265
11266 - do not insert the password into a buffer - if you do, be sure to
11267 overwrite the buffer text before killing it, as with the functions
11268 `passwd-erase-buffer' or `passwd-kill-buffer'. Note that deleting
11269 the text from the buffer does NOT necessarily remove the text from
11270 memory.
11271
11272 - be careful of the undo history - if you insert the password into a
11273 buffer which has undo recording turned on, the password will be
11274 copied onto the undo list, and thus recoverable.
11275
11276 - do not pass it as an argument to a shell command - anyone will be
11277 able to see it if they run `ps' at the right time.
11278
11279 Note that the password will be temporarily recoverable with the `view-lossage'
11280 command. This data will not be overwritten until another hundred or so
11281 characters are typed. There's not currently a way around this." nil nil)
11282
11283 ;;;***
11284
11285 ;;;### (autoloads (pp-eval-last-sexp pp-eval-expression pp) "pp" "utils/pp.el" (12860 15600))
11286 ;;; Generated autoloads from utils/pp.el
11287
11288 (defalias 'pprint 'pp)
11289
11290 (autoload 'pp "pp" "\
11291 Output the pretty-printed representation of OBJECT, any Lisp object.
11292 Quoting characters are printed when needed to make output that `read'
11293 can handle, whenever this is possible.
11294 Output stream is STREAM, or value of `standard-output' (which see)." nil nil)
11295
11296 (autoload 'pp-eval-expression "pp" "\
11297 Evaluate EXPRESSION and pretty-print value into a new display buffer.
11298 If the pretty-printed value fits on one line, the message line is used
11299 instead. Value is also consed on to front of variable values 's
11300 value." t nil)
11301
11302 (autoload 'pp-eval-last-sexp "pp" "\
11303 Run `pp-eval-expression' on sexp before point (which see).
11304 With argument, pretty-print output into current buffer.
11305 Ignores leading comment characters." t nil)
11306
11307 ;;;***
11308
11309 ;;;***
11310
11311 ;;;***
11312
11313 ;;;### (autoloads nil "regi" "utils/regi.el" (12860 15597))
11314 ;;; Generated autoloads from utils/regi.el
11315
11316 ;;;***
11317
11318 ;;;### (autoloads (reporter-submit-bug-report) "reporter" "utils/reporter.el" (12860 15595))
11319 ;;; Generated autoloads from utils/reporter.el
11320
11321 (autoload 'reporter-submit-bug-report "reporter" nil nil nil)
11322
11323 ;;;***
11324
11325 ;;;### (autoloads nil "rfc822" "utils/rfc822.el" (12677 32635))
11326 ;;; Generated autoloads from utils/rfc822.el
11327
11328 ;;;***
11329
11330 ;;;### (autoloads (make-ring ringp) "ring" "utils/ring.el" (12860 15596))
11331 ;;; Generated autoloads from utils/ring.el
11332
11333 (autoload 'ringp "ring" "\
11334 Returns t if X is a ring; nil otherwise." nil nil)
11335
11336 (define-obsolete-function-alias 'ring-p 'ringp)
11337
11338 (autoload 'make-ring "ring" "\
11339 Make a ring that can contain SIZE elements." nil nil)
11340
11341 ;;;***
11342
11343 ;;;***
11344
11345 ;;;### (autoloads nil "shadowfile" "utils/shadowfile.el" (12860 15606))
11346 ;;; Generated autoloads from utils/shadowfile.el
11347
11348 ;;;***
11349
11350 ;;;### (autoloads (skeleton-pair-insert-maybe skeleton-insert skeleton-proxy skeleton-proxy-new define-skeleton) "skeleton" "utils/skeleton.el" (12860 15609))
11351 ;;; Generated autoloads from utils/skeleton.el
11352
11353 (defvar skeleton-filter 'identity "\
11354 Function for transforming a skeleton proxy's aliases' variable value.")
11355
11356 (autoload 'define-skeleton "skeleton" "\
11357 Define a user-configurable COMMAND that enters a statement skeleton.
11358 DOCUMENTATION is that of the command, while the variable of the same name,
11359 which contains the skeleton, has a documentation to that effect.
11360 INTERACTOR and ELEMENT ... are as defined under `skeleton-insert'." nil 'macro)
11361
11362 (autoload 'skeleton-proxy-new "skeleton" "\
11363 Insert skeleton defined by variable of same name (see `skeleton-insert').
11364 Prefix ARG allows wrapping around words or regions (see `skeleton-insert').
11365 If no ARG was given, but the region is visible, ARG defaults to -1 depending
11366 on `skeleton-autowrap'. An ARG of M-0 will prevent this just for once.
11367 This command can also be an abbrev expansion (3rd and 4th columns in
11368 \\[edit-abbrevs] buffer: \"\" command-name).
11369
11370 When called as a function, optional first argument STR may also be a string
11371 which will be the value of `str' whereas the skeleton's interactor is then
11372 ignored." t nil)
11373
11374 (autoload 'skeleton-proxy "skeleton" "\
11375 Insert skeleton defined by variable of same name (see `skeleton-insert').
11376 Prefix ARG allows wrapping around words or regions (see `skeleton-insert').
11377 If no ARG was given, but the region is visible, ARG defaults to -1 depending
11378 on `skeleton-autowrap'. An ARG of M-0 will prevent this just for once.
11379 This command can also be an abbrev expansion (3rd and 4th columns in
11380 \\[edit-abbrevs] buffer: \"\" command-name).
11381
11382 When called as a function, optional first argument STR may also be a string
11383 which will be the value of `str' whereas the skeleton's interactor is then
11384 ignored." t nil)
11385
11386 (autoload 'skeleton-insert "skeleton" "\
11387 Insert the complex statement skeleton SKELETON describes very concisely.
11388
11389 With optional third REGIONS wrap first interesting point (`_') in skeleton
11390 around next REGIONS words, if REGIONS is positive. If REGIONS is negative,
11391 wrap REGIONS preceding interregions into first REGIONS interesting positions
11392 \(successive `_'s) in skeleton. An interregion is the stretch of text between
11393 two contiguous marked points. If you marked A B C [] (where [] is the cursor)
11394 in alphabetical order, the 3 interregions are simply the last 3 regions. But
11395 if you marked B A [] C, the interregions are B-A, A-[], []-C.
11396
11397 Optional fourth STR is the value for the variable `str' within the skeleton.
11398 When this is non-`nil' the interactor gets ignored, and this should be a valid
11399 skeleton element.
11400
11401 SKELETON is made up as (INTERACTOR ELEMENT ...). INTERACTOR may be nil if
11402 not needed, a prompt-string or an expression for complex read functions.
11403
11404 If ELEMENT is a string or a character it gets inserted (see also
11405 `skeleton-transformation'). Other possibilities are:
11406
11407 \\n go to next line and indent according to mode
11408 _ interesting point, interregion here, point after termination
11409 > indent line (or interregion if > _) according to major mode
11410 & do next ELEMENT if previous moved point
11411 | do next ELEMENT if previous didn't move point
11412 -num delete num preceding characters (see `skeleton-untabify')
11413 resume: skipped, continue here if quit is signaled
11414 nil skipped
11415
11416 Further elements can be defined via `skeleton-further-elements'. ELEMENT may
11417 itself be a SKELETON with an INTERACTOR. The user is prompted repeatedly for
11418 different inputs. The SKELETON is processed as often as the user enters a
11419 non-empty string. \\[keyboard-quit] terminates skeleton insertion, but
11420 continues after `resume:' and positions at `_' if any. If INTERACTOR in such
11421 a subskeleton is a prompt-string which contains a \".. %s ..\" it is
11422 formatted with `skeleton-subprompt'. Such an INTERACTOR may also a list of
11423 strings with the subskeleton being repeated once for each string.
11424
11425 Quoted Lisp expressions are evaluated evaluated for their side-effect.
11426 Other Lisp expressions are evaluated and the value treated as above.
11427 Note that expressions may not return `t' since this implies an
11428 endless loop. Modes can define other symbols by locally setting them
11429 to any valid skeleton element. The following local variables are
11430 available:
11431
11432 str first time: read a string according to INTERACTOR
11433 then: insert previously read string once more
11434 help help-form during interaction with the user or `nil'
11435 input initial input (string or cons with index) while reading str
11436 v1, v2 local variables for memorizing anything you want
11437
11438 When done with skeleton, but before going back to `_'-point call
11439 `skeleton-end-hook' if that is non-`nil'." nil nil)
11440
11441 (autoload 'skeleton-pair-insert-maybe "skeleton" "\
11442 Insert the character you type ARG times.
11443
11444 With no ARG, if `skeleton-pair' is non-nil, pairing can occur. If the region
11445 is visible the pair is wrapped around it depending on `skeleton-autowrap'.
11446 Else, if `skeleton-pair-on-word' is non-nil or we are not before or inside a
11447 word, and if `skeleton-pair-filter' returns nil, pairing is performed.
11448
11449 If a match is found in `skeleton-pair-alist', that is inserted, else
11450 the defaults are used. These are (), [], {}, <> and `' for the
11451 symmetrical ones, and the same character twice for the others." t nil)
11452
11453 ;;;***
11454
11455 ;;;***
11456
11457 ;;;### (autoloads nil "soundex" "utils/soundex.el" (12860 15606))
11458 ;;; Generated autoloads from utils/soundex.el
11459
11460 ;;;### (autoloads nil "symbol-syntax" "utils/symbol-syntax.el" (12677 32631))
11461 ;;; Generated autoloads from utils/symbol-syntax.el
11462
11463 ;;;***
11464
11465 ;;;### (autoloads nil "sysdep" "utils/sysdep.el" (12718 987))
11466 ;;; Generated autoloads from utils/sysdep.el
11467
11468 ;;;***
11469
11470 ;;;***
11471
11472 ;;;### (autoloads nil "text-props" "utils/text-props.el" (12823 45294))
11473 ;;; Generated autoloads from utils/text-props.el
11474
11475 ;;;### (autoloads nil "thing" "utils/thing.el" (12677 32660))
11476 ;;; Generated autoloads from utils/thing.el
11477
11478 ;;;***
11479
11480 ;;;### (autoloads nil "timezone" "utils/timezone.el" (12677 32663))
11481 ;;; Generated autoloads from utils/timezone.el
11482
11483 ;;;### (autoloads (tq-create) "tq" "utils/tq.el" (12860 15594))
11484 ;;; Generated autoloads from utils/tq.el
11485
11486 (autoload 'tq-create "tq" "\
11487 Create and return a transaction queue communicating with PROCESS.
11488 PROCESS should be a subprocess capable of sending and receiving
11489 streams of bytes. It may be a local process, or it may be connected
11490 to a tcp server on another machine." nil nil)
11491
11492 ;;;***
11493
11494 ;;;### (autoloads (trace-function-background trace-function) "trace" "utils/trace.el" (12860 15596))
11495 ;;; Generated autoloads from utils/trace.el
11496
11497 (defvar trace-buffer "*trace-output*" "\
11498 *Trace output will by default go to that buffer.")
11499
11500 (autoload 'trace-function "trace" "\
11501 Traces FUNCTION with trace output going to BUFFER.
11502 For every call of FUNCTION Lisp-style trace messages that display argument
11503 and return values will be inserted into BUFFER. This function generates the
11504 trace advice for FUNCTION and activates it together with any other advice
11505 there might be!! The trace BUFFER will popup whenever FUNCTION is called.
11506 Do not use this to trace functions that switch buffers or do any other
11507 display oriented stuff, use `trace-function-background' instead." t nil)
11508
11509 (autoload 'trace-function-background "trace" "\
11510 Traces FUNCTION with trace output going quietly to BUFFER.
11511 For every call of FUNCTION Lisp-style trace messages that display argument
11512 and return values will be inserted into BUFFER. This function generates the
11513 trace advice for FUNCTION and activates it together with any other advice
11514 there might be!! Trace output will quietly go to BUFFER without changing
11515 the window or buffer configuration at all." t nil)
11516
11517 ;;;***
11518
11519 ;;;***
11520
11521 ;;;### (autoloads nil "tree-menu" "utils/tree-menu.el" (12677 32657))
11522 ;;; Generated autoloads from utils/tree-menu.el
11523
11524 ;;;***
11525
11526 ;;;### (autoloads nil "uniquify" "utils/uniquify.el" (12860 15676))
11527 ;;; Generated autoloads from utils/uniquify.el
11528
11529 ;;;### (autoloads (y-or-n-p-with-timeout yes-or-no-p-with-timeout with-timeout with-timeout-internal) "with-timeout" "utils/with-timeout.el" (12677 32636))
11530 ;;; Generated autoloads from utils/with-timeout.el
11531
11532 (autoload 'with-timeout-internal "with-timeout" nil nil nil)
11533
11534 (autoload 'with-timeout "with-timeout" "\
11535 Usage: (with-timeout (seconds &rest timeout-forms) &rest body)
11536 This is just like progn, but if the given number of seconds expires before
11537 the body returns, then timeout-forms are evaluated and returned instead.
11538 The body won't be interrupted in the middle of a computation: the check for
11539 the timer expiration only occurs when body does a redisplay, or prompts the
11540 user for input, or calls accept-process-output." nil 'macro)
11541
11542 (autoload 'yes-or-no-p-with-timeout "with-timeout" "\
11543 Just like yes-or-no-p, but will time out after TIMEOUT seconds
11544 if the user has not yes answered, returning DEFAULT-VALUE." nil nil)
11545
11546 (autoload 'y-or-n-p-with-timeout "with-timeout" "\
11547 Just like y-or-n-p, but will time out after TIMEOUT seconds
11548 if the user has not yes answered, returning DEFAULT-VALUE." nil nil)
11549
11550 ;;;***
11551
11552 ;;;### (autoloads (xbm-button-create) "xbm-button" "utils/xbm-button.el" (12677 32665))
11553 ;;; Generated autoloads from utils/xbm-button.el
11554
11555 (autoload 'xbm-button-create "xbm-button" "\
11556 Returns a list of XBM image instantiators for a button displaying TEXT.
11557 The list is of the form
11558 (UP DOWN DISABLED)
11559 where UP, DOWN, and DISABLED are the up, down and disabled image
11560 instantiators for the button.
11561
11562 BORDER-THICKNESS specifies how many pixels should be used for the
11563 borders on the edges of the buttons. It should be a positive integer,
11564 or 0 to mean no border." nil nil)
11565
11566 ;;;***
11567
11568 ;;;### (autoloads (xpm-button-create) "xpm-button" "utils/xpm-button.el" (12677 32648))
11569 ;;; Generated autoloads from utils/xpm-button.el
11570
11571 (autoload 'xpm-button-create "xpm-button" "\
11572 Returns a list of XPM image instantiators for a button displaying TEXT.
11573 The list is of the form
11574 (UP DOWN DISABLED)
11575 where UP, DOWN, and DISABLED are the up, down and disabled image
11576 instantiators for the button.
11577
11578 SHADOW-THICKNESS specifies how many pixels should be used for the
11579 shadows on the edges of the buttons. It should be a positive integer,
11580 or 0 to mean no shadows on the edges.
11581 FG-COLOR is the color used to display the text. It should be a string.
11582 BG-COLOR is the background color the text will be displayed upon.
11583 It should be a string." nil nil)
11584
11585 ;;;***
11586
11587 ;;;***
11588
11589 ;;;### (autoloads nil "viper-ex" "viper/viper-ex.el" (12808 12348))
11590 ;;; Generated autoloads from viper/viper-ex.el
11591
11592 ;;;***
11593
11594 ;;;### (autoloads nil "viper-keym" "viper/viper-keym.el" (12677 32983))
11595 ;;; Generated autoloads from viper/viper-keym.el
11596
11597 ;;;***
11598
11599 ;;;***
11600
11601 ;;;### (autoloads nil "viper-macs" "viper/viper-macs.el" (12720 34143))
11602 ;;; Generated autoloads from viper/viper-macs.el
11603
11604 ;;;***
11605
11606 ;;;***
11607
11608 ;;;### (autoloads nil "viper-mous" "viper/viper-mous.el" (12720 34147))
11609 ;;; Generated autoloads from viper/viper-mous.el
11610
11611 ;;;### (autoloads nil "viper-util" "viper/viper-util.el" (12748 62888))
11612 ;;; Generated autoloads from viper/viper-util.el
11613
11614 ;;;### (autoloads (viper-mode) "viper" "viper/viper.el" (12748 62891))
11615 ;;; Generated autoloads from viper/viper.el
11616
11617 (autoload 'viper-mode "viper" "\
11618 Turn on Viper emulation of Vi." t nil)
11619
11620 (defalias 'vip-mode 'viper-mode)
11621
11622 ;;;***
11623
11624 ;;;***
11625
11626 ;;;### (autoloads nil "tapestry" "vm/tapestry.el" (12677 32694))
11627 ;;; Generated autoloads from vm/tapestry.el
11628
11629 ;;;***
11630
11631 ;;;***
11632
11633 ;;;***
11634
11635 ;;;### (autoloads nil "vm-autoload" "vm/vm-autoload.el" (12861 28947))
11636 ;;; Generated autoloads from vm/vm-autoload.el
11637
11638 ;;;***
11639
11640 ;;;***
11641
11642 ;;;### (autoloads nil "vm-byteopts" "vm/vm-byteopts.el" (12244 51680))
11643 ;;; Generated autoloads from vm/vm-byteopts.el
11644
11645 ;;;### (autoloads nil "vm-delete" "vm/vm-delete.el" (12823 45295))
11646 ;;; Generated autoloads from vm/vm-delete.el
11647
11648 ;;;***
11649
11650 ;;;### (autoloads nil "vm-digest" "vm/vm-digest.el" (12860 15611))
11651 ;;; Generated autoloads from vm/vm-digest.el
11652
11653 ;;;***
11654
11655 ;;;### (autoloads (vm-easy-menu-create-keymaps vm-easy-menu-define) "vm-easymenu" "vm/vm-easymenu.el" (12312 61359))
11656 ;;; Generated autoloads from vm/vm-easymenu.el
11657
11658 (autoload 'vm-easy-menu-define "vm-easymenu" "\
11659 Define a menu bar submenu in maps MAPS, according to MENU.
11660 The menu keymap is stored in symbol SYMBOL, both as its value
11661 and as its function definition. DOC is used as the doc string for SYMBOL.
11662
11663 The first element of MENU must be a string. It is the menu bar item name.
11664 The rest of the elements are menu items.
11665
11666 A menu item is usually a vector of three elements: [NAME CALLBACK ENABLE]
11667
11668 NAME is a string--the menu item name.
11669
11670 CALLBACK is a command to run when the item is chosen,
11671 or a list to evaluate when the item is chosen.
11672
11673 ENABLE is an expression; the item is enabled for selection
11674 whenever this expression's value is non-nil.
11675
11676 Alternatively, a menu item may have the form:
11677
11678 [ NAME CALLBACK [ KEYWORD ARG ] ... ]
11679
11680 Where KEYWORD is one of the symbol defined below.
11681
11682 :keys KEYS
11683
11684 KEYS is a string; a complex keyboard equivalent to this menu item.
11685 This is normally not needed because keyboard equivalents are usually
11686 computed automatically.
11687
11688 :active ENABLE
11689
11690 ENABLE is an expression; the item is enabled for selection
11691 whenever this expression's value is non-nil.
11692
11693 :suffix NAME
11694
11695 NAME is a string; the name of an argument to CALLBACK.
11696
11697 :style
11698
11699 STYLE is a symbol describing the type of menu item. The following are
11700 defined:
11701
11702 toggle: A checkbox.
11703 Currently just prepend the name with the string \"Toggle \".
11704 radio: A radio button.
11705 nil: An ordinary menu item.
11706
11707 :selected SELECTED
11708
11709 SELECTED is an expression; the checkbox or radio button is selected
11710 whenever this expression's value is non-nil.
11711 Currently just disable radio buttons, no effect on checkboxes.
11712
11713 A menu item can be a string. Then that string appears in the menu as
11714 unselectable text. A string consisting solely of hyphens is displayed
11715 as a solid horizontal line.
11716
11717 A menu item can be a list. It is treated as a submenu.
11718 The first element should be the submenu name. That's used as the
11719 menu item in the top-level menu. The cdr of the submenu list
11720 is a list of menu items, as above." nil 'macro)
11721
11722 (autoload 'vm-easy-menu-create-keymaps "vm-easymenu" nil nil nil)
11723
11724 ;;;***
11725
11726 ;;;### (autoloads nil "vm-edit" "vm/vm-edit.el" (12677 32667))
11727 ;;; Generated autoloads from vm/vm-edit.el
11728
11729 ;;;***
11730
11731 ;;;***
11732
11733 ;;;### (autoloads nil "vm-folder" "vm/vm-folder.el" (12823 45297))
11734 ;;; Generated autoloads from vm/vm-folder.el
11735
11736 ;;;### (autoloads nil "vm-license" "vm/vm-license.el" (12677 32672))
11737 ;;; Generated autoloads from vm/vm-license.el
11738
11739 ;;;***
11740
11741 ;;;### (autoloads nil "vm-mark" "vm/vm-mark.el" (12677 32673))
11742 ;;; Generated autoloads from vm/vm-mark.el
11743
11744 ;;;***
11745
11746 ;;;### (autoloads nil "vm-menu" "vm/vm-menu.el" (12677 32677))
11747 ;;; Generated autoloads from vm/vm-menu.el
11748
11749 ;;;***
11750
11751 ;;;### (autoloads nil "vm-message" "vm/vm-message.el" (12677 32674))
11752 ;;; Generated autoloads from vm/vm-message.el
11753
11754 ;;;***
11755
11756 ;;;### (autoloads nil "vm-minibuf" "vm/vm-minibuf.el" (12677 32691))
11757 ;;; Generated autoloads from vm/vm-minibuf.el
11758
11759 ;;;***
11760
11761 ;;;### (autoloads nil "vm-misc" "vm/vm-misc.el" (12748 62836))
11762 ;;; Generated autoloads from vm/vm-misc.el
11763
11764 ;;;***
11765
11766 ;;;### (autoloads nil "vm-motion" "vm/vm-motion.el" (12748 62837))
11767 ;;; Generated autoloads from vm/vm-motion.el
11768
11769 ;;;***
11770
11771 ;;;### (autoloads nil "vm-mouse" "vm/vm-mouse.el" (12677 32692))
11772 ;;; Generated autoloads from vm/vm-mouse.el
11773
11774 ;;;***
11775
11776 ;;;### (autoloads nil "vm-page" "vm/vm-page.el" (12677 32678))
11777 ;;; Generated autoloads from vm/vm-page.el
11778
11779 ;;;***
11780
11781 ;;;### (autoloads nil "vm-pop" "vm/vm-pop.el" (12748 62835))
11782 ;;; Generated autoloads from vm/vm-pop.el
11783
11784 ;;;***
11785
11786 ;;;***
11787
11788 ;;;### (autoloads nil "vm-reply" "vm/vm-reply.el" (12860 15612))
11789 ;;; Generated autoloads from vm/vm-reply.el
11790
11791 ;;;### (autoloads nil "vm-save" "vm/vm-save.el" (12677 32678))
11792 ;;; Generated autoloads from vm/vm-save.el
11793
11794 ;;;***
11795
11796 ;;;### (autoloads nil "vm-search" "vm/vm-search.el" (12749 3230))
11797 ;;; Generated autoloads from vm/vm-search.el
11798
11799 ;;;***
11800
11801 ;;;### (autoloads nil "vm-search18" "vm/vm-search18.el" (12677 32686))
11802 ;;; Generated autoloads from vm/vm-search18.el
11803
11804 ;;;***
11805
11806 ;;;### (autoloads nil "vm-search19" "vm/vm-search19.el" (12677 32690))
11807 ;;; Generated autoloads from vm/vm-search19.el
11808
11809 ;;;***
11810
11811 ;;;### (autoloads nil "vm-sort" "vm/vm-sort.el" (12677 32686))
11812 ;;; Generated autoloads from vm/vm-sort.el
11813
11814 ;;;***
11815
11816 ;;;### (autoloads nil "vm-startup" "vm/vm-startup.el" (12748 62843))
11817 ;;; Generated autoloads from vm/vm-startup.el
11818
11819 ;;;***
11820
11821 ;;;### (autoloads nil "vm-summary" "vm/vm-summary.el" (12748 62838))
11822 ;;; Generated autoloads from vm/vm-summary.el
11823
11824 ;;;***
11825
11826 ;;;### (autoloads nil "vm-thread" "vm/vm-thread.el" (12677 32692))
11827 ;;; Generated autoloads from vm/vm-thread.el
11828
11829 ;;;### (autoloads nil "vm-toolbar" "vm/vm-toolbar.el" (12740 27721))
11830 ;;; Generated autoloads from vm/vm-toolbar.el
11831
11832 ;;;***
11833
11834 ;;;### (autoloads nil "vm-undo" "vm/vm-undo.el" (12677 32680))
11835 ;;; Generated autoloads from vm/vm-undo.el
11836
11837 ;;;***
11838
11839 ;;;***
11840
11841 ;;;***
11842
11843 ;;;### (autoloads nil "vm-vars" "vm/vm-vars.el" (12860 15615))
11844 ;;; Generated autoloads from vm/vm-vars.el
11845
11846 ;;;***
11847
11848 ;;;### (autoloads nil "vm-version" "vm/vm-version.el" (12740 28352))
11849 ;;; Generated autoloads from vm/vm-version.el
11850
11851 ;;;### (autoloads nil "vm-virtual" "vm/vm-virtual.el" (12677 32684))
11852 ;;; Generated autoloads from vm/vm-virtual.el
11853
11854 ;;;***
11855
11856 ;;;### (autoloads nil "vm-window" "vm/vm-window.el" (12748 62841))
11857 ;;; Generated autoloads from vm/vm-window.el
11858
11859 ;;;***
11860
11861 ;;;***
11862
11863 ;;;### (autoloads nil "docomp" "w3/docomp.el" (12823 48898))
11864 ;;; Generated autoloads from w3/docomp.el
11865
11866 ;;;***
11867
11868 ;;;### (autoloads nil "font" "w3/font.el" (12823 48898))
11869 ;;; Generated autoloads from w3/font.el
11870
11871 ;;;***
11872
11873 ;;;### (autoloads nil "images" "w3/images.el" (12823 48898))
11874 ;;; Generated autoloads from w3/images.el
11875
11876 ;;;***
11877
11878 ;;;### (autoloads nil "w3-about" "w3/w3-about.el" (12823 48902))
11879 ;;; Generated autoloads from w3/w3-about.el
11880
11881 ;;;***
11882
11883 ;;;### (autoloads nil "w3-annotat" "w3/w3-annotat.el" (12823 48903))
11884 ;;; Generated autoloads from w3/w3-annotat.el
11885
11886 ;;;***
11887
11888 ;;;### (autoloads nil "w3-auto" "w3/w3-auto.el" (12823 48904))
11889 ;;; Generated autoloads from w3/w3-auto.el
11890
11891 ;;;***
11892
11893 ;;;***
11894
11895 ;;;### (autoloads nil "w3-draw" "w3/w3-draw.el" (12851 23323))
11896 ;;; Generated autoloads from w3/w3-draw.el
11897
11898 ;;;***
11899
11900 ;;;### (autoloads nil "w3-e19" "w3/w3-e19.el" (12823 48899))
11901 ;;; Generated autoloads from w3/w3-e19.el
11902
11903 ;;;***
11904
11905 ;;;### (autoloads nil "w3-emulate" "w3/w3-emulate.el" (12823 48905))
11906 ;;; Generated autoloads from w3/w3-emulate.el
11907
11908 ;;;***
11909
11910 ;;;### (autoloads nil "w3-forms" "w3/w3-forms.el" (12823 48904))
11911 ;;; Generated autoloads from w3/w3-forms.el
11912
11913 ;;;***
11914
11915 ;;;### (autoloads (w3-use-hotlist) "w3-hot" "w3/w3-hot.el" (12823 48904))
11916 ;;; Generated autoloads from w3/w3-hot.el
11917
11918 (autoload 'w3-use-hotlist "w3-hot" "\
11919 Possibly go to a link in your W3/Mosaic hotlist.
11920 This is part of the emacs World Wide Web browser. It will prompt for
11921 one of the items in your 'hotlist'. A hotlist is a list of often
11922 visited or interesting items you have found on the World Wide Web." t nil)
11923
11924 ;;;***
11925
11926 ;;;***
11927
11928 ;;;### (autoloads nil "w3-imap" "w3/w3-imap.el" (12823 48904))
11929 ;;; Generated autoloads from w3/w3-imap.el
11930
11931 ;;;***
11932
11933 ;;;### (autoloads nil "w3-keyword" "w3/w3-keyword.el" (12823 48905))
11934 ;;; Generated autoloads from w3/w3-keyword.el
11935
11936 ;;;***
11937
11938 ;;;### (autoloads nil "w3-latex" "w3/w3-latex.el" (12823 48905))
11939 ;;; Generated autoloads from w3/w3-latex.el
11940
11941 ;;;***
11942
11943 ;;;### (autoloads nil "w3-menu" "w3/w3-menu.el" (12823 48904))
11944 ;;; Generated autoloads from w3/w3-menu.el
11945
11946 ;;;***
11947
11948 ;;;### (autoloads nil "w3-mouse" "w3/w3-mouse.el" (12823 48905))
11949 ;;; Generated autoloads from w3/w3-mouse.el
11950
11951 ;;;***
11952
11953 ;;;### (autoloads nil "w3-mule" "w3/w3-mule.el" (12823 48900))
11954 ;;; Generated autoloads from w3/w3-mule.el
11955
11956 ;;;***
11957
11958 ;;;### (autoloads nil "w3-parse" "w3/w3-parse.el" (12823 48903))
11959 ;;; Generated autoloads from w3/w3-parse.el
11960
11961 ;;;***
11962
11963 ;;;### (autoloads nil "w3-prefs" "w3/w3-prefs.el" (12823 48906))
11964 ;;; Generated autoloads from w3/w3-prefs.el
11965
11966 ;;;***
11967
11968 ;;;### (autoloads nil "w3-print" "w3/w3-print.el" (12823 48904))
11969 ;;; Generated autoloads from w3/w3-print.el
11970
11971 ;;;***
11972
11973 ;;;### (autoloads nil "w3-speak" "w3/w3-speak.el" (12823 48906))
11974 ;;; Generated autoloads from w3/w3-speak.el
11975
11976 ;;;***
11977
11978 ;;;### (autoloads nil "w3-style" "w3/w3-style.el" (12851 23323))
11979 ;;; Generated autoloads from w3/w3-style.el
11980
11981 ;;;***
11982
11983 ;;;### (autoloads nil "w3-sysdp" "w3/w3-sysdp.el" (12823 48901))
11984 ;;; Generated autoloads from w3/w3-sysdp.el
11985
11986 ;;;***
11987
11988 ;;;### (autoloads nil "w3-toolbar" "w3/w3-toolbar.el" (12823 48899))
11989 ;;; Generated autoloads from w3/w3-toolbar.el
11990
11991 ;;;***
11992
11993 ;;;### (autoloads nil "w3-vars" "w3/w3-vars.el" (12851 23316))
11994 ;;; Generated autoloads from w3/w3-vars.el
11995
11996 ;;;***
11997
11998 ;;;### (autoloads nil "w3-widget" "w3/w3-widget.el" (12823 48900))
11999 ;;; Generated autoloads from w3/w3-widget.el
12000
12001 ;;;***
12002
12003 ;;;### (autoloads nil "w3-xem20" "w3/w3-xem20.el" (12823 48736))
12004 ;;; Generated autoloads from w3/w3-xem20.el
12005
12006 ;;;***
12007
12008 ;;;### (autoloads nil "w3-xemac" "w3/w3-xemac.el" (12823 48901))
12009 ;;; Generated autoloads from w3/w3-xemac.el
12010
12011 ;;;***
12012
12013 ;;;### (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" (12851 23319))
12014 ;;; Generated autoloads from w3/w3.el
12015
12016 (autoload 'w3-open-local "w3" "\
12017 Find a local file, and interpret it as a hypertext document.
12018 It will prompt for an existing file or directory, and retrieve it as a
12019 hypertext document. If it is a directory, and url-use-hypertext-dired
12020 is non-nil, then an HTML directory listing is created on the fly.
12021 Otherwise, dired-mode is used to visit the buffer." t nil)
12022
12023 (autoload 'w3-find-file "w3" "\
12024 Find a local file, and interpret it as a hypertext document.
12025 It will prompt for an existing file or directory, and retrieve it as a
12026 hypertext document. If it is a directory, and url-use-hypertext-dired
12027 is non-nil, then an HTML directory listing is created on the fly.
12028 Otherwise, dired-mode is used to visit the buffer." t nil)
12029
12030 (autoload 'w3-fetch-other-frame "w3" "\
12031 Attempt to follow the hypertext reference under point in a new frame.
12032 With prefix-arg P, ignore viewers and dump the link straight
12033 to disk." t nil)
12034
12035 (autoload 'w3-fetch "w3" "\
12036 Retrieve a document over the World Wide Web.
12037 The World Wide Web is a global hypertext system started by CERN in
12038 Switzerland in 1991.
12039
12040 The document should be specified by its fully specified
12041 Uniform Resource Locator. The document will be parsed, printed, or
12042 passed to an external viewer as appropriate. Variable
12043 `mm-mime-info' specifies viewers for particular file types." t nil)
12044
12045 (autoload 'w3-maybe-follow-link-mouse "w3" "\
12046 Maybe follow a hypertext link under point.
12047 If there is no link under point, this will try using
12048 url-get-url-at-point" t nil)
12049
12050 (autoload 'w3-maybe-follow-link "w3" "\
12051 Maybe follow a hypertext link under point.
12052 If there is no link under point, this will try using
12053 url-get-url-at-point" t nil)
12054
12055 (autoload 'w3-follow-url-at-point-other-frame "w3" "\
12056 Follow the URL under PT, defaults to link under (point)" t nil)
12057
12058 (autoload 'w3-follow-url-at-point "w3" "\
12059 Follow the URL under PT, defaults to link under (point)" t nil)
12060
12061 (autoload 'w3-batch-fetch "w3" "\
12062 Fetch all the URLs on the command line and save them to files in
12063 the current directory. The first argument after the -f w3-batch-fetch
12064 on the command line should be a string specifying how to save the
12065 information retrieved. If it is \"html\", then the page will be
12066 unformatted when it is written to disk. If it is \"text\", then the
12067 page will be formatted before it is written to disk. If it is
12068 \"binary\" it will not mess with the file extensions, and just save
12069 the data in raw binary format. If none of those, the default is
12070 \"text\", and the first argument is treated as a normal URL." nil nil)
12071
12072 (autoload 'w3-preview-this-buffer "w3" "\
12073 See what this buffer will look like when its formatted as HTML.
12074 HTML is the HyperText Markup Language used by the World Wide Web to
12075 specify formatting for text. More information on HTML can be found at
12076 ftp.w3.org:/pub/www/doc." t nil)
12077
12078 (autoload 'w3 "w3" "\
12079 Retrieve the default World Wide Web home page.
12080 The World Wide Web is a global hypertext system started by CERN in
12081 Switzerland in 1991.
12082
12083 The home page is specified by the variable w3-default-homepage. The
12084 document should be specified by its fully specified Uniform Resource
12085 Locator. The document will be parsed as HTML (if appropriate) and
12086 displayed in a new buffer." t nil)
12087
12088 (autoload 'w3-do-setup "w3" "\
12089 Do setup - this is to avoid conflict with user settings when W3 is
12090 dumped with emacs." nil nil)
12091
12092 (autoload 'w3-follow-link-other-frame "w3" "\
12093 Attempt to follow the hypertext reference under point in a new frame.
12094 With prefix-arg P, ignore viewers and dump the link straight
12095 to disk." nil nil)
12096
12097 (autoload 'w3-follow-link "w3" "\
12098 Attempt to follow the hypertext reference under point.
12099 With prefix-arg P, ignore viewers and dump the link straight
12100 to disk." t nil)
12101
12102 ;;;***
12103
12104 ;;;***
12105
12106 ;;;### (autoloads nil "widget-edit" "w3/widget-edit.el" (12823 48905))
12107 ;;; Generated autoloads from w3/widget-edit.el
12108
12109 ;;;### (autoloads nil "widget" "w3/widget.el" (12721 20262))
12110 ;;; Generated autoloads from w3/widget.el
12111
12112 ;;;***
12113
12114 ;;;***
12115
12116 ;;;### (autoloads nil "x-compose" "x11/x-compose.el" (12823 45299))
12117 ;;; Generated autoloads from x11/x-compose.el
12118
12119 ;;;### (autoloads nil "x-faces" "x11/x-faces.el" (12701 8661))
12120 ;;; Generated autoloads from x11/x-faces.el
12121
12122 ;;;### (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" (12823 45300))
12123 ;;; Generated autoloads from x11/x-font-menu.el
12124
12125 (defvar font-menu-ignore-scaled-fonts t "\
12126 *If non-nil, then the font menu will try to show only bitmap fonts.")
12127
12128 (defvar font-menu-this-frame-only-p t "\
12129 *If non-nil, then changing the default font from the font menu will only
12130 affect one frame instead of all frames.")
12131
12132 (fset 'install-font-menus 'reset-device-font-menus)
12133
12134 (autoload 'reset-device-font-menus "x-font-menu" "\
12135 Generates the `Font', `Size', and `Weight' submenus for the Options menu.
12136 This is run the first time that a font-menu is needed for each device.
12137 If you don't like the lazy invocation of this function, you can add it to
12138 `create-device-hook' and that will make the font menus respond more quickly
12139 when they are selected for the first time. If you add fonts to your system,
12140 or if you change your font path, you can call this to re-initialize the menus." nil nil)
12141
12142 (autoload 'font-menu-family-constructor "x-font-menu" nil nil nil)
12143
12144 (autoload 'font-menu-size-constructor "x-font-menu" nil nil nil)
12145
12146 (autoload 'font-menu-weight-constructor "x-font-menu" nil nil nil)
12147
12148 ;;;***
12149
12150 ;;;***
12151
12152 ;;;***
12153
12154 ;;;### (autoloads nil "x-init" "x11/x-init.el" (12823 45302))
12155 ;;; Generated autoloads from x11/x-init.el
12156
12157 ;;;### (autoloads nil "x-iso8859-1" "x11/x-iso8859-1.el" (12677 32698))
12158 ;;; Generated autoloads from x11/x-iso8859-1.el
12159
12160 ;;;***
12161
12162 ;;;***
12163
12164 ;;;***
12165
12166 ;;;### (autoloads nil "x-menubar" "x11/x-menubar.el" (12860 15618))
12167 ;;; Generated autoloads from x11/x-menubar.el
12168
12169 ;;;***
12170
12171 ;;;### (autoloads nil "x-misc" "x11/x-misc.el" (12637 27990))
12172 ;;; Generated autoloads from x11/x-misc.el
12173
12174 ;;;### (autoloads nil "x-mouse" "x11/x-mouse.el" (12701 8664))
12175 ;;; Generated autoloads from x11/x-mouse.el
12176
12177 ;;;***
12178
12179 ;;;### (autoloads nil "x-scrollbar" "x11/x-scrollbar.el" (12677 32708))
12180 ;;; Generated autoloads from x11/x-scrollbar.el
12181
12182 ;;;***
12183
12184 ;;;### (autoloads nil "x-select" "x11/x-select.el" (12677 32696))
12185 ;;; Generated autoloads from x11/x-select.el
12186
12187 ;;;### (autoloads nil "x-toolbar" "x11/x-toolbar.el" (12713 64142))
12188 ;;; Generated autoloads from x11/x-toolbar.el
12189
12190 ;;;***
12191
12192 ;;;***
12193
12194 ;;;***
12195
12196 ;;;### (autoloads nil "x-win-sun" "x11/x-win-sun.el" (12823 45303))
12197 ;;; Generated autoloads from x11/x-win-sun.el
12198
12199 ;;;### (autoloads nil "x-win-xfree86" "x11/x-win-xfree86.el" (12677 32709))
12200 ;;; Generated autoloads from x11/x-win-xfree86.el
12201
12202 ;;; Generated autoloads from x11/x-win-sun.el
12203
12204 ;;; Don't make backup versions of this file - most of it is generated
12205 ;;; automatically by autoload.el, and what isn't changes rarely.
317 ;;; Local Variables: 12206 ;;; Local Variables:
12207 ;;; version-control: never
318 ;;; no-byte-compile: t 12208 ;;; no-byte-compile: t
319 ;;; no-update-autoloads: t 12209 ;;; no-update-autoloads: t
320 ;;; End: 12210 ;;; End:
321 ;;; loaddefs.el ends here 12211 ;;; loaddefs.el ends here