Mercurial > hg > xemacs-beta
comparison lisp/prim/loaddefs.el @ 78:c7528f8e288d r20-0b34
Import from CVS: tag r20-0b34
author | cvs |
---|---|
date | Mon, 13 Aug 2007 09:05:42 +0200 |
parents | c0c698873ce1 |
children | 0132846995bd |
comparison
equal
deleted
inserted
replaced
77:6cb4f478e7bc | 78:c7528f8e288d |
---|---|
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 | |
94 | 95 |
95 ;;; This code also was not generated by autoload.el, because VM goes out | 96 ;;; This code also was not generated by autoload.el, because VM goes out |
96 ;;; of its way to be perverse. | 97 ;;; of its way to be perverse. |
97 | 98 |
98 (autoload 'vm "vm" | 99 (autoload 'vm "vm" |
306 "\ | 307 "\ |
307 Send a mail message from within View Mail, or from without." | 308 Send a mail message from within View Mail, or from without." |
308 t) | 309 t) |
309 | 310 |
310 | 311 |
311 | 312 ;;; Load in generated autoloads (made by autoload.el). |
312 ;;; Generated autoloads follow (made by autoload.el). | 313 (condition-case nil |
313 | 314 (load "auto-autoloads") |
314 ;;; To sort them, execute the following after narrowing | 315 (file-error nil)) |
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 ;;;*** | |
326 | |
327 ;;;*** | |
328 | 316 |
329 ;;;### (autoloads nil "byte-optimize" "bytecomp/byte-optimize.el" (12984 29530)) | |
330 ;;; Generated autoloads from bytecomp/byte-optimize.el | |
331 | |
332 ;;;*** | |
333 | |
334 ;;;### (autoloads nil "bytecomp-runtime" "bytecomp/bytecomp-runtime.el" (12984 29530)) | |
335 ;;; Generated autoloads from bytecomp/bytecomp-runtime.el | |
336 | |
337 ;;;### (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" (12984 29530)) | |
338 ;;; Generated autoloads from bytecomp/bytecomp.el | |
339 | |
340 (autoload 'byte-force-recompile "bytecomp" "\ | |
341 Recompile every `.el' file in DIRECTORY that already has a `.elc' file. | |
342 Files in subdirectories of DIRECTORY are processed also." t nil) | |
343 | |
344 (autoload 'byte-recompile-directory "bytecomp" "\ | |
345 Recompile every `.el' file in DIRECTORY that needs recompilation. | |
346 This is if a `.elc' file exists but is older than the `.el' file. | |
347 Files in subdirectories of DIRECTORY are processed also unless argument | |
348 NORECURSION is non-nil. | |
349 | |
350 If the `.elc' file does not exist, normally the `.el' file is *not* compiled. | |
351 But a prefix argument (optional second arg) means ask user, | |
352 for each such `.el' file, whether to compile it. Prefix argument 0 means | |
353 don't ask and compile the file anyway. | |
354 | |
355 A nonzero prefix argument also means ask about each subdirectory. | |
356 | |
357 If the fourth argument FORCE is non-nil, | |
358 recompile every `.el' file that already has a `.elc' file." t nil) | |
359 | |
360 (autoload 'byte-recompile-file "bytecomp" "\ | |
361 Recompile a file of Lisp code named FILENAME if it needs recompilation. | |
362 This is if the `.elc' file exists but is older than the `.el' file. | |
363 | |
364 If the `.elc' file does not exist, normally the `.el' file is *not* | |
365 compiled. But a prefix argument (optional second arg) means ask user | |
366 whether to compile it. Prefix argument 0 don't ask and recompile anyway." t nil) | |
367 | |
368 (autoload 'byte-compile-file "bytecomp" "\ | |
369 Compile a file of Lisp code named FILENAME into a file of byte code. | |
370 The output file's name is made by appending `c' to the end of FILENAME. | |
371 With prefix arg (noninteractively: 2nd arg), load the file after compiling." t nil) | |
372 | |
373 (autoload 'compile-defun "bytecomp" "\ | |
374 Compile and evaluate the current top-level form. | |
375 Print the result in the minibuffer. | |
376 With argument, insert value in current buffer after the form." t nil) | |
377 | |
378 (autoload 'byte-compile "bytecomp" "\ | |
379 If FORM is a symbol, byte-compile its function definition. | |
380 If FORM is a lambda or a macro, byte-compile it as a function." nil nil) | |
381 | |
382 (autoload 'byte-compile-sexp "bytecomp" "\ | |
383 Compile and return SEXP." nil nil) | |
384 | |
385 (autoload 'display-call-tree "bytecomp" "\ | |
386 Display a call graph of a specified file. | |
387 This lists which functions have been called, what functions called | |
388 them, and what functions they call. The list includes all functions | |
389 whose definitions have been compiled in this Emacs session, as well as | |
390 all functions called by those functions. | |
391 | |
392 The call graph does not include macros, inline functions, or | |
393 primitives that the byte-code interpreter knows about directly (eq, | |
394 cons, etc.). | |
395 | |
396 The call tree also lists those functions which are not known to be called | |
397 \(that is, to which no calls have been compiled), and which cannot be | |
398 invoked interactively." t nil) | |
399 | |
400 (autoload 'batch-byte-compile "bytecomp" "\ | |
401 Run `byte-compile-file' on the files remaining on the command line. | |
402 Use this from the command line, with `-batch'; | |
403 it won't work in an interactive Emacs. | |
404 Each file is processed even if an error occurred previously. | |
405 For example, invoke \"emacs -batch -f batch-byte-compile $emacs/ ~/*.el\"" nil nil) | |
406 | |
407 (autoload 'batch-byte-recompile-directory-norecurse "bytecomp" "\ | |
408 Same as `batch-byte-recompile-directory' but without recursion." nil nil) | |
409 | |
410 (autoload 'batch-byte-recompile-directory "bytecomp" "\ | |
411 Runs `byte-recompile-directory' on the dirs remaining on the command line. | |
412 Must be used only with `-batch', and kills Emacs on completion. | |
413 For example, invoke `xemacs -batch -f batch-byte-recompile-directory .'." nil nil) | |
414 | |
415 ;;;*** | |
416 | |
417 ;;;### (autoloads (disassemble) "disass" "bytecomp/disass.el" (12984 29530)) | |
418 ;;; Generated autoloads from bytecomp/disass.el | |
419 | |
420 (autoload 'disassemble "disass" "\ | |
421 Print disassembled code for OBJECT in (optional) BUFFER. | |
422 OBJECT can be a symbol defined as a function, or a function itself | |
423 \(a lambda expression or a compiled-function object). | |
424 If OBJECT is not already compiled, we compile it, but do not | |
425 redefine OBJECT if it is a symbol." t nil) | |
426 | |
427 ;;;*** | |
428 | |
429 ;;;*** | |
430 | |
431 ;;;*** | |
432 | |
433 ;;;### (autoloads nil "appt" "calendar/appt.el" (12984 29530)) | |
434 ;;; Generated autoloads from calendar/appt.el | |
435 | |
436 ;;;*** | |
437 | |
438 ;;;### (autoloads nil "cal-dst" "calendar/cal-dst.el" (12984 29530)) | |
439 ;;; Generated autoloads from calendar/cal-dst.el | |
440 | |
441 (put 'calendar-daylight-savings-starts 'risky-local-variable t) | |
442 | |
443 (put 'calendar-daylight-savings-ends 'risky-local-variable t) | |
444 | |
445 ;;;*** | |
446 | |
447 ;;;### (autoloads nil "cal-french" "calendar/cal-french.el" (12984 29530)) | |
448 ;;; Generated autoloads from calendar/cal-french.el | |
449 | |
450 ;;;*** | |
451 | |
452 ;;;### (autoloads nil "cal-mayan" "calendar/cal-mayan.el" (12984 29530)) | |
453 ;;; Generated autoloads from calendar/cal-mayan.el | |
454 | |
455 ;;;*** | |
456 | |
457 ;;;### (autoloads nil "cal-x" "calendar/cal-x.el" (12984 29531)) | |
458 ;;; Generated autoloads from calendar/cal-x.el | |
459 | |
460 (defvar calendar-setup 'one-frame "\ | |
461 The frame set up of the calendar. | |
462 The choices are `one-frame' (calendar and diary together in one separate, | |
463 dediciated frame) or `two-frames' (calendar and diary in separate, dedicated | |
464 frames); with any other value the current frame is used.") | |
465 | |
466 ;;;*** | |
467 | |
468 ;;;*** | |
469 | |
470 ;;;### (autoloads nil "cal-xemacs" "calendar/cal-xemacs.el" (12984 29531)) | |
471 ;;; Generated autoloads from calendar/cal-xemacs.el | |
472 | |
473 ;;;### (autoloads (list-yahrzeit-dates calendar) "calendar" "calendar/calendar.el" (12988 19656)) | |
474 ;;; Generated autoloads from calendar/calendar.el | |
475 | |
476 (defvar calendar-week-start-day 0 "\ | |
477 *The day of the week on which a week in the calendar begins. | |
478 0 means Sunday (default), 1 means Monday, and so on.") | |
479 | |
480 (defvar calendar-offset 0 "\ | |
481 *The offset of the principal month from the center of the calendar window. | |
482 0 means the principal month is in the center (default), -1 means on the left, | |
483 +1 means on the right. Larger (or smaller) values push the principal month off | |
484 the screen.") | |
485 | |
486 (defvar view-diary-entries-initially nil "\ | |
487 *Non-nil means display current date's diary entries on entry. | |
488 The diary is displayed in another window when the calendar is first displayed, | |
489 if the current date is visible. The number of days of diary entries displayed | |
490 is governed by the variable `number-of-diary-entries'.") | |
491 | |
492 (defvar number-of-diary-entries 1 "\ | |
493 *Specifies how many days of diary entries are to be displayed initially. | |
494 This variable affects the diary display when the command M-x diary is used, | |
495 or if the value of the variable `view-diary-entries-initially' is t. For | |
496 example, if the default value 1 is used, then only the current day's diary | |
497 entries will be displayed. If the value 2 is used, then both the current | |
498 day's and the next day's entries will be displayed. | |
499 | |
500 The value can also be a vector such as [0 2 2 2 2 4 1]; this value | |
501 says to display no diary entries on Sunday, the display the entries | |
502 for the current date and the day after on Monday through Thursday, | |
503 display Friday through Monday's entries on Friday, and display only | |
504 Saturday's entries on Saturday. | |
505 | |
506 This variable does not affect the diary display with the `d' command | |
507 from the calendar; in that case, the prefix argument controls the | |
508 number of days of diary entries displayed.") | |
509 | |
510 (defvar mark-diary-entries-in-calendar nil "\ | |
511 *Non-nil means mark dates with diary entries, in the calendar window. | |
512 The marking symbol is specified by the variable `diary-entry-marker'.") | |
513 | |
514 (defvar view-calendar-holidays-initially nil "\ | |
515 *Non-nil means display holidays for current three month period on entry. | |
516 The holidays are displayed in another window when the calendar is first | |
517 displayed.") | |
518 | |
519 (defvar mark-holidays-in-calendar nil "\ | |
520 *Non-nil means mark dates of holidays in the calendar window. | |
521 The marking symbol is specified by the variable `calendar-holiday-marker'.") | |
522 | |
523 (defvar all-hebrew-calendar-holidays nil "\ | |
524 *If nil, show only major holidays from the Hebrew calendar. | |
525 This means only those Jewish holidays that appear on secular calendars. | |
526 | |
527 If t, show all the holidays that would appear in a complete Hebrew calendar.") | |
528 | |
529 (defvar all-christian-calendar-holidays nil "\ | |
530 *If nil, show only major holidays from the Christian calendar. | |
531 This means only those Christian holidays that appear on secular calendars. | |
532 | |
533 If t, show all the holidays that would appear in a complete Christian | |
534 calendar.") | |
535 | |
536 (defvar all-islamic-calendar-holidays nil "\ | |
537 *If nil, show only major holidays from the Islamic calendar. | |
538 This means only those Islamic holidays that appear on secular calendars. | |
539 | |
540 If t, show all the holidays that would appear in a complete Islamic | |
541 calendar.") | |
542 | |
543 (defvar calendar-load-hook nil "\ | |
544 *List of functions to be called after the calendar is first loaded. | |
545 This is the place to add key bindings to `calendar-mode-map'.") | |
546 | |
547 (defvar initial-calendar-window-hook nil "\ | |
548 *List of functions to be called when the calendar window is first opened. | |
549 The functions invoked are called after the calendar window is opened, but | |
550 once opened is never called again. Leaving the calendar with the `q' command | |
551 and reentering it will cause these functions to be called again.") | |
552 | |
553 (defvar today-visible-calendar-hook nil "\ | |
554 *List of functions called whenever the current date is visible. | |
555 This can be used, for example, to replace today's date with asterisks; a | |
556 function `calendar-star-date' is included for this purpose: | |
557 (setq today-visible-calendar-hook 'calendar-star-date) | |
558 It can also be used to mark the current date with `calendar-today-marker'; | |
559 a function is also provided for this: | |
560 (setq today-visible-calendar-hook 'calendar-mark-today) | |
561 | |
562 The corresponding variable `today-invisible-calendar-hook' is the list of | |
563 functions called when the calendar function was called when the current | |
564 date is not visible in the window. | |
565 | |
566 Other than the use of the provided functions, the changing of any | |
567 characters in the calendar buffer by the hooks may cause the failure of the | |
568 functions that move by days and weeks.") | |
569 | |
570 (defvar today-invisible-calendar-hook nil "\ | |
571 *List of functions called whenever the current date is not visible. | |
572 | |
573 The corresponding variable `today-visible-calendar-hook' is the list of | |
574 functions called when the calendar function was called when the current | |
575 date is visible in the window. | |
576 | |
577 Other than the use of the provided functions, the changing of any | |
578 characters in the calendar buffer by the hooks may cause the failure of the | |
579 functions that move by days and weeks.") | |
580 | |
581 (defvar diary-file "~/diary" "\ | |
582 *Name of the file in which one's personal diary of dates is kept. | |
583 | |
584 The file's entries are lines in any of the forms | |
585 | |
586 MONTH/DAY | |
587 MONTH/DAY/YEAR | |
588 MONTHNAME DAY | |
589 MONTHNAME DAY, YEAR | |
590 DAYNAME | |
591 | |
592 at the beginning of the line; the remainder of the line is the diary entry | |
593 string for that date. MONTH and DAY are one or two digit numbers, YEAR is | |
594 a number and may be written in full or abbreviated to the final two digits. | |
595 If the date does not contain a year, it is generic and applies to any year. | |
596 DAYNAME entries apply to any date on which is on that day of the week. | |
597 MONTHNAME and DAYNAME can be spelled in full, abbreviated to three | |
598 characters (with or without a period), capitalized or not. Any of DAY, | |
599 MONTH, or MONTHNAME, YEAR can be `*' which matches any day, month, or year, | |
600 respectively. | |
601 | |
602 The European style (in which the day precedes the month) can be used | |
603 instead, if you execute `european-calendar' when in the calendar, or set | |
604 `european-calendar-style' to t in your .emacs file. The European forms are | |
605 | |
606 DAY/MONTH | |
607 DAY/MONTH/YEAR | |
608 DAY MONTHNAME | |
609 DAY MONTHNAME YEAR | |
610 DAYNAME | |
611 | |
612 To revert to the default American style from the European style, execute | |
613 `american-calendar' in the calendar. | |
614 | |
615 A diary entry can be preceded by the character | |
616 `diary-nonmarking-symbol' (ordinarily `&') to make that entry | |
617 nonmarking--that is, it will not be marked on dates in the calendar | |
618 window but will appear in a diary window. | |
619 | |
620 Multiline diary entries are made by indenting lines after the first with | |
621 either a TAB or one or more spaces. | |
622 | |
623 Lines not in one the above formats are ignored. Here are some sample diary | |
624 entries (in the default American style): | |
625 | |
626 12/22/1988 Twentieth wedding anniversary!! | |
627 &1/1. Happy New Year! | |
628 10/22 Ruth's birthday. | |
629 21: Payday | |
630 Tuesday--weekly meeting with grad students at 10am | |
631 Supowit, Shen, Bitner, and Kapoor to attend. | |
632 1/13/89 Friday the thirteenth!! | |
633 &thu 4pm squash game with Lloyd. | |
634 mar 16 Dad's birthday | |
635 April 15, 1989 Income tax due. | |
636 &* 15 time cards due. | |
637 | |
638 If the first line of a diary entry consists only of the date or day name with | |
639 no trailing blanks or punctuation, then that line is not displayed in the | |
640 diary window; only the continuation lines is shown. For example, the | |
641 single diary entry | |
642 | |
643 02/11/1989 | |
644 Bill Blattner visits Princeton today | |
645 2pm Cognitive Studies Committee meeting | |
646 2:30-5:30 Lizzie at Lawrenceville for `Group Initiative' | |
647 4:00pm Jamie Tappenden | |
648 7:30pm Dinner at George and Ed's for Alan Ryan | |
649 7:30-10:00pm dance at Stewart Country Day School | |
650 | |
651 will appear in the diary window without the date line at the beginning. This | |
652 facility allows the diary window to look neater, but can cause confusion if | |
653 used with more than one day's entries displayed. | |
654 | |
655 Diary entries can be based on Lisp sexps. For example, the diary entry | |
656 | |
657 %%(diary-block 11 1 1990 11 10 1990) Vacation | |
658 | |
659 causes the diary entry \"Vacation\" to appear from November 1 through November | |
660 10, 1990. Other functions available are `diary-float', `diary-anniversary', | |
661 `diary-cyclic', `diary-day-of-year', `diary-iso-date', `diary-french-date', | |
662 `diary-hebrew-date', `diary-islamic-date', `diary-mayan-date', | |
663 `diary-yahrzeit', `diary-sunrise-sunset', `diary-phases-of-moon', | |
664 `diary-parasha', `diary-omer', `diary-rosh-hodesh', and | |
665 `diary-sabbath-candles'. See the documentation for the function | |
666 `list-sexp-diary-entries' for more details. | |
667 | |
668 Diary entries based on the Hebrew and/or the Islamic calendar are also | |
669 possible, but because these are somewhat slow, they are ignored | |
670 unless you set the `nongregorian-diary-listing-hook' and the | |
671 `nongregorian-diary-marking-hook' appropriately. See the documentation | |
672 for these functions for details. | |
673 | |
674 Diary files can contain directives to include the contents of other files; for | |
675 details, see the documentation for the variable `list-diary-entries-hook'.") | |
676 | |
677 (defvar diary-nonmarking-symbol "&" "\ | |
678 *Symbol indicating that a diary entry is not to be marked in the calendar.") | |
679 | |
680 (defvar hebrew-diary-entry-symbol "H" "\ | |
681 *Symbol indicating a diary entry according to the Hebrew calendar.") | |
682 | |
683 (defvar islamic-diary-entry-symbol "I" "\ | |
684 *Symbol indicating a diary entry according to the Islamic calendar.") | |
685 | |
686 (defvar diary-include-string "#include" "\ | |
687 *The string indicating inclusion of another file of diary entries. | |
688 See the documentation for the function `include-other-diary-files'.") | |
689 | |
690 (defvar sexp-diary-entry-symbol "%%" "\ | |
691 *The string used to indicate a sexp diary entry in diary-file. | |
692 See the documentation for the function `list-sexp-diary-entries'.") | |
693 | |
694 (defvar abbreviated-calendar-year t "\ | |
695 *Interpret a two-digit year DD in a diary entry as either 19DD or 20DD. | |
696 For the Gregorian calendar; similarly for the Hebrew and Islamic calendars. | |
697 If this variable is nil, years must be written in full.") | |
698 | |
699 (defvar european-calendar-style nil "\ | |
700 *Use the European style of dates in the diary and in any displays. | |
701 If this variable is t, a date 1/2/1990 would be interpreted as February 1, | |
702 1990. The accepted European date styles are | |
703 | |
704 DAY/MONTH | |
705 DAY/MONTH/YEAR | |
706 DAY MONTHNAME | |
707 DAY MONTHNAME YEAR | |
708 DAYNAME | |
709 | |
710 Names can be capitalized or not, written in full, or abbreviated to three | |
711 characters with or without a period.") | |
712 | |
713 (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")) "\ | |
714 *List of pseudo-patterns describing the American patterns of date used. | |
715 See the documentation of `diary-date-forms' for an explanation.") | |
716 | |
717 (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")) "\ | |
718 *List of pseudo-patterns describing the European patterns of date used. | |
719 See the documentation of `diary-date-forms' for an explanation.") | |
720 | |
721 (defvar european-calendar-display-form '((if dayname (concat dayname ", ")) day " " monthname " " year) "\ | |
722 *Pseudo-pattern governing the way a date appears in the European style. | |
723 See the documentation of calendar-date-display-form for an explanation.") | |
724 | |
725 (defvar american-calendar-display-form '((if dayname (concat dayname ", ")) monthname " " day ", " year) "\ | |
726 *Pseudo-pattern governing the way a date appears in the American style. | |
727 See the documentation of `calendar-date-display-form' for an explanation.") | |
728 | |
729 (defvar print-diary-entries-hook 'lpr-buffer "\ | |
730 *List of functions called after a temporary diary buffer is prepared. | |
731 The buffer shows only the diary entries currently visible in the diary | |
732 buffer. The default just does the printing. Other uses might include, for | |
733 example, rearranging the lines into order by day and time, saving the buffer | |
734 instead of deleting it, or changing the function used to do the printing.") | |
735 | |
736 (defvar list-diary-entries-hook nil "\ | |
737 *List of functions called after diary file is culled for relevant entries. | |
738 It is to be used for diary entries that are not found in the diary file. | |
739 | |
740 A function `include-other-diary-files' is provided for use as the value of | |
741 this hook. This function enables you to use shared diary files together | |
742 with your own. The files included are specified in the diary file by lines | |
743 of the form | |
744 | |
745 #include \"filename\" | |
746 | |
747 This is recursive; that is, #include directives in files thus included are | |
748 obeyed. You can change the \"#include\" to some other string by changing | |
749 the variable `diary-include-string'. When you use `include-other-diary-files' | |
750 as part of the list-diary-entries-hook, you will probably also want to use the | |
751 function `mark-included-diary-files' as part of `mark-diary-entries-hook'. | |
752 | |
753 For example, you could use | |
754 | |
755 (setq list-diary-entries-hook | |
756 '(include-other-diary-files sort-diary-entries)) | |
757 (setq diary-display-hook 'fancy-diary-display) | |
758 | |
759 in your `.emacs' file to cause the fancy diary buffer to be displayed with | |
760 diary entries from various included files, each day's entries sorted into | |
761 lexicographic order.") | |
762 | |
763 (defvar diary-hook nil "\ | |
764 *List of functions called after the display of the diary. | |
765 Can be used for appointment notification.") | |
766 | |
767 (defvar diary-display-hook nil "\ | |
768 *List of functions that handle the display of the diary. | |
769 If nil (the default), `simple-diary-display' is used. Use `ignore' for no | |
770 diary display. | |
771 | |
772 Ordinarily, this just displays the diary buffer (with holidays indicated in | |
773 the mode line), if there are any relevant entries. At the time these | |
774 functions are called, the variable `diary-entries-list' is a list, in order | |
775 by date, of all relevant diary entries in the form of ((MONTH DAY YEAR) | |
776 STRING), where string is the diary entry for the given date. This can be | |
777 used, for example, a different buffer for display (perhaps combined with | |
778 holidays), or produce hard copy output. | |
779 | |
780 A function `fancy-diary-display' is provided as an alternative | |
781 choice for this hook; this function prepares a special noneditable diary | |
782 buffer with the relevant diary entries that has neat day-by-day arrangement | |
783 with headings. The fancy diary buffer will show the holidays unless the | |
784 variable `holidays-in-diary-buffer' is set to nil. Ordinarily, the fancy | |
785 diary buffer will not show days for which there are no diary entries, even | |
786 if that day is a holiday; if you want such days to be shown in the fancy | |
787 diary buffer, set the variable `diary-list-include-blanks' to t.") | |
788 | |
789 (defvar nongregorian-diary-listing-hook nil "\ | |
790 *List of functions called for listing diary file and included files. | |
791 As the files are processed for diary entries, these functions are used to cull | |
792 relevant entries. You can use either or both of `list-hebrew-diary-entries' | |
793 and `list-islamic-diary-entries'. The documentation for these functions | |
794 describes the style of such diary entries.") | |
795 | |
796 (defvar mark-diary-entries-hook nil "\ | |
797 *List of functions called after marking diary entries in the calendar. | |
798 | |
799 A function `mark-included-diary-files' is also provided for use as the | |
800 mark-diary-entries-hook; it enables you to use shared diary files together | |
801 with your own. The files included are specified in the diary file by lines | |
802 of the form | |
803 #include \"filename\" | |
804 This is recursive; that is, #include directives in files thus included are | |
805 obeyed. You can change the \"#include\" to some other string by changing the | |
806 variable `diary-include-string'. When you use `mark-included-diary-files' as | |
807 part of the mark-diary-entries-hook, you will probably also want to use the | |
808 function `include-other-diary-files' as part of `list-diary-entries-hook'.") | |
809 | |
810 (defvar nongregorian-diary-marking-hook nil "\ | |
811 *List of functions called for marking diary file and included files. | |
812 As the files are processed for diary entries, these functions are used to cull | |
813 relevant entries. You can use either or both of `mark-hebrew-diary-entries' | |
814 and `mark-islamic-diary-entries'. The documentation for these functions | |
815 describes the style of such diary entries.") | |
816 | |
817 (defvar diary-list-include-blanks nil "\ | |
818 *If nil, do not include days with no diary entry in the list of diary entries. | |
819 Such days will then not be shown in the fancy diary buffer, even if they | |
820 are holidays.") | |
821 | |
822 (defvar holidays-in-diary-buffer t "\ | |
823 *Non-nil means include holidays in the diary display. | |
824 The holidays appear in the mode line of the diary buffer, or in the | |
825 fancy diary buffer next to the date. This slows down the diary functions | |
826 somewhat; setting it to nil makes the diary display faster.") | |
827 | |
828 (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")) "\ | |
829 *General holidays. Default value is for the United States. | |
830 See the documentation for `calendar-holidays' for details.") | |
831 | |
832 (put 'general-holidays 'risky-local-variable t) | |
833 | |
834 (defvar local-holidays nil "\ | |
835 *Local holidays. | |
836 See the documentation for `calendar-holidays' for details.") | |
837 | |
838 (put 'local-holidays 'risky-local-variable t) | |
839 | |
840 (defvar other-holidays nil "\ | |
841 *User defined holidays. | |
842 See the documentation for `calendar-holidays' for details.") | |
843 | |
844 (put 'other-holidays 'risky-local-variable t) | |
845 | |
846 (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)")))) | |
847 | |
848 (put 'hebrew-holidays-1 'risky-local-variable t) | |
849 | |
850 (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")))) | |
851 | |
852 (put 'hebrew-holidays-2 'risky-local-variable t) | |
853 | |
854 (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")))) | |
855 | |
856 (put 'hebrew-holidays-3 'risky-local-variable t) | |
857 | |
858 (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)))) | |
859 | |
860 (put 'hebrew-holidays-4 'risky-local-variable t) | |
861 | |
862 (defvar hebrew-holidays (append hebrew-holidays-1 hebrew-holidays-2 hebrew-holidays-3 hebrew-holidays-4) "\ | |
863 *Jewish holidays. | |
864 See the documentation for `calendar-holidays' for details.") | |
865 | |
866 (put 'hebrew-holidays 'risky-local-variable t) | |
867 | |
868 (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"))) "\ | |
869 *Christian holidays. | |
870 See the documentation for `calendar-holidays' for details.") | |
871 | |
872 (put 'christian-holidays 'risky-local-variable t) | |
873 | |
874 (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"))) "\ | |
875 *Islamic holidays. | |
876 See the documentation for `calendar-holidays' for details.") | |
877 | |
878 (put 'islamic-holidays 'risky-local-variable t) | |
879 | |
880 (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) "")))) "\ | |
881 *Sun-related holidays. | |
882 See the documentation for `calendar-holidays' for details.") | |
883 | |
884 (put 'solar-holidays 'risky-local-variable t) | |
885 | |
886 (defvar calendar-holidays (append general-holidays local-holidays other-holidays christian-holidays hebrew-holidays islamic-holidays solar-holidays) "\ | |
887 *List of notable days for the command M-x holidays. | |
888 | |
889 Additional holidays are easy to add to the list, just put them in the list | |
890 `other-holidays' in your .emacs file. Similarly, by setting any of | |
891 `general-holidays', `local-holidays' `christian-holidays', `hebrew-holidays', | |
892 `islamic-holidays', or `solar-holidays' to nil in your .emacs file, you can | |
893 eliminate unwanted categories of holidays. The intention is that (in the US) | |
894 `local-holidays' be set in site-init.el and `other-holidays' be set by the | |
895 user. | |
896 | |
897 Entries on the list are expressions that return (possibly empty) lists of | |
898 items of the form ((month day year) string) of a holiday in the in the | |
899 three-month period centered around `displayed-month' of `displayed-year'. | |
900 Several basic functions are provided for this purpose: | |
901 | |
902 (holiday-fixed MONTH DAY STRING) is a fixed date on the Gregorian calendar | |
903 (holiday-float MONTH DAYNAME K STRING &optional day) is the Kth DAYNAME in | |
904 MONTH on the Gregorian calendar (0 for Sunday, | |
905 etc.); K<0 means count back from the end of the | |
906 month. An optional parameter DAY means the Kth | |
907 DAYNAME after/before MONTH DAY. | |
908 (holiday-hebrew MONTH DAY STRING) a fixed date on the Hebrew calendar | |
909 (holiday-islamic MONTH DAY STRING) a fixed date on the Islamic calendar | |
910 (holiday-julian MONTH DAY STRING) a fixed date on the Julian calendar | |
911 (holiday-sexp SEXP STRING) SEXP is a Gregorian-date-valued expression | |
912 in the variable `year'; if it evaluates to | |
913 a visible date, that's the holiday; if it | |
914 evaluates to nil, there's no holiday. STRING | |
915 is an expression in the variable `date'. | |
916 | |
917 For example, to add Bastille Day, celebrated in France on July 14, add | |
918 | |
919 (holiday-fixed 7 14 \"Bastille Day\") | |
920 | |
921 to the list. To add Hurricane Supplication Day, celebrated in the Virgin | |
922 Islands on the fourth Monday in August, add | |
923 | |
924 (holiday-float 8 1 4 \"Hurricane Supplication Day\") | |
925 | |
926 to the list (the last Monday would be specified with `-1' instead of `4'). | |
927 To add the last day of Hanukkah to the list, use | |
928 | |
929 (holiday-hebrew 10 2 \"Last day of Hanukkah\") | |
930 | |
931 since the Hebrew months are numbered with 1 starting from Nisan, while to | |
932 add the Islamic feast celebrating Mohammed's birthday use | |
933 | |
934 (holiday-islamic 3 12 \"Mohammed's Birthday\") | |
935 | |
936 since the Islamic months are numbered from 1 starting with Muharram. To | |
937 add Thomas Jefferson's birthday, April 2, 1743 (Julian), use | |
938 | |
939 (holiday-julian 4 2 \"Jefferson's Birthday\") | |
940 | |
941 To include a holiday conditionally, use the sexp form or a conditional. For | |
942 example, to include American presidential elections, which occur on the first | |
943 Tuesday after the first Monday in November of years divisible by 4, add | |
944 | |
945 (holiday-sexp | |
946 (if (zerop (% year 4)) | |
947 (calendar-gregorian-from-absolute | |
948 (1+ (calendar-dayname-on-or-before | |
949 1 (+ 6 (calendar-absolute-from-gregorian | |
950 (list 11 1 year))))))) | |
951 \"US Presidential Election\") | |
952 | |
953 or | |
954 | |
955 (if (zerop (% displayed-year 4)) | |
956 (holiday-fixed 11 | |
957 (extract-calendar-day | |
958 (calendar-gregorian-from-absolute | |
959 (1+ (calendar-dayname-on-or-before | |
960 1 (+ 6 (calendar-absolute-from-gregorian | |
961 (list 11 1 displayed-year))))))) | |
962 \"US Presidential Election\")) | |
963 | |
964 to the list. To include the phases of the moon, add | |
965 | |
966 (lunar-phases) | |
967 | |
968 to the holiday list, where `lunar-phases' is an Emacs-Lisp function that | |
969 you've written to return a (possibly empty) list of the relevant VISIBLE dates | |
970 with descriptive strings such as | |
971 | |
972 (((2 6 1989) \"New Moon\") ((2 12 1989) \"First Quarter Moon\") ... ).") | |
973 | |
974 (put 'calendar-holidays 'risky-local-variable t) | |
975 | |
976 (autoload 'calendar "calendar" "\ | |
977 Display a three-month calendar in another window. | |
978 The three months appear side by side, with the current month in the middle | |
979 surrounded by the previous and next months. The cursor is put on today's date. | |
980 | |
981 If called with an optional prefix argument, prompts for month and year. | |
982 | |
983 This function is suitable for execution in a .emacs file; appropriate setting | |
984 of the variable `view-diary-entries-initially' will cause the diary entries for | |
985 the current date to be displayed in another window. The value of the variable | |
986 `number-of-diary-entries' controls the number of days of diary entries | |
987 displayed upon initial display of the calendar. | |
988 | |
989 An optional prefix argument ARG causes the calendar displayed to be ARG | |
990 months in the future if ARG is positive or in the past if ARG is negative; | |
991 in this case the cursor goes on the first day of the month. | |
992 | |
993 Once in the calendar window, future or past months can be moved into view. | |
994 Arbitrary months can be displayed, or the calendar can be scrolled forward | |
995 or backward. | |
996 | |
997 The cursor can be moved forward or backward by one day, one week, one month, | |
998 or one year. All of these commands take prefix arguments which, when negative, | |
999 cause movement in the opposite direction. For convenience, the digit keys | |
1000 and the minus sign are automatically prefixes. The window is replotted as | |
1001 necessary to display the desired date. | |
1002 | |
1003 Diary entries can be marked on the calendar or displayed in another window. | |
1004 | |
1005 Use M-x describe-mode for details of the key bindings in the calendar window. | |
1006 | |
1007 The Gregorian calendar is assumed. | |
1008 | |
1009 After loading the calendar, the hooks given by the variable | |
1010 `calendar-load-hook' are run. This is the place to add key bindings to the | |
1011 calendar-mode-map. | |
1012 | |
1013 After preparing the calendar window initially, the hooks given by the variable | |
1014 `initial-calendar-window-hook' are run. | |
1015 | |
1016 The hooks given by the variable `today-visible-calendar-hook' are run | |
1017 everytime the calendar window gets scrolled, if the current date is visible | |
1018 in the window. If it is not visible, the hooks given by the variable | |
1019 `today-invisible-calendar-hook' are run. Thus, for example, setting | |
1020 `today-visible-calendar-hook' to 'calendar-star-date will cause today's date | |
1021 to be replaced by asterisks to highlight it whenever it is in the window." t nil) | |
1022 | |
1023 (autoload 'list-yahrzeit-dates "calendar" "\ | |
1024 List Yahrzeit dates for *Gregorian* DEATH-DATE from START-YEAR to END-YEAR. | |
1025 When called interactively from the calendar window, the date of death is taken | |
1026 from the cursor position." t nil) | |
1027 | |
1028 ;;;*** | |
1029 | |
1030 ;;;*** | |
1031 | |
1032 ;;;*** | |
1033 | |
1034 ;;;### (autoloads nil "diary-ins" "calendar/diary-ins.el" (12984 29531)) | |
1035 ;;; Generated autoloads from calendar/diary-ins.el | |
1036 | |
1037 ;;;### (autoloads (diary) "diary-lib" "calendar/diary-lib.el" (12984 29531)) | |
1038 ;;; Generated autoloads from calendar/diary-lib.el | |
1039 | |
1040 (autoload 'diary "diary-lib" "\ | |
1041 Generate the diary window for ARG days starting with the current date. | |
1042 If no argument is provided, the number of days of diary entries is governed | |
1043 by the variable `number-of-diary-entries'. This function is suitable for | |
1044 execution in a `.emacs' file." t nil) | |
1045 | |
1046 ;;;*** | |
1047 | |
1048 ;;;### (autoloads (holidays) "holidays" "calendar/holidays.el" (12984 29530)) | |
1049 ;;; Generated autoloads from calendar/holidays.el | |
1050 | |
1051 (autoload 'holidays "holidays" "\ | |
1052 Display the holidays for last month, this month, and next month. | |
1053 If called with an optional prefix argument, prompts for month and year. | |
1054 | |
1055 This function is suitable for execution in a .emacs file." t nil) | |
1056 | |
1057 ;;;*** | |
1058 | |
1059 ;;;### (autoloads (phases-of-moon) "lunar" "calendar/lunar.el" (12984 29530)) | |
1060 ;;; Generated autoloads from calendar/lunar.el | |
1061 | |
1062 (autoload 'phases-of-moon "lunar" "\ | |
1063 Display the quarters of the moon for last month, this month, and next month. | |
1064 If called with an optional prefix argument, prompts for month and year. | |
1065 | |
1066 This function is suitable for execution in a .emacs file." t nil) | |
1067 | |
1068 ;;;*** | |
1069 | |
1070 ;;;### (autoloads (solar-equinoxes-solstices sunrise-sunset) "solar" "calendar/solar.el" (12984 29531)) | |
1071 ;;; Generated autoloads from calendar/solar.el | |
1072 | |
1073 (defvar calendar-time-display-form '(12-hours ":" minutes am-pm (if time-zone " (") time-zone (if time-zone ")")) "\ | |
1074 *The pseudo-pattern that governs the way a time of day is formatted. | |
1075 | |
1076 A pseudo-pattern is a list of expressions that can involve the keywords | |
1077 `12-hours', `24-hours', and `minutes', all numbers in string form, | |
1078 and `am-pm' and `time-zone', both alphabetic strings. | |
1079 | |
1080 For example, the form | |
1081 | |
1082 '(24-hours \":\" minutes | |
1083 (if time-zone \" (\") time-zone (if time-zone \")\")) | |
1084 | |
1085 would give military-style times like `21:07 (UTC)'.") | |
1086 | |
1087 (defvar calendar-latitude nil "\ | |
1088 *Latitude of `calendar-location-name' in degrees. | |
1089 | |
1090 The value can be either a decimal fraction (one place of accuracy is | |
1091 sufficient), + north, - south, such as 40.7 for New York City, or the value | |
1092 can be a vector [degrees minutes north/south] such as [40 50 north] for New | |
1093 York City. | |
1094 | |
1095 This variable should be set in site-local.el.") | |
1096 | |
1097 (defvar calendar-longitude nil "\ | |
1098 *Longitude of `calendar-location-name' in degrees. | |
1099 | |
1100 The value can be either a decimal fraction (one place of accuracy is | |
1101 sufficient), + east, - west, such as -73.9 for New York City, or the value | |
1102 can be a vector [degrees minutes east/west] such as [73 55 west] for New | |
1103 York City. | |
1104 | |
1105 This variable should be set in site-local.el.") | |
1106 | |
1107 (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")))) "\ | |
1108 *Expression evaluating to name of `calendar-longitude', calendar-latitude'. | |
1109 For example, \"New York City\". Default value is just the latitude, longitude | |
1110 pair. | |
1111 | |
1112 This variable should be set in site-local.el.") | |
1113 | |
1114 (autoload 'sunrise-sunset "solar" "\ | |
1115 Local time of sunrise and sunset for today. Accurate to +/- 2 minutes. | |
1116 If called with an optional prefix argument, prompt for date. | |
1117 | |
1118 If called with an optional double prefix argument, prompt for longitude, | |
1119 latitude, time zone, and date, and always use standard time. | |
1120 | |
1121 This function is suitable for execution in a .emacs file." t nil) | |
1122 | |
1123 (autoload 'solar-equinoxes-solstices "solar" "\ | |
1124 Date and time of equinoxes and solstices, if visible in the calendar window. | |
1125 Requires floating point." nil nil) | |
1126 | |
1127 ;;;*** | |
1128 | |
1129 ;;;*** | |
1130 | |
1131 ;;;*** | |
1132 | |
1133 ;;;*** | |
1134 | |
1135 ;;;### (autoloads nil "cl-autoload" "cl/cl-autoload.el" (12984 29592)) | |
1136 ;;; Generated autoloads from cl/cl-autoload.el | |
1137 | |
1138 ;;;*** | |
1139 | |
1140 ;;;### (autoloads nil "cl-compat" "cl/cl-compat.el" (12984 29591)) | |
1141 ;;; Generated autoloads from cl/cl-compat.el | |
1142 | |
1143 ;;;*** | |
1144 | |
1145 ;;;*** | |
1146 | |
1147 ;;;*** | |
1148 | |
1149 ;;;### (autoloads nil "cl-defs" "cl/cl-defs.el" (12984 29592)) | |
1150 ;;; Generated autoloads from cl/cl-defs.el | |
1151 | |
1152 ;;;*** | |
1153 | |
1154 ;;;### (autoloads nil "cl-extra" "cl/cl-extra.el" (12984 29591)) | |
1155 ;;; Generated autoloads from cl/cl-extra.el | |
1156 | |
1157 ;;;*** | |
1158 | |
1159 ;;;### (autoloads nil "cl-macs" "cl/cl-macs.el" (12984 29591)) | |
1160 ;;; Generated autoloads from cl/cl-macs.el | |
1161 | |
1162 ;;;*** | |
1163 | |
1164 ;;;### (autoloads nil "cl-seq" "cl/cl-seq.el" (12984 29592)) | |
1165 ;;; Generated autoloads from cl/cl-seq.el | |
1166 | |
1167 ;;;*** | |
1168 | |
1169 ;;;### (autoloads nil "cl" "cl/cl.el" (12984 29591)) | |
1170 ;;; Generated autoloads from cl/cl.el | |
1171 | |
1172 ;;;*** | |
1173 | |
1174 ;;;### (autoloads nil "background" "comint/background.el" (12984 29968)) | |
1175 ;;; Generated autoloads from comint/background.el | |
1176 | |
1177 ;;;*** | |
1178 | |
1179 ;;;### (autoloads (comint-dynamic-list-completions comint-dynamic-complete comint-run make-comint) "comint" "comint/comint.el" (12984 29531)) | |
1180 ;;; Generated autoloads from comint/comint.el | |
1181 | |
1182 (autoload 'make-comint "comint" "\ | |
1183 Make a comint process NAME in a buffer, running PROGRAM. | |
1184 The name of the buffer is made by surrounding NAME with `*'s. | |
1185 PROGRAM should be either a string denoting an executable program to create | |
1186 via `start-process', or a cons pair of the form (HOST . SERVICE) denoting a TCP | |
1187 connection to be opened via `open-network-stream'. If there is already a | |
1188 running process in that buffer, it is not restarted. Optional third arg | |
1189 STARTFILE is the name of a file to send the contents of to the process. | |
1190 | |
1191 If PROGRAM is a string, any more args are arguments to PROGRAM." nil nil) | |
1192 | |
1193 (autoload 'comint-run "comint" "\ | |
1194 Run PROGRAM in a comint buffer and switch to it. | |
1195 The buffer name is made by surrounding the file name of PROGRAM with `*'s. | |
1196 The file name is used to make a symbol name, such as `comint-sh-hook', and any | |
1197 hooks on this symbol are run in the buffer. | |
1198 See `make-comint' and `comint-exec'." t nil) | |
1199 | |
1200 (autoload 'comint-dynamic-complete "comint" "\ | |
1201 Dynamically perform completion at point. | |
1202 Calls the functions in `comint-dynamic-complete-functions' to perform | |
1203 completion until a function returns non-nil, at which point completion is | |
1204 assumed to have occurred." t nil) | |
1205 | |
1206 (autoload 'comint-dynamic-list-completions "comint" "\ | |
1207 List in help buffer sorted COMPLETIONS. | |
1208 Typing SPC flushes the help buffer." nil nil) | |
1209 | |
1210 ;;;*** | |
1211 | |
1212 ;;;*** | |
1213 | |
1214 ;;;### (autoloads nil "dbx" "comint/dbx.el" (12984 29968)) | |
1215 ;;; Generated autoloads from comint/dbx.el | |
1216 | |
1217 ;;;### (autoloads (gdb) "gdb" "comint/gdb.el" (12984 29968)) | |
1218 ;;; Generated autoloads from comint/gdb.el | |
1219 | |
1220 (defvar gdb-command-name "gdb" "\ | |
1221 Pathname for executing gdb.") | |
1222 | |
1223 (autoload 'gdb "gdb" "\ | |
1224 Run gdb on program FILE in buffer *gdb-FILE*. | |
1225 The directory containing FILE becomes the initial working directory | |
1226 and source-file directory for GDB. If you wish to change this, use | |
1227 the GDB commands `cd DIR' and `directory'." t nil) | |
1228 | |
1229 ;;;*** | |
1230 | |
1231 ;;;### (autoloads (gdbsrc) "gdbsrc" "comint/gdbsrc.el" (12984 29532)) | |
1232 ;;; Generated autoloads from comint/gdbsrc.el | |
1233 | |
1234 (autoload 'gdbsrc "gdbsrc" "\ | |
1235 Activates a gdb session with gdbsrc-mode turned on. A numeric prefix | |
1236 argument can be used to specify a running process to attach, and a non-numeric | |
1237 prefix argument will cause you to be prompted for a core file to debug." t nil) | |
1238 | |
1239 ;;;*** | |
1240 | |
1241 ;;;### (autoloads (perldb xdb dbx sdb) "gud" "comint/gud.el" (12984 29532)) | |
1242 ;;; Generated autoloads from comint/gud.el | |
1243 | |
1244 (autoload 'sdb "gud" "\ | |
1245 Run sdb on program FILE in buffer *gud-FILE*. | |
1246 The directory containing FILE becomes the initial working directory | |
1247 and source-file directory for your debugger." t nil) | |
1248 | |
1249 (autoload 'dbx "gud" "\ | |
1250 Run dbx on program FILE in buffer *gud-FILE*. | |
1251 The directory containing FILE becomes the initial working directory | |
1252 and source-file directory for your debugger." t nil) | |
1253 | |
1254 (autoload 'xdb "gud" "\ | |
1255 Run xdb on program FILE in buffer *gud-FILE*. | |
1256 The directory containing FILE becomes the initial working directory | |
1257 and source-file directory for your debugger. | |
1258 | |
1259 You can set the variable 'gud-xdb-directories' to a list of program source | |
1260 directories if your program contains sources from more than one directory." t nil) | |
1261 | |
1262 (autoload 'perldb "gud" "\ | |
1263 Run perldb on program FILE in buffer *gud-FILE*. | |
1264 The directory containing FILE becomes the initial working directory | |
1265 and source-file directory for your debugger." t nil) | |
1266 | |
1267 ;;;*** | |
1268 | |
1269 ;;;*** | |
1270 | |
1271 ;;;*** | |
1272 | |
1273 ;;;### (autoloads nil "history" "comint/history.el" (12984 29969)) | |
1274 ;;; Generated autoloads from comint/history.el | |
1275 | |
1276 ;;;### (autoloads nil "inf-lisp" "comint/inf-lisp.el" (12984 29532)) | |
1277 ;;; Generated autoloads from comint/inf-lisp.el | |
1278 | |
1279 (add-hook 'same-window-buffer-names "*inferior-lisp*") | |
1280 | |
1281 ;;;*** | |
1282 | |
1283 ;;;*** | |
1284 | |
1285 ;;;*** | |
1286 | |
1287 ;;;### (autoloads nil "kermit" "comint/kermit.el" (12984 29532)) | |
1288 ;;; Generated autoloads from comint/kermit.el | |
1289 | |
1290 ;;;### (autoloads (rlogin) "rlogin" "comint/rlogin.el" (12984 29532)) | |
1291 ;;; Generated autoloads from comint/rlogin.el | |
1292 | |
1293 (add-hook 'same-window-regexps "^\\*rlogin-.*\\*\\(\\|<[0-9]+>\\)") | |
1294 | |
1295 (autoload 'rlogin "rlogin" "\ | |
1296 Open a network login connection to HOST via the `rlogin' program. | |
1297 Input is sent line-at-a-time to the remote connection. | |
1298 | |
1299 Communication with the remote host is recorded in a buffer `*rlogin-HOST*' | |
1300 \(or `*rlogin-USER@HOST*' if the remote username differs). | |
1301 If a prefix argument is given and the buffer `*rlogin-HOST*' already exists, | |
1302 a new buffer with a different connection will be made. | |
1303 | |
1304 When called from a program, if the optional second argument is a string or | |
1305 buffer, it names the buffer to use. | |
1306 | |
1307 The variable `rlogin-program' contains the name of the actual program to | |
1308 run. It can be a relative or absolute path. | |
1309 | |
1310 The variable `rlogin-explicit-args' is a list of arguments to give to | |
1311 the rlogin when starting. They are added after any arguments given in | |
1312 INPUT-ARGS. | |
1313 | |
1314 If the default value of `rlogin-directory-tracking-mode' is t, then the | |
1315 default directory in that buffer is set to a remote (FTP) file name to | |
1316 access your home directory on the remote machine. Occasionally this causes | |
1317 an error, if you cannot access the home directory on that machine. This | |
1318 error is harmless as long as you don't try to use that default directory. | |
1319 | |
1320 If `rlogin-directory-tracking-mode' is neither t nor nil, then the default | |
1321 directory is initially set up to your (local) home directory. | |
1322 This is useful if the remote machine and your local machine | |
1323 share the same files via NFS. This is the default. | |
1324 | |
1325 If you wish to change directory tracking styles during a session, use the | |
1326 function `rlogin-directory-tracking-mode' rather than simply setting the | |
1327 variable." t nil) | |
1328 | |
1329 ;;;*** | |
1330 | |
1331 ;;;### (autoloads (shell) "shell" "comint/shell.el" (12984 29531)) | |
1332 ;;; Generated autoloads from comint/shell.el | |
1333 | |
1334 (defvar shell-prompt-pattern (purecopy "^[^#$%>\n]*[#$%>] *") "\ | |
1335 Regexp to match prompts in the inferior shell. | |
1336 Defaults to \"^[^#$%>\\n]*[#$%>] *\", which works pretty well. | |
1337 This variable is used to initialise `comint-prompt-regexp' in the | |
1338 shell buffer. | |
1339 | |
1340 The pattern should probably not match more than one line. If it does, | |
1341 shell-mode may become confused trying to distinguish prompt from input | |
1342 on lines which don't start with a prompt. | |
1343 | |
1344 This is a fine thing to set in your `.emacs' file.") | |
1345 | |
1346 (autoload 'shell "shell" "\ | |
1347 Run an inferior shell, with I/O through buffer *shell*. | |
1348 If buffer exists but shell process is not running, make new shell. | |
1349 If buffer exists and shell process is running, | |
1350 just switch to buffer `*shell*'. | |
1351 Program used comes from variable `explicit-shell-file-name', | |
1352 or (if that is nil) from the ESHELL environment variable, | |
1353 or else from SHELL if there is no ESHELL. | |
1354 If a file `~/.emacs_SHELLNAME' exists, it is given as initial input | |
1355 (Note that this may lose due to a timing error if the shell | |
1356 discards input when it starts up.) | |
1357 The buffer is put in Shell mode, giving commands for sending input | |
1358 and controlling the subjobs of the shell. See `shell-mode'. | |
1359 See also the variable `shell-prompt-pattern'. | |
1360 | |
1361 The shell file name (sans directories) is used to make a symbol name | |
1362 such as `explicit-csh-args'. If that symbol is a variable, | |
1363 its value is used as a list of arguments when invoking the shell. | |
1364 Otherwise, one argument `-i' is passed to the shell. | |
1365 | |
1366 \(Type \\[describe-mode] in the shell buffer for a list of commands.)" t nil) | |
1367 | |
1368 (add-hook 'same-window-buffer-names "*shell*") | |
1369 | |
1370 ;;;*** | |
1371 | |
1372 ;;;### (autoloads (rsh telnet) "telnet" "comint/telnet.el" (12988 19660)) | |
1373 ;;; Generated autoloads from comint/telnet.el | |
1374 | |
1375 (add-hook 'same-window-regexps "\\*telnet-.*\\*\\(\\|<[0-9]+>\\)") | |
1376 | |
1377 (autoload 'telnet "telnet" "\ | |
1378 Open a network login connection to host named HOST (a string). | |
1379 With a prefix argument, prompts for the port name or number as well. | |
1380 Communication with HOST is recorded in a buffer `*HOST-telnet*'. | |
1381 Normally input is edited in Emacs and sent a line at a time. | |
1382 See also `\\[rsh]'." t nil) | |
1383 | |
1384 (add-hook 'same-window-regexps "\\*rsh-[^-]*\\*\\(\\|<[0-9]*>\\)") | |
1385 | |
1386 (autoload 'rsh "telnet" "\ | |
1387 Open a network login connection to host named HOST (a string). | |
1388 Communication with HOST is recorded in a buffer `*rsh-HOST*'. | |
1389 Normally input is edited in Emacs and sent a line at a time. | |
1390 See also `\\[telnet]'." t nil) | |
1391 | |
1392 ;;;*** | |
1393 | |
1394 ;;;### (autoloads (ange-ftp-hook-function) "ange-ftp" "dired/ange-ftp.el" (12995 25439)) | |
1395 ;;; Generated autoloads from dired/ange-ftp.el | |
1396 | |
1397 (defvar ange-ftp-path-format '("^/\\(\\([^@/:]*\\)@\\)?\\([^@/:]*\\):\\(.*\\)" 3 2 4) "\ | |
1398 *Format of a fully expanded remote pathname. This is a cons | |
1399 \(REGEXP . (HOST USER PATH)), where REGEXP is a regular expression matching | |
1400 the full remote pathname, and HOST, USER, and PATH are the numbers of | |
1401 parenthesized expressions in REGEXP for the components (in that order).") | |
1402 | |
1403 (autoload 'ange-ftp-hook-function "ange-ftp" nil nil nil) | |
1404 | |
1405 (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))) | |
1406 | |
1407 ;;;*** | |
1408 | |
1409 ;;;*** | |
1410 | |
1411 ;;;### (autoloads nil "default-dir" "dired/default-dir.el" (12995 3076)) | |
1412 ;;; Generated autoloads from dired/default-dir.el | |
1413 | |
1414 (defvar default-directory-function nil "\ | |
1415 A function to call to compute the default-directory for the current buffer. | |
1416 If this is nil, the function default-directory will return the value of the | |
1417 variable default-directory. | |
1418 Buffer local.") | |
1419 | |
1420 ;;;*** | |
1421 | |
1422 ;;;*** | |
1423 | |
1424 ;;;### (autoloads nil "dired-cd" "dired/dired-cd.el" (12995 25439)) | |
1425 ;;; Generated autoloads from dired/dired-cd.el | |
1426 | |
1427 ;;;*** | |
1428 | |
1429 ;;;*** | |
1430 | |
1431 ;;;*** | |
1432 | |
1433 ;;;### (autoloads (dired-make-permissions-interactive) "dired-chmod" "dired/dired-chmod.el" (12995 25439)) | |
1434 ;;; Generated autoloads from dired/dired-chmod.el | |
1435 | |
1436 (autoload 'dired-make-permissions-interactive "dired-chmod" nil nil nil) | |
1437 | |
1438 ;;;*** | |
1439 | |
1440 ;;;### (autoloads nil "dired-cmpr" "dired/dired-cmpr.el" (12995 3082)) | |
1441 ;;; Generated autoloads from dired/dired-cmpr.el | |
1442 | |
1443 ;;;*** | |
1444 | |
1445 ;;;### (autoloads (dired-cwd-make-magic) "dired-cwd" "dired/dired-cwd.el" (12995 25439)) | |
1446 ;;; Generated autoloads from dired/dired-cwd.el | |
1447 | |
1448 (autoload 'dired-cwd-make-magic "dired-cwd" "\ | |
1449 Modify COMMAND so that it's working directory is the current dired directory. | |
1450 This works by binding `default-directory' to `(default-directory)'s value. | |
1451 See also function `default-directory'." t nil) | |
1452 | |
1453 ;;;*** | |
1454 | |
1455 ;;;### (autoloads nil "dired-diff" "dired/dired-diff.el" (12995 3082)) | |
1456 ;;; Generated autoloads from dired/dired-diff.el | |
1457 | |
1458 ;;;*** | |
1459 | |
1460 ;;;### (autoloads nil "dired-fsf" "dired/dired-fsf.el" (12995 3082)) | |
1461 ;;; Generated autoloads from dired/dired-fsf.el | |
1462 | |
1463 ;;;*** | |
1464 | |
1465 ;;;### (autoloads nil "dired-grep" "dired/dired-grep.el" (12995 3082)) | |
1466 ;;; Generated autoloads from dired/dired-grep.el | |
1467 | |
1468 ;;;*** | |
1469 | |
1470 ;;;### (autoloads nil "dired-guess" "dired/dired-guess.el" (12995 25439)) | |
1471 ;;; Generated autoloads from dired/dired-guess.el | |
1472 | |
1473 ;;;*** | |
1474 | |
1475 ;;;### (autoloads nil "dired-help" "dired/dired-help.el" (12995 3082)) | |
1476 ;;; Generated autoloads from dired/dired-help.el | |
1477 | |
1478 ;;;*** | |
1479 | |
1480 ;;;### (autoloads nil "dired-link" "dired/dired-link.el" (12995 25439)) | |
1481 ;;; Generated autoloads from dired/dired-link.el | |
1482 | |
1483 ;;;*** | |
1484 | |
1485 ;;;### (autoloads nil "dired-lisp" "dired/dired-lisp.el" (12995 25439)) | |
1486 ;;; Generated autoloads from dired/dired-lisp.el | |
1487 | |
1488 ;;;*** | |
1489 | |
1490 ;;;### (autoloads nil "dired-mob" "dired/dired-mob.el" (12995 3082)) | |
1491 ;;; Generated autoloads from dired/dired-mob.el | |
1492 | |
1493 ;;;*** | |
1494 | |
1495 ;;;### (autoloads nil "dired-mule" "dired/dired-mule.el" (12995 3082)) | |
1496 ;;; Generated autoloads from dired/dired-mule.el | |
1497 | |
1498 ;;;*** | |
1499 | |
1500 ;;;### (autoloads nil "dired-nstd" "dired/dired-nstd.el" (12995 25439)) | |
1501 ;;; Generated autoloads from dired/dired-nstd.el | |
1502 | |
1503 ;;;*** | |
1504 | |
1505 ;;;### (autoloads nil "dired-oas" "dired/dired-oas.el" (12995 3082)) | |
1506 ;;; Generated autoloads from dired/dired-oas.el | |
1507 | |
1508 ;;;*** | |
1509 | |
1510 ;;;### (autoloads nil "dired-rgxp" "dired/dired-rgxp.el" (12995 3082)) | |
1511 ;;; Generated autoloads from dired/dired-rgxp.el | |
1512 | |
1513 ;;;*** | |
1514 | |
1515 ;;;### (autoloads nil "dired-sex" "dired/dired-sex.el" (12995 3082)) | |
1516 ;;; Generated autoloads from dired/dired-sex.el | |
1517 | |
1518 ;;;*** | |
1519 | |
1520 ;;;### (autoloads nil "dired-trns" "dired/dired-trns.el" (12995 25440)) | |
1521 ;;; Generated autoloads from dired/dired-trns.el | |
1522 | |
1523 ;;;*** | |
1524 | |
1525 ;;;### (autoloads nil "dired-uu" "dired/dired-uu.el" (12995 3082)) | |
1526 ;;; Generated autoloads from dired/dired-uu.el | |
1527 | |
1528 ;;;*** | |
1529 | |
1530 ;;;### (autoloads nil "dired-vir" "dired/dired-vir.el" (12995 3082)) | |
1531 ;;; Generated autoloads from dired/dired-vir.el | |
1532 | |
1533 ;;;*** | |
1534 | |
1535 ;;;### (autoloads nil "dired-vms" "dired/dired-vms.el" (12995 25440)) | |
1536 ;;; Generated autoloads from dired/dired-vms.el | |
1537 | |
1538 ;;;*** | |
1539 | |
1540 ;;;### (autoloads nil "dired-xemacs-highlight" "dired/dired-xemacs-highlight.el" (12995 25440)) | |
1541 ;;; Generated autoloads from dired/dired-xemacs-highlight.el | |
1542 | |
1543 ;;;### (autoloads (dired-do-rename-list dired-do-rename-numeric) "dired-num" "dired/dired-num.el" (12995 25439)) | |
1544 ;;; Generated autoloads from dired/dired-num.el | |
1545 | |
1546 (autoload 'dired-do-rename-numeric "dired-num" "\ | |
1547 Rename all marked (or next ARG) files using numbers. | |
1548 You are prompted for a format string, e.g \"part_%d_of_8\", and a starting | |
1549 number, e.g. 1. If there are 8 marked files, this example will rename them to | |
1550 | |
1551 part_1_of_8 | |
1552 part_2_of_8 | |
1553 ... | |
1554 part_8_of_8" t nil) | |
1555 | |
1556 (autoload 'dired-do-rename-list "dired-num" "\ | |
1557 Rename all marked (or next ARG) files using elements from LIST. | |
1558 You are prompted for a format string, e.g \"x_%s\", and the list, | |
1559 e.g. '(foo bar zod). This example will rename the marked files to | |
1560 | |
1561 x_foo | |
1562 x_bar | |
1563 x_zod | |
1564 | |
1565 It is an error if LIST has not as many elements as there are files." t nil) | |
1566 | |
1567 ;;;*** | |
1568 | |
1569 ;;;### (autoloads (dired-rcs-mark-rcs-files dired-rcs-mark-rcs-locked-files) "dired-rcs" "dired/dired-rcs.el" (12995 25439)) | |
1570 ;;; Generated autoloads from dired/dired-rcs.el | |
1571 | |
1572 (autoload 'dired-rcs-mark-rcs-locked-files "dired-rcs" "\ | |
1573 Mark all files that are under RCS control and RCS-locked. | |
1574 With prefix argument, unflag all those files. | |
1575 Mentions RCS files for which a working file was not found in this buffer. | |
1576 Type \\[dired-why] to see them again." t nil) | |
1577 | |
1578 (autoload 'dired-rcs-mark-rcs-files "dired-rcs" "\ | |
1579 Mark all files that are under RCS control. | |
1580 With prefix argument, unflag all those files. | |
1581 Mentions RCS files for which a working file was not found in this buffer. | |
1582 Type \\[dired-why] to see them again." t nil) | |
1583 | |
1584 ;;;*** | |
1585 | |
1586 ;;;### (autoloads (dired-extra-startup) "dired-x" "dired/dired-x.el" (12995 25440)) | |
1587 ;;; Generated autoloads from dired/dired-x.el | |
1588 | |
1589 (autoload 'dired-extra-startup "dired-x" "\ | |
1590 Automatically put on dired-mode-hook to get extra dired features: | |
1591 \\<dired-mode-map> | |
1592 \\[dired-vm] -- VM on folder | |
1593 \\[dired-rmail] -- Rmail on folder | |
1594 \\[dired-do-insert-subdir] -- insert all marked subdirs | |
1595 \\[dired-do-find-file] -- visit all marked files simultaneously | |
1596 \\[dired-set-marker-char], \\[dired-restore-marker-char] -- change and display dired-marker-char dynamically. | |
1597 \\[dired-omit-toggle] -- toggle omitting of files | |
1598 \\[dired-mark-sexp] -- mark by lisp expression | |
1599 \\[dired-do-unmark] -- replace existing marker with another. | |
1600 \\[dired-mark-rcs-files] -- mark all RCS controlled files | |
1601 \\[dired-mark-files-compilation-buffer] -- mark compilation files | |
1602 \\[dired-copy-filename-as-kill] -- copy the file or subdir names into the kill ring. | |
1603 You can feed it to other commands using \\[yank]. | |
1604 | |
1605 For more features, see variables | |
1606 | |
1607 dired-omit-files | |
1608 dired-omit-extenstions | |
1609 dired-dangerous-shell-command | |
1610 dired-mark-keys | |
1611 dired-local-variables-file | |
1612 dired-find-subdir | |
1613 dired-guess-have-gnutar | |
1614 dired-auto-shell-command-alist | |
1615 | |
1616 See also functions | |
1617 | |
1618 dired-sort-on-size | |
1619 dired-do-relsymlink | |
1620 dired-flag-extension | |
1621 dired-virtual | |
1622 dired-jump-back | |
1623 dired-jump-back-other-window | |
1624 " t nil) | |
1625 | |
1626 ;;;*** | |
1627 | |
1628 ;;;*** | |
1629 | |
1630 ;;;*** | |
1631 | |
1632 ;;;### (autoloads nil "dired-xemacs-menu" "dired/dired-xemacs-menu.el" (12995 25440)) | |
1633 ;;; Generated autoloads from dired/dired-xemacs-menu.el | |
1634 | |
1635 ;;;### (autoloads nil "dired-xemacs" "dired/dired-xemacs.el" (12995 3082)) | |
1636 ;;; Generated autoloads from dired/dired-xemacs.el | |
1637 | |
1638 ;;;*** | |
1639 | |
1640 ;;;### (autoloads nil "dired-xy" "dired/dired-xy.el" (12995 3082)) | |
1641 ;;; Generated autoloads from dired/dired-xy.el | |
1642 | |
1643 ;;;### (autoloads (dired-noselect dired-other-frame dired-other-window dired) "dired" "dired/dired.el" (12995 25440)) | |
1644 ;;; Generated autoloads from dired/dired.el | |
1645 | |
1646 (defvar dired-listing-switches (purecopy "-al") "\ | |
1647 *Switches passed to ls for dired. MUST contain the `l' option. | |
1648 Can contain even `F', `b', `i' and `s'.") | |
1649 | |
1650 (defvar dired-chown-program (purecopy (if (memq system-type '(dgux-unix hpux usg-unix-v silicon-graphics-unix irix)) "chown" "/etc/chown")) "\ | |
1651 *Name of chown command (usully `chown' or `/etc/chown').") | |
1652 | |
1653 (defvar dired-ls-program (purecopy "ls") "\ | |
1654 *Absolute or relative name of the ls program used by dired.") | |
1655 | |
1656 (defvar dired-ls-F-marks-symlinks t "\ | |
1657 *Informs dired about how ls -lF marks symbolic links. | |
1658 Set this to t if `dired-ls-program' with -lF marks the symbolic link | |
1659 itself with a trailing @ (usually the case under Ultrix). | |
1660 | |
1661 Example: if `ln -s foo bar; ls -F bar' gives `bar -> foo', set it to | |
1662 nil, if it gives `bar@ -> foo', set it to t. | |
1663 | |
1664 Dired checks if there is really a @ appended. Thus, if you have a | |
1665 marking ls program on one host and a non-marking on another host, and | |
1666 don't care about symbolic links which really end in a @, you can | |
1667 always set this variable to t.") | |
1668 | |
1669 (defvar dired-trivial-filenames (purecopy "^\\.\\.?$\\|^#") "\ | |
1670 *Regexp of files to skip when moving point to the first file of a new directory listing. | |
1671 Nil means move to the subdir line, t means move to first file.") | |
1672 | |
1673 (defvar dired-keep-marker-move t "\ | |
1674 If t, moved marked files are marked if their originals were. | |
1675 If a character, those files (marked or not) are marked with that character.") | |
1676 | |
1677 (defvar dired-keep-marker-copy ?C "\ | |
1678 If t, copied files are marked if their source files were. | |
1679 If a character, those files are always marked with that character.") | |
1680 | |
1681 (defvar dired-keep-marker-hardlink ?H "\ | |
1682 If t, hard-linked files are marked if the linked-to files were. | |
1683 If a character, those files are always marked with that character.") | |
1684 | |
1685 (defvar dired-keep-marker-symlink ?Y "\ | |
1686 If t, symlinked marked files are marked if the linked-to files were. | |
1687 If a character, those files are always marked with that character.") | |
1688 | |
1689 (defvar dired-dwim-target nil "\ | |
1690 *If non-nil, dired tries to guess a default target directory: | |
1691 If there is a dired buffer displayed in the next window, use | |
1692 its current subdir, instead of the current subdir of this dired | |
1693 buffer. | |
1694 | |
1695 The target is used in the prompt for file copy, move etc.") | |
1696 | |
1697 (defvar dired-copy-preserve-time nil "\ | |
1698 *If non-nil, Dired preserves the last-modified time in a file copy. | |
1699 \(This works on only some systems.)\\<dired-mode-map> | |
1700 Use `\\[dired-do-copy]' with a zero prefix argument to toggle its value.") | |
1701 | |
1702 (define-key ctl-x-map "d" 'dired) | |
1703 | |
1704 (autoload 'dired "dired" "\ | |
1705 \"Edit\" directory DIRNAME--delete, rename, print, etc. some files in it. | |
1706 With an optional prefix argument you can specify the ls SWITCHES that are used. | |
1707 Dired displays a list of files in DIRNAME (which may also have | |
1708 shell wildcards appended to select certain files). | |
1709 You can move around in it with the usual commands. | |
1710 You can flag files for deletion with \\<dired-mode-map>\\[dired-flag-file-deleted] and then delete them by | |
1711 typing \\[dired-do-deletions]. | |
1712 Type \\[describe-mode] after entering dired for more info. | |
1713 | |
1714 If DIRNAME is already in a dired buffer, that buffer is used without refresh." t nil) | |
1715 | |
1716 (define-key ctl-x-4-map "d" 'dired-other-window) | |
1717 | |
1718 (autoload 'dired-other-window "dired" "\ | |
1719 \"Edit\" directory DIRNAME. Like `dired' but selects in another window." t nil) | |
1720 | |
1721 (define-key ctl-x-5-map "d" 'dired-other-frame) | |
1722 | |
1723 (autoload 'dired-other-frame "dired" "\ | |
1724 \"Edit\" directory DIRNAME. Like `dired' but makes a new frame." t nil) | |
1725 | |
1726 (autoload 'dired-noselect "dired" "\ | |
1727 Like `dired' but returns the dired buffer as value, does not select it." nil nil) | |
1728 | |
1729 ;;;*** | |
1730 | |
1731 ;;;*** | |
1732 | |
1733 ;;;### (autoloads nil "efs-18" "dired/efs-18.el" (12995 3098)) | |
1734 ;;; Generated autoloads from dired/efs-18.el | |
1735 | |
1736 ;;;*** | |
1737 | |
1738 ;;;### (autoloads nil "efs-19.23" "dired/efs-19.23.el" (12995 3098)) | |
1739 ;;; Generated autoloads from dired/efs-19.23.el | |
1740 | |
1741 ;;;*** | |
1742 | |
1743 ;;;### (autoloads nil "efs-19" "dired/efs-19.el" (12995 3098)) | |
1744 ;;; Generated autoloads from dired/efs-19.el | |
1745 | |
1746 ;;;*** | |
1747 | |
1748 ;;;### (autoloads nil "efs-auto" "dired/efs-auto.el" (12995 3098)) | |
1749 ;;; Generated autoloads from dired/efs-auto.el | |
1750 | |
1751 ;;;*** | |
1752 | |
1753 ;;;### (autoloads nil "efs-cms-knet" "dired/efs-cms-knet.el" (12995 3098)) | |
1754 ;;; Generated autoloads from dired/efs-cms-knet.el | |
1755 | |
1756 ;;;*** | |
1757 | |
1758 ;;;### (autoloads nil "efs-cms" "dired/efs-cms.el" (12995 3098)) | |
1759 ;;; Generated autoloads from dired/efs-cms.el | |
1760 | |
1761 ;;;*** | |
1762 | |
1763 ;;;### (autoloads nil "efs-coke" "dired/efs-coke.el" (12995 3098)) | |
1764 ;;; Generated autoloads from dired/efs-coke.el | |
1765 | |
1766 ;;;*** | |
1767 | |
1768 ;;;### (autoloads nil "efs-cp-p" "dired/efs-cp-p.el" (12995 3098)) | |
1769 ;;; Generated autoloads from dired/efs-cp-p.el | |
1770 | |
1771 ;;;*** | |
1772 | |
1773 ;;;### (autoloads nil "efs-cu" "dired/efs-cu.el" (12995 3098)) | |
1774 ;;; Generated autoloads from dired/efs-cu.el | |
1775 | |
1776 ;;;*** | |
1777 | |
1778 ;;;### (autoloads nil "efs-defun" "dired/efs-defun.el" (12995 3098)) | |
1779 ;;; Generated autoloads from dired/efs-defun.el | |
1780 | |
1781 ;;;*** | |
1782 | |
1783 ;;;### (autoloads nil "efs-dired-mule" "dired/efs-dired-mule.el" (12995 3098)) | |
1784 ;;; Generated autoloads from dired/efs-dired-mule.el | |
1785 | |
1786 ;;;*** | |
1787 | |
1788 ;;;### (autoloads nil "efs-dired" "dired/efs-dired.el" (12995 3099)) | |
1789 ;;; Generated autoloads from dired/efs-dired.el | |
1790 | |
1791 ;;;*** | |
1792 | |
1793 ;;;### (autoloads nil "efs-dl" "dired/efs-dl.el" (12995 3099)) | |
1794 ;;; Generated autoloads from dired/efs-dl.el | |
1795 | |
1796 ;;;*** | |
1797 | |
1798 ;;;### (autoloads nil "efs-dos-distinct" "dired/efs-dos-distinct.el" (12995 3099)) | |
1799 ;;; Generated autoloads from dired/efs-dos-distinct.el | |
1800 | |
1801 ;;;*** | |
1802 | |
1803 ;;;### (autoloads nil "efs-fnh" "dired/efs-fnh.el" (12995 3099)) | |
1804 ;;; Generated autoloads from dired/efs-fnh.el | |
1805 | |
1806 ;;;*** | |
1807 | |
1808 ;;;### (autoloads nil "efs-guardian" "dired/efs-guardian.el" (12995 3099)) | |
1809 ;;; Generated autoloads from dired/efs-guardian.el | |
1810 | |
1811 ;;;*** | |
1812 | |
1813 ;;;### (autoloads nil "efs-gwp" "dired/efs-gwp.el" (12995 3099)) | |
1814 ;;; Generated autoloads from dired/efs-gwp.el | |
1815 | |
1816 ;;;*** | |
1817 | |
1818 ;;;### (autoloads nil "efs-hell" "dired/efs-hell.el" (12995 3099)) | |
1819 ;;; Generated autoloads from dired/efs-hell.el | |
1820 | |
1821 ;;;*** | |
1822 | |
1823 ;;;### (autoloads nil "efs-ka9q" "dired/efs-ka9q.el" (12995 3099)) | |
1824 ;;; Generated autoloads from dired/efs-ka9q.el | |
1825 | |
1826 ;;;*** | |
1827 | |
1828 ;;;### (autoloads nil "efs-l19.10" "dired/efs-l19.10.el" (12995 3099)) | |
1829 ;;; Generated autoloads from dired/efs-l19.10.el | |
1830 | |
1831 ;;;*** | |
1832 | |
1833 ;;;### (autoloads nil "efs-l19.11" "dired/efs-l19.11.el" (12995 3099)) | |
1834 ;;; Generated autoloads from dired/efs-l19.11.el | |
1835 | |
1836 ;;;*** | |
1837 | |
1838 ;;;### (autoloads nil "efs-l19.6" "dired/efs-l19.6.el" (12995 3099)) | |
1839 ;;; Generated autoloads from dired/efs-l19.6.el | |
1840 | |
1841 ;;;*** | |
1842 | |
1843 ;;;### (autoloads nil "efs-l19.8" "dired/efs-l19.8.el" (12995 3099)) | |
1844 ;;; Generated autoloads from dired/efs-l19.8.el | |
1845 | |
1846 ;;;*** | |
1847 | |
1848 ;;;### (autoloads nil "efs-mpe" "dired/efs-mpe.el" (12995 3099)) | |
1849 ;;; Generated autoloads from dired/efs-mpe.el | |
1850 | |
1851 ;;;*** | |
1852 | |
1853 ;;;### (autoloads nil "efs-ms-unix" "dired/efs-ms-unix.el" (12995 3099)) | |
1854 ;;; Generated autoloads from dired/efs-ms-unix.el | |
1855 | |
1856 ;;;*** | |
1857 | |
1858 ;;;### (autoloads nil "efs-mts" "dired/efs-mts.el" (12995 3099)) | |
1859 ;;; Generated autoloads from dired/efs-mts.el | |
1860 | |
1861 ;;;*** | |
1862 | |
1863 ;;;### (autoloads nil "efs-mvs" "dired/efs-mvs.el" (12995 3099)) | |
1864 ;;; Generated autoloads from dired/efs-mvs.el | |
1865 | |
1866 ;;;*** | |
1867 | |
1868 ;;;### (autoloads nil "efs-netrc" "dired/efs-netrc.el" (12995 3099)) | |
1869 ;;; Generated autoloads from dired/efs-netrc.el | |
1870 | |
1871 ;;;*** | |
1872 | |
1873 ;;;### (autoloads nil "efs-netware" "dired/efs-netware.el" (12995 3099)) | |
1874 ;;; Generated autoloads from dired/efs-netware.el | |
1875 | |
1876 ;;;*** | |
1877 | |
1878 ;;;### (autoloads nil "efs-nos-ve" "dired/efs-nos-ve.el" (12995 3099)) | |
1879 ;;; Generated autoloads from dired/efs-nos-ve.el | |
1880 | |
1881 ;;;*** | |
1882 | |
1883 ;;;### (autoloads nil "efs-ovwrt" "dired/efs-ovwrt.el" (12995 3099)) | |
1884 ;;; Generated autoloads from dired/efs-ovwrt.el | |
1885 | |
1886 ;;;*** | |
1887 | |
1888 ;;;### (autoloads nil "efs-pc" "dired/efs-pc.el" (12995 3099)) | |
1889 ;;; Generated autoloads from dired/efs-pc.el | |
1890 | |
1891 ;;;*** | |
1892 | |
1893 ;;;### (autoloads nil "efs-plan9" "dired/efs-plan9.el" (12995 3099)) | |
1894 ;;; Generated autoloads from dired/efs-plan9.el | |
1895 | |
1896 ;;;*** | |
1897 | |
1898 ;;;### (autoloads nil "efs-report" "dired/efs-report.el" (12995 3099)) | |
1899 ;;; Generated autoloads from dired/efs-report.el | |
1900 | |
1901 ;;;*** | |
1902 | |
1903 ;;;### (autoloads nil "efs-ti-explorer" "dired/efs-ti-explorer.el" (12995 3099)) | |
1904 ;;; Generated autoloads from dired/efs-ti-explorer.el | |
1905 | |
1906 ;;;*** | |
1907 | |
1908 ;;;### (autoloads nil "efs-ti-twenex" "dired/efs-ti-twenex.el" (12995 3099)) | |
1909 ;;; Generated autoloads from dired/efs-ti-twenex.el | |
1910 | |
1911 ;;;*** | |
1912 | |
1913 ;;;### (autoloads nil "efs-tops-20" "dired/efs-tops-20.el" (12995 3099)) | |
1914 ;;; Generated autoloads from dired/efs-tops-20.el | |
1915 | |
1916 ;;;*** | |
1917 | |
1918 ;;;### (autoloads nil "efs-vm" "dired/efs-vm.el" (12995 3099)) | |
1919 ;;; Generated autoloads from dired/efs-vm.el | |
1920 | |
1921 ;;;*** | |
1922 | |
1923 ;;;### (autoloads nil "efs-vms" "dired/efs-vms.el" (12995 3099)) | |
1924 ;;; Generated autoloads from dired/efs-vms.el | |
1925 | |
1926 ;;;*** | |
1927 | |
1928 ;;;### (autoloads nil "efs-vos" "dired/efs-vos.el" (12995 3099)) | |
1929 ;;; Generated autoloads from dired/efs-vos.el | |
1930 | |
1931 ;;;*** | |
1932 | |
1933 ;;;### (autoloads nil "efs" "dired/efs.el" (12995 3099)) | |
1934 ;;; Generated autoloads from dired/efs.el | |
1935 | |
1936 ;;;*** | |
1937 | |
1938 ;;;### (autoloads nil "emacs-19" "dired/emacs-19.el" (12995 3117)) | |
1939 ;;; Generated autoloads from dired/emacs-19.el | |
1940 | |
1941 ;;;### (autoloads (find-grep-dired find-name-dired find-dired) "find-dired" "dired/find-dired.el" (12995 25440)) | |
1942 ;;; Generated autoloads from dired/find-dired.el | |
1943 | |
1944 (defvar find-ls-option (purecopy (if (eq system-type 'berkeley-unix) '("-ls" . "-gilsb") '("-exec ls -ld {} \\;" . "-ld"))) "\ | |
1945 *Description of the option to `find' to produce an `ls -l'-type listing. | |
1946 This is a cons of two strings (FIND-OPTION . LS-SWITCHES). FIND-OPTION | |
1947 gives the option (or options) to `find' that produce the desired output. | |
1948 LS-SWITCHES is a list of `ls' switches to tell dired how to parse the output.") | |
1949 | |
1950 (defvar find-grep-options (purecopy (if (eq system-type 'berkeley-unix) "-s" "-q")) "\ | |
1951 *Option to grep to be as silent as possible. | |
1952 On Berkeley systems, this is `-s'; on Posix, and with GNU grep, `-q' does it. | |
1953 On other systems, the closest you can come is to use `-l'.") | |
1954 | |
1955 (defvar find-dired-multiple-buffers nil "\ | |
1956 *If non-nil, generates a new buffer for each find") | |
1957 | |
1958 (autoload 'find-dired "find-dired" "\ | |
1959 Run `find' and go into dired-mode on a buffer of the output. | |
1960 The command run (after changing into DIR) is | |
1961 | |
1962 find . \\( ARGS \\) -ls" t nil) | |
1963 | |
1964 (autoload 'find-name-dired "find-dired" "\ | |
1965 Search DIR recursively for files matching the globbing pattern PATTERN, | |
1966 and run dired on those files. | |
1967 PATTERN is a shell wildcard (not an Emacs regexp) and need not be quoted. | |
1968 The command run (after changing into DIR) is | |
1969 | |
1970 find . -name 'PATTERN' -ls" t nil) | |
1971 | |
1972 (autoload 'find-grep-dired "find-dired" "\ | |
1973 Find files in DIR containing a regexp ARG and start Dired on output. | |
1974 The command run (after changing into DIR) is | |
1975 | |
1976 find . -type f -exec test -r {} \\; -exec egrep -s ARG {} \\; -ls | |
1977 | |
1978 Thus ARG can also contain additional grep options." t nil) | |
1979 | |
1980 ;;;*** | |
1981 | |
1982 ;;;*** | |
1983 | |
1984 ;;;*** | |
1985 | |
1986 ;;;### (autoloads nil "fixup" "dired/fixup.el" (12995 3107)) | |
1987 ;;; Generated autoloads from dired/fixup.el | |
1988 | |
1989 ;;;*** | |
1990 | |
1991 ;;;### (autoloads nil "fn-handler" "dired/fn-handler.el" (12995 3111)) | |
1992 ;;; Generated autoloads from dired/fn-handler.el | |
1993 | |
1994 ;;;*** | |
1995 | |
1996 ;;;*** | |
1997 | |
1998 ;;;### (autoloads nil "gmhist-app" "dired/gmhist-app.el" (12995 25440)) | |
1999 ;;; Generated autoloads from dired/gmhist-app.el | |
2000 | |
2001 ;;;*** | |
2002 | |
2003 ;;;### (autoloads nil "gmhist-cmp" "dired/gmhist-cmp.el" (12995 25440)) | |
2004 ;;; Generated autoloads from dired/gmhist-cmp.el | |
2005 | |
2006 ;;;*** | |
2007 | |
2008 ;;;### (autoloads nil "gmhist-mh" "dired/gmhist-mh.el" (12995 25440)) | |
2009 ;;; Generated autoloads from dired/gmhist-mh.el | |
2010 | |
2011 ;;;*** | |
2012 | |
2013 ;;;### (autoloads nil "gmhist" "dired/gmhist.el" (12995 25441)) | |
2014 ;;; Generated autoloads from dired/gmhist.el | |
2015 | |
2016 ;;;*** | |
2017 | |
2018 ;;;### (autoloads nil "advise-eval-region" "edebug/advise-eval-region.el" (12984 30084)) | |
2019 ;;; Generated autoloads from edebug/advise-eval-region.el | |
2020 | |
2021 ;;;*** | |
2022 | |
2023 ;;;### (autoloads nil "cl-read" "edebug/cl-read.el" (12984 30081)) | |
2024 ;;; Generated autoloads from edebug/cl-read.el | |
2025 | |
2026 ;;;*** | |
2027 | |
2028 ;;;### (autoloads nil "cl-specs" "edebug/cl-specs.el" (12984 30081)) | |
2029 ;;; Generated autoloads from edebug/cl-specs.el | |
2030 | |
2031 ;;;*** | |
2032 | |
2033 ;;;### (autoloads nil "cust-print" "edebug/cust-print.el" (12984 30081)) | |
2034 ;;; Generated autoloads from edebug/cust-print.el | |
2035 | |
2036 ;;;*** | |
2037 | |
2038 ;;;### (autoloads nil "edebug-cl-read" "edebug/edebug-cl-read.el" (12984 30081)) | |
2039 ;;; Generated autoloads from edebug/edebug-cl-read.el | |
2040 | |
2041 ;;;*** | |
2042 | |
2043 ;;;### (autoloads nil "edebug-test" "edebug/edebug-test.el" (12984 29563)) | |
2044 ;;; Generated autoloads from edebug/edebug-test.el | |
2045 | |
2046 ;;;*** | |
2047 | |
2048 ;;;### (autoloads (edebug-eval-top-level-form def-edebug-spec) "edebug" "edebug/edebug.el" (12984 30083)) | |
2049 ;;; Generated autoloads from edebug/edebug.el | |
2050 | |
2051 (autoload 'def-edebug-spec "edebug" "\ | |
2052 Set the edebug-form-spec property of SYMBOL according to SPEC. | |
2053 Both SYMBOL and SPEC are unevaluated. The SPEC can be 0, t, a symbol | |
2054 \(naming a function), or a list." nil 'macro) | |
2055 | |
2056 (defalias 'edebug-defun 'edebug-eval-top-level-form) | |
2057 | |
2058 (autoload 'edebug-eval-top-level-form "edebug" "\ | |
2059 Evaluate a top level form, such as a defun or defmacro. | |
2060 This is like `eval-defun', but the code is always instrumented for Edebug. | |
2061 Print its name in the minibuffer and leave point where it is, | |
2062 or if an error occurs, leave point after it with mark at the original point." t nil) | |
2063 | |
2064 ;;;*** | |
2065 | |
2066 ;;;*** | |
2067 | |
2068 ;;;### (autoloads nil "eval-reg" "edebug/eval-reg.el" (12984 30081)) | |
2069 ;;; Generated autoloads from edebug/eval-reg.el | |
2070 | |
2071 ;;;*** | |
2072 | |
2073 ;;;### (autoloads nil "ediff-diff" "ediff/ediff-diff.el" (12984 29570)) | |
2074 ;;; Generated autoloads from ediff/ediff-diff.el | |
2075 | |
2076 ;;;*** | |
2077 | |
2078 ;;;### (autoloads nil "ediff-hook" "ediff/ediff-hook.el" (12984 29571)) | |
2079 ;;; Generated autoloads from ediff/ediff-hook.el | |
2080 | |
2081 ;;;*** | |
2082 | |
2083 ;;;### (autoloads nil "ediff-init" "ediff/ediff-init.el" (12984 29570)) | |
2084 ;;; Generated autoloads from ediff/ediff-init.el | |
2085 | |
2086 ;;;*** | |
2087 | |
2088 ;;;### (autoloads nil "ediff-merg" "ediff/ediff-merg.el" (12984 29570)) | |
2089 ;;; Generated autoloads from ediff/ediff-merg.el | |
2090 | |
2091 ;;;*** | |
2092 | |
2093 ;;;### (autoloads (ediff-show-registry) "ediff-mult" "ediff/ediff-mult.el" (12984 29571)) | |
2094 ;;; Generated autoloads from ediff/ediff-mult.el | |
2095 | |
2096 (autoload 'ediff-show-registry "ediff-mult" "\ | |
2097 Display Ediff's registry." t nil) | |
2098 | |
2099 (defalias 'eregistry 'ediff-show-registry) | |
2100 | |
2101 ;;;*** | |
2102 | |
2103 ;;;*** | |
2104 | |
2105 ;;;### (autoloads nil "ediff-ptch" "ediff/ediff-ptch.el" (12984 29571)) | |
2106 ;;; Generated autoloads from ediff/ediff-ptch.el | |
2107 | |
2108 ;;;*** | |
2109 | |
2110 ;;;*** | |
2111 | |
2112 ;;;### (autoloads nil "ediff-util" "ediff/ediff-util.el" (12984 29570)) | |
2113 ;;; Generated autoloads from ediff/ediff-util.el | |
2114 | |
2115 ;;;*** | |
2116 | |
2117 ;;;### (autoloads nil "ediff-vers" "ediff/ediff-vers.el" (12984 29571)) | |
2118 ;;; Generated autoloads from ediff/ediff-vers.el | |
2119 | |
2120 ;;;*** | |
2121 | |
2122 ;;;### (autoloads nil "ediff-wind" "ediff/ediff-wind.el" (12984 29571)) | |
2123 ;;; Generated autoloads from ediff/ediff-wind.el | |
2124 | |
2125 ;;;### (autoloads (ediff-documentation ediff-version ediff-revision ediff-patch-buffer ediff-patch-file run-ediff-from-cvs-buffer ediff-merge-revisions-with-ancestor ediff-merge-revisions ediff-merge-buffers-with-ancestor ediff-merge-buffers ediff-merge-files-with-ancestor ediff-merge-files ediff-regions-linewise ediff-regions-wordwise ediff-windows-linewise ediff-windows-wordwise ediff-merge-directory-revisions-with-ancestor ediff-merge-directory-revisions ediff-merge-directories-with-ancestor ediff-merge-directories ediff-directories3 ediff-directory-revisions ediff-directories ediff-buffers3 ediff-buffers ediff-files3 ediff-files) "ediff" "ediff/ediff.el" (12984 29571)) | |
2126 ;;; Generated autoloads from ediff/ediff.el | |
2127 | |
2128 (autoload 'ediff-files "ediff" "\ | |
2129 Run Ediff on a pair of files, FILE-A and FILE-B." t nil) | |
2130 | |
2131 (autoload 'ediff-files3 "ediff" "\ | |
2132 Run Ediff on three files, FILE-A, FILE-B, and FILE-C." t nil) | |
2133 | |
2134 (defalias 'ediff3 'ediff-files3) | |
2135 | |
2136 (defalias 'ediff 'ediff-files) | |
2137 | |
2138 (autoload 'ediff-buffers "ediff" "\ | |
2139 Run Ediff on a pair of buffers, BUFFER-A and BUFFER-B." t nil) | |
2140 | |
2141 (defalias 'ebuffers 'ediff-buffers) | |
2142 | |
2143 (autoload 'ediff-buffers3 "ediff" "\ | |
2144 Run Ediff on three buffers, BUFFER-A, BUFFER-B, and BUFFER-C." t nil) | |
2145 | |
2146 (defalias 'ebuffers3 'ediff-buffers3) | |
2147 | |
2148 (autoload 'ediff-directories "ediff" "\ | |
2149 Run Ediff on a pair of directories, DIR1 and DIR2, comparing files that have | |
2150 the same name in both. The third argument, REGEXP, is a regular expression that | |
2151 can be used to filter out certain file names." t nil) | |
2152 | |
2153 (defalias 'edirs 'ediff-directories) | |
2154 | |
2155 (autoload 'ediff-directory-revisions "ediff" "\ | |
2156 Run Ediff on a directory, DIR1, comparing its files with their revisions. | |
2157 The second argument, REGEXP, is a regular expression that filters the file | |
2158 names. Only the files that are under revision control are taken into account." t nil) | |
2159 | |
2160 (defalias 'edir-revisions 'ediff-directory-revisions) | |
2161 | |
2162 (autoload 'ediff-directories3 "ediff" "\ | |
2163 Run Ediff on three directories, DIR1, DIR2, and DIR3, comparing files that | |
2164 have the same name in all three. The last argument, REGEXP, is a regular | |
2165 expression that can be used to filter out certain file names." t nil) | |
2166 | |
2167 (defalias 'edirs3 'ediff-directories3) | |
2168 | |
2169 (autoload 'ediff-merge-directories "ediff" "\ | |
2170 Run Ediff on a pair of directories, DIR1 and DIR2, merging files that have | |
2171 the same name in both. The third argument, REGEXP, is a regular expression that | |
2172 can be used to filter out certain file names." t nil) | |
2173 | |
2174 (defalias 'edirs-merge 'ediff-merge-directories) | |
2175 | |
2176 (autoload 'ediff-merge-directories-with-ancestor "ediff" "\ | |
2177 Merge files in directories DIR1 and DIR2 using files in ANCESTOR-DIR as ancestors. | |
2178 Ediff merges files that have identical names in DIR1, DIR2. If a pair of files | |
2179 in DIR1 and DIR2 doesn't have an ancestor in ANCESTOR-DIR, Ediff will merge | |
2180 without ancestor. The fourth argument, REGEXP, is a regular expression that | |
2181 can be used to filter out certain file names." t nil) | |
2182 | |
2183 (autoload 'ediff-merge-directory-revisions "ediff" "\ | |
2184 Run Ediff on a directory, DIR1, merging its files with their revisions. | |
2185 The second argument, REGEXP, is a regular expression that filters the file | |
2186 names. Only the files that are under revision control are taken into account." t nil) | |
2187 | |
2188 (defalias 'edir-merge-revisions 'ediff-merge-directory-revisions) | |
2189 | |
2190 (autoload 'ediff-merge-directory-revisions-with-ancestor "ediff" "\ | |
2191 Run Ediff on a directory, DIR1, merging its files with their revisions and ancestors. | |
2192 The second argument, REGEXP, is a regular expression that filters the file | |
2193 names. Only the files that are under revision control are taken into account." t nil) | |
2194 | |
2195 (defalias 'edir-merge-revisions-with-ancestor 'ediff-merge-directory-revisions-with-ancestor) | |
2196 | |
2197 (defalias 'edirs-merge-with-ancestor 'ediff-merge-directories-with-ancestor) | |
2198 | |
2199 (autoload 'ediff-windows-wordwise "ediff" "\ | |
2200 Compare WIND-A and WIND-B, which are selected by clicking, wordwise. | |
2201 With prefix argument, DUMB-MODE, or on a non-windowing display, works as | |
2202 follows: | |
2203 If WIND-A is nil, use selected window. | |
2204 If WIND-B is nil, use window next to WIND-A." t nil) | |
2205 | |
2206 (autoload 'ediff-windows-linewise "ediff" "\ | |
2207 Compare WIND-A and WIND-B, which are selected by clicking, linewise. | |
2208 With prefix argument, DUMB-MODE, or on a non-windowing display, works as | |
2209 follows: | |
2210 If WIND-A is nil, use selected window. | |
2211 If WIND-B is nil, use window next to WIND-A." t nil) | |
2212 | |
2213 (autoload 'ediff-regions-wordwise "ediff" "\ | |
2214 Run Ediff on a pair of regions in two different buffers. | |
2215 Regions (i.e., point and mark) are assumed to be set in advance. | |
2216 This function is effective only for relatively small regions, up to 200 | |
2217 lines. For large regions, use `ediff-regions-linewise'." t nil) | |
2218 | |
2219 (autoload 'ediff-regions-linewise "ediff" "\ | |
2220 Run Ediff on a pair of regions in two different buffers. | |
2221 Regions (i.e., point and mark) are assumed to be set in advance. | |
2222 Each region is enlarged to contain full lines. | |
2223 This function is effective for large regions, over 100-200 | |
2224 lines. For small regions, use `ediff-regions-wordwise'." t nil) | |
2225 | |
2226 (defalias 'ediff-merge 'ediff-merge-files) | |
2227 | |
2228 (autoload 'ediff-merge-files "ediff" "\ | |
2229 Merge two files without ancestor." t nil) | |
2230 | |
2231 (autoload 'ediff-merge-files-with-ancestor "ediff" "\ | |
2232 Merge two files with ancestor." t nil) | |
2233 | |
2234 (defalias 'ediff-merge-with-ancestor 'ediff-merge-files-with-ancestor) | |
2235 | |
2236 (autoload 'ediff-merge-buffers "ediff" "\ | |
2237 Merge buffers without ancestor." t nil) | |
2238 | |
2239 (autoload 'ediff-merge-buffers-with-ancestor "ediff" "\ | |
2240 Merge buffers with ancestor." t nil) | |
2241 | |
2242 (autoload 'ediff-merge-revisions "ediff" "\ | |
2243 Run Ediff by merging two revisions of a file. | |
2244 The file is the optional FILE argument or the file visited by the current | |
2245 buffer." t nil) | |
2246 | |
2247 (autoload 'ediff-merge-revisions-with-ancestor "ediff" "\ | |
2248 Run Ediff by merging two revisions of a file with a common ancestor. | |
2249 The file is the optional FILE argument or the file visited by the current | |
2250 buffer." t nil) | |
2251 | |
2252 (autoload 'run-ediff-from-cvs-buffer "ediff" "\ | |
2253 Run Ediff-merge on appropriate revisions of the selected file. | |
2254 First run after `M-x cvs-update'. Then place the cursor on a lide describing a | |
2255 file and then run `run-ediff-from-cvs-buffer'." t nil) | |
2256 | |
2257 (autoload 'ediff-patch-file "ediff" "\ | |
2258 Run Ediff by patching SOURCE-FILENAME." t nil) | |
2259 | |
2260 (autoload 'ediff-patch-buffer "ediff" "\ | |
2261 Run Ediff by patching BUFFER-NAME." t nil) | |
2262 | |
2263 (defalias 'epatch 'ediff-patch-file) | |
2264 | |
2265 (defalias 'epatch-buffer 'ediff-patch-buffer) | |
2266 | |
2267 (autoload 'ediff-revision "ediff" "\ | |
2268 Run Ediff by comparing versions of a file. | |
2269 The file is an optional FILE argument or the file visited by the current | |
2270 buffer. Use `vc.el' or `rcs.el' depending on `ediff-version-control-package'." t nil) | |
2271 | |
2272 (autoload 'ediff-version "ediff" "\ | |
2273 Return string describing the version of Ediff. | |
2274 When called interactively, displays the version." t nil) | |
2275 | |
2276 (autoload 'ediff-documentation "ediff" "\ | |
2277 Display Ediff's manual." t nil) | |
2278 | |
2279 ;;;*** | |
2280 | |
2281 ;;;### (autoloads (electric-buffer-list) "ebuff-menu" "electric/ebuff-menu.el" (12988 19666)) | |
2282 ;;; Generated autoloads from electric/ebuff-menu.el | |
2283 | |
2284 (autoload 'electric-buffer-list "ebuff-menu" "\ | |
2285 Pops up a buffer describing the set of Emacs buffers. | |
2286 Vaguely like ITS lunar select buffer; combining typeoutoid buffer | |
2287 listing with menuoid buffer selection. | |
2288 | |
2289 If the very next character typed is a space then the buffer list | |
2290 window disappears. Otherwise, one may move around in the buffer list | |
2291 window, marking buffers to be selected, saved or deleted. | |
2292 | |
2293 To exit and select a new buffer, type a space when the cursor is on | |
2294 the appropriate line of the buffer-list window. Other commands are | |
2295 much like those of buffer-menu-mode. | |
2296 | |
2297 Calls value of `electric-buffer-menu-mode-hook' on entry if non-nil. | |
2298 | |
2299 Non-null optional arg FILES-ONLY means mention only file buffers. | |
2300 When called from Lisp code, FILES-ONLY may be a regular expression, | |
2301 in which case only buffers whose names match that expression are listed, | |
2302 or an arbitrary predicate function. | |
2303 | |
2304 \\{electric-buffer-menu-mode-map}" t nil) | |
2305 | |
2306 ;;;*** | |
2307 | |
2308 ;;;### (autoloads (electric-command-history Electric-command-history-redo-expression) "echistory" "electric/echistory.el" (12984 29975)) | |
2309 ;;; Generated autoloads from electric/echistory.el | |
2310 | |
2311 (autoload 'Electric-command-history-redo-expression "echistory" "\ | |
2312 Edit current history line in minibuffer and execute result. | |
2313 With prefix arg NOCONFIRM, execute current line as-is without editing." t nil) | |
2314 | |
2315 (autoload 'electric-command-history "echistory" "\ | |
2316 \\<electric-history-map>Major mode for examining and redoing commands from `command-history'. | |
2317 This pops up a window with the Command History listing. | |
2318 The number of command listed is controlled by `list-command-history-max'. | |
2319 The command history is filtered by `list-command-history-filter' if non-nil. | |
2320 Combines typeout Command History list window with menu like selection | |
2321 of an expression from the history for re-evaluation in the *original* buffer. | |
2322 | |
2323 The history displayed is filtered by `list-command-history-filter' if non-nil. | |
2324 | |
2325 Like Emacs-Lisp mode except that characters do not insert themselves and | |
2326 Tab and Linefeed do not indent. Instead these commands are provided: | |
2327 \\{electric-history-map} | |
2328 | |
2329 Calls the value of `electric-command-history-hook' if that is non-nil. | |
2330 The Command History listing is recomputed each time this mode is invoked." t nil) | |
2331 | |
2332 ;;;*** | |
2333 | |
2334 ;;;### (autoloads (electric-helpify with-electric-help) "ehelp" "electric/ehelp.el" (12984 29974)) | |
2335 ;;; Generated autoloads from electric/ehelp.el | |
2336 | |
2337 (autoload 'with-electric-help "ehelp" "\ | |
2338 Pop up an \"electric\" help buffer. | |
2339 The arguments are THUNK &optional BUFFER NOERASE MINHEIGHT. | |
2340 THUNK is a function of no arguments which is called to initialize the | |
2341 contents of BUFFER. BUFFER defaults to `*Help*'. BUFFER will be | |
2342 erased before THUNK is called unless NOERASE is non-nil. THUNK will | |
2343 be called while BUFFER is current and with `standard-output' bound to | |
2344 the buffer specified by BUFFER. | |
2345 | |
2346 If THUNK returns nil, we display BUFFER starting at the top, and | |
2347 shrink the window to fit. If THUNK returns non-nil, we don't do those things. | |
2348 | |
2349 After THUNK has been called, this function \"electrically\" pops up a window | |
2350 in which BUFFER is displayed and allows the user to scroll through that buffer | |
2351 in electric-help-mode. The window's height will be at least MINHEIGHT if | |
2352 this value is non-nil. | |
2353 | |
2354 If THUNK returns nil, we display BUFFER starting at the top, and | |
2355 shrink the window to fit. If THUNK returns non-nil, we don't do those | |
2356 things. | |
2357 | |
2358 When the user exits (with `electric-help-exit', or otherwise) the help | |
2359 buffer's window disappears (i.e., we use `save-window-excursion') | |
2360 BUFFER is put into `default-major-mode' (or `fundamental-mode') when we exit." nil nil) | |
2361 | |
2362 (autoload 'electric-helpify "ehelp" nil nil nil) | |
2363 | |
2364 ;;;*** | |
2365 | |
2366 ;;;*** | |
2367 | |
2368 ;;;*** | |
2369 | |
2370 ;;;### (autoloads nil "electric" "electric/electric.el" (12984 29974)) | |
2371 ;;; Generated autoloads from electric/electric.el | |
2372 | |
2373 ;;;*** | |
2374 | |
2375 ;;;### (autoloads (Helper-help Helper-describe-bindings) "helper" "electric/helper.el" (12984 29975)) | |
2376 ;;; Generated autoloads from electric/helper.el | |
2377 | |
2378 (autoload 'Helper-describe-bindings "helper" "\ | |
2379 Describe local key bindings of current mode." t nil) | |
2380 | |
2381 (autoload 'Helper-help "helper" "\ | |
2382 Provide help for current mode." t nil) | |
2383 | |
2384 ;;;*** | |
2385 | |
2386 ;;;*** | |
2387 | |
2388 ;;;### (autoloads nil "crisp" "emulators/crisp.el" (12989 48890)) | |
2389 ;;; Generated autoloads from emulators/crisp.el | |
2390 | |
2391 ;;;*** | |
2392 | |
2393 ;;;### (autoloads nil "edt-lk201" "emulators/edt-lk201.el" (12984 29980)) | |
2394 ;;; Generated autoloads from emulators/edt-lk201.el | |
2395 | |
2396 ;;;*** | |
2397 | |
2398 ;;;### (autoloads nil "edt-mapper" "emulators/edt-mapper.el" (12984 29980)) | |
2399 ;;; Generated autoloads from emulators/edt-mapper.el | |
2400 | |
2401 ;;;*** | |
2402 | |
2403 ;;;### (autoloads nil "edt-pc" "emulators/edt-pc.el" (12984 29980)) | |
2404 ;;; Generated autoloads from emulators/edt-pc.el | |
2405 | |
2406 ;;;*** | |
2407 | |
2408 ;;;### (autoloads nil "edt-vt100" "emulators/edt-vt100.el" (12984 29980)) | |
2409 ;;; Generated autoloads from emulators/edt-vt100.el | |
2410 | |
2411 | |
2412 ;;;### (autoloads (edt-emulation-on) "edt" "emulators/edt.el" (12984 29976)) | |
2413 ;;; Generated autoloads from emulators/edt.el | |
2414 | |
2415 (autoload 'edt-emulation-on "edt" "\ | |
2416 Turn on EDT Emulation." t nil) | |
2417 | |
2418 ;;;*** | |
2419 | |
2420 ;;;### (autoloads (convert-mocklisp-buffer) "mlconvert" "emulators/mlconvert.el" (12984 29977)) | |
2421 ;;; Generated autoloads from emulators/mlconvert.el | |
2422 | |
2423 (autoload 'convert-mocklisp-buffer "mlconvert" "\ | |
2424 Convert buffer of Mocklisp code to real Lisp that GNU Emacs can run." t nil) | |
2425 | |
2426 ;;;*** | |
2427 | |
2428 ;;;*** | |
2429 | |
2430 ;;;*** | |
2431 | |
2432 ;;;### (autoloads nil "mlsupport" "emulators/mlsupport.el" (12984 29977)) | |
2433 ;;; Generated autoloads from emulators/mlsupport.el | |
2434 | |
2435 ;;;*** | |
2436 | |
2437 ;;;*** | |
2438 | |
2439 ;;;### (autoloads nil "scroll-lock" "emulators/scroll-lock.el" (12984 29980)) | |
2440 ;;; Generated autoloads from emulators/scroll-lock.el | |
2441 | |
2442 ;;;### (autoloads (teco-command) "teco" "emulators/teco.el" (12984 29977)) | |
2443 ;;; Generated autoloads from emulators/teco.el | |
2444 | |
2445 (autoload 'teco-command "teco" "\ | |
2446 Read and execute a Teco command string." t nil) | |
2447 | |
2448 ;;;*** | |
2449 | |
2450 ;;;*** | |
2451 | |
2452 ;;;### (autoloads nil "tpu-doc" "emulators/tpu-doc.el" (12984 29534)) | |
2453 ;;; Generated autoloads from emulators/tpu-doc.el | |
2454 | |
2455 ;;;### (autoloads (tpu-edt-on) "tpu-edt" "emulators/tpu-edt.el" (12988 19668)) | |
2456 ;;; Generated autoloads from emulators/tpu-edt.el | |
2457 | |
2458 (fset 'tpu-edt-mode 'tpu-edt-on) | |
2459 | |
2460 (fset 'tpu-edt 'tpu-edt-on) | |
2461 | |
2462 (autoload 'tpu-edt-on "tpu-edt" "\ | |
2463 Turn on TPU/edt emulation." t nil) | |
2464 | |
2465 ;;;*** | |
2466 | |
2467 ;;;### (autoloads (tpu-set-cursor-bound tpu-set-cursor-free tpu-set-scroll-margins) "tpu-extras" "emulators/tpu-extras.el" (12984 29979)) | |
2468 ;;; Generated autoloads from emulators/tpu-extras.el | |
2469 | |
2470 (autoload 'tpu-set-scroll-margins "tpu-extras" "\ | |
2471 Set scroll margins." t nil) | |
2472 | |
2473 (autoload 'tpu-set-cursor-free "tpu-extras" "\ | |
2474 Allow the cursor to move freely about the screen." t nil) | |
2475 | |
2476 (autoload 'tpu-set-cursor-bound "tpu-extras" "\ | |
2477 Constrain the cursor to the flow of the text." t nil) | |
2478 | |
2479 ;;;*** | |
2480 | |
2481 ;;;*** | |
2482 | |
2483 ;;;*** | |
2484 | |
2485 ;;;### (autoloads nil "tpu-mapper" "emulators/tpu-mapper.el" (12984 29979)) | |
2486 ;;; Generated autoloads from emulators/tpu-mapper.el | |
2487 | |
2488 ;;;*** | |
2489 | |
2490 ;;;### (autoloads (wordstar-mode) "ws-mode" "emulators/ws-mode.el" (12984 29978)) | |
2491 ;;; Generated autoloads from emulators/ws-mode.el | |
2492 | |
2493 (autoload 'wordstar-mode "ws-mode" "\ | |
2494 Major mode with WordStar-like key bindings. | |
2495 | |
2496 BUGS: | |
2497 - Help menus with WordStar commands (C-j just calls help-for-help) | |
2498 are not implemented | |
2499 - Options for search and replace | |
2500 - Show markers (C-k h) is somewhat strange | |
2501 - Search and replace (C-q a) is only available in forward direction | |
2502 | |
2503 No key bindings beginning with ESC are installed, they will work | |
2504 Emacs-like. | |
2505 | |
2506 The key bindings are: | |
2507 | |
2508 C-a backward-word | |
2509 C-b fill-paragraph | |
2510 C-c scroll-up-line | |
2511 C-d forward-char | |
2512 C-e previous-line | |
2513 C-f forward-word | |
2514 C-g delete-char | |
2515 C-h backward-char | |
2516 C-i indent-for-tab-command | |
2517 C-j help-for-help | |
2518 C-k ordstar-C-k-map | |
2519 C-l ws-repeat-search | |
2520 C-n open-line | |
2521 C-p quoted-insert | |
2522 C-r scroll-down-line | |
2523 C-s backward-char | |
2524 C-t kill-word | |
2525 C-u keyboard-quit | |
2526 C-v overwrite-mode | |
2527 C-w scroll-down | |
2528 C-x next-line | |
2529 C-y kill-complete-line | |
2530 C-z scroll-up | |
2531 | |
2532 C-k 0 ws-set-marker-0 | |
2533 C-k 1 ws-set-marker-1 | |
2534 C-k 2 ws-set-marker-2 | |
2535 C-k 3 ws-set-marker-3 | |
2536 C-k 4 ws-set-marker-4 | |
2537 C-k 5 ws-set-marker-5 | |
2538 C-k 6 ws-set-marker-6 | |
2539 C-k 7 ws-set-marker-7 | |
2540 C-k 8 ws-set-marker-8 | |
2541 C-k 9 ws-set-marker-9 | |
2542 C-k b ws-begin-block | |
2543 C-k c ws-copy-block | |
2544 C-k d save-buffers-kill-emacs | |
2545 C-k f find-file | |
2546 C-k h ws-show-markers | |
2547 C-k i ws-indent-block | |
2548 C-k k ws-end-block | |
2549 C-k p ws-print-block | |
2550 C-k q kill-emacs | |
2551 C-k r insert-file | |
2552 C-k s save-some-buffers | |
2553 C-k t ws-mark-word | |
2554 C-k u ws-exdent-block | |
2555 C-k C-u keyboard-quit | |
2556 C-k v ws-move-block | |
2557 C-k w ws-write-block | |
2558 C-k x kill-emacs | |
2559 C-k y ws-delete-block | |
2560 | |
2561 C-o c wordstar-center-line | |
2562 C-o b switch-to-buffer | |
2563 C-o j justify-current-line | |
2564 C-o k kill-buffer | |
2565 C-o l list-buffers | |
2566 C-o m auto-fill-mode | |
2567 C-o r set-fill-column | |
2568 C-o C-u keyboard-quit | |
2569 C-o wd delete-other-windows | |
2570 C-o wh split-window-horizontally | |
2571 C-o wo other-window | |
2572 C-o wv split-window-vertically | |
2573 | |
2574 C-q 0 ws-find-marker-0 | |
2575 C-q 1 ws-find-marker-1 | |
2576 C-q 2 ws-find-marker-2 | |
2577 C-q 3 ws-find-marker-3 | |
2578 C-q 4 ws-find-marker-4 | |
2579 C-q 5 ws-find-marker-5 | |
2580 C-q 6 ws-find-marker-6 | |
2581 C-q 7 ws-find-marker-7 | |
2582 C-q 8 ws-find-marker-8 | |
2583 C-q 9 ws-find-marker-9 | |
2584 C-q a ws-query-replace | |
2585 C-q b ws-to-block-begin | |
2586 C-q c end-of-buffer | |
2587 C-q d end-of-line | |
2588 C-q f ws-search | |
2589 C-q k ws-to-block-end | |
2590 C-q l ws-undo | |
2591 C-q p ws-last-cursorp | |
2592 C-q r beginning-of-buffer | |
2593 C-q C-u keyboard-quit | |
2594 C-q w ws-last-error | |
2595 C-q y ws-kill-eol | |
2596 C-q DEL ws-kill-bol | |
2597 " t nil) | |
2598 | |
2599 ;;;*** | |
2600 | |
2601 ;;;*** | |
2602 | |
2603 ;;;### (autoloads nil "backtrace-logging" "energize/backtrace-logging.el" (12984 29534)) | |
2604 ;;; Generated autoloads from energize/backtrace-logging.el | |
2605 | |
2606 ;;;*** | |
2607 | |
2608 ;;;### (autoloads nil "energize-advice" "energize/energize-advice.el" (12984 29534)) | |
2609 ;;; Generated autoloads from energize/energize-advice.el | |
2610 | |
2611 ;;;*** | |
2612 | |
2613 ;;;### (autoloads nil "energize-annoprint" "energize/energize-annoprint.el" (12984 29535)) | |
2614 ;;; Generated autoloads from energize/energize-annoprint.el | |
2615 | |
2616 ;;;*** | |
2617 | |
2618 ;;;### (autoloads nil "energize-font-lock" "energize/energize-font-lock.el" (12984 29534)) | |
2619 ;;; Generated autoloads from energize/energize-font-lock.el | |
2620 | |
2621 ;;;*** | |
2622 | |
2623 ;;;### (autoloads nil "energize-font-size" "energize/energize-font-size.el" (12984 29535)) | |
2624 ;;; Generated autoloads from energize/energize-font-size.el | |
2625 | |
2626 ;;;*** | |
2627 | |
2628 ;;;### (autoloads nil "energize-init" "energize/energize-init.el" (12984 29534)) | |
2629 ;;; Generated autoloads from energize/energize-init.el | |
2630 | |
2631 ;;;*** | |
2632 | |
2633 ;;;### (autoloads nil "energize-load" "energize/energize-load.el" (12984 29534)) | |
2634 ;;; Generated autoloads from energize/energize-load.el | |
2635 | |
2636 ;;;*** | |
2637 | |
2638 ;;;### (autoloads nil "energize-menus" "energize/energize-menus.el" (12984 29534)) | |
2639 ;;; Generated autoloads from energize/energize-menus.el | |
2640 | |
2641 ;;;*** | |
2642 | |
2643 ;;;*** | |
2644 | |
2645 ;;;### (autoloads nil "energize-mode" "energize/energize-mode.el" (12984 29534)) | |
2646 ;;; Generated autoloads from energize/energize-mode.el | |
2647 | |
2648 ;;;*** | |
2649 | |
2650 ;;;### (autoloads nil "energize-shell" "energize/energize-shell.el" (12984 29534)) | |
2651 ;;; Generated autoloads from energize/energize-shell.el | |
2652 | |
2653 ;;;*** | |
2654 | |
2655 ;;;### (autoloads nil "energize-uimx" "energize/energize-uimx.el" (12984 29535)) | |
2656 ;;; Generated autoloads from energize/energize-uimx.el | |
2657 | |
2658 ;;;*** | |
2659 | |
2660 ;;;### (autoloads nil "energize-vi" "energize/energize-vi.el" (12984 29534)) | |
2661 ;;; Generated autoloads from energize/energize-vi.el | |
2662 | |
2663 ;;;*** | |
2664 | |
2665 ;;;### (autoloads nil "energize-visit-use" "energize/energize-visit-use.el" (12984 29534)) | |
2666 ;;; Generated autoloads from energize/energize-visit-use.el | |
2667 | |
2668 ;;;*** | |
2669 | |
2670 ;;;### (autoloads nil "energize-windows" "energize/energize-windows.el" (12984 29535)) | |
2671 ;;; Generated autoloads from energize/energize-windows.el | |
2672 | |
2673 ;;;*** | |
2674 | |
2675 ;;;### (autoloads nil "ostore" "energize/ostore.el" (12984 29534)) | |
2676 ;;; Generated autoloads from energize/ostore.el | |
2677 | |
2678 ;;;*** | |
2679 | |
2680 ;;;### (autoloads nil "write-file" "energize/write-file.el" (12984 29534)) | |
2681 ;;; Generated autoloads from energize/write-file.el | |
2682 | |
2683 ;;;*** | |
2684 | |
2685 ;;;*** | |
2686 | |
2687 ;;;*** | |
2688 | |
2689 ;;;### (autoloads nil "eos" "eos/eos.el" (12984 29566)) | |
2690 ;;; Generated autoloads from eos/eos.el | |
2691 | |
2692 ;;;*** | |
2693 | |
2694 ;;;### (autoloads nil "loaddefs-eos" "eos/loaddefs-eos.el" (12984 29566)) | |
2695 ;;; Generated autoloads from eos/loaddefs-eos.el | |
2696 | |
2697 ;;;*** | |
2698 | |
2699 ;;;*** | |
2700 | |
2701 ;;;### (autoloads nil "sun-eos-browser" "eos/sun-eos-browser.el" (12984 29566)) | |
2702 ;;; Generated autoloads from eos/sun-eos-browser.el | |
2703 | |
2704 ;;;*** | |
2705 | |
2706 ;;;### (autoloads nil "sun-eos-common" "eos/sun-eos-common.el" (12984 29566)) | |
2707 ;;; Generated autoloads from eos/sun-eos-common.el | |
2708 | |
2709 ;;;*** | |
2710 | |
2711 ;;;### (autoloads nil "sun-eos-debugger-extra" "eos/sun-eos-debugger-extra.el" (12984 29566)) | |
2712 ;;; Generated autoloads from eos/sun-eos-debugger-extra.el | |
2713 | |
2714 ;;;*** | |
2715 | |
2716 ;;;### (autoloads nil "sun-eos-debugger" "eos/sun-eos-debugger.el" (12984 29566)) | |
2717 ;;; Generated autoloads from eos/sun-eos-debugger.el | |
2718 | |
2719 ;;;*** | |
2720 | |
2721 ;;;### (autoloads nil "sun-eos-editor" "eos/sun-eos-editor.el" (12984 29566)) | |
2722 ;;; Generated autoloads from eos/sun-eos-editor.el | |
2723 | |
2724 ;;;*** | |
2725 | |
2726 ;;;### (autoloads nil "sun-eos-init" "eos/sun-eos-init.el" (12984 29566)) | |
2727 ;;; Generated autoloads from eos/sun-eos-init.el | |
2728 | |
2729 ;;;*** | |
2730 | |
2731 ;;;### (autoloads nil "sun-eos-load" "eos/sun-eos-load.el" (12984 29566)) | |
2732 ;;; Generated autoloads from eos/sun-eos-load.el | |
2733 | |
2734 ;;;*** | |
2735 | |
2736 ;;;### (autoloads nil "sun-eos-menubar" "eos/sun-eos-menubar.el" (12984 29566)) | |
2737 ;;; Generated autoloads from eos/sun-eos-menubar.el | |
2738 | |
2739 ;;;*** | |
2740 | |
2741 ;;;*** | |
2742 | |
2743 ;;;*** | |
2744 | |
2745 ;;;### (autoloads nil "sun-eos-toolbar" "eos/sun-eos-toolbar.el" (12984 29566)) | |
2746 ;;; Generated autoloads from eos/sun-eos-toolbar.el | |
2747 | |
2748 ;;;*** | |
2749 | |
2750 ;;;### (autoloads nil "sun-eos" "eos/sun-eos.el" (12984 29566)) | |
2751 ;;; Generated autoloads from eos/sun-eos.el | |
2752 | |
2753 ;;;*** | |
2754 | |
2755 ;;;### (autoloads nil "epoch" "epoch/epoch.el" (12984 29555)) | |
2756 ;;; Generated autoloads from epoch/epoch.el | |
2757 | |
2758 ;;;### (autoloads (tshell) "tshell" "eterm/tshell.el" (12147 26618)) | |
2759 ;;; Generated autoloads from eterm/tshell.el | |
2760 | |
2761 (defvar tshell-prompt-pattern "^[^#$%>\n]*[#$%>] *" "\ | |
2762 Regexp to match prompts in the inferior shell. | |
2763 Defaults to \"^[^#$%>\\n]*[#$%>] *\", which works pretty well. | |
2764 This variable is used to initialise `term-prompt-regexp' in the | |
2765 shell buffer. | |
2766 | |
2767 The pattern should probably not match more than one line. If it does, | |
2768 tshell-mode may become confused trying to distinguish prompt from input | |
2769 on lines which don't start with a prompt. | |
2770 | |
2771 This is a fine thing to set in your `.emacs' file.") | |
2772 | |
2773 (autoload 'tshell "tshell" "\ | |
2774 Run an inferior shell, with I/O through buffer *shell*. | |
2775 If buffer exists but shell process is not running, make new shell. | |
2776 If buffer exists and shell process is running, just switch to buffer `*shell*'. | |
2777 Program used comes from variable `explicit-shell-file-name', | |
2778 or (if that is nil) from the ESHELL environment variable, | |
2779 or else from SHELL if there is no ESHELL. | |
2780 If a file `~/.emacs_SHELLNAME' exists, it is given as initial input | |
2781 (Note that this may lose due to a timing error if the shell | |
2782 discards input when it starts up.) | |
2783 The buffer is put in Tshell mode, giving commands for sending input | |
2784 and controlling the subjobs of the shell. See `tshell-mode'. | |
2785 See also the variable `tshell-prompt-pattern'. | |
2786 | |
2787 The shell file name (sans directories) is used to make a symbol name | |
2788 such as `explicit-csh-args'. If that symbol is a variable, | |
2789 its value is used as a list of arguments when invoking the shell. | |
2790 Otherwise, one argument `-i' is passed to the shell. | |
2791 | |
2792 \(Type \\[describe-mode] in the shell buffer for a list of commands.)" t nil) | |
2793 | |
2794 ;;;*** | |
2795 | |
2796 ;;;*** | |
2797 | |
2798 ;;;*** | |
2799 | |
2800 ;;;### (autoloads nil "NeXTify" "games/NeXTify.el" (12984 30080)) | |
2801 ;;; Generated autoloads from games/NeXTify.el | |
2802 | |
2803 ;;;### (autoloads (blackbox) "blackbox" "games/blackbox.el" (12988 19779)) | |
2804 ;;; Generated autoloads from games/blackbox.el | |
2805 | |
2806 (autoload 'blackbox "blackbox" "\ | |
2807 Play blackbox. Optional prefix argument is the number of balls; | |
2808 the default is 4. | |
2809 | |
2810 What is blackbox? | |
2811 | |
2812 Blackbox is a game of hide and seek played on an 8 by 8 grid (the | |
2813 Blackbox). Your opponent (Emacs, in this case) has hidden several | |
2814 balls (usually 4) within this box. By shooting rays into the box and | |
2815 observing where they emerge it is possible to deduce the positions of | |
2816 the hidden balls. The fewer rays you use to find the balls, the lower | |
2817 your score. | |
2818 | |
2819 Overview of play: | |
2820 | |
2821 \\<blackbox-mode-map>To play blackbox, type \\[blackbox]. An optional prefix argument | |
2822 specifies the number of balls to be hidden in the box; the default is | |
2823 four. | |
2824 | |
2825 The cursor can be moved around the box with the standard cursor | |
2826 movement keys. | |
2827 | |
2828 To shoot a ray, move the cursor to the edge of the box and press SPC. | |
2829 The result will be determined and the playfield updated. | |
2830 | |
2831 You may place or remove balls in the box by moving the cursor into the | |
2832 box and pressing \\[bb-romp]. | |
2833 | |
2834 When you think the configuration of balls you have placed is correct, | |
2835 press \\[bb-done]. You will be informed whether you are correct or | |
2836 not, and be given your score. Your score is the number of letters and | |
2837 numbers around the outside of the box plus five for each incorrectly | |
2838 placed ball. If you placed any balls incorrectly, they will be | |
2839 indicated with `x', and their actual positions indicated with `o'. | |
2840 | |
2841 Details: | |
2842 | |
2843 There are three possible outcomes for each ray you send into the box: | |
2844 | |
2845 Detour: the ray is deflected and emerges somewhere other than | |
2846 where you sent it in. On the playfield, detours are | |
2847 denoted by matching pairs of numbers -- one where the | |
2848 ray went in, and the other where it came out. | |
2849 | |
2850 Reflection: the ray is reflected and emerges in the same place | |
2851 it was sent in. On the playfield, reflections are | |
2852 denoted by the letter `R'. | |
2853 | |
2854 Hit: the ray strikes a ball directly and is absorbed. It does | |
2855 not emerge from the box. On the playfield, hits are | |
2856 denoted by the letter `H'. | |
2857 | |
2858 The rules for how balls deflect rays are simple and are best shown by | |
2859 example. | |
2860 | |
2861 As a ray approaches a ball it is deflected ninety degrees. Rays can | |
2862 be deflected multiple times. In the diagrams below, the dashes | |
2863 represent empty box locations and the letter `O' represents a ball. | |
2864 The entrance and exit points of each ray are marked with numbers as | |
2865 described under \"Detour\" above. Note that the entrance and exit | |
2866 points are always interchangeable. `*' denotes the path taken by the | |
2867 ray. | |
2868 | |
2869 Note carefully the relative positions of the ball and the ninety | |
2870 degree deflection it causes. | |
2871 | |
2872 1 | |
2873 - * - - - - - - - - - - - - - - - - - - - - - - | |
2874 - * - - - - - - - - - - - - - - - - - - - - - - | |
2875 1 * * - - - - - - - - - - - - - - - O - - - - O - | |
2876 - - O - - - - - - - O - - - - - - - * * * * - - | |
2877 - - - - - - - - - - - * * * * * 2 3 * * * - - * - - | |
2878 - - - - - - - - - - - * - - - - - - - O - * - - | |
2879 - - - - - - - - - - - * - - - - - - - - * * - - | |
2880 - - - - - - - - - - - * - - - - - - - - * - O - | |
2881 2 3 | |
2882 | |
2883 As mentioned above, a reflection occurs when a ray emerges from the same point | |
2884 it was sent in. This can happen in several ways: | |
2885 | |
2886 | |
2887 - - - - - - - - - - - - - - - - - - - - - - - - | |
2888 - - - - O - - - - - O - O - - - - - - - - - - - | |
2889 R * * * * - - - - - - - * - - - - O - - - - - - - | |
2890 - - - - O - - - - - - * - - - - R - - - - - - - - | |
2891 - - - - - - - - - - - * - - - - - - - - - - - - | |
2892 - - - - - - - - - - - * - - - - - - - - - - - - | |
2893 - - - - - - - - R * * * * - - - - - - - - - - - - | |
2894 - - - - - - - - - - - - O - - - - - - - - - - - | |
2895 | |
2896 In the first example, the ray is deflected downwards by the upper | |
2897 ball, then left by the lower ball, and finally retraces its path to | |
2898 its point of origin. The second example is similar. The third | |
2899 example is a bit anomalous but can be rationalized by realizing the | |
2900 ray never gets a chance to get into the box. Alternatively, the ray | |
2901 can be thought of as being deflected downwards and immediately | |
2902 emerging from the box. | |
2903 | |
2904 A hit occurs when a ray runs straight into a ball: | |
2905 | |
2906 - - - - - - - - - - - - - - - - - - - - - - - - | |
2907 - - - - - - - - - - - - - - - - - - - - O - - - | |
2908 - - - - - - - - - - - - O - - - H * * * * - - - - | |
2909 - - - - - - - - H * * * * O - - - - - - * - - - - | |
2910 - - - - - - - - - - - - O - - - - - - O - - - - | |
2911 H * * * O - - - - - - - - - - - - - - - - - - - - | |
2912 - - - - - - - - - - - - - - - - - - - - - - - - | |
2913 - - - - - - - - - - - - - - - - - - - - - - - - | |
2914 | |
2915 Be sure to compare the second example of a hit with the first example of | |
2916 a reflection." t nil) | |
2917 | |
2918 ;;;*** | |
2919 | |
2920 ;;;### (autoloads (conx-load conx conx-region conx-buffer) "conx" "games/conx.el" (12984 30079)) | |
2921 ;;; Generated autoloads from games/conx.el | |
2922 | |
2923 (autoload 'conx-buffer "conx" "\ | |
2924 Absorb the text in the current buffer into the tree." t nil) | |
2925 | |
2926 (autoload 'conx-region "conx" "\ | |
2927 Absorb the text in the current region into the tree." t nil) | |
2928 | |
2929 (autoload 'conx "conx" "\ | |
2930 Generate some random sentences in the *conx* buffer." t nil) | |
2931 | |
2932 (autoload 'conx-load "conx" "\ | |
2933 Load in a CONX database written by the \\[conx-save] command. | |
2934 This clears the database currently in memory." t nil) | |
2935 | |
2936 ;;;*** | |
2937 | |
2938 ;;;### (autoloads (shuffle-vector cookie-snarf cookie-insert cookie) "cookie1" "games/cookie1.el" (12984 30076)) | |
2939 ;;; Generated autoloads from games/cookie1.el | |
2940 | |
2941 (autoload 'cookie "cookie1" "\ | |
2942 Return a random phrase from PHRASE-FILE. When the phrase file | |
2943 is read in, display STARTMSG at beginning of load, ENDMSG at end." nil nil) | |
2944 | |
2945 (autoload 'cookie-insert "cookie1" "\ | |
2946 Insert random phrases from PHRASE-FILE; COUNT of them. When the phrase file | |
2947 is read in, display STARTMSG at beginning of load, ENDMSG at end." nil nil) | |
2948 | |
2949 (autoload 'cookie-snarf "cookie1" "\ | |
2950 Reads in the PHRASE-FILE, returns it as a vector of strings. | |
2951 Emit STARTMSG and ENDMSG before and after. Caches the result; second | |
2952 and subsequent calls on the same file won't go to disk." nil nil) | |
2953 | |
2954 (autoload 'shuffle-vector "cookie1" "\ | |
2955 Randomly permute the elements of VECTOR (all permutations equally likely)" nil nil) | |
2956 | |
2957 ;;;*** | |
2958 | |
2959 ;;;### (autoloads (dissociated-press) "dissociate" "games/dissociate.el" (12984 30076)) | |
2960 ;;; Generated autoloads from games/dissociate.el | |
2961 | |
2962 (autoload 'dissociated-press "dissociate" "\ | |
2963 Dissociate the text of the current buffer. | |
2964 Output goes in buffer named *Dissociation*, | |
2965 which is redisplayed each time text is added to it. | |
2966 Every so often the user must say whether to continue. | |
2967 If ARG is positive, require ARG chars of continuity. | |
2968 If ARG is negative, require -ARG words of continuity. | |
2969 Default is 2." t nil) | |
2970 | |
2971 ;;;*** | |
2972 | |
2973 ;;;### (autoloads (doctor) "doctor" "games/doctor.el" (12984 30077)) | |
2974 ;;; Generated autoloads from games/doctor.el | |
2975 | |
2976 (autoload 'doctor "doctor" "\ | |
2977 Switch to *doctor* buffer and start giving psychotherapy." t nil) | |
2978 | |
2979 ;;;*** | |
2980 | |
2981 ;;;### (autoloads (dunnet) "dunnet" "games/dunnet.el" (12984 30080)) | |
2982 ;;; Generated autoloads from games/dunnet.el | |
2983 | |
2984 (autoload 'dunnet "dunnet" "\ | |
2985 Switch to *dungeon* buffer and start game." t nil) | |
2986 | |
2987 ;;;*** | |
2988 | |
2989 ;;;### (autoloads (flame) "flame" "games/flame.el" (12984 30079)) | |
2990 ;;; Generated autoloads from games/flame.el | |
2991 | |
2992 (autoload 'flame "flame" "\ | |
2993 Generate ARG (default 1) sentences of half-crazed gibberish." t nil) | |
2994 | |
2995 ;;;*** | |
2996 | |
2997 ;;;### (autoloads (gomoku) "gomoku" "games/gomoku.el" (12988 19780)) | |
2998 ;;; Generated autoloads from games/gomoku.el | |
2999 | |
3000 (autoload 'gomoku "gomoku" "\ | |
3001 Start a Gomoku game between you and Emacs. | |
3002 If a game is in progress, this command allow you to resume it. | |
3003 If optional arguments N and M are given, an N by M board is used. | |
3004 | |
3005 You and Emacs play in turn by marking a free square. You mark it with X | |
3006 and Emacs marks it with O. The winner is the first to get five contiguous | |
3007 marks horizontally, vertically or in diagonal. | |
3008 You play by moving the cursor over the square you choose and hitting | |
3009 \\<gomoku-mode-map>\\[gomoku-human-plays]. | |
3010 Use \\[describe-mode] for more info." t nil) | |
3011 | |
3012 ;;;*** | |
3013 | |
3014 ;;;### (autoloads (hanoi) "hanoi" "games/hanoi.el" (12984 30078)) | |
3015 ;;; Generated autoloads from games/hanoi.el | |
3016 | |
3017 (autoload 'hanoi "hanoi" "\ | |
3018 Towers of Hanoi diversion. Argument is number of rings." t nil) | |
3019 | |
3020 ;;;*** | |
3021 | |
3022 ;;;### (autoloads (life) "life" "games/life.el" (12984 30078)) | |
3023 ;;; Generated autoloads from games/life.el | |
3024 | |
3025 (autoload 'life "life" "\ | |
3026 Run Conway's Life simulation. | |
3027 The starting pattern is randomly selected. Prefix arg (optional first | |
3028 arg non-nil from a program) is the number of seconds to sleep between | |
3029 generations (this defaults to 1)." t nil) | |
3030 | |
3031 ;;;*** | |
3032 | |
3033 ;;;### (autoloads (mpuz) "mpuz" "games/mpuz.el" (12984 30078)) | |
3034 ;;; Generated autoloads from games/mpuz.el | |
3035 | |
3036 (autoload 'mpuz "mpuz" "\ | |
3037 Multiplication puzzle with GNU Emacs." t nil) | |
3038 | |
3039 ;;;*** | |
3040 | |
3041 ;;;### (autoloads (snarf-spooks spook) "spook" "games/spook.el" (12984 30078)) | |
3042 ;;; Generated autoloads from games/spook.el | |
3043 | |
3044 (autoload 'spook "spook" "\ | |
3045 Adds that special touch of class to your outgoing mail." t nil) | |
3046 | |
3047 (autoload 'snarf-spooks "spook" "\ | |
3048 Return a vector containing the lines from `spook-phrases-file'." nil nil) | |
3049 | |
3050 ;;;*** | |
3051 | |
3052 ;;;*** | |
3053 | |
3054 ;;;*** | |
3055 | |
3056 ;;;### (autoloads nil "studly" "games/studly.el" (12984 30080)) | |
3057 ;;; Generated autoloads from games/studly.el | |
3058 | |
3059 ;;;### (autoloads (psychoanalyze-pinhead apropos-zippy insert-zippyism yow) "yow" "games/yow.el" (12984 30079)) | |
3060 ;;; Generated autoloads from games/yow.el | |
3061 | |
3062 (autoload 'yow "yow" "\ | |
3063 Return or display a random Zippy quotation. With prefix arg, insert it." t nil) | |
3064 | |
3065 (autoload 'insert-zippyism "yow" "\ | |
3066 Prompt with completion for a known Zippy quotation, and insert it at point." t nil) | |
3067 | |
3068 (autoload 'apropos-zippy "yow" "\ | |
3069 Return a list of all Zippy quotes matching REGEXP. | |
3070 If called interactively, display a list of matches." t nil) | |
3071 | |
3072 (autoload 'psychoanalyze-pinhead "yow" "\ | |
3073 Zippy goes to the analyst." t nil) | |
3074 | |
3075 ;;;*** | |
3076 | |
3077 ;;;*** | |
3078 | |
3079 ;;;*** | |
3080 | |
3081 ;;;### (autoloads nil "custom" "gnus/custom.el" (12984 29536)) | |
3082 ;;; Generated autoloads from gnus/custom.el | |
3083 | |
3084 ;;;*** | |
3085 | |
3086 ;;;### (autoloads nil "dgnushack" "gnus/dgnushack.el" (12984 29536)) | |
3087 ;;; Generated autoloads from gnus/dgnushack.el | |
3088 | |
3089 ;;;### (autoloads (gnus-earcon-display) "earcon" "gnus/earcon.el" (12984 29539)) | |
3090 ;;; Generated autoloads from gnus/earcon.el | |
3091 | |
3092 (autoload 'gnus-earcon-display "earcon" "\ | |
3093 Play sounds in message buffers." t nil) | |
3094 | |
3095 ;;;*** | |
3096 | |
3097 ;;;### (autoloads (gnus-cache-generate-nov-databases gnus-cache-generate-active gnus-jog-cache) "gnus-cache" "gnus/gnus-cache.el" (12984 29536)) | |
3098 ;;; Generated autoloads from gnus/gnus-cache.el | |
3099 | |
3100 (autoload 'gnus-jog-cache "gnus-cache" "\ | |
3101 Go through all groups and put the articles into the cache." t nil) | |
3102 | |
3103 (autoload 'gnus-cache-generate-active "gnus-cache" "\ | |
3104 Generate the cache active file." t nil) | |
3105 | |
3106 (autoload 'gnus-cache-generate-nov-databases "gnus-cache" "\ | |
3107 Generate NOV files recursively starting in DIR." t nil) | |
3108 | |
3109 ;;;*** | |
3110 | |
3111 ;;;*** | |
3112 | |
3113 ;;;*** | |
3114 | |
3115 ;;;*** | |
3116 | |
3117 ;;;### (autoloads nil "gnus-cite" "gnus/gnus-cite.el" (12984 29536)) | |
3118 ;;; Generated autoloads from gnus/gnus-cite.el | |
3119 | |
3120 ;;;*** | |
3121 | |
3122 ;;;### (autoloads nil "gnus-cus" "gnus/gnus-cus.el" (12984 29536)) | |
3123 ;;; Generated autoloads from gnus/gnus-cus.el | |
3124 | |
3125 ;;;*** | |
3126 | |
3127 ;;;*** | |
3128 | |
3129 ;;;### (autoloads nil "gnus-demon" "gnus/gnus-demon.el" (12984 29538)) | |
3130 ;;; Generated autoloads from gnus/gnus-demon.el | |
3131 | |
3132 ;;;*** | |
3133 | |
3134 ;;;*** | |
3135 | |
3136 ;;;### (autoloads nil "gnus-edit" "gnus/gnus-edit.el" (12984 29536)) | |
3137 ;;; Generated autoloads from gnus/gnus-edit.el | |
3138 | |
3139 ;;;*** | |
3140 | |
3141 ;;;### (autoloads nil "gnus-ems" "gnus/gnus-ems.el" (12984 29537)) | |
3142 ;;; Generated autoloads from gnus/gnus-ems.el | |
3143 | |
3144 ;;;*** | |
3145 | |
3146 ;;;### (autoloads nil "gnus-gl" "gnus/gnus-gl.el" (12984 29536)) | |
3147 ;;; Generated autoloads from gnus/gnus-gl.el | |
3148 | |
3149 ;;;*** | |
3150 | |
3151 ;;;### (autoloads nil "gnus-kill" "gnus/gnus-kill.el" (12984 29537)) | |
3152 ;;; Generated autoloads from gnus/gnus-kill.el | |
3153 | |
3154 ;;;*** | |
3155 | |
3156 ;;;*** | |
3157 | |
3158 ;;;### (autoloads nil "gnus-mh" "gnus/gnus-mh.el" (12984 29537)) | |
3159 ;;; Generated autoloads from gnus/gnus-mh.el | |
3160 | |
3161 ;;;*** | |
3162 | |
3163 ;;;### (autoloads nil "gnus-msg" "gnus/gnus-msg.el" (12984 29537)) | |
3164 ;;; Generated autoloads from gnus/gnus-msg.el | |
3165 | |
3166 ;;;*** | |
3167 | |
3168 ;;;### (autoloads nil "gnus-nocem" "gnus/gnus-nocem.el" (12984 29538)) | |
3169 ;;; Generated autoloads from gnus/gnus-nocem.el | |
3170 | |
3171 ;;;*** | |
3172 | |
3173 ;;;### (autoloads nil "gnus-picon" "gnus/gnus-picon.el" (12984 29538)) | |
3174 ;;; Generated autoloads from gnus/gnus-picon.el | |
3175 | |
3176 ;;;*** | |
3177 | |
3178 ;;;### (autoloads nil "gnus-salt" "gnus/gnus-salt.el" (12984 29538)) | |
3179 ;;; Generated autoloads from gnus/gnus-salt.el | |
3180 | |
3181 ;;;*** | |
3182 | |
3183 ;;;### (autoloads nil "gnus-score" "gnus/gnus-score.el" (12984 29536)) | |
3184 ;;; Generated autoloads from gnus/gnus-score.el | |
3185 | |
3186 ;;;*** | |
3187 | |
3188 ;;;### (autoloads nil "gnus-setup" "gnus/gnus-setup.el" (12984 29538)) | |
3189 ;;; Generated autoloads from gnus/gnus-setup.el | |
3190 | |
3191 ;;;### (autoloads (gnus-sound-play) "gnus-sound" "gnus/gnus-sound.el" (12984 29539)) | |
3192 ;;; Generated autoloads from gnus/gnus-sound.el | |
3193 | |
3194 (autoload 'gnus-sound-play "gnus-sound" "\ | |
3195 Play a sound through the speaker." t nil) | |
3196 | |
3197 ;;;*** | |
3198 | |
3199 ;;;### (autoloads (gnus-batch-brew-soup) "gnus-soup" "gnus/gnus-soup.el" (12984 29538)) | |
3200 ;;; Generated autoloads from gnus/gnus-soup.el | |
3201 | |
3202 (autoload 'gnus-batch-brew-soup "gnus-soup" "\ | |
3203 Brew a SOUP packet from groups mention on the command line. | |
3204 Will use the remaining command line arguments as regular expressions | |
3205 for matching on group names. | |
3206 | |
3207 For instance, if you want to brew on all the nnml groups, as well as | |
3208 groups with \"emacs\" in the name, you could say something like: | |
3209 | |
3210 $ emacs -batch -f gnus-batch-brew-soup ^nnml \".*emacs.*\"" t nil) | |
3211 | |
3212 ;;;*** | |
3213 | |
3214 ;;;*** | |
3215 | |
3216 ;;;*** | |
3217 | |
3218 ;;;### (autoloads nil "gnus-srvr" "gnus/gnus-srvr.el" (12984 29538)) | |
3219 ;;; Generated autoloads from gnus/gnus-srvr.el | |
3220 | |
3221 ;;;*** | |
3222 | |
3223 ;;;*** | |
3224 | |
3225 ;;;### (autoloads nil "gnus-topic" "gnus/gnus-topic.el" (12984 29538)) | |
3226 ;;; Generated autoloads from gnus/gnus-topic.el | |
3227 | |
3228 ;;;*** | |
3229 | |
3230 ;;;### (autoloads nil "gnus-uu" "gnus/gnus-uu.el" (12984 29537)) | |
3231 ;;; Generated autoloads from gnus/gnus-uu.el | |
3232 | |
3233 ;;;*** | |
3234 | |
3235 ;;;### (autoloads nil "gnus-vis" "gnus/gnus-vis.el" (12984 29537)) | |
3236 ;;; Generated autoloads from gnus/gnus-vis.el | |
3237 | |
3238 ;;;*** | |
3239 | |
3240 ;;;### (autoloads nil "gnus-vm" "gnus/gnus-vm.el" (12984 29537)) | |
3241 ;;; Generated autoloads from gnus/gnus-vm.el | |
3242 | |
3243 ;;;*** | |
3244 | |
3245 ;;;### (autoloads nil "gnus-xmas" "gnus/gnus-xmas.el" (12984 29538)) | |
3246 ;;; Generated autoloads from gnus/gnus-xmas.el | |
3247 | |
3248 ;;;*** | |
3249 | |
3250 ;;;### (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" (12984 29535)) | |
3251 ;;; Generated autoloads from gnus/gnus.el | |
3252 | |
3253 (autoload 'gnus-update-format "gnus" "\ | |
3254 Update the format specification near point." t nil) | |
3255 | |
3256 (autoload 'gnus-add-configuration "gnus" "\ | |
3257 Add the window configuration CONF to `gnus-buffer-configuration'." nil nil) | |
3258 | |
3259 (autoload 'gnus-slave-no-server "gnus" "\ | |
3260 Read network news as a slave, without connecting to local server" t nil) | |
3261 | |
3262 (autoload 'gnus-no-server "gnus" "\ | |
3263 Read network news. | |
3264 If ARG is a positive number, Gnus will use that as the | |
3265 startup level. If ARG is nil, Gnus will be started at level 2. | |
3266 If ARG is non-nil and not a positive number, Gnus will | |
3267 prompt the user for the name of an NNTP server to use. | |
3268 As opposed to `gnus', this command will not connect to the local server." t nil) | |
3269 | |
3270 (autoload 'gnus-slave "gnus" "\ | |
3271 Read news as a slave." t nil) | |
3272 | |
3273 (autoload 'gnus-other-frame "gnus" "\ | |
3274 Pop up a frame to read news." t nil) | |
3275 | |
3276 (autoload 'gnus "gnus" "\ | |
3277 Read network news. | |
3278 If ARG is non-nil and a positive number, Gnus will use that as the | |
3279 startup level. If ARG is non-nil and not a positive number, Gnus will | |
3280 prompt the user for the name of an NNTP server to use." t nil) | |
3281 | |
3282 (autoload 'gnus-fetch-group "gnus" "\ | |
3283 Start Gnus if necessary and enter GROUP. | |
3284 Returns whether the fetching was successful or not." t nil) | |
3285 | |
3286 (defalias 'gnus-batch-kill 'gnus-batch-score) | |
3287 | |
3288 (autoload 'gnus-batch-score "gnus" "\ | |
3289 Run batched scoring. | |
3290 Usage: emacs -batch -l gnus -f gnus-batch-score <newsgroups> ... | |
3291 Newsgroups is a list of strings in Bnews format. If you want to score | |
3292 the comp hierarchy, you'd say \"comp.all\". If you would not like to | |
3293 score the alt hierarchy, you'd say \"!alt.all\"." t nil) | |
3294 | |
3295 ;;;*** | |
3296 | |
3297 ;;;*** | |
3298 | |
3299 ;;;### (autoloads nil "mailheader" "gnus/mailheader.el" (12984 29538)) | |
3300 ;;; Generated autoloads from gnus/mailheader.el | |
3301 | |
3302 ;;;### (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" (12984 29538)) | |
3303 ;;; Generated autoloads from gnus/message.el | |
3304 | |
3305 (defvar message-fcc-handler-function 'rmail-output "\ | |
3306 *A function called to save outgoing articles. | |
3307 This function will be called with the name of the file to store the | |
3308 article in. The default function is `rmail-output' which saves in Unix | |
3309 mailbox format.") | |
3310 | |
3311 (defvar message-courtesy-message "The following message is a courtesy copy of an article\nthat has been posted as well.\n\n" "\ | |
3312 *This is inserted at the start of a mailed copy of a posted message. | |
3313 If this variable is nil, no such courtesy message will be added.") | |
3314 | |
3315 (defvar message-ignored-bounced-headers "^\\(Received\\|Return-Path\\):" "\ | |
3316 *Regexp that matches headers to be removed in resent bounced mail.") | |
3317 | |
3318 (defvar message-from-style 'default "\ | |
3319 *Specifies how \"From\" headers look. | |
3320 | |
3321 If `nil', they contain just the return address like: | |
3322 king@grassland.com | |
3323 If `parens', they look like: | |
3324 king@grassland.com (Elvis Parsley) | |
3325 If `angles', they look like: | |
3326 Elvis Parsley <king@grassland.com> | |
3327 | |
3328 Otherwise, most addresses look like `angles', but they look like | |
3329 `parens' if `angles' would need quoting and `parens' would not.") | |
3330 | |
3331 (defvar message-syntax-checks nil "\ | |
3332 Controls what syntax checks should not be performed on outgoing posts. | |
3333 To disable checking of long signatures, for instance, add | |
3334 `(signature . disabled)' to this list. | |
3335 | |
3336 Don't touch this variable unless you really know what you're doing. | |
3337 | |
3338 Checks include subject-cmsg multiple-headers sendsys message-id from | |
3339 long-lines control-chars size new-text redirected-followup signature | |
3340 approved sender empty empty-headers message-id from subject.") | |
3341 | |
3342 (defvar message-required-news-headers '(From Newsgroups Subject Date Message-ID (optional . Organization) Lines (optional . X-Newsreader)) "\ | |
3343 *Headers to be generated or prompted for when posting an article. | |
3344 RFC977 and RFC1036 require From, Date, Newsgroups, Subject, | |
3345 Message-ID. Organization, Lines, In-Reply-To, Expires, and | |
3346 X-Newsreader are optional. If don't you want message to insert some | |
3347 header, remove it from this list.") | |
3348 | |
3349 (defvar message-required-mail-headers '(From Subject Date (optional . In-Reply-To) Message-ID Lines (optional . X-Mailer)) "\ | |
3350 *Headers to be generated or prompted for when mailing a message. | |
3351 RFC822 required that From, Date, To, Subject and Message-ID be | |
3352 included. Organization, Lines and X-Mailer are optional.") | |
3353 | |
3354 (defvar message-deletable-headers '(Message-ID Date) "\ | |
3355 *Headers to be deleted if they already exist and were generated by message previously.") | |
3356 | |
3357 (defvar message-ignored-news-headers "^NNTP-Posting-Host:\\|^Xref:\\|^Bcc:\\|^Gcc:\\|^Fcc:" "\ | |
3358 *Regexp of headers to be removed unconditionally before posting.") | |
3359 | |
3360 (defvar message-ignored-mail-headers "^Gcc:\\|^Fcc:" "\ | |
3361 *Regexp of headers to be removed unconditionally before mailing.") | |
3362 | |
3363 (defvar message-ignored-supersedes-headers "^Path:\\|^Date\\|^NNTP-Posting-Host:\\|^Xref:\\|^Lines:\\|^Received:\\|^X-From-Line:\\|Return-Path:\\|^Supersedes:" "\ | |
3364 *Header lines matching this regexp will be deleted before posting. | |
3365 It's best to delete old Path and Date headers before posting to avoid | |
3366 any confusion.") | |
3367 | |
3368 (defvar message-signature-separator "^-- *$" "\ | |
3369 Regexp matching the signature separator.") | |
3370 | |
3371 (defvar message-interactive nil "\ | |
3372 Non-nil means when sending a message wait for and display errors. | |
3373 nil means let mailer mail back a message to report errors.") | |
3374 | |
3375 (defvar message-generate-new-buffers t "\ | |
3376 *Non-nil means that a new message buffer will be created whenever `mail-setup' is called. | |
3377 If this is a function, call that function with three parameters: The type, | |
3378 the to address and the group name. (Any of these may be nil.) The function | |
3379 should return the new buffer name.") | |
3380 | |
3381 (defvar message-kill-buffer-on-exit nil "\ | |
3382 *Non-nil means that the message buffer will be killed after sending a message.") | |
3383 | |
3384 (defvar message-user-organization-file "/usr/lib/news/organization" "\ | |
3385 *Local news organization file.") | |
3386 | |
3387 (defvar message-signature-before-forwarded-message t "\ | |
3388 *If non-nil, put the signature before any included forwarded message.") | |
3389 | |
3390 (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:" "\ | |
3391 *Regexp matching headers to be included in forwarded messages.") | |
3392 | |
3393 (defvar message-ignored-resent-headers "^Return-receipt" "\ | |
3394 *All headers that match this regexp will be deleted when resending a message.") | |
3395 | |
3396 (defvar message-ignored-cited-headers "." "\ | |
3397 Delete these headers from the messages you yank.") | |
3398 | |
3399 (defvar message-send-mail-function 'message-send-mail-with-sendmail "\ | |
3400 Function to call to send the current buffer as mail. | |
3401 The headers should be delimited by a line whose contents match the | |
3402 variable `mail-header-separator'. | |
3403 | |
3404 Legal values include `message-send-mail-with-mh' and | |
3405 `message-send-mail-with-sendmail', which is the default.") | |
3406 | |
3407 (defvar message-send-news-function 'message-send-news "\ | |
3408 Function to call to send the current buffer as news. | |
3409 The headers should be delimited by a line whose contents match the | |
3410 variable `mail-header-separator'.") | |
3411 | |
3412 (defvar message-reply-to-function nil "\ | |
3413 Function that should return a list of headers. | |
3414 This function should pick out addresses from the To, Cc, and From headers | |
3415 and respond with new To and Cc headers.") | |
3416 | |
3417 (defvar message-wide-reply-to-function nil "\ | |
3418 Function that should return a list of headers. | |
3419 This function should pick out addresses from the To, Cc, and From headers | |
3420 and respond with new To and Cc headers.") | |
3421 | |
3422 (defvar message-followup-to-function nil "\ | |
3423 Function that should return a list of headers. | |
3424 This function should pick out addresses from the To, Cc, and From headers | |
3425 and respond with new To and Cc headers.") | |
3426 | |
3427 (defvar message-use-followup-to 'ask "\ | |
3428 *Specifies what to do with Followup-To header. | |
3429 If nil, ignore the header. If it is t, use its value, but query before | |
3430 using the \"poster\" value. If it is the symbol `ask', query the user | |
3431 whether to ignore the \"poster\" value. If it is the symbol `use', | |
3432 always use the value.") | |
3433 | |
3434 (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 ""))) "\ | |
3435 Method used to post news.") | |
3436 | |
3437 (defvar message-generate-headers-first nil "\ | |
3438 *If non-nil, generate all possible headers before composing.") | |
3439 | |
3440 (defvar message-citation-line-function 'message-insert-citation-line "\ | |
3441 *Function called to insert the \"Whomever writes:\" line.") | |
3442 | |
3443 (defvar message-yank-prefix "> " "\ | |
3444 *Prefix inserted on the lines of yanked messages. | |
3445 nil means use indentation.") | |
3446 | |
3447 (defvar message-cite-function 'message-cite-original "\ | |
3448 *Function for citing an original message.") | |
3449 | |
3450 (defvar message-indent-citation-function 'message-indent-citation "\ | |
3451 *Function for modifying a citation just inserted in the mail buffer. | |
3452 This can also be a list of functions. Each function can find the | |
3453 citation between (point) and (mark t). And each function should leave | |
3454 point and mark around the citation text as modified.") | |
3455 | |
3456 (defvar message-signature t "\ | |
3457 *String to be inserted at the end of the message buffer. | |
3458 If t, the `message-signature-file' file will be inserted instead. | |
3459 If a function, the result from the function will be used instead. | |
3460 If a form, the result from the form will be used instead.") | |
3461 | |
3462 (defvar message-signature-file "~/.signature" "\ | |
3463 *File containing the text inserted at end of message. buffer.") | |
3464 | |
3465 (defvar message-default-headers nil "\ | |
3466 *A string containing header lines to be inserted in outgoing messages. | |
3467 It is inserted before you edit the message, so you can edit or delete | |
3468 these lines.") | |
3469 | |
3470 (defvar message-default-mail-headers nil "\ | |
3471 *A string of header lines to be inserted in outgoing mails.") | |
3472 | |
3473 (defvar message-default-news-headers nil "\ | |
3474 *A string of header lines to be inserted in outgoing news articles.") | |
3475 | |
3476 (autoload 'message-mode "message" "\ | |
3477 Major mode for editing mail and news to be sent. | |
3478 Like Text Mode but with these additional commands: | |
3479 C-c C-s message-send (send the message) C-c C-c message-send-and-exit | |
3480 C-c C-f move to a header field (and create it if there isn't): | |
3481 C-c C-f C-t move to To C-c C-f C-s move to Subject | |
3482 C-c C-f C-c move to Cc C-c C-f C-b move to Bcc | |
3483 C-c C-f C-f move to Fcc C-c C-f C-r move to Reply-To | |
3484 C-c C-f C-u move to Summary C-c C-f C-n move to Newsgroups | |
3485 C-c C-f C-k move to Keywords C-c C-f C-d move to Distribution | |
3486 C-c C-f C-o move to Followup-To | |
3487 C-c C-t message-insert-to (add a To header to a news followup) | |
3488 C-c C-n message-insert-newsgroups (add a Newsgroup header to a news reply) | |
3489 C-c C-b message-goto-body (move to beginning of message text). | |
3490 C-c C-i message-goto-signature (move to the beginning of the signature). | |
3491 C-c C-w message-insert-signature (insert `message-signature-file' file). | |
3492 C-c C-y message-yank-original (insert current message, if any). | |
3493 C-c C-q message-fill-yanked-message (fill what was yanked). | |
3494 C-c C-r message-ceasar-buffer-body (rot13 the message body)." t nil) | |
3495 | |
3496 (autoload 'message-mail "message" "\ | |
3497 Start editing a mail message to be sent." t nil) | |
3498 | |
3499 (autoload 'message-news "message" "\ | |
3500 Start editing a news article to be sent." t nil) | |
3501 | |
3502 (autoload 'message-reply "message" "\ | |
3503 Start editing a reply to the article in the current buffer." t nil) | |
3504 | |
3505 (autoload 'message-wide-reply "message" nil t nil) | |
3506 | |
3507 (autoload 'message-followup "message" nil t nil) | |
3508 | |
3509 (autoload 'message-cancel-news "message" "\ | |
3510 Cancel an article you posted." t nil) | |
3511 | |
3512 (autoload 'message-supersede "message" "\ | |
3513 Start composing a message to supersede the current message. | |
3514 This is done simply by taking the old article and adding a Supersedes | |
3515 header line with the old Message-ID." t nil) | |
3516 | |
3517 (autoload 'message-recover "message" "\ | |
3518 Reread contents of current buffer from its last auto-save file." t nil) | |
3519 | |
3520 (autoload 'message-forward "message" "\ | |
3521 Forward the current message via mail. | |
3522 Optional NEWS will use news to forward instead of mail." t nil) | |
3523 | |
3524 (autoload 'message-resend "message" "\ | |
3525 Resend the current article to ADDRESS." t nil) | |
3526 | |
3527 (autoload 'message-bounce "message" "\ | |
3528 Re-mail the current message. | |
3529 This only makes sense if the current message is a bounce message than | |
3530 contains some mail you have written which has been bounced back to | |
3531 you." t nil) | |
3532 | |
3533 (autoload 'message-mail-other-window "message" "\ | |
3534 Like `message-mail' command, but display mail buffer in another window." t nil) | |
3535 | |
3536 (autoload 'message-mail-other-frame "message" "\ | |
3537 Like `message-mail' command, but display mail buffer in another frame." t nil) | |
3538 | |
3539 (autoload 'message-news-other-window "message" "\ | |
3540 Start editing a news article to be sent." t nil) | |
3541 | |
3542 (autoload 'message-news-other-frame "message" "\ | |
3543 Start editing a news article to be sent." t nil) | |
3544 | |
3545 (autoload 'bold-region "message" "\ | |
3546 Bold all nonblank characters in the region. | |
3547 Works by overstriking characters. | |
3548 Called from program, takes two arguments START and END | |
3549 which specify the range to operate on." t nil) | |
3550 | |
3551 (autoload 'unbold-region "message" "\ | |
3552 Remove all boldness (overstruck characters) in the region. | |
3553 Called from program, takes two arguments START and END | |
3554 which specify the range to operate on." t nil) | |
3555 | |
3556 ;;;*** | |
3557 | |
3558 ;;;*** | |
3559 | |
3560 ;;;*** | |
3561 | |
3562 ;;;### (autoloads nil "messagexmas" "gnus/messagexmas.el" (12984 29539)) | |
3563 ;;; Generated autoloads from gnus/messagexmas.el | |
3564 | |
3565 ;;;*** | |
3566 | |
3567 ;;;### (autoloads nil "messcompat" "gnus/messcompat.el" (12984 29539)) | |
3568 ;;; Generated autoloads from gnus/messcompat.el | |
3569 | |
3570 ;;;*** | |
3571 | |
3572 ;;;### (autoloads nil "nnbabyl" "gnus/nnbabyl.el" (12984 29537)) | |
3573 ;;; Generated autoloads from gnus/nnbabyl.el | |
3574 | |
3575 ;;;*** | |
3576 | |
3577 ;;;### (autoloads nil "nndb" "gnus/nndb.el" (12984 29538)) | |
3578 ;;; Generated autoloads from gnus/nndb.el | |
3579 | |
3580 ;;;*** | |
3581 | |
3582 ;;;### (autoloads nil "nndir" "gnus/nndir.el" (12984 29537)) | |
3583 ;;; Generated autoloads from gnus/nndir.el | |
3584 | |
3585 ;;;*** | |
3586 | |
3587 ;;;### (autoloads nil "nndoc" "gnus/nndoc.el" (12984 29537)) | |
3588 ;;; Generated autoloads from gnus/nndoc.el | |
3589 | |
3590 ;;;*** | |
3591 | |
3592 ;;;*** | |
3593 | |
3594 ;;;### (autoloads nil "nndraft" "gnus/nndraft.el" (12984 29539)) | |
3595 ;;; Generated autoloads from gnus/nndraft.el | |
3596 | |
3597 ;;;*** | |
3598 | |
3599 ;;;### (autoloads nil "nneething" "gnus/nneething.el" (12984 29537)) | |
3600 ;;; Generated autoloads from gnus/nneething.el | |
3601 | |
3602 ;;;### (autoloads (nnfolder-generate-active-file) "nnfolder" "gnus/nnfolder.el" (12984 29537)) | |
3603 ;;; Generated autoloads from gnus/nnfolder.el | |
3604 | |
3605 (autoload 'nnfolder-generate-active-file "nnfolder" "\ | |
3606 Look for mbox folders in the nnfolder directory and make them into groups." t nil) | |
3607 | |
3608 ;;;*** | |
3609 | |
3610 ;;;*** | |
3611 | |
3612 ;;;*** | |
3613 | |
3614 ;;;### (autoloads nil "nnheader" "gnus/nnheader.el" (12984 29537)) | |
3615 ;;; Generated autoloads from gnus/nnheader.el | |
3616 | |
3617 ;;;*** | |
3618 | |
3619 ;;;*** | |
3620 | |
3621 ;;;### (autoloads nil "nnheaderxm" "gnus/nnheaderxm.el" (12984 29539)) | |
3622 ;;; Generated autoloads from gnus/nnheaderxm.el | |
3623 | |
3624 ;;;*** | |
3625 | |
3626 ;;;### (autoloads (nnkiboze-generate-groups) "nnkiboze" "gnus/nnkiboze.el" (12984 29537)) | |
3627 ;;; Generated autoloads from gnus/nnkiboze.el | |
3628 | |
3629 (autoload 'nnkiboze-generate-groups "nnkiboze" "\ | |
3630 Usage: emacs -batch -l nnkiboze -f nnkiboze-generate-groups | |
3631 Finds out what articles are to be part of the nnkiboze groups." t nil) | |
3632 | |
3633 ;;;*** | |
3634 | |
3635 ;;;*** | |
3636 | |
3637 ;;;### (autoloads nil "nnmail" "gnus/nnmail.el" (12984 29537)) | |
3638 ;;; Generated autoloads from gnus/nnmail.el | |
3639 | |
3640 ;;;*** | |
3641 | |
3642 ;;;### (autoloads nil "nnmbox" "gnus/nnmbox.el" (12984 29537)) | |
3643 ;;; Generated autoloads from gnus/nnmbox.el | |
3644 | |
3645 ;;;*** | |
3646 | |
3647 ;;;### (autoloads nil "nnmh" "gnus/nnmh.el" (12984 29536)) | |
3648 ;;; Generated autoloads from gnus/nnmh.el | |
3649 | |
3650 ;;;*** | |
3651 | |
3652 ;;;### (autoloads (nnml-generate-nov-databases) "nnml" "gnus/nnml.el" (12984 29537)) | |
3653 ;;; Generated autoloads from gnus/nnml.el | |
3654 | |
3655 (autoload 'nnml-generate-nov-databases "nnml" "\ | |
3656 Generate nov databases in all nnml directories." t nil) | |
3657 | |
3658 ;;;*** | |
3659 | |
3660 ;;;*** | |
3661 | |
3662 ;;;### (autoloads nil "nnoo" "gnus/nnoo.el" (12984 29538)) | |
3663 ;;; Generated autoloads from gnus/nnoo.el | |
3664 | |
3665 ;;;### (autoloads (nnsoup-revert-variables nnsoup-set-variables nnsoup-pack-replies) "nnsoup" "gnus/nnsoup.el" (12984 29538)) | |
3666 ;;; Generated autoloads from gnus/nnsoup.el | |
3667 | |
3668 (autoload 'nnsoup-pack-replies "nnsoup" "\ | |
3669 Make an outbound package of SOUP replies." t nil) | |
3670 | |
3671 (autoload 'nnsoup-set-variables "nnsoup" "\ | |
3672 Use the SOUP methods for posting news and mailing mail." t nil) | |
3673 | |
3674 (autoload 'nnsoup-revert-variables "nnsoup" "\ | |
3675 Revert posting and mailing methods to the standard Emacs methods." t nil) | |
3676 | |
3677 ;;;*** | |
3678 | |
3679 ;;;*** | |
3680 | |
3681 ;;;*** | |
3682 | |
3683 ;;;### (autoloads nil "nnspool" "gnus/nnspool.el" (12984 29536)) | |
3684 ;;; Generated autoloads from gnus/nnspool.el | |
3685 | |
3686 ;;;*** | |
3687 | |
3688 ;;;### (autoloads nil "nntp" "gnus/nntp.el" (12984 29536)) | |
3689 ;;; Generated autoloads from gnus/nntp.el | |
3690 | |
3691 ;;;*** | |
3692 | |
3693 ;;;### (autoloads nil "nnvirtual" "gnus/nnvirtual.el" (12984 29537)) | |
3694 ;;; Generated autoloads from gnus/nnvirtual.el | |
3695 | |
3696 ;;;### (autoloads (gnus-score-mode) "score-mode" "gnus/score-mode.el" (12984 29538)) | |
3697 ;;; Generated autoloads from gnus/score-mode.el | |
3698 | |
3699 (autoload 'gnus-score-mode "score-mode" "\ | |
3700 Mode for editing Gnus score files. | |
3701 This mode is an extended emacs-lisp mode. | |
3702 | |
3703 \\{gnus-score-mode-map}" t nil) | |
3704 | |
3705 ;;;*** | |
3706 | |
3707 ;;;### (autoloads (gnus-smiley-display smiley-buffer smiley-region) "smiley" "gnus/smiley.el" (12984 29539)) | |
3708 ;;; Generated autoloads from gnus/smiley.el | |
3709 | |
3710 (autoload 'smiley-region "smiley" "\ | |
3711 Smilify the region between point and mark." t nil) | |
3712 | |
3713 (autoload 'smiley-buffer "smiley" nil t nil) | |
3714 | |
3715 (autoload 'gnus-smiley-display "smiley" nil t nil) | |
3716 | |
3717 ;;;*** | |
3718 | |
3719 ;;;*** | |
3720 | |
3721 ;;;*** | |
3722 | |
3723 ;;;*** | |
3724 | |
3725 ;;;### (autoloads nil "adapt" "hm--html-menus/adapt.el" (12984 29576)) | |
3726 ;;; Generated autoloads from hm--html-menus/adapt.el | |
3727 | |
3728 ;;;*** | |
3729 | |
3730 ;;;### (autoloads nil "hm--date" "hm--html-menus/hm--date.el" (12984 29576)) | |
3731 ;;; Generated autoloads from hm--html-menus/hm--date.el | |
3732 | |
3733 ;;;*** | |
3734 | |
3735 ;;;### (autoloads nil "hm--html-configuration" "hm--html-menus/hm--html-configuration.el" (12984 29576)) | |
3736 ;;; Generated autoloads from hm--html-menus/hm--html-configuration.el | |
3737 | |
3738 ;;;*** | |
3739 | |
3740 ;;;### (autoloads nil "hm--html-drag-and-drop" "hm--html-menus/hm--html-drag-and-drop.el" (12984 29576)) | |
3741 ;;; Generated autoloads from hm--html-menus/hm--html-drag-and-drop.el | |
3742 | |
3743 ;;;*** | |
3744 | |
3745 ;;;*** | |
3746 | |
3747 ;;;### (autoloads nil "hm--html-keys" "hm--html-menus/hm--html-keys.el" (12984 29576)) | |
3748 ;;; Generated autoloads from hm--html-menus/hm--html-keys.el | |
3749 | |
3750 ;;;*** | |
3751 | |
3752 ;;;*** | |
3753 | |
3754 ;;;### (autoloads nil "hm--html-menu" "hm--html-menus/hm--html-menu.el" (12984 29576)) | |
3755 ;;; Generated autoloads from hm--html-menus/hm--html-menu.el | |
3756 | |
3757 ;;;*** | |
3758 | |
3759 ;;;### (autoloads (hm--html-minor-mode hm--html-mode) "hm--html-mode" "hm--html-menus/hm--html-mode.el" (12984 29576)) | |
3760 ;;; Generated autoloads from hm--html-menus/hm--html-mode.el | |
3761 | |
3762 (autoload 'hm--html-mode "hm--html-mode" "\ | |
3763 Major mode for editing HTML hypertext documents. | |
3764 Special commands:\\{hm--html-mode-map} | |
3765 Turning on hm--html-mode calls the value of the variable hm--html-mode-hook, | |
3766 if that value is non-nil." t nil) | |
3767 | |
3768 (autoload 'hm--html-minor-mode "hm--html-mode" "\ | |
3769 Toggle hm--html-minor-mode. | |
3770 With arg, turn hm--html-minor-mode on iff arg is positive." t nil) | |
3771 | |
3772 ;;;*** | |
3773 | |
3774 ;;;*** | |
3775 | |
3776 ;;;### (autoloads nil "hm--html" "hm--html-menus/hm--html.el" (12984 29576)) | |
3777 ;;; Generated autoloads from hm--html-menus/hm--html.el | |
3778 | |
3779 ;;;### (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" (12984 29576)) | |
3780 ;;; Generated autoloads from hm--html-menus/html-view.el | |
3781 | |
3782 (autoload 'html-view-start-mosaic "html-view" "\ | |
3783 Start Mosaic." t nil) | |
3784 | |
3785 (autoload 'html-view-view-file "html-view" "\ | |
3786 View an html file with Mosaic." t nil) | |
3787 | |
3788 (autoload 'html-view-view-buffer "html-view" "\ | |
3789 View html buffer with Mosaic. | |
3790 If BUFFER-TO-VIEW is nil, then the current buffer is used." t nil) | |
3791 | |
3792 (autoload 'html-view-goto-url "html-view" "\ | |
3793 Goto an URL in Mosaic." t nil) | |
3794 | |
3795 (autoload 'html-view-get-display "html-view" "\ | |
3796 Get the display for Mosaic." t nil) | |
3797 | |
3798 ;;;*** | |
3799 | |
3800 ;;;*** | |
3801 | |
3802 ;;;*** | |
3803 | |
3804 ;;;### (autoloads nil "internal-drag-and-drop" "hm--html-menus/internal-drag-and-drop.el" (12984 29576)) | |
3805 ;;; Generated autoloads from hm--html-menus/internal-drag-and-drop.el | |
3806 | |
3807 ;;;*** | |
3808 | |
3809 ;;;### (autoloads nil "tmpl-minor-mode" "hm--html-menus/tmpl-minor-mode.el" (12984 29576)) | |
3810 ;;; Generated autoloads from hm--html-menus/tmpl-minor-mode.el | |
3811 | |
3812 ;;;*** | |
3813 | |
3814 ;;;### (autoloads nil "hact" "hyperbole/hact.el" (12984 29571)) | |
3815 ;;; Generated autoloads from hyperbole/hact.el | |
3816 | |
3817 ;;;*** | |
3818 | |
3819 ;;;### (autoloads nil "hactypes" "hyperbole/hactypes.el" (12984 29571)) | |
3820 ;;; Generated autoloads from hyperbole/hactypes.el | |
3821 | |
3822 ;;;*** | |
3823 | |
3824 ;;;### (autoloads nil "hargs" "hyperbole/hargs.el" (12984 29571)) | |
3825 ;;; Generated autoloads from hyperbole/hargs.el | |
3826 | |
3827 ;;;*** | |
3828 | |
3829 ;;;### (autoloads nil "hbdata" "hyperbole/hbdata.el" (12984 29571)) | |
3830 ;;; Generated autoloads from hyperbole/hbdata.el | |
3831 | |
3832 ;;;*** | |
3833 | |
3834 ;;;### (autoloads nil "hbmap" "hyperbole/hbmap.el" (12984 29571)) | |
3835 ;;; Generated autoloads from hyperbole/hbmap.el | |
3836 | |
3837 ;;;*** | |
3838 | |
3839 ;;;### (autoloads nil "hbut" "hyperbole/hbut.el" (12984 29571)) | |
3840 ;;; Generated autoloads from hyperbole/hbut.el | |
3841 | |
3842 ;;;*** | |
3843 | |
3844 ;;;### (autoloads nil "hgnus" "hyperbole/hgnus.el" (12984 29571)) | |
3845 ;;; Generated autoloads from hyperbole/hgnus.el | |
3846 | |
3847 ;;;*** | |
3848 | |
3849 ;;;### (autoloads nil "hhist" "hyperbole/hhist.el" (12984 29571)) | |
3850 ;;; Generated autoloads from hyperbole/hhist.el | |
3851 | |
3852 ;;;*** | |
3853 | |
3854 ;;;### (autoloads nil "hib-doc-id" "hyperbole/hib-doc-id.el" (12984 29571)) | |
3855 ;;; Generated autoloads from hyperbole/hib-doc-id.el | |
3856 | |
3857 ;;;*** | |
3858 | |
3859 ;;;### (autoloads nil "hib-kbd" "hyperbole/hib-kbd.el" (12984 29571)) | |
3860 ;;; Generated autoloads from hyperbole/hib-kbd.el | |
3861 | |
3862 ;;;*** | |
3863 | |
3864 ;;;### (autoloads nil "hibtypes" "hyperbole/hibtypes.el" (12984 29571)) | |
3865 ;;; Generated autoloads from hyperbole/hibtypes.el | |
3866 | |
3867 ;;;*** | |
3868 | |
3869 ;;;### (autoloads nil "hinit" "hyperbole/hinit.el" (12984 29571)) | |
3870 ;;; Generated autoloads from hyperbole/hinit.el | |
3871 | |
3872 ;;;*** | |
3873 | |
3874 ;;;### (autoloads nil "hlvar" "hyperbole/hlvar.el" (12984 29571)) | |
3875 ;;; Generated autoloads from hyperbole/hlvar.el | |
3876 | |
3877 ;;;*** | |
3878 | |
3879 ;;;### (autoloads (hmail:compose) "hmail" "hyperbole/hmail.el" (12984 29571)) | |
3880 ;;; Generated autoloads from hyperbole/hmail.el | |
3881 | |
3882 (autoload 'hmail:compose "hmail" "\ | |
3883 Compose mail with ADDRESS and evaluation of EXPR. | |
3884 Optional SUBJECT and HELP message may also be given." t nil) | |
3885 | |
3886 ;;;*** | |
3887 | |
3888 ;;;*** | |
3889 | |
3890 ;;;### (autoloads nil "hmh" "hyperbole/hmh.el" (12984 29571)) | |
3891 ;;; Generated autoloads from hyperbole/hmh.el | |
3892 | |
3893 ;;;*** | |
3894 | |
3895 ;;;### (autoloads nil "hmoccur" "hyperbole/hmoccur.el" (12984 29571)) | |
3896 ;;; Generated autoloads from hyperbole/hmoccur.el | |
3897 | |
3898 ;;;*** | |
3899 | |
3900 ;;;### (autoloads (Info-handle-in-note smart-info-assist smart-info) "hmous-info" "hyperbole/hmous-info.el" (12984 29572)) | |
3901 ;;; Generated autoloads from hyperbole/hmous-info.el | |
3902 | |
3903 (autoload 'smart-info "hmous-info" "\ | |
3904 Walks through Info documentation networks using one key or mouse key. | |
3905 | |
3906 If key is pressed within: | |
3907 (1) the first line of an Info Menu Entry or Cross Reference, the desired node | |
3908 is found; | |
3909 (2) the Up, Next, or Previous entries of a Node Header (first line), | |
3910 the desired node is found; | |
3911 (3) the File entry of a Node Header (first line), | |
3912 the 'Top' node within that file is found; | |
3913 (4) at the end of the current node, the Next node is found (this will | |
3914 descend subtrees if the function 'Info-global-next' is bound); | |
3915 (5) anywhere else (e.g. at the end of a line), the current node entry is | |
3916 scrolled up one windowful. | |
3917 | |
3918 Returns t if key is pressed within an Info Node Header, Cross Reference, | |
3919 or a Menu; otherwise returns nil." t nil) | |
3920 | |
3921 (autoload 'smart-info-assist "hmous-info" "\ | |
3922 Walks through Info documentation networks using one assist-key or mouse assist-key. | |
3923 | |
3924 If assist-key is pressed within: | |
3925 (1) the first line of an Info Menu Entry or Cross Reference, the desired node | |
3926 is found; | |
3927 (2) the Up, Next, or Previous entries of a Node Header (first line), | |
3928 the last node in the history list is found; | |
3929 (3) the File entry of a Node Header (first line), | |
3930 the 'DIR' root-level node is found; | |
3931 (4) at the end of the current node, the Previous node is found (this will | |
3932 return from subtrees if the function 'Info-global-prev is bound); | |
3933 (5) anywhere else (e.g. at the end of a line), the current node entry is | |
3934 scrolled down one windowful. | |
3935 | |
3936 Returns t if assist-key is pressed within an Info Node Header, Cross Reference, | |
3937 or a Menu; otherwise returns nil." t nil) | |
3938 | |
3939 (autoload 'Info-handle-in-note "hmous-info" "\ | |
3940 Follows an Info cross-reference. | |
3941 If point is within the first line of an Info note (cross-reference), follows | |
3942 cross-reference and returns t; otherwise returns nil." nil nil) | |
3943 | |
3944 ;;;*** | |
3945 | |
3946 ;;;*** | |
3947 | |
3948 ;;;### (autoloads nil "hmouse-drv" "hyperbole/hmouse-drv.el" (12984 29572)) | |
3949 ;;; Generated autoloads from hyperbole/hmouse-drv.el | |
3950 | |
3951 ;;;*** | |
3952 | |
3953 ;;;### (autoloads nil "hmouse-key" "hyperbole/hmouse-key.el" (12984 29572)) | |
3954 ;;; Generated autoloads from hyperbole/hmouse-key.el | |
3955 | |
3956 ;;;*** | |
3957 | |
3958 ;;;### (autoloads nil "hmouse-mod" "hyperbole/hmouse-mod.el" (12984 29572)) | |
3959 ;;; Generated autoloads from hyperbole/hmouse-mod.el | |
3960 | |
3961 ;;;*** | |
3962 | |
3963 ;;;### (autoloads nil "hmouse-reg" "hyperbole/hmouse-reg.el" (12984 29572)) | |
3964 ;;; Generated autoloads from hyperbole/hmouse-reg.el | |
3965 | |
3966 ;;;*** | |
3967 | |
3968 ;;;### (autoloads nil "hmouse-sh" "hyperbole/hmouse-sh.el" (12984 29572)) | |
3969 ;;; Generated autoloads from hyperbole/hmouse-sh.el | |
3970 | |
3971 ;;;*** | |
3972 | |
3973 ;;;### (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" (12984 29572)) | |
3974 ;;; Generated autoloads from hyperbole/hmouse-tag.el | |
3975 | |
3976 (autoload 'smart-asm-at-tag-p "hmouse-tag" "\ | |
3977 Return assembly tag name that point is within, else nil." nil nil) | |
3978 | |
3979 (autoload 'smart-c-at-tag-p "hmouse-tag" "\ | |
3980 Return C tag name that point is within, else nil." nil nil) | |
3981 | |
3982 (autoload 'smart-c++ "hmouse-tag" "\ | |
3983 Jumps to the definition of optional C++ IDENTIFIER or the one at point. | |
3984 Optional second arg NEXT means jump to next matching C++ tag. | |
3985 | |
3986 It assumes that its caller has already checked that the key was pressed in an | |
3987 appropriate buffer and has moved the cursor to the selected buffer. | |
3988 | |
3989 If: | |
3990 (1) on a '#include' statement, the include file is displayed; | |
3991 Look for include file in directory lists 'smart-c-cpp-include-dirs' | |
3992 and 'smart-c-include-dirs'. | |
3993 (2) on a C++ identifier, the identifier definition is displayed, | |
3994 assuming the identifier is found within an 'etags' generated tag file | |
3995 in the current directory or any of its ancestor directories. | |
3996 (3) if 'smart-c-use-lib-man' is non-nil, the C++ identifier is | |
3997 recognized as a library symbol, and a man page is found for the | |
3998 identifier, then the man page is displayed." t nil) | |
3999 | |
4000 (autoload 'smart-c++-oobr "hmouse-tag" "\ | |
4001 Jumps to the definition of selected C++ construct via OO-Browser support. | |
4002 Optional JUNK is ignored. Does nothing if the OO-Browser is not available. | |
4003 | |
4004 It assumes that its caller has already checked that the key was pressed in an | |
4005 appropriate buffer and has moved the cursor to the selected buffer. | |
4006 | |
4007 If key is pressed: | |
4008 (1) on a '#include' statement, the include file is displayed; | |
4009 Look for include file in directory lists 'smart-c-cpp-include-dirs' | |
4010 and 'smart-c-include-dirs'. | |
4011 (2) within a method declaration, its definition is displayed; | |
4012 (3) on a class name, the class definition is shown. | |
4013 | |
4014 (2) and (3) require that an OO-Browser Environment has been loaded with | |
4015 the {M-x br-env-load RTN} command." t nil) | |
4016 | |
4017 (autoload 'smart-fortran-at-tag-p "hmouse-tag" "\ | |
4018 Return Fortran tag name that point is within, else nil." nil nil) | |
4019 | |
4020 (autoload 'smart-objc "hmouse-tag" "\ | |
4021 Jumps to the definition of optional Objective-C IDENTIFIER or the one at point. | |
4022 Optional second arg NEXT means jump to next matching Objective-C tag. | |
4023 | |
4024 It assumes that its caller has already checked that the key was pressed in an | |
4025 appropriate buffer and has moved the cursor to the selected buffer. | |
4026 | |
4027 If: | |
4028 (1) on a '#include' statement, the include file is displayed; | |
4029 Look for include file in directory lists 'smart-c-cpp-include-dirs' | |
4030 and 'smart-c-include-dirs'. | |
4031 (2) on an Objective-C identifier, the identifier definition is displayed, | |
4032 assuming the identifier is found within an 'etags' generated tag file | |
4033 in the current directory or any of its ancestor directories. | |
4034 (3) if 'smart-c-use-lib-man' is non-nil, the Objective-C identifier is | |
4035 recognized as a library symbol, and a man page is found for the | |
4036 identifier, then the man page is displayed." t nil) | |
4037 | |
4038 (autoload 'smart-objc-oobr "hmouse-tag" "\ | |
4039 Jumps to the definition of selected Objective-C construct via OO-Browser support. | |
4040 Optional JUNK is ignored. Does nothing if the OO-Browser is not available. | |
4041 | |
4042 It assumes that its caller has already checked that the key was pressed in an | |
4043 appropriate buffer and has moved the cursor to the selected buffer. | |
4044 | |
4045 If key is pressed: | |
4046 (1) on a '#include' statement, the include file is displayed; | |
4047 Look for include file in directory lists 'smart-c-cpp-include-dirs' | |
4048 and 'smart-c-include-dirs'. | |
4049 (2) within a method declaration, its definition is displayed; | |
4050 (3) on a class name, the class definition is shown. | |
4051 | |
4052 (2) and (3) require that an OO-Browser Environment has been loaded with | |
4053 the {M-x br-env-load RTN} command." t nil) | |
4054 | |
4055 (autoload 'smart-tags-file-path "hmouse-tag" "\ | |
4056 Expand relative FILE name by looking it up in the nearest tags file. | |
4057 Return FILE unchanged if it exists relative to the current directory or | |
4058 cannot be expanded via a tags file." nil nil) | |
4059 | |
4060 (autoload 'smart-tags-file "hmouse-tag" "\ | |
4061 Return appropriate tags file name for CURR-FILENAME or 'tags-file-name'." nil nil) | |
4062 | |
4063 ;;;*** | |
4064 | |
4065 ;;;*** | |
4066 | |
4067 ;;;### (autoloads nil "hpath" "hyperbole/hpath.el" (12984 29572)) | |
4068 ;;; Generated autoloads from hyperbole/hpath.el | |
4069 | |
4070 ;;;*** | |
4071 | |
4072 ;;;### (autoloads nil "hrmail" "hyperbole/hrmail.el" (12984 29572)) | |
4073 ;;; Generated autoloads from hyperbole/hrmail.el | |
4074 | |
4075 ;;;*** | |
4076 | |
4077 ;;;### (autoloads nil "hsite-ex" "hyperbole/hsite-ex.el" (12984 29572)) | |
4078 ;;; Generated autoloads from hyperbole/hsite-ex.el | |
4079 | |
4080 ;;;*** | |
4081 | |
4082 ;;;### (autoloads nil "hsite" "hyperbole/hsite.el" (12984 29574)) | |
4083 ;;; Generated autoloads from hyperbole/hsite.el | |
4084 | |
4085 ;;;*** | |
4086 | |
4087 ;;;### (autoloads nil "hsmail" "hyperbole/hsmail.el" (12984 29572)) | |
4088 ;;; Generated autoloads from hyperbole/hsmail.el | |
4089 | |
4090 ;;;*** | |
4091 | |
4092 ;;;### (autoloads nil "hsys-hbase" "hyperbole/hsys-hbase.el" (12984 29572)) | |
4093 ;;; Generated autoloads from hyperbole/hsys-hbase.el | |
4094 | |
4095 ;;;*** | |
4096 | |
4097 ;;;### (autoloads nil "hsys-w3" "hyperbole/hsys-w3.el" (12984 29572)) | |
4098 ;;; Generated autoloads from hyperbole/hsys-w3.el | |
4099 | |
4100 ;;;*** | |
4101 | |
4102 ;;;### (autoloads nil "hsys-wais" "hyperbole/hsys-wais.el" (12984 29572)) | |
4103 ;;; Generated autoloads from hyperbole/hsys-wais.el | |
4104 | |
4105 ;;;*** | |
4106 | |
4107 ;;;### (autoloads nil "hsys-www" "hyperbole/hsys-www.el" (12984 29572)) | |
4108 ;;; Generated autoloads from hyperbole/hsys-www.el | |
4109 | |
4110 ;;;*** | |
4111 | |
4112 ;;;### (autoloads nil "htz" "hyperbole/htz.el" (12984 29571)) | |
4113 ;;; Generated autoloads from hyperbole/htz.el | |
4114 | |
4115 ;;;*** | |
4116 | |
4117 ;;;### (autoloads nil "hui-em19-b" "hyperbole/hui-em19-b.el" (12984 29572)) | |
4118 ;;; Generated autoloads from hyperbole/hui-em19-b.el | |
4119 | |
4120 ;;;*** | |
4121 | |
4122 ;;;### (autoloads nil "hui-ep-but" "hyperbole/hui-ep-but.el" (12984 29572)) | |
4123 ;;; Generated autoloads from hyperbole/hui-ep-but.el | |
4124 | |
4125 ;;;*** | |
4126 | |
4127 ;;;### (autoloads nil "hui-epV4-b" "hyperbole/hui-epV4-b.el" (12984 29572)) | |
4128 ;;; Generated autoloads from hyperbole/hui-epV4-b.el | |
4129 | |
4130 ;;;*** | |
4131 | |
4132 ;;;### (autoloads nil "hui-menu" "hyperbole/hui-menu.el" (12984 29574)) | |
4133 ;;; Generated autoloads from hyperbole/hui-menu.el | |
4134 | |
4135 ;;;*** | |
4136 | |
4137 ;;;### (autoloads nil "hui-mini" "hyperbole/hui-mini.el" (12984 29572)) | |
4138 ;;; Generated autoloads from hyperbole/hui-mini.el | |
4139 | |
4140 ;;;*** | |
4141 | |
4142 ;;;### (autoloads nil "hui-mouse" "hyperbole/hui-mouse.el" (12984 29572)) | |
4143 ;;; Generated autoloads from hyperbole/hui-mouse.el | |
4144 | |
4145 ;;;*** | |
4146 | |
4147 ;;;### (autoloads nil "hui-window" "hyperbole/hui-window.el" (12984 29572)) | |
4148 ;;; Generated autoloads from hyperbole/hui-window.el | |
4149 | |
4150 ;;;*** | |
4151 | |
4152 ;;;### (autoloads nil "hui-xe-but" "hyperbole/hui-xe-but.el" (12984 29573)) | |
4153 ;;; Generated autoloads from hyperbole/hui-xe-but.el | |
4154 | |
4155 ;;;*** | |
4156 | |
4157 ;;;### (autoloads nil "hui" "hyperbole/hui.el" (12984 29572)) | |
4158 ;;; Generated autoloads from hyperbole/hui.el | |
4159 | |
4160 ;;;*** | |
4161 | |
4162 ;;;### (autoloads (var:append) "hvar" "hyperbole/hvar.el" (12984 29573)) | |
4163 ;;; Generated autoloads from hyperbole/hvar.el | |
4164 | |
4165 (autoload 'var:append "hvar" "\ | |
4166 Appends to value held by VAR-SYMBOL-NAME, LIST-TO-ADD. Returns new value. | |
4167 If VAR-SYMBOL-NAME is unbound, it is set to LIST-TO-ADD. | |
4168 Often used to append to 'hook' variables." nil nil) | |
4169 | |
4170 ;;;*** | |
4171 | |
4172 ;;;*** | |
4173 | |
4174 ;;;### (autoloads nil "hversion" "hyperbole/hversion.el" (12984 29573)) | |
4175 ;;; Generated autoloads from hyperbole/hversion.el | |
4176 | |
4177 ;;;*** | |
4178 | |
4179 ;;;### (autoloads nil "hvm" "hyperbole/hvm.el" (12984 29573)) | |
4180 ;;; Generated autoloads from hyperbole/hvm.el | |
4181 | |
4182 ;;;### (autoloads (hypb:configuration) "hypb" "hyperbole/hypb.el" (12984 29573)) | |
4183 ;;; Generated autoloads from hyperbole/hypb.el | |
4184 | |
4185 (autoload 'hypb:configuration "hypb" "\ | |
4186 Insert Emacs configuration information at the end of optional OUT-BUF or the current buffer." nil nil) | |
4187 | |
4188 ;;;*** | |
4189 | |
4190 ;;;### (autoloads nil "hyperbole" "hyperbole/hyperbole.el" (12984 29573)) | |
4191 ;;; Generated autoloads from hyperbole/hyperbole.el | |
4192 | |
4193 (defvar action-key-url-function 'w3-fetch "\ | |
4194 Value is a function of one argument, a url, which displays the url referent. | |
4195 Possible values are: | |
4196 w3-fetch - display using the W3 Emacs web browser; | |
4197 highlight-headers-follow-url-netscape - display in Netscape; | |
4198 highlight-headers-follow-url-mosaic - display in Mosaic.") | |
4199 | |
4200 (defvar kimport:mode-alist '((t . kimport:text) (outline-mode . kimport:star-outline)) "\ | |
4201 Alist of (major-mode . importation-function) elements. | |
4202 This determines the type of importation done on a file when `kimport:file' is | |
4203 called if the major mode of the import file matches the car of an element in | |
4204 this list. If there is no match, then `kimport:suffix-alist' is checked. If | |
4205 that yields no match, the element in this list whose car is 't is used. It | |
4206 normally does an import of a koutline or text file. | |
4207 | |
4208 Each importation-function must take two arguments, a buffer/file to import | |
4209 and a buffer/file into which to insert the imported elements and a third | |
4210 optional argument, CHILDREN-P, which when non-nil means insert imported cells | |
4211 as the initial set of children of the current cell, if any. | |
4212 | |
4213 outline-mode - imported as an Emacs outline whose entries begin with | |
4214 asterisks; | |
4215 .kot | |
4216 .kotl - imported as a structured koutline | |
4217 | |
4218 all others - imported as text.") | |
4219 | |
4220 (defvar kimport:suffix-alist '(("\\.otl$" . kimport:star-outline) ("\\.aug$" . kimport:aug-post-outline)) "\ | |
4221 Alist of (buffer-name-suffix-regexp . importation-function) elements. | |
4222 This determines the type of importation done on a file when `kimport:file' is | |
4223 called. Each importation-function must take two arguments, a buffer/file to | |
4224 import and a buffer/file into which to insert the imported elements and a | |
4225 third optional argument, CHILDREN-P, which when non-nil means insert imported | |
4226 cells as the initial set of children of the current cell, if any. | |
4227 | |
4228 .otl - imported as an Emacs outline whose entries begin with asterisks; | |
4229 .kot | |
4230 .kotl - imported as a structured koutline | |
4231 .aug - imported as an Augment post-numbered outline.") | |
4232 | |
4233 ;;;*** | |
4234 | |
4235 ;;;*** | |
4236 | |
4237 ;;;*** | |
4238 | |
4239 ;;;### (autoloads nil "set" "hyperbole/set.el" (12984 29573)) | |
4240 ;;; Generated autoloads from hyperbole/set.el | |
4241 | |
4242 ;;;### (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" (12984 29573)) | |
4243 ;;; Generated autoloads from hyperbole/wconfig.el | |
4244 | |
4245 (autoload 'wconfig-add-by-name "wconfig" "\ | |
4246 Saves the current window configuration under the string NAME. | |
4247 When called interactively and a window configuration already exists under | |
4248 NAME, confirms whether or not to replace it." t nil) | |
4249 | |
4250 (autoload 'wconfig-delete-by-name "wconfig" "\ | |
4251 Deletes window configuration saved under NAME." t nil) | |
4252 | |
4253 (autoload 'wconfig-restore-by-name "wconfig" "\ | |
4254 Restores window configuration saved under NAME." t nil) | |
4255 | |
4256 (autoload 'wconfig-delete-pop "wconfig" "\ | |
4257 Replaces current window config with most recently saved config in ring. | |
4258 Then deletes this new configuration from the ring." t nil) | |
4259 | |
4260 (autoload 'wconfig-ring-save "wconfig" "\ | |
4261 Saves the current window configuration onto the save ring. | |
4262 Use {\\[wconfig-yank-pop]} to restore it at a later time." t nil) | |
4263 | |
4264 (autoload 'wconfig-yank-pop "wconfig" "\ | |
4265 Replaces current window config with prefix arg Nth prior one in save ring. | |
4266 Interactively, default value of N = 1, meaning the last saved window | |
4267 configuration is displayed. | |
4268 | |
4269 The sequence of window configurations wraps around, so that after the oldest | |
4270 one comes the newest one." t nil) | |
4271 | |
4272 ;;;*** | |
4273 | |
4274 ;;;### (autoloads (rolo-logic) "wrolo-logic" "hyperbole/wrolo-logic.el" (12984 29573)) | |
4275 ;;; Generated autoloads from hyperbole/wrolo-logic.el | |
4276 | |
4277 (autoload 'rolo-logic "wrolo-logic" "\ | |
4278 Apply FUNC to all entries in optional IN-BUFS, display entries where FUNC is non-nil. | |
4279 If IN-BUFS is nil, 'rolo-file-list' is used. If optional COUNT-ONLY is | |
4280 non-nil, don't display entries, return count of matching entries only. If | |
4281 optional INCLUDE-SUB-ENTRIES flag is non-nil, FUNC will be applied across all | |
4282 sub-entries at once. Default is to apply FUNC to each entry and sub-entry | |
4283 separately. Entries are displayed with all of their sub-entries unless | |
4284 INCLUDE-SUB-ENTRIES is nil and optional NO-SUB-ENTRIES-OUT flag is non-nil. | |
4285 FUNC should use the free variables 'start' and 'end' which contain the limits | |
4286 of the region on which it should operate. Returns number of applications of | |
4287 FUNC that return non-nil." t nil) | |
4288 | |
4289 ;;;*** | |
4290 | |
4291 ;;;*** | |
4292 | |
4293 ;;;*** | |
4294 | |
4295 ;;;### (autoloads nil "wrolo-menu" "hyperbole/wrolo-menu.el" (12984 29574)) | |
4296 ;;; Generated autoloads from hyperbole/wrolo-menu.el | |
4297 | |
4298 ;;;*** | |
4299 | |
4300 ;;;### (autoloads (rolo-yank rolo-sort rolo-kill rolo-grep rolo-fgrep rolo-edit rolo-display-matches rolo-add) "wrolo" "hyperbole/wrolo.el" (12984 29573)) | |
4301 ;;; Generated autoloads from hyperbole/wrolo.el | |
4302 | |
4303 (autoload 'rolo-add "wrolo" "\ | |
4304 Adds a new entry in personal rolodex for NAME. | |
4305 Last name first is best, e.g. \"Smith, John\". | |
4306 With prefix argument, prompts for optional FILE to add entry within. | |
4307 NAME may be of the form: parent/child to insert child below a parent | |
4308 entry which begins with the parent string." t nil) | |
4309 | |
4310 (autoload 'rolo-display-matches "wrolo" "\ | |
4311 Display optional DISPLAY-BUF buffer of previously found rolodex matches. | |
4312 If DISPLAY-BUF is nil, use the value in 'rolo-display-buffer'. | |
4313 Second arg RETURN-TO-BUFFER is the buffer to leave point within after the display." t nil) | |
4314 | |
4315 (autoload 'rolo-edit "wrolo" "\ | |
4316 Edits a rolodex entry given by optional NAME within 'rolo-file-list'. | |
4317 With prefix argument, prompts for optional FILE to locate entry within. | |
4318 With no NAME arg, simply displays FILE or first entry in 'rolo-file-list' in an | |
4319 editable mode. NAME may be of the form: parent/child to edit child below a | |
4320 parent entry which begins with the parent string." t nil) | |
4321 | |
4322 (autoload 'rolo-fgrep "wrolo" "\ | |
4323 Display rolodex entries matching STRING. | |
4324 To a maximum of optional prefix arg MAX-MATCHES, in file(s) from optional | |
4325 ROLO-FILE or rolo-file-list. Default is to find all matching entries. Each | |
4326 entry is displayed with all of its sub-entries. Optional COUNT-ONLY non-nil | |
4327 means don't retrieve and don't display matching entries. Optional NO-DISPLAY | |
4328 non-nil means retrieve entries but don't display. | |
4329 | |
4330 Nil value of MAX-MATCHES means find all matches, t value means find all matches | |
4331 but omit file headers, negative values mean find up to the inverse of that | |
4332 number of entries and omit file headers. | |
4333 | |
4334 Returns number of entries matched. See also documentation for the variable | |
4335 rolo-file-list." t nil) | |
4336 | |
4337 (autoload 'rolo-grep "wrolo" "\ | |
4338 Display rolodex entries matching REGEXP. | |
4339 To a maximum of prefix arg MAX-MATCHES, in buffer(s) from optional ROLO-BUFS or | |
4340 rolo-file-list. Default is to find all matching entries. Each entry is | |
4341 displayed with all of its sub-entries. Optional COUNT-ONLY non-nil means don't | |
4342 retrieve and don't display matching entries. Optional NO-DISPLAY non-nil | |
4343 means retrieve entries but don't display. | |
4344 | |
4345 Nil value of MAX-MATCHES means find all matches, t value means find all matches | |
4346 but omit file headers, negative values mean find up to the inverse of that | |
4347 number of entries and omit file headers. | |
4348 | |
4349 Returns number of entries matched. See also documentation for the variable | |
4350 rolo-file-list." t nil) | |
4351 | |
4352 (autoload 'rolo-kill "wrolo" "\ | |
4353 Kills a rolodex entry given by NAME within 'rolo-file-list'. | |
4354 With prefix argument, prompts for optional FILE to locate entry within. | |
4355 NAME may be of the form: parent/child to kill child below a parent entry | |
4356 which begins with the parent string. | |
4357 Returns t if entry is killed, nil otherwise." t nil) | |
4358 | |
4359 (autoload 'rolo-sort "wrolo" "\ | |
4360 Sorts up to 14 levels of entries in ROLO-FILE (default is personal rolo). | |
4361 Assumes entries are delimited by one or more '*'characters. | |
4362 Returns list of number of groupings at each entry level." t nil) | |
4363 | |
4364 (autoload 'rolo-yank "wrolo" "\ | |
4365 Inserts at point the first rolodex entry matching NAME. | |
4366 With optional prefix arg, REGEXP-P, treats NAME as a regular expression instead | |
4367 of a string." t nil) | |
4368 | |
4369 ;;;*** | |
4370 | |
4371 ;;;*** | |
4372 | |
4373 ;;;### (autoloads nil "bridge" "ilisp/bridge.el" (12984 29539)) | |
4374 ;;; Generated autoloads from ilisp/bridge.el | |
4375 | |
4376 ;;;*** | |
4377 | |
4378 ;;;### (autoloads nil "comint-ipc" "ilisp/comint-ipc.el" (12984 29539)) | |
4379 ;;; Generated autoloads from ilisp/comint-ipc.el | |
4380 | |
4381 ;;;*** | |
4382 | |
4383 ;;;*** | |
4384 | |
4385 ;;;### (autoloads nil "comint-v18" "ilisp/comint-v18.el" (12984 29539)) | |
4386 ;;; Generated autoloads from ilisp/comint-v18.el | |
4387 | |
4388 ;;;*** | |
4389 | |
4390 ;;;### (autoloads nil "completer" "ilisp/completer.el" (12984 29539)) | |
4391 ;;; Generated autoloads from ilisp/completer.el | |
4392 | |
4393 ;;;*** | |
4394 | |
4395 ;;;### (autoloads nil "completer.new" "ilisp/completer.new.el" (12984 29541)) | |
4396 ;;; Generated autoloads from ilisp/completer.new.el | |
4397 | |
4398 ;;;*** | |
4399 | |
4400 ;;;### (autoloads nil "completer.no-fun" "ilisp/completer.no-fun.el" (12984 29541)) | |
4401 ;;; Generated autoloads from ilisp/completer.no-fun.el | |
4402 | |
4403 ;;;*** | |
4404 | |
4405 ;;;### (autoloads nil "ilcompat" "ilisp/ilcompat.el" (12984 29539)) | |
4406 ;;; Generated autoloads from ilisp/ilcompat.el | |
4407 | |
4408 ;;;*** | |
4409 | |
4410 ;;;### (autoloads nil "ilfsf18" "ilisp/ilfsf18.el" (12984 29540)) | |
4411 ;;; Generated autoloads from ilisp/ilfsf18.el | |
4412 | |
4413 ;;;*** | |
4414 | |
4415 ;;;### (autoloads nil "ilfsf19" "ilisp/ilfsf19.el" (12984 29540)) | |
4416 ;;; Generated autoloads from ilisp/ilfsf19.el | |
4417 | |
4418 ;;;*** | |
4419 | |
4420 ;;;### (autoloads nil "ilisp-acl" "ilisp/ilisp-acl.el" (12984 29540)) | |
4421 ;;; Generated autoloads from ilisp/ilisp-acl.el | |
4422 | |
4423 ;;;*** | |
4424 | |
4425 ;;;### (autoloads nil "ilisp-aut" "ilisp/ilisp-aut.el" (12984 29540)) | |
4426 ;;; Generated autoloads from ilisp/ilisp-aut.el | |
4427 | |
4428 ;;;*** | |
4429 | |
4430 ;;;### (autoloads nil "ilisp-bat" "ilisp/ilisp-bat.el" (12984 29539)) | |
4431 ;;; Generated autoloads from ilisp/ilisp-bat.el | |
4432 | |
4433 ;;;*** | |
4434 | |
4435 ;;;### (autoloads nil "ilisp-bug" "ilisp/ilisp-bug.el" (12984 29539)) | |
4436 ;;; Generated autoloads from ilisp/ilisp-bug.el | |
4437 | |
4438 ;;;*** | |
4439 | |
4440 ;;;### (autoloads nil "ilisp-chs" "ilisp/ilisp-chs.el" (12984 29540)) | |
4441 ;;; Generated autoloads from ilisp/ilisp-chs.el | |
4442 | |
4443 ;;;*** | |
4444 | |
4445 ;;;### (autoloads nil "ilisp-cl" "ilisp/ilisp-cl.el" (12984 29539)) | |
4446 ;;; Generated autoloads from ilisp/ilisp-cl.el | |
4447 | |
4448 ;;;*** | |
4449 | |
4450 ;;;### (autoloads nil "ilisp-cmp" "ilisp/ilisp-cmp.el" (12984 29540)) | |
4451 ;;; Generated autoloads from ilisp/ilisp-cmp.el | |
4452 | |
4453 ;;;*** | |
4454 | |
4455 ;;;### (autoloads nil "ilisp-cmt" "ilisp/ilisp-cmt.el" (12984 29540)) | |
4456 ;;; Generated autoloads from ilisp/ilisp-cmt.el | |
4457 | |
4458 ;;;*** | |
4459 | |
4460 ;;;### (autoloads nil "ilisp-cmu" "ilisp/ilisp-cmu.el" (12984 29540)) | |
4461 ;;; Generated autoloads from ilisp/ilisp-cmu.el | |
4462 | |
4463 ;;;*** | |
4464 | |
4465 ;;;### (autoloads nil "ilisp-cpat" "ilisp/ilisp-cpat.el" (12984 29539)) | |
4466 ;;; Generated autoloads from ilisp/ilisp-cpat.el | |
4467 | |
4468 ;;;*** | |
4469 | |
4470 ;;;### (autoloads nil "ilisp-def" "ilisp/ilisp-def.el" (12984 29540)) | |
4471 ;;; Generated autoloads from ilisp/ilisp-def.el | |
4472 | |
4473 ;;;*** | |
4474 | |
4475 ;;;### (autoloads nil "ilisp-dia" "ilisp/ilisp-dia.el" (12984 29540)) | |
4476 ;;; Generated autoloads from ilisp/ilisp-dia.el | |
4477 | |
4478 ;;;*** | |
4479 | |
4480 ;;;### (autoloads nil "ilisp-doc" "ilisp/ilisp-doc.el" (12984 29540)) | |
4481 ;;; Generated autoloads from ilisp/ilisp-doc.el | |
4482 | |
4483 ;;;*** | |
4484 | |
4485 ;;;### (autoloads nil "ilisp-el" "ilisp/ilisp-el.el" (12984 29540)) | |
4486 ;;; Generated autoloads from ilisp/ilisp-el.el | |
4487 | |
4488 ;;;*** | |
4489 | |
4490 ;;;### (autoloads nil "ilisp-ext" "ilisp/ilisp-ext.el" (12984 29539)) | |
4491 ;;; Generated autoloads from ilisp/ilisp-ext.el | |
4492 | |
4493 ;;;*** | |
4494 | |
4495 ;;;### (autoloads nil "ilisp-hi" "ilisp/ilisp-hi.el" (12984 29540)) | |
4496 ;;; Generated autoloads from ilisp/ilisp-hi.el | |
4497 | |
4498 ;;;*** | |
4499 | |
4500 ;;;### (autoloads nil "ilisp-hlw" "ilisp/ilisp-hlw.el" (12984 29540)) | |
4501 ;;; Generated autoloads from ilisp/ilisp-hlw.el | |
4502 | |
4503 ;;;*** | |
4504 | |
4505 ;;;### (autoloads nil "ilisp-hnd" "ilisp/ilisp-hnd.el" (12984 29540)) | |
4506 ;;; Generated autoloads from ilisp/ilisp-hnd.el | |
4507 | |
4508 ;;;*** | |
4509 | |
4510 ;;;### (autoloads nil "ilisp-ind" "ilisp/ilisp-ind.el" (12984 29540)) | |
4511 ;;; Generated autoloads from ilisp/ilisp-ind.el | |
4512 | |
4513 ;;;*** | |
4514 | |
4515 ;;;### (autoloads nil "ilisp-inp" "ilisp/ilisp-inp.el" (12984 29540)) | |
4516 ;;; Generated autoloads from ilisp/ilisp-inp.el | |
4517 | |
4518 ;;;*** | |
4519 | |
4520 ;;;### (autoloads nil "ilisp-kcl" "ilisp/ilisp-kcl.el" (12984 29540)) | |
4521 ;;; Generated autoloads from ilisp/ilisp-kcl.el | |
4522 | |
4523 ;;;*** | |
4524 | |
4525 ;;;### (autoloads nil "ilisp-key" "ilisp/ilisp-key.el" (12984 29540)) | |
4526 ;;; Generated autoloads from ilisp/ilisp-key.el | |
4527 | |
4528 ;;;*** | |
4529 | |
4530 ;;;### (autoloads nil "ilisp-kil" "ilisp/ilisp-kil.el" (12984 29540)) | |
4531 ;;; Generated autoloads from ilisp/ilisp-kil.el | |
4532 | |
4533 ;;;*** | |
4534 | |
4535 ;;;### (autoloads nil "ilisp-low" "ilisp/ilisp-low.el" (12984 29540)) | |
4536 ;;; Generated autoloads from ilisp/ilisp-low.el | |
4537 | |
4538 ;;;*** | |
4539 | |
4540 ;;;### (autoloads nil "ilisp-luc" "ilisp/ilisp-luc.el" (12984 29540)) | |
4541 ;;; Generated autoloads from ilisp/ilisp-luc.el | |
4542 | |
4543 ;;;*** | |
4544 | |
4545 ;;;### (autoloads nil "ilisp-mak" "ilisp/ilisp-mak.el" (12984 29539)) | |
4546 ;;; Generated autoloads from ilisp/ilisp-mak.el | |
4547 | |
4548 ;;;*** | |
4549 | |
4550 ;;;### (autoloads nil "ilisp-menu" "ilisp/ilisp-menu.el" (12984 29539)) | |
4551 ;;; Generated autoloads from ilisp/ilisp-menu.el | |
4552 | |
4553 ;;;*** | |
4554 | |
4555 ;;;### (autoloads nil "ilisp-mnb" "ilisp/ilisp-mnb.el" (12984 29540)) | |
4556 ;;; Generated autoloads from ilisp/ilisp-mnb.el | |
4557 | |
4558 ;;;*** | |
4559 | |
4560 ;;;### (autoloads nil "ilisp-mod" "ilisp/ilisp-mod.el" (12984 29540)) | |
4561 ;;; Generated autoloads from ilisp/ilisp-mod.el | |
4562 | |
4563 ;;;*** | |
4564 | |
4565 ;;;### (autoloads nil "ilisp-mov" "ilisp/ilisp-mov.el" (12984 29540)) | |
4566 ;;; Generated autoloads from ilisp/ilisp-mov.el | |
4567 | |
4568 ;;;*** | |
4569 | |
4570 ;;;### (autoloads nil "ilisp-out" "ilisp/ilisp-out.el" (12988 19693)) | |
4571 ;;; Generated autoloads from ilisp/ilisp-out.el | |
4572 | |
4573 ;;;*** | |
4574 | |
4575 ;;;### (autoloads nil "ilisp-prc" "ilisp/ilisp-prc.el" (12984 29540)) | |
4576 ;;; Generated autoloads from ilisp/ilisp-prc.el | |
4577 | |
4578 ;;;*** | |
4579 | |
4580 ;;;### (autoloads nil "ilisp-prn" "ilisp/ilisp-prn.el" (12984 29540)) | |
4581 ;;; Generated autoloads from ilisp/ilisp-prn.el | |
4582 | |
4583 ;;;*** | |
4584 | |
4585 ;;;### (autoloads nil "ilisp-rng" "ilisp/ilisp-rng.el" (12984 29540)) | |
4586 ;;; Generated autoloads from ilisp/ilisp-rng.el | |
4587 | |
4588 ;;;*** | |
4589 | |
4590 ;;;### (autoloads nil "ilisp-s2c" "ilisp/ilisp-s2c.el" (12984 29539)) | |
4591 ;;; Generated autoloads from ilisp/ilisp-s2c.el | |
4592 | |
4593 ;;;*** | |
4594 | |
4595 ;;;### (autoloads nil "ilisp-sch" "ilisp/ilisp-sch.el" (12984 29540)) | |
4596 ;;; Generated autoloads from ilisp/ilisp-sch.el | |
4597 | |
4598 ;;;*** | |
4599 | |
4600 ;;;### (autoloads nil "ilisp-snd" "ilisp/ilisp-snd.el" (12984 29540)) | |
4601 ;;; Generated autoloads from ilisp/ilisp-snd.el | |
4602 | |
4603 ;;;*** | |
4604 | |
4605 ;;;### (autoloads nil "ilisp-src" "ilisp/ilisp-src.el" (12984 29539)) | |
4606 ;;; Generated autoloads from ilisp/ilisp-src.el | |
4607 | |
4608 ;;;*** | |
4609 | |
4610 ;;;### (autoloads nil "ilisp-sym" "ilisp/ilisp-sym.el" (12984 29540)) | |
4611 ;;; Generated autoloads from ilisp/ilisp-sym.el | |
4612 | |
4613 ;;;*** | |
4614 | |
4615 ;;;### (autoloads nil "ilisp-utl" "ilisp/ilisp-utl.el" (12984 29540)) | |
4616 ;;; Generated autoloads from ilisp/ilisp-utl.el | |
4617 | |
4618 ;;;*** | |
4619 | |
4620 ;;;### (autoloads nil "ilisp-val" "ilisp/ilisp-val.el" (12984 29540)) | |
4621 ;;; Generated autoloads from ilisp/ilisp-val.el | |
4622 | |
4623 ;;;*** | |
4624 | |
4625 ;;;### (autoloads nil "ilisp-xfr" "ilisp/ilisp-xfr.el" (12984 29540)) | |
4626 ;;; Generated autoloads from ilisp/ilisp-xfr.el | |
4627 | |
4628 ;;;*** | |
4629 | |
4630 ;;;### (autoloads nil "ilisp-xls" "ilisp/ilisp-xls.el" (12984 29540)) | |
4631 ;;; Generated autoloads from ilisp/ilisp-xls.el | |
4632 | |
4633 ;;;*** | |
4634 | |
4635 ;;;### (autoloads nil "ilisp" "ilisp/ilisp.el" (12984 29539)) | |
4636 ;;; Generated autoloads from ilisp/ilisp.el | |
4637 | |
4638 ;;;*** | |
4639 | |
4640 ;;;### (autoloads nil "illuc19" "ilisp/illuc19.el" (12984 29540)) | |
4641 ;;; Generated autoloads from ilisp/illuc19.el | |
4642 | |
4643 ;;;*** | |
4644 | |
4645 ;;;### (autoloads nil "ilxemacs" "ilisp/ilxemacs.el" (12984 29540)) | |
4646 ;;; Generated autoloads from ilisp/ilxemacs.el | |
4647 | |
4648 ;;;*** | |
4649 | |
4650 ;;;### (autoloads (iso-accents-mode) "iso-acc" "iso/iso-acc.el" (12984 29567)) | |
4651 ;;; Generated autoloads from iso/iso-acc.el | |
4652 | |
4653 (autoload 'iso-accents-mode "iso-acc" "\ | |
4654 Toggle ISO Accents mode, in which accents modify the following letter. | |
4655 This permits easy insertion of accented characters according to ISO-8859-1. | |
4656 When Iso-accents mode is enabled, accent character keys | |
4657 \(`, ', \", ^, / and ~) do not self-insert; instead, they modify the following | |
4658 letter key so that it inserts an ISO accented letter. | |
4659 | |
4660 You can customize ISO Accents mode to a particular language | |
4661 with the command `iso-accents-customize'. | |
4662 | |
4663 Special combinations: ~c gives a c with cedilla, | |
4664 ~d gives an Icelandic eth (d with dash). | |
4665 ~t gives an Icelandic thorn. | |
4666 \"s gives German sharp s. | |
4667 /a gives a with ring. | |
4668 /e gives an a-e ligature. | |
4669 ~< and ~> give guillemots. | |
4670 ~! gives an inverted exclamation mark. | |
4671 ~? gives an inverted question mark. | |
4672 | |
4673 With an argument, a positive argument enables ISO Accents mode, | |
4674 and a negative argument disables it." t nil) | |
4675 | |
4676 ;;;*** | |
4677 | |
4678 ;;;*** | |
4679 | |
4680 ;;;### (autoloads nil "iso-ascii" "iso/iso-ascii.el" (12984 29566)) | |
4681 ;;; Generated autoloads from iso/iso-ascii.el | |
4682 | |
4683 ;;;*** | |
4684 | |
4685 ;;;### (autoloads nil "iso-cvt" "iso/iso-cvt.el" (12984 29567)) | |
4686 ;;; Generated autoloads from iso/iso-cvt.el | |
4687 | |
4688 ;;;*** | |
4689 | |
4690 ;;;### (autoloads nil "iso-insert" "iso/iso-insert.el" (12984 29567)) | |
4691 ;;; Generated autoloads from iso/iso-insert.el | |
4692 | |
4693 ;;;*** | |
4694 | |
4695 ;;;### (autoloads nil "iso-swed" "iso/iso-swed.el" (12984 29567)) | |
4696 ;;; Generated autoloads from iso/iso-swed.el | |
4697 | |
4698 ;;;*** | |
4699 | |
4700 ;;;### (autoloads nil "iso-syntax" "iso/iso-syntax.el" (12984 29567)) | |
4701 ;;; Generated autoloads from iso/iso-syntax.el | |
4702 | |
4703 ;;;*** | |
4704 | |
4705 ;;;*** | |
4706 | |
4707 ;;;### (autoloads nil "iso8859-1" "iso/iso8859-1.el" (12984 29566)) | |
4708 ;;; Generated autoloads from iso/iso8859-1.el | |
4709 | |
4710 ;;;*** | |
4711 | |
4712 ;;;### (autoloads nil "swedish" "iso/swedish.el" (12984 29567)) | |
4713 ;;; Generated autoloads from iso/swedish.el | |
4714 | |
4715 ;;;### (autoloads nil "ChangeLog~" "lisp/ChangeLog~" (12967 2939)) | |
4716 ;;; Generated autoloads from lisp/ChangeLog~ | |
4717 | |
4718 ;;;### (autoloads nil "site-start" "lisp/site-start.el" (12354 5512)) | |
4719 ;;; Generated autoloads from lisp/site-start.el | |
4720 | |
4721 ;;;### (autoloads (mc-deactivate-passwd mc-install-write-mode mc-install-read-mode) "mailcrypt" "mailcrypt/mailcrypt.el" (12984 29567)) | |
4722 ;;; Generated autoloads from mailcrypt/mailcrypt.el | |
4723 | |
4724 (autoload 'mc-install-read-mode "mailcrypt" nil t nil) | |
4725 | |
4726 (autoload 'mc-install-write-mode "mailcrypt" nil t nil) | |
4727 | |
4728 (autoload 'mc-deactivate-passwd "mailcrypt" "\ | |
4729 *Deactivate the passphrase cache." t nil) | |
4730 | |
4731 ;;;*** | |
4732 | |
4733 ;;;### (autoloads (mc-pgp-fetch-key mc-scheme-pgp) "mc-pgp" "mailcrypt/mc-pgp.el" (12984 29567)) | |
4734 ;;; Generated autoloads from mailcrypt/mc-pgp.el | |
4735 | |
4736 (autoload 'mc-scheme-pgp "mc-pgp" nil nil nil) | |
4737 | |
4738 (autoload 'mc-pgp-fetch-key "mc-pgp" "\ | |
4739 Attempt to fetch a key for addition to PGP keyring. Interactively, | |
4740 prompt for string matching key to fetch. | |
4741 | |
4742 Non-interactively, ID must be a pair. The CAR must be a bare Email | |
4743 address and the CDR a keyID (with \"0x\" prefix). Either, but not | |
4744 both, may be nil. | |
4745 | |
4746 Return t if we think we were successful; nil otherwise. Note that nil | |
4747 is not necessarily an error, since we may have merely fired off an Email | |
4748 request for the key." t nil) | |
4749 | |
4750 ;;;*** | |
4751 | |
4752 ;;;### (autoloads (mc-remailer-insert-response-block mc-remailer-encrypt-for-chain mc-remailer-insert-pseudonym) "mc-remail" "mailcrypt/mc-remail.el" (12984 29567)) | |
4753 ;;; Generated autoloads from mailcrypt/mc-remail.el | |
4754 | |
4755 (autoload 'mc-remailer-insert-pseudonym "mc-remail" "\ | |
4756 Insert pseudonym as a From field in the hash-mark header. | |
4757 | |
4758 See the documentation for the variable `mc-remailer-pseudonyms' for | |
4759 more information." t nil) | |
4760 | |
4761 (autoload 'mc-remailer-encrypt-for-chain "mc-remail" "\ | |
4762 Encrypt message for a remailer chain, prompting for chain to use. | |
4763 | |
4764 With \\[universal-argument], pause before each encryption." t nil) | |
4765 | |
4766 (autoload 'mc-remailer-insert-response-block "mc-remail" "\ | |
4767 Insert response block at point, prompting for chain to use. | |
4768 | |
4769 With \\[universal-argument], enter a recursive edit of the innermost | |
4770 layer of the block before encrypting it." t nil) | |
4771 | |
4772 ;;;*** | |
4773 | |
4774 ;;;### (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" (12984 29567)) | |
4775 ;;; Generated autoloads from mailcrypt/mc-toplev.el | |
4776 | |
4777 (autoload 'mc-cleanup-recipient-headers "mc-toplev" nil nil nil) | |
4778 | |
4779 (autoload 'mc-encrypt "mc-toplev" "\ | |
4780 *Encrypt the current buffer. | |
4781 | |
4782 Exact behavior depends on current major mode. | |
4783 | |
4784 With \\[universal-argument], prompt for User ID to sign as. | |
4785 | |
4786 With \\[universal-argument] \\[universal-argument], prompt for encryption scheme to use." t nil) | |
4787 | |
4788 (autoload 'mc-encrypt-message "mc-toplev" "\ | |
4789 *Encrypt a message for RECIPIENTS using the given encryption SCHEME. | |
4790 RECIPIENTS is a comma separated string. If SCHEME is nil, use the value | |
4791 of `mc-default-scheme'. Returns t on success, nil otherwise." nil nil) | |
4792 | |
4793 (autoload 'mc-decrypt "mc-toplev" "\ | |
4794 *Decrypt a message in the current buffer. | |
4795 | |
4796 Exact behavior depends on current major mode." t nil) | |
4797 | |
4798 (autoload 'mc-decrypt-message "mc-toplev" "\ | |
4799 Decrypt whatever message is in the current buffer. | |
4800 Returns a pair (SUCCEEDED . VERIFIED) where SUCCEEDED is t if the encryption | |
4801 succeeded and VERIFIED is t if it had a valid signature." nil nil) | |
4802 | |
4803 (autoload 'mc-sign "mc-toplev" "\ | |
4804 *Sign a message in the current buffer. | |
4805 | |
4806 Exact behavior depends on current major mode. | |
4807 | |
4808 With one prefix arg, prompts for private key to use, with two prefix args, | |
4809 also prompts for encryption scheme to use. With negative prefix arg, | |
4810 inhibits clearsigning (pgp)." t nil) | |
4811 | |
4812 (autoload 'mc-sign-message "mc-toplev" "\ | |
4813 Clear sign the message." nil nil) | |
4814 | |
4815 (autoload 'mc-verify "mc-toplev" "\ | |
4816 *Verify a message in the current buffer. | |
4817 | |
4818 Exact behavior depends on current major mode." t nil) | |
4819 | |
4820 (autoload 'mc-verify-signature "mc-toplev" "\ | |
4821 *Verify the signature of the signed message in the current buffer. | |
4822 Show the result as a message in the minibuffer. Returns t if the signature | |
4823 is verified." nil nil) | |
4824 | |
4825 (autoload 'mc-insert-public-key "mc-toplev" "\ | |
4826 *Insert your public key at point. | |
4827 With one prefix arg, prompts for user id to use. With two prefix | |
4828 args, prompts for encryption scheme." t nil) | |
4829 | |
4830 (autoload 'mc-snarf "mc-toplev" "\ | |
4831 *Add all public keys in the buffer to your keyring. | |
4832 | |
4833 Exact behavior depends on current major mode." t nil) | |
4834 | |
4835 (autoload 'mc-snarf-keys "mc-toplev" "\ | |
4836 *Add all public keys in the buffer to your keyring." t nil) | |
4837 | |
4838 (autoload 'mc-rmail-summary-verify-signature "mc-toplev" "\ | |
4839 *Verify the signature in the current message." t nil) | |
4840 | |
4841 (autoload 'mc-rmail-summary-decrypt-message "mc-toplev" "\ | |
4842 *Decrypt the contents of this message" t nil) | |
4843 | |
4844 (autoload 'mc-rmail-summary-snarf-keys "mc-toplev" "\ | |
4845 *Adds keys from current message to public key ring" t nil) | |
4846 | |
4847 (autoload 'mc-rmail-verify-signature "mc-toplev" "\ | |
4848 *Verify the signature in the current message." t nil) | |
4849 | |
4850 (autoload 'mc-rmail-decrypt-message "mc-toplev" "\ | |
4851 *Decrypt the contents of this message" t nil) | |
4852 | |
4853 (autoload 'mc-vm-verify-signature "mc-toplev" "\ | |
4854 *Verify the signature in the current VM message" t nil) | |
4855 | |
4856 (autoload 'mc-vm-decrypt-message "mc-toplev" "\ | |
4857 *Decrypt the contents of the current VM message" t nil) | |
4858 | |
4859 (autoload 'mc-vm-snarf-keys "mc-toplev" "\ | |
4860 *Snarf public key from the contents of the current VM message" t nil) | |
4861 | |
4862 (autoload 'mc-gnus-verify-signature "mc-toplev" nil t nil) | |
4863 | |
4864 (autoload 'mc-gnus-snarf-keys "mc-toplev" nil t nil) | |
4865 | |
4866 (autoload 'mc-gnus-decrypt-message "mc-toplev" nil t nil) | |
4867 | |
4868 (autoload 'mc-mh-decrypt-message "mc-toplev" "\ | |
4869 Decrypt the contents of the current MH message in the show buffer." t nil) | |
4870 | |
4871 (autoload 'mc-mh-verify-signature "mc-toplev" "\ | |
4872 *Verify the signature in the current MH message." t nil) | |
4873 | |
4874 (autoload 'mc-mh-snarf-keys "mc-toplev" nil t nil) | |
4875 | |
4876 ;;;*** | |
4877 | |
4878 ;;;*** | |
4879 | |
4880 ;;;*** | |
4881 | |
4882 ;;;*** | |
4883 | |
4884 ;;;### (autoloads nil "mel-b" "mel/mel-b.el" (12996 50653)) | |
4885 ;;; Generated autoloads from mel/mel-b.el | |
4886 | |
4887 ;;;*** | |
4888 | |
4889 ;;;### (autoloads nil "mel-g" "mel/mel-g.el" (12996 50653)) | |
4890 ;;; Generated autoloads from mel/mel-g.el | |
4891 | |
4892 ;;;*** | |
4893 | |
4894 ;;;### (autoloads nil "mel-q" "mel/mel-q.el" (12996 50653)) | |
4895 ;;; Generated autoloads from mel/mel-q.el | |
4896 | |
4897 ;;;*** | |
4898 | |
4899 ;;;### (autoloads nil "mel-u" "mel/mel-u.el" (12996 50653)) | |
4900 ;;; Generated autoloads from mel/mel-u.el | |
4901 | |
4902 ;;;*** | |
4903 | |
4904 ;;;### (autoloads nil "mel" "mel/mel.el" (12996 50653)) | |
4905 ;;; Generated autoloads from mel/mel.el | |
4906 | |
4907 ;;;### (autoloads (mh-letter-mode mh-smail-other-window mh-smail-batch mh-smail) "mh-comp" "mh-e/mh-comp.el" (12984 29576)) | |
4908 ;;; Generated autoloads from mh-e/mh-comp.el | |
4909 | |
4910 (autoload 'mh-smail "mh-comp" "\ | |
4911 Compose and send mail with the MH mail system. | |
4912 This function is an entry point to mh-e, the Emacs front end | |
4913 to the MH mail system. | |
4914 | |
4915 See documentation of `\\[mh-send]' for more details on composing mail." t nil) | |
4916 | |
4917 (autoload 'mh-smail-batch "mh-comp" "\ | |
4918 Set up a mail composition draft with the MH mail system. | |
4919 This function is an entry point to mh-e, the Emacs front end | |
4920 to the MH mail system. This function does not prompt the user | |
4921 for any header fields, and thus is suitable for use by programs | |
4922 that want to create a mail buffer. | |
4923 Users should use `\\[mh-smail]' to compose mail." nil nil) | |
4924 | |
4925 (autoload 'mh-smail-other-window "mh-comp" "\ | |
4926 Compose and send mail in other window with the MH mail system. | |
4927 This function is an entry point to mh-e, the Emacs front end | |
4928 to the MH mail system. | |
4929 | |
4930 See documentation of `\\[mh-send]' for more details on composing mail." t nil) | |
4931 | |
4932 (autoload 'mh-letter-mode "mh-comp" "\ | |
4933 Mode for composing letters in mh-e.\\<mh-letter-mode-map> | |
4934 When you have finished composing, type \\[mh-send-letter] to send the message | |
4935 using the MH mail handling system. | |
4936 See the documentation for \\[mh-edit-mhn] for information on composing MIME | |
4937 messages. | |
4938 | |
4939 \\{mh-letter-mode-map} | |
4940 | |
4941 Variables controlling this mode (defaults in parentheses): | |
4942 | |
4943 mh-delete-yanked-msg-window (nil) | |
4944 If non-nil, \\[mh-yank-cur-msg] will delete any windows displaying | |
4945 the yanked message. | |
4946 | |
4947 mh-yank-from-start-of-msg (t) | |
4948 If non-nil, \\[mh-yank-cur-msg] will include the entire message. | |
4949 If `body', just yank the body (no header). | |
4950 If nil, only the portion of the message following the point will be yanked. | |
4951 If there is a region, this variable is ignored. | |
4952 | |
4953 mh-ins-buf-prefix (\"> \") | |
4954 String to insert before each non-blank line of a message as it is | |
4955 inserted in a draft letter. | |
4956 | |
4957 mh-signature-file-name (\"~/.signature\") | |
4958 File to be inserted into message by \\[mh-insert-signature]. | |
4959 | |
4960 Upon invoking mh-letter-mode, text-mode-hook and mh-letter-mode-hook are | |
4961 invoked with no args, if those values are non-nil." t nil) | |
4962 | |
4963 ;;;*** | |
4964 | |
4965 ;;;### (autoloads (mh-version mh-rmail) "mh-e" "mh-e/mh-e.el" (12984 29577)) | |
4966 ;;; Generated autoloads from mh-e/mh-e.el | |
4967 | |
4968 (autoload 'mh-rmail "mh-e" "\ | |
4969 Inc(orporate) new mail with MH, or, with arg, scan an MH mail folder. | |
4970 This function is an entry point to mh-e, the Emacs front end | |
4971 to the MH mail system." t nil) | |
4972 | |
4973 (autoload 'mh-version "mh-e" "\ | |
4974 Display version information about mh-e and the MH mail handling system." t nil) | |
4975 | |
4976 ;;;*** | |
4977 | |
4978 ;;;*** | |
4979 | |
4980 ;;;*** | |
4981 | |
4982 ;;;### (autoloads nil "mh-funcs" "mh-e/mh-funcs.el" (12984 29577)) | |
4983 ;;; Generated autoloads from mh-e/mh-funcs.el | |
4984 | |
4985 ;;;*** | |
4986 | |
4987 ;;;### (autoloads nil "mh-mime" "mh-e/mh-mime.el" (12984 29577)) | |
4988 ;;; Generated autoloads from mh-e/mh-mime.el | |
4989 | |
4990 (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")) "\ | |
4991 Legal MIME content types. See documentation for \\[mh-edit-mhn].") | |
4992 | |
4993 ;;;*** | |
4994 | |
4995 ;;;*** | |
4996 | |
4997 ;;;### (autoloads nil "mh-pick" "mh-e/mh-pick.el" (12984 29577)) | |
4998 ;;; Generated autoloads from mh-e/mh-pick.el | |
4999 | |
5000 ;;;*** | |
5001 | |
5002 ;;;### (autoloads nil "mh-seq" "mh-e/mh-seq.el" (12984 29577)) | |
5003 ;;; Generated autoloads from mh-e/mh-seq.el | |
5004 | |
5005 ;;;### (autoloads nil "mh-utils" "mh-e/mh-utils.el" (12984 29577)) | |
5006 ;;; Generated autoloads from mh-e/mh-utils.el | |
5007 | |
5008 (put 'mh-progs 'risky-local-variable t) | |
5009 | |
5010 (put 'mh-lib 'risky-local-variable t) | |
5011 | |
5012 ;;;*** | |
5013 | |
5014 ;;;*** | |
5015 | |
5016 ;;;*** | |
5017 | |
5018 ;;;### (autoloads nil "abbrev" "modes/abbrev.el" (12984 29541)) | |
5019 ;;; Generated autoloads from modes/abbrev.el | |
5020 | |
5021 ;;;### (autoloads (ada-make-filename-from-adaname ada-mode) "ada-mode" "modes/ada-mode.el" (12984 29544)) | |
5022 ;;; Generated autoloads from modes/ada-mode.el | |
5023 | |
5024 (autoload 'ada-mode "ada-mode" "\ | |
5025 Ada Mode is the major mode for editing Ada code. | |
5026 | |
5027 Bindings are as follows: (Note: 'LFD' is control-j.) | |
5028 | |
5029 Indent line '\\[ada-tab]' | |
5030 Indent line, insert newline and indent the new line. '\\[newline-and-indent]' | |
5031 | |
5032 Re-format the parameter-list point is in '\\[ada-format-paramlist]' | |
5033 Indent all lines in region '\\[ada-indent-region]' | |
5034 Call external pretty printer program '\\[ada-call-pretty-printer]' | |
5035 | |
5036 Adjust case of identifiers and keywords in region '\\[ada-adjust-case-region]' | |
5037 Adjust case of identifiers and keywords in buffer '\\[ada-adjust-case-buffer]' | |
5038 | |
5039 Call EXTERNAL pretty printer (if you have one) '\\[ada-call-pretty-printer]' | |
5040 | |
5041 Fill comment paragraph '\\[ada-fill-comment-paragraph]' | |
5042 Fill comment paragraph and justify each line '\\[ada-fill-comment-paragraph-justify]' | |
5043 Fill comment paragraph, justify and append postfix '\\[ada-fill-comment-paragraph-postfix]' | |
5044 | |
5045 Next func/proc/task '\\[ada-next-procedure]' Previous func/proc/task '\\[ada-previous-procedure]' | |
5046 Next package '\\[ada-next-package]' Previous package '\\[ada-previous-package]' | |
5047 | |
5048 Goto matching start of current 'end ...;' '\\[ada-move-to-start]' | |
5049 Goto end of current block '\\[ada-move-to-end]' | |
5050 | |
5051 Comments are handled using standard GNU Emacs conventions, including: | |
5052 Start a comment '\\[indent-for-comment]' | |
5053 Comment region '\\[comment-region]' | |
5054 Uncomment region '\\[ada-uncomment-region]' | |
5055 Continue comment on next line '\\[indent-new-comment-line]' | |
5056 | |
5057 If you use imenu.el: | |
5058 Display index-menu of functions & procedures '\\[imenu]' | |
5059 | |
5060 If you use find-file.el: | |
5061 Switch to other file (Body <-> Spec) '\\[ff-find-other-file]' | |
5062 or '\\[ff-mouse-find-other-file] | |
5063 Switch to other file in other window '\\[ada-ff-other-window]' | |
5064 or '\\[ff-mouse-find-other-file-other-window] | |
5065 If you use this function in a spec and no body is available, it gets created | |
5066 with body stubs. | |
5067 | |
5068 If you use ada-xref.el: | |
5069 Goto declaration: '\\[ada-point-and-xref]' on the identifier | |
5070 or '\\[ada-goto-declaration]' with point on the identifier | |
5071 Complete identifier: '\\[ada-complete-identifier]' | |
5072 Execute Gnatf: '\\[ada-gnatf-current]'" t nil) | |
5073 | |
5074 (autoload 'ada-make-filename-from-adaname "ada-mode" "\ | |
5075 Determine the filename of a package/procedure from its own Ada name." t nil) | |
5076 | |
5077 ;;;*** | |
5078 | |
5079 ;;;### (autoloads (archive-mode) "arc-mode" "modes/arc-mode.el" (12984 29544)) | |
5080 ;;; Generated autoloads from modes/arc-mode.el | |
5081 | |
5082 (autoload 'archive-mode "arc-mode" "\ | |
5083 Major mode for viewing an archive file in a dired-like way. | |
5084 You can move around using the usual cursor motion commands. | |
5085 Letters no longer insert themselves. | |
5086 Type `e' to pull a file out of the archive and into its own buffer; | |
5087 or click mouse-2 on the file's line in the archive mode buffer. | |
5088 | |
5089 If you edit a sub-file of this archive (as with the `e' command) and | |
5090 save it, the contents of that buffer will be saved back into the | |
5091 archive. | |
5092 | |
5093 \\{archive-mode-map}" nil nil) | |
5094 | |
5095 ;;;*** | |
5096 | |
5097 ;;;### (autoloads (asm-mode) "asm-mode" "modes/asm-mode.el" (12984 29543)) | |
5098 ;;; Generated autoloads from modes/asm-mode.el | |
5099 | |
5100 (autoload 'asm-mode "asm-mode" "\ | |
5101 Major mode for editing typical assembler code. | |
5102 Features a private abbrev table and the following bindings: | |
5103 | |
5104 \\[asm-colon] outdent a preceding label, tab to next tab stop. | |
5105 \\[tab-to-tab-stop] tab to next tab stop. | |
5106 \\[asm-newline] newline, then tab to next tab stop. | |
5107 \\[asm-comment] smart placement of assembler comments. | |
5108 | |
5109 The character used for making comments is set by the variable | |
5110 `asm-comment-char' (which defaults to `?;'). | |
5111 | |
5112 Alternatively, you may set this variable in `asm-mode-set-comment-hook', | |
5113 which is called near the beginning of mode initialization. | |
5114 | |
5115 Turning on Asm mode runs the hook `asm-mode-hook' at the end of initialization. | |
5116 | |
5117 Special commands: | |
5118 \\{asm-mode-map} | |
5119 " t nil) | |
5120 | |
5121 ;;;*** | |
5122 | |
5123 ;;;*** | |
5124 | |
5125 ;;;*** | |
5126 | |
5127 ;;;*** | |
5128 | |
5129 ;;;### (autoloads nil "auto-show" "modes/auto-show.el" (12984 29544)) | |
5130 ;;; Generated autoloads from modes/auto-show.el | |
5131 | |
5132 ;;;### (autoloads (awk-mode) "awk-mode" "modes/awk-mode.el" (12984 29541)) | |
5133 ;;; Generated autoloads from modes/awk-mode.el | |
5134 | |
5135 (autoload 'awk-mode "awk-mode" "\ | |
5136 Major mode for editing AWK code. | |
5137 This is much like C mode except for the syntax of comments. It uses | |
5138 the same keymap as C mode and has the same variables for customizing | |
5139 indentation. It has its own abbrev table and its own syntax table. | |
5140 | |
5141 Turning on AWK mode calls the value of the variable `awk-mode-hook' | |
5142 with no args, if that value is non-nil." t nil) | |
5143 | |
5144 ;;;*** | |
5145 | |
5146 ;;;*** | |
5147 | |
5148 ;;;*** | |
5149 | |
5150 ;;;### (autoloads nil "bib-mode" "modes/bib-mode.el" (12984 29541)) | |
5151 ;;; Generated autoloads from modes/bib-mode.el | |
5152 | |
5153 ;;;### (autoloads (bibtex-mode) "bibtex" "modes/bibtex.el" (12984 29541)) | |
5154 ;;; Generated autoloads from modes/bibtex.el | |
5155 | |
5156 (autoload 'bibtex-mode "bibtex" "\ | |
5157 Major mode for editing bibtex files. | |
5158 | |
5159 \\{bibtex-mode-map} | |
5160 | |
5161 A command such as \\[bibtex-Book] will outline the fields for a BibTeX book entry. | |
5162 | |
5163 The optional fields start with the string OPT, and thus ignored by BibTeX. | |
5164 The OPT string may be removed from a field with \\[bibtex-remove-OPT]. | |
5165 \\[bibtex-kill-optional-field] kills the current optional field entirely. | |
5166 \\[bibtex-remove-double-quotes] removes the double-quotes around the text of | |
5167 the current field. \\[bibtex-empty-field] replaces the text of the current | |
5168 field with the default \"\". | |
5169 | |
5170 The command \\[bibtex-clean-entry] cleans the current entry, i.e. (i) removes | |
5171 double-quotes from entirely numerical fields, (ii) removes OPT from all | |
5172 non-empty optional fields, (iii) removes all empty optional fields, and (iv) | |
5173 checks that no non-optional fields are empty. | |
5174 | |
5175 Use \\[bibtex-find-text] to position the dot at the end of the current field. | |
5176 Use \\[bibtex-next-field] to move to end of the next field. | |
5177 | |
5178 The following may be of interest as well: | |
5179 | |
5180 Functions: | |
5181 find-bibtex-duplicates | |
5182 find-bibtex-entry-location | |
5183 hide-bibtex-entry-bodies | |
5184 sort-bibtex-entries | |
5185 validate-bibtex-buffer | |
5186 | |
5187 Variables: | |
5188 bibtex-clean-entry-zap-empty-opts | |
5189 bibtex-entry-field-alist | |
5190 bibtex-include-OPTannote | |
5191 bibtex-include-OPTcrossref | |
5192 bibtex-include-OPTkey | |
5193 bibtex-maintain-sorted-entries | |
5194 bibtex-mode-user-optional-fields | |
5195 | |
5196 Fields: | |
5197 address | |
5198 Publisher's address | |
5199 annote | |
5200 Long annotation used for annotated bibliographies (begins sentence) | |
5201 author | |
5202 Name(s) of author(s), in BibTeX name format | |
5203 booktitle | |
5204 Book title when the thing being referenced isn't the whole book. | |
5205 For book entries, the title field should be used instead. | |
5206 chapter | |
5207 Chapter number | |
5208 crossref | |
5209 The database key of the entry being cross referenced. | |
5210 edition | |
5211 Edition of a book (e.g., \"second\") | |
5212 editor | |
5213 Name(s) of editor(s), in BibTeX name format. | |
5214 If there is also an author field, then the editor field should be | |
5215 for the book or collection that the work appears in | |
5216 howpublished | |
5217 How something strange has been published (begins sentence) | |
5218 institution | |
5219 Sponsoring institution | |
5220 journal | |
5221 Journal name (macros are provided for many) | |
5222 key | |
5223 Alphabetizing and labeling key (needed when no author or editor) | |
5224 month | |
5225 Month (macros are provided) | |
5226 note | |
5227 To help the reader find a reference (begins sentence) | |
5228 number | |
5229 Number of a journal or technical report | |
5230 organization | |
5231 Organization (sponsoring a conference) | |
5232 pages | |
5233 Page number or numbers (use `--' to separate a range) | |
5234 publisher | |
5235 Publisher name | |
5236 school | |
5237 School name (for theses) | |
5238 series | |
5239 The name of a series or set of books. | |
5240 An individual book will also have its own title | |
5241 title | |
5242 The title of the thing being referenced | |
5243 type | |
5244 Type of a technical report (e.g., \"Research Note\") to be used | |
5245 instead of the default \"Technical Report\" | |
5246 volume | |
5247 Volume of a journal or multivolume work | |
5248 year | |
5249 Year---should contain only numerals | |
5250 --------------------------------------------------------- | |
5251 Entry to this mode calls the value of bibtex-mode-hook if that value is | |
5252 non-nil." t nil) | |
5253 | |
5254 ;;;*** | |
5255 | |
5256 ;;;*** | |
5257 | |
5258 ;;;### (autoloads nil "c-comment" "modes/c-comment.el" (12984 29541)) | |
5259 ;;; Generated autoloads from modes/c-comment.el | |
5260 | |
5261 ;;;*** | |
5262 | |
5263 ;;;### (autoloads nil "c-fill" "modes/c-fill.el" (12984 29541)) | |
5264 ;;; Generated autoloads from modes/c-fill.el | |
5265 | |
5266 ;;;*** | |
5267 | |
5268 ;;;### (autoloads nil "c-style" "modes/c-style.el" (12984 29541)) | |
5269 ;;; Generated autoloads from modes/c-style.el | |
5270 | |
5271 ;;;*** | |
5272 | |
5273 ;;;### (autoloads nil "cc-compat" "modes/cc-compat.el" (12984 29543)) | |
5274 ;;; Generated autoloads from modes/cc-compat.el | |
5275 | |
5276 ;;;*** | |
5277 | |
5278 ;;;### (autoloads nil "cc-guess" "modes/cc-guess.el" (12984 29544)) | |
5279 ;;; Generated autoloads from modes/cc-guess.el | |
5280 | |
5281 ;;;*** | |
5282 | |
5283 ;;;### (autoloads nil "cc-lobotomy" "modes/cc-lobotomy.el" (12984 29543)) | |
5284 ;;; Generated autoloads from modes/cc-lobotomy.el | |
5285 | |
5286 ;;;### (autoloads (c-set-style java-mode objc-mode c++-mode c-mode) "cc-mode" "modes/cc-mode.el" (12988 19699)) | |
5287 ;;; Generated autoloads from modes/cc-mode.el | |
5288 | |
5289 (autoload 'c-mode "cc-mode" "\ | |
5290 Major mode for editing K&R and ANSI C code. | |
5291 To submit a problem report, enter `\\[c-submit-bug-report]' from a | |
5292 c-mode buffer. This automatically sets up a mail buffer with version | |
5293 information already added. You just need to add a description of the | |
5294 problem, including a reproducible test case and send the message. | |
5295 | |
5296 To see what version of cc-mode you are running, enter `\\[c-version]'. | |
5297 | |
5298 The hook variable `c-mode-hook' is run with no args, if that value is | |
5299 bound and has a non-nil value. Also the hook `c-mode-common-hook' is | |
5300 run first. | |
5301 | |
5302 Key bindings: | |
5303 \\{c-mode-map}" t nil) | |
5304 | |
5305 (autoload 'c++-mode "cc-mode" "\ | |
5306 Major mode for editing C++ code. | |
5307 To submit a problem report, enter `\\[c-submit-bug-report]' from a | |
5308 c++-mode buffer. This automatically sets up a mail buffer with | |
5309 version information already added. You just need to add a description | |
5310 of the problem, including a reproducible test case, and send the | |
5311 message. | |
5312 | |
5313 To see what version of cc-mode you are running, enter `\\[c-version]'. | |
5314 | |
5315 The hook variable `c++-mode-hook' is run with no args, if that | |
5316 variable is bound and has a non-nil value. Also the hook | |
5317 `c-mode-common-hook' is run first. | |
5318 | |
5319 Key bindings: | |
5320 \\{c++-mode-map}" t nil) | |
5321 | |
5322 (autoload 'objc-mode "cc-mode" "\ | |
5323 Major mode for editing Objective C code. | |
5324 To submit a problem report, enter `\\[c-submit-bug-report]' from an | |
5325 objc-mode buffer. This automatically sets up a mail buffer with | |
5326 version information already added. You just need to add a description | |
5327 of the problem, including a reproducible test case, and send the | |
5328 message. | |
5329 | |
5330 To see what version of cc-mode you are running, enter `\\[c-version]'. | |
5331 | |
5332 The hook variable `objc-mode-hook' is run with no args, if that value | |
5333 is bound and has a non-nil value. Also the hook `c-mode-common-hook' | |
5334 is run first. | |
5335 | |
5336 Key bindings: | |
5337 \\{objc-mode-map}" t nil) | |
5338 | |
5339 (autoload 'java-mode "cc-mode" "\ | |
5340 Major mode for editing Java code. | |
5341 To submit a problem report, enter `\\[c-submit-bug-report]' from an | |
5342 java-mode buffer. This automatically sets up a mail buffer with | |
5343 version information already added. You just need to add a description | |
5344 of the problem, including a reproducible test case and send the | |
5345 message. | |
5346 | |
5347 To see what version of cc-mode you are running, enter `\\[c-version]'. | |
5348 | |
5349 The hook variable `java-mode-hook' is run with no args, if that value | |
5350 is bound and has a non-nil value. Also the common hook | |
5351 `c-mode-common-hook' is run first. Note that this mode automatically | |
5352 sets the \"java\" style before calling any hooks so be careful if you | |
5353 set styles in `c-mode-common-hook'. | |
5354 | |
5355 Key bindings: | |
5356 \\{java-mode-map}" t nil) | |
5357 | |
5358 (autoload 'c-set-style "cc-mode" "\ | |
5359 Set cc-mode variables to use one of several different indentation styles. | |
5360 STYLENAME is a string representing the desired style from the list of | |
5361 styles described in the variable `c-style-alist'. See that variable | |
5362 for details of setting up styles." t nil) | |
5363 | |
5364 (fset 'set-c-style 'c-set-style) | |
5365 | |
5366 ;;;*** | |
5367 | |
5368 ;;;### (autoloads (common-lisp-indent-function) "cl-indent" "modes/cl-indent.el" (12984 29541)) | |
5369 ;;; Generated autoloads from modes/cl-indent.el | |
5370 | |
5371 (autoload 'common-lisp-indent-function "cl-indent" nil nil nil) | |
5372 | |
5373 ;;;*** | |
5374 | |
5375 ;;;### (autoloads (c-macro-expand) "cmacexp" "modes/cmacexp.el" (12984 29541)) | |
5376 ;;; Generated autoloads from modes/cmacexp.el | |
5377 | |
5378 (autoload 'c-macro-expand "cmacexp" "\ | |
5379 Expand C macros in the region, using the C preprocessor. | |
5380 Normally display output in temp buffer, but | |
5381 prefix arg means replace the region with it. | |
5382 | |
5383 `c-macro-preprocessor' specifies the preprocessor to use. | |
5384 Prompt for arguments to the preprocessor (e.g. `-DDEBUG -I ./include') | |
5385 if the user option `c-macro-prompt-flag' is non-nil. | |
5386 | |
5387 Noninteractive args are START, END, SUBST. | |
5388 For use inside Lisp programs, see also `c-macro-expansion'." t nil) | |
5389 | |
5390 ;;;*** | |
5391 | |
5392 ;;;*** | |
5393 | |
5394 ;;;*** | |
5395 | |
5396 ;;;*** | |
5397 | |
5398 ;;;### (autoloads nil "cperl-mode" "modes/cperl-mode.el" (12984 29544)) | |
5399 ;;; Generated autoloads from modes/cperl-mode.el | |
5400 | |
5401 ;;;### (autoloads (eiffel-mode) "eiffel3" "modes/eiffel3.el" (12988 19701)) | |
5402 ;;; Generated autoloads from modes/eiffel3.el | |
5403 | |
5404 (autoload 'eiffel-mode "eiffel3" "\ | |
5405 Major mode for editing Eiffel programs." t nil) | |
5406 | |
5407 ;;;*** | |
5408 | |
5409 ;;;### (autoloads (enriched-decode enriched-encode enriched-mode) "enriched" "modes/enriched.el" (12984 29542)) | |
5410 ;;; Generated autoloads from modes/enriched.el | |
5411 | |
5412 (autoload 'enriched-mode "enriched" "\ | |
5413 Minor mode for editing text/enriched files. | |
5414 These are files with embedded formatting information in the MIME standard | |
5415 text/enriched format. | |
5416 Turning the mode on runs `enriched-mode-hook'. | |
5417 | |
5418 More information about Enriched mode is available in the file | |
5419 etc/enriched.doc in the Emacs distribution directory. | |
5420 | |
5421 Commands: | |
5422 | |
5423 \\<enriched-mode-map>\\{enriched-mode-map}" t nil) | |
5424 | |
5425 (autoload 'enriched-encode "enriched" nil nil nil) | |
5426 | |
5427 (autoload 'enriched-decode "enriched" nil nil nil) | |
5428 | |
5429 ;;;*** | |
5430 | |
5431 ;;;### (autoloads (executable-self-display executable-set-magic) "executable" "modes/executable.el" (12984 29545)) | |
5432 ;;; Generated autoloads from modes/executable.el | |
5433 | |
5434 (autoload 'executable-set-magic "executable" "\ | |
5435 Set this buffer's interpreter to INTERPRETER with optional ARGUMENT. | |
5436 The variables `executable-magicless-file-regexp', `executable-prefix', | |
5437 `executable-insert', `executable-query' and `executable-chmod' control | |
5438 when and how magic numbers are inserted or replaced and scripts made | |
5439 executable." t nil) | |
5440 | |
5441 (autoload 'executable-self-display "executable" "\ | |
5442 Turn a text file into a self-displaying Un*x command. | |
5443 The magic number of such a command displays all lines but itself." t nil) | |
5444 | |
5445 ;;;*** | |
5446 | |
5447 ;;;### (autoloads (f90-mode) "f90" "modes/f90.el" (12984 29544)) | |
5448 ;;; Generated autoloads from modes/f90.el | |
5449 | |
5450 (autoload 'f90-mode "f90" "\ | |
5451 Major mode for editing Fortran 90 code in free format. | |
5452 | |
5453 \\[f90-indent-new-line] corrects current indentation and creates new indented line. | |
5454 \\[f90-indent-line] indents the current line correctly. | |
5455 \\[f90-indent-subprogram] indents the current subprogram. | |
5456 | |
5457 Type `? or `\\[help-command] to display a list of built-in abbrevs for F90 keywords. | |
5458 | |
5459 Key definitions: | |
5460 \\{f90-mode-map} | |
5461 | |
5462 Variables controlling indentation style and extra features: | |
5463 | |
5464 f90-do-indent | |
5465 Extra indentation within do blocks. (default 3) | |
5466 f90-if-indent | |
5467 Extra indentation within if/select case/where/forall blocks. (default 3) | |
5468 f90-type-indent | |
5469 Extra indentation within type/interface/block-data blocks. (default 3) | |
5470 f90-program-indent | |
5471 Extra indentation within program/module/subroutine/function blocks. | |
5472 (default 2) | |
5473 f90-continuation-indent | |
5474 Extra indentation applied to continuation lines. (default 5) | |
5475 f90-comment-region | |
5476 String inserted by \\[f90-comment-region] at start of each line in | |
5477 region. (default \"!!!$\") | |
5478 f90-indented-comment-re | |
5479 Regexp determining the type of comment to be intended like code. | |
5480 (default \"!\") | |
5481 f90-directive-comment-re | |
5482 Regexp of comment-like directive like \"!HPF\\\\$\", not to be indented. | |
5483 (default \"!hpf\\\\$\") | |
5484 f90-break-delimiters | |
5485 Regexp holding list of delimiters at which lines may be broken. | |
5486 (default \"[-+*/><=,% \\t]\") | |
5487 f90-break-before-delimiters | |
5488 Non-nil causes `f90-do-auto-fill' to break lines before delimiters. | |
5489 (default t) | |
5490 f90-beginning-ampersand | |
5491 Automatic insertion of & at beginning of continuation lines. (default t) | |
5492 f90-smart-end | |
5493 From an END statement, check and fill the end using matching block start. | |
5494 Allowed values are 'blink, 'no-blink, and nil, which determine | |
5495 whether to blink the matching beginning.) (default 'blink) | |
5496 f90-auto-keyword-case | |
5497 Automatic change of case of keywords. (default nil) | |
5498 The possibilities are 'downcase-word, 'upcase-word, 'capitalize-word. | |
5499 f90-leave-line-no | |
5500 Do not left-justify line numbers. (default nil) | |
5501 f90-startup-message | |
5502 Set to nil to inhibit message first time F90 mode is used. (default t) | |
5503 f90-keywords-re | |
5504 List of keywords used for highlighting/upcase-keywords etc. | |
5505 | |
5506 Turning on F90 mode calls the value of the variable `f90-mode-hook' | |
5507 with no args, if that value is non-nil." t nil) | |
5508 | |
5509 ;;;*** | |
5510 | |
5511 ;;;### (autoloads (follow-delete-other-windows-and-split follow-mode turn-off-follow-mode turn-on-follow-mode) "follow" "modes/follow.el" (12984 29542)) | |
5512 ;;; Generated autoloads from modes/follow.el | |
5513 | |
5514 (add-minor-mode 'follow-mode nil 'follow-mode-map) | |
5515 | |
5516 (autoload 'turn-on-follow-mode "follow" "\ | |
5517 Turn on Follow mode. Please see the function `follow-mode'." t nil) | |
5518 | |
5519 (autoload 'turn-off-follow-mode "follow" "\ | |
5520 Turn off Follow mode. Please see the function `follow-mode'." t nil) | |
5521 | |
5522 (autoload 'follow-mode "follow" "\ | |
5523 Minor mode which combines windows into one tall virtual window. | |
5524 | |
5525 The feeling of a \"virtual window\" has been accomplished by the use | |
5526 of two major techniques: | |
5527 | |
5528 * The windows always displays adjacent sections of the buffer. | |
5529 This means that whenever one window is moved, all the | |
5530 others will follow. (Hence the name Follow Mode.) | |
5531 | |
5532 * Should the point (cursor) end up outside a window, another | |
5533 window displaying that point is selected, if possible. This | |
5534 makes it possible to walk between windows using normal cursor | |
5535 movement commands. | |
5536 | |
5537 Follow mode comes to its prime when used on a large screen and two | |
5538 side-by-side window are used. The user can, with the help of Follow | |
5539 mode, use two full-height windows as though they would have been | |
5540 one. Imagine yourself editing a large function, or section of text, | |
5541 and beeing able to use 144 lines instead of the normal 72... (your | |
5542 mileage may vary). | |
5543 | |
5544 To split one large window into two side-by-side windows, the commands | |
5545 `\\[split-window-horizontally]' or `M-x follow-delete-other-windows-and-split' can be used. | |
5546 | |
5547 Only windows displayed in the same frame follow each-other. | |
5548 | |
5549 If the variable `follow-intercept-processes' is non-nil, Follow mode | |
5550 will listen to the output of processes and redisplay accordingly. | |
5551 \(This is the default.) | |
5552 | |
5553 When Follow mode is switched on, the hook `follow-mode-hook' | |
5554 is called. When turned off, `follow-mode-off-hook' is called. | |
5555 | |
5556 Keys specific to Follow mode: | |
5557 \\{follow-mode-map}" t nil) | |
5558 | |
5559 (autoload 'follow-delete-other-windows-and-split "follow" "\ | |
5560 Create two side by side windows and enter Follow Mode. | |
5561 | |
5562 Execute this command to display as much as possible of the text | |
5563 in the selected window. All other windows, in the current | |
5564 frame, are deleted and the selected window is split in two | |
5565 side-by-side windows. Follow Mode is activated, hence the | |
5566 two windows always will display two successive pages. | |
5567 \(If one window is moved, the other one will follow.) | |
5568 | |
5569 If ARG is positive, the leftmost window is selected. If it negative, | |
5570 the rightmost is selected. If ARG is nil, the leftmost window is | |
5571 selected if the original window is the first one in the frame. | |
5572 | |
5573 To bind this command to a hotkey, place the following line | |
5574 in your `~/.emacs' file, replacing [f7] by your favourite key: | |
5575 (global-set-key [f7] 'follow-delete-other-windows-and-split)" t nil) | |
5576 | |
5577 ;;;*** | |
5578 | |
5579 ;;;*** | |
5580 | |
5581 ;;;*** | |
5582 | |
5583 ;;;### (autoloads nil "fortran-misc" "modes/fortran-misc.el" (12984 29542)) | |
5584 ;;; Generated autoloads from modes/fortran-misc.el | |
5585 | |
5586 ;;;### (autoloads (fortran-mode) "fortran" "modes/fortran.el" (12991 6548)) | |
5587 ;;; Generated autoloads from modes/fortran.el | |
5588 | |
5589 (defvar fortran-tab-mode-default nil "\ | |
5590 *Default tabbing/carriage control style for empty files in Fortran mode. | |
5591 A value of t specifies tab-digit style of continuation control. | |
5592 A value of nil specifies that continuation lines are marked | |
5593 with a character in column 6.") | |
5594 | |
5595 (autoload 'fortran-mode "fortran" "\ | |
5596 Major mode for editing Fortran code. | |
5597 \\[fortran-indent-line] indents the current Fortran line correctly. | |
5598 DO statements must not share a common CONTINUE. | |
5599 | |
5600 Type ;? or ;\\[help-command] to display a list of built-in abbrevs for Fortran keywords. | |
5601 | |
5602 Key definitions: | |
5603 \\{fortran-mode-map} | |
5604 | |
5605 Variables controlling indentation style and extra features: | |
5606 | |
5607 comment-start | |
5608 Normally nil in Fortran mode. If you want to use comments | |
5609 starting with `!', set this to the string \"!\". | |
5610 fortran-do-indent | |
5611 Extra indentation within do blocks. (default 3) | |
5612 fortran-if-indent | |
5613 Extra indentation within if blocks. (default 3) | |
5614 fortran-structure-indent | |
5615 Extra indentation within structure, union, map and interface blocks. | |
5616 (default 3) | |
5617 fortran-continuation-indent | |
5618 Extra indentation applied to continuation statements. (default 5) | |
5619 fortran-comment-line-extra-indent | |
5620 Amount of extra indentation for text within full-line comments. (default 0) | |
5621 fortran-comment-indent-style | |
5622 nil means don't change indentation of text in full-line comments, | |
5623 fixed means indent that text at `fortran-comment-line-extra-indent' beyond | |
5624 the value of `fortran-minimum-statement-indent-fixed' (for fixed | |
5625 format continuation style) or `fortran-minimum-statement-indent-tab' | |
5626 (for TAB format continuation style). | |
5627 relative means indent at `fortran-comment-line-extra-indent' beyond the | |
5628 indentation for a line of code. | |
5629 (default 'fixed) | |
5630 fortran-comment-indent-char | |
5631 Single-character string to be inserted instead of space for | |
5632 full-line comment indentation. (default \" \") | |
5633 fortran-minimum-statement-indent-fixed | |
5634 Minimum indentation for Fortran statements in fixed format mode. (def.6) | |
5635 fortran-minimum-statement-indent-tab | |
5636 Minimum indentation for Fortran statements in TAB format mode. (default 9) | |
5637 fortran-line-number-indent | |
5638 Maximum indentation for line numbers. A line number will get | |
5639 less than this much indentation if necessary to avoid reaching | |
5640 column 5. (default 1) | |
5641 fortran-check-all-num-for-matching-do | |
5642 Non-nil causes all numbered lines to be treated as possible \"continue\" | |
5643 statements. (default nil) | |
5644 fortran-blink-matching-if | |
5645 Non-nil causes \\[fortran-indent-line] on an ENDIF statement to blink on | |
5646 matching IF. Also, from an ENDDO statement, blink on matching DO [WHILE] | |
5647 statement. (default nil) | |
5648 fortran-continuation-string | |
5649 Single-character string to be inserted in column 5 of a continuation | |
5650 line. (default \"$\") | |
5651 fortran-comment-region | |
5652 String inserted by \\[fortran-comment-region] at start of each line in | |
5653 region. (default \"c$$$\") | |
5654 fortran-electric-line-number | |
5655 Non-nil causes line number digits to be moved to the correct column | |
5656 as typed. (default t) | |
5657 fortran-break-before-delimiters | |
5658 Non-nil causes `fortran-fill' breaks lines before delimiters. | |
5659 (default t) | |
5660 fortran-startup-message | |
5661 Set to nil to inhibit message first time Fortran mode is used. | |
5662 | |
5663 Turning on Fortran mode calls the value of the variable `fortran-mode-hook' | |
5664 with no args, if that value is non-nil." t nil) | |
5665 | |
5666 ;;;*** | |
5667 | |
5668 ;;;### (autoloads (hide-ifdef-mode) "hideif" "modes/hideif.el" (12984 29541)) | |
5669 ;;; Generated autoloads from modes/hideif.el | |
5670 | |
5671 (add-minor-mode 'hide-ifdef-mode " Ifdef") | |
5672 | |
5673 (autoload 'hide-ifdef-mode "hideif" "\ | |
5674 Toggle Hide-Ifdef mode. This is a minor mode, albeit a large one. | |
5675 With ARG, turn Hide-Ifdef mode on if arg is positive, off otherwise. | |
5676 In Hide-Ifdef mode, code within #ifdef constructs that the C preprocessor | |
5677 would eliminate may be hidden from view. Several variables affect | |
5678 how the hiding is done: | |
5679 | |
5680 hide-ifdef-env | |
5681 An association list of defined and undefined symbols for the | |
5682 current buffer. Initially, the global value of `hide-ifdef-env' | |
5683 is used. | |
5684 | |
5685 hide-ifdef-define-alist | |
5686 An association list of defined symbol lists. | |
5687 Use `hide-ifdef-set-define-alist' to save the current `hide-ifdef-env' | |
5688 and `hide-ifdef-use-define-alist' to set the current `hide-ifdef-env' | |
5689 from one of the lists in `hide-ifdef-define-alist'. | |
5690 | |
5691 hide-ifdef-lines | |
5692 Set to non-nil to not show #if, #ifdef, #ifndef, #else, and | |
5693 #endif lines when hiding. | |
5694 | |
5695 hide-ifdef-initially | |
5696 Indicates whether `hide-ifdefs' should be called when Hide-Ifdef mode | |
5697 is activated. | |
5698 | |
5699 hide-ifdef-read-only | |
5700 Set to non-nil if you want to make buffers read only while hiding. | |
5701 After `show-ifdefs', read-only status is restored to previous value. | |
5702 | |
5703 \\{hide-ifdef-mode-map}" t nil) | |
5704 | |
5705 (defvar hide-ifdef-initially nil "\ | |
5706 *Non-nil means call `hide-ifdefs' when Hide-Ifdef mode is first activated.") | |
5707 | |
5708 (defvar hide-ifdef-read-only nil "\ | |
5709 *Set to non-nil if you want buffer to be read-only while hiding text.") | |
5710 | |
5711 (defvar hide-ifdef-lines nil "\ | |
5712 *Non-nil means hide the #ifX, #else, and #endif lines.") | |
5713 | |
5714 ;;;*** | |
5715 | |
5716 ;;;### (autoloads (hs-minor-mode hs-hide-block hs-hide-all) "hideshow" "modes/hideshow.el" (12988 19709)) | |
5717 ;;; Generated autoloads from modes/hideshow.el | |
5718 | |
5719 (defvar hs-minor-mode nil "\ | |
5720 Non-nil if using hideshow mode as a minor mode of some other mode. | |
5721 Use the command `hs-minor-mode' to toggle this variable.") | |
5722 | |
5723 (autoload 'hs-hide-all "hideshow" "\ | |
5724 Hides all top-level blocks, displaying only first and last lines. | |
5725 It moves point to the beginning of the line, and it runs the normal hook | |
5726 `hs-hide-hook'. See documentation for `run-hooks'." t nil) | |
5727 | |
5728 (autoload 'hs-hide-block "hideshow" "\ | |
5729 Selects a block and hides it. With prefix arg, reposition at end. | |
5730 Block is defined as a sexp for lispish modes, mode-specific otherwise. | |
5731 Comments are blocks, too. Upon completion, point is at repositioned and | |
5732 the normal hook `hs-hide-hook' is run. See documentation for `run-hooks'." t nil) | |
5733 | |
5734 (autoload 'hs-minor-mode "hideshow" "\ | |
5735 Toggle hideshow minor mode. | |
5736 With ARG, turn hideshow minor mode on if ARG is positive, off otherwise. | |
5737 When hideshow minor mode is on, the menu bar is augmented with hideshow | |
5738 commands and the hideshow commands are enabled. The variables | |
5739 `selective-display' and `selective-display-ellipses' are set to t. | |
5740 Last, the normal hook `hs-minor-mode-hook' is run; see the doc for `run-hooks'. | |
5741 | |
5742 Turning hideshow minor mode off reverts the menu bar and the | |
5743 variables to default values and disables the hideshow commands." t nil) | |
5744 | |
5745 (add-minor-mode 'hs-minor-mode " hs" 'hs-minor-mode-map) | |
5746 | |
5747 ;;;*** | |
5748 | |
5749 ;;;### (autoloads (icon-mode) "icon" "modes/icon.el" (12984 29541)) | |
5750 ;;; Generated autoloads from modes/icon.el | |
5751 | |
5752 (autoload 'icon-mode "icon" "\ | |
5753 Major mode for editing Icon code. | |
5754 Expression and list commands understand all Icon brackets. | |
5755 Tab indents for Icon code. | |
5756 Paragraphs are separated by blank lines only. | |
5757 Delete converts tabs to spaces as it moves back. | |
5758 \\{icon-mode-map} | |
5759 Variables controlling indentation style: | |
5760 icon-tab-always-indent | |
5761 Non-nil means TAB in Icon mode should always reindent the current line, | |
5762 regardless of where in the line point is when the TAB command is used. | |
5763 icon-auto-newline | |
5764 Non-nil means automatically newline before and after braces | |
5765 inserted in Icon code. | |
5766 icon-indent-level | |
5767 Indentation of Icon statements within surrounding block. | |
5768 The surrounding block's indentation is the indentation | |
5769 of the line on which the open-brace appears. | |
5770 icon-continued-statement-offset | |
5771 Extra indentation given to a substatement, such as the | |
5772 then-clause of an if or body of a while. | |
5773 icon-continued-brace-offset | |
5774 Extra indentation given to a brace that starts a substatement. | |
5775 This is in addition to `icon-continued-statement-offset'. | |
5776 icon-brace-offset | |
5777 Extra indentation for line if it starts with an open brace. | |
5778 icon-brace-imaginary-offset | |
5779 An open brace following other text is treated as if it were | |
5780 this far to the right of the start of its line. | |
5781 | |
5782 Turning on Icon mode calls the value of the variable `icon-mode-hook' | |
5783 with no args, if that value is non-nil." t nil) | |
5784 | |
5785 ;;;*** | |
5786 | |
5787 ;;;### (autoloads (imenu imenu-add-to-menubar) "imenu" "modes/imenu.el" (12984 29545)) | |
5788 ;;; Generated autoloads from modes/imenu.el | |
5789 | |
5790 (defvar imenu-generic-expression nil "\ | |
5791 The regex pattern to use for creating a buffer index. | |
5792 | |
5793 If non-nil this pattern is passed to `imenu-create-index-with-pattern' | |
5794 to create a buffer index. | |
5795 | |
5796 It is an alist with elements that look like this: (MENU-TITLE | |
5797 REGEXP INDEX). | |
5798 | |
5799 MENU-TITLE is a string used as the title for the submenu or nil if the | |
5800 entries are not nested. | |
5801 | |
5802 REGEXP is a regexp that should match a construct in the buffer that is | |
5803 to be displayed in the menu; i.e., function or variable definitions, | |
5804 etc. It contains a substring which is the name to appear in the | |
5805 menu. See the info section on Regexps for more information. | |
5806 | |
5807 INDEX points to the substring in REGEXP that contains the name (of the | |
5808 function, variable or type) that is to appear in the menu. | |
5809 | |
5810 For emacs-lisp-mode for example PATTERN would look like: | |
5811 | |
5812 '((nil \"^\\\\s-*(def\\\\(un\\\\|subst\\\\|macro\\\\|advice\\\\)\\\\s-+\\\\([-A-Za-z0-9+]+\\\\)\" 2) | |
5813 (\"*Vars*\" \"^\\\\s-*(def\\\\(var\\\\|const\\\\)\\\\s-+\\\\([-A-Za-z0-9+]+\\\\)\" 2) | |
5814 (\"*Types*\" \"^\\\\s-*(def\\\\(type\\\\|struct\\\\|class\\\\|ine-condition\\\\)\\\\s-+\\\\([-A-Za-z0-9+]+\\\\)\" 2)) | |
5815 | |
5816 The variable is buffer-local.") | |
5817 | |
5818 (make-variable-buffer-local 'imenu-generic-expression) | |
5819 | |
5820 (autoload 'imenu-add-to-menubar "imenu" "\ | |
5821 Adds an `imenu' entry to the menu bar for the current buffer. | |
5822 NAME is a string used to name the menu bar item. | |
5823 See the command `imenu' for more information." t nil) | |
5824 | |
5825 (autoload 'imenu "imenu" "\ | |
5826 Jump to a place in the buffer chosen using a buffer menu or mouse menu. | |
5827 See `imenu-choose-buffer-index' for more information." t nil) | |
5828 | |
5829 ;;;*** | |
5830 | |
5831 ;;;### (autoloads (ksh-mode) "ksh-mode" "modes/ksh-mode.el" (12984 29542)) | |
5832 ;;; Generated autoloads from modes/ksh-mode.el | |
5833 | |
5834 (autoload 'ksh-mode "ksh-mode" "\ | |
5835 ksh-mode $Revision: 1.2 $ - Major mode for editing (Bourne, Korn or Bourne again) | |
5836 shell scripts. | |
5837 Special key bindings and commands: | |
5838 \\{ksh-mode-map} | |
5839 Variables controlling indentation style: | |
5840 ksh-indent | |
5841 Indentation of ksh statements with respect to containing block. | |
5842 Default value is 2. | |
5843 ksh-case-indent | |
5844 Additional indentation for statements under case items. | |
5845 Default value is nil which will align the statements one position | |
5846 past the \")\" of the pattern. | |
5847 ksh-case-item-offset | |
5848 Additional indentation for case items within a case statement. | |
5849 Default value is 2. | |
5850 ksh-group-offset | |
5851 Additional indentation for keywords \"do\" and \"then\". | |
5852 Default value is -2. | |
5853 ksh-brace-offset | |
5854 Additional indentation of \"{\" under functions or brace groupings. | |
5855 Default value is 0. | |
5856 ksh-multiline-offset | |
5857 Additional indentation of line that is preceded of a line ending with a | |
5858 \\ to make it continue on next line. | |
5859 ksh-tab-always-indent | |
5860 Controls the operation of the TAB key. If t (the default), always | |
5861 reindent the current line. If nil, indent the current line only if | |
5862 point is at the left margin or in the line's indentation; otherwise | |
5863 insert a tab. | |
5864 ksh-match-and-tell | |
5865 If non-nil echo in the minibuffer the matching compound command | |
5866 for the \"done\", \"}\", \"fi\", or \"esac\". Default value is t. | |
5867 | |
5868 ksh-align-to-keyword | |
5869 Controls whether nested constructs align from the keyword or | |
5870 the current indentation. If non-nil, indentation will be relative to | |
5871 the column the keyword starts. If nil, indentation will be relative to | |
5872 the current indentation of the line the keyword is on. | |
5873 The default value is non-nil. | |
5874 | |
5875 ksh-comment-regexp | |
5876 Regular expression used to recognize comments. Customize to support | |
5877 ksh-like languages. Default value is \"\\s *#\". | |
5878 | |
5879 Style Guide. | |
5880 By setting | |
5881 (setq ksh-indent default-tab-width) | |
5882 (setq ksh-group-offset 0) | |
5883 | |
5884 The following style is obtained: | |
5885 | |
5886 if [ -z $foo ] | |
5887 then | |
5888 bar # <-- ksh-group-offset is additive to ksh-indent | |
5889 foo | |
5890 fi | |
5891 | |
5892 By setting | |
5893 (setq ksh-indent default-tab-width) | |
5894 (setq ksh-group-offset (- 0 ksh-indent)) | |
5895 | |
5896 The following style is obtained: | |
5897 | |
5898 if [ -z $foo ] | |
5899 then | |
5900 bar | |
5901 foo | |
5902 fi | |
5903 | |
5904 By setting | |
5905 (setq ksh-case-item-offset 1) | |
5906 (setq ksh-case-indent nil) | |
5907 | |
5908 The following style is obtained: | |
5909 | |
5910 case x in * | |
5911 foo) bar # <-- ksh-case-item-offset | |
5912 baz;; # <-- ksh-case-indent aligns with \")\" | |
5913 foobar) foo | |
5914 bar;; | |
5915 esac | |
5916 | |
5917 By setting | |
5918 (setq ksh-case-item-offset 1) | |
5919 (setq ksh-case-indent 6) | |
5920 | |
5921 The following style is obtained: | |
5922 | |
5923 case x in * | |
5924 foo) bar # <-- ksh-case-item-offset | |
5925 baz;; # <-- ksh-case-indent | |
5926 foobar) foo | |
5927 bar;; | |
5928 esac | |
5929 | |
5930 | |
5931 Installation: | |
5932 | |
5933 (setq ksh-mode-hook | |
5934 (function (lambda () | |
5935 (font-lock-mode 1) ;; font-lock the buffer | |
5936 (setq ksh-indent 8) | |
5937 (setq ksh-group-offset -8) | |
5938 (setq ksh-brace-offset -8) | |
5939 (setq ksh-tab-always-indent t) | |
5940 (setq ksh-match-and-tell t) | |
5941 (setq ksh-align-to-keyword t) ;; Turn on keyword alignment | |
5942 )))" t nil) | |
5943 | |
5944 ;;;*** | |
5945 | |
5946 ;;;*** | |
5947 | |
5948 ;;;*** | |
5949 | |
5950 ;;;*** | |
5951 | |
5952 ;;;### (autoloads nil "lisp-mnt" "modes/lisp-mnt.el" (12984 29543)) | |
5953 ;;; Generated autoloads from modes/lisp-mnt.el | |
5954 | |
5955 ;;;*** | |
5956 | |
5957 ;;;### (autoloads nil "lisp-mode" "modes/lisp-mode.el" (12984 29541)) | |
5958 ;;; Generated autoloads from modes/lisp-mode.el | |
5959 | |
5960 ;;;*** | |
5961 | |
5962 ;;;### (autoloads nil "list-mode" "modes/list-mode.el" (12984 29542)) | |
5963 ;;; Generated autoloads from modes/list-mode.el | |
5964 | |
5965 ;;;### (autoloads (m4-mode) "m4-mode" "modes/m4-mode.el" (12984 29545)) | |
5966 ;;; Generated autoloads from modes/m4-mode.el | |
5967 | |
5968 (autoload 'm4-mode "m4-mode" "\ | |
5969 A major-mode to edit m4 macro files | |
5970 \\{m4-mode-map} | |
5971 " t nil) | |
5972 | |
5973 ;;;*** | |
5974 | |
5975 ;;;### (autoloads (makefile-mode) "make-mode" "modes/make-mode.el" (12984 29541)) | |
5976 ;;; Generated autoloads from modes/make-mode.el | |
5977 | |
5978 (autoload 'makefile-mode "make-mode" "\ | |
5979 Major mode for editing Makefiles. | |
5980 This function ends by invoking the function(s) `makefile-mode-hook'. | |
5981 | |
5982 \\{makefile-mode-map} | |
5983 | |
5984 In the browser, use the following keys: | |
5985 | |
5986 \\{makefile-browser-map} | |
5987 | |
5988 Makefile mode can be configured by modifying the following variables: | |
5989 | |
5990 makefile-browser-buffer-name: | |
5991 Name of the macro- and target browser buffer. | |
5992 | |
5993 makefile-target-colon: | |
5994 The string that gets appended to all target names | |
5995 inserted by `makefile-insert-target'. | |
5996 \":\" or \"::\" are quite common values. | |
5997 | |
5998 makefile-macro-assign: | |
5999 The string that gets appended to all macro names | |
6000 inserted by `makefile-insert-macro'. | |
6001 The normal value should be \" = \", since this is what | |
6002 standard make expects. However, newer makes such as dmake | |
6003 allow a larger variety of different macro assignments, so you | |
6004 might prefer to use \" += \" or \" := \" . | |
6005 | |
6006 makefile-tab-after-target-colon: | |
6007 If you want a TAB (instead of a space) to be appended after the | |
6008 target colon, then set this to a non-nil value. | |
6009 | |
6010 makefile-browser-leftmost-column: | |
6011 Number of blanks to the left of the browser selection mark. | |
6012 | |
6013 makefile-browser-cursor-column: | |
6014 Column in which the cursor is positioned when it moves | |
6015 up or down in the browser. | |
6016 | |
6017 makefile-browser-selected-mark: | |
6018 String used to mark selected entries in the browser. | |
6019 | |
6020 makefile-browser-unselected-mark: | |
6021 String used to mark unselected entries in the browser. | |
6022 | |
6023 makefile-browser-auto-advance-after-selection-p: | |
6024 If this variable is set to a non-nil value the cursor | |
6025 will automagically advance to the next line after an item | |
6026 has been selected in the browser. | |
6027 | |
6028 makefile-pickup-everything-picks-up-filenames-p: | |
6029 If this variable is set to a non-nil value then | |
6030 `makefile-pickup-everything' also picks up filenames as targets | |
6031 (i.e. it calls `makefile-find-filenames-as-targets'), otherwise | |
6032 filenames are omitted. | |
6033 | |
6034 makefile-cleanup-continuations-p: | |
6035 If this variable is set to a non-nil value then makefile-mode | |
6036 will assure that no line in the file ends with a backslash | |
6037 (the continuation character) followed by any whitespace. | |
6038 This is done by silently removing the trailing whitespace, leaving | |
6039 the backslash itself intact. | |
6040 IMPORTANT: Please note that enabling this option causes makefile-mode | |
6041 to MODIFY A FILE WITHOUT YOUR CONFIRMATION when \"it seems necessary\". | |
6042 | |
6043 makefile-browser-hook: | |
6044 A function or list of functions to be called just before the | |
6045 browser is entered. This is executed in the makefile buffer. | |
6046 | |
6047 makefile-special-targets-list: | |
6048 List of special targets. You will be offered to complete | |
6049 on one of those in the minibuffer whenever you enter a `.'. | |
6050 at the beginning of a line in Makefile mode." t nil) | |
6051 | |
6052 ;;;*** | |
6053 | |
6054 ;;;*** | |
6055 | |
6056 ;;;*** | |
6057 | |
6058 ;;;### (autoloads nil "old-c++-mode" "modes/old-c++-mode.el" (12984 29543)) | |
6059 ;;; Generated autoloads from modes/old-c++-mode.el | |
6060 | |
6061 ;;;*** | |
6062 | |
6063 ;;;### (autoloads nil "old-c-mode" "modes/old-c-mode.el" (12984 29543)) | |
6064 ;;; Generated autoloads from modes/old-c-mode.el | |
6065 | |
6066 ;;;### (autoloads (py-shell python-mode) "python-mode" "modes/python-mode.el" (12984 29545)) | |
6067 ;;; Generated autoloads from modes/python-mode.el | |
6068 | |
6069 (eval-when-compile (condition-case nil (progn (require 'cl) (require 'imenu)) (error nil))) | |
6070 | |
6071 (autoload 'python-mode "python-mode" "\ | |
6072 Major mode for editing Python files. | |
6073 To submit a problem report, enter `\\[py-submit-bug-report]' from a | |
6074 `python-mode' buffer. Do `\\[py-describe-mode]' for detailed | |
6075 documentation. To see what version of `python-mode' you are running, | |
6076 enter `\\[py-version]'. | |
6077 | |
6078 This mode knows about Python indentation, tokens, comments and | |
6079 continuation lines. Paragraphs are separated by blank lines only. | |
6080 | |
6081 COMMANDS | |
6082 \\{py-mode-map} | |
6083 VARIABLES | |
6084 | |
6085 py-indent-offset indentation increment | |
6086 py-block-comment-prefix comment string used by comment-region | |
6087 py-python-command shell command to invoke Python interpreter | |
6088 py-scroll-process-buffer always scroll Python process buffer | |
6089 py-temp-directory directory used for temp files (if needed) | |
6090 py-beep-if-tab-change ring the bell if tab-width is changed" t nil) | |
6091 | |
6092 (autoload 'py-shell "python-mode" "\ | |
6093 Start an interactive Python interpreter in another window. | |
6094 This is like Shell mode, except that Python is running in the window | |
6095 instead of a shell. See the `Interactive Shell' and `Shell Mode' | |
6096 sections of the Emacs manual for details, especially for the key | |
6097 bindings active in the `*Python*' buffer. | |
6098 | |
6099 See the docs for variable `py-scroll-buffer' for info on scrolling | |
6100 behavior in the process window. | |
6101 | |
6102 Warning: Don't use an interactive Python if you change sys.ps1 or | |
6103 sys.ps2 from their default values, or if you're running code that | |
6104 prints `>>> ' or `... ' at the start of a line. `python-mode' can't | |
6105 distinguish your output from Python's output, and assumes that `>>> ' | |
6106 at the start of a line is a prompt from Python. Similarly, the Emacs | |
6107 Shell mode code assumes that both `>>> ' and `... ' at the start of a | |
6108 line are Python prompts. Bad things can happen if you fool either | |
6109 mode. | |
6110 | |
6111 Warning: If you do any editing *in* the process buffer *while* the | |
6112 buffer is accepting output from Python, do NOT attempt to `undo' the | |
6113 changes. Some of the output (nowhere near the parts you changed!) may | |
6114 be lost if you do. This appears to be an Emacs bug, an unfortunate | |
6115 interaction between undo and process filters; the same problem exists in | |
6116 non-Python process buffers using the default (Emacs-supplied) process | |
6117 filter." t nil) | |
6118 | |
6119 ;;;*** | |
6120 | |
6121 ;;;### (autoloads (rexx-mode) "rexx-mode" "modes/rexx-mode.el" (12984 29543)) | |
6122 ;;; Generated autoloads from modes/rexx-mode.el | |
6123 | |
6124 (autoload 'rexx-mode "rexx-mode" "\ | |
6125 Major mode for editing REXX code. | |
6126 \\{rexx-mode-map} | |
6127 | |
6128 Variables controlling indentation style: | |
6129 rexx-indent | |
6130 The basic indentation for do-blocks. | |
6131 rexx-end-indent | |
6132 The relative offset of the \"end\" statement. 0 places it in the | |
6133 same column as the statements of the block. Setting it to the same | |
6134 value as rexx-indent places the \"end\" under the do-line. | |
6135 rexx-cont-indent | |
6136 The indention for lines following \"then\", \"else\" and \",\" | |
6137 (continued) lines. | |
6138 rexx-tab-always-indent | |
6139 Non-nil means TAB in REXX mode should always reindent the current | |
6140 line, regardless of where in the line the point is when the TAB | |
6141 command is used. | |
6142 | |
6143 If you have set rexx-end-indent to a nonzero value, you probably want to | |
6144 remap RETURN to rexx-indent-newline-indent. It makes sure that lines | |
6145 indents correctly when you press RETURN. | |
6146 | |
6147 An extensive abbrevation table consisting of all the keywords of REXX are | |
6148 supplied. Expanded keywords are converted into upper case making it | |
6149 easier to distinguish them. To use this feature the buffer must be in | |
6150 abbrev-mode. (See example below.) | |
6151 | |
6152 Turning on REXX mode calls the value of the variable rexx-mode-hook with | |
6153 no args, if that value is non-nil. | |
6154 | |
6155 For example: | |
6156 \(setq rexx-mode-hook '(lambda () | |
6157 (setq rexx-indent 4) | |
6158 (setq rexx-end-indent 4) | |
6159 (setq rexx-cont-indent 4) | |
6160 (local-set-key \"\\C-m\" 'rexx-indent-newline-indent) | |
6161 (abbrev-mode 1) | |
6162 )) | |
6163 | |
6164 will make the END aligned with the DO/SELECT. It will indent blocks and | |
6165 IF-statenents four steps and make sure that the END jumps into the | |
6166 correct position when RETURN is pressed. Finaly it will use the abbrev | |
6167 table to convert all REXX keywords into upper case." t nil) | |
6168 | |
6169 ;;;*** | |
6170 | |
6171 ;;;### (autoloads (define-mail-alias build-mail-aliases mail-aliases-setup) "mail-abbrevs" "modes/mail-abbrevs.el" (12996 10112)) | |
6172 ;;; Generated autoloads from modes/mail-abbrevs.el | |
6173 | |
6174 (defvar mail-abbrev-mailrc-file nil "\ | |
6175 Name of file with mail aliases. If nil, ~/.mailrc is used.") | |
6176 | |
6177 (defvar mail-aliases nil "\ | |
6178 Word-abbrev table of mail address aliases. | |
6179 If this is nil, it means the aliases have not yet been initialized and | |
6180 should be read from the .mailrc file. (This is distinct from there being | |
6181 no aliases, which is represented by this being a table with no entries.)") | |
6182 | |
6183 (autoload 'mail-aliases-setup "mail-abbrevs" nil nil nil) | |
6184 | |
6185 (autoload 'build-mail-aliases "mail-abbrevs" "\ | |
6186 Read mail aliases from .mailrc and set mail-aliases." nil nil) | |
6187 | |
6188 (autoload 'define-mail-alias "mail-abbrevs" "\ | |
6189 Define NAME as a mail-alias that translates to DEFINITION. | |
6190 If DEFINITION contains multiple addresses, separate them with commas." t nil) | |
6191 | |
6192 ;;;*** | |
6193 | |
6194 ;;;### (autoloads (modula-2-mode) "modula2" "modes/modula2.el" (12984 29542)) | |
6195 ;;; Generated autoloads from modes/modula2.el | |
6196 | |
6197 (autoload 'modula-2-mode "modula2" "\ | |
6198 This is a mode intended to support program development in Modula-2. | |
6199 All control constructs of Modula-2 can be reached by typing C-c | |
6200 followed by the first character of the construct. | |
6201 \\<m2-mode-map> | |
6202 \\[m2-begin] begin \\[m2-case] case | |
6203 \\[m2-definition] definition \\[m2-else] else | |
6204 \\[m2-for] for \\[m2-header] header | |
6205 \\[m2-if] if \\[m2-module] module | |
6206 \\[m2-loop] loop \\[m2-or] or | |
6207 \\[m2-procedure] procedure Control-c Control-w with | |
6208 \\[m2-record] record \\[m2-stdio] stdio | |
6209 \\[m2-type] type \\[m2-until] until | |
6210 \\[m2-var] var \\[m2-while] while | |
6211 \\[m2-export] export \\[m2-import] import | |
6212 \\[m2-begin-comment] begin-comment \\[m2-end-comment] end-comment | |
6213 \\[suspend-emacs] suspend Emacs \\[m2-toggle] toggle | |
6214 \\[m2-compile] compile \\[m2-next-error] next-error | |
6215 \\[m2-link] link | |
6216 | |
6217 `m2-indent' controls the number of spaces for each indentation. | |
6218 `m2-compile-command' holds the command to compile a Modula-2 program. | |
6219 `m2-link-command' holds the command to link a Modula-2 program." t nil) | |
6220 | |
6221 ;;;*** | |
6222 | |
6223 ;;;### (autoloads (electric-nroff-mode nroff-mode) "nroff-mode" "modes/nroff-mode.el" (12984 29542)) | |
6224 ;;; Generated autoloads from modes/nroff-mode.el | |
6225 | |
6226 (autoload 'nroff-mode "nroff-mode" "\ | |
6227 Major mode for editing text intended for nroff to format. | |
6228 \\{nroff-mode-map} | |
6229 Turning on Nroff mode runs `text-mode-hook', then `nroff-mode-hook'. | |
6230 Also, try `nroff-electric-mode', for automatically inserting | |
6231 closing requests for requests that are used in matched pairs." t nil) | |
6232 | |
6233 (autoload 'electric-nroff-mode "nroff-mode" "\ | |
6234 Toggle `nroff-electric-newline' minor mode. | |
6235 `nroff-electric-newline' forces Emacs to check for an nroff request at the | |
6236 beginning of the line, and insert the matching closing request if necessary. | |
6237 This command toggles that mode (off->on, on->off), with an argument, | |
6238 turns it on iff arg is positive, otherwise off." t nil) | |
6239 | |
6240 (defvar nroff-electric-mode nil "\ | |
6241 Non-nil if in electric-nroff minor mode.") | |
6242 | |
6243 (add-minor-mode 'nroff-electric-mode " Electric" nil nil 'electric-nroff-mode) | |
6244 | |
6245 ;;;*** | |
6246 | |
6247 ;;;### (autoloads (outl-mouse-minor-mode outl-mouse-mode) "outl-mouse" "modes/outl-mouse.el" (12988 19705)) | |
6248 ;;; Generated autoloads from modes/outl-mouse.el | |
6249 | |
6250 (autoload 'outl-mouse-mode "outl-mouse" "\ | |
6251 Calls outline-mode, with outl-mouse extensions" t nil) | |
6252 | |
6253 (autoload 'outl-mouse-minor-mode "outl-mouse" "\ | |
6254 Toggles outline-minor-mode, with outl-mouse extensions" t nil) | |
6255 | |
6256 ;;;*** | |
6257 | |
6258 ;;;### (autoloads (outline-minor-mode outline-mode) "outline" "modes/outline.el" (12984 29541)) | |
6259 ;;; Generated autoloads from modes/outline.el | |
6260 | |
6261 (defvar outline-minor-mode nil "\ | |
6262 Non-nil if using Outline mode as a minor mode of some other mode.") | |
6263 | |
6264 (make-variable-buffer-local 'outline-minor-mode) | |
6265 | |
6266 (put 'outline-minor-mode 'permanent-local t) | |
6267 | |
6268 (add-minor-mode 'outline-minor-mode " Outl") | |
6269 | |
6270 (autoload 'outline-mode "outline" "\ | |
6271 Set major mode for editing outlines with selective display. | |
6272 Headings are lines which start with asterisks: one for major headings, | |
6273 two for subheadings, etc. Lines not starting with asterisks are body lines. | |
6274 | |
6275 Body text or subheadings under a heading can be made temporarily | |
6276 invisible, or visible again. Invisible lines are attached to the end | |
6277 of the heading, so they move with it, if the line is killed and yanked | |
6278 back. A heading with text hidden under it is marked with an ellipsis (...). | |
6279 | |
6280 Commands:\\<outline-mode-map> | |
6281 \\[outline-next-visible-heading] outline-next-visible-heading move by visible headings | |
6282 \\[outline-previous-visible-heading] outline-previous-visible-heading | |
6283 \\[outline-forward-same-level] outline-forward-same-level similar but skip subheadings | |
6284 \\[outline-backward-same-level] outline-backward-same-level | |
6285 \\[outline-up-heading] outline-up-heading move from subheading to heading | |
6286 | |
6287 \\[hide-body] make all text invisible (not headings). | |
6288 \\[show-all] make everything in buffer visible. | |
6289 | |
6290 The remaining commands are used when point is on a heading line. | |
6291 They apply to some of the body or subheadings of that heading. | |
6292 \\[hide-subtree] hide-subtree make body and subheadings invisible. | |
6293 \\[show-subtree] show-subtree make body and subheadings visible. | |
6294 \\[show-children] show-children make direct subheadings visible. | |
6295 No effect on body, or subheadings 2 or more levels down. | |
6296 With arg N, affects subheadings N levels down. | |
6297 \\[hide-entry] make immediately following body invisible. | |
6298 \\[show-entry] make it visible. | |
6299 \\[hide-leaves] make body under heading and under its subheadings invisible. | |
6300 The subheadings remain visible. | |
6301 \\[show-branches] make all subheadings at all levels visible. | |
6302 | |
6303 The variable `outline-regexp' can be changed to control what is a heading. | |
6304 A line is a heading if `outline-regexp' matches something at the | |
6305 beginning of the line. The longer the match, the deeper the level. | |
6306 | |
6307 Turning on outline mode calls the value of `text-mode-hook' and then of | |
6308 `outline-mode-hook', if they are non-nil." t nil) | |
6309 | |
6310 (autoload 'outline-minor-mode "outline" "\ | |
6311 Toggle Outline minor mode. | |
6312 With arg, turn Outline minor mode on if arg is positive, off otherwise. | |
6313 See the command `outline-mode' for more information on this mode." t nil) | |
6314 | |
6315 ;;;*** | |
6316 | |
6317 ;;;### (autoloads (pascal-mode) "pascal" "modes/pascal.el" (12984 29543)) | |
6318 ;;; Generated autoloads from modes/pascal.el | |
6319 | |
6320 (autoload 'pascal-mode "pascal" "\ | |
6321 Major mode for editing Pascal code. \\<pascal-mode-map> | |
6322 TAB indents for Pascal code. Delete converts tabs to spaces as it moves back. | |
6323 | |
6324 \\[pascal-complete-word] completes the word around current point with respect to position in code | |
6325 \\[pascal-show-completions] shows all possible completions at this point. | |
6326 | |
6327 Other useful functions are: | |
6328 | |
6329 \\[pascal-mark-defun] - Mark function. | |
6330 \\[pascal-insert-block] - insert begin ... end; | |
6331 \\[pascal-star-comment] - insert (* ... *) | |
6332 \\[pascal-comment-area] - Put marked area in a comment, fixing nested comments. | |
6333 \\[pascal-uncomment-area] - Uncomment an area commented with \\[pascal-comment-area]. | |
6334 \\[pascal-beg-of-defun] - Move to beginning of current function. | |
6335 \\[pascal-end-of-defun] - Move to end of current function. | |
6336 \\[pascal-goto-defun] - Goto function prompted for in the minibuffer. | |
6337 \\[pascal-outline] - Enter pascal-outline-mode (see also pascal-outline). | |
6338 | |
6339 Variables controlling indentation/edit style: | |
6340 | |
6341 pascal-indent-level (default 3) | |
6342 Indentation of Pascal statements with respect to containing block. | |
6343 pascal-case-indent (default 2) | |
6344 Indentation for case statements. | |
6345 pascal-auto-newline (default nil) | |
6346 Non-nil means automatically newline after simcolons and the punctation mark | |
6347 after an end. | |
6348 pascal-tab-always-indent (default t) | |
6349 Non-nil means TAB in Pascal mode should always reindent the current line, | |
6350 regardless of where in the line point is when the TAB command is used. | |
6351 pascal-auto-endcomments (default t) | |
6352 Non-nil means a comment { ... } is set after the ends which ends cases and | |
6353 functions. The name of the function or case will be set between the braces. | |
6354 pascal-auto-lineup (default t) | |
6355 List of contexts where auto lineup of :'s or ='s hould be done. | |
6356 | |
6357 See also the user variables pascal-type-keywords, pascal-start-keywords and | |
6358 pascal-separator-keywords. | |
6359 | |
6360 Turning on Pascal mode calls the value of the variable pascal-mode-hook with | |
6361 no args, if that value is non-nil." t nil) | |
6362 | |
6363 ;;;*** | |
6364 | |
6365 ;;;### (autoloads (perl-mode) "perl-mode" "modes/perl-mode.el" (12984 29542)) | |
6366 ;;; Generated autoloads from modes/perl-mode.el | |
6367 | |
6368 (autoload 'perl-mode "perl-mode" "\ | |
6369 Major mode for editing Perl code. | |
6370 Expression and list commands understand all Perl brackets. | |
6371 Tab indents for Perl code. | |
6372 Comments are delimited with # ... \\n. | |
6373 Paragraphs are separated by blank lines only. | |
6374 Delete converts tabs to spaces as it moves back. | |
6375 \\{perl-mode-map} | |
6376 Variables controlling indentation style: | |
6377 perl-tab-always-indent | |
6378 Non-nil means TAB in Perl mode should always indent the current line, | |
6379 regardless of where in the line point is when the TAB command is used. | |
6380 perl-tab-to-comment | |
6381 Non-nil means that for lines which don't need indenting, TAB will | |
6382 either delete an empty comment, indent an existing comment, move | |
6383 to end-of-line, or if at end-of-line already, create a new comment. | |
6384 perl-nochange | |
6385 Lines starting with this regular expression are not auto-indented. | |
6386 perl-indent-level | |
6387 Indentation of Perl statements within surrounding block. | |
6388 The surrounding block's indentation is the indentation | |
6389 of the line on which the open-brace appears. | |
6390 perl-continued-statement-offset | |
6391 Extra indentation given to a substatement, such as the | |
6392 then-clause of an if or body of a while. | |
6393 perl-continued-brace-offset | |
6394 Extra indentation given to a brace that starts a substatement. | |
6395 This is in addition to `perl-continued-statement-offset'. | |
6396 perl-brace-offset | |
6397 Extra indentation for line if it starts with an open brace. | |
6398 perl-brace-imaginary-offset | |
6399 An open brace following other text is treated as if it were | |
6400 this far to the right of the start of its line. | |
6401 perl-label-offset | |
6402 Extra indentation for line that is a label. | |
6403 | |
6404 Various indentation styles: K&R BSD BLK GNU LW | |
6405 perl-indent-level 5 8 0 2 4 | |
6406 perl-continued-statement-offset 5 8 4 2 4 | |
6407 perl-continued-brace-offset 0 0 0 0 -4 | |
6408 perl-brace-offset -5 -8 0 0 0 | |
6409 perl-brace-imaginary-offset 0 0 4 0 0 | |
6410 perl-label-offset -5 -8 -2 -2 -2 | |
6411 | |
6412 Turning on Perl mode runs the normal hook `perl-mode-hook'." t nil) | |
6413 | |
6414 ;;;*** | |
6415 | |
6416 ;;;### (autoloads (picture-mode) "picture" "modes/picture.el" (12984 29542)) | |
6417 ;;; Generated autoloads from modes/picture.el | |
6418 | |
6419 (autoload 'picture-mode "picture" "\ | |
6420 Switch to Picture mode, in which a quarter-plane screen model is used. | |
6421 Printing characters replace instead of inserting themselves with motion | |
6422 afterwards settable by these commands: | |
6423 C-c < Move left after insertion. | |
6424 C-c > Move right after insertion. | |
6425 C-c ^ Move up after insertion. | |
6426 C-c . Move down after insertion. | |
6427 C-c ` Move northwest (nw) after insertion. | |
6428 C-c ' Move northeast (ne) after insertion. | |
6429 C-c / Move southwest (sw) after insertion. | |
6430 C-c \\ Move southeast (se) after insertion. | |
6431 The current direction is displayed in the modeline. The initial | |
6432 direction is right. Whitespace is inserted and tabs are changed to | |
6433 spaces when required by movement. You can move around in the buffer | |
6434 with these commands: | |
6435 \\[picture-move-down] Move vertically to SAME column in previous line. | |
6436 \\[picture-move-up] Move vertically to SAME column in next line. | |
6437 \\[picture-end-of-line] Move to column following last non-whitespace character. | |
6438 \\[picture-forward-column] Move right inserting spaces if required. | |
6439 \\[picture-backward-column] Move left changing tabs to spaces if required. | |
6440 C-c C-f Move in direction of current picture motion. | |
6441 C-c C-b Move in opposite direction of current picture motion. | |
6442 Return Move to beginning of next line. | |
6443 You can edit tabular text with these commands: | |
6444 M-Tab Move to column beneath (or at) next interesting character. | |
6445 `Indents' relative to a previous line. | |
6446 Tab Move to next stop in tab stop list. | |
6447 C-c Tab Set tab stops according to context of this line. | |
6448 With ARG resets tab stops to default (global) value. | |
6449 See also documentation of variable picture-tab-chars | |
6450 which defines \"interesting character\". You can manually | |
6451 change the tab stop list with command \\[edit-tab-stops]. | |
6452 You can manipulate text with these commands: | |
6453 C-d Clear (replace) ARG columns after point without moving. | |
6454 C-c C-d Delete char at point - the command normally assigned to C-d. | |
6455 \\[picture-backward-clear-column] Clear (replace) ARG columns before point, moving back over them. | |
6456 \\[picture-clear-line] Clear ARG lines, advancing over them. The cleared | |
6457 text is saved in the kill ring. | |
6458 \\[picture-open-line] Open blank line(s) beneath current line. | |
6459 You can manipulate rectangles with these commands: | |
6460 C-c C-k Clear (or kill) a rectangle and save it. | |
6461 C-c C-w Like C-c C-k except rectangle is saved in named register. | |
6462 C-c C-y Overlay (or insert) currently saved rectangle at point. | |
6463 C-c C-x Like C-c C-y except rectangle is taken from named register. | |
6464 \\[copy-rectangle-to-register] Copies a rectangle to a register. | |
6465 \\[advertised-undo] Can undo effects of rectangle overlay commands | |
6466 commands if invoked soon enough. | |
6467 You can return to the previous mode with: | |
6468 C-c C-c Which also strips trailing whitespace from every line. | |
6469 Stripping is suppressed by supplying an argument. | |
6470 | |
6471 Entry to this mode calls the value of picture-mode-hook if non-nil. | |
6472 | |
6473 Note that Picture mode commands will work outside of Picture mode, but | |
6474 they are not defaultly assigned to keys." t nil) | |
6475 | |
6476 (defalias 'edit-picture 'picture-mode) | |
6477 | |
6478 ;;;*** | |
6479 | |
6480 ;;;### (autoloads (postscript-mode) "postscript" "modes/postscript.el" (12984 29542)) | |
6481 ;;; Generated autoloads from modes/postscript.el | |
6482 | |
6483 (autoload 'postscript-mode "postscript" "\ | |
6484 Major mode for editing PostScript files. | |
6485 | |
6486 \\[ps-execute-buffer] will send the contents of the buffer to the NeWS | |
6487 server using psh(1). \\[ps-execute-region] sends the current region. | |
6488 \\[ps-shell] starts an interactive psh(1) window which will be used for | |
6489 subsequent \\[ps-execute-buffer] or \\[ps-execute-region] commands. | |
6490 | |
6491 In this mode, TAB and \\[indent-region] attempt to indent code | |
6492 based on the position of {}, [], and begin/end pairs. The variable | |
6493 ps-indent-level controls the amount of indentation used inside | |
6494 arrays and begin/end pairs. | |
6495 | |
6496 \\{ps-mode-map} | |
6497 | |
6498 \\[postscript-mode] calls the value of the variable postscript-mode-hook | |
6499 with no args, if that value is non-nil." t nil) | |
6500 | |
6501 ;;;*** | |
6502 | |
6503 ;;;### (autoloads (run-prolog inferior-prolog-mode prolog-mode) "prolog" "modes/prolog.el" (12984 29542)) | |
6504 ;;; Generated autoloads from modes/prolog.el | |
6505 | |
6506 (autoload 'prolog-mode "prolog" "\ | |
6507 Major mode for editing Prolog code for Prologs. | |
6508 Blank lines and `%%...' separate paragraphs. `%'s start comments. | |
6509 Commands: | |
6510 \\{prolog-mode-map} | |
6511 Entry to this mode calls the value of `prolog-mode-hook' | |
6512 if that value is non-nil." t nil) | |
6513 | |
6514 (autoload 'inferior-prolog-mode "prolog" "\ | |
6515 Major mode for interacting with an inferior Prolog process. | |
6516 | |
6517 The following commands are available: | |
6518 \\{inferior-prolog-mode-map} | |
6519 | |
6520 Entry to this mode calls the value of `prolog-mode-hook' with no arguments, | |
6521 if that value is non-nil. Likewise with the value of `comint-mode-hook'. | |
6522 `prolog-mode-hook' is called after `comint-mode-hook'. | |
6523 | |
6524 You can send text to the inferior Prolog from other buffers | |
6525 using the commands `send-region', `send-string' and \\[prolog-consult-region]. | |
6526 | |
6527 Commands: | |
6528 Tab indents for Prolog; with argument, shifts rest | |
6529 of expression rigidly with the current line. | |
6530 Paragraphs are separated only by blank lines and '%%'. | |
6531 '%'s start comments. | |
6532 | |
6533 Return at end of buffer sends line as input. | |
6534 Return not at end copies rest of line to end and sends it. | |
6535 \\[comint-kill-input] and \\[backward-kill-word] are kill commands, imitating normal Unix input editing. | |
6536 \\[comint-interrupt-subjob] interrupts the shell or its current subjob if any. | |
6537 \\[comint-stop-subjob] stops. \\[comint-quit-subjob] sends quit signal." t nil) | |
6538 | |
6539 (autoload 'run-prolog "prolog" "\ | |
6540 Run an inferior Prolog process, input and output via buffer *prolog*." t nil) | |
6541 | |
6542 ;;;*** | |
6543 | |
6544 ;;;### (autoloads (resize-minibuffer-mode) "rsz-minibuf" "modes/rsz-minibuf.el" (12984 29544)) | |
6545 ;;; Generated autoloads from modes/rsz-minibuf.el | |
6546 | |
6547 (defvar resize-minibuffer-mode nil "\ | |
6548 *If non-`nil', resize the minibuffer so its entire contents are visible.") | |
6549 | |
6550 (defvar resize-minibuffer-window-max-height nil "\ | |
6551 *Maximum size the minibuffer window is allowed to become. | |
6552 If less than 1 or not a number, the limit is the height of the frame in | |
6553 which the active minibuffer window resides.") | |
6554 | |
6555 (defvar resize-minibuffer-window-exactly t "\ | |
6556 *If non-`nil', make minibuffer exactly the size needed to display all its contents. | |
6557 Otherwise, the minibuffer window can temporarily increase in size but | |
6558 never get smaller while it is active.") | |
6559 | |
6560 (defvar resize-minibuffer-frame nil "\ | |
6561 *If non-`nil' and the active minibuffer is the sole window in its frame, allow changing the frame height.") | |
6562 | |
6563 (defvar resize-minibuffer-frame-max-height nil "\ | |
6564 *Maximum size the minibuffer frame is allowed to become. | |
6565 If less than 1 or not a number, there is no limit.") | |
6566 | |
6567 (defvar resize-minibuffer-frame-exactly nil "\ | |
6568 *If non-`nil', make minibuffer frame exactly the size needed to display all its contents. | |
6569 Otherwise, the minibuffer frame can temporarily increase in size but | |
6570 never get smaller while it is active.") | |
6571 | |
6572 (autoload 'resize-minibuffer-mode "rsz-minibuf" "\ | |
6573 Enable or disable resize-minibuffer mode. | |
6574 A negative prefix argument disables this mode. A positive argument or | |
6575 argument of 0 enables it. | |
6576 | |
6577 When this minor mode is enabled, the minibuffer is dynamically resized to | |
6578 contain the entire region of text put in it as you type. | |
6579 | |
6580 The variable `resize-minibuffer-mode' is set to t or nil depending on | |
6581 whether this mode is active or not. | |
6582 | |
6583 The maximum height to which the minibuffer can grow is controlled by the | |
6584 variable `resize-minibuffer-window-max-height'. | |
6585 | |
6586 The variable `resize-minibuffer-window-exactly' determines whether the | |
6587 minibuffer window should ever be shrunk to make it no larger than needed to | |
6588 display its contents. | |
6589 | |
6590 When using a window system, it is possible for a minibuffer to tbe the sole | |
6591 window in a frame. Since that window is already its maximum size, the only | |
6592 way to make more text visible at once is to increase the size of the frame. | |
6593 The variable `resize-minibuffer-frame' controls whether this should be | |
6594 done. The variables `resize-minibuffer-frame-max-height' and | |
6595 `resize-minibuffer-frame-exactly' are analogous to their window | |
6596 counterparts." t nil) | |
6597 | |
6598 ;;;*** | |
6599 | |
6600 ;;;### (autoloads (scheme-mode) "scheme" "modes/scheme.el" (12984 29542)) | |
6601 ;;; Generated autoloads from modes/scheme.el | |
6602 | |
6603 (autoload 'scheme-mode "scheme" "\ | |
6604 Major mode for editing Scheme code. | |
6605 Editing commands are similar to those of lisp-mode. | |
6606 | |
6607 In addition, if an inferior Scheme process is running, some additional | |
6608 commands will be defined, for evaluating expressions and controlling | |
6609 the interpreter, and the state of the process will be displayed in the | |
6610 modeline of all Scheme buffers. The names of commands that interact | |
6611 with the Scheme process start with \"xscheme-\". For more information | |
6612 see the documentation for xscheme-interaction-mode. | |
6613 | |
6614 Commands: | |
6615 Delete converts tabs to spaces as it moves back. | |
6616 Blank lines separate paragraphs. Semicolons start comments. | |
6617 \\{scheme-mode-map} | |
6618 Entry to this mode calls the value of scheme-mode-hook | |
6619 if that value is non-nil." t nil) | |
6620 | |
6621 ;;;*** | |
6622 | |
6623 ;;;### (autoloads (scribe-mode) "scribe" "modes/scribe.el" (12984 29542)) | |
6624 ;;; Generated autoloads from modes/scribe.el | |
6625 | |
6626 (autoload 'scribe-mode "scribe" "\ | |
6627 Major mode for editing files of Scribe (a text formatter) source. | |
6628 Scribe-mode is similar text-mode, with a few extra commands added. | |
6629 \\{scribe-mode-map} | |
6630 | |
6631 Interesting variables: | |
6632 | |
6633 scribe-fancy-paragraphs | |
6634 Non-nil makes Scribe mode use a different style of paragraph separation. | |
6635 | |
6636 scribe-electric-quote | |
6637 Non-nil makes insert of double quote use `` or '' depending on context. | |
6638 | |
6639 scribe-electric-parenthesis | |
6640 Non-nil makes an open-parenthesis char (one of `([<{') | |
6641 automatically insert its close if typed after an @Command form." t nil) | |
6642 | |
6643 ;;;*** | |
6644 | |
6645 ;;;### (autoloads (mail-other-frame mail-other-window mail mail-mode) "sendmail" "modes/sendmail.el" (12984 29541)) | |
6646 ;;; Generated autoloads from modes/sendmail.el | |
6647 | |
6648 (defvar mail-from-style 'angles "\ | |
6649 *Specifies how \"From:\" fields look. | |
6650 | |
6651 If `nil', they contain just the return address like: | |
6652 king@grassland.com | |
6653 If `parens', they look like: | |
6654 king@grassland.com (Elvis Parsley) | |
6655 If `angles', they look like: | |
6656 Elvis Parsley <king@grassland.com>") | |
6657 | |
6658 (defvar mail-self-blind nil "\ | |
6659 Non-nil means insert BCC to self in messages to be sent. | |
6660 This is done when the message is initialized, | |
6661 so you can remove or alter the BCC field to override the default.") | |
6662 | |
6663 (defvar mail-interactive nil "\ | |
6664 Non-nil means when sending a message wait for and display errors. | |
6665 nil means let mailer mail back a message to report errors.") | |
6666 | |
6667 (defvar mail-dir nil "\ | |
6668 *Default directory for saving messages.") | |
6669 | |
6670 (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-") "\\|") "\\)")) "\ | |
6671 *Gubbish header fields one would rather not see.") | |
6672 | |
6673 (defvar mail-yank-ignored-headers (purecopy (concat rmail-ignored-headers "\\|" "^\\(" (mapconcat 'identity '("Resent-To:" "Resent-By:" "Resent-CC:" "To:" "Subject:" "In-Reply-To:") "\\|") "\\)")) "\ | |
6674 Delete these headers from old message when it's inserted in a reply.") | |
6675 | |
6676 (defvar send-mail-function 'sendmail-send-it "\ | |
6677 Function to call to send the current buffer as mail. | |
6678 The headers should be delimited by a line whose contents | |
6679 match the variable `mail-header-separator'.") | |
6680 | |
6681 (defvar mail-header-separator (purecopy "--text follows this line--") "\ | |
6682 *Line used to separate headers from text in messages being composed.") | |
6683 | |
6684 (defvar mail-archive-file-name nil "\ | |
6685 *Name of file to write all outgoing messages in, or nil for none. | |
6686 This can be an inbox file or an Rmail file.") | |
6687 | |
6688 (defvar mail-default-reply-to nil "\ | |
6689 *Address to insert as default Reply-to field of outgoing messages. | |
6690 If nil, it will be initialized from the REPLYTO environment variable | |
6691 when you first send mail.") | |
6692 | |
6693 (defvar mail-alias-file nil "\ | |
6694 *If non-nil, the name of a file to use instead of `/usr/lib/aliases'. | |
6695 This file defines aliases to be expanded by the mailer; this is a different | |
6696 feature from that of defining aliases in `.mailrc' to be expanded in Emacs. | |
6697 This variable has no effect unless your system uses sendmail as its mailer.") | |
6698 | |
6699 (defvar mail-yank-prefix "> " "\ | |
6700 *Prefix insert on lines of yanked message being replied to. | |
6701 nil means use indentation.") | |
6702 | |
6703 (defvar mail-signature nil "\ | |
6704 *Text inserted at end of mail buffer when a message is initialized. | |
6705 If t, it means to insert the contents of the file `mail-signature-file'.") | |
6706 | |
6707 (autoload 'mail-mode "sendmail" "\ | |
6708 Major mode for editing mail to be sent. | |
6709 Like Text Mode but with these additional commands: | |
6710 C-c C-s mail-send (send the message) C-c C-c mail-send-and-exit | |
6711 C-c C-f move to a header field (and create it if there isn't): | |
6712 C-c C-f C-t move to To: C-c C-f C-s move to Subj: | |
6713 C-c C-f C-b move to BCC: C-c C-f C-c move to CC: | |
6714 C-c C-f C-f move to FCC: C-c C-f C-r move to Reply-To: | |
6715 C-c C-t mail-text (move to beginning of message text). | |
6716 C-c C-w mail-signature (insert `mail-signature-file' file). | |
6717 C-c C-y mail-yank-original (insert current message, in Rmail). | |
6718 C-c C-q mail-fill-yanked-message (fill what was yanked). | |
6719 C-c C-v mail-sent-via (add a sent-via field for each To or CC)." t nil) | |
6720 | |
6721 (autoload 'mail "sendmail" "\ | |
6722 Edit a message to be sent. Prefix arg means resume editing (don't erase). | |
6723 When this function returns, the buffer `*mail*' is selected. | |
6724 The value is t if the message was newly initialized; otherwise, nil. | |
6725 | |
6726 Optionally, the signature file `mail-signature-file' can be inserted at the | |
6727 end; see the variable `mail-signature'. | |
6728 | |
6729 \\<mail-mode-map> | |
6730 While editing message, type \\[mail-send-and-exit] to send the message and exit. | |
6731 | |
6732 Various special commands starting with C-c are available in sendmail mode | |
6733 to move to message header fields: | |
6734 \\{mail-mode-map} | |
6735 | |
6736 The variable `mail-signature' controls whether the signature file | |
6737 `mail-signature-file' is inserted immediately. | |
6738 | |
6739 If `mail-signature' is nil, use \\[mail-signature] to insert the | |
6740 signature in `mail-signature-file'. | |
6741 | |
6742 If `mail-self-blind' is non-nil, a BCC to yourself is inserted | |
6743 when the message is initialized. | |
6744 | |
6745 If `mail-default-reply-to' is non-nil, it should be an address (a string); | |
6746 a Reply-to: field with that address is inserted. | |
6747 | |
6748 If `mail-archive-file-name' is non-nil, an FCC field with that file name | |
6749 is inserted. | |
6750 | |
6751 The normal hook `mail-setup-hook' is run after the message is | |
6752 initialized. It can add more default fields to the message. | |
6753 | |
6754 When calling from a program, the first argument if non-nil says | |
6755 not to erase the existing contents of the `*mail*' buffer. | |
6756 | |
6757 The second through fifth arguments, | |
6758 TO, SUBJECT, IN-REPLY-TO and CC, specify if non-nil | |
6759 the initial contents of those header fields. | |
6760 These arguments should not have final newlines. | |
6761 The sixth argument REPLYBUFFER is a buffer whose contents | |
6762 should be yanked if the user types C-c C-y. | |
6763 The seventh argument ACTIONS is a list of actions to take | |
6764 if/when the message is sent. Each action looks like (FUNCTION . ARGS); | |
6765 when the message is sent, we apply FUNCTION to ARGS. | |
6766 This is how Rmail arranges to mark messages `answered'." t nil) | |
6767 | |
6768 (autoload 'mail-other-window "sendmail" "\ | |
6769 Like `mail' command, but display mail buffer in another window." t nil) | |
6770 | |
6771 (autoload 'mail-other-frame "sendmail" "\ | |
6772 Like `mail' command, but display mail buffer in another frame." t nil) | |
6773 | |
6774 (define-key ctl-x-map "m" 'mail) | |
6775 | |
6776 (define-key ctl-x-4-map "m" 'mail-other-window) | |
6777 | |
6778 (define-key ctl-x-5-map "m" 'mail-other-frame) | |
6779 | |
6780 (add-hook 'same-window-buffer-names "*mail*") | |
6781 | |
6782 ;;;*** | |
6783 | |
6784 ;;;### (autoloads (sh-mode) "sh-script" "modes/sh-script.el" (12984 29545)) | |
6785 ;;; Generated autoloads from modes/sh-script.el | |
6786 | |
6787 (put 'sh-mode 'mode-class 'special) | |
6788 | |
6789 (autoload 'sh-mode "sh-script" "\ | |
6790 Major mode for editing shell scripts. | |
6791 This mode works for many shells, since they all have roughly the same syntax, | |
6792 as far as commands, arguments, variables, pipes, comments etc. are concerned. | |
6793 Unless the file's magic number indicates the shell, your usual shell is | |
6794 assumed. Since filenames rarely give a clue, they are not further analyzed. | |
6795 | |
6796 This mode adapts to the variations between shells (see `sh-set-shell') by | |
6797 means of an inheritance based feature lookup (see `sh-feature'). This | |
6798 mechanism applies to all variables (including skeletons) that pertain to | |
6799 shell-specific features. | |
6800 | |
6801 The default style of this mode is that of Rosenblatt's Korn shell book. | |
6802 The syntax of the statements varies with the shell being used. The | |
6803 following commands are available, based on the current shell's syntax: | |
6804 | |
6805 \\[sh-case] case statement | |
6806 \\[sh-for] for loop | |
6807 \\[sh-function] function definition | |
6808 \\[sh-if] if statement | |
6809 \\[sh-indexed-loop] indexed loop from 1 to n | |
6810 \\[sh-while-getopts] while getopts loop | |
6811 \\[sh-repeat] repeat loop | |
6812 \\[sh-select] select loop | |
6813 \\[sh-until] until loop | |
6814 \\[sh-while] while loop | |
6815 | |
6816 \\[backward-delete-char-untabify] Delete backward one position, even if it was a tab. | |
6817 \\[sh-newline-and-indent] Delete unquoted space and indent new line same as this one. | |
6818 \\[sh-end-of-command] Go to end of successive commands. | |
6819 \\[sh-beginning-of-command] Go to beginning of successive commands. | |
6820 \\[sh-set-shell] Set this buffer's shell, and maybe its magic number. | |
6821 \\[sh-execute-region] Have optional header and region be executed in a subshell. | |
6822 | |
6823 \\[sh-maybe-here-document] Without prefix, following an unquoted < inserts here document. | |
6824 {, (, [, ', \", ` | |
6825 Unless quoted with \\, insert the pairs {}, (), [], or '', \"\", ``. | |
6826 | |
6827 If you generally program a shell different from your login shell you can | |
6828 set `sh-shell-file' accordingly. If your shell's file name doesn't correctly | |
6829 indicate what shell it is use `sh-alias-alist' to translate. | |
6830 | |
6831 If your shell gives error messages with line numbers, you can use \\[executable-interpret] | |
6832 with your script for an edit-interpret-debug cycle." t nil) | |
6833 | |
6834 (defalias 'shell-script-mode 'sh-mode) | |
6835 | |
6836 ;;;*** | |
6837 | |
6838 ;;;*** | |
6839 | |
6840 ;;;*** | |
6841 | |
6842 ;;;### (autoloads nil "simula" "modes/simula.el" (12984 29542)) | |
6843 ;;; Generated autoloads from modes/simula.el | |
6844 | |
6845 ;;;### (autoloads (tcl-help-on-word inferior-tcl tcl-mode) "tcl" "modes/tcl.el" (12984 29543)) | |
6846 ;;; Generated autoloads from modes/tcl.el | |
6847 | |
6848 (autoload 'tcl-mode "tcl" "\ | |
6849 Major mode for editing Tcl code. | |
6850 Expression and list commands understand all Tcl brackets. | |
6851 Tab indents for Tcl code. | |
6852 Paragraphs are separated by blank lines only. | |
6853 Delete converts tabs to spaces as it moves back. | |
6854 | |
6855 Variables controlling indentation style: | |
6856 tcl-indent-level | |
6857 Indentation of Tcl statements within surrounding block. | |
6858 tcl-continued-indent-level | |
6859 Indentation of continuation line relative to first line of command. | |
6860 | |
6861 Variables controlling user interaction with mode (see variable | |
6862 documentation for details): | |
6863 tcl-tab-always-indent | |
6864 Controls action of TAB key. | |
6865 tcl-auto-newline | |
6866 Non-nil means automatically newline before and after braces, brackets, | |
6867 and semicolons inserted in Tcl code. | |
6868 tcl-electric-hash-style | |
6869 Controls action of `#' key. | |
6870 tcl-use-hairy-comment-detector | |
6871 If t, use more complicated, but slower, comment detector. | |
6872 This variable is only used in GNU Emacs 19. | |
6873 tcl-use-smart-word-finder | |
6874 If not nil, use a smarter, Tcl-specific way to find the current | |
6875 word when looking up help on a Tcl command. | |
6876 | |
6877 Turning on Tcl mode calls the value of the variable `tcl-mode-hook' | |
6878 with no args, if that value is non-nil. Read the documentation for | |
6879 `tcl-mode-hook' to see what kinds of interesting hook functions | |
6880 already exist. | |
6881 | |
6882 Commands: | |
6883 \\{tcl-mode-map}" t nil) | |
6884 | |
6885 (autoload 'inferior-tcl "tcl" "\ | |
6886 Run inferior Tcl process. | |
6887 Prefix arg means enter program name interactively. | |
6888 See documentation for function `inferior-tcl-mode' for more information." t nil) | |
6889 | |
6890 (autoload 'tcl-help-on-word "tcl" "\ | |
6891 Get help on Tcl command. Default is word at point. | |
6892 Prefix argument means invert sense of `tcl-use-smart-word-finder'." t nil) | |
6893 | |
6894 ;;;*** | |
6895 | |
6896 ;;;### (autoloads (latex-mode plain-tex-mode tex-mode) "tex-mode" "modes/tex-mode.el" (12984 29542)) | |
6897 ;;; Generated autoloads from modes/tex-mode.el | |
6898 | |
6899 (autoload 'tex-mode "tex-mode" "\ | |
6900 Major mode for editing files of input for TeX, LaTeX, or SliTeX. | |
6901 Tries to determine (by looking at the beginning of the file) whether | |
6902 this file is for plain TeX, LaTeX, or SliTeX and calls plain-tex-mode, | |
6903 latex-mode, or slitex-mode, respectively. If it cannot be determined, | |
6904 such as if there are no commands in the file, the value of tex-default-mode | |
6905 is used." t nil) | |
6906 | |
6907 (fset 'TeX-mode 'tex-mode) | |
6908 | |
6909 (fset 'LaTeX-mode 'latex-mode) | |
6910 | |
6911 (autoload 'plain-tex-mode "tex-mode" "\ | |
6912 Major mode for editing files of input for plain TeX. | |
6913 Makes $ and } display the characters they match. | |
6914 Makes \" insert `` when it seems to be the beginning of a quotation, | |
6915 and '' when it appears to be the end; it inserts \" only after a \\. | |
6916 | |
6917 Use \\[tex-region] to run TeX on the current region, plus a \"header\" | |
6918 copied from the top of the file (containing macro definitions, etc.), | |
6919 running TeX under a special subshell. \\[tex-buffer] does the whole buffer. | |
6920 \\[tex-file] saves the buffer and then processes the file. | |
6921 \\[tex-print] prints the .dvi file made by any of these. | |
6922 \\[tex-view] previews the .dvi file made by any of these. | |
6923 \\[tex-bibtex-file] runs bibtex on the file of the current buffer. | |
6924 | |
6925 Use \\[validate-tex-buffer] to check buffer for paragraphs containing | |
6926 mismatched $'s or braces. | |
6927 | |
6928 Special commands: | |
6929 \\{tex-mode-map} | |
6930 | |
6931 Mode variables: | |
6932 tex-run-command | |
6933 Command string used by \\[tex-region] or \\[tex-buffer]. | |
6934 tex-directory | |
6935 Directory in which to create temporary files for TeX jobs | |
6936 run by \\[tex-region] or \\[tex-buffer]. | |
6937 tex-dvi-print-command | |
6938 Command string used by \\[tex-print] to print a .dvi file. | |
6939 tex-alt-dvi-print-command | |
6940 Alternative command string used by \\[tex-print] (when given a prefix | |
6941 argument) to print a .dvi file. | |
6942 tex-dvi-view-command | |
6943 Command string used by \\[tex-view] to preview a .dvi file. | |
6944 tex-show-queue-command | |
6945 Command string used by \\[tex-show-print-queue] to show the print | |
6946 queue that \\[tex-print] put your job on. | |
6947 | |
6948 Entering Plain-tex mode calls the value of text-mode-hook, then the value of | |
6949 tex-mode-hook, and then the value of plain-tex-mode-hook. When the special | |
6950 subshell is initiated, the value of tex-shell-hook is called." t nil) | |
6951 | |
6952 (fset 'plain-TeX-mode 'plain-tex-mode) | |
6953 | |
6954 (autoload 'latex-mode "tex-mode" "\ | |
6955 Major mode for editing files of input for LaTeX. | |
6956 Makes $ and } display the characters they match. | |
6957 Makes \" insert `` when it seems to be the beginning of a quotation, | |
6958 and '' when it appears to be the end; it inserts \" only after a \\. | |
6959 | |
6960 Use \\[tex-region] to run LaTeX on the current region, plus the preamble | |
6961 copied from the top of the file (containing \\documentstyle, etc.), | |
6962 running LaTeX under a special subshell. \\[tex-buffer] does the whole buffer. | |
6963 \\[tex-file] saves the buffer and then processes the file. | |
6964 \\[tex-print] prints the .dvi file made by any of these. | |
6965 \\[tex-view] previews the .dvi file made by any of these. | |
6966 \\[tex-bibtex-file] runs bibtex on the file of the current buffer. | |
6967 | |
6968 Use \\[validate-tex-buffer] to check buffer for paragraphs containing | |
6969 mismatched $'s or braces. | |
6970 | |
6971 Special commands: | |
6972 \\{tex-mode-map} | |
6973 | |
6974 Mode variables: | |
6975 latex-run-command | |
6976 Command string used by \\[tex-region] or \\[tex-buffer]. | |
6977 tex-directory | |
6978 Directory in which to create temporary files for LaTeX jobs | |
6979 run by \\[tex-region] or \\[tex-buffer]. | |
6980 tex-dvi-print-command | |
6981 Command string used by \\[tex-print] to print a .dvi file. | |
6982 tex-alt-dvi-print-command | |
6983 Alternative command string used by \\[tex-print] (when given a prefix | |
6984 argument) to print a .dvi file. | |
6985 tex-dvi-view-command | |
6986 Command string used by \\[tex-view] to preview a .dvi file. | |
6987 tex-show-queue-command | |
6988 Command string used by \\[tex-show-print-queue] to show the print | |
6989 queue that \\[tex-print] put your job on. | |
6990 | |
6991 Entering Latex mode calls the value of text-mode-hook, then the value of | |
6992 tex-mode-hook, and then the value of latex-mode-hook. When the special | |
6993 subshell is initiated, the value of tex-shell-hook is called." t nil) | |
6994 | |
6995 ;;;*** | |
6996 | |
6997 ;;;### (autoloads (texinfo-mode) "texinfo" "modes/texinfo.el" (12984 29543)) | |
6998 ;;; Generated autoloads from modes/texinfo.el | |
6999 | |
7000 (autoload 'texinfo-mode "texinfo" "\ | |
7001 Major mode for editing Texinfo files. | |
7002 | |
7003 It has these extra commands: | |
7004 \\{texinfo-mode-map} | |
7005 | |
7006 These are files that are used as input for TeX to make printed manuals | |
7007 and also to be turned into Info files with \\[makeinfo-buffer] or | |
7008 the `makeinfo' program. These files must be written in a very restricted and | |
7009 modified version of TeX input format. | |
7010 | |
7011 Editing commands are like text-mode except that the syntax table is | |
7012 set up so expression commands skip Texinfo bracket groups. To see | |
7013 what the Info version of a region of the Texinfo file will look like, | |
7014 use \\[makeinfo-region], which runs `makeinfo' on the current region. | |
7015 | |
7016 You can show the structure of a Texinfo file with \\[texinfo-show-structure]. | |
7017 This command shows the structure of a Texinfo file by listing the | |
7018 lines with the @-sign commands for @chapter, @section, and the like. | |
7019 These lines are displayed in another window called the *Occur* window. | |
7020 In that window, you can position the cursor over one of the lines and | |
7021 use \\[occur-mode-goto-occurrence], to jump to the corresponding spot | |
7022 in the Texinfo file. | |
7023 | |
7024 In addition, Texinfo mode provides commands that insert various | |
7025 frequently used @-sign commands into the buffer. You can use these | |
7026 commands to save keystrokes. And you can insert balanced braces with | |
7027 \\[texinfo-insert-braces] and later use the command \\[up-list] to | |
7028 move forward past the closing brace. | |
7029 | |
7030 Also, Texinfo mode provides functions for automatically creating or | |
7031 updating menus and node pointers. These functions | |
7032 | |
7033 * insert the `Next', `Previous' and `Up' pointers of a node, | |
7034 * insert or update the menu for a section, and | |
7035 * create a master menu for a Texinfo source file. | |
7036 | |
7037 Here are the functions: | |
7038 | |
7039 texinfo-update-node \\[texinfo-update-node] | |
7040 texinfo-every-node-update \\[texinfo-every-node-update] | |
7041 texinfo-sequential-node-update | |
7042 | |
7043 texinfo-make-menu \\[texinfo-make-menu] | |
7044 texinfo-all-menus-update \\[texinfo-all-menus-update] | |
7045 texinfo-master-menu | |
7046 | |
7047 texinfo-indent-menu-description (column &optional region-p) | |
7048 | |
7049 The `texinfo-column-for-description' variable specifies the column to | |
7050 which menu descriptions are indented. | |
7051 | |
7052 Passed an argument (a prefix argument, if interactive), the | |
7053 `texinfo-update-node' and `texinfo-make-menu' functions do their jobs | |
7054 in the region. | |
7055 | |
7056 To use the updating commands, you must structure your Texinfo file | |
7057 hierarchically, such that each `@node' line, with the exception of the | |
7058 Top node, is accompanied by some kind of section line, such as an | |
7059 `@chapter' or `@section' line. | |
7060 | |
7061 If the file has a `top' node, it must be called `top' or `Top' and | |
7062 be the first node in the file. | |
7063 | |
7064 Entering Texinfo mode calls the value of text-mode-hook, and then the | |
7065 value of texinfo-mode-hook." t nil) | |
7066 | |
7067 ;;;*** | |
7068 | |
7069 ;;;*** | |
7070 | |
7071 ;;;*** | |
7072 | |
7073 ;;;*** | |
7074 | |
7075 ;;;### (autoloads nil "text-mode" "modes/text-mode.el" (12984 29542)) | |
7076 ;;; Generated autoloads from modes/text-mode.el | |
7077 | |
7078 ;;;### (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" (12984 29544)) | |
7079 ;;; Generated autoloads from modes/two-column.el | |
7080 | |
7081 (defvar tc-mode-map nil "\ | |
7082 Keymap for commands for two-column mode.") | |
7083 | |
7084 (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 " | |
7085 " 'tc-scroll-line)) | |
7086 | |
7087 (global-set-key "6" tc-mode-map) | |
7088 | |
7089 (defvar tc-other nil "\ | |
7090 Marker to the associated buffer, if non-nil.") | |
7091 | |
7092 (make-variable-buffer-local 'tc-other) | |
7093 | |
7094 (put 'tc-other 'permanent-local t) | |
7095 | |
7096 (autoload 'tc-two-columns "two-column" "\ | |
7097 Split current window vertically for two-column editing. | |
7098 | |
7099 When called the first time, associates a buffer with the current | |
7100 buffer. Both buffers are put in two-column minor mode and | |
7101 tc-mode-hook gets called on both. These buffers remember | |
7102 about one another, even when renamed. | |
7103 | |
7104 When called again, restores the screen layout with the current buffer | |
7105 first and the associated buffer to it's right. | |
7106 | |
7107 If you include long lines, i.e which will span both columns (eg. | |
7108 source code), they should be in what will be the first column, with | |
7109 the associated buffer having empty lines next to them. | |
7110 | |
7111 You have the following commands at your disposal: | |
7112 | |
7113 \\[tc-two-columns] Rearrange screen | |
7114 \\[tc-associate-buffer] Reassociate buffer after changing major mode | |
7115 \\[tc-scroll-up] Scroll both buffers up by a screenfull | |
7116 \\[tc-scroll-down] Scroll both buffers down by a screenful | |
7117 \\[tc-scroll-line] Scroll both buffers up by one or more lines | |
7118 \\[tc-recenter] Recenter and realign other buffer | |
7119 \\[shrink-window-horizontally], \\[enlarge-window-horizontally] Shrink, enlarge current column | |
7120 \\[tc-associated-buffer] Switch to associated buffer | |
7121 \\[tc-merge] Merge both buffers | |
7122 | |
7123 These keybindings can be customized in your ~/.emacs by `tc-prefix' | |
7124 and `tc-mode-map'. | |
7125 | |
7126 The appearance of the screen can be customized by the variables | |
7127 `tc-window-width', `tc-beyond-fill-column', | |
7128 `tc-mode-line-format' and `truncate-partial-width-windows'." t nil) | |
7129 | |
7130 (add-minor-mode 'tc-other " 2C" nil nil 'tc-two-columns) | |
7131 | |
7132 (autoload 'tc-associate-buffer "two-column" "\ | |
7133 Associate another buffer with this one in two-column minor mode. | |
7134 Can also be used to associate a just previously visited file, by | |
7135 accepting the proposed default buffer. | |
7136 | |
7137 See \\[tc-two-columns] and `lisp/two-column.el' for further details." t nil) | |
7138 | |
7139 (autoload 'tc-split "two-column" "\ | |
7140 Unmerge a two-column text into two buffers in two-column minor mode. | |
7141 The text is unmerged at the cursor's column which becomes the local | |
7142 value of `tc-window-width'. Only lines that have the ARG same | |
7143 preceding characters at that column get split. The ARG preceding | |
7144 characters without any leading whitespace become the local value for | |
7145 `tc-separator'. This way lines that continue across both | |
7146 columns remain untouched in the first buffer. | |
7147 | |
7148 This function can be used with a prototype line, to set up things as | |
7149 you like them. You write the first line of each column with the | |
7150 separator you like and then unmerge that line. E.g.: | |
7151 | |
7152 First column's text sSs Second columns text | |
7153 \\___/\\ | |
7154 / \\ | |
7155 5 character Separator You type M-5 \\[tc-split] with the point here | |
7156 | |
7157 See \\[tc-two-columns] and `lisp/two-column.el' for further details." t nil) | |
7158 | |
7159 (autoload 'tc-dissociate "two-column" "\ | |
7160 Turn off two-column minor mode in current and associated buffer. | |
7161 If the associated buffer is unmodified and empty, it is killed." t nil) | |
7162 | |
7163 (autoload 'tc-merge "two-column" "\ | |
7164 Merges the associated buffer with the current buffer. | |
7165 They get merged at the column, which is the value of | |
7166 `tc-window-width', i.e. usually at the vertical window | |
7167 separator. This separator gets replaced with white space. Beyond | |
7168 that the value of gets inserted on merged lines. The two columns are | |
7169 thus pasted side by side, in a single text. If the other buffer is | |
7170 not displayed to the left of this one, then this one becomes the left | |
7171 column. | |
7172 | |
7173 If you want `tc-separator' on empty lines in the second column, | |
7174 you should put just one space in them. In the final result, you can strip | |
7175 off trailing spaces with \\[beginning-of-buffer] \\[replace-regexp] [ SPC TAB ] + $ RET RET" t nil) | |
7176 | |
7177 (autoload 'tc-associated-buffer "two-column" "\ | |
7178 Switch to associated buffer." t nil) | |
7179 | |
7180 (autoload 'tc-scroll-line "two-column" "\ | |
7181 Scroll current window upward by ARG lines. | |
7182 The associated window gets scrolled to the same line." t nil) | |
7183 | |
7184 (autoload 'tc-scroll-up "two-column" "\ | |
7185 Scroll current window upward by ARG screens. | |
7186 The associated window gets scrolled to the same line." t nil) | |
7187 | |
7188 (autoload 'tc-scroll-down "two-column" "\ | |
7189 Scroll current window downward by ARG screens. | |
7190 The associated window gets scrolled to the same line." t nil) | |
7191 | |
7192 (autoload 'tc-recenter "two-column" "\ | |
7193 Center point in window. With ARG, put point on line ARG. | |
7194 This counts from bottom if ARG is negative. The associated window | |
7195 gets scrolled to the same line." t nil) | |
7196 | |
7197 ;;;*** | |
7198 | |
7199 ;;;### (autoloads (vhdl-mode) "vhdl-mode" "modes/vhdl-mode.el" (12984 30015)) | |
7200 ;;; Generated autoloads from modes/vhdl-mode.el | |
7201 | |
7202 (autoload 'vhdl-mode "vhdl-mode" "\ | |
7203 Major mode for editing VHDL code. | |
7204 vhdl-mode $Revision: 1.2 $ | |
7205 To submit a problem report, enter `\\[vhdl-submit-bug-report]' from a | |
7206 vhdl-mode buffer. This automatically sets up a mail buffer with version | |
7207 information already added. You just need to add a description of the | |
7208 problem, including a reproducable test case and send the message. | |
7209 | |
7210 Note that the details of configuring vhdl-mode will soon be moved to the | |
7211 accompanying texinfo manual. Until then, please read the README file | |
7212 that came with the vhdl-mode distribution. | |
7213 | |
7214 The hook variable `vhdl-mode-hook' is run with no args, if that value is | |
7215 bound and has a non-nil value. | |
7216 | |
7217 Key bindings: | |
7218 \\{vhdl-mode-map}" t nil) | |
7219 | |
7220 ;;;*** | |
7221 | |
7222 ;;;### (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" (12984 29542)) | |
7223 ;;; Generated autoloads from modes/view-less.el | |
7224 | |
7225 (autoload 'view-file "view-less" "\ | |
7226 Find FILE, enter view mode. With prefix arg OTHER-P, use other window." t nil) | |
7227 | |
7228 (autoload 'view-buffer "view-less" "\ | |
7229 Switch to BUF, enter view mode. With prefix arg use other window." t nil) | |
7230 | |
7231 (autoload 'view-file-other-window "view-less" "\ | |
7232 Find FILE in other window, and enter view mode." t nil) | |
7233 | |
7234 (autoload 'view-buffer-other-window "view-less" "\ | |
7235 Switch to BUFFER in another window, and enter view mode." t nil) | |
7236 | |
7237 (autoload 'view-minor-mode "view-less" "\ | |
7238 Minor mode for viewing text, with bindings like `less'. | |
7239 Commands are: | |
7240 \\<view-minor-mode-map> | |
7241 0..9 prefix args | |
7242 - prefix minus | |
7243 \\[scroll-up] page forward | |
7244 \\[scroll-down] page back | |
7245 \\[view-scroll-lines-up] scroll prefix-arg lines forward, default 1. | |
7246 \\[view-scroll-lines-down] scroll prefix-arg lines backward, default 1. | |
7247 \\[view-scroll-some-lines-down] scroll prefix-arg lines backward, default 10. | |
7248 \\[view-scroll-some-lines-up] scroll prefix-arg lines forward, default 10. | |
7249 \\[what-line] print line number | |
7250 \\[view-mode-describe] print this help message | |
7251 \\[view-search-forward] regexp search, uses previous string if you just hit RET | |
7252 \\[view-search-backward] as above but searches backward | |
7253 \\[view-repeat-search] repeat last search | |
7254 \\[view-goto-line] goto line prefix-arg, default 1 | |
7255 \\[view-last-windowful] goto line prefix-arg, default last line | |
7256 \\[view-goto-percent] goto a position by percentage | |
7257 \\[toggle-truncate-lines] toggle truncate-lines | |
7258 \\[view-file] view another file | |
7259 \\[view-buffer] view another buffer | |
7260 \\[view-cleanup-backspaces] cleanup backspace constructions | |
7261 \\[shell-command] execute a shell command | |
7262 \\[shell-command-on-region] execute a shell command with the region as input | |
7263 \\[view-quit] exit view-mode, and bury the current buffer. | |
7264 | |
7265 If invoked with the optional (prefix) arg non-nil, view-mode cleans up | |
7266 backspace constructions. | |
7267 | |
7268 More precisely: | |
7269 \\{view-minor-mode-map}" t nil) | |
7270 | |
7271 (autoload 'view-mode "view-less" "\ | |
7272 View the current buffer using view-minor-mode. This exists to be 99.9% | |
7273 compatible with the implementations of `view-mode' in view.el and older | |
7274 versions of view-less.el." t nil) | |
7275 | |
7276 (autoload 'view-major-mode "view-less" "\ | |
7277 View the current buffer using view-mode, as a major mode. | |
7278 This function has a nonstandard name because `view-mode' is wrongly | |
7279 named but is like this for compatibility reasons." t nil) | |
7280 | |
7281 (autoload 'auto-view-mode "view-less" "\ | |
7282 If the file of the current buffer is not writable, call view-mode. | |
7283 This is meant to be added to `find-file-hooks'." nil nil) | |
7284 | |
7285 ;;;*** | |
7286 | |
7287 ;;;*** | |
7288 | |
7289 ;;;*** | |
7290 | |
7291 ;;;*** | |
7292 | |
7293 ;;;### (autoloads nil "view" "modes/view.el" (12984 29542)) | |
7294 ;;; Generated autoloads from modes/view.el | |
7295 | |
7296 ;;;### (autoloads (vrml-mode) "vrml-mode" "modes/vrml-mode.el" (12984 29543)) | |
7297 ;;; Generated autoloads from modes/vrml-mode.el | |
7298 | |
7299 (autoload 'vrml-mode "vrml-mode" "\ | |
7300 Major mode for editing VRML code. | |
7301 Expression and list commands understand all VRML brackets. | |
7302 Tab indents for VRML code. | |
7303 Paragraphs are separated by blank lines only. | |
7304 Delete converts tabs to spaces as it moves back. | |
7305 | |
7306 Variables controlling indentation style: | |
7307 vrml-indent-level | |
7308 Indentation of VRML statements within surrounding block. | |
7309 | |
7310 Variables controlling user interaction with mode (see variable | |
7311 documentation for details): | |
7312 vrml-tab-always-indent | |
7313 Controls action of TAB key. | |
7314 vrml-auto-newline | |
7315 Non-nil means automatically newline before and after braces | |
7316 inserted in VRML code. | |
7317 | |
7318 Turning on VRML mode calls the value of the variable `vrml-mode-hook' | |
7319 with no args, if that value is non-nil. Read the documentation for | |
7320 `vrml-mode-hook' to see what kinds of interesting hook functions | |
7321 already exist. | |
7322 | |
7323 Commands: | |
7324 \\{vrml-mode-map}" t nil) | |
7325 | |
7326 ;;;*** | |
7327 | |
7328 ;;;### (autoloads (xpm-mode) "xpm-mode" "modes/xpm-mode.el" (12984 29544)) | |
7329 ;;; Generated autoloads from modes/xpm-mode.el | |
7330 | |
7331 (autoload 'xpm-mode "xpm-mode" "\ | |
7332 Treat the current buffer as an xpm file and colorize it. | |
7333 | |
7334 Shift-button-1 lets you paint by dragging the mouse. Shift-button-1 on a | |
7335 color definition line will change the current painting color to that line's | |
7336 value. | |
7337 | |
7338 Characters inserted from the keyboard will NOT be colored properly yet. | |
7339 Use the mouse, or do xpm-init (\\[xpm-init]) after making changes. | |
7340 | |
7341 \\[xpm-add-color] Add a new color, prompting for character and value | |
7342 \\[xpm-show-image] show the current image at the top of the buffer | |
7343 \\[xpm-parse-color] parse the current line's color definition and add | |
7344 it to the color table. Provided as a means of changing colors. | |
7345 XPM minor mode bindings: | |
7346 \\{xpm-mode-map}" t nil) | |
7347 | |
7348 ;;;*** | |
7349 | |
7350 ;;;*** | |
7351 | |
7352 ;;;*** | |
7353 | |
7354 ;;;*** | |
7355 | |
7356 ;;;### (autoloads nil "latex-math-symbol" "mu/latex-math-symbol.el" (12996 50654)) | |
7357 ;;; Generated autoloads from mu/latex-math-symbol.el | |
7358 | |
7359 ;;;*** | |
7360 | |
7361 ;;;### (autoloads nil "mu-bbdb" "mu/mu-bbdb.el" (12996 50654)) | |
7362 ;;; Generated autoloads from mu/mu-bbdb.el | |
7363 | |
7364 ;;;*** | |
7365 | |
7366 ;;;### (autoloads nil "mu-cite" "mu/mu-cite.el" (12996 50654)) | |
7367 ;;; Generated autoloads from mu/mu-cite.el | |
7368 | |
7369 ;;;*** | |
7370 | |
7371 ;;;### (autoloads nil "std11-parse" "mu/std11-parse.el" (12996 50654)) | |
7372 ;;; Generated autoloads from mu/std11-parse.el | |
7373 | |
7374 ;;;*** | |
7375 | |
7376 ;;;### (autoloads nil "std11" "mu/std11.el" (12996 50654)) | |
7377 ;;; Generated autoloads from mu/std11.el | |
7378 | |
7379 ;;;### (autoloads nil "tl-822" "mu/tl-822.el" (12984 29595)) | |
7380 ;;; Generated autoloads from mu/tl-822.el | |
7381 | |
7382 ;;;*** | |
7383 | |
7384 ;;;### (autoloads nil "ns-init" "ns/ns-init.el" (12984 29591)) | |
7385 ;;; Generated autoloads from ns/ns-init.el | |
7386 | |
7387 ;;;*** | |
7388 | |
7389 ;;;### (autoloads nil "br-c++-ft" "oobr/br-c++-ft.el" (12984 29580)) | |
7390 ;;; Generated autoloads from oobr/br-c++-ft.el | |
7391 | |
7392 ;;;*** | |
7393 | |
7394 ;;;### (autoloads nil "br-c++" "oobr/br-c++.el" (12984 29580)) | |
7395 ;;; Generated autoloads from oobr/br-c++.el | |
7396 | |
7397 ;;;*** | |
7398 | |
7399 ;;;### (autoloads nil "br-c-ft" "oobr/br-c-ft.el" (12984 29583)) | |
7400 ;;; Generated autoloads from oobr/br-c-ft.el | |
7401 | |
7402 ;;;*** | |
7403 | |
7404 ;;;### (autoloads nil "br-clos-ft" "oobr/br-clos-ft.el" (12984 29580)) | |
7405 ;;; Generated autoloads from oobr/br-clos-ft.el | |
7406 | |
7407 ;;;*** | |
7408 | |
7409 ;;;### (autoloads nil "br-clos" "oobr/br-clos.el" (12984 29580)) | |
7410 ;;; Generated autoloads from oobr/br-clos.el | |
7411 | |
7412 ;;;*** | |
7413 | |
7414 ;;;### (autoloads nil "br-compl" "oobr/br-compl.el" (12984 29580)) | |
7415 ;;; Generated autoloads from oobr/br-compl.el | |
7416 | |
7417 ;;;*** | |
7418 | |
7419 ;;;### (autoloads nil "br-eif-ft" "oobr/br-eif-ft.el" (12984 29580)) | |
7420 ;;; Generated autoloads from oobr/br-eif-ft.el | |
7421 | |
7422 ;;;*** | |
7423 | |
7424 ;;;### (autoloads nil "br-eif" "oobr/br-eif.el" (12984 29580)) | |
7425 ;;; Generated autoloads from oobr/br-eif.el | |
7426 | |
7427 ;;;*** | |
7428 | |
7429 ;;;### (autoloads (br-env-load br-env-browse) "br-env" "oobr/br-env.el" (12984 29580)) | |
7430 ;;; Generated autoloads from oobr/br-env.el | |
7431 | |
7432 (autoload 'br-env-browse "br-env" "\ | |
7433 Invoke the OO-Browser on an existing or to be created Environment ENV-FILE." t nil) | |
7434 | |
7435 (autoload 'br-env-load "br-env" "\ | |
7436 Load browser Environment or spec from optional ENV-FILE or 'br-env-file'. | |
7437 Non-nil PROMPT means prompt user before building tables. | |
7438 Non-nil NO-BUILD means skip build of Environment entirely. | |
7439 Return t if load is successful, else nil." t nil) | |
7440 | |
7441 ;;;*** | |
7442 | |
7443 ;;;*** | |
7444 | |
7445 ;;;### (autoloads nil "br-ftr" "oobr/br-ftr.el" (12984 29581)) | |
7446 ;;; Generated autoloads from oobr/br-ftr.el | |
7447 | |
7448 ;;;*** | |
7449 | |
7450 ;;;### (autoloads nil "br-info" "oobr/br-info.el" (12984 29581)) | |
7451 ;;; Generated autoloads from oobr/br-info.el | |
7452 | |
7453 ;;;*** | |
7454 | |
7455 ;;;### (autoloads nil "br-init" "oobr/br-init.el" (12984 29581)) | |
7456 ;;; Generated autoloads from oobr/br-init.el | |
7457 | |
7458 ;;;*** | |
7459 | |
7460 ;;;### (autoloads nil "br-java-ft" "oobr/br-java-ft.el" (12984 29583)) | |
7461 ;;; Generated autoloads from oobr/br-java-ft.el | |
7462 | |
7463 ;;;*** | |
7464 | |
7465 ;;;### (autoloads nil "br-java" "oobr/br-java.el" (12984 29583)) | |
7466 ;;; Generated autoloads from oobr/br-java.el | |
7467 | |
7468 ;;;*** | |
7469 | |
7470 ;;;### (autoloads nil "br-lib" "oobr/br-lib.el" (12984 29581)) | |
7471 ;;; Generated autoloads from oobr/br-lib.el | |
7472 | |
7473 ;;;*** | |
7474 | |
7475 ;;;### (autoloads nil "br-menu" "oobr/br-menu.el" (12984 29583)) | |
7476 ;;; Generated autoloads from oobr/br-menu.el | |
7477 | |
7478 ;;;*** | |
7479 | |
7480 ;;;### (autoloads nil "br-objc-ft" "oobr/br-objc-ft.el" (12984 29581)) | |
7481 ;;; Generated autoloads from oobr/br-objc-ft.el | |
7482 | |
7483 ;;;*** | |
7484 | |
7485 ;;;### (autoloads nil "br-objc" "oobr/br-objc.el" (12984 29581)) | |
7486 ;;; Generated autoloads from oobr/br-objc.el | |
7487 | |
7488 ;;;*** | |
7489 | |
7490 ;;;### (autoloads nil "br-python-ft" "oobr/br-python-ft.el" (12984 29583)) | |
7491 ;;; Generated autoloads from oobr/br-python-ft.el | |
7492 | |
7493 ;;;*** | |
7494 | |
7495 ;;;### (autoloads nil "br-python" "oobr/br-python.el" (12984 29583)) | |
7496 ;;; Generated autoloads from oobr/br-python.el | |
7497 | |
7498 ;;;*** | |
7499 | |
7500 ;;;### (autoloads nil "br-site" "oobr/br-site.el" (12984 29581)) | |
7501 ;;; Generated autoloads from oobr/br-site.el | |
7502 | |
7503 ;;;*** | |
7504 | |
7505 ;;;### (autoloads nil "br-smt" "oobr/br-smt.el" (12984 29581)) | |
7506 ;;; Generated autoloads from oobr/br-smt.el | |
7507 | |
7508 ;;;*** | |
7509 | |
7510 ;;;### (autoloads (oo-browser) "br-start" "oobr/br-start.el" (12984 29581)) | |
7511 ;;; Generated autoloads from oobr/br-start.el | |
7512 | |
7513 (fset 'oobr 'oo-browser) | |
7514 | |
7515 (autoload 'oo-browser "br-start" "\ | |
7516 Prompt for an Environment and language over which to run the OO-Browser. | |
7517 Optional prefix argument SAME-ENV-FLAG means browse the current Environment, | |
7518 if any, without prompting." t nil) | |
7519 | |
7520 ;;;*** | |
7521 | |
7522 ;;;*** | |
7523 | |
7524 ;;;### (autoloads nil "br-tree" "oobr/br-tree.el" (12984 29581)) | |
7525 ;;; Generated autoloads from oobr/br-tree.el | |
7526 | |
7527 ;;;*** | |
7528 | |
7529 ;;;### (autoloads nil "br-vers" "oobr/br-vers.el" (12984 29581)) | |
7530 ;;; Generated autoloads from oobr/br-vers.el | |
7531 | |
7532 ;;;### (autoloads (br-to-from-viewer br-add-class-file) "br" "oobr/br.el" (12984 29581)) | |
7533 ;;; Generated autoloads from oobr/br.el | |
7534 | |
7535 (autoload 'br-add-class-file "br" "\ | |
7536 Add a file of classes to the current Environment. | |
7537 Interactively or when optional CLASS-PATH is nil, CLASS-PATH defaults to the | |
7538 current buffer file pathname. If optional LIB-TABLE-P is non-nil, add to | |
7539 Library Environment, otherwise add to System Environment. If optional | |
7540 SAVE-FILE is t, the Environment is then stored to the filename given by | |
7541 'br-env-file'. If SAVE-FILE is non-nil and not t, its string value is used | |
7542 as the file to which to save the Environment." t nil) | |
7543 | |
7544 (autoload 'br-to-from-viewer "br" "\ | |
7545 Move point to viewer window or back to last recorded listing window." t nil) | |
7546 | |
7547 ;;;*** | |
7548 | |
7549 ;;;### (autoloads (c++-browse) "c++-browse" "oobr/c++-browse.el" (12984 29581)) | |
7550 ;;; Generated autoloads from oobr/c++-browse.el | |
7551 | |
7552 (autoload 'c++-browse "c++-browse" "\ | |
7553 Invoke the C++ OO-Browser. | |
7554 This allows browsing through C++ library and system class hierarchies. With | |
7555 an optional non-nil prefix argument ENV-FILE, prompt for Environment file to | |
7556 use. Alternatively, a string value of ENV-FILE is used as the Environment | |
7557 file name. See also the file \"br-help\"." t nil) | |
7558 | |
7559 ;;;*** | |
7560 | |
7561 ;;;### (autoloads (clos-browse) "clos-brows" "oobr/clos-brows.el" (12984 29581)) | |
7562 ;;; Generated autoloads from oobr/clos-brows.el | |
7563 | |
7564 (autoload 'clos-browse "clos-brows" "\ | |
7565 Invoke the CLOS OO-Browser. | |
7566 This allows browsing through CLOS library and system class hierarchies. With | |
7567 an optional non-nil prefix argument ENV-FILE, prompt for Environment file | |
7568 to use. Alternatively, a string value of ENV-FILE is used as the | |
7569 Environment file name. See also the file \"br-help\"." t nil) | |
7570 | |
7571 ;;;*** | |
7572 | |
7573 ;;;### (autoloads (eif-browse) "eif-browse" "oobr/eif-browse.el" (12984 29582)) | |
7574 ;;; Generated autoloads from oobr/eif-browse.el | |
7575 | |
7576 (autoload 'eif-browse "eif-browse" "\ | |
7577 Invoke the Eiffel OO-Browser. | |
7578 This allows browsing through Eiffel library and system class hierarchies. | |
7579 With an optional prefix arg ENV-FILE equal to t, prompt for Environment file | |
7580 to use. Alternatively, a string value of ENV-FILE is used as the Environment | |
7581 file name. See also the file \"br-help\"." t nil) | |
7582 | |
7583 ;;;*** | |
7584 | |
7585 ;;;*** | |
7586 | |
7587 ;;;*** | |
7588 | |
7589 ;;;### (autoloads nil "eif-calls" "oobr/eif-calls.el" (12984 29582)) | |
7590 ;;; Generated autoloads from oobr/eif-calls.el | |
7591 | |
7592 ;;;*** | |
7593 | |
7594 ;;;### (autoloads nil "eif-ise-er" "oobr/eif-ise-er.el" (12984 29582)) | |
7595 ;;; Generated autoloads from oobr/eif-ise-er.el | |
7596 | |
7597 ;;;*** | |
7598 | |
7599 ;;;### (autoloads nil "hash-test" "oobr/hash-test.el" (12984 29582)) | |
7600 ;;; Generated autoloads from oobr/hash-test.el | |
7601 | |
7602 ;;;*** | |
7603 | |
7604 ;;;### (autoloads nil "hasht" "oobr/hasht.el" (12984 29582)) | |
7605 ;;; Generated autoloads from oobr/hasht.el | |
7606 | |
7607 ;;;*** | |
7608 | |
7609 ;;;### (autoloads nil "hmouse-br" "oobr/hmouse-br.el" (12984 29582)) | |
7610 ;;; Generated autoloads from oobr/hmouse-br.el | |
7611 | |
7612 ;;;### (autoloads (info-browse) "info-brows" "oobr/info-brows.el" (12984 29582)) | |
7613 ;;; Generated autoloads from oobr/info-brows.el | |
7614 | |
7615 (autoload 'info-browse "info-brows" "\ | |
7616 Invoke the Info OO-Browser. | |
7617 This allows browsing through Info library and system class hierarchies. With | |
7618 an optional non-nil prefix argument ENV-FILE, prompt for Environment file to | |
7619 use. Alternatively, a string value of ENV-FILE is used as the Environment | |
7620 file name. See also the file \"br-help\"." t nil) | |
7621 | |
7622 ;;;*** | |
7623 | |
7624 ;;;### (autoloads (java-browse) "java-brows" "oobr/java-brows.el" (12984 29583)) | |
7625 ;;; Generated autoloads from oobr/java-brows.el | |
7626 | |
7627 (autoload 'java-browse "java-brows" "\ | |
7628 Invoke the Java OO-Browser. | |
7629 This allows browsing through Java library and system class hierarchies. With | |
7630 an optional non-nil prefix argument ENV-FILE, prompt for Environment file to | |
7631 use. Alternatively, a string value of ENV-FILE is used as the Environment | |
7632 file name. See also the file \"br-help\"." t nil) | |
7633 | |
7634 ;;;*** | |
7635 | |
7636 ;;;### (autoloads (objc-browse) "objc-brows" "oobr/objc-brows.el" (12984 29582)) | |
7637 ;;; Generated autoloads from oobr/objc-brows.el | |
7638 | |
7639 (autoload 'objc-browse "objc-brows" "\ | |
7640 Invoke the Objective-C OO-Browser. | |
7641 This allows browsing through Objective-C library and system class | |
7642 hierarchies. With an optional non-nil prefix argument ENV-FILE, prompt for | |
7643 Environment file to use. Alternatively, a string value of ENV-FILE is used | |
7644 as the Environment file name. See also the file \"br-help\"." t nil) | |
7645 | |
7646 ;;;*** | |
7647 | |
7648 ;;;### (autoloads (python-browse) "python-browse" "oobr/python-browse.el" (12984 29583)) | |
7649 ;;; Generated autoloads from oobr/python-browse.el | |
7650 | |
7651 (autoload 'python-browse "python-browse" "\ | |
7652 Invoke the Python OO-Browser. | |
7653 This allows browsing through Python library and system class hierarchies. | |
7654 With an optional non-nil prefix argument ENV-FILE, prompt for Environment | |
7655 file to use. Alternatively, a string value of ENV-FILE is used as the | |
7656 Environment file name. See also the file \"br-help\"." t nil) | |
7657 | |
7658 ;;;*** | |
7659 | |
7660 ;;;### (autoloads (smt-browse) "smt-browse" "oobr/smt-browse.el" (12984 29582)) | |
7661 ;;; Generated autoloads from oobr/smt-browse.el | |
7662 | |
7663 (autoload 'smt-browse "smt-browse" "\ | |
7664 Invoke the Smalltalk OO-Browser. | |
7665 This allows browsing through Smalltalk library and system class hierarchies. | |
7666 With an optional non-nil prefix argument ENV-FILE, prompt for Environment | |
7667 file to use. Alternatively, a string value of ENV-FILE is used as the | |
7668 Environment file name. See also the file \"br-help\"." t nil) | |
7669 | |
7670 ;;;*** | |
7671 | |
7672 ;;;### (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" (12984 29545)) | |
7673 ;;; Generated autoloads from packages/add-log.el | |
7674 | |
7675 (defvar change-log-default-name nil "\ | |
7676 *Name of a change log file for \\[add-change-log-entry].") | |
7677 | |
7678 (defvar add-log-current-defun-function nil "\ | |
7679 *If non-nil, function to guess name of current function from surrounding text. | |
7680 \\[add-change-log-entry] calls this function (if nil, `add-log-current-defun' | |
7681 instead) with no arguments. It returns a string or nil if it cannot guess.") | |
7682 | |
7683 (defvar add-log-full-name nil "\ | |
7684 *Full name of user, for inclusion in ChangeLog daily headers. | |
7685 This defaults to the value returned by the `user-full-name' function.") | |
7686 | |
7687 (defvar add-log-mailing-address nil "\ | |
7688 *Electronic mail address of user, for inclusion in ChangeLog daily headers. | |
7689 This defaults to the value of `user-mail-address'.") | |
7690 | |
7691 (autoload 'prompt-for-change-log-name "add-log" "\ | |
7692 Prompt for a change log name." nil nil) | |
7693 | |
7694 (autoload 'find-change-log "add-log" "\ | |
7695 Find a change log file for \\[add-change-log-entry] and return the name. | |
7696 | |
7697 Optional arg FILE-NAME specifies the file to use. | |
7698 If FILE-NAME is nil, use the value of `change-log-default-name'. | |
7699 If 'change-log-default-name' is nil, behave as though it were 'ChangeLog' | |
7700 \(or whatever we use on this operating system). | |
7701 | |
7702 If 'change-log-default-name' contains a leading directory component, then | |
7703 simply find it in the current directory. Otherwise, search in the current | |
7704 directory and its successive parents for a file so named. | |
7705 | |
7706 Once a file is found, `change-log-default-name' is set locally in the | |
7707 current buffer to the complete file name." nil nil) | |
7708 | |
7709 (autoload 'add-change-log-entry "add-log" "\ | |
7710 Find change log file and add an entry for today. | |
7711 Optional arg (interactive prefix) non-nil means prompt for user name and site. | |
7712 Second arg is file name of change log. If nil, uses `change-log-default-name'. | |
7713 Third arg OTHER-WINDOW non-nil means visit in other window. | |
7714 Fourth arg NEW-ENTRY non-nil means always create a new entry at the front; | |
7715 never append to an existing entry." t nil) | |
7716 | |
7717 (autoload 'add-change-log-entry-other-window "add-log" "\ | |
7718 Find change log file in other window and add an entry for today. | |
7719 Optional arg (interactive prefix) non-nil means prompt for user name and site. | |
7720 Second arg is file name of change log. If nil, uses `change-log-default-name'." t nil) | |
7721 | |
7722 (define-key ctl-x-4-map "a" 'add-change-log-entry-other-window) | |
7723 | |
7724 (autoload 'change-log-mode "add-log" "\ | |
7725 Major mode for editing change logs; like Indented Text Mode. | |
7726 Prevents numeric backups and sets `left-margin' to 8 and `fill-column' to 74. | |
7727 New log entries are usually made with \\[add-change-log-entry] or \\[add-change-log-entry-other-window]. | |
7728 Each entry behaves as a paragraph, and the entries for one day as a page. | |
7729 Runs `change-log-mode-hook'." t nil) | |
7730 | |
7731 (autoload 'add-log-current-defun "add-log" "\ | |
7732 Return name of function definition point is in, or nil. | |
7733 | |
7734 Understands C, Lisp, LaTeX (\"functions\" are chapters, sections, ...), | |
7735 Texinfo (@node titles), Perl, and Fortran. | |
7736 | |
7737 Other modes are handled by a heuristic that looks in the 10K before | |
7738 point for uppercase headings starting in the first column or | |
7739 identifiers followed by `:' or `=', see variable | |
7740 `add-log-current-defun-header-regexp'. | |
7741 | |
7742 Has a preference of looking backwards." nil nil) | |
7743 | |
7744 ;;;*** | |
7745 | |
7746 ;;;### (autoloads (apropos-documentation apropos-value apropos apropos-command) "apropos" "packages/apropos.el" (12991 23584)) | |
7747 ;;; Generated autoloads from packages/apropos.el | |
7748 | |
7749 (fset 'command-apropos 'apropos-command) | |
7750 | |
7751 (autoload 'apropos-command "apropos" "\ | |
7752 Shows commands (interactively callable functions) that match REGEXP. | |
7753 With optional prefix ARG or if `apropos-do-all' is non-nil, also show | |
7754 variables." t nil) | |
7755 | |
7756 (autoload 'apropos "apropos" "\ | |
7757 Show all bound symbols whose names match REGEXP. | |
7758 With optional prefix ARG or if `apropos-do-all' is non-nil, also show unbound | |
7759 symbols and key bindings, which is a little more time-consuming. | |
7760 Returns list of symbols and documentation found." t nil) | |
7761 | |
7762 (autoload 'apropos-value "apropos" "\ | |
7763 Show all symbols whose value's printed image matches REGEXP. | |
7764 With optional prefix ARG or if `apropos-do-all' is non-nil, also looks | |
7765 at the function and at the names and values of properties. | |
7766 Returns list of symbols and values found." t nil) | |
7767 | |
7768 (autoload 'apropos-documentation "apropos" "\ | |
7769 Show symbols whose documentation contain matches for REGEXP. | |
7770 With optional prefix ARG or if `apropos-do-all' is non-nil, also use | |
7771 documentation that is not stored in the documentation file and show key | |
7772 bindings. | |
7773 Returns list of symbols and documentation found." t nil) | |
7774 | |
7775 ;;;*** | |
7776 | |
7777 ;;;*** | |
7778 | |
7779 ;;;*** | |
7780 | |
7781 ;;;*** | |
7782 | |
7783 ;;;*** | |
7784 | |
7785 ;;;### (autoloads nil "array" "packages/array.el" (12984 29546)) | |
7786 ;;; Generated autoloads from packages/array.el | |
7787 | |
7788 ;;;*** | |
7789 | |
7790 ;;;### (autoloads nil "auto-save" "packages/auto-save.el" (12984 29546)) | |
7791 ;;; Generated autoloads from packages/auto-save.el | |
7792 | |
7793 ;;;### (autoloads (define-auto-insert auto-insert) "autoinsert" "packages/autoinsert.el" (12984 30019)) | |
7794 ;;; Generated autoloads from packages/autoinsert.el | |
7795 | |
7796 (autoload 'auto-insert "autoinsert" "\ | |
7797 Insert default contents into a new file if `auto-insert' is non-nil. | |
7798 Matches the visited file name against the elements of `auto-insert-alist'." t nil) | |
7799 | |
7800 (autoload 'define-auto-insert "autoinsert" "\ | |
7801 Associate CONDITION with (additional) ACTION in `auto-insert-alist'. | |
7802 Optional AFTER means to insert action after all existing actions for CONDITION, | |
7803 or if CONDITION had no actions, after all other CONDITIONs." nil nil) | |
7804 | |
7805 ;;;*** | |
7806 | |
7807 ;;;### (autoloads (mouse-avoidance-mode) "avoid" "packages/avoid.el" (12984 29548)) | |
7808 ;;; Generated autoloads from packages/avoid.el | |
7809 | |
7810 (autoload 'mouse-avoidance-mode "avoid" "\ | |
7811 Set cursor avoidance mode to MODE. | |
7812 MODE should be one of the symbols `banish', `exile', `jump', `animate', | |
7813 `cat-and-mouse', `proteus', or `none'. | |
7814 | |
7815 If MODE is nil, toggle mouse avoidance between `none` and `banish' | |
7816 modes. Positive numbers and symbols other than the above are treated | |
7817 as equivalent to `banish'; negative numbers and `-' are equivalent to `none'. | |
7818 | |
7819 Effects of the different modes: | |
7820 * banish: Move the mouse to the upper-right corner on any keypress. | |
7821 * exile: Move the mouse to the corner only if the cursor gets too close, | |
7822 and allow it to return once the cursor is out of the way. | |
7823 * jump: If the cursor gets too close to the mouse, displace the mouse | |
7824 a random distance & direction. | |
7825 * animate: As `jump', but shows steps along the way for illusion of motion. | |
7826 * cat-and-mouse: Same as `animate'. | |
7827 * proteus: As `animate', but changes the shape of the mouse pointer too. | |
7828 | |
7829 Whenever the mouse is moved, the frame is also raised. | |
7830 | |
7831 \(see `mouse-avoidance-threshold' for definition of \"too close\", | |
7832 and `mouse-avoidance-nudge-dist' and `mouse-avoidance-nudge-var' for | |
7833 definition of \"random distance\".)" t nil) | |
7834 | |
7835 (add-minor-mode 'mouse-avoidance-mode " Avoid") | |
7836 | |
7837 ;;;*** | |
7838 | |
7839 ;;;*** | |
7840 | |
7841 ;;;*** | |
7842 | |
7843 ;;;### (autoloads nil "balloon-help" "packages/balloon-help.el" (12984 29550)) | |
7844 ;;; Generated autoloads from packages/balloon-help.el | |
7845 | |
7846 ;;;*** | |
7847 | |
7848 ;;;*** | |
7849 | |
7850 ;;;### (autoloads nil "big-menubar" "packages/big-menubar.el" (12984 29549)) | |
7851 ;;; Generated autoloads from packages/big-menubar.el | |
7852 | |
7853 ;;;*** | |
7854 | |
7855 ;;;### (autoloads (blink-cursor-mode) "blink-cursor" "packages/blink-cursor.el" (12984 29550)) | |
7856 ;;; Generated autoloads from packages/blink-cursor.el | |
7857 | |
7858 (autoload 'blink-cursor-mode "blink-cursor" "\ | |
7859 Enable or disable a blinking cursor. | |
7860 If TIMEOUT is nil, toggle on or off. | |
7861 If TIMEOUT is t, enable with the previous timeout value. | |
7862 If TIMEOUT is 0, disable. | |
7863 If TIMEOUT is greater than 0, then the cursor will blink once | |
7864 each TIMEOUT secs (can be a float)." t nil) | |
7865 | |
7866 ;;;*** | |
7867 | |
7868 ;;;*** | |
7869 | |
7870 ;;;### (autoloads nil "blink-paren" "packages/blink-paren.el" (12984 29546)) | |
7871 ;;; Generated autoloads from packages/blink-paren.el | |
7872 | |
7873 ;;;*** | |
7874 | |
7875 ;;;### (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" (12984 29547)) | |
7876 ;;; Generated autoloads from packages/bookmark.el | |
7877 | |
7878 (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))) | |
7879 | |
7880 (defvar bookmark-map nil "\ | |
7881 Keymap containing bindings to bookmark functions. | |
7882 It is not bound to any key by default: to bind it | |
7883 so that you have a bookmark prefix, just use `global-set-key' and bind a | |
7884 key of your choice to `bookmark-map'. All interactive bookmark | |
7885 functions have a binding in this keymap.") | |
7886 | |
7887 (define-prefix-command 'bookmark-map) | |
7888 | |
7889 (define-key bookmark-map "x" 'bookmark-set) | |
7890 | |
7891 (define-key bookmark-map "m" 'bookmark-set) | |
7892 | |
7893 (define-key bookmark-map "j" 'bookmark-jump) | |
7894 | |
7895 (define-key bookmark-map "g" 'bookmark-jump) | |
7896 | |
7897 (define-key bookmark-map "i" 'bookmark-insert) | |
7898 | |
7899 (define-key bookmark-map "e" 'edit-bookmarks) | |
7900 | |
7901 (define-key bookmark-map "f" 'bookmark-insert-location) | |
7902 | |
7903 (define-key bookmark-map "r" 'bookmark-rename) | |
7904 | |
7905 (define-key bookmark-map "d" 'bookmark-delete) | |
7906 | |
7907 (define-key bookmark-map "l" 'bookmark-load) | |
7908 | |
7909 (define-key bookmark-map "w" 'bookmark-write) | |
7910 | |
7911 (define-key bookmark-map "s" 'bookmark-save) | |
7912 | |
7913 (autoload 'bookmark-set "bookmark" "\ | |
7914 Set a bookmark named NAME inside a file. | |
7915 If name is nil, then the user will be prompted. | |
7916 With prefix arg, will not overwrite a bookmark that has the same name | |
7917 as NAME if such a bookmark already exists, but instead will \"push\" | |
7918 the new bookmark onto the bookmark alist. Thus the most recently set | |
7919 bookmark with name NAME would be the one in effect at any given time, | |
7920 but the others are still there, should you decide to delete the most | |
7921 recent one. | |
7922 | |
7923 To yank words from the text of the buffer and use them as part of the | |
7924 bookmark name, type C-w while setting a bookmark. Successive C-w's | |
7925 yank successive words. | |
7926 | |
7927 Typing C-u inserts the name of the last bookmark used in the buffer | |
7928 \(as an aid in using a single bookmark name to track your progress | |
7929 through a large file). If no bookmark was used, then C-u inserts the | |
7930 name of the file being visited. | |
7931 | |
7932 Use \\[bookmark-delete] to remove bookmarks (you give it a name, | |
7933 and it removes only the first instance of a bookmark with that name from | |
7934 the list of bookmarks.)" t nil) | |
7935 | |
7936 (autoload 'bookmark-jump "bookmark" "\ | |
7937 Jump to bookmark BOOKMARK (a point in some file). | |
7938 You may have a problem using this function if the value of variable | |
7939 `bookmark-alist' is nil. If that happens, you need to load in some | |
7940 bookmarks. See help on function `bookmark-load' for more about | |
7941 this. | |
7942 | |
7943 If the file pointed to by BOOKMARK no longer exists, you will be asked | |
7944 if you wish to give the bookmark a new location, and bookmark-jump | |
7945 will then jump to the new location, as well as recording it in place | |
7946 of the old one in the permanent bookmark record." t nil) | |
7947 | |
7948 (autoload 'bookmark-relocate "bookmark" "\ | |
7949 Relocate BOOKMARK -- prompts for a filename, and makes an already | |
7950 existing bookmark point to that file, instead of the one it used to | |
7951 point at. Useful when a file has been renamed after a bookmark was | |
7952 set in it." t nil) | |
7953 | |
7954 (autoload 'bookmark-insert-location "bookmark" "\ | |
7955 Insert the name of the file associated with BOOKMARK. | |
7956 Optional second arg NO-HISTORY means don't record this in the | |
7957 minibuffer history list `bookmark-history'." t nil) | |
7958 | |
7959 (autoload 'bookmark-rename "bookmark" "\ | |
7960 Change the name of OLD bookmark to NEW name. If called from | |
7961 keyboard, prompts for OLD and NEW. If called from menubar, OLD is | |
7962 selected from a menu, and prompts for NEW. | |
7963 | |
7964 If called from Lisp, prompts for NEW if only OLD was passed as an | |
7965 argument. If called with two strings, then no prompting is done. You | |
7966 must pass at least OLD when calling from Lisp. | |
7967 | |
7968 While you are entering the new name, consecutive C-w's insert | |
7969 consectutive words from the text of the buffer into the new bookmark | |
7970 name." t nil) | |
7971 | |
7972 (autoload 'bookmark-insert "bookmark" "\ | |
7973 Insert the text of the file pointed to by bookmark BOOKMARK. | |
7974 You may have a problem using this function if the value of variable | |
7975 `bookmark-alist' is nil. If that happens, you need to load in some | |
7976 bookmarks. See help on function `bookmark-load' for more about | |
7977 this." t nil) | |
7978 | |
7979 (autoload 'bookmark-delete "bookmark" "\ | |
7980 Delete BOOKMARK from the bookmark list. | |
7981 Removes only the first instance of a bookmark with that name. If | |
7982 there are one or more other bookmarks with the same name, they will | |
7983 not be deleted. Defaults to the \"current\" bookmark (that is, the | |
7984 one most recently used in this file, if any). | |
7985 Optional second arg BATCH means don't update the bookmark list buffer, | |
7986 probably because we were called from there." t nil) | |
7987 | |
7988 (autoload 'bookmark-write "bookmark" "\ | |
7989 Write bookmarks to a file (for which the user will be prompted | |
7990 interactively). Don't use this in Lisp programs; use bookmark-save | |
7991 instead." t nil) | |
7992 | |
7993 (autoload 'bookmark-save "bookmark" "\ | |
7994 Save currently defined bookmarks. | |
7995 Saves by default in the file defined by the variable | |
7996 `bookmark-default-file'. With a prefix arg, save it in file FILE | |
7997 \(second argument). | |
7998 | |
7999 If you are calling this from Lisp, the two arguments are PREFIX-ARG | |
8000 and FILE, and if you just want it to write to the default file, then | |
8001 pass no arguments. Or pass in nil and FILE, and it will save in FILE | |
8002 instead. If you pass in one argument, and it is non-nil, then the | |
8003 user will be interactively queried for a file to save in. | |
8004 | |
8005 When you want to load in the bookmarks from a file, use | |
8006 `bookmark-load', \\[bookmark-load]. That function will prompt you | |
8007 for a file, defaulting to the file defined by variable | |
8008 `bookmark-default-file'." t nil) | |
8009 | |
8010 (autoload 'bookmark-load "bookmark" "\ | |
8011 Load bookmarks from FILE (which must be in bookmark format). | |
8012 Appends loaded bookmarks to the front of the list of bookmarks. If | |
8013 optional second argument REVERT is non-nil, existing bookmarks are | |
8014 destroyed. Optional third arg NO-MSG means don't display any messages | |
8015 while loading. | |
8016 | |
8017 If you load a file that doesn't contain a proper bookmark alist, you | |
8018 will corrupt Emacs's bookmark list. Generally, you should only load | |
8019 in files that were created with the bookmark functions in the first | |
8020 place. Your own personal bookmark file, `~/.emacs.bmk', is | |
8021 maintained automatically by Emacs; you shouldn't need to load it | |
8022 explicitly." t nil) | |
8023 | |
8024 (autoload 'bookmark-bmenu-list "bookmark" "\ | |
8025 Display a list of existing bookmarks. | |
8026 The list is displayed in a buffer named `*Bookmark List*'. | |
8027 The leftmost column displays a D if the bookmark is flagged for | |
8028 deletion, or > if it is flagged for displaying." t nil) | |
8029 | |
8030 (defalias 'list-bookmarks 'bookmark-bmenu-list) | |
8031 | |
8032 (defalias 'edit-bookmarks 'bookmark-bmenu-list) | |
8033 | |
8034 (autoload 'bookmark-menu-insert "bookmark" "\ | |
8035 Insert the text of the file pointed to by bookmark BOOKMARK. | |
8036 You may have a problem using this function if the value of variable | |
8037 `bookmark-alist' is nil. If that happens, you need to load in some | |
8038 bookmarks. See help on function `bookmark-load' for more about | |
8039 this. | |
8040 | |
8041 Warning: this function only takes an EVENT as argument. Use the | |
8042 corresponding bookmark function from Lisp (the one without the | |
8043 \"-menu-\" in its name)." t nil) | |
8044 | |
8045 (autoload 'bookmark-menu-jump "bookmark" "\ | |
8046 Jump to bookmark BOOKMARK (a point in some file). | |
8047 You may have a problem using this function if the value of variable | |
8048 `bookmark-alist' is nil. If that happens, you need to load in some | |
8049 bookmarks. See help on function `bookmark-load' for more about | |
8050 this. | |
8051 | |
8052 Warning: this function only takes an EVENT as argument. Use the | |
8053 corresponding bookmark function from Lisp (the one without the | |
8054 \"-menu-\" in its name)." t nil) | |
8055 | |
8056 (autoload 'bookmark-menu-locate "bookmark" "\ | |
8057 Insert the name of the file associated with BOOKMARK. | |
8058 \(This is not the same as the contents of that file). | |
8059 | |
8060 Warning: this function only takes an EVENT as argument. Use the | |
8061 corresponding bookmark function from Lisp (the one without the | |
8062 \"-menu-\" in its name)." t nil) | |
8063 | |
8064 (autoload 'bookmark-menu-rename "bookmark" "\ | |
8065 Change the name of OLD-BOOKMARK to NEWNAME. | |
8066 If called from keyboard, prompts for OLD-BOOKMARK and NEWNAME. | |
8067 If called from menubar, OLD-BOOKMARK is selected from a menu, and | |
8068 prompts for NEWNAME. | |
8069 If called from Lisp, prompts for NEWNAME if only OLD-BOOKMARK was | |
8070 passed as an argument. If called with two strings, then no prompting | |
8071 is done. You must pass at least OLD-BOOKMARK when calling from Lisp. | |
8072 | |
8073 While you are entering the new name, consecutive C-w's insert | |
8074 consectutive words from the text of the buffer into the new bookmark | |
8075 name. | |
8076 | |
8077 Warning: this function only takes an EVENT as argument. Use the | |
8078 corresponding bookmark function from Lisp (the one without the | |
8079 \"-menu-\" in its name)." t nil) | |
8080 | |
8081 (autoload 'bookmark-menu-delete "bookmark" "\ | |
8082 Delete the bookmark named NAME from the bookmark list. | |
8083 Removes only the first instance of a bookmark with that name. If | |
8084 there are one or more other bookmarks with the same name, they will | |
8085 not be deleted. Defaults to the \"current\" bookmark (that is, the | |
8086 one most recently used in this file, if any). | |
8087 | |
8088 Warning: this function only takes an EVENT as argument. Use the | |
8089 corresponding bookmark function from Lisp (the one without the | |
8090 \"-menu-\" in its name)." t nil) | |
8091 | |
8092 ;;;*** | |
8093 | |
8094 ;;;### (autoloads nil "buff-menu" "packages/buff-menu.el" (12988 19714)) | |
8095 ;;; Generated autoloads from packages/buff-menu.el | |
8096 | |
8097 (defvar list-buffers-directory nil) | |
8098 | |
8099 (make-variable-buffer-local 'list-buffers-directory) | |
8100 | |
8101 ;;;*** | |
8102 | |
8103 ;;;### (autoloads (command-history-mode list-command-history repeat-matching-complex-command) "chistory" "packages/chistory.el" (12984 29546)) | |
8104 ;;; Generated autoloads from packages/chistory.el | |
8105 | |
8106 (autoload 'repeat-matching-complex-command "chistory" "\ | |
8107 Edit and re-evaluate complex command with name matching PATTERN. | |
8108 Matching occurrences are displayed, most recent first, until you select | |
8109 a form for evaluation. If PATTERN is empty (or nil), every form in the | |
8110 command history is offered. The form is placed in the minibuffer for | |
8111 editing and the result is evaluated." t nil) | |
8112 | |
8113 (autoload 'list-command-history "chistory" "\ | |
8114 List history of commands typed to minibuffer. | |
8115 The number of commands listed is controlled by `list-command-history-max'. | |
8116 Calls value of `list-command-history-filter' (if non-nil) on each history | |
8117 element to judge if that element should be excluded from the list. | |
8118 | |
8119 The buffer is left in Command History mode." t nil) | |
8120 | |
8121 (autoload 'command-history-mode "chistory" "\ | |
8122 Major mode for examining commands from `command-history'. | |
8123 The number of commands listed is controlled by `list-command-history-max'. | |
8124 The command history is filtered by `list-command-history-filter' if non-nil. | |
8125 Use \\<command-history-map>\\[command-history-repeat] to repeat the command on the current line. | |
8126 | |
8127 Otherwise much like Emacs-Lisp Mode except that there is no self-insertion | |
8128 and digits provide prefix arguments. Tab does not indent. | |
8129 \\{command-history-map} | |
8130 Calls the value of `command-history-hook' if that is non-nil. | |
8131 The Command History listing is recomputed each time this mode is invoked." t nil) | |
8132 | |
8133 ;;;*** | |
8134 | |
8135 ;;;### (autoloads nil "cmuscheme" "packages/cmuscheme.el" (12984 29550)) | |
8136 ;;; Generated autoloads from packages/cmuscheme.el | |
8137 | |
8138 (add-hook 'same-window-buffer-names "*scheme*") | |
8139 | |
8140 ;;;*** | |
8141 | |
8142 ;;;### (autoloads (display-column-mode) "column" "packages/column.el" (12984 30028)) | |
8143 ;;; Generated autoloads from packages/column.el | |
8144 | |
8145 (autoload 'display-column-mode "column" "\ | |
8146 Toggle display column mode. | |
8147 With prefix arg, turn display column mode on iff arg is positive. | |
8148 | |
8149 When display column mode is on, the current column and line number are | |
8150 displayed in the mode line." t nil) | |
8151 | |
8152 ;;;*** | |
8153 | |
8154 ;;;### (autoloads (compare-windows) "compare-w" "packages/compare-w.el" (12984 29546)) | |
8155 ;;; Generated autoloads from packages/compare-w.el | |
8156 | |
8157 (autoload 'compare-windows "compare-w" "\ | |
8158 Compare text in current window with text in next window. | |
8159 Compares the text starting at point in each window, | |
8160 moving over text in each one as far as they match. | |
8161 | |
8162 This command pushes the mark in each window | |
8163 at the prior location of point in that window. | |
8164 If both windows display the same buffer, | |
8165 the mark is pushed twice in that buffer: | |
8166 first in the other window, then in the selected window. | |
8167 | |
8168 A prefix arg means ignore changes in whitespace. | |
8169 The variable `compare-windows-whitespace' controls how whitespace is skipped. | |
8170 If `compare-ignore-case' is non-nil, changes in case are also ignored." t nil) | |
8171 | |
8172 ;;;*** | |
8173 | |
8174 ;;;### (autoloads (first-error previous-error next-error compilation-minor-mode grep compile) "compile" "packages/compile.el" (12988 19715)) | |
8175 ;;; Generated autoloads from packages/compile.el | |
8176 | |
8177 (defvar compilation-mode-hook nil "\ | |
8178 *List of hook functions run by `compilation-mode' (see `run-hooks').") | |
8179 | |
8180 (defvar compilation-window-height nil "\ | |
8181 *Number of lines in a compilation window. If nil, use Emacs default.") | |
8182 | |
8183 (defvar compilation-buffer-name-function nil "\ | |
8184 Function to compute the name of a compilation buffer. | |
8185 The function receives one argument, the name of the major mode of the | |
8186 compilation buffer. It should return a string. | |
8187 nil means compute the name with `(concat \"*\" (downcase major-mode) \"*\")'.") | |
8188 | |
8189 (defvar compilation-finish-function nil "\ | |
8190 *Function to call when a compilation process finishes. | |
8191 It is called with two arguments: the compilation buffer, and a string | |
8192 describing how the process finished.") | |
8193 | |
8194 (defvar compilation-search-path '(nil) "\ | |
8195 *List of directories to search for source files named in error messages. | |
8196 Elements should be directory names, not file names of directories. | |
8197 nil as an element means to try the default directory.") | |
8198 | |
8199 (autoload 'compile "compile" "\ | |
8200 Compile the program including the current buffer. Default: run `make'. | |
8201 Runs COMMAND, a shell command, in a separate process asynchronously | |
8202 with output going to the buffer `*compilation*'. | |
8203 | |
8204 You can then use the command \\[next-error] to find the next error message | |
8205 and move to the source code that caused it. | |
8206 | |
8207 Interactively, prompts for the command if `compilation-read-command' is | |
8208 non-nil; otherwise uses `compile-command'. With prefix arg, always prompts. | |
8209 | |
8210 To run more than one compilation at once, start one and rename the | |
8211 `*compilation*' buffer to some other name with \\[rename-buffer]. | |
8212 Then start the next one. | |
8213 | |
8214 The name used for the buffer is actually whatever is returned by | |
8215 the function in `compilation-buffer-name-function', so you can set that | |
8216 to a function that generates a unique name." t nil) | |
8217 | |
8218 (autoload 'grep "compile" "\ | |
8219 Run grep, with user-specified args, and collect output in a buffer. | |
8220 While grep runs asynchronously, you can use the \\[next-error] command | |
8221 to find the text that grep hits refer to. | |
8222 | |
8223 This command uses a special history list for its arguments, so you can | |
8224 easily repeat a grep command." t nil) | |
8225 | |
8226 (autoload 'compilation-minor-mode "compile" "\ | |
8227 Toggle compilation minor mode. | |
8228 With arg, turn compilation mode on if and only if arg is positive. | |
8229 See `compilation-mode'. | |
8230 ! \\{compilation-mode-map}" t nil) | |
8231 | |
8232 (autoload 'next-error "compile" "\ | |
8233 Visit next compilation error message and corresponding source code. | |
8234 This operates on the output from the \\[compile] command. | |
8235 If all preparsed error messages have been processed, | |
8236 the error message buffer is checked for new ones. | |
8237 | |
8238 A prefix arg specifies how many error messages to move; | |
8239 negative means move back to previous error messages. | |
8240 Just C-u as a prefix means reparse the error message buffer | |
8241 and start at the first error. | |
8242 | |
8243 \\[next-error] normally applies to the most recent compilation started, | |
8244 but as long as you are in the middle of parsing errors from one compilation | |
8245 output buffer, you stay with that compilation output buffer. | |
8246 | |
8247 Use \\[next-error] in a compilation output buffer to switch to | |
8248 processing errors from that compilation. | |
8249 | |
8250 See variables `compilation-parse-errors-function' and | |
8251 `compilation-error-regexp-alist' for customization ideas." t nil) | |
8252 | |
8253 (define-key ctl-x-map "`" 'next-error) | |
8254 | |
8255 (autoload 'previous-error "compile" "\ | |
8256 Visit previous compilation error message and corresponding source code. | |
8257 This operates on the output from the \\[compile] command." t nil) | |
8258 | |
8259 (autoload 'first-error "compile" "\ | |
8260 Reparse the error message buffer and start at the first error | |
8261 Visit corresponding source code. | |
8262 This operates on the output from the \\[compile] command." t nil) | |
8263 | |
8264 ;;;*** | |
8265 | |
8266 ;;;*** | |
8267 | |
8268 ;;;*** | |
8269 | |
8270 ;;;*** | |
8271 | |
8272 ;;;### (autoloads nil "completion" "packages/completion.el" (12984 29550)) | |
8273 ;;; Generated autoloads from packages/completion.el | |
8274 | |
8275 ;;;*** | |
8276 | |
8277 ;;;### (autoloads nil "crypt" "packages/crypt.el" (12984 29548)) | |
8278 ;;; Generated autoloads from packages/crypt.el | |
8279 | |
8280 ;;;*** | |
8281 | |
8282 ;;;*** | |
8283 | |
8284 ;;;*** | |
8285 | |
8286 ;;;### (autoloads (dabbrev-expand dabbrev-completion) "dabbrev" "packages/dabbrev.el" (12984 29546)) | |
8287 ;;; Generated autoloads from packages/dabbrev.el | |
8288 | |
8289 (define-key global-map [(meta /)] 'dabbrev-expand) | |
8290 | |
8291 (define-key global-map [(meta control /)] 'dabbrev-completion) | |
8292 | |
8293 (autoload 'dabbrev-completion "dabbrev" "\ | |
8294 Completion on current word. | |
8295 Like \\[dabbrev-expand] but finds all expansions in the current buffer | |
8296 and presents suggestions for completion. | |
8297 | |
8298 With a prefix argument, it searches all buffers accepted by the | |
8299 function pointed out by `dabbrev-friend-buffer-function' to find the | |
8300 completions. | |
8301 | |
8302 If the prefix argument is 16 (which comes from C-u C-u), | |
8303 then it searches *all* buffers. | |
8304 | |
8305 With no prefix argument, it reuses an old completion list | |
8306 if there is a suitable one already." t nil) | |
8307 | |
8308 (autoload 'dabbrev-expand "dabbrev" "\ | |
8309 Expand previous word \"dynamically\". | |
8310 | |
8311 Expands to the most recent, preceding word for which this is a prefix. | |
8312 If no suitable preceding word is found, words following point are | |
8313 considered. If still no suitable word is found, then look in the | |
8314 buffers accepted by the function pointed out by variable | |
8315 `dabbrev-friend-buffer-function'. | |
8316 | |
8317 A positive prefix argument, N, says to take the Nth backward *distinct* | |
8318 possibility. A negative argument says search forward. | |
8319 | |
8320 If the cursor has not moved from the end of the previous expansion and | |
8321 no argument is given, replace the previously-made expansion | |
8322 with the next possible expansion not yet tried. | |
8323 | |
8324 The variable `dabbrev-backward-only' may be used to limit the | |
8325 direction of search to backward if set non-nil. | |
8326 | |
8327 See also `dabbrev-abbrev-char-regexp' and \\[dabbrev-completion]." t nil) | |
8328 | |
8329 ;;;*** | |
8330 | |
8331 ;;;*** | |
8332 | |
8333 ;;;### (autoloads nil "desktop" "packages/desktop.el" (12984 29549)) | |
8334 ;;; Generated autoloads from packages/desktop.el | |
8335 | |
8336 ;;;*** | |
8337 | |
8338 ;;;### (autoloads nil "detexinfo" "packages/detexinfo.el" (12984 29548)) | |
8339 ;;; Generated autoloads from packages/detexinfo.el | |
8340 | |
8341 ;;;*** | |
8342 | |
8343 ;;;### (autoloads (diff-backup diff) "diff" "packages/diff.el" (12984 29546)) | |
8344 ;;; Generated autoloads from packages/diff.el | |
8345 | |
8346 (defvar diff-switches (purecopy "-c") "\ | |
8347 *A string or list of strings specifying switches to be passed to diff.") | |
8348 | |
8349 (autoload 'diff "diff" "\ | |
8350 Find and display the differences between OLD and NEW files. | |
8351 Interactively the current buffer's file name is the default for NEW | |
8352 and a backup file for NEW is the default for OLD. | |
8353 With prefix arg, prompt for diff switches." t nil) | |
8354 | |
8355 (autoload 'diff-backup "diff" "\ | |
8356 Diff this file with its backup file or vice versa. | |
8357 Uses the latest backup, if there are several numerical backups. | |
8358 If this file is a backup, diff it with its original. | |
8359 The backup file is the first file given to `diff'." t nil) | |
8360 | |
8361 ;;;*** | |
8362 | |
8363 ;;;*** | |
8364 | |
8365 ;;;### (autoloads nil "doctex" "packages/doctex.el" (12984 29546)) | |
8366 ;;; Generated autoloads from packages/doctex.el | |
8367 | |
8368 ;;;### (autoloads (edit-faces) "edit-faces" "packages/edit-faces.el" (12984 29550)) | |
8369 ;;; Generated autoloads from packages/edit-faces.el | |
8370 | |
8371 (autoload 'edit-faces "edit-faces" "\ | |
8372 Alter face characteristics by editing a list of defined faces. | |
8373 Pops up a buffer containing a list of defined faces. | |
8374 | |
8375 Editing commands: | |
8376 | |
8377 \\{edit-faces-mode-map}" t nil) | |
8378 | |
8379 ;;;*** | |
8380 | |
8381 ;;;### (autoloads (report-xemacs-bug) "emacsbug" "packages/emacsbug.el" (12984 29546)) | |
8382 ;;; Generated autoloads from packages/emacsbug.el | |
8383 | |
8384 (autoload 'report-xemacs-bug "emacsbug" "\ | |
8385 Report a bug in XEmacs. | |
8386 Prompts for bug subject. Leaves you in a mail buffer." t nil) | |
8387 | |
8388 ;;;*** | |
8389 | |
8390 ;;;### (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" (12984 29546)) | |
8391 ;;; Generated autoloads from packages/emerge.el | |
8392 | |
8393 (autoload 'emerge-files "emerge" "\ | |
8394 Run Emerge on two files." t nil) | |
8395 | |
8396 (fset 'emerge 'emerge-files) | |
8397 | |
8398 (autoload 'emerge-files-with-ancestor "emerge" "\ | |
8399 Run Emerge on two files, giving another file as the ancestor." t nil) | |
8400 | |
8401 (autoload 'emerge-buffers "emerge" "\ | |
8402 Run Emerge on two buffers." t nil) | |
8403 | |
8404 (autoload 'emerge-buffers-with-ancestor "emerge" "\ | |
8405 Run Emerge on two buffers, giving another buffer as the ancestor." t nil) | |
8406 | |
8407 (autoload 'emerge-files-command "emerge" nil nil nil) | |
8408 | |
8409 (autoload 'emerge-files-with-ancestor-command "emerge" nil nil nil) | |
8410 | |
8411 (autoload 'emerge-files-remote "emerge" nil nil nil) | |
8412 | |
8413 (autoload 'emerge-files-with-ancestor-remote "emerge" nil nil nil) | |
8414 | |
8415 (autoload 'emerge-revisions "emerge" "\ | |
8416 Emerge two RCS revisions of a file." t nil) | |
8417 | |
8418 (autoload 'emerge-revisions-with-ancestor "emerge" "\ | |
8419 Emerge two RCS revisions of a file, with another revision as ancestor." t nil) | |
8420 | |
8421 (autoload 'emerge-merge-directories "emerge" nil t nil) | |
8422 | |
8423 ;;;*** | |
8424 | |
8425 ;;;### (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" (12984 29546)) | |
8426 ;;; Generated autoloads from packages/etags.el | |
8427 | |
8428 (defvar tags-build-completion-table 'ask "\ | |
8429 *If this variable is nil, then tags completion is disabled. | |
8430 If this variable is t, then things which prompt for tags will do so with | |
8431 completion across all known tags. | |
8432 If this variable is the symbol `ask', then you will be asked whether each | |
8433 tags table should be added to the completion list as it is read in. | |
8434 (With the exception that for very small tags tables, you will not be asked, | |
8435 since they can be parsed quickly.)") | |
8436 | |
8437 (defvar tags-always-exact nil "\ | |
8438 *If this variable is non-nil, then tags always looks for exact matches.") | |
8439 | |
8440 (defvar tag-table-alist nil "\ | |
8441 *A list which determines which tags files should be active for a | |
8442 given buffer. This is not really an association list, in that all | |
8443 elements are checked. The CAR of each element of this list is a | |
8444 pattern against which the buffer's file name is compared; if it | |
8445 matches, then the CDR of the list should be the name of the tags | |
8446 table to use. If more than one element of this list matches the | |
8447 buffer's file name, then all of the associated tags tables will be | |
8448 used. Earlier ones will be searched first. | |
8449 | |
8450 If the CAR of elements of this list are strings, then they are treated | |
8451 as regular-expressions against which the file is compared (like the | |
8452 auto-mode-alist). If they are not strings, then they are evaluated. | |
8453 If they evaluate to non-nil, then the current buffer is considered to | |
8454 match. | |
8455 | |
8456 If the CDR of the elements of this list are strings, then they are | |
8457 assumed to name a TAGS file. If they name a directory, then the string | |
8458 \"TAGS\" is appended to them to get the file name. If they are not | |
8459 strings, then they are evaluated, and must return an appropriate string. | |
8460 | |
8461 For example: | |
8462 (setq tag-table-alist | |
8463 '((\"/usr/src/public/perl/\" . \"/usr/src/public/perl/perl-3.0/\") | |
8464 (\"\\\\.el$\" . \"/usr/local/emacs/src/\") | |
8465 (\"/jbw/gnu/\" . \"/usr15/degree/stud/jbw/gnu/\") | |
8466 (\"\" . \"/usr/local/emacs/src/\") | |
8467 )) | |
8468 | |
8469 This means that anything in the /usr/src/public/perl/ directory should use | |
8470 the TAGS file /usr/src/public/perl/perl-3.0/TAGS; and file ending in .el should | |
8471 use the TAGS file /usr/local/emacs/src/TAGS; and anything in or below the | |
8472 directory /jbw/gnu/ should use the TAGS file /usr15/degree/stud/jbw/gnu/TAGS. | |
8473 A file called something like \"/usr/jbw/foo.el\" would use both the TAGS files | |
8474 /usr/local/emacs/src/TAGS and /usr15/degree/stud/jbw/gnu/TAGS (in that order) | |
8475 because it matches both patterns. | |
8476 | |
8477 If the buffer-local variable `buffer-tag-table' is set, then it names a tags | |
8478 table that is searched before all others when find-tag is executed from this | |
8479 buffer. | |
8480 | |
8481 If there is a file called \"TAGS\" in the same directory as the file in | |
8482 question, then that tags file will always be used as well (after the | |
8483 `buffer-tag-table' but before the tables specified by this list.) | |
8484 | |
8485 If the variable tags-file-name is set, then the tags file it names will apply | |
8486 to all buffers (for backwards compatibility.) It is searched first. | |
8487 ") | |
8488 | |
8489 (autoload 'visit-tags-table "etags" "\ | |
8490 Tell tags commands to use tags table file FILE first. | |
8491 FILE should be the name of a file created with the `etags' program. | |
8492 A directory name is ok too; it means file TAGS in that directory." t nil) | |
8493 | |
8494 (autoload 'find-tag "etags" "\ | |
8495 *Find tag whose name contains TAGNAME. | |
8496 Selects the buffer that the tag is contained in | |
8497 and puts point at its definition. | |
8498 If TAGNAME is a null string, the expression in the buffer | |
8499 around or before point is used as the tag name. | |
8500 If called interactively with a numeric argument, searches for the next tag | |
8501 in the tag table that matches the tagname used in the previous find-tag. | |
8502 If second arg OTHER-WINDOW is non-nil, uses another window to display | |
8503 the tag. | |
8504 | |
8505 This version of this function supports multiple active tags tables, | |
8506 and completion. | |
8507 | |
8508 Variables of note: | |
8509 | |
8510 tag-table-alist controls which tables apply to which buffers | |
8511 tags-file-name a default tags table | |
8512 tags-build-completion-table controls completion behavior | |
8513 buffer-tag-table another way of specifying a buffer-local table | |
8514 make-tags-files-invisible whether tags tables should be very hidden | |
8515 tag-mark-stack-max how many tags-based hops to remember" t nil) | |
8516 | |
8517 (autoload 'find-tag-other-window "etags" "\ | |
8518 *Find tag whose name contains TAGNAME. | |
8519 Selects the buffer that the tag is contained in in another window | |
8520 and puts point at its definition. | |
8521 If TAGNAME is a null string, the expression in the buffer | |
8522 around or before point is used as the tag name. | |
8523 If second arg NEXT is non-nil (interactively, with prefix arg), | |
8524 searches for the next tag in the tag table | |
8525 that matches the tagname used in the previous find-tag. | |
8526 | |
8527 This version of this function supports multiple active tags tables, | |
8528 and completion. | |
8529 | |
8530 Variables of note: | |
8531 | |
8532 tag-table-alist controls which tables apply to which buffers | |
8533 tags-file-name a default tags table | |
8534 tags-build-completion-table controls completion behavior | |
8535 buffer-tag-table another way of specifying a buffer-local table | |
8536 make-tags-files-invisible whether tags tables should be very hidden | |
8537 tag-mark-stack-max how many tags-based hops to remember" t nil) | |
8538 | |
8539 (autoload 'next-file "etags" "\ | |
8540 Select next file among files in current tag table(s). | |
8541 | |
8542 A first argument of t (prefix arg, if interactive) initializes to the | |
8543 beginning of the list of files in the (first) tags table. If the argument | |
8544 is neither nil nor t, it is evalled to initialize the list of files. | |
8545 | |
8546 Non-nil second argument NOVISIT means use a temporary buffer | |
8547 to save time and avoid uninteresting warnings. | |
8548 | |
8549 Value is nil if the file was already visited; | |
8550 if the file was newly read in, the value is the filename." t nil) | |
8551 | |
8552 (autoload 'tags-loop-continue "etags" "\ | |
8553 Continue last \\[tags-search] or \\[tags-query-replace] command. | |
8554 Used noninteractively with non-nil argument to begin such a command (the | |
8555 argument is passed to `next-file', which see). | |
8556 Two variables control the processing we do on each file: | |
8557 the value of `tags-loop-scan' is a form to be executed on each file | |
8558 to see if it is interesting (it returns non-nil if so) | |
8559 and `tags-loop-operate' is a form to execute to operate on an interesting file | |
8560 If the latter returns non-nil, we exit; otherwise we scan the next file." t nil) | |
8561 | |
8562 (autoload 'tags-search "etags" "\ | |
8563 Search through all files listed in tags table for match for REGEXP. | |
8564 Stops when a match is found. | |
8565 To continue searching for next match, use command \\[tags-loop-continue]. | |
8566 | |
8567 See documentation of variable `tag-table-alist'." t nil) | |
8568 | |
8569 (autoload 'tags-query-replace "etags" "\ | |
8570 Query-replace-regexp FROM with TO through all files listed in tags table. | |
8571 Third arg DELIMITED (prefix arg) means replace only word-delimited matches. | |
8572 If you exit (\\[keyboard-quit] or ESC), you can resume the query-replace | |
8573 with the command \\[tags-loop-continue]. | |
8574 | |
8575 See documentation of variable `tag-table-alist'." t nil) | |
8576 | |
8577 (autoload 'list-tags "etags" "\ | |
8578 Display list of tags in file FILE. | |
8579 FILE should not contain a directory spec | |
8580 unless it has one in the tag table." t nil) | |
8581 | |
8582 (autoload 'tags-apropos "etags" "\ | |
8583 Display list of all tags in tag table REGEXP matches." t nil) | |
8584 | |
8585 ;;;*** | |
8586 | |
8587 ;;;### (autoloads nil "fa-extras" "packages/fa-extras.el" (12547 41264)) | |
8588 ;;; Generated autoloads from packages/fa-extras.el | |
8589 | |
8590 ;;;### (autoloads (turn-on-fast-lock fast-lock-mode) "fast-lock" "packages/fast-lock.el" (12984 29549)) | |
8591 ;;; Generated autoloads from packages/fast-lock.el | |
8592 | |
8593 (defvar fast-lock-mode nil) | |
8594 | |
8595 (autoload 'fast-lock-mode "fast-lock" "\ | |
8596 Toggle Fast Lock mode. | |
8597 With arg, turn Fast Lock mode on if and only if arg is positive and the buffer | |
8598 is associated with a file. Enable it automatically in your `~/.emacs' by: | |
8599 | |
8600 (setq font-lock-support-mode 'fast-lock-mode) | |
8601 | |
8602 If Fast Lock mode is enabled, and the current buffer does not contain any text | |
8603 properties, any associated Font Lock cache is used if its timestamp matches the | |
8604 buffer's file, and its `font-lock-keywords' match those that you are using. | |
8605 | |
8606 Font Lock caches may be saved: | |
8607 - When you save the file's buffer. | |
8608 - When you kill an unmodified file's buffer. | |
8609 - When you exit Emacs, for all unmodified or saved buffers. | |
8610 Depending on the value of `fast-lock-save-events'. | |
8611 See also the commands `fast-lock-read-cache' and `fast-lock-save-cache'. | |
8612 | |
8613 Use \\[font-lock-fontify-buffer] to fontify the buffer if the cache is bad. | |
8614 | |
8615 Various methods of control are provided for the Font Lock cache. In general, | |
8616 see variable `fast-lock-cache-directories' and function `fast-lock-cache-name'. | |
8617 For saving, see variables `fast-lock-minimum-size', `fast-lock-save-events', | |
8618 `fast-lock-save-others' and `fast-lock-save-faces'. | |
8619 | |
8620 Use \\[fast-lock-submit-bug-report] to send bug reports or feedback." t nil) | |
8621 | |
8622 (autoload 'turn-on-fast-lock "fast-lock" "\ | |
8623 Unconditionally turn on Fast Lock mode." nil nil) | |
8624 | |
8625 (if (fboundp 'add-minor-mode) (add-minor-mode 'fast-lock-mode nil)) | |
8626 | |
8627 ;;;*** | |
8628 | |
8629 ;;;### (autoloads (feedmail-send-it) "feedmail" "packages/feedmail.el" (12984 29546)) | |
8630 ;;; Generated autoloads from packages/feedmail.el | |
8631 | |
8632 (autoload 'feedmail-send-it "feedmail" nil nil nil) | |
8633 | |
8634 ;;;*** | |
8635 | |
8636 ;;;### (autoloads (make-file-part) "file-part" "packages/file-part.el" (12984 29549)) | |
8637 ;;; Generated autoloads from packages/file-part.el | |
8638 | |
8639 (autoload 'make-file-part "file-part" "\ | |
8640 Make a file part on buffer BUFFER out of the region. Call it NAME. | |
8641 This command creates a new buffer containing the contents of the | |
8642 region and marks the buffer as referring to the specified buffer, | |
8643 called the `master buffer'. When the file-part buffer is saved, | |
8644 its changes are integrated back into the master buffer. When the | |
8645 master buffer is deleted, all file parts are deleted with it. | |
8646 | |
8647 When called from a function, expects four arguments, START, END, | |
8648 NAME, and BUFFER, all of which are optional and default to the | |
8649 beginning of BUFFER, the end of BUFFER, a name generated from | |
8650 BUFFER's name, and the current buffer, respectively." t nil) | |
8651 | |
8652 ;;;*** | |
8653 | |
8654 ;;;*** | |
8655 | |
8656 ;;;*** | |
8657 | |
8658 ;;;### (autoloads nil "filladapt" "packages/filladapt.el" (12984 29550)) | |
8659 ;;; Generated autoloads from packages/filladapt.el | |
8660 | |
8661 ;;;*** | |
8662 | |
8663 ;;;### (autoloads (font-lock-fontify-buffer turn-off-font-lock turn-on-font-lock font-lock-mode) "font-lock" "packages/font-lock.el" (12988 58307)) | |
8664 ;;; Generated autoloads from packages/font-lock.el | |
8665 | |
8666 (defvar font-lock-auto-fontify t "\ | |
8667 *Whether font-lock should automatically fontify files as they're loaded. | |
8668 This will only happen if font-lock has fontifying keywords for the major | |
8669 mode of the file. You can get finer-grained control over auto-fontification | |
8670 by using this variable in combination with `font-lock-mode-enable-list' or | |
8671 `font-lock-mode-disable-list'.") | |
8672 | |
8673 (defvar font-lock-mode-enable-list nil "\ | |
8674 *List of modes to auto-fontify, if `font-lock-auto-fontify' is nil.") | |
8675 | |
8676 (defvar font-lock-mode-disable-list nil "\ | |
8677 *List of modes not to auto-fontify, if `font-lock-auto-fontify' is t.") | |
8678 | |
8679 (defvar font-lock-use-colors '(color) "\ | |
8680 *Specification for when Font Lock will set up color defaults. | |
8681 Normally this should be '(color), meaning that Font Lock will set up | |
8682 color defaults that are only used on color displays. Set this to nil | |
8683 if you don't want Font Lock to set up color defaults at all. This | |
8684 should be one of | |
8685 | |
8686 -- a list of valid tags, meaning that the color defaults will be used | |
8687 when all of the tags apply. (e.g. '(color x)) | |
8688 -- a list whose first element is 'or and whose remaining elements are | |
8689 lists of valid tags, meaning that the defaults will be used when | |
8690 any of the tag lists apply. | |
8691 -- nil, meaning that the defaults should not be set up at all. | |
8692 | |
8693 \(If you specify face values in your init file, they will override any | |
8694 that Font Lock specifies, regardless of whether you specify the face | |
8695 values before or after loading Font Lock.) | |
8696 | |
8697 See also `font-lock-use-fonts'. If you want more control over the faces | |
8698 used for fontification, see the documentation of `font-lock-mode' for | |
8699 how to do it.") | |
8700 | |
8701 (defvar font-lock-use-fonts '(or (mono) (grayscale)) "\ | |
8702 *Specification for when Font Lock will set up non-color defaults. | |
8703 | |
8704 Normally this should be '(or (mono) (grayscale)), meaning that Font | |
8705 Lock will set up non-color defaults that are only used on either mono | |
8706 or grayscale displays. Set this to nil if you don't want Font Lock to | |
8707 set up non-color defaults at all. This should be one of | |
8708 | |
8709 -- a list of valid tags, meaning that the non-color defaults will be used | |
8710 when all of the tags apply. (e.g. '(grayscale x)) | |
8711 -- a list whose first element is 'or and whose remaining elements are | |
8712 lists of valid tags, meaning that the defaults will be used when | |
8713 any of the tag lists apply. | |
8714 -- nil, meaning that the defaults should not be set up at all. | |
8715 | |
8716 \(If you specify face values in your init file, they will override any | |
8717 that Font Lock specifies, regardless of whether you specify the face | |
8718 values before or after loading Font Lock.) | |
8719 | |
8720 See also `font-lock-use-colors'. If you want more control over the faces | |
8721 used for fontification, see the documentation of `font-lock-mode' for | |
8722 how to do it.") | |
8723 | |
8724 (defvar font-lock-maximum-decoration nil "\ | |
8725 *If non-nil, the maximum decoration level for fontifying. | |
8726 If nil, use the minimum decoration (equivalent to level 0). | |
8727 If t, use the maximum decoration available. | |
8728 If a number, use that level of decoration (or if not available the maximum). | |
8729 If a list, each element should be a cons pair of the form (MAJOR-MODE . LEVEL), | |
8730 where MAJOR-MODE is a symbol or t (meaning the default). For example: | |
8731 ((c++-mode . 2) (c-mode . t) (t . 1)) | |
8732 means use level 2 decoration for buffers in `c++-mode', the maximum decoration | |
8733 available for buffers in `c-mode', and level 1 decoration otherwise.") | |
8734 | |
8735 (define-obsolete-variable-alias 'font-lock-use-maximal-decoration 'font-lock-maximum-decoration) | |
8736 | |
8737 (defvar font-lock-maximum-size (* 250 1024) "\ | |
8738 *If non-nil, the maximum size for buffers for fontifying. | |
8739 Only buffers less than this can be fontified when Font Lock mode is turned on. | |
8740 If nil, means size is irrelevant. | |
8741 If a list, each element should be a cons pair of the form (MAJOR-MODE . SIZE), | |
8742 where MAJOR-MODE is a symbol or t (meaning the default). For example: | |
8743 ((c++-mode . 256000) (c-mode . 256000) (rmail-mode . 1048576)) | |
8744 means that the maximum size is 250K for buffers in `c++-mode' or `c-mode', one | |
8745 megabyte for buffers in `rmail-mode', and size is irrelevant otherwise.") | |
8746 | |
8747 (defvar font-lock-keywords nil "\ | |
8748 *A list of the keywords to highlight. | |
8749 Each element should be of the form: | |
8750 | |
8751 MATCHER | |
8752 (MATCHER . MATCH) | |
8753 (MATCHER . FACENAME) | |
8754 (MATCHER . HIGHLIGHT) | |
8755 (MATCHER HIGHLIGHT ...) | |
8756 | |
8757 where HIGHLIGHT should be either MATCH-HIGHLIGHT or MATCH-ANCHORED. | |
8758 | |
8759 For highlighting single items, typically only MATCH-HIGHLIGHT is required. | |
8760 However, if an item or (typically) items is to be hightlighted following the | |
8761 instance of another item (the anchor) then MATCH-ANCHORED may be required. | |
8762 | |
8763 MATCH-HIGHLIGHT should be of the form: | |
8764 | |
8765 (MATCH FACENAME OVERRIDE LAXMATCH) | |
8766 | |
8767 Where MATCHER can be either the regexp to search for, or the function name to | |
8768 call to make the search (called with one argument, the limit of the search). | |
8769 MATCH is the subexpression of MATCHER to be highlighted. FACENAME is either | |
8770 a symbol naming a face, or an expression whose value is the face name to use. | |
8771 If you want FACENAME to be a symbol that evaluates to a face, use a form | |
8772 like \"(progn sym)\". | |
8773 | |
8774 OVERRIDE and LAXMATCH are flags. If OVERRIDE is t, existing fontification may | |
8775 be overwritten. If `keep', only parts not already fontified are highlighted. | |
8776 If `prepend' or `append', existing fontification is merged with the new, in | |
8777 which the new or existing fontification, respectively, takes precedence. | |
8778 If LAXMATCH is non-nil, no error is signalled if there is no MATCH in MATCHER. | |
8779 | |
8780 For example, an element of the form highlights (if not already highlighted): | |
8781 | |
8782 \"\\\\\\=<foo\\\\\\=>\" Discrete occurrences of \"foo\" in the value of the | |
8783 variable `font-lock-keyword-face'. | |
8784 (\"fu\\\\(bar\\\\)\" . 1) Substring \"bar\" within all occurrences of \"fubar\" in | |
8785 the value of `font-lock-keyword-face'. | |
8786 (\"fubar\" . fubar-face) Occurrences of \"fubar\" in the value of `fubar-face'. | |
8787 (\"foo\\\\|bar\" 0 foo-bar-face t) | |
8788 Occurrences of either \"foo\" or \"bar\" in the value | |
8789 of `foo-bar-face', even if already highlighted. | |
8790 | |
8791 MATCH-ANCHORED should be of the form: | |
8792 | |
8793 (MATCHER PRE-MATCH-FORM POST-MATCH-FORM MATCH-HIGHLIGHT ...) | |
8794 | |
8795 Where MATCHER is as for MATCH-HIGHLIGHT with one exception. The limit of the | |
8796 search is currently guaranteed to be (no greater than) the end of the line. | |
8797 PRE-MATCH-FORM and POST-MATCH-FORM are evaluated before the first, and after | |
8798 the last, instance MATCH-ANCHORED's MATCHER is used. Therefore they can be | |
8799 used to initialise before, and cleanup after, MATCHER is used. Typically, | |
8800 PRE-MATCH-FORM is used to move to some position relative to the original | |
8801 MATCHER, before starting with MATCH-ANCHORED's MATCHER. POST-MATCH-FORM might | |
8802 be used to move, before resuming with MATCH-ANCHORED's parent's MATCHER. | |
8803 | |
8804 For example, an element of the form highlights (if not already highlighted): | |
8805 | |
8806 (\"\\\\\\=<anchor\\\\\\=>\" (0 anchor-face) (\"\\\\\\=<item\\\\\\=>\" nil nil (0 item-face))) | |
8807 | |
8808 Discrete occurrences of \"anchor\" in the value of `anchor-face', and subsequent | |
8809 discrete occurrences of \"item\" (on the same line) in the value of `item-face'. | |
8810 (Here PRE-MATCH-FORM and POST-MATCH-FORM are nil. Therefore \"item\" is | |
8811 initially searched for starting from the end of the match of \"anchor\", and | |
8812 searching for subsequent instance of \"anchor\" resumes from where searching | |
8813 for \"item\" concluded.) | |
8814 | |
8815 Note that the MATCH-ANCHORED feature is experimental; in the future, we may | |
8816 replace it with other ways of providing this functionality. | |
8817 | |
8818 These regular expressions should not match text which spans lines. While | |
8819 \\[font-lock-fontify-buffer] handles multi-line patterns correctly, updating | |
8820 when you edit the buffer does not, since it considers text one line at a time. | |
8821 | |
8822 Be very careful composing regexps for this list; | |
8823 the wrong pattern can dramatically slow things down!") | |
8824 | |
8825 (make-variable-buffer-local 'font-lock-keywords) | |
8826 | |
8827 (defvar font-lock-mode nil) | |
8828 | |
8829 (defvar font-lock-mode-hook nil "\ | |
8830 Function or functions to run on entry to font-lock-mode.") | |
8831 | |
8832 (autoload 'font-lock-mode "font-lock" "\ | |
8833 Toggle Font Lock Mode. | |
8834 With arg, turn font-lock mode on if and only if arg is positive. | |
8835 | |
8836 When Font Lock mode is enabled, text is fontified as you type it: | |
8837 | |
8838 - Comments are displayed in `font-lock-comment-face'; | |
8839 - Strings are displayed in `font-lock-string-face'; | |
8840 - Documentation strings (in Lisp-like languages) are displayed in | |
8841 `font-lock-doc-string-face'; | |
8842 - Language keywords (\"reserved words\") are displayed in | |
8843 `font-lock-keyword-face'; | |
8844 - Function names in their defining form are displayed in | |
8845 `font-lock-function-name-face'; | |
8846 - Variable names in their defining form are displayed in | |
8847 `font-lock-variable-name-face'; | |
8848 - Type names are displayed in `font-lock-type-face'; | |
8849 - References appearing in help files and the like are displayed | |
8850 in `font-lock-reference-face'; | |
8851 - Preprocessor declarations are displayed in | |
8852 `font-lock-preprocessor-face'; | |
8853 | |
8854 and | |
8855 | |
8856 - Certain other expressions are displayed in other faces according | |
8857 to the value of the variable `font-lock-keywords'. | |
8858 | |
8859 Where modes support different levels of fontification, you can use the variable | |
8860 `font-lock-maximum-decoration' to specify which level you generally prefer. | |
8861 When you turn Font Lock mode on/off the buffer is fontified/defontified, though | |
8862 fontification occurs only if the buffer is less than `font-lock-maximum-size'. | |
8863 To fontify a buffer without turning on Font Lock mode, and regardless of buffer | |
8864 size, you can use \\[font-lock-fontify-buffer]. | |
8865 | |
8866 See the variable `font-lock-keywords' for customization." t nil) | |
8867 | |
8868 (autoload 'turn-on-font-lock "font-lock" "\ | |
8869 Unconditionally turn on Font Lock mode." nil nil) | |
8870 | |
8871 (autoload 'turn-off-font-lock "font-lock" "\ | |
8872 Unconditionally turn off Font Lock mode." nil nil) | |
8873 | |
8874 (autoload 'font-lock-fontify-buffer "font-lock" "\ | |
8875 Fontify the current buffer the way `font-lock-mode' would. | |
8876 See `font-lock-mode' for details. | |
8877 | |
8878 This can take a while for large buffers." t nil) | |
8879 | |
8880 (add-minor-mode 'font-lock-mode " Font") | |
8881 | |
8882 ;;;*** | |
8883 | |
8884 ;;;*** | |
8885 | |
8886 ;;;### (autoloads nil "fontl-hooks" "packages/fontl-hooks.el" (12988 56251)) | |
8887 ;;; Generated autoloads from packages/fontl-hooks.el | |
8888 | |
8889 ;;;*** | |
8890 | |
8891 ;;;### (autoloads nil "func-menu" "packages/func-menu.el" (12984 29546)) | |
8892 ;;; Generated autoloads from packages/func-menu.el | |
8893 | |
8894 ;;;### (autoloads (sc-mode) "generic-sc" "packages/generic-sc.el" (12984 29545)) | |
8895 ;;; Generated autoloads from packages/generic-sc.el | |
8896 | |
8897 (autoload 'sc-mode "generic-sc" "\ | |
8898 Toggle sc-mode. | |
8899 SYSTEM can be sccs, rcs or cvs. | |
8900 Cvs requires the pcl-cvs package. | |
8901 | |
8902 The following commands are available | |
8903 \\[sc-next-operation] perform next logical source control operation on current file | |
8904 \\[sc-show-changes] compare the version being edited with an older one | |
8905 \\[sc-version-diff-file] compare two older versions of a file | |
8906 \\[sc-show-history] display change history of current file | |
8907 \\[sc-visit-previous-revision] display an older revision of current file | |
8908 \\[sc-revert-file] revert buffer to last checked-in version | |
8909 \\[sc-list-all-locked-files] show all files locked in current directory | |
8910 \\[sc-list-locked-files] show all files locked by you in current directory | |
8911 \\[sc-list-registered-files] show all files under source control in current directory | |
8912 \\[sc-update-directory] get fresh copies of files checked-in by others in current directory | |
8913 \\[sc-rename-file] rename the current file and its source control file | |
8914 | |
8915 | |
8916 While you are entering a change log message for a check in, sc-log-entry-mode | |
8917 will be in effect. | |
8918 | |
8919 Global user options: | |
8920 sc-diff-command A list consisting of the command and flags | |
8921 to be used for generating context diffs. | |
8922 sc-mode-expert suppresses some conformation prompts, | |
8923 notably for delta aborts and file saves. | |
8924 sc-max-log-size specifies the maximum allowable size | |
8925 of a log message plus one. | |
8926 | |
8927 | |
8928 When using SCCS you have additional commands and options | |
8929 | |
8930 \\[sccs-insert-headers] insert source control headers in current file | |
8931 | |
8932 When you generate headers into a buffer using \\[sccs-insert-headers], | |
8933 the value of sc-insert-headers-hook is called before insertion. If the | |
8934 file is recognized a C or Lisp source, sc-insert-c-header-hook or | |
8935 sc-insert-lisp-header-hook is called after insertion respectively. | |
8936 | |
8937 sccs-headers-wanted which %-keywords to insert when adding | |
8938 headers with C-c h | |
8939 sccs-insert-static if non-nil, keywords inserted in C files | |
8940 get stuffed in a static string area so that | |
8941 what(1) can see them in the compiled object code. | |
8942 | |
8943 When using CVS you have additional commands | |
8944 | |
8945 \\[sc-cvs-update-directory] update the current directory using pcl-cvs | |
8946 \\[sc-cvs-file-status] show the CVS status of current file | |
8947 " t nil) | |
8948 | |
8949 ;;;*** | |
8950 | |
8951 ;;;### (autoloads (gnuserv-start) "gnuserv" "packages/gnuserv.el" (12984 29548)) | |
8952 ;;; Generated autoloads from packages/gnuserv.el | |
8953 | |
8954 (autoload 'gnuserv-start "gnuserv" "\ | |
8955 Allow this Emacs process to be a server for client processes. | |
8956 This starts a server communications subprocess through which | |
8957 client \"editors\" (gnuclient and gnudoit) can send editing commands to | |
8958 this Emacs job. See the gnuserv(1) manual page for more details. | |
8959 | |
8960 Prefix arg means just kill any existing server communications subprocess." t nil) | |
8961 | |
8962 ;;;*** | |
8963 | |
8964 ;;;### (autoloads (gopher-atpoint gopher) "gopher" "packages/gopher.el" (12984 29547)) | |
8965 ;;; Generated autoloads from packages/gopher.el | |
8966 | |
8967 (autoload 'gopher "gopher" "\ | |
8968 Start a gopher session. With C-u, prompt for a gopher server." t nil) | |
8969 | |
8970 (autoload 'gopher-atpoint "gopher" "\ | |
8971 Try to interpret the text around point as a gopher bookmark, and dispatch | |
8972 to that object." t nil) | |
8973 | |
8974 ;;;*** | |
8975 | |
8976 ;;;### (autoloads (hexlify-buffer hexl-find-file hexl-mode) "hexl" "packages/hexl.el" (12984 30023)) | |
8977 ;;; Generated autoloads from packages/hexl.el | |
8978 | |
8979 (autoload 'hexl-mode "hexl" "\ | |
8980 \\<hexl-mode-map> | |
8981 A major mode for editing binary files in hex dump format. | |
8982 | |
8983 This function automatically converts a buffer into the hexl format | |
8984 using the function `hexlify-buffer'. | |
8985 | |
8986 Each line in the buffer has an \"address\" (displayed in hexadecimal) | |
8987 representing the offset into the file that the characters on this line | |
8988 are at and 16 characters from the file (displayed as hexadecimal | |
8989 values grouped every 16 bits) and as their ASCII values. | |
8990 | |
8991 If any of the characters (displayed as ASCII characters) are | |
8992 unprintable (control or meta characters) they will be replaced as | |
8993 periods. | |
8994 | |
8995 If `hexl-mode' is invoked with an argument the buffer is assumed to be | |
8996 in hexl format. | |
8997 | |
8998 A sample format: | |
8999 | |
9000 HEX ADDR: 0001 0203 0405 0607 0809 0a0b 0c0d 0e0f ASCII-TEXT | |
9001 -------- ---- ---- ---- ---- ---- ---- ---- ---- ---------------- | |
9002 00000000: 5468 6973 2069 7320 6865 786c 2d6d 6f64 This is hexl-mod | |
9003 00000010: 652e 2020 4561 6368 206c 696e 6520 7265 e. Each line re | |
9004 00000020: 7072 6573 656e 7473 2031 3620 6279 7465 presents 16 byte | |
9005 00000030: 7320 6173 2068 6578 6164 6563 696d 616c s as hexadecimal | |
9006 00000040: 2041 5343 4949 0a61 6e64 2070 7269 6e74 ASCII.and print | |
9007 00000050: 6162 6c65 2041 5343 4949 2063 6861 7261 able ASCII chara | |
9008 00000060: 6374 6572 732e 2020 416e 7920 636f 6e74 cters. Any cont | |
9009 00000070: 726f 6c20 6f72 206e 6f6e 2d41 5343 4949 rol or non-ASCII | |
9010 00000080: 2063 6861 7261 6374 6572 730a 6172 6520 characters.are | |
9011 00000090: 6469 7370 6c61 7965 6420 6173 2070 6572 displayed as per | |
9012 000000a0: 696f 6473 2069 6e20 7468 6520 7072 696e iods in the prin | |
9013 000000b0: 7461 626c 6520 6368 6172 6163 7465 7220 table character | |
9014 000000c0: 7265 6769 6f6e 2e0a region.. | |
9015 | |
9016 Movement is as simple as movement in a normal emacs text buffer. Most | |
9017 cursor movement bindings are the same (ie. Use \\[hexl-backward-char], \\[hexl-forward-char], \\[hexl-next-line], and \\[hexl-previous-line] | |
9018 to move the cursor left, right, down, and up). | |
9019 | |
9020 Advanced cursor movement commands (ala \\[hexl-beginning-of-line], \\[hexl-end-of-line], \\[hexl-beginning-of-buffer], and \\[hexl-end-of-buffer]) are | |
9021 also supported. | |
9022 | |
9023 There are several ways to change text in hexl mode: | |
9024 | |
9025 ASCII characters (character between space (0x20) and tilde (0x7E)) are | |
9026 bound to self-insert so you can simply type the character and it will | |
9027 insert itself (actually overstrike) into the buffer. | |
9028 | |
9029 \\[hexl-quoted-insert] followed by another keystroke allows you to insert the key even if | |
9030 it isn't bound to self-insert. An octal number can be supplied in place | |
9031 of another key to insert the octal number's ASCII representation. | |
9032 | |
9033 \\[hexl-insert-hex-char] will insert a given hexadecimal value (if it is between 0 and 0xFF) | |
9034 into the buffer at the current point. | |
9035 | |
9036 \\[hexl-insert-octal-char] will insert a given octal value (if it is between 0 and 0377) | |
9037 into the buffer at the current point. | |
9038 | |
9039 \\[hexl-insert-decimal-char] will insert a given decimal value (if it is between 0 and 255) | |
9040 into the buffer at the current point. | |
9041 | |
9042 \\[hexl-mode-exit] will exit hexl-mode. | |
9043 | |
9044 Note: saving the file with any of the usual Emacs commands | |
9045 will actually convert it back to binary format while saving. | |
9046 | |
9047 You can use \\[hexl-find-file] to visit a file in hexl-mode. | |
9048 | |
9049 \\[describe-bindings] for advanced commands." t nil) | |
9050 | |
9051 (autoload 'hexl-find-file "hexl" "\ | |
9052 Edit file FILENAME in hexl-mode. | |
9053 Switch to a buffer visiting file FILENAME, creating one in none exists." t nil) | |
9054 | |
9055 (autoload 'hexlify-buffer "hexl" "\ | |
9056 Convert a binary buffer to hexl format. | |
9057 This discards the buffer's undo information." t nil) | |
9058 | |
9059 ;;;*** | |
9060 | |
9061 ;;;### (autoloads (hypropos-popup-menu hypropos-set-variable hyper-describe-function hyper-describe-variable hyper-apropos) "hyper-apropos" "packages/hyper-apropos.el" (12984 29549)) | |
9062 ;;; Generated autoloads from packages/hyper-apropos.el | |
9063 | |
9064 (defvar hypropos-show-brief-docs t "\ | |
9065 *If non-nil, `hyper-apropos' will display some documentation in the | |
9066 \"*Hyper Apropos*\" buffer. Setting this to nil will speed up searches.") | |
9067 | |
9068 (autoload 'hyper-apropos "hyper-apropos" "\ | |
9069 Display lists of functions and variables matching REGEXP | |
9070 in buffer \"*Hyper Apropos*\". If optional prefix arg is given, then the value | |
9071 of `hypropos-programming-apropos' is toggled for this search. | |
9072 See also `hyper-apropos-mode'." t nil) | |
9073 | |
9074 (autoload 'hyper-describe-variable "hyper-apropos" "\ | |
9075 Hypertext drop-in replacement for `describe-variable'. | |
9076 See also `hyper-apropos' and `hyper-describe-function'." t nil) | |
9077 | |
9078 (autoload 'hyper-describe-function "hyper-apropos" "\ | |
9079 Hypertext replacement for `describe-function'. Unlike `describe-function' | |
9080 in that the symbol under the cursor is the default if it is a function. | |
9081 See also `hyper-apropos' and `hyper-describe-variable'." t nil) | |
9082 | |
9083 (autoload 'hypropos-set-variable "hyper-apropos" "\ | |
9084 Interactively set the variable on the current line." t nil) | |
9085 | |
9086 (autoload 'hypropos-popup-menu "hyper-apropos" nil t nil) | |
9087 | |
9088 ;;;*** | |
9089 | |
9090 ;;;### (autoloads (icomplete-minibuffer-setup icomplete-mode) "icomplete" "packages/icomplete.el" (12989 49060)) | |
9091 ;;; Generated autoloads from packages/icomplete.el | |
9092 | |
9093 (autoload 'icomplete-mode "icomplete" "\ | |
9094 Activate incremental minibuffer completion for this emacs session, | |
9095 or deactivate with negative prefix arg." t nil) | |
9096 | |
9097 (autoload 'icomplete-minibuffer-setup "icomplete" "\ | |
9098 Run in minibuffer on activation to establish incremental completion. | |
9099 Usually run by inclusion in `minibuffer-setup-hook'." nil nil) | |
9100 | |
9101 ;;;*** | |
9102 | |
9103 ;;;### (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" (12984 29545)) | |
9104 ;;; Generated autoloads from packages/info.el | |
9105 | |
9106 (autoload 'info "info" "\ | |
9107 Enter Info, the documentation browser. | |
9108 Optional argument FILE specifies the file to examine; | |
9109 the default is the top-level directory of Info. | |
9110 | |
9111 In interactive use, a prefix argument directs this command | |
9112 to read a file name from the minibuffer." t nil) | |
9113 | |
9114 (autoload 'Info-query "info" "\ | |
9115 Enter Info, the documentation browser. Prompt for name of Info file." t nil) | |
9116 | |
9117 (autoload 'Info-goto-node "info" "\ | |
9118 Go to info node named NAME. Give just NODENAME or (FILENAME)NODENAME. | |
9119 Actually, the following interpretations of NAME are tried in order: | |
9120 (FILENAME)NODENAME | |
9121 (FILENAME) (using Top node) | |
9122 NODENAME (in current file) | |
9123 TAGNAME (see below) | |
9124 FILENAME (using Top node) | |
9125 where TAGNAME is a string that appears in quotes: \"TAGNAME\", in an | |
9126 annotation for any node of any file. (See `a' and `x' commands.)" t nil) | |
9127 | |
9128 (autoload 'Info-visit-file "info" "\ | |
9129 Directly visit an info file." t nil) | |
9130 | |
9131 (autoload 'Info-search "info" "\ | |
9132 Search for REGEXP, starting from point, and select node it's found in." t nil) | |
9133 | |
9134 (autoload 'Info-emacs-command "info" "\ | |
9135 Look up an Emacs command in the Emacs manual in the Info system. | |
9136 This command is designed to be used whether you are already in Info or not." t nil) | |
9137 | |
9138 (autoload 'Info-goto-emacs-command-node "info" "\ | |
9139 Look up an Emacs command in the Emacs manual in the Info system. | |
9140 This command is designed to be used whether you are already in Info or not." t nil) | |
9141 | |
9142 (autoload 'Info-goto-emacs-key-command-node "info" "\ | |
9143 Look up an Emacs key sequence in the Emacs manual in the Info system. | |
9144 This command is designed to be used whether you are already in Info or not." t nil) | |
9145 | |
9146 (autoload 'Info-emacs-key "info" "\ | |
9147 Look up an Emacs key sequence in the Emacs manual in the Info system. | |
9148 This command is designed to be used whether you are already in Info or not." t nil) | |
9149 | |
9150 (autoload 'Info-elisp-ref "info" "\ | |
9151 Look up an Emacs Lisp function in the Elisp manual in the Info system. | |
9152 This command is designed to be used whether you are already in Info or not." t nil) | |
9153 | |
9154 ;;;*** | |
9155 | |
9156 ;;;### (autoloads (batch-info-validate Info-validate Info-split Info-tagify) "informat" "packages/informat.el" (12984 29547)) | |
9157 ;;; Generated autoloads from packages/informat.el | |
9158 | |
9159 (autoload 'Info-tagify "informat" "\ | |
9160 Create or update Info-file tag table in current buffer." t nil) | |
9161 | |
9162 (autoload 'Info-split "informat" "\ | |
9163 Split an info file into an indirect file plus bounded-size subfiles. | |
9164 Each subfile will be up to 50,000 characters plus one node. | |
9165 | |
9166 To use this command, first visit a large Info file that has a tag | |
9167 table. The buffer is modified into a (small) indirect info file which | |
9168 should be saved in place of the original visited file. | |
9169 | |
9170 The subfiles are written in the same directory the original file is | |
9171 in, with names generated by appending `-' and a number to the original | |
9172 file name. The indirect file still functions as an Info file, but it | |
9173 contains just the tag table and a directory of subfiles." t nil) | |
9174 | |
9175 (autoload 'Info-validate "informat" "\ | |
9176 Check current buffer for validity as an Info file. | |
9177 Check that every node pointer points to an existing node." t nil) | |
9178 | |
9179 (autoload 'batch-info-validate "informat" "\ | |
9180 Runs `Info-validate' on the files remaining on the command line. | |
9181 Must be used only with -batch, and kills Emacs on completion. | |
9182 Each file will be processed even if an error occurred previously. | |
9183 For example, invoke \"emacs -batch -f batch-info-validate $info/ ~/*.info\"" nil nil) | |
9184 | |
9185 ;;;*** | |
9186 | |
9187 ;;;### (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" (12984 29547)) | |
9188 ;;; Generated autoloads from packages/ispell.el | |
9189 | |
9190 (defvar ispell-personal-dictionary nil "\ | |
9191 *File name of your personal spelling dictionary, or nil. | |
9192 If nil, the default personal dictionary, \"~/.ispell_DICTNAME\" is used, | |
9193 where DICTNAME is the name of your default dictionary.") | |
9194 | |
9195 (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,ADV\dv_|(B]" "[^a-zA-Z,ADV\dv_|(B]" "[']" t ("-C" "-d" "deutsch") "~latin1") ("nederlands" "[A-Za-z,A@(B-,AEGH(B-,AOR(B-,AVY(B-,A\`(B-,Aegh(B-,Aoqr(B-,Avy(B-,A|(B]" "[^A-Za-z,A@(B-,AEGH(B-,AOR(B-,AVY(B-,A\`(B-,Aegh(B-,Aoqr(B-,Avy(B-,A|(B]" "[']" t ("-C") nil) ("nederlands8" "[A-Za-z,A@(B-,AEGH(B-,AOR(B-,AVY(B-,A\`(B-,Aegh(B-,Aoqr(B-,Avy(B-,A|(B]" "[^A-Za-z,A@(B-,AEGH(B-,AOR(B-,AVY(B-,A\`(B-,Aegh(B-,Aoqr(B-,Avy(B-,A|(B]" "[']" t ("-C") nil))) | |
9196 | |
9197 (defvar ispell-dictionary-alist-2 '(("svenska" "[A-Za-z}{|\\133\\135\\\\]" "[^A-Za-z}{|\\133\\135\\\\]" "[']" nil ("-C") nil) ("svenska8" "[A-Za-z,AedvEDv(B]" "[^A-Za-z,AedvEDv(B]" "[']" nil ("-C" "-d" "svenska") "~list") ("francais7" "[A-Za-z]" "[^A-Za-z]" "[`'^---]" t nil nil) ("francais" "[A-Za-z,A@BFGHIJKNOTY[\`bghijknoty{|(B]" "[^A-Za-z,A@BFGHIJKNOTY[\`bghijknoty{|(B]" "[---']" t nil "~list") ("francais-tex" "[A-Za-z,A@BFGHIJKNOTY[\`bghijknoty{|(B\\]" "[^A-Za-z,A@BFGHIJKNOTY[\`bghijknoty{|(B\\]" "[---'^`\"]" t nil "~tex") ("dansk" "[A-Z,AFXE(Ba-z,Afxe(B]" "[^A-Z,AFXE(Ba-z,Afxe(B]" "" nil ("-C") nil))) | |
9198 | |
9199 (defvar ispell-dictionary-alist (append ispell-dictionary-alist-1 ispell-dictionary-alist-2) "\ | |
9200 An alist of dictionaries and their associated parameters. | |
9201 | |
9202 Each element of this list is also a list: | |
9203 | |
9204 \(DICTIONARY-NAME CASECHARS NOT-CASECHARS OTHERCHARS MANY-OTHERCHARS-P | |
9205 ISPELL-ARGS EXTENDED-CHARACTER-MODE) | |
9206 | |
9207 DICTIONARY-NAME is a possible value of variable `ispell-dictionary', nil | |
9208 means the default dictionary. | |
9209 | |
9210 CASECHARS is a regular expression of valid characters that comprise a | |
9211 word. | |
9212 | |
9213 NOT-CASECHARS is the opposite regexp of CASECHARS. | |
9214 | |
9215 OTHERCHARS is a regular expression of other characters that are valid | |
9216 in word constructs. Otherchars cannot be adjacent to each other in a | |
9217 word, nor can they begin or end a word. This implies we can't check | |
9218 \"Stevens'\" as a correct possessive and other correct formations. | |
9219 | |
9220 Hint: regexp syntax requires the hyphen to be declared first here. | |
9221 | |
9222 MANY-OTHERCHARS-P is non-nil if many otherchars are to be allowed in a | |
9223 word instead of only one. | |
9224 | |
9225 ISPELL-ARGS is a list of additional arguments passed to the ispell | |
9226 subprocess. | |
9227 | |
9228 EXTENDED-CHARACTER-MODE should be used when dictionaries are used which | |
9229 have been configured in an Ispell affix file. (For example, umlauts | |
9230 can be encoded as \\\"a, a\\\", \"a, ...) Defaults are ~tex and ~nroff | |
9231 in English. This has the same effect as the command-line `-T' option. | |
9232 The buffer Major Mode controls Ispell's parsing in tex or nroff mode, | |
9233 but the dictionary can control the extended character mode. | |
9234 Both defaults can be overruled in a buffer-local fashion. See | |
9235 `ispell-parsing-keyword' for details on this. | |
9236 | |
9237 Note that the CASECHARS and OTHERCHARS slots of the alist should | |
9238 contain the same character set as casechars and otherchars in the | |
9239 language.aff file (e.g., english.aff).") | |
9240 | |
9241 (defvar ispell-menu-map nil "\ | |
9242 Key map for ispell menu") | |
9243 | |
9244 (defvar ispell-menu-xemacs nil "\ | |
9245 Spelling menu for XEmacs.") | |
9246 | |
9247 (defconst ispell-menu-map-needed (and (not ispell-menu-map) (string-lessp "19" emacs-version) (not (string-match "XEmacs" emacs-version)))) | |
9248 | |
9249 (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)))))))) | |
9250 | |
9251 (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)))) | |
9252 | |
9253 (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)))) | |
9254 | |
9255 (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)))) | |
9256 | |
9257 (defvar ispell-local-pdict ispell-personal-dictionary "\ | |
9258 A buffer local variable containing the current personal dictionary. | |
9259 If non-nil, the value must be a string, which is a file name. | |
9260 | |
9261 If you specify a personal dictionary for the current buffer which is | |
9262 different from the current personal dictionary, the effect is similar | |
9263 to calling \\[ispell-change-dictionary]. This variable is automatically | |
9264 set when defined in the file with either `ispell-pdict-keyword' or the | |
9265 local variable syntax.") | |
9266 | |
9267 (define-key global-map "\M-A" 'ispell-word) | |
9268 | |
9269 (autoload 'ispell-word "ispell" "\ | |
9270 Check spelling of word under or before the cursor. | |
9271 If the word is not found in dictionary, display possible corrections | |
9272 in a window allowing you to choose one. | |
9273 | |
9274 With a prefix argument (or if CONTINUE is non-nil), | |
9275 resume interrupted spell-checking of a buffer or region. | |
9276 | |
9277 If optional argument FOLLOWING is non-nil or if `ispell-following-word' | |
9278 is non-nil when called interactively, then the following word | |
9279 \(rather than preceding) is checked when the cursor is not over a word. | |
9280 When the optional argument QUIETLY is non-nil or `ispell-quietly' is non-nil | |
9281 when called interactively, non-corrective messages are suppressed. | |
9282 | |
9283 Word syntax described by `ispell-dictionary-alist' (which see). | |
9284 | |
9285 This will check or reload the dictionary. Use \\[ispell-change-dictionary] | |
9286 or \\[ispell-region] to update the Ispell process." t nil) | |
9287 | |
9288 (autoload 'ispell-help "ispell" "\ | |
9289 Display a list of the options available when a misspelling is encountered. | |
9290 | |
9291 Selections are: | |
9292 | |
9293 DIGIT: Replace the word with a digit offered in the *Choices* buffer. | |
9294 SPC: Accept word this time. | |
9295 `i': Accept word and insert into private dictionary. | |
9296 `a': Accept word for this session. | |
9297 `A': Accept word and place in `buffer-local dictionary'. | |
9298 `r': Replace word with typed-in value. Rechecked. | |
9299 `R': Replace word with typed-in value. Query-replaced in buffer. Rechecked. | |
9300 `?': Show these commands. | |
9301 `x': Exit spelling buffer. Move cursor to original point. | |
9302 `X': Exit spelling buffer. Leaves cursor at the current point, and permits | |
9303 the aborted check to be completed later. | |
9304 `q': Quit spelling session (Kills ispell process). | |
9305 `l': Look up typed-in replacement in alternate dictionary. Wildcards okay. | |
9306 `u': Like `i', but the word is lower-cased first. | |
9307 `m': Like `i', but allows one to include dictionary completion information. | |
9308 `C-l': redraws screen | |
9309 `C-r': recursive edit | |
9310 `C-z': suspend emacs or iconify frame" nil nil) | |
9311 | |
9312 (autoload 'ispell-kill-ispell "ispell" "\ | |
9313 Kill current Ispell process (so that you may start a fresh one). | |
9314 With NO-ERROR, just return non-nil if there was no Ispell running." t nil) | |
9315 | |
9316 (autoload 'ispell-change-dictionary "ispell" "\ | |
9317 Change `ispell-dictionary' (q.v.) and kill old Ispell process. | |
9318 A new one will be started as soon as necessary. | |
9319 | |
9320 By just answering RET you can find out what the current dictionary is. | |
9321 | |
9322 With prefix argument, set the default directory." t nil) | |
9323 | |
9324 (autoload 'ispell-region "ispell" "\ | |
9325 Interactively check a region for spelling errors." t nil) | |
9326 | |
9327 (autoload 'ispell-buffer "ispell" "\ | |
9328 Check the current buffer for spelling errors interactively." t nil) | |
9329 | |
9330 (autoload 'ispell-continue "ispell" nil t nil) | |
9331 | |
9332 (autoload 'ispell-complete-word "ispell" "\ | |
9333 Look up word before or under point in dictionary (see lookup-words command) | |
9334 and try to complete it. If optional INTERIOR-FRAG is non-nil then the word | |
9335 may be a character sequence inside of a word. | |
9336 | |
9337 Standard ispell choices are then available." t nil) | |
9338 | |
9339 (autoload 'ispell-complete-word-interior-frag "ispell" "\ | |
9340 Completes word matching character sequence inside a word." t nil) | |
9341 | |
9342 (autoload 'ispell-minor-mode "ispell" "\ | |
9343 Toggle Ispell minor mode. | |
9344 With prefix arg, turn Ispell minor mode on iff arg is positive. | |
9345 | |
9346 In Ispell minor mode, pressing SPC or RET | |
9347 warns you if the previous word is incorrectly spelled." t nil) | |
9348 | |
9349 (autoload 'ispell-message "ispell" "\ | |
9350 Check the spelling of a mail message or news post. | |
9351 Don't check spelling of message headers except the Subject field. | |
9352 Don't check included messages. | |
9353 | |
9354 To abort spell checking of a message region and send the message anyway, | |
9355 use the `x' or `q' command. (Any subsequent regions will be checked.) | |
9356 The `X' command aborts the message send so that you can edit the buffer. | |
9357 | |
9358 To spell-check whenever a message is sent, include the appropriate lines | |
9359 in your .emacs file: | |
9360 (add-hook 'message-send-hook 'ispell-message) | |
9361 (add-hook 'mail-send-hook 'ispell-message) | |
9362 (add-hook 'mh-before-send-letter-hook 'ispell-message) | |
9363 | |
9364 You can bind this to the key C-c i in GNUS or mail by adding to | |
9365 `news-reply-mode-hook' or `mail-mode-hook' the following lambda expression: | |
9366 (function (lambda () (local-set-key \"\\C-ci\" 'ispell-message)))" t nil) | |
9367 | |
9368 ;;;*** | |
9369 | |
9370 ;;;### (autoloads (jka-compr-install toggle-auto-compression jka-compr-load) "jka-compr" "packages/jka-compr.el" (12984 29550)) | |
9371 ;;; Generated autoloads from packages/jka-compr.el | |
9372 | |
9373 (autoload 'jka-compr-load "jka-compr" "\ | |
9374 Documented as original." nil nil) | |
9375 | |
9376 (autoload 'toggle-auto-compression "jka-compr" "\ | |
9377 Toggle automatic file compression and uncompression. | |
9378 With prefix argument ARG, turn auto compression on if positive, else off. | |
9379 Returns the new status of auto compression (non-nil means on). | |
9380 If the argument MESSAGE is non-nil, it means to print a message | |
9381 saying whether the mode is now on or off." t nil) | |
9382 | |
9383 (autoload 'jka-compr-install "jka-compr" "\ | |
9384 Install jka-compr. | |
9385 This adds entries to `file-name-handler-alist' and `auto-mode-alist' | |
9386 and `inhibit-first-line-modes-suffixes'." nil nil) | |
9387 | |
9388 ;;;*** | |
9389 | |
9390 ;;;### (autoloads (turn-on-lazy-lock lazy-lock-mode) "lazy-lock" "packages/lazy-lock.el" (12984 29550)) | |
9391 ;;; Generated autoloads from packages/lazy-lock.el | |
9392 | |
9393 (defvar lazy-lock-mode nil) | |
9394 | |
9395 (autoload 'lazy-lock-mode "lazy-lock" "\ | |
9396 Toggle Lazy Lock mode. | |
9397 With arg, turn Lazy Lock mode on if and only if arg is positive and the buffer | |
9398 is at least `lazy-lock-minimum-size' characters long. | |
9399 | |
9400 When Lazy Lock mode is enabled, fontification is demand-driven and stealthy: | |
9401 | |
9402 - Fontification occurs in visible parts of buffers when necessary. | |
9403 Occurs if there is no input after pausing for `lazy-lock-continuity-time'. | |
9404 | |
9405 - Fontification occurs in invisible parts when Emacs has been idle. | |
9406 Occurs if there is no input after pausing for `lazy-lock-stealth-time'. | |
9407 | |
9408 If `lazy-lock-hide-invisible' is non-nil, text is not displayed until it is | |
9409 fontified, otherwise it is displayed in `lazy-lock-invisible-foreground'. | |
9410 | |
9411 See also variables `lazy-lock-walk-windows' and `lazy-lock-ignore-commands' for | |
9412 window (scroll) fontification, and `lazy-lock-stealth-lines', | |
9413 `lazy-lock-stealth-nice' and `lazy-lock-stealth-verbose' for stealth | |
9414 fontification. | |
9415 | |
9416 Use \\[lazy-lock-submit-bug-report] to send bug reports or feedback." t nil) | |
9417 | |
9418 (autoload 'turn-on-lazy-lock "lazy-lock" "\ | |
9419 Unconditionally turn on Lazy Lock mode." nil nil) | |
9420 | |
9421 (add-minor-mode 'lazy-lock-mode " Lazy") | |
9422 | |
9423 ;;;*** | |
9424 | |
9425 ;;;### (autoloads (ledit-from-lisp-mode ledit-mode) "ledit" "packages/ledit.el" (12984 29547)) | |
9426 ;;; Generated autoloads from packages/ledit.el | |
9427 | |
9428 (defconst ledit-save-files t "\ | |
9429 *Non-nil means Ledit should save files before transferring to Lisp.") | |
9430 | |
9431 (defconst ledit-go-to-lisp-string "%?lisp" "\ | |
9432 *Shell commands to execute to resume Lisp job.") | |
9433 | |
9434 (defconst ledit-go-to-liszt-string "%?liszt" "\ | |
9435 *Shell commands to execute to resume Lisp compiler job.") | |
9436 | |
9437 (autoload 'ledit-mode "ledit" "\ | |
9438 \\<ledit-mode-map>Major mode for editing text and stuffing it to a Lisp job. | |
9439 Like Lisp mode, plus these special commands: | |
9440 \\[ledit-save-defun] -- record defun at or after point | |
9441 for later transmission to Lisp job. | |
9442 \\[ledit-save-region] -- record region for later transmission to Lisp job. | |
9443 \\[ledit-go-to-lisp] -- transfer to Lisp job and transmit saved text. | |
9444 \\[ledit-go-to-liszt] -- transfer to Liszt (Lisp compiler) job | |
9445 and transmit saved text. | |
9446 \\{ledit-mode-map} | |
9447 To make Lisp mode automatically change to Ledit mode, | |
9448 do (setq lisp-mode-hook 'ledit-from-lisp-mode)" t nil) | |
9449 | |
9450 (autoload 'ledit-from-lisp-mode "ledit" nil nil nil) | |
9451 | |
9452 ;;;*** | |
9453 | |
9454 ;;;*** | |
9455 | |
9456 ;;;*** | |
9457 | |
9458 ;;;### (autoloads nil "lispm-fonts" "packages/lispm-fonts.el" (12984 29546)) | |
9459 ;;; Generated autoloads from packages/lispm-fonts.el | |
9460 | |
9461 ;;;### (autoloads (print-region lpr-region print-buffer lpr-buffer) "lpr" "packages/lpr.el" (12988 19720)) | |
9462 ;;; Generated autoloads from packages/lpr.el | |
9463 | |
9464 (defvar lpr-switches nil "\ | |
9465 *List of strings to pass as extra options for the printer program. | |
9466 See `lpr-command'.") | |
9467 | |
9468 (defvar lpr-command (if (memq system-type '(usg-unix-v dgux hpux irix)) "lp" "lpr") "\ | |
9469 *Name of program for printing a file.") | |
9470 | |
9471 (autoload 'lpr-buffer "lpr" "\ | |
9472 Print buffer contents as with Unix command `lpr'. | |
9473 `lpr-switches' is a list of extra switches (strings) to pass to lpr." t nil) | |
9474 | |
9475 (autoload 'print-buffer "lpr" "\ | |
9476 Print buffer contents as with Unix command `lpr -p'. | |
9477 `lpr-switches' is a list of extra switches (strings) to pass to lpr." t nil) | |
9478 | |
9479 (autoload 'lpr-region "lpr" "\ | |
9480 Print region contents as with Unix command `lpr'. | |
9481 `lpr-switches' is a list of extra switches (strings) to pass to lpr." t nil) | |
9482 | |
9483 (autoload 'print-region "lpr" "\ | |
9484 Print region contents as with Unix command `lpr -p'. | |
9485 `lpr-switches' is a list of extra switches (strings) to pass to lpr." t nil) | |
9486 | |
9487 ;;;*** | |
9488 | |
9489 ;;;*** | |
9490 | |
9491 ;;;*** | |
9492 | |
9493 ;;;### (autoloads nil "makeinfo" "packages/makeinfo.el" (12984 29547)) | |
9494 ;;; Generated autoloads from packages/makeinfo.el | |
9495 | |
9496 ;;;*** | |
9497 | |
9498 ;;;### (autoloads (make-command-summary) "makesum" "packages/makesum.el" (12984 29546)) | |
9499 ;;; Generated autoloads from packages/makesum.el | |
9500 | |
9501 (autoload 'make-command-summary "makesum" "\ | |
9502 Make a summary of current key bindings in the buffer *Summary*. | |
9503 Previous contents of that buffer are killed first." t nil) | |
9504 | |
9505 ;;;*** | |
9506 | |
9507 ;;;*** | |
9508 | |
9509 ;;;### (autoloads nil "man-xref" "packages/man-xref.el" (12984 30034)) | |
9510 ;;; Generated autoloads from packages/man-xref.el | |
9511 | |
9512 ;;;### (autoloads (manual-entry) "man" "packages/man.el" (12995 2358)) | |
9513 ;;; Generated autoloads from packages/man.el | |
9514 | |
9515 (autoload 'manual-entry "man" "\ | |
9516 Display the Unix manual entry (or entries) for TOPIC. | |
9517 If prefix arg is given, modify the search according to the value: | |
9518 2 = complement default exact matching of the TOPIC name; | |
9519 exact matching default is specified by `Manual-match-topic-exactly' | |
9520 3 = force a search of the unformatted man directories | |
9521 4 = both 2 and 3 | |
9522 The manual entries are searched according to the variable | |
9523 Manual-directory-list, which should be a list of directories. If | |
9524 Manual-directory-list is nil, \\[Manual-directory-list-init] is | |
9525 invoked to create this list from the MANPATH environment variable. | |
9526 See the variable Manual-topic-buffer which controls how the buffer | |
9527 is named. See also the variables Manual-match-topic-exactly, | |
9528 Manual-query-multiple-pages, and Manual-buffer-view-mode." t nil) | |
9529 | |
9530 ;;;*** | |
9531 | |
9532 ;;;### (autoloads (metamail-region metamail-buffer metamail-interpret-body metamail-interpret-header) "metamail" "packages/metamail.el" (12984 29549)) | |
9533 ;;; Generated autoloads from packages/metamail.el | |
9534 | |
9535 (autoload 'metamail-interpret-header "metamail" "\ | |
9536 Interpret a header part of a MIME message in current buffer. | |
9537 Its body part is not interpreted at all." t nil) | |
9538 | |
9539 (autoload 'metamail-interpret-body "metamail" "\ | |
9540 Interpret a body part of a MIME message in current buffer. | |
9541 Optional argument VIEWMODE specifies the value of the | |
9542 EMACS_VIEW_MODE environment variable (defaulted to 1). | |
9543 Optional argument NODISPLAY non-nil means buffer is not | |
9544 redisplayed as output is inserted. | |
9545 Its header part is not interpreted at all." t nil) | |
9546 | |
9547 (autoload 'metamail-buffer "metamail" "\ | |
9548 Process current buffer through `metamail'. | |
9549 Optional argument VIEWMODE specifies the value of the | |
9550 EMACS_VIEW_MODE environment variable (defaulted to 1). | |
9551 Optional argument BUFFER specifies a buffer to be filled (nil | |
9552 means current). | |
9553 Optional argument NODISPLAY non-nil means buffer is not | |
9554 redisplayed as output is inserted." t nil) | |
9555 | |
9556 (autoload 'metamail-region "metamail" "\ | |
9557 Process current region through 'metamail'. | |
9558 Optional argument VIEWMODE specifies the value of the | |
9559 EMACS_VIEW_MODE environment variable (defaulted to 1). | |
9560 Optional argument BUFFER specifies a buffer to be filled (nil | |
9561 means current). | |
9562 Optional argument NODISPLAY non-nil means buffer is not | |
9563 redisplayed as output is inserted." t nil) | |
9564 | |
9565 ;;;*** | |
9566 | |
9567 ;;;*** | |
9568 | |
9569 ;;;*** | |
9570 | |
9571 ;;;### (autoloads nil "mic-paren" "packages/mic-paren.el" (12984 30034)) | |
9572 ;;; Generated autoloads from packages/mic-paren.el | |
9573 | |
9574 ;;;*** | |
9575 | |
9576 ;;;### (autoloads nil "mime-compose" "packages/mime-compose.el" (12984 29549)) | |
9577 ;;; Generated autoloads from packages/mime-compose.el | |
9578 | |
9579 ;;;*** | |
9580 | |
9581 ;;;*** | |
9582 | |
9583 ;;;### (autoloads nil "mode-motion+" "packages/mode-motion+.el" (12984 29550)) | |
9584 ;;; Generated autoloads from packages/mode-motion+.el | |
9585 | |
9586 ;;;*** | |
9587 | |
9588 ;;;*** | |
9589 | |
9590 ;;;### (autoloads nil "netunam" "packages/netunam.el" (12984 29547)) | |
9591 ;;; Generated autoloads from packages/netunam.el | |
9592 | |
9593 ;;;*** | |
9594 | |
9595 ;;;### (autoloads nil "page-ext" "packages/page-ext.el" (12984 29547)) | |
9596 ;;; Generated autoloads from packages/page-ext.el | |
9597 | |
9598 ;;;### (autoloads (blink-paren paren-set-mode) "paren" "packages/paren.el" (12984 29547)) | |
9599 ;;; Generated autoloads from packages/paren.el | |
9600 | |
9601 (defvar paren-mode nil "\ | |
9602 *Sets the style of parenthesis highlighting. | |
9603 Valid values are nil, `blink-paren', `paren', and `sexp'. | |
9604 nil no parenthesis highlighting. | |
9605 blink-paren causes the matching paren to blink. | |
9606 paren causes the matching paren to be highlighted but not to blink. | |
9607 sexp whole expression enclosed by the local paren at its mate. | |
9608 nested (not yet implemented) use variable shading to see the | |
9609 nesting of an expression. Also groks regular expressions | |
9610 and shell quoting. | |
9611 | |
9612 This variable is global by default, but you can make it buffer-local and | |
9613 highlight parentheses differrently in different major modes.") | |
9614 | |
9615 (autoload 'paren-set-mode "paren" "\ | |
9616 Cycles through possible values for `paren-mode', force off with negative arg. | |
9617 When called from lisp, a symbolic value for `paren-mode' can be pased directly. | |
9618 See also `paren-mode' and `paren-highlight'." t nil) | |
9619 | |
9620 (make-obsolete 'blink-paren 'paren-set-mode) | |
9621 | |
9622 (autoload 'blink-paren "paren" "\ | |
9623 Obsolete. Use `paren-set-mode' instead." t nil) | |
9624 | |
9625 ;;;*** | |
9626 | |
9627 ;;;### (autoloads (pending-delete pending-delete-off pending-delete-on) "pending-del" "packages/pending-del.el" (12984 29547)) | |
9628 ;;; Generated autoloads from packages/pending-del.el | |
9629 | |
9630 (autoload 'pending-delete-on "pending-del" "\ | |
9631 Turn on pending delete. | |
9632 When it is ON, typed text replaces the selection if the selection is active. | |
9633 When it is OFF, typed text is just inserted at point." t nil) | |
9634 | |
9635 (autoload 'pending-delete-off "pending-del" "\ | |
9636 Turn off pending delete. | |
9637 When it is ON, typed text replaces the selection if the selection is active. | |
9638 When it is OFF, typed text is just inserted at point." t nil) | |
9639 | |
9640 (autoload 'pending-delete "pending-del" "\ | |
9641 Toggle automatic deletion of the selected region. | |
9642 With a positive argument, turns it on. | |
9643 With a non-positive argument, turns it off. | |
9644 When active, typed text replaces the selection." t nil) | |
9645 | |
9646 ;;;*** | |
9647 | |
9648 ;;;### (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" (12988 19728)) | |
9649 ;;; Generated autoloads from packages/ps-print.el | |
9650 | |
9651 (defvar ps-paper-type 'ps-letter "\ | |
9652 *Specifies the size of paper to format for. Should be one of | |
9653 `ps-letter', `ps-legal', or `ps-a4'.") | |
9654 | |
9655 (defvar ps-print-color-p (and (or (fboundp 'x-color-values) (fboundp 'color-instance-rgb-components)) (fboundp 'float)) "\ | |
9656 *If non-nil, print the buffer's text in color.") | |
9657 | |
9658 (autoload 'ps-print-buffer "ps-print" "\ | |
9659 Generate and print a PostScript image of the buffer. | |
9660 | |
9661 When called with a numeric prefix argument (C-u), prompts the user for | |
9662 the name of a file to save the PostScript image in, instead of sending | |
9663 it to the printer. | |
9664 | |
9665 More specifically, the FILENAME argument is treated as follows: if it | |
9666 is nil, send the image to the printer. If FILENAME is a string, save | |
9667 the PostScript image in a file with that name. If FILENAME is a | |
9668 number, prompt the user for the name of the file to save in." t nil) | |
9669 | |
9670 (autoload 'ps-print-buffer-with-faces "ps-print" "\ | |
9671 Generate and print a PostScript image of the buffer. | |
9672 Like `ps-print-buffer', but includes font, color, and underline | |
9673 information in the generated image. This command works only if you | |
9674 are using a window system, so it has a way to determine color values." t nil) | |
9675 | |
9676 (autoload 'ps-print-region "ps-print" "\ | |
9677 Generate and print a PostScript image of the region. | |
9678 Like `ps-print-buffer', but prints just the current region." t nil) | |
9679 | |
9680 (autoload 'ps-print-region-with-faces "ps-print" "\ | |
9681 Generate and print a PostScript image of the region. | |
9682 Like `ps-print-region', but includes font, color, and underline | |
9683 information in the generated image. This command works only if you | |
9684 are using a window system, so it has a way to determine color values." t nil) | |
9685 | |
9686 (autoload 'ps-spool-buffer "ps-print" "\ | |
9687 Generate and spool a PostScript image of the buffer. | |
9688 Like `ps-print-buffer' except that the PostScript image is saved in a | |
9689 local buffer to be sent to the printer later. | |
9690 | |
9691 Use the command `ps-despool' to send the spooled images to the printer." t nil) | |
9692 | |
9693 (autoload 'ps-spool-buffer-with-faces "ps-print" "\ | |
9694 Generate and spool a PostScript image of the buffer. | |
9695 Like `ps-spool-buffer', but includes font, color, and underline | |
9696 information in the generated image. This command works only if you | |
9697 are using a window system, so it has a way to determine color values. | |
9698 | |
9699 Use the command `ps-despool' to send the spooled images to the printer." t nil) | |
9700 | |
9701 (autoload 'ps-spool-region "ps-print" "\ | |
9702 Generate a PostScript image of the region and spool locally. | |
9703 Like `ps-spool-buffer', but spools just the current region. | |
9704 | |
9705 Use the command `ps-despool' to send the spooled images to the printer." t nil) | |
9706 | |
9707 (autoload 'ps-spool-region-with-faces "ps-print" "\ | |
9708 Generate a PostScript image of the region and spool locally. | |
9709 Like `ps-spool-region', but includes font, color, and underline | |
9710 information in the generated image. This command works only if you | |
9711 are using a window system, so it has a way to determine color values. | |
9712 | |
9713 Use the command `ps-despool' to send the spooled images to the printer." t nil) | |
9714 | |
9715 (autoload 'ps-despool "ps-print" "\ | |
9716 Send the spooled PostScript to the printer. | |
9717 | |
9718 When called with a numeric prefix argument (C-u), prompt the user for | |
9719 the name of a file to save the spooled PostScript in, instead of sending | |
9720 it to the printer. | |
9721 | |
9722 More specifically, the FILENAME argument is treated as follows: if it | |
9723 is nil, send the image to the printer. If FILENAME is a string, save | |
9724 the PostScript image in a file with that name. If FILENAME is a | |
9725 number, prompt the user for the name of the file to save in." t nil) | |
9726 | |
9727 ;;;*** | |
9728 | |
9729 ;;;### (autoloads (remote-compile) "rcompile" "packages/rcompile.el" (12984 29549)) | |
9730 ;;; Generated autoloads from packages/rcompile.el | |
9731 | |
9732 (autoload 'remote-compile "rcompile" "\ | |
9733 Compile the current buffer's directory on HOST. Log in as USER. | |
9734 See \\[compile]." t nil) | |
9735 | |
9736 ;;;*** | |
9737 | |
9738 ;;;*** | |
9739 | |
9740 ;;;*** | |
9741 | |
9742 ;;;### (autoloads nil "recent-files" "packages/recent-files.el" (12984 29550)) | |
9743 ;;; Generated autoloads from packages/recent-files.el | |
9744 | |
9745 ;;;*** | |
9746 | |
9747 ;;;*** | |
9748 | |
9749 ;;;*** | |
9750 | |
9751 ;;;### (autoloads nil "refbib" "packages/refbib.el" (12984 29547)) | |
9752 ;;; Generated autoloads from packages/refbib.el | |
9753 | |
9754 ;;;*** | |
9755 | |
9756 ;;;### (autoloads nil "remote" "packages/remote.el" (12984 29547)) | |
9757 ;;; Generated autoloads from packages/remote.el | |
9758 | |
9759 ;;;*** | |
9760 | |
9761 ;;;### (autoloads nil "reportmail" "packages/reportmail.el" (12984 29548)) | |
9762 ;;; Generated autoloads from packages/reportmail.el | |
9763 | |
9764 ;;;### (autoloads (resume-suspend-hook) "resume" "packages/resume.el" (12984 29548)) | |
9765 ;;; Generated autoloads from packages/resume.el | |
9766 | |
9767 (autoload 'resume-suspend-hook "resume" "\ | |
9768 Clear out the file used for transmitting args when Emacs resumes." nil nil) | |
9769 | |
9770 ;;;*** | |
9771 | |
9772 ;;;### (autoloads nil "rnews" "packages/rnews.el" (12547 2125)) | |
9773 ;;; Generated autoloads from packages/rnews.el | |
9774 | |
9775 ;;;*** | |
9776 | |
9777 ;;;### (autoloads nil "rnewspost" "packages/rnewspost.el" (12547 2128)) | |
9778 ;;; Generated autoloads from packages/rnewspost.el | |
9779 | |
9780 ;;;*** | |
9781 | |
9782 ;;;*** | |
9783 | |
9784 ;;;*** | |
9785 | |
9786 ;;;### (autoloads nil "saveconf" "packages/saveconf.el" (12984 29548)) | |
9787 ;;; Generated autoloads from packages/saveconf.el | |
9788 | |
9789 ;;;*** | |
9790 | |
9791 ;;;*** | |
9792 | |
9793 ;;;### (autoloads nil "saveplace" "packages/saveplace.el" (12984 29546)) | |
9794 ;;; Generated autoloads from packages/saveplace.el | |
9795 | |
9796 ;;;*** | |
9797 | |
9798 ;;;### (autoloads nil "sccs" "packages/sccs.el" (12984 29547)) | |
9799 ;;; Generated autoloads from packages/sccs.el | |
9800 | |
9801 ;;;*** | |
9802 | |
9803 ;;;*** | |
9804 | |
9805 ;;;### (autoloads nil "scroll-in-place" "packages/scroll-in-place.el" (12995 42347)) | |
9806 ;;; Generated autoloads from packages/scroll-in-place.el | |
9807 | |
9808 ;;;*** | |
9809 | |
9810 ;;;### (autoloads nil "server" "packages/server.el" (12984 29548)) | |
9811 ;;; Generated autoloads from packages/server.el | |
9812 | |
9813 (make-obsolete 'server-start 'gnuserv-start) | |
9814 | |
9815 ;;;*** | |
9816 | |
9817 ;;;### (autoloads nil "session" "packages/session.el" (12677 32488)) | |
9818 ;;; Generated autoloads from packages/session.el | |
9819 | |
9820 ;;;### (autoloads (install-shell-fonts) "shell-font" "packages/shell-font.el" (12984 29548)) | |
9821 ;;; Generated autoloads from packages/shell-font.el | |
9822 | |
9823 (autoload 'install-shell-fonts "shell-font" "\ | |
9824 Decorate the current interaction buffer with fonts. | |
9825 This uses the faces called `shell-prompt', `shell-input' and `shell-output'; | |
9826 you can alter the graphical attributes of those with the normal | |
9827 face-manipulation functions." nil nil) | |
9828 | |
9829 ;;;*** | |
9830 | |
9831 ;;;### (autoloads (spell-string spell-region spell-word spell-buffer) "spell" "packages/spell.el" (12984 29548)) | |
9832 ;;; Generated autoloads from packages/spell.el | |
9833 | |
9834 (put 'spell-filter 'risky-local-variable t) | |
9835 | |
9836 (autoload 'spell-buffer "spell" "\ | |
9837 Check spelling of every word in the buffer. | |
9838 For each incorrect word, you are asked for the correct spelling | |
9839 and then put into a query-replace to fix some or all occurrences. | |
9840 If you do not want to change a word, just give the same word | |
9841 as its \"correct\" spelling; then the query replace is skipped." t nil) | |
9842 | |
9843 (autoload 'spell-word "spell" "\ | |
9844 Check spelling of word at or before point. | |
9845 If it is not correct, ask user for the correct spelling | |
9846 and `query-replace' the entire buffer to substitute it." t nil) | |
9847 | |
9848 (autoload 'spell-region "spell" "\ | |
9849 Like `spell-buffer' but applies only to region. | |
9850 Used in a program, applies from START to END. | |
9851 DESCRIPTION is an optional string naming the unit being checked: | |
9852 for example, \"word\"." t nil) | |
9853 | |
9854 (autoload 'spell-string "spell" "\ | |
9855 Check spelling of string supplied as argument." t nil) | |
9856 | |
9857 ;;;*** | |
9858 | |
9859 ;;;*** | |
9860 | |
9861 ;;;*** | |
9862 | |
9863 ;;;### (autoloads nil "supercite" "packages/supercite.el" (12984 29549)) | |
9864 ;;; Generated autoloads from packages/supercite.el | |
9865 | |
9866 ;;;### (autoloads (tar-mode) "tar-mode" "packages/tar-mode.el" (12984 29548)) | |
9867 ;;; Generated autoloads from packages/tar-mode.el | |
9868 | |
9869 (autoload 'tar-mode "tar-mode" "\ | |
9870 Major mode for viewing a tar file as a dired-like listing of its contents. | |
9871 You can move around using the usual cursor motion commands. | |
9872 Letters no longer insert themselves. | |
9873 Type 'e' to pull a file out of the tar file and into its own buffer. | |
9874 Type 'c' to copy an entry from the tar file into another file on disk. | |
9875 | |
9876 If you edit a sub-file of this archive (as with the 'e' command) and | |
9877 save it with Control-X Control-S, the contents of that buffer will be | |
9878 saved back into the tar-file buffer; in this way you can edit a file | |
9879 inside of a tar archive without extracting it and re-archiving it. | |
9880 | |
9881 See also: variables tar-update-datestamp and tar-anal-blocksize. | |
9882 \\{tar-mode-map}" nil nil) | |
9883 | |
9884 ;;;*** | |
9885 | |
9886 ;;;### (autoloads (terminal-emulator) "terminal" "packages/terminal.el" (12984 29548)) | |
9887 ;;; Generated autoloads from packages/terminal.el | |
9888 | |
9889 (autoload 'terminal-emulator "terminal" "\ | |
9890 Under a display-terminal emulator in BUFFER, run PROGRAM on arguments ARGS. | |
9891 ARGS is a list of argument-strings. Remaining arguments are WIDTH and HEIGHT. | |
9892 BUFFER's contents are made an image of the display generated by that program, | |
9893 and any input typed when BUFFER is the current Emacs buffer is sent to that | |
9894 program an keyboard input. | |
9895 | |
9896 Interactively, BUFFER defaults to \"*terminal*\" and PROGRAM and ARGS | |
9897 are parsed from an input-string using your usual shell. | |
9898 WIDTH and HEIGHT are determined from the size of the current window | |
9899 -- WIDTH will be one less than the window's width, HEIGHT will be its height. | |
9900 | |
9901 To switch buffers and leave the emulator, or to give commands | |
9902 to the emulator itself (as opposed to the program running under it), | |
9903 type Control-^. The following character is an emulator command. | |
9904 Type Control-^ twice to send it to the subprogram. | |
9905 This escape character may be changed using the variable `terminal-escape-char'. | |
9906 | |
9907 `Meta' characters may not currently be sent through the terminal emulator. | |
9908 | |
9909 Here is a list of some of the variables which control the behaviour | |
9910 of the emulator -- see their documentation for more information: | |
9911 terminal-escape-char, terminal-scrolling, terminal-more-processing, | |
9912 terminal-redisplay-interval. | |
9913 | |
9914 This function calls the value of terminal-mode-hook if that exists | |
9915 and is non-nil after the terminal buffer has been set up and the | |
9916 subprocess started. | |
9917 | |
9918 Presently with `termcap' only; if somebody sends us code to make this | |
9919 work with `terminfo' we will try to use it." t nil) | |
9920 | |
9921 ;;;*** | |
9922 | |
9923 ;;;*** | |
9924 | |
9925 ;;;*** | |
9926 | |
9927 ;;;### (autoloads nil "tex-latin1" "packages/tex-latin1.el" (12984 29547)) | |
9928 ;;; Generated autoloads from packages/tex-latin1.el | |
9929 | |
9930 ;;;*** | |
9931 | |
9932 ;;;### (autoloads (batch-texinfo-format texinfo-format-region texinfo-format-buffer) "texinfmt" "packages/texinfmt.el" (12984 29548)) | |
9933 ;;; Generated autoloads from packages/texinfmt.el | |
9934 | |
9935 (autoload 'texinfo-format-buffer "texinfmt" "\ | |
9936 Process the current buffer as texinfo code, into an Info file. | |
9937 The Info file output is generated in a buffer visiting the Info file | |
9938 names specified in the @setfilename command. | |
9939 | |
9940 Non-nil argument (prefix, if interactive) means don't make tag table | |
9941 and don't split the file if large. You can use Info-tagify and | |
9942 Info-split to do these manually." t nil) | |
9943 | |
9944 (autoload 'texinfo-format-region "texinfmt" "\ | |
9945 Convert the current region of the Texinfo file to Info format. | |
9946 This lets you see what that part of the file will look like in Info. | |
9947 The command is bound to \\[texinfo-format-region]. The text that is | |
9948 converted to Info is stored in a temporary buffer." t nil) | |
9949 | |
9950 (autoload 'batch-texinfo-format "texinfmt" "\ | |
9951 Runs texinfo-format-buffer on the files remaining on the command line. | |
9952 Must be used only with -batch, and kills emacs on completion. | |
9953 Each file will be processed even if an error occurred previously. | |
9954 For example, invoke | |
9955 \"emacs -batch -funcall batch-texinfo-format $docs/ ~/*.texinfo\"." nil nil) | |
9956 | |
9957 ;;;*** | |
9958 | |
9959 ;;;*** | |
9960 | |
9961 ;;;### (autoloads nil "texnfo-tex" "packages/texnfo-tex.el" (12984 29549)) | |
9962 ;;; Generated autoloads from packages/texnfo-tex.el | |
9963 | |
9964 ;;;### (autoloads (texinfo-sequential-node-update texinfo-every-node-update texinfo-update-node) "texnfo-upd" "packages/texnfo-upd.el" (12984 29549)) | |
9965 ;;; Generated autoloads from packages/texnfo-upd.el | |
9966 | |
9967 (autoload 'texinfo-update-node "texnfo-upd" "\ | |
9968 Without any prefix argument, update the node in which point is located. | |
9969 Non-nil argument (prefix, if interactive) means update the nodes in the | |
9970 marked region. | |
9971 | |
9972 The functions for creating or updating nodes and menus, and their | |
9973 keybindings, are: | |
9974 | |
9975 texinfo-update-node (&optional region-p) \\[texinfo-update-node] | |
9976 texinfo-every-node-update () \\[texinfo-every-node-update] | |
9977 texinfo-sequential-node-update (&optional region-p) | |
9978 | |
9979 texinfo-make-menu (&optional region-p) \\[texinfo-make-menu] | |
9980 texinfo-all-menus-update () \\[texinfo-all-menus-update] | |
9981 texinfo-master-menu () | |
9982 | |
9983 texinfo-indent-menu-description (column &optional region-p) | |
9984 | |
9985 The `texinfo-column-for-description' variable specifies the column to | |
9986 which menu descriptions are indented. Its default value is 32." t nil) | |
9987 | |
9988 (autoload 'texinfo-every-node-update "texnfo-upd" "\ | |
9989 Update every node in a Texinfo file." t nil) | |
9990 | |
9991 (autoload 'texinfo-sequential-node-update "texnfo-upd" "\ | |
9992 Update one node (or many) in a Texinfo file with sequential pointers. | |
9993 | |
9994 This function causes the `Next' or `Previous' pointer to point to the | |
9995 immediately preceding or following node, even if it is at a higher or | |
9996 lower hierarchical level in the document. Continually pressing `n' or | |
9997 `p' takes you straight through the file. | |
9998 | |
9999 Without any prefix argument, update the node in which point is located. | |
10000 Non-nil argument (prefix, if interactive) means update the nodes in the | |
10001 marked region. | |
10002 | |
10003 This command makes it awkward to navigate among sections and | |
10004 subsections; it should be used only for those documents that are meant | |
10005 to be read like a novel rather than a reference, and for which the | |
10006 Info `g*' command is inadequate." t nil) | |
10007 | |
10008 ;;;*** | |
10009 | |
10010 ;;;### (autoloads (time-stamp-toggle-active time-stamp) "time-stamp" "packages/time-stamp.el" (12984 30020)) | |
10011 ;;; Generated autoloads from packages/time-stamp.el | |
10012 | |
10013 (autoload 'time-stamp "time-stamp" "\ | |
10014 Update the time stamp string in the buffer. | |
10015 If you put a time stamp template anywhere in the first 8 lines of a file, | |
10016 it can be updated every time you save the file. See the top of | |
10017 `time-stamp.el' for a sample. The template looks like one of the following: | |
10018 Time-stamp: <> | |
10019 Time-stamp: \" \" | |
10020 The time stamp is written between the brackets or quotes, resulting in | |
10021 Time-stamp: <95/01/18 10:20:51 gildea> | |
10022 Only does its thing if the variable time-stamp-active is non-nil. | |
10023 Typically used on write-file-hooks for automatic time-stamping. | |
10024 The format of the time stamp is determined by the variable time-stamp-format. | |
10025 The variables time-stamp-line-limit, time-stamp-start, and time-stamp-end | |
10026 control finding the template." t nil) | |
10027 | |
10028 (autoload 'time-stamp-toggle-active "time-stamp" "\ | |
10029 Toggle time-stamp-active, setting whether \\[time-stamp] updates a buffer. | |
10030 With arg, turn time stamping on if and only if arg is positive." t nil) | |
10031 | |
10032 ;;;*** | |
10033 | |
10034 ;;;### (autoloads (display-time) "time" "packages/time.el" (12984 29547)) | |
10035 ;;; Generated autoloads from packages/time.el | |
10036 | |
10037 (defvar display-time-day-and-date nil "\ | |
10038 *Non-nil means \\[display-time] should display day and date as well as time.") | |
10039 | |
10040 (autoload 'display-time "time" "\ | |
10041 Display current time, load level, and mail flag in mode line of each buffer. | |
10042 Updates automatically every minute. | |
10043 If `display-time-day-and-date' is non-nil, the current day and date | |
10044 are displayed as well. | |
10045 After each update, `display-time-hook' is run with `run-hooks'. | |
10046 If `display-time-echo-area' is non-nil, the time is displayed in the | |
10047 echo area instead of in the mode-line." t nil) | |
10048 | |
10049 ;;;*** | |
10050 | |
10051 ;;;*** | |
10052 | |
10053 ;;;*** | |
10054 | |
10055 ;;;*** | |
10056 | |
10057 ;;;### (autoloads nil "uncompress" "packages/uncompress.el" (12984 29548)) | |
10058 ;;; Generated autoloads from packages/uncompress.el | |
10059 | |
10060 ;;;### (autoloads (ununderline-and-unoverstrike-region overstrike-region unoverstrike-region ununderline-region underline-region) "underline" "packages/underline.el" (12984 29548)) | |
10061 ;;; Generated autoloads from packages/underline.el | |
10062 | |
10063 (autoload 'underline-region "underline" "\ | |
10064 Underline all nonblank characters in the region. | |
10065 Works by overstriking underscores. | |
10066 Called from program, takes two arguments START and END | |
10067 which specify the range to operate on." t nil) | |
10068 | |
10069 (autoload 'ununderline-region "underline" "\ | |
10070 Remove all underlining (overstruck underscores) in the region. | |
10071 Called from program, takes two arguments START and END | |
10072 which specify the range to operate on." t nil) | |
10073 | |
10074 (autoload 'unoverstrike-region "underline" "\ | |
10075 Remove all overstriking (character-backspace-character) in the region. | |
10076 Called from program, takes two arguments START and END which specify the | |
10077 range to operate on." t nil) | |
10078 | |
10079 (autoload 'overstrike-region "underline" "\ | |
10080 Overstrike (character-backspace-character) all nonblank characters in | |
10081 the region. Called from program, takes two arguments START and END which | |
10082 specify the range to operate on." t nil) | |
10083 | |
10084 (autoload 'ununderline-and-unoverstrike-region "underline" "\ | |
10085 Remove underlining and overstriking in the region. Called from a program, | |
10086 takes two arguments START and END which specify the range to operate on." t nil) | |
10087 | |
10088 ;;;*** | |
10089 | |
10090 ;;;### (autoloads (ask-to-update-copyright update-copyright) "upd-copyr" "packages/upd-copyr.el" (12984 29549)) | |
10091 ;;; Generated autoloads from packages/upd-copyr.el | |
10092 | |
10093 (defvar copyright-do-not-disturb "Free Software Foundation, Inc." "\ | |
10094 *If non-nil, the existing copyright holder is checked against this regexp. | |
10095 If it does not match, then a new copyright line is added with the copyright | |
10096 holder set to the value of `copyright-whoami'.") | |
10097 | |
10098 (defvar copyright-whoami nil "\ | |
10099 *A string containing the name of the owner of new copyright notices.") | |
10100 | |
10101 (defvar copyright-notice-file nil "\ | |
10102 *If non-nil, replace copying notices with this file.") | |
10103 | |
10104 (autoload 'update-copyright "upd-copyr" "\ | |
10105 Update the copyright notice at the beginning of the buffer | |
10106 to indicate the current year. If optional arg REPLACE is given | |
10107 \(interactively, with prefix arg) replace the years in the notice | |
10108 rather than adding the current year after them. | |
10109 If `copyright-notice-file' is set, the copying permissions following the | |
10110 copyright are replaced as well. | |
10111 | |
10112 If optional third argument ASK is non-nil, the user is prompted for whether | |
10113 or not to update the copyright. If optional fourth argument ASK-YEAR is | |
10114 non-nil, the user is prompted for whether or not to replace the year rather | |
10115 than adding to it." t nil) | |
10116 | |
10117 (autoload 'ask-to-update-copyright "upd-copyr" "\ | |
10118 If the current buffer contains a copyright notice that is out of date, | |
10119 ask the user if it should be updated with `update-copyright' (which see). | |
10120 Put this on write-file-hooks." nil nil) | |
10121 | |
10122 ;;;*** | |
10123 | |
10124 ;;;*** | |
10125 | |
10126 ;;;*** | |
10127 | |
10128 ;;;### (autoloads nil "vc-hooks" "packages/vc-hooks.el" (12984 29547)) | |
10129 ;;; Generated autoloads from packages/vc-hooks.el | |
10130 | |
10131 ;;;*** | |
10132 | |
10133 ;;;### (autoloads (vc-update-change-log vc-rename-this-file vc-rename-file vc-cancel-version vc-revert-buffer vc-print-log vc-retrieve-snapshot vc-create-snapshot vc-directory vc-insert-headers vc-version-other-window vc-version-diff vc-diff vc-register vc-next-action vc-file-status) "vc" "packages/vc.el" (12988 19712)) | |
10134 ;;; Generated autoloads from packages/vc.el | |
10135 | |
10136 (defvar vc-checkin-hook nil "\ | |
10137 *List of functions called after a checkin is done. See `run-hooks'.") | |
10138 | |
10139 (autoload 'vc-file-status "vc" "\ | |
10140 Display the current status of the file being visited. | |
10141 Currently, this is only defined for CVS. The information provided in the | |
10142 modeline is generally sufficient for RCS and SCCS." t nil) | |
10143 | |
10144 (autoload 'vc-next-action "vc" "\ | |
10145 Do the next logical checkin or checkout operation on the current file. | |
10146 | |
10147 For RCS and SCCS files: | |
10148 If the file is not already registered, this registers it for version | |
10149 control and then retrieves a writable, locked copy for editing. | |
10150 If the file is registered and not locked by anyone, this checks out | |
10151 a writable and locked file ready for editing. | |
10152 If the file is checked out and locked by the calling user, this | |
10153 first checks to see if the file has changed since checkout. If not, | |
10154 it performs a revert. | |
10155 If the file has been changed, this pops up a buffer for entry | |
10156 of a log message; when the message has been entered, it checks in the | |
10157 resulting changes along with the log message as change commentary. If | |
10158 the variable `vc-keep-workfiles' is non-nil (which is its default), a | |
10159 read-only copy of the changed file is left in place afterwards. | |
10160 If the file is registered and locked by someone else, you are given | |
10161 the option to steal the lock. | |
10162 | |
10163 For CVS files: | |
10164 If the file is not already registered, this registers it for version | |
10165 control. This does a \"cvs add\", but no \"cvs commit\". | |
10166 If the file is added but not committed, it is committed. | |
10167 If the file has not been changed, neither in your working area or | |
10168 in the repository, a message is printed and nothing is done. | |
10169 If your working file is changed, but the repository file is | |
10170 unchanged, this pops up a buffer for entry of a log message; when the | |
10171 message has been entered, it checks in the resulting changes along | |
10172 with the logmessage as change commentary. A writable file is retained. | |
10173 If the repository file is changed, you are asked if you want to | |
10174 merge in the changes into your working copy. | |
10175 | |
10176 The following is true regardless of which version control system you | |
10177 are using: | |
10178 | |
10179 If you call this from within a VC dired buffer with no files marked, | |
10180 it will operate on the file in the current line. | |
10181 If you call this from within a VC dired buffer, and one or more | |
10182 files are marked, it will accept a log message and then operate on | |
10183 each one. The log message will be used as a comment for any register | |
10184 or checkin operations, but ignored when doing checkouts. Attempted | |
10185 lock steals will raise an error. | |
10186 | |
10187 For checkin, a prefix argument lets you specify the version number to use." t nil) | |
10188 | |
10189 (autoload 'vc-register "vc" "\ | |
10190 Register the current file into your version-control system." t nil) | |
10191 | |
10192 (autoload 'vc-diff "vc" "\ | |
10193 Display diffs between file versions. | |
10194 Normally this compares the current file and buffer with the most recent | |
10195 checked in version of that file. This uses no arguments. | |
10196 With a prefix argument, it reads the file name to use | |
10197 and two version designators specifying which versions to compare." t nil) | |
10198 | |
10199 (autoload 'vc-version-diff "vc" "\ | |
10200 For FILE, report diffs between two stored versions REL1 and REL2 of it. | |
10201 If FILE is a directory, generate diffs between versions for all registered | |
10202 files in or below it." t nil) | |
10203 | |
10204 (autoload 'vc-version-other-window "vc" "\ | |
10205 Visit version REV of the current buffer in another window. | |
10206 If the current buffer is named `F', the version is named `F.~REV~'. | |
10207 If `F.~REV~' already exists, it is used instead of being re-created." t nil) | |
10208 | |
10209 (autoload 'vc-insert-headers "vc" "\ | |
10210 Insert headers in a file for use with your version-control system. | |
10211 Headers desired are inserted at the start of the buffer, and are pulled from | |
10212 the variable `vc-header-alist'." t nil) | |
10213 | |
10214 (autoload 'vc-directory "vc" "\ | |
10215 Show version-control status of all files in the directory DIR. | |
10216 If the second argument VERBOSE is non-nil, show all files; | |
10217 otherwise show only files that current locked in the version control system. | |
10218 Interactively, supply a prefix arg to make VERBOSE non-nil. | |
10219 | |
10220 If the optional third argument NESTED is non-nil, | |
10221 scan the entire tree of subdirectories of the current directory." t nil) | |
10222 | |
10223 (autoload 'vc-create-snapshot "vc" "\ | |
10224 Make a snapshot called NAME. | |
10225 The snapshot is made from all registered files at or below the current | |
10226 directory. For each file, the version level of its latest | |
10227 version becomes part of the named configuration." t nil) | |
10228 | |
10229 (autoload 'vc-retrieve-snapshot "vc" "\ | |
10230 Retrieve the snapshot called NAME. | |
10231 This function fails if any files are locked at or below the current directory | |
10232 Otherwise, all registered files are checked out (unlocked) at their version | |
10233 levels in the snapshot." t nil) | |
10234 | |
10235 (autoload 'vc-print-log "vc" "\ | |
10236 List the change log of the current buffer in a window." t nil) | |
10237 | |
10238 (autoload 'vc-revert-buffer "vc" "\ | |
10239 Revert the current buffer's file back to the latest checked-in version. | |
10240 This asks for confirmation if the buffer contents are not identical | |
10241 to that version. | |
10242 If the back-end is CVS, this will give you the most recent revision of | |
10243 the file on the branch you are editing." t nil) | |
10244 | |
10245 (autoload 'vc-cancel-version "vc" "\ | |
10246 Get rid of most recently checked in version of this file. | |
10247 A prefix argument means do not revert the buffer afterwards." t nil) | |
10248 | |
10249 (autoload 'vc-rename-file "vc" "\ | |
10250 Rename file OLD to NEW, and rename its master file likewise." t nil) | |
10251 | |
10252 (autoload 'vc-rename-this-file "vc" nil t nil) | |
10253 | |
10254 (autoload 'vc-update-change-log "vc" "\ | |
10255 Find change log file and add entries from recent RCS logs. | |
10256 The mark is left at the end of the text prepended to the change log. | |
10257 With prefix arg of C-u, only find log entries for the current buffer's file. | |
10258 With any numeric prefix arg, find log entries for all files currently visited. | |
10259 Otherwise, find log entries for all registered files in the default directory. | |
10260 From a program, any arguments are passed to the `rcs2log' script." t nil) | |
10261 | |
10262 ;;;*** | |
10263 | |
10264 ;;;*** | |
10265 | |
10266 ;;;### (autoloads nil "webster-ucb" "packages/webster-ucb.el" (12984 29548)) | |
10267 ;;; Generated autoloads from packages/webster-ucb.el | |
10268 | |
10269 ;;;### (autoloads (webster-spell webster-endings webster) "webster" "packages/webster.el" (12984 29549)) | |
10270 ;;; Generated autoloads from packages/webster.el | |
10271 | |
10272 (autoload 'webster "webster" "\ | |
10273 Look up a word in the Webster's dictionary. | |
10274 Open a network login connection to a webster host if necessary. | |
10275 Communication with host is recorded in a buffer *webster*." t nil) | |
10276 | |
10277 (autoload 'webster-endings "webster" "\ | |
10278 Look up endings for a word in the Webster's dictionary. | |
10279 Open a network login connection to a webster host if necessary. | |
10280 Communication with host is recorded in a buffer *webster*." t nil) | |
10281 | |
10282 (autoload 'webster-spell "webster" "\ | |
10283 Look spelling for a word in the Webster's dictionary. | |
10284 Open a network login connection to a webster host if necessary. | |
10285 Communication with host is recorded in a buffer *webster*." t nil) | |
10286 | |
10287 ;;;*** | |
10288 | |
10289 ;;;### (autoloads (run-scheme) "xscheme" "packages/xscheme.el" (12984 29549)) | |
10290 ;;; Generated autoloads from packages/xscheme.el | |
10291 | |
10292 (defvar scheme-program-name "scheme" "\ | |
10293 *Program invoked by the `run-scheme' command.") | |
10294 | |
10295 (defvar scheme-band-name nil "\ | |
10296 *Band loaded by the `run-scheme' command.") | |
10297 | |
10298 (defvar scheme-program-arguments nil "\ | |
10299 *Arguments passed to the Scheme program by the `run-scheme' command.") | |
10300 | |
10301 (autoload 'run-scheme "xscheme" "\ | |
10302 Run an inferior Scheme process. | |
10303 Output goes to the buffer `*scheme*'. | |
10304 With argument, asks for a command line." t nil) | |
10305 | |
10306 ;;;*** | |
10307 | |
10308 ;;;### (autoloads nil "compile-all" "pcl-cvs/compile-all.el" (11903 15856)) | |
10309 ;;; Generated autoloads from pcl-cvs/compile-all.el | |
10310 | |
10311 ;;;*** | |
10312 | |
10313 ;;;*** | |
10314 | |
10315 ;;;*** | |
10316 | |
10317 ;;;### (autoloads nil "cookie" "pcl-cvs/cookie.el" (12984 29554)) | |
10318 ;;; Generated autoloads from pcl-cvs/cookie.el | |
10319 | |
10320 ;;;*** | |
10321 | |
10322 ;;;### (autoloads nil "dll-debug" "pcl-cvs/dll-debug.el" (12984 29554)) | |
10323 ;;; Generated autoloads from pcl-cvs/dll-debug.el | |
10324 | |
10325 ;;;*** | |
10326 | |
10327 ;;;### (autoloads nil "dll" "pcl-cvs/dll.el" (12984 29554)) | |
10328 ;;; Generated autoloads from pcl-cvs/dll.el | |
10329 | |
10330 ;;;*** | |
10331 | |
10332 ;;;### (autoloads nil "elib-node" "pcl-cvs/elib-node.el" (12984 29554)) | |
10333 ;;; Generated autoloads from pcl-cvs/elib-node.el | |
10334 | |
10335 ;;;*** | |
10336 | |
10337 ;;;*** | |
10338 | |
10339 ;;;### (autoloads nil "pcl-cvs-startup" "pcl-cvs/pcl-cvs-startup.el" (12984 29554)) | |
10340 ;;; Generated autoloads from pcl-cvs/pcl-cvs-startup.el | |
10341 | |
10342 ;;;### (autoloads (pcl-cvs-fontify) "pcl-cvs-xemacs" "pcl-cvs/pcl-cvs-xemacs.el" (12984 29554)) | |
10343 ;;; Generated autoloads from pcl-cvs/pcl-cvs-xemacs.el | |
10344 | |
10345 (autoload 'pcl-cvs-fontify "pcl-cvs-xemacs" nil nil nil) | |
10346 | |
10347 ;;;*** | |
10348 | |
10349 ;;;### (autoloads (cvs-update-other-window cvs-update) "pcl-cvs" "pcl-cvs/pcl-cvs.el" (12988 55034)) | |
10350 ;;; Generated autoloads from pcl-cvs/pcl-cvs.el | |
10351 | |
10352 (autoload 'cvs-update "pcl-cvs" "\ | |
10353 Run a 'cvs update' in the current working directory. Feed the | |
10354 output to a *cvs* buffer and run cvs-mode on it. | |
10355 If optional prefix argument LOCAL is non-nil, 'cvs update -l' is run." t nil) | |
10356 | |
10357 (autoload 'cvs-update-other-window "pcl-cvs" "\ | |
10358 Run a 'cvs update' in the current working directory. Feed the | |
10359 output to a *cvs* buffer, display it in the other window, and run | |
10360 cvs-mode on it. | |
10361 | |
10362 If optional prefix argument LOCAL is non-nil, 'cvs update -l' is run." t nil) | |
10363 | |
10364 ;;;*** | |
10365 | |
10366 ;;;*** | |
10367 | |
10368 ;;;*** | |
10369 | |
10370 ;;;### (autoloads nil "string" "pcl-cvs/string.el" (12984 29554)) | |
10371 ;;; Generated autoloads from pcl-cvs/string.el | |
10372 | |
10373 ;;;### (autoloads (about-xemacs) "about" "prim/about.el" (12984 29553)) | |
10374 ;;; Generated autoloads from prim/about.el | |
10375 | |
10376 (autoload 'about-xemacs "about" nil t nil) | |
10377 | |
10378 ;;;*** | |
10379 | |
10380 ;;;### (autoloads (all-hail-emacs all-hail-xemacs praise-be-unto-emacs praise-be-unto-xemacs) "advocacy" "prim/advocacy.el" (12984 29554)) | |
10381 ;;; Generated autoloads from prim/advocacy.el | |
10382 | |
10383 (defvar xemacs-praise-sound-file "sounds/im_so_happy.au" "\ | |
10384 The name of an audio file containing something to play | |
10385 when praising XEmacs") | |
10386 | |
10387 (defvar xemacs-praise-message "All Hail XEmacs!\n" "\ | |
10388 What to praise XEmacs with") | |
10389 | |
10390 (autoload 'praise-be-unto-xemacs "advocacy" "\ | |
10391 All Hail XEmacs!" t nil) | |
10392 | |
10393 (autoload 'praise-be-unto-emacs "advocacy" nil t nil) | |
10394 | |
10395 (autoload 'all-hail-xemacs "advocacy" "\ | |
10396 All Hail XEmacs!" t nil) | |
10397 | |
10398 (autoload 'all-hail-emacs "advocacy" nil t nil) | |
10399 | |
10400 ;;;*** | |
10401 | |
10402 ;;;*** | |
10403 | |
10404 ;;;*** | |
10405 | |
10406 ;;;*** | |
10407 | |
10408 ;;;### (autoloads nil "backquote" "prim/backquote.el" (12984 29553)) | |
10409 ;;; Generated autoloads from prim/backquote.el | |
10410 | |
10411 ;;;*** | |
10412 | |
10413 ;;;### (autoloads nil "buffer" "prim/buffer.el" (12984 30049)) | |
10414 ;;; Generated autoloads from prim/buffer.el | |
10415 | |
10416 ;;;*** | |
10417 | |
10418 ;;;### (autoloads (describe-buffer-case-table) "case-table" "prim/case-table.el" (12984 29551)) | |
10419 ;;; Generated autoloads from prim/case-table.el | |
10420 | |
10421 (autoload 'describe-buffer-case-table "case-table" "\ | |
10422 Describe the case table of the current buffer." t nil) | |
10423 | |
10424 ;;;*** | |
10425 | |
10426 ;;;*** | |
10427 | |
10428 ;;;*** | |
10429 | |
10430 ;;;### (autoloads nil "cmdloop" "prim/cmdloop.el" (12984 29553)) | |
10431 ;;; Generated autoloads from prim/cmdloop.el | |
10432 | |
10433 ;;;*** | |
10434 | |
10435 ;;;### (autoloads nil "cmdloop1" "prim/cmdloop1.el" (12984 29553)) | |
10436 ;;; Generated autoloads from prim/cmdloop1.el | |
10437 | |
10438 ;;;*** | |
10439 | |
10440 ;;;### (autoloads nil "console" "prim/console.el" (12984 29554)) | |
10441 ;;; Generated autoloads from prim/console.el | |
10442 | |
10443 ;;;### (autoloads (cancel-debug-on-entry debug-on-entry debug) "debug" "prim/debug.el" (12984 30039)) | |
10444 ;;; Generated autoloads from prim/debug.el | |
10445 | |
10446 (autoload 'debug "debug" "\ | |
10447 Enter debugger. To return, type \\<debugger-mode-map>`\\[debugger-continue]'. | |
10448 Arguments are mainly for use when this is called from the internals | |
10449 of the evaluator. | |
10450 | |
10451 You may call with no args, or you may pass nil as the first arg and | |
10452 any other args you like. In that case, the list of args after the | |
10453 first will be printed into the backtrace buffer." t nil) | |
10454 | |
10455 (autoload 'debug-on-entry "debug" "\ | |
10456 Request FUNCTION to invoke debugger each time it is called. | |
10457 If you tell the debugger to continue, FUNCTION's execution proceeds. | |
10458 This works by modifying the definition of FUNCTION, | |
10459 which must be written in Lisp, not predefined. | |
10460 Use \\[cancel-debug-on-entry] to cancel the effect of this command. | |
10461 Redefining FUNCTION also cancels it." t nil) | |
10462 | |
10463 (autoload 'cancel-debug-on-entry "debug" "\ | |
10464 Undo effect of \\[debug-on-entry] on FUNCTION. | |
10465 If argument is nil or an empty string, cancel for all functions." t nil) | |
10466 | |
10467 ;;;*** | |
10468 | |
10469 ;;;*** | |
10470 | |
10471 ;;;*** | |
10472 | |
10473 ;;;### (autoloads nil "device" "prim/device.el" (12984 29553)) | |
10474 ;;; Generated autoloads from prim/device.el | |
10475 | |
10476 ;;;*** | |
10477 | |
10478 ;;;### (autoloads nil "dialog" "prim/dialog.el" (12984 29553)) | |
10479 ;;; Generated autoloads from prim/dialog.el | |
10480 | |
10481 ;;;### (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" (12984 29553)) | |
10482 ;;; Generated autoloads from prim/disp-table.el | |
10483 | |
10484 (autoload 'describe-current-display-table "disp-table" "\ | |
10485 Describe the display table in use in the selected window and buffer." t nil) | |
10486 | |
10487 (autoload 'make-display-table "disp-table" "\ | |
10488 Return a new, empty display table." nil nil) | |
10489 | |
10490 (autoload 'standard-display-8bit "disp-table" "\ | |
10491 Display characters in the range L to H literally." nil nil) | |
10492 | |
10493 (autoload 'standard-display-default "disp-table" "\ | |
10494 Display characters in the range L to H using the default notation." nil nil) | |
10495 | |
10496 (autoload 'standard-display-ascii "disp-table" "\ | |
10497 Display character C using printable string S." nil nil) | |
10498 | |
10499 (autoload 'standard-display-g1 "disp-table" "\ | |
10500 Display character C as character SC in the g1 character set. | |
10501 This function assumes that your terminal uses the SO/SI characters; | |
10502 it is meaningless for an X frame." nil nil) | |
10503 | |
10504 (autoload 'standard-display-graphic "disp-table" "\ | |
10505 Display character C as character GC in graphics character set. | |
10506 This function assumes VT100-compatible escapes; it is meaningless for an | |
10507 X frame." nil nil) | |
10508 | |
10509 (autoload 'standard-display-underline "disp-table" "\ | |
10510 Display character C as character UC plus underlining." nil nil) | |
10511 | |
10512 (autoload 'standard-display-european "disp-table" "\ | |
10513 Toggle display of European characters encoded with ISO 8859. | |
10514 When enabled, characters in the range of 160 to 255 display not | |
10515 as octal escapes, but as accented characters. | |
10516 With prefix argument, enable European character display iff arg is positive." t nil) | |
10517 | |
10518 ;;;*** | |
10519 | |
10520 ;;;### (autoloads (setenv) "env" "prim/env.el" (12984 29553)) | |
10521 ;;; Generated autoloads from prim/env.el | |
10522 | |
10523 (autoload 'setenv "env" "\ | |
10524 Set the value of the environment variable named VARIABLE to VALUE. | |
10525 VARIABLE should be a string. VALUE is optional; if not provided or is | |
10526 `nil', the environment variable VARIABLE will be removed. | |
10527 | |
10528 Interactively, a prefix argument means to unset the variable. | |
10529 Interactively, the current value (if any) of the variable | |
10530 appears at the front of the history list when you type in the new value. | |
10531 | |
10532 This function works by modifying `process-environment'." t nil) | |
10533 | |
10534 ;;;*** | |
10535 | |
10536 ;;;*** | |
10537 | |
10538 ;;;*** | |
10539 | |
10540 ;;;### (autoloads nil "events" "prim/events.el" (12988 19747)) | |
10541 ;;; Generated autoloads from prim/events.el | |
10542 | |
10543 ;;;*** | |
10544 | |
10545 ;;;*** | |
10546 | |
10547 ;;;*** | |
10548 | |
10549 ;;;### (autoloads nil "extents" "prim/extents.el" (12984 29553)) | |
10550 ;;; Generated autoloads from prim/extents.el | |
10551 | |
10552 ;;;*** | |
10553 | |
10554 ;;;### (autoloads nil "faces" "prim/faces.el" (12984 29550)) | |
10555 ;;; Generated autoloads from prim/faces.el | |
10556 | |
10557 ;;;*** | |
10558 | |
10559 ;;;*** | |
10560 | |
10561 ;;;*** | |
10562 | |
10563 ;;;### (autoloads nil "files-nomule" "prim/files-nomule.el" (12984 30048)) | |
10564 ;;; Generated autoloads from prim/files-nomule.el | |
10565 | |
10566 ;;;*** | |
10567 | |
10568 ;;;### (autoloads nil "files" "prim/files.el" (12988 19732)) | |
10569 ;;; Generated autoloads from prim/files.el | |
10570 | |
10571 ;;;*** | |
10572 | |
10573 ;;;### (autoloads nil "fill" "prim/fill.el" (12984 29551)) | |
10574 ;;; Generated autoloads from prim/fill.el | |
10575 | |
10576 ;;;*** | |
10577 | |
10578 ;;;### (autoloads nil "float-sup" "prim/float-sup.el" (12984 29551)) | |
10579 ;;; Generated autoloads from prim/float-sup.el | |
10580 | |
10581 ;;;*** | |
10582 | |
10583 ;;;*** | |
10584 | |
10585 ;;;### (autoloads nil "format" "prim/format.el" (12984 30048)) | |
10586 ;;; Generated autoloads from prim/format.el | |
10587 | |
10588 ;;;*** | |
10589 | |
10590 ;;;### (autoloads nil "frame" "prim/frame.el" (12992 16669)) | |
10591 ;;; Generated autoloads from prim/frame.el | |
10592 | |
10593 ;;;*** | |
10594 | |
10595 ;;;### (autoloads nil "glyphs" "prim/glyphs.el" (12988 19745)) | |
10596 ;;; Generated autoloads from prim/glyphs.el | |
10597 | |
10598 ;;;*** | |
10599 | |
10600 ;;;*** | |
10601 | |
10602 ;;;### (autoloads nil "gui" "prim/gui.el" (12984 29553)) | |
10603 ;;; Generated autoloads from prim/gui.el | |
10604 | |
10605 ;;;*** | |
10606 | |
10607 ;;;*** | |
10608 | |
10609 ;;;### (autoloads nil "help" "prim/help.el" (12996 6142)) | |
10610 ;;; Generated autoloads from prim/help.el | |
10611 | |
10612 ;;;### (autoloads nil "inc-vers" "prim/inc-vers.el" (12984 29552)) | |
10613 ;;; Generated autoloads from prim/inc-vers.el | |
10614 | |
10615 ;;;*** | |
10616 | |
10617 ;;;### (autoloads nil "indent" "prim/indent.el" (12984 30037)) | |
10618 ;;; Generated autoloads from prim/indent.el | |
10619 | |
10620 ;;;*** | |
10621 | |
10622 ;;;*** | |
10623 | |
10624 ;;;### (autoloads nil "isearch-mode" "prim/isearch-mode.el" (12984 29551)) | |
10625 ;;; Generated autoloads from prim/isearch-mode.el | |
10626 | |
10627 ;;;*** | |
10628 | |
10629 ;;;### (autoloads nil "itimer" "prim/itimer.el" (12984 29553)) | |
10630 ;;; Generated autoloads from prim/itimer.el | |
10631 | |
10632 ;;;*** | |
10633 | |
10634 ;;;### (autoloads nil "keydefs" "prim/keydefs.el" (12988 19742)) | |
10635 ;;; Generated autoloads from prim/keydefs.el | |
10636 | |
10637 ;;;*** | |
10638 | |
10639 ;;;*** | |
10640 | |
10641 ;;;### (autoloads nil "keymap" "prim/keymap.el" (12984 29553)) | |
10642 ;;; Generated autoloads from prim/keymap.el | |
10643 | |
10644 ;;;*** | |
10645 | |
10646 ;;;### (autoloads nil "lisp" "prim/lisp.el" (12991 23165)) | |
10647 ;;; Generated autoloads from prim/lisp.el | |
10648 | |
10649 ;;;*** | |
10650 | |
10651 ;;;*** | |
10652 | |
10653 ;;;*** | |
10654 | |
10655 ;;;*** | |
10656 | |
10657 ;;;*** | |
10658 | |
10659 ;;;### (autoloads nil "loaddefs" "prim/loaddefs.el" (12997 30656)) | |
10660 ;;; Generated autoloads from prim/loaddefs.el | |
10661 | |
10662 ;;;*** | |
10663 | |
10664 ;;;### (autoloads nil "loadup-el" "prim/loadup-el.el" (12984 29553)) | |
10665 ;;; Generated autoloads from prim/loadup-el.el | |
10666 | |
10667 ;;;### (autoloads nil "loadup" "prim/loadup.el" (12988 19733)) | |
10668 ;;; Generated autoloads from prim/loadup.el | |
10669 | |
10670 ;;;*** | |
10671 | |
10672 ;;;### (autoloads (apply-macro-to-region-lines kbd-macro-query insert-kbd-macro name-last-kbd-macro) "macros" "prim/macros.el" (12984 29551)) | |
10673 ;;; Generated autoloads from prim/macros.el | |
10674 | |
10675 (autoload 'name-last-kbd-macro "macros" "\ | |
10676 Assign a name to the last keyboard macro defined. | |
10677 Argument SYMBOL is the name to define. | |
10678 The symbol's function definition becomes the keyboard macro string. | |
10679 Such a \"function\" cannot be called from Lisp, but it is a valid | |
10680 editor command." t nil) | |
10681 | |
10682 (autoload 'insert-kbd-macro "macros" "\ | |
10683 Insert in buffer the definition of kbd macro NAME, as Lisp code. | |
10684 Optional second argument KEYS means also record the keys it is on | |
10685 \(this is the prefix argument, when calling interactively). | |
10686 | |
10687 This Lisp code will, when executed, define the kbd macro with the | |
10688 same definition it has now. If you say to record the keys, | |
10689 the Lisp code will also rebind those keys to the macro. | |
10690 Only global key bindings are recorded since executing this Lisp code | |
10691 always makes global bindings. | |
10692 | |
10693 To save a kbd macro, visit a file of Lisp code such as your `~/.emacs', | |
10694 use this command, and then save the file." t nil) | |
10695 | |
10696 (autoload 'kbd-macro-query "macros" "\ | |
10697 Query user during kbd macro execution. | |
10698 With prefix argument, enters recursive edit, | |
10699 reading keyboard commands even within a kbd macro. | |
10700 You can give different commands each time the macro executes. | |
10701 Without prefix argument, asks whether to continue running the macro. | |
10702 Your options are: \\<query-replace-map> | |
10703 \\[act] Finish this iteration normally and continue with the next. | |
10704 \\[skip] Skip the rest of this iteration, and start the next. | |
10705 \\[exit] Stop the macro entirely right now. | |
10706 \\[recenter] Redisplay the frame, then ask again. | |
10707 \\[edit] Enter recursive edit; ask again when you exit from that." t nil) | |
10708 | |
10709 (autoload 'apply-macro-to-region-lines "macros" "\ | |
10710 For each complete line between point and mark, move to the beginning | |
10711 of the line, and run the last keyboard macro. | |
10712 | |
10713 When called from lisp, this function takes two arguments TOP and | |
10714 BOTTOM, describing the current region. TOP must be before BOTTOM. | |
10715 The optional third argument MACRO specifies a keyboard macro to | |
10716 execute. | |
10717 | |
10718 This is useful for quoting or unquoting included text, adding and | |
10719 removing comments, or producing tables where the entries are regular. | |
10720 | |
10721 For example, in Usenet articles, sections of text quoted from another | |
10722 author are indented, or have each line start with `>'. To quote a | |
10723 section of text, define a keyboard macro which inserts `>', put point | |
10724 and mark at opposite ends of the quoted section, and use | |
10725 `\\[apply-macro-to-region-lines]' to mark the entire section. | |
10726 | |
10727 Suppose you wanted to build a keyword table in C where each entry | |
10728 looked like this: | |
10729 | |
10730 { \"foo\", foo_data, foo_function }, | |
10731 { \"bar\", bar_data, bar_function }, | |
10732 { \"baz\", baz_data, baz_function }, | |
10733 | |
10734 You could enter the names in this format: | |
10735 | |
10736 foo | |
10737 bar | |
10738 baz | |
10739 | |
10740 and write a macro to massage a word into a table entry: | |
10741 | |
10742 \\C-x ( | |
10743 \\M-d { \"\\C-y\", \\C-y_data, \\C-y_function }, | |
10744 \\C-x ) | |
10745 | |
10746 and then select the region of un-tablified names and use | |
10747 `\\[apply-macro-to-region-lines]' to build the table from the names. | |
10748 " t nil) | |
10749 | |
10750 ;;;*** | |
10751 | |
10752 ;;;*** | |
10753 | |
10754 ;;;### (autoloads nil "menubar" "prim/menubar.el" (12984 29551)) | |
10755 ;;; Generated autoloads from prim/menubar.el | |
10756 | |
10757 ;;;*** | |
10758 | |
10759 ;;;*** | |
10760 | |
10761 ;;;### (autoloads nil "minibuf" "prim/minibuf.el" (12988 19737)) | |
10762 ;;; Generated autoloads from prim/minibuf.el | |
10763 | |
10764 ;;;*** | |
10765 | |
10766 ;;;### (autoloads nil "misc" "prim/misc.el" (12984 29551)) | |
10767 ;;; Generated autoloads from prim/misc.el | |
10768 | |
10769 ;;;*** | |
10770 | |
10771 ;;;*** | |
10772 | |
10773 ;;;### (autoloads nil "mode-motion" "prim/mode-motion.el" (12984 29551)) | |
10774 ;;; Generated autoloads from prim/mode-motion.el | |
10775 | |
10776 ;;;*** | |
10777 | |
10778 ;;;### (autoloads nil "modeline" "prim/modeline.el" (12992 15753)) | |
10779 ;;; Generated autoloads from prim/modeline.el | |
10780 | |
10781 ;;;*** | |
10782 | |
10783 ;;;*** | |
10784 | |
10785 ;;;### (autoloads nil "mouse" "prim/mouse.el" (12988 19735)) | |
10786 ;;; Generated autoloads from prim/mouse.el | |
10787 | |
10788 ;;;*** | |
10789 | |
10790 ;;;### (autoloads (disable-command enable-command disabled-command-hook) "novice" "prim/novice.el" (12984 30043)) | |
10791 ;;; Generated autoloads from prim/novice.el | |
10792 | |
10793 (autoload 'disabled-command-hook "novice" nil nil nil) | |
10794 | |
10795 (autoload 'enable-command "novice" "\ | |
10796 Allow COMMAND to be executed without special confirmation from now on. | |
10797 The user's .emacs file is altered so that this will apply | |
10798 to future sessions." t nil) | |
10799 | |
10800 (autoload 'disable-command "novice" "\ | |
10801 Require special confirmation to execute COMMAND from now on. | |
10802 The user's .emacs file is altered so that this will apply | |
10803 to future sessions." t nil) | |
10804 | |
10805 ;;;*** | |
10806 | |
10807 ;;;*** | |
10808 | |
10809 ;;;### (autoloads nil "objects" "prim/objects.el" (12984 29553)) | |
10810 ;;; Generated autoloads from prim/objects.el | |
10811 | |
10812 ;;;*** | |
10813 | |
10814 ;;;### (autoloads nil "obsolete" "prim/obsolete.el" (12988 19744)) | |
10815 ;;; Generated autoloads from prim/obsolete.el | |
10816 | |
10817 ;;;### (autoloads (edit-options list-options) "options" "prim/options.el" (12984 30038)) | |
10818 ;;; Generated autoloads from prim/options.el | |
10819 | |
10820 (autoload 'list-options "options" "\ | |
10821 Display a list of XEmacs user options, with values and documentation." t nil) | |
10822 | |
10823 (autoload 'edit-options "options" "\ | |
10824 Edit a list of XEmacs user option values. | |
10825 Selects a buffer containing such a list, | |
10826 in which there are commands to set the option values. | |
10827 Type \\[describe-mode] in that buffer for a list of commands." t nil) | |
10828 | |
10829 ;;;*** | |
10830 | |
10831 ;;;*** | |
10832 | |
10833 ;;;*** | |
10834 | |
10835 ;;;### (autoloads nil "page" "prim/page.el" (12984 30036)) | |
10836 ;;; Generated autoloads from prim/page.el | |
10837 | |
10838 ;;;*** | |
10839 | |
10840 ;;;### (autoloads nil "paragraphs" "prim/paragraphs.el" (12984 30043)) | |
10841 ;;; Generated autoloads from prim/paragraphs.el | |
10842 | |
10843 ;;;*** | |
10844 | |
10845 ;;;### (autoloads nil "process" "prim/process.el" (12984 29553)) | |
10846 ;;; Generated autoloads from prim/process.el | |
10847 | |
10848 ;;;*** | |
10849 | |
10850 ;;;### (autoloads nil "profile" "prim/profile.el" (12984 29554)) | |
10851 ;;; Generated autoloads from prim/profile.el | |
10852 | |
10853 ;;;### (autoloads (clear-rectangle string-rectangle open-rectangle insert-rectangle yank-rectangle kill-rectangle extract-rectangle delete-extract-rectangle delete-rectangle) "rect" "prim/rect.el" (12984 30040)) | |
10854 ;;; Generated autoloads from prim/rect.el | |
10855 | |
10856 (autoload 'delete-rectangle "rect" "\ | |
10857 Delete (don't save) text in rectangle with point and mark as corners. | |
10858 The same range of columns is deleted in each line starting with the line | |
10859 where the region begins and ending with the line where the region ends." t nil) | |
10860 | |
10861 (autoload 'delete-extract-rectangle "rect" "\ | |
10862 Delete contents of rectangle and return it as a list of strings. | |
10863 Arguments START and END are the corners of the rectangle. | |
10864 The value is list of strings, one for each line of the rectangle." nil nil) | |
10865 | |
10866 (autoload 'extract-rectangle "rect" "\ | |
10867 Return contents of rectangle with corners at START and END. | |
10868 Value is list of strings, one for each line of the rectangle." nil nil) | |
10869 | |
10870 (defvar killed-rectangle nil "\ | |
10871 Rectangle for yank-rectangle to insert.") | |
10872 | |
10873 (autoload 'kill-rectangle "rect" "\ | |
10874 Delete rectangle with corners at point and mark; save as last killed one. | |
10875 Calling from program, supply two args START and END, buffer positions. | |
10876 But in programs you might prefer to use `delete-extract-rectangle'." t nil) | |
10877 | |
10878 (autoload 'yank-rectangle "rect" "\ | |
10879 Yank the last killed rectangle with upper left corner at point." t nil) | |
10880 | |
10881 (autoload 'insert-rectangle "rect" "\ | |
10882 Insert text of RECTANGLE with upper left corner at point. | |
10883 RECTANGLE's first line is inserted at point, its second | |
10884 line is inserted at a point vertically under point, etc. | |
10885 RECTANGLE should be a list of strings. | |
10886 After this command, the mark is at the upper left corner | |
10887 and point is at the lower right corner." nil nil) | |
10888 | |
10889 (autoload 'open-rectangle "rect" "\ | |
10890 Blank out rectangle with corners at point and mark, shifting text right. | |
10891 The text previously in the region is not overwritten by the blanks, | |
10892 but instead winds up to the right of the rectangle." t nil) | |
10893 | |
10894 (autoload 'string-rectangle "rect" "\ | |
10895 Insert STRING on each line of the region-rectangle, shifting text right. | |
10896 The left edge of the rectangle specifies the column for insertion. | |
10897 This command does not delete or overwrite any existing text. | |
10898 | |
10899 Called from a program, takes three args; START, END and STRING." t nil) | |
10900 | |
10901 (autoload 'clear-rectangle "rect" "\ | |
10902 Blank out rectangle with corners at point and mark. | |
10903 The text previously in the region is overwritten by the blanks. | |
10904 When called from a program, requires two args which specify the corners." t nil) | |
10905 | |
10906 ;;;*** | |
10907 | |
10908 ;;;*** | |
10909 | |
10910 ;;;*** | |
10911 | |
10912 ;;;### (autoloads nil "register" "prim/register.el" (12984 30038)) | |
10913 ;;; Generated autoloads from prim/register.el | |
10914 | |
10915 ;;;*** | |
10916 | |
10917 ;;;*** | |
10918 | |
10919 ;;;### (autoloads nil "replace" "prim/replace.el" (12988 19736)) | |
10920 ;;; Generated autoloads from prim/replace.el | |
10921 | |
10922 ;;;### (autoloads (reposition-window) "reposition" "prim/reposition.el" (12984 30043)) | |
10923 ;;; Generated autoloads from prim/reposition.el | |
10924 | |
10925 (autoload 'reposition-window "reposition" "\ | |
10926 Make the current definition and/or comment visible. | |
10927 Further invocations move it to the top of the window or toggle the | |
10928 visibility of comments that precede it. | |
10929 Point is left unchanged unless prefix ARG is supplied. | |
10930 If the definition is fully onscreen, it is moved to the top of the | |
10931 window. If it is partly offscreen, the window is scrolled to get the | |
10932 definition (or as much as will fit) onscreen, unless point is in a comment | |
10933 which is also partly offscreen, in which case the scrolling attempts to get | |
10934 as much of the comment onscreen as possible. | |
10935 Initially `reposition-window' attempts to make both the definition and | |
10936 preceding comments visible. Further invocations toggle the visibility of | |
10937 the comment lines. | |
10938 If ARG is non-nil, point may move in order to make the whole defun | |
10939 visible (if only part could otherwise be made so), to make the defun line | |
10940 visible (if point is in code and it could not be made so, or if only | |
10941 comments, including the first comment line, are visible), or to make the | |
10942 first comment line visible (if point is in a comment)." t nil) | |
10943 | |
10944 ;;;*** | |
10945 | |
10946 ;;;*** | |
10947 | |
10948 ;;;### (autoloads nil "scrollbar" "prim/scrollbar.el" (12984 29554)) | |
10949 ;;; Generated autoloads from prim/scrollbar.el | |
10950 | |
10951 ;;;*** | |
10952 | |
10953 ;;;*** | |
10954 | |
10955 ;;;### (autoloads nil "simple" "prim/simple.el" (12988 19742)) | |
10956 ;;; Generated autoloads from prim/simple.el | |
10957 | |
10958 ;;;### (autoloads (reverse-region sort-columns sort-regexp-fields sort-fields sort-float-fields sort-numeric-fields sort-pages sort-paragraphs sort-lines sort-subr) "sort" "prim/sort.el" (12996 12993)) | |
10959 ;;; Generated autoloads from prim/sort.el | |
10960 | |
10961 (autoload 'sort-subr "sort" "\ | |
10962 General text sorting routine to divide buffer into records and sort them. | |
10963 Arguments are REVERSE NEXTRECFUN ENDRECFUN &optional STARTKEYFUN ENDKEYFUN. | |
10964 | |
10965 We divide the accessible portion of the buffer into disjoint pieces | |
10966 called sort records. A portion of each sort record (perhaps all of | |
10967 it) is designated as the sort key. The records are rearranged in the | |
10968 buffer in order by their sort keys. The records may or may not be | |
10969 contiguous. | |
10970 | |
10971 Usually the records are rearranged in order of ascending sort key. | |
10972 If REVERSE is non-nil, they are rearranged in order of descending sort key. | |
10973 The variable `sort-fold-case' determines whether alphabetic case affects | |
10974 the sort order. | |
10975 | |
10976 The next four arguments are functions to be called to move point | |
10977 across a sort record. They will be called many times from within sort-subr. | |
10978 | |
10979 NEXTRECFUN is called with point at the end of the previous record. | |
10980 It moves point to the start of the next record. | |
10981 It should move point to the end of the buffer if there are no more records. | |
10982 The first record is assumed to start at the position of point when sort-subr | |
10983 is called. | |
10984 | |
10985 ENDRECFUN is called with point within the record. | |
10986 It should move point to the end of the record. | |
10987 | |
10988 STARTKEYFUN moves from the start of the record to the start of the key. | |
10989 It may return either a non-nil value to be used as the key, or | |
10990 else the key is the substring between the values of point after | |
10991 STARTKEYFUN and ENDKEYFUN are called. If STARTKEYFUN is nil, the key | |
10992 starts at the beginning of the record. | |
10993 | |
10994 ENDKEYFUN moves from the start of the sort key to the end of the sort key. | |
10995 ENDKEYFUN may be nil if STARTKEYFUN returns a value or if it would be the | |
10996 same as ENDRECFUN." nil nil) | |
10997 | |
10998 (autoload 'sort-lines "sort" "\ | |
10999 Sort lines in region alphabetically; argument means descending order. | |
11000 Called from a program, there are three arguments: | |
11001 REVERSE (non-nil means reverse order), BEG and END (region to sort). | |
11002 The variable `sort-fold-case' determines whether alphabetic case affects | |
11003 the sort order." t nil) | |
11004 | |
11005 (autoload 'sort-paragraphs "sort" "\ | |
11006 Sort paragraphs in region alphabetically; argument means descending order. | |
11007 Called from a program, there are three arguments: | |
11008 REVERSE (non-nil means reverse order), BEG and END (region to sort). | |
11009 The variable `sort-fold-case' determines whether alphabetic case affects | |
11010 the sort order." t nil) | |
11011 | |
11012 (autoload 'sort-pages "sort" "\ | |
11013 Sort pages in region alphabetically; argument means descending order. | |
11014 Called from a program, there are three arguments: | |
11015 REVERSE (non-nil means reverse order), BEG and END (region to sort). | |
11016 The variable `sort-fold-case' determines whether alphabetic case affects | |
11017 the sort order." t nil) | |
11018 | |
11019 (autoload 'sort-numeric-fields "sort" "\ | |
11020 Sort lines in region numerically by the ARGth field of each line. | |
11021 Fields are separated by whitespace and numbered from 1 up. | |
11022 Specified field must contain a number in each line of the region. | |
11023 With a negative arg, sorts by the ARGth field counted from the right. | |
11024 Called from a program, there are three arguments: | |
11025 FIELD, BEG and END. BEG and END specify region to sort. | |
11026 The variable `sort-fold-case' determines whether alphabetic case affects | |
11027 the sort order. | |
11028 If you want to sort floating-point numbers, try `sort-float-fields'." t nil) | |
11029 | |
11030 (autoload 'sort-float-fields "sort" "\ | |
11031 Sort lines in region numerically by the ARGth field of each line. | |
11032 Fields are separated by whitespace and numbered from 1 up. Specified field | |
11033 must contain a floating point number in each line of the region. With a | |
11034 negative arg, sorts by the ARGth field counted from the right. Called from a | |
11035 program, there are three arguments: FIELD, BEG and END. BEG and END specify | |
11036 region to sort." t nil) | |
11037 | |
11038 (autoload 'sort-fields "sort" "\ | |
11039 Sort lines in region lexicographically by the ARGth field of each line. | |
11040 Fields are separated by whitespace and numbered from 1 up. | |
11041 With a negative arg, sorts by the ARGth field counted from the right. | |
11042 Called from a program, there are three arguments: | |
11043 FIELD, BEG and END. BEG and END specify region to sort." t nil) | |
11044 | |
11045 (autoload 'sort-regexp-fields "sort" "\ | |
11046 Sort the region lexicographically as specified by RECORD-REGEXP and KEY. | |
11047 RECORD-REGEXP specifies the textual units which should be sorted. | |
11048 For example, to sort lines RECORD-REGEXP would be \"^.*$\" | |
11049 KEY specifies the part of each record (ie each match for RECORD-REGEXP) | |
11050 is to be used for sorting. | |
11051 If it is \"\\\\digit\" then the digit'th \"\\\\(...\\\\)\" match field from | |
11052 RECORD-REGEXP is used. | |
11053 If it is \"\\\\&\" then the whole record is used. | |
11054 Otherwise, it is a regular-expression for which to search within the record. | |
11055 If a match for KEY is not found within a record then that record is ignored. | |
11056 | |
11057 With a negative prefix arg sorts in reverse order. | |
11058 | |
11059 The variable `sort-fold-case' determines whether alphabetic case affects | |
11060 the sort order. | |
11061 | |
11062 For example: to sort lines in the region by the first word on each line | |
11063 starting with the letter \"f\", | |
11064 RECORD-REGEXP would be \"^.*$\" and KEY would be \"\\\\=\\<f\\\\w*\\\\>\"" t nil) | |
11065 | |
11066 (autoload 'sort-columns "sort" "\ | |
11067 Sort lines in region alphabetically by a certain range of columns. | |
11068 For the purpose of this command, the region includes | |
11069 the entire line that point is in and the entire line the mark is in. | |
11070 The column positions of point and mark bound the range of columns to sort on. | |
11071 A prefix argument means sort into reverse order. | |
11072 The variable `sort-fold-case' determines whether alphabetic case affects | |
11073 the sort order. | |
11074 | |
11075 Note that `sort-columns' rejects text that contains tabs, | |
11076 because tabs could be split across the specified columns | |
11077 and it doesn't know how to handle that. Also, when possible, | |
11078 it uses the `sort' utility program, which doesn't understand tabs. | |
11079 Use \\[untabify] to convert tabs to spaces before sorting." t nil) | |
11080 | |
11081 (autoload 'reverse-region "sort" "\ | |
11082 Reverse the order of lines in a region. | |
11083 From a program takes two point or marker arguments, BEG and END." t nil) | |
11084 | |
11085 ;;;*** | |
11086 | |
11087 ;;;### (autoloads (load-default-sounds load-sound-file) "sound" "prim/sound.el" (12984 29552)) | |
11088 ;;; Generated autoloads from prim/sound.el | |
11089 | |
11090 (or sound-alist (setq sound-alist '((ready nil) (warp nil)))) | |
11091 | |
11092 (autoload 'load-sound-file "sound" "\ | |
11093 Read in an audio-file and add it to the sound-alist. | |
11094 | |
11095 You can only play sound files if you are running on display 0 of the console | |
11096 of a Sun SparcStation, SGI machine, or HP9000s700, or running a NetAudio | |
11097 server. The sound file must be in the Sun/NeXT U-LAW format." t nil) | |
11098 | |
11099 (autoload 'load-default-sounds "sound" "\ | |
11100 Load and install some sound files as beep-types. | |
11101 This only works if you're on display 0 of a Sun SparcStation, SGI machine, | |
11102 or HP9000s700, or running a NetAudio server." t nil) | |
11103 | |
11104 ;;;*** | |
11105 | |
11106 ;;;*** | |
11107 | |
11108 ;;;*** | |
11109 | |
11110 ;;;*** | |
11111 | |
11112 ;;;*** | |
11113 | |
11114 ;;;### (autoloads nil "specifier" "prim/specifier.el" (12984 29554)) | |
11115 ;;; Generated autoloads from prim/specifier.el | |
11116 | |
11117 ;;;*** | |
11118 | |
11119 ;;;*** | |
11120 | |
11121 ;;;### (autoloads nil "startup" "prim/startup.el" (12995 22982)) | |
11122 ;;; Generated autoloads from prim/startup.el | |
11123 | |
11124 ;;;### (autoloads nil "subr" "prim/subr.el" (12984 30040)) | |
11125 ;;; Generated autoloads from prim/subr.el | |
11126 | |
11127 ;;;*** | |
11128 | |
11129 ;;;*** | |
11130 | |
11131 ;;;### (autoloads nil "symbols" "prim/symbols.el" (12984 29554)) | |
11132 ;;; Generated autoloads from prim/symbols.el | |
11133 | |
11134 ;;;*** | |
11135 | |
11136 ;;;### (autoloads nil "syntax" "prim/syntax.el" (12984 29553)) | |
11137 ;;; Generated autoloads from prim/syntax.el | |
11138 | |
11139 ;;;*** | |
11140 | |
11141 ;;;### (autoloads (tabify untabify) "tabify" "prim/tabify.el" (12984 29553)) | |
11142 ;;; Generated autoloads from prim/tabify.el | |
11143 | |
11144 (autoload 'untabify "tabify" "\ | |
11145 Convert all tabs in region to multiple spaces, preserving columns. | |
11146 Called non-interactively, the region is specified by arguments | |
11147 START and END, rather than by the position of point and mark. | |
11148 The variable `tab-width' controls the spacing of tab stops." t nil) | |
11149 | |
11150 (autoload 'tabify "tabify" "\ | |
11151 Convert multiple spaces in region to tabs when possible. | |
11152 A group of spaces is partially replaced by tabs | |
11153 when this can be done without changing the column they end at. | |
11154 Called non-interactively, the region is specified by arguments | |
11155 START and END, rather than by the position of point and mark. | |
11156 The variable `tab-width' controls the spacing of tab stops." t nil) | |
11157 | |
11158 ;;;*** | |
11159 | |
11160 ;;;*** | |
11161 | |
11162 ;;;### (autoloads nil "toolbar" "prim/toolbar.el" (12984 29552)) | |
11163 ;;; Generated autoloads from prim/toolbar.el | |
11164 | |
11165 ;;;*** | |
11166 | |
11167 ;;;*** | |
11168 | |
11169 ;;;### (autoloads nil "undo-stack" "prim/undo-stack.el" (12984 29554)) | |
11170 ;;; Generated autoloads from prim/undo-stack.el | |
11171 | |
11172 ;;;*** | |
11173 | |
11174 ;;;*** | |
11175 | |
11176 ;;;### (autoloads nil "update-elc" "prim/update-elc.el" (12984 29553)) | |
11177 ;;; Generated autoloads from prim/update-elc.el | |
11178 | |
11179 ;;;*** | |
11180 | |
11181 ;;;### (autoloads (ask-user-about-supersession-threat ask-user-about-lock) "userlock" "prim/userlock.el" (12984 30045)) | |
11182 ;;; Generated autoloads from prim/userlock.el | |
11183 | |
11184 (autoload 'ask-user-about-lock "userlock" "\ | |
11185 Ask user what to do when he wants to edit FILE but it is locked by USER. | |
11186 This function has a choice of three things to do: | |
11187 do (signal 'file-locked (list FILE USER)) | |
11188 to refrain from editing the file | |
11189 return t (grab the lock on the file) | |
11190 return nil (edit the file even though it is locked). | |
11191 You can rewrite it to use any criterion you like to choose which one to do." nil nil) | |
11192 | |
11193 (autoload 'ask-user-about-supersession-threat "userlock" "\ | |
11194 Ask a user who is about to modify an obsolete buffer what to do. | |
11195 This function has two choices: it can return, in which case the modification | |
11196 of the buffer will proceed, or it can (signal 'file-supersession (file)), | |
11197 in which case the proposed buffer modification will not be made. | |
11198 | |
11199 You can rewrite this to use any criterion you like to choose which one to do. | |
11200 The buffer in question is current when this function is called." nil nil) | |
11201 | |
11202 ;;;*** | |
11203 | |
11204 ;;;*** | |
11205 | |
11206 ;;;### (autoloads nil "window" "prim/window.el" (12984 29552)) | |
11207 ;;; Generated autoloads from prim/window.el | |
11208 | |
11209 ;;;*** | |
11210 | |
11211 ;;;*** | |
11212 | |
11213 ;;;### (autoloads nil "iso-sgml" "psgml/iso-sgml.el" (12984 29592)) | |
11214 ;;; Generated autoloads from psgml/iso-sgml.el | |
11215 | |
11216 ;;;*** | |
11217 | |
11218 ;;;*** | |
11219 | |
11220 ;;;### (autoloads nil "nefarious" "psgml/nefarious.el" (12984 29593)) | |
11221 ;;; Generated autoloads from psgml/nefarious.el | |
11222 | |
11223 ;;;*** | |
11224 | |
11225 ;;;### (autoloads nil "psgml-api" "psgml/psgml-api.el" (12984 29592)) | |
11226 ;;; Generated autoloads from psgml/psgml-api.el | |
11227 | |
11228 ;;;*** | |
11229 | |
11230 ;;;### (autoloads nil "psgml-charent" "psgml/psgml-charent.el" (12984 29592)) | |
11231 ;;; Generated autoloads from psgml/psgml-charent.el | |
11232 | |
11233 ;;;*** | |
11234 | |
11235 ;;;*** | |
11236 | |
11237 ;;;### (autoloads nil "psgml-debug" "psgml/psgml-debug.el" (12984 29592)) | |
11238 ;;; Generated autoloads from psgml/psgml-debug.el | |
11239 | |
11240 ;;;*** | |
11241 | |
11242 ;;;### (autoloads nil "psgml-dtd" "psgml/psgml-dtd.el" (12984 29592)) | |
11243 ;;; Generated autoloads from psgml/psgml-dtd.el | |
11244 | |
11245 ;;;*** | |
11246 | |
11247 ;;;### (autoloads nil "psgml-edit" "psgml/psgml-edit.el" (12984 29592)) | |
11248 ;;; Generated autoloads from psgml/psgml-edit.el | |
11249 | |
11250 ;;;### (autoloads (style-format) "psgml-fs" "psgml/psgml-fs.el" (12984 29592)) | |
11251 ;;; Generated autoloads from psgml/psgml-fs.el | |
11252 | |
11253 (autoload 'style-format "psgml-fs" nil t nil) | |
11254 | |
11255 ;;;*** | |
11256 | |
11257 ;;;### (autoloads nil "psgml-html" "psgml/psgml-html.el" (12984 29592)) | |
11258 ;;; Generated autoloads from psgml/psgml-html.el | |
11259 | |
11260 (autoload 'html-mode "psgml-html" "\ | |
11261 HTML mode." t) | |
11262 | |
11263 (autoload 'html3-mode "psgml-html" "\ | |
11264 HTML3 mode." t) | |
11265 | |
11266 ;;;*** | |
11267 | |
11268 ;;;*** | |
11269 | |
11270 ;;;*** | |
11271 | |
11272 ;;;*** | |
11273 | |
11274 ;;;*** | |
11275 | |
11276 ;;;### (autoloads nil "psgml-info" "psgml/psgml-info.el" (12984 29592)) | |
11277 ;;; Generated autoloads from psgml/psgml-info.el | |
11278 | |
11279 ;;;*** | |
11280 | |
11281 ;;;*** | |
11282 | |
11283 ;;;### (autoloads nil "psgml-lfix" "psgml/psgml-lfix.el" (12984 29593)) | |
11284 ;;; Generated autoloads from psgml/psgml-lfix.el | |
11285 | |
11286 ;;;*** | |
11287 | |
11288 ;;;*** | |
11289 | |
11290 ;;;### (autoloads nil "psgml-other" "psgml/psgml-other.el" (12984 29592)) | |
11291 ;;; Generated autoloads from psgml/psgml-other.el | |
11292 | |
11293 ;;;*** | |
11294 | |
11295 ;;;### (autoloads nil "psgml-parse" "psgml/psgml-parse.el" (12989 49165)) | |
11296 ;;; Generated autoloads from psgml/psgml-parse.el | |
11297 | |
11298 ;;;*** | |
11299 | |
11300 ;;;*** | |
11301 | |
11302 ;;;### (autoloads nil "psgml-xemacs" "psgml/psgml-xemacs.el" (12984 29593)) | |
11303 ;;; Generated autoloads from psgml/psgml-xemacs.el | |
11304 | |
11305 ;;;### (autoloads (sgml-mode) "psgml" "psgml/psgml.el" (12984 29593)) | |
11306 ;;; Generated autoloads from psgml/psgml.el | |
11307 | |
11308 (autoload 'sgml-mode "psgml" "\ | |
11309 Major mode for editing SGML.\\<sgml-mode-map> | |
11310 Makes > display the matching <. Makes / display matching /. | |
11311 Use \\[sgml-validate] to validate your document with an SGML parser. | |
11312 | |
11313 You can find information with: | |
11314 \\[sgml-show-context] Show the nesting of elements at cursor position. | |
11315 \\[sgml-list-valid-tags] Show the tags valid at cursor position. | |
11316 | |
11317 Insert tags with completion of contextually valid tags with \\[sgml-insert-tag]. | |
11318 End the current element with \\[sgml-insert-end-tag]. Insert an element (i.e. | |
11319 both start and end tag) with \\[sgml-insert-element]. Or tag a region with | |
11320 \\[sgml-tag-region]. | |
11321 | |
11322 To tag a region with the mouse, use transient mark mode or secondary selection. | |
11323 | |
11324 Structure editing: | |
11325 \\[sgml-backward-element] Moves backwards over the previous element. | |
11326 \\[sgml-forward-element] Moves forward over the nex element. | |
11327 \\[sgml-down-element] Move forward and down one level in the element structure. | |
11328 \\[sgml-backward-up-element] Move backward out of this element level. | |
11329 \\[sgml-beginning-of-element] Move to after the start tag of the current element. | |
11330 \\[sgml-end-of-element] Move to before the end tag of the current element. | |
11331 \\[sgml-kill-element] Kill the element following the cursor. | |
11332 | |
11333 Finding interesting positions | |
11334 \\[sgml-next-data-field] Move forward to next point where data is allowed. | |
11335 \\[sgml-next-trouble-spot] Move forward to next point where something is | |
11336 amiss with the structure. | |
11337 | |
11338 Folding and unfolding | |
11339 \\[sgml-fold-element] Fold the lines comprising the current element, leaving | |
11340 the first line visible. | |
11341 \\[sgml-fold-subelement] Fold the elements in the content of the current element. | |
11342 Leaving the first line of every element visible. | |
11343 \\[sgml-unfold-line] Show hidden lines in current line. | |
11344 | |
11345 User options: | |
11346 | |
11347 sgml-omittag Set this to reflect OMITTAG in the SGML declaration. | |
11348 sgml-shortag Set this to reflect SHORTTAG in the SGML declaration. | |
11349 sgml-auto-insert-required-elements If non-nil, automatically insert required | |
11350 elements in the content of an inserted element. | |
11351 sgml-balanced-tag-edit If non-nil, always insert start-end tag pairs. | |
11352 sgml-omittag-transparent If non-nil, will show legal tags inside elements | |
11353 with omitable start tags and legal tags beyond omitable end tags. | |
11354 sgml-leave-point-after-insert If non-nil, the point will remain after | |
11355 inserted tag(s). | |
11356 sgml-warn-about-undefined-elements If non-nil, print a warning when a tag | |
11357 for a undefined element is found. | |
11358 sgml-max-menu-size Max number of entries in Tags and Entities menus before | |
11359 they are split into several panes. | |
11360 sgml-always-quote-attributes If non-nil, quote all attribute values | |
11361 inserted after finishing edit attributes. | |
11362 sgml-minimize-attributes Determines minimization of attributes inserted by | |
11363 edit-attributes. | |
11364 sgml-normalize-trims If non-nil, sgml-normalize will trim off white space | |
11365 from end of element when adding end tag. | |
11366 sgml-indent-step How much to increament indent for every element level. | |
11367 sgml-indent-data If non-nil, indent in data/mixed context also. | |
11368 sgml-set-face If non-nil, psgml will set the face of parsed markup. | |
11369 sgml-markup-faces The faces used when the above variable is non-nil. | |
11370 sgml-system-path List of directorys used to look for system identifiers. | |
11371 sgml-public-map Mapping from public identifiers to file names. | |
11372 sgml-offer-save If non-nil, ask about saving modified buffers before | |
11373 \\[sgml-validate] is run. | |
11374 | |
11375 All bindings: | |
11376 \\{sgml-mode-map} | |
11377 " t nil) | |
11378 | |
11379 ;;;*** | |
11380 | |
11381 ;;;*** | |
11382 | |
11383 ;;;### (autoloads nil "tempo" "psgml/tempo.el" (12984 29593)) | |
11384 ;;; Generated autoloads from psgml/tempo.el | |
11385 | |
11386 ;;;*** | |
11387 | |
11388 ;;;*** | |
11389 | |
11390 ;;;### (autoloads nil "rmail-kill" "rmail/rmail-kill.el" (12984 30051)) | |
11391 ;;; Generated autoloads from rmail/rmail-kill.el | |
11392 | |
11393 ;;;*** | |
11394 | |
11395 ;;;*** | |
11396 | |
11397 ;;;### (autoloads nil "rmail-xemacs" "rmail/rmail-xemacs.el" (12984 30051)) | |
11398 ;;; Generated autoloads from rmail/rmail-xemacs.el | |
11399 | |
11400 ;;;### (autoloads (rmail-input rmail-mode rmail) "rmail" "rmail/rmail.el" (12984 29555)) | |
11401 ;;; Generated autoloads from rmail/rmail.el | |
11402 | |
11403 (defvar rmail-dont-reply-to-names nil "\ | |
11404 *A regexp specifying names to prune of reply to messages. | |
11405 A value of nil means exclude your own name only.") | |
11406 | |
11407 (defvar rmail-default-dont-reply-to-names "info-" "\ | |
11408 A regular expression specifying part of the value of the default value of | |
11409 the variable `rmail-dont-reply-to-names', for when the user does not set | |
11410 `rmail-dont-reply-to-names' explicitly. (The other part of the default | |
11411 value is the user's name.) | |
11412 It is useful to set this variable in the site customization file.") | |
11413 | |
11414 (defvar rmail-delete-after-output nil "\ | |
11415 *Non-nil means automatically delete a message that is copied to a file.") | |
11416 | |
11417 (defvar rmail-primary-inbox-list nil "\ | |
11418 *List of files which are inboxes for user's primary mail file `~/RMAIL'. | |
11419 `nil' means the default, which is (\"/usr/spool/mail/$USER\") | |
11420 \(the name varies depending on the operating system, | |
11421 and the value of the environment variable MAIL overrides it).") | |
11422 | |
11423 (defvar rmail-mail-new-frame nil "\ | |
11424 *Non-nil means Rmail makes a new frame for composing outgoing mail.") | |
11425 | |
11426 (defvar rmail-retry-setup-hook nil "\ | |
11427 Hook that `rmail-retry-failure' uses in place of `mail-setup-hook'.") | |
11428 | |
11429 (defvar rmail-last-file nil) | |
11430 | |
11431 (autoload 'rmail "rmail" "\ | |
11432 Read and edit incoming mail. | |
11433 Moves messages into file named by `rmail-file-name' (a babyl format file) | |
11434 and edits that file in RMAIL Mode. | |
11435 Type \\[describe-mode] once editing that file, for a list of RMAIL commands. | |
11436 | |
11437 May be called with filename as argument; then performs rmail editing on | |
11438 that file, but does not copy any new mail into the file." t nil) | |
11439 | |
11440 (autoload 'rmail-mode "rmail" "\ | |
11441 Rmail Mode is used by \\<rmail-mode-map>\\[rmail] for editing Rmail files. | |
11442 All normal editing commands are turned off. | |
11443 Instead, these commands are available: | |
11444 | |
11445 \\[rmail-beginning-of-message] Move point to front of this message (same as \\[beginning-of-buffer]). | |
11446 \\[scroll-up] Scroll to next screen of this message. | |
11447 \\[scroll-down] Scroll to previous screen of this message. | |
11448 \\[rmail-next-undeleted-message] Move to Next non-deleted message. | |
11449 \\[rmail-previous-undeleted-message] Move to Previous non-deleted message. | |
11450 \\[rmail-next-message] Move to Next message whether deleted or not. | |
11451 \\[rmail-previous-message] Move to Previous message whether deleted or not. | |
11452 \\[rmail-first-message] Move to the first message in Rmail file. | |
11453 \\[rmail-last-message] Move to the last message in Rmail file. | |
11454 \\[rmail-show-message] Jump to message specified by numeric position in file. | |
11455 \\[rmail-search] Search for string and show message it is found in. | |
11456 \\[rmail-delete-forward] Delete this message, move to next nondeleted. | |
11457 \\[rmail-delete-backward] Delete this message, move to previous nondeleted. | |
11458 \\[rmail-undelete-previous-message] Undelete message. Tries current message, then earlier messages | |
11459 till a deleted message is found. | |
11460 \\[rmail-edit-current-message] Edit the current message. \\[rmail-cease-edit] to return to Rmail. | |
11461 \\[rmail-expunge] Expunge deleted messages. | |
11462 \\[rmail-expunge-and-save] Expunge and save the file. | |
11463 \\[rmail-quit] Quit Rmail: expunge, save, then switch to another buffer. | |
11464 \\[save-buffer] Save without expunging. | |
11465 \\[rmail-get-new-mail] Move new mail from system spool directory into this file. | |
11466 \\[rmail-mail] Mail a message (same as \\[mail-other-window]). | |
11467 \\[rmail-continue] Continue composing outgoing message started before. | |
11468 \\[rmail-reply] Reply to this message. Like \\[rmail-mail] but initializes some fields. | |
11469 \\[rmail-retry-failure] Send this message again. Used on a mailer failure message. | |
11470 \\[rmail-forward] Forward this message to another user. | |
11471 \\[rmail-output-to-rmail-file] Output this message to an Rmail file (append it). | |
11472 \\[rmail-output] Output this message to a Unix-format mail file (append it). | |
11473 \\[rmail-input] Input Rmail file. Run Rmail on that file. | |
11474 \\[rmail-add-label] Add label to message. It will be displayed in the mode line. | |
11475 \\[rmail-kill-label] Kill label. Remove a label from current message. | |
11476 \\[rmail-next-labeled-message] Move to Next message with specified label | |
11477 (label defaults to last one specified). | |
11478 Standard labels: filed, unseen, answered, forwarded, deleted. | |
11479 Any other label is present only if you add it with \\[rmail-add-label]. | |
11480 \\[rmail-previous-labeled-message] Move to Previous message with specified label | |
11481 \\[rmail-summary] Show headers buffer, with a one line summary of each message. | |
11482 \\[rmail-summary-by-labels] Summarize only messages with particular label(s). | |
11483 \\[rmail-summary-by-recipients] Summarize only messages with particular recipient(s). | |
11484 \\[rmail-summary-by-regexp] Summarize only messages with particular regexp(s). | |
11485 \\[rmail-summary-by-topic] Summarize only messages with subject line regexp(s). | |
11486 \\[rmail-toggle-header] Toggle display of complete header." t nil) | |
11487 | |
11488 (autoload 'rmail-input "rmail" "\ | |
11489 Run Rmail on file FILENAME." t nil) | |
11490 | |
11491 ;;;*** | |
11492 | |
11493 ;;;*** | |
11494 | |
11495 ;;;*** | |
11496 | |
11497 ;;;### (autoloads nil "rmailedit" "rmail/rmailedit.el" (12984 29555)) | |
11498 ;;; Generated autoloads from rmail/rmailedit.el | |
11499 | |
11500 ;;;*** | |
11501 | |
11502 ;;;### (autoloads nil "rmailkwd" "rmail/rmailkwd.el" (12984 29555)) | |
11503 ;;; Generated autoloads from rmail/rmailkwd.el | |
11504 | |
11505 ;;;*** | |
11506 | |
11507 ;;;### (autoloads nil "rmailmsc" "rmail/rmailmsc.el" (12984 29555)) | |
11508 ;;; Generated autoloads from rmail/rmailmsc.el | |
11509 | |
11510 ;;;### (autoloads (rmail-file-p) "rmailout" "rmail/rmailout.el" (12984 29555)) | |
11511 ;;; Generated autoloads from rmail/rmailout.el | |
11512 | |
11513 (autoload 'rmail-file-p "rmailout" nil nil nil) | |
11514 | |
11515 ;;;*** | |
11516 | |
11517 ;;;*** | |
11518 | |
11519 ;;;*** | |
11520 | |
11521 ;;;### (autoloads nil "rmailsort" "rmail/rmailsort.el" (12984 29555)) | |
11522 ;;; Generated autoloads from rmail/rmailsort.el | |
11523 | |
11524 ;;;*** | |
11525 | |
11526 ;;;### (autoloads nil "rmailsum" "rmail/rmailsum.el" (12984 29555)) | |
11527 ;;; Generated autoloads from rmail/rmailsum.el | |
11528 | |
11529 ;;;*** | |
11530 | |
11531 ;;;### (autoloads nil "undigest" "rmail/undigest.el" (12984 29555)) | |
11532 ;;; Generated autoloads from rmail/undigest.el | |
11533 | |
11534 ;;;*** | |
11535 | |
11536 ;;;### (autoloads (unrmail batch-unrmail) "unrmail" "rmail/unrmail.el" (12984 29555)) | |
11537 ;;; Generated autoloads from rmail/unrmail.el | |
11538 | |
11539 (autoload 'batch-unrmail "unrmail" "\ | |
11540 Convert Rmail files to mailbox files. | |
11541 Specify the input Rmail file names as command line arguments. | |
11542 For each Rmail file, the corresponding output file name | |
11543 is made by adding `.mail' at the end. | |
11544 For example, invoke `emacs -batch -f batch-unrmail RMAIL'." nil nil) | |
11545 | |
11546 (autoload 'unrmail "unrmail" "\ | |
11547 Convert Rmail file FILE to mailbox-format file TO-FILE." t nil) | |
11548 | |
11549 ;;;*** | |
11550 | |
11551 ;;;*** | |
11552 | |
11553 ;;;*** | |
11554 | |
11555 ;;;### (autoloads nil "sunpro-init" "sunpro/sunpro-init.el" (12988 19778)) | |
11556 ;;; Generated autoloads from sunpro/sunpro-init.el | |
11557 | |
11558 ;;;*** | |
11559 | |
11560 ;;;### (autoloads nil "sunpro-keys" "sunpro/sunpro-keys.el" (12984 29562)) | |
11561 ;;; Generated autoloads from sunpro/sunpro-keys.el | |
11562 | |
11563 ;;;*** | |
11564 | |
11565 ;;;### (autoloads nil "sunpro-load" "sunpro/sunpro-load.el" (12984 29562)) | |
11566 ;;; Generated autoloads from sunpro/sunpro-load.el | |
11567 | |
11568 ;;;*** | |
11569 | |
11570 ;;;### (autoloads nil "sunpro-menubar" "sunpro/sunpro-menubar.el" (12984 29562)) | |
11571 ;;; Generated autoloads from sunpro/sunpro-menubar.el | |
11572 | |
11573 ;;;*** | |
11574 | |
11575 ;;;### (autoloads nil "sunpro-sparcworks" "sunpro/sunpro-sparcworks.el" (12984 29562)) | |
11576 ;;; Generated autoloads from sunpro/sunpro-sparcworks.el | |
11577 | |
11578 ;;;*** | |
11579 | |
11580 ;;;### (autoloads nil "AT386" "term/AT386.el" (12988 19751)) | |
11581 ;;; Generated autoloads from term/AT386.el | |
11582 | |
11583 ;;;*** | |
11584 | |
11585 ;;;### (autoloads nil "apollo" "term/apollo.el" (12984 29555)) | |
11586 ;;; Generated autoloads from term/apollo.el | |
11587 | |
11588 ;;;*** | |
11589 | |
11590 ;;;### (autoloads nil "bg-mouse" "term/bg-mouse.el" (12984 29555)) | |
11591 ;;; Generated autoloads from term/bg-mouse.el | |
11592 | |
11593 ;;;*** | |
11594 | |
11595 ;;;### (autoloads nil "bobcat" "term/bobcat.el" (12984 29555)) | |
11596 ;;; Generated autoloads from term/bobcat.el | |
11597 | |
11598 ;;;*** | |
11599 | |
11600 ;;;### (autoloads nil "internal" "term/internal.el" (12984 29555)) | |
11601 ;;; Generated autoloads from term/internal.el | |
11602 | |
11603 ;;;*** | |
11604 | |
11605 ;;;### (autoloads nil "keyswap" "term/keyswap.el" (12984 29555)) | |
11606 ;;; Generated autoloads from term/keyswap.el | |
11607 | |
11608 ;;;*** | |
11609 | |
11610 ;;;### (autoloads nil "linux" "term/linux.el" (12988 19753)) | |
11611 ;;; Generated autoloads from term/linux.el | |
11612 | |
11613 ;;;*** | |
11614 | |
11615 ;;;### (autoloads nil "lk201" "term/lk201.el" (12988 19753)) | |
11616 ;;; Generated autoloads from term/lk201.el | |
11617 | |
11618 ;;;*** | |
11619 | |
11620 ;;;### (autoloads nil "news" "term/news.el" (12988 19752)) | |
11621 ;;; Generated autoloads from term/news.el | |
11622 | |
11623 ;;;*** | |
11624 | |
11625 ;;;### (autoloads nil "pc-win" "term/pc-win.el" (12984 29555)) | |
11626 ;;; Generated autoloads from term/pc-win.el | |
11627 | |
11628 ;;;*** | |
11629 | |
11630 ;;;### (autoloads nil "scoansi" "term/scoansi.el" (12984 29555)) | |
11631 ;;; Generated autoloads from term/scoansi.el | |
11632 | |
11633 ;;;*** | |
11634 | |
11635 ;;;*** | |
11636 | |
11637 ;;;### (autoloads nil "sun-mouse" "term/sun-mouse.el" (12984 29555)) | |
11638 ;;; Generated autoloads from term/sun-mouse.el | |
11639 | |
11640 ;;;*** | |
11641 | |
11642 ;;;### (autoloads nil "sun" "term/sun.el" (12984 29555)) | |
11643 ;;; Generated autoloads from term/sun.el | |
11644 | |
11645 ;;;*** | |
11646 | |
11647 ;;;### (autoloads nil "sup-mouse" "term/sup-mouse.el" (12984 29555)) | |
11648 ;;; Generated autoloads from term/sup-mouse.el | |
11649 | |
11650 ;;;*** | |
11651 | |
11652 ;;;*** | |
11653 | |
11654 ;;;### (autoloads nil "tty-init" "term/tty-init.el" (12984 29555)) | |
11655 ;;; Generated autoloads from term/tty-init.el | |
11656 | |
11657 ;;;*** | |
11658 | |
11659 ;;;### (autoloads nil "tvi970" "term/tvi970.el" (12988 19754)) | |
11660 ;;; Generated autoloads from term/tvi970.el | |
11661 | |
11662 ;;;*** | |
11663 | |
11664 ;;;### (autoloads nil "vt-control" "term/vt-control.el" (12984 29555)) | |
11665 ;;; Generated autoloads from term/vt-control.el | |
11666 | |
11667 ;;;*** | |
11668 | |
11669 ;;;### (autoloads nil "vt100-led" "term/vt100-led.el" (12984 29555)) | |
11670 ;;; Generated autoloads from term/vt100-led.el | |
11671 | |
11672 ;;;*** | |
11673 | |
11674 ;;;### (autoloads nil "vt100" "term/vt100.el" (12984 29555)) | |
11675 ;;; Generated autoloads from term/vt100.el | |
11676 | |
11677 ;;;*** | |
11678 | |
11679 ;;;### (autoloads nil "vt102" "term/vt102.el" (12984 29555)) | |
11680 ;;; Generated autoloads from term/vt102.el | |
11681 | |
11682 ;;;*** | |
11683 | |
11684 ;;;### (autoloads nil "vt125" "term/vt125.el" (12984 29555)) | |
11685 ;;; Generated autoloads from term/vt125.el | |
11686 | |
11687 ;;;*** | |
11688 | |
11689 ;;;### (autoloads nil "vt200" "term/vt200.el" (12984 29555)) | |
11690 ;;; Generated autoloads from term/vt200.el | |
11691 | |
11692 ;;;*** | |
11693 | |
11694 ;;;### (autoloads nil "vt201" "term/vt201.el" (12984 29555)) | |
11695 ;;; Generated autoloads from term/vt201.el | |
11696 | |
11697 ;;;*** | |
11698 | |
11699 ;;;### (autoloads nil "vt220" "term/vt220.el" (12984 29555)) | |
11700 ;;; Generated autoloads from term/vt220.el | |
11701 | |
11702 ;;;*** | |
11703 | |
11704 ;;;### (autoloads nil "vt240" "term/vt240.el" (12984 29555)) | |
11705 ;;; Generated autoloads from term/vt240.el | |
11706 | |
11707 ;;;*** | |
11708 | |
11709 ;;;### (autoloads nil "vt300" "term/vt300.el" (12984 29555)) | |
11710 ;;; Generated autoloads from term/vt300.el | |
11711 | |
11712 ;;;*** | |
11713 | |
11714 ;;;### (autoloads nil "vt320" "term/vt320.el" (12984 29555)) | |
11715 ;;; Generated autoloads from term/vt320.el | |
11716 | |
11717 ;;;*** | |
11718 | |
11719 ;;;### (autoloads nil "vt400" "term/vt400.el" (12984 29555)) | |
11720 ;;; Generated autoloads from term/vt400.el | |
11721 | |
11722 ;;;*** | |
11723 | |
11724 ;;;### (autoloads nil "vt420" "term/vt420.el" (12984 29555)) | |
11725 ;;; Generated autoloads from term/vt420.el | |
11726 | |
11727 ;;;*** | |
11728 | |
11729 ;;;### (autoloads nil "win32-win" "term/win32-win.el" (12984 29555)) | |
11730 ;;; Generated autoloads from term/win32-win.el | |
11731 | |
11732 ;;;*** | |
11733 | |
11734 ;;;### (autoloads nil "wyse50" "term/wyse50.el" (12984 29555)) | |
11735 ;;; Generated autoloads from term/wyse50.el | |
11736 | |
11737 ;;;*** | |
11738 | |
11739 ;;;### (autoloads nil "xterm" "term/xterm.el" (12988 19756)) | |
11740 ;;; Generated autoloads from term/xterm.el | |
11741 | |
11742 ;;;*** | |
11743 | |
11744 ;;;*** | |
11745 | |
11746 ;;;### (autoloads nil "cless" "tl/cless.el" (12996 50654)) | |
11747 ;;; Generated autoloads from tl/cless.el | |
11748 | |
11749 ;;;*** | |
11750 | |
11751 ;;;### (autoloads nil "emu-e19" "tl/emu-e19.el" (12996 50654)) | |
11752 ;;; Generated autoloads from tl/emu-e19.el | |
11753 | |
11754 ;;;*** | |
11755 | |
11756 ;;;### (autoloads nil "emu-x20" "tl/emu-x20.el" (12996 50654)) | |
11757 ;;; Generated autoloads from tl/emu-x20.el | |
11758 | |
11759 ;;;*** | |
11760 | |
11761 ;;;### (autoloads nil "emu-xemacs" "tl/emu-xemacs.el" (12996 50654)) | |
11762 ;;; Generated autoloads from tl/emu-xemacs.el | |
11763 | |
11764 ;;;*** | |
11765 | |
11766 ;;;### (autoloads nil "emu" "tl/emu.el" (12996 50654)) | |
11767 ;;; Generated autoloads from tl/emu.el | |
11768 | |
11769 ;;;*** | |
11770 | |
11771 ;;;### (autoloads nil "file-detect" "tl/file-detect.el" (12996 50654)) | |
11772 ;;; Generated autoloads from tl/file-detect.el | |
11773 | |
11774 ;;;*** | |
11775 | |
11776 ;;;### (autoloads nil "filename" "tl/filename.el" (12996 50654)) | |
11777 ;;; Generated autoloads from tl/filename.el | |
11778 | |
11779 ;;;*** | |
11780 | |
11781 ;;;### (autoloads nil "range" "tl/range.el" (12996 50654)) | |
11782 ;;; Generated autoloads from tl/range.el | |
11783 | |
11784 ;;;*** | |
11785 | |
11786 ;;;### (autoloads nil "richtext" "tl/richtext.el" (12996 50654)) | |
11787 ;;; Generated autoloads from tl/richtext.el | |
11788 | |
11789 ;;;*** | |
11790 | |
11791 ;;;### (autoloads nil "texi-util" "tl/texi-util.el" (12996 50654)) | |
11792 ;;; Generated autoloads from tl/texi-util.el | |
11793 | |
11794 ;;;*** | |
11795 | |
11796 ;;;### (autoloads nil "tl-atype" "tl/tl-atype.el" (12996 50654)) | |
11797 ;;; Generated autoloads from tl/tl-atype.el | |
11798 | |
11799 ;;;*** | |
11800 | |
11801 ;;;### (autoloads nil "tl-list" "tl/tl-list.el" (12996 50654)) | |
11802 ;;; Generated autoloads from tl/tl-list.el | |
11803 | |
11804 ;;;*** | |
11805 | |
11806 ;;;### (autoloads nil "tl-misc" "tl/tl-misc.el" (12996 50654)) | |
11807 ;;; Generated autoloads from tl/tl-misc.el | |
11808 | |
11809 ;;;*** | |
11810 | |
11811 ;;;### (autoloads nil "tl-num" "tl/tl-num.el" (12996 50654)) | |
11812 ;;; Generated autoloads from tl/tl-num.el | |
11813 | |
11814 ;;;*** | |
11815 | |
11816 ;;;### (autoloads nil "tl-seq" "tl/tl-seq.el" (12996 50654)) | |
11817 ;;; Generated autoloads from tl/tl-seq.el | |
11818 | |
11819 ;;;*** | |
11820 | |
11821 ;;;### (autoloads nil "tl-str" "tl/tl-str.el" (12996 50654)) | |
11822 ;;; Generated autoloads from tl/tl-str.el | |
11823 | |
11824 ;;;*** | |
11825 | |
11826 ;;;### (autoloads nil "tu-comment" "tl/tu-comment.el" (12996 50654)) | |
11827 ;;; Generated autoloads from tl/tu-comment.el | |
11828 | |
11829 ;;;*** | |
11830 | |
11831 ;;;### (autoloads nil "tu-replace" "tl/tu-replace.el" (12996 50654)) | |
11832 ;;; Generated autoloads from tl/tu-replace.el | |
11833 | |
11834 ;;;*** | |
11835 | |
11836 ;;;### (autoloads nil "gnus-art-mime" "tm/gnus-art-mime.el" (12996 50654)) | |
11837 ;;; Generated autoloads from tm/gnus-art-mime.el | |
11838 | |
11839 ;;;*** | |
11840 | |
11841 ;;;### (autoloads nil "gnus-charset" "tm/gnus-charset.el" (12996 50654)) | |
11842 ;;; Generated autoloads from tm/gnus-charset.el | |
11843 | |
11844 ;;;*** | |
11845 | |
11846 ;;;### (autoloads nil "gnus-mime-old" "tm/gnus-mime-old.el" (12996 50654)) | |
11847 ;;; Generated autoloads from tm/gnus-mime-old.el | |
11848 | |
11849 ;;;*** | |
11850 | |
11851 ;;;### (autoloads nil "gnus-mime" "tm/gnus-mime.el" (12996 50654)) | |
11852 ;;; Generated autoloads from tm/gnus-mime.el | |
11853 | |
11854 ;;;*** | |
11855 | |
11856 ;;;### (autoloads nil "gnus-sum-mime" "tm/gnus-sum-mime.el" (12996 50654)) | |
11857 ;;; Generated autoloads from tm/gnus-sum-mime.el | |
11858 | |
11859 ;;;*** | |
11860 | |
11861 ;;;### (autoloads nil "message-mime" "tm/message-mime.el" (12996 50654)) | |
11862 ;;; Generated autoloads from tm/message-mime.el | |
11863 | |
11864 ;;;*** | |
11865 | |
11866 ;;;### (autoloads nil "mime-setup" "tm/mime-setup.el" (12996 50654)) | |
11867 ;;; Generated autoloads from tm/mime-setup.el | |
11868 | |
11869 ;;;*** | |
11870 | |
11871 ;;;### (autoloads nil "sc-setup" "tm/sc-setup.el" (12996 50655)) | |
11872 ;;; Generated autoloads from tm/sc-setup.el | |
11873 | |
11874 ;;;*** | |
11875 | |
11876 ;;;### (autoloads nil "signature" "tm/signature.el" (12996 50655)) | |
11877 ;;; Generated autoloads from tm/signature.el | |
11878 | |
11879 ;;;*** | |
11880 | |
11881 ;;;### (autoloads nil "tm-bbdb" "tm/tm-bbdb.el" (12996 50655)) | |
11882 ;;; Generated autoloads from tm/tm-bbdb.el | |
11883 | |
11884 ;;;*** | |
11885 | |
11886 ;;;### (autoloads nil "tm-def" "tm/tm-def.el" (12996 50655)) | |
11887 ;;; Generated autoloads from tm/tm-def.el | |
11888 | |
11889 ;;;*** | |
11890 | |
11891 ;;;### (autoloads nil "tm-edit-mc" "tm/tm-edit-mc.el" (12996 50655)) | |
11892 ;;; Generated autoloads from tm/tm-edit-mc.el | |
11893 | |
11894 ;;;*** | |
11895 | |
11896 ;;;### (autoloads nil "tm-edit-tipgp" "tm/tm-edit-tipgp.el" (12996 50655)) | |
11897 ;;; Generated autoloads from tm/tm-edit-tipgp.el | |
11898 | |
11899 ;;;### (autoloads (mime/editor-mode) "tm-edit" "tm/tm-edit.el" (12997 33619)) | |
11900 ;;; Generated autoloads from tm/tm-edit.el | |
11901 | |
11902 (autoload 'mime/editor-mode "tm-edit" "\ | |
11903 MIME minor mode for editing the tagged MIME message. | |
11904 | |
11905 In this mode, basically, the message is composed in the tagged MIME | |
11906 format. The message tag looks like: | |
11907 | |
11908 --[[text/plain; charset=ISO-2022-JP][7bit]] | |
11909 | |
11910 The tag specifies the MIME content type, subtype, optional parameters | |
11911 and transfer encoding of the message following the tag. Messages | |
11912 without any tag are treated as `text/plain' by default. Charset and | |
11913 transfer encoding are automatically defined unless explicitly | |
11914 specified. Binary messages such as audio and image are usually hidden. | |
11915 The messages in the tagged MIME format are automatically translated | |
11916 into a MIME compliant message when exiting this mode. | |
11917 | |
11918 Available charsets depend on Emacs version being used. The following | |
11919 lists the available charsets of each emacs. | |
11920 | |
11921 EMACS 18: US-ASCII is only available. | |
11922 NEmacs: US-ASCII and ISO-2022-JP are available. | |
11923 EMACS 19: US-ASCII and ISO-8859-1 (or other charset) are available. | |
11924 XEmacs 19: US-ASCII and ISO-8859-1 (or other charset) are available. | |
11925 Mule: US-ASCII, ISO-8859-* (except for ISO-8859-5), KOI8-R, | |
11926 ISO-2022-JP, ISO-2022-JP-2, ISO-2022-KR, BIG5 and | |
11927 ISO-2022-INT-1 are available. | |
11928 | |
11929 ISO-2022-JP-2 and ISO-2022-INT-1 charsets used in mule is expected to | |
11930 be used to represent multilingual text in intermixed manner. Any | |
11931 languages that has no registered charset are represented as either | |
11932 ISO-2022-JP-2 or ISO-2022-INT-1 in mule. | |
11933 | |
11934 If you want to use non-ISO-8859-1 charset in EMACS 19 or XEmacs 19, | |
11935 please set variable `default-mime-charset'. This variable must be | |
11936 symbol of which name is a MIME charset. | |
11937 | |
11938 If you want to add more charsets in mule, please set variable | |
11939 `charsets-mime-charset-alist'. This variable must be alist of which | |
11940 key is list of leading-char/charset and value is symbol of MIME | |
11941 charset. (leading-char is a term of MULE 1.* and 2.*. charset is a | |
11942 term of XEmacs/mule, mule merged EMACS and MULE 3.*) If name of | |
11943 coding-system is different as MIME charset, please set variable | |
11944 `mime-charset-coding-system-alist'. This variable must be alist of | |
11945 which key is MIME charset and value is coding-system. | |
11946 | |
11947 Following commands are available in addition to major mode commands: | |
11948 | |
11949 [make single part] | |
11950 \\[mime-editor/insert-text] insert a text message. | |
11951 \\[mime-editor/insert-file] insert a (binary) file. | |
11952 \\[mime-editor/insert-external] insert a reference to external body. | |
11953 \\[mime-editor/insert-voice] insert a voice message. | |
11954 \\[mime-editor/insert-message] insert a mail or news message. | |
11955 \\[mime-editor/insert-mail] insert a mail message. | |
11956 \\[mime-editor/insert-signature] insert a signature file at end. | |
11957 \\[mime-editor/insert-key] insert PGP public key. | |
11958 \\[mime-editor/insert-tag] insert a new MIME tag. | |
11959 | |
11960 [make enclosure (maybe multipart)] | |
11961 \\[mime-editor/enclose-alternative-region] enclose as multipart/alternative. | |
11962 \\[mime-editor/enclose-parallel-region] enclose as multipart/parallel. | |
11963 \\[mime-editor/enclose-mixed-region] enclose as multipart/mixed. | |
11964 \\[mime-editor/enclose-digest-region] enclose as multipart/digest. | |
11965 \\[mime-editor/enclose-signed-region] enclose as PGP signed. | |
11966 \\[mime-editor/enclose-encrypted-region] enclose as PGP encrypted. | |
11967 \\[mime-editor/enclose-quote-region] enclose as verbose mode (to avoid to expand tags) | |
11968 | |
11969 [other commands] | |
11970 \\[mime-editor/set-transfer-level-7bit] set transfer-level as 7. | |
11971 \\[mime-editor/set-transfer-level-8bit] set transfer-level as 8. | |
11972 \\[mime-editor/set-split] set message splitting mode. | |
11973 \\[mime-editor/set-sign] set PGP-sign mode. | |
11974 \\[mime-editor/set-encrypt] set PGP-encryption mode. | |
11975 \\[mime-editor/preview-message] preview editing MIME message. | |
11976 \\[mime-editor/exit] exit and translate into a MIME compliant message. | |
11977 \\[mime-editor/help] show this help. | |
11978 \\[mime-editor/maybe-translate] exit and translate if in MIME mode, then split. | |
11979 | |
11980 Additional commands are available in some major modes: | |
11981 C-c C-c exit, translate and run the original command. | |
11982 C-c C-s exit, translate and run the original command. | |
11983 | |
11984 The following is a message example written in the tagged MIME format. | |
11985 TABs at the beginning of the line are not a part of the message: | |
11986 | |
11987 This is a conventional plain text. It should be translated | |
11988 into text/plain. | |
11989 --[[text/plain]] | |
11990 This is also a plain text. But, it is explicitly specified as | |
11991 is. | |
11992 --[[text/richtext]] | |
11993 <center>This is a richtext.</center> | |
11994 --[[image/gif][base64]]^M...image encoded in base64 here... | |
11995 --[[audio/basic][base64]]^M...audio encoded in base64 here... | |
11996 | |
11997 User customizable variables (not documented all of them): | |
11998 mime-prefix | |
11999 Specifies a key prefix for MIME minor mode commands. | |
12000 | |
12001 mime-ignore-preceding-spaces | |
12002 Preceding white spaces in a message body are ignored if non-nil. | |
12003 | |
12004 mime-ignore-trailing-spaces | |
12005 Trailing white spaces in a message body are ignored if non-nil. | |
12006 | |
12007 mime-auto-hide-body | |
12008 Hide a non-textual body message encoded in base64 after insertion | |
12009 if non-nil. | |
12010 | |
12011 mime-editor/transfer-level | |
12012 A number of network transfer level. It should be bigger than 7. | |
12013 If you are in 8bit-through environment, please set 8. | |
12014 | |
12015 mime-editor/voice-recorder | |
12016 Specifies a function to record a voice message and encode it. | |
12017 The function `mime-editor/voice-recorder-for-sun' is for Sun | |
12018 SparcStations. | |
12019 | |
12020 mime/editor-mode-hook | |
12021 Turning on MIME mode calls the value of mime/editor-mode-hook, if | |
12022 it is non-nil. | |
12023 | |
12024 mime-editor/translate-hook | |
12025 The value of mime-editor/translate-hook is called just before translating | |
12026 the tagged MIME format into a MIME compliant message if it is | |
12027 non-nil. If the hook call the function mime-editor/insert-signature, | |
12028 the signature file will be inserted automatically. | |
12029 | |
12030 mime-editor/exit-hook | |
12031 Turning off MIME mode calls the value of mime-editor/exit-hook, if it is | |
12032 non-nil." t nil) | |
12033 | |
12034 (defalias 'edit-mime 'mime/editor-mode) | |
12035 | |
12036 ;;;*** | |
12037 | |
12038 ;;;*** | |
12039 | |
12040 ;;;*** | |
12041 | |
12042 ;;;### (autoloads nil "tm-ew-d" "tm/tm-ew-d.el" (12996 50655)) | |
12043 ;;; Generated autoloads from tm/tm-ew-d.el | |
12044 | |
12045 ;;;*** | |
12046 | |
12047 ;;;### (autoloads nil "tm-ew-e" "tm/tm-ew-e.el" (12996 50655)) | |
12048 ;;; Generated autoloads from tm/tm-ew-e.el | |
12049 | |
12050 ;;;*** | |
12051 | |
12052 ;;;### (autoloads nil "tm-file" "tm/tm-file.el" (12996 50655)) | |
12053 ;;; Generated autoloads from tm/tm-file.el | |
12054 | |
12055 ;;;*** | |
12056 | |
12057 ;;;### (autoloads nil "tm-ftp" "tm/tm-ftp.el" (12996 50655)) | |
12058 ;;; Generated autoloads from tm/tm-ftp.el | |
12059 | |
12060 ;;;*** | |
12061 | |
12062 ;;;### (autoloads nil "tm-html" "tm/tm-html.el" (12996 50655)) | |
12063 ;;; Generated autoloads from tm/tm-html.el | |
12064 | |
12065 ;;;*** | |
12066 | |
12067 ;;;### (autoloads nil "tm-image" "tm/tm-image.el" (12996 50655)) | |
12068 ;;; Generated autoloads from tm/tm-image.el | |
12069 | |
12070 ;;;*** | |
12071 | |
12072 ;;;### (autoloads nil "tm-latex" "tm/tm-latex.el" (12996 50655)) | |
12073 ;;; Generated autoloads from tm/tm-latex.el | |
12074 | |
12075 ;;;*** | |
12076 | |
12077 ;;;### (autoloads nil "tm-mail" "tm/tm-mail.el" (12996 50655)) | |
12078 ;;; Generated autoloads from tm/tm-mail.el | |
12079 | |
12080 ;;;*** | |
12081 | |
12082 ;;;### (autoloads nil "tm-mh-e" "tm/tm-mh-e.el" (12996 50655)) | |
12083 ;;; Generated autoloads from tm/tm-mh-e.el | |
12084 | |
12085 ;;;*** | |
12086 | |
12087 ;;;### (autoloads nil "tm-parse" "tm/tm-parse.el" (12996 50655)) | |
12088 ;;; Generated autoloads from tm/tm-parse.el | |
12089 | |
12090 ;;;*** | |
12091 | |
12092 ;;;### (autoloads nil "tm-partial" "tm/tm-partial.el" (12996 50655)) | |
12093 ;;; Generated autoloads from tm/tm-partial.el | |
12094 | |
12095 ;;;*** | |
12096 | |
12097 ;;;### (autoloads nil "tm-pgp" "tm/tm-pgp.el" (12996 50655)) | |
12098 ;;; Generated autoloads from tm/tm-pgp.el | |
12099 | |
12100 ;;;*** | |
12101 | |
12102 ;;;### (autoloads nil "tm-play" "tm/tm-play.el" (12996 50655)) | |
12103 ;;; Generated autoloads from tm/tm-play.el | |
12104 | |
12105 ;;;*** | |
12106 | |
12107 ;;;### (autoloads nil "tm-rmail" "tm/tm-rmail.el" (12996 50655)) | |
12108 ;;; Generated autoloads from tm/tm-rmail.el | |
12109 | |
12110 ;;;*** | |
12111 | |
12112 ;;;### (autoloads nil "tm-setup" "tm/tm-setup.el" (12996 50655)) | |
12113 ;;; Generated autoloads from tm/tm-setup.el | |
12114 | |
12115 ;;;*** | |
12116 | |
12117 ;;;### (autoloads nil "tm-tar" "tm/tm-tar.el" (12996 50655)) | |
12118 ;;; Generated autoloads from tm/tm-tar.el | |
12119 | |
12120 ;;;*** | |
12121 | |
12122 ;;;### (autoloads nil "tm-text" "tm/tm-text.el" (12996 50655)) | |
12123 ;;; Generated autoloads from tm/tm-text.el | |
12124 | |
12125 ;;;*** | |
12126 | |
12127 ;;;### (autoloads nil "tm-view" "tm/tm-view.el" (12996 50655)) | |
12128 ;;; Generated autoloads from tm/tm-view.el | |
12129 | |
12130 ;;;*** | |
12131 | |
12132 ;;;### (autoloads nil "tm-vm" "tm/tm-vm.el" (12996 50655)) | |
12133 ;;; Generated autoloads from tm/tm-vm.el | |
12134 | |
12135 ;;;*** | |
12136 | |
12137 ;;;### (autoloads nil "tmh-comp" "tm/tmh-comp.el" (12996 50655)) | |
12138 ;;; Generated autoloads from tm/tmh-comp.el | |
12139 | |
12140 ;;;### (autoloads nil "tooltalk-init" "tooltalk/tooltalk-init.el" (12984 29562)) | |
12141 ;;; Generated autoloads from tooltalk/tooltalk-init.el | |
12142 | |
12143 ;;;*** | |
12144 | |
12145 ;;;### (autoloads nil "tooltalk-load" "tooltalk/tooltalk-load.el" (12984 29562)) | |
12146 ;;; Generated autoloads from tooltalk/tooltalk-load.el | |
12147 | |
12148 ;;;*** | |
12149 | |
12150 ;;;### (autoloads nil "tooltalk-macros" "tooltalk/tooltalk-macros.el" (12984 29562)) | |
12151 ;;; Generated autoloads from tooltalk/tooltalk-macros.el | |
12152 | |
12153 ;;;*** | |
12154 | |
12155 ;;;### (autoloads nil "tooltalk-util" "tooltalk/tooltalk-util.el" (12984 29562)) | |
12156 ;;; Generated autoloads from tooltalk/tooltalk-util.el | |
12157 | |
12158 ;;;*** | |
12159 | |
12160 ;;;### (autoloads nil "base64" "url/base64.el" (12984 29590)) | |
12161 ;;; Generated autoloads from url/base64.el | |
12162 | |
12163 ;;;*** | |
12164 | |
12165 ;;;### (autoloads nil "docomp" "url/docomp.el" (12984 29591)) | |
12166 ;;; Generated autoloads from url/docomp.el | |
12167 | |
12168 ;;;*** | |
12169 | |
12170 ;;;### (autoloads nil "md5" "url/md5.el" (12984 29590)) | |
12171 ;;; Generated autoloads from url/md5.el | |
12172 | |
12173 ;;;*** | |
12174 | |
12175 ;;;*** | |
12176 | |
12177 ;;;*** | |
12178 | |
12179 ;;;### (autoloads nil "mm" "url/mm.el" (12984 29590)) | |
12180 ;;; Generated autoloads from url/mm.el | |
12181 | |
12182 ;;;*** | |
12183 | |
12184 ;;;*** | |
12185 | |
12186 ;;;### (autoloads nil "ssl" "url/ssl.el" (12984 29590)) | |
12187 ;;; Generated autoloads from url/ssl.el | |
12188 | |
12189 ;;;*** | |
12190 | |
12191 ;;;### (autoloads nil "url-cookie" "url/url-cookie.el" (12984 29591)) | |
12192 ;;; Generated autoloads from url/url-cookie.el | |
12193 | |
12194 ;;;*** | |
12195 | |
12196 ;;;### (autoloads nil "url-file" "url/url-file.el" (12984 29591)) | |
12197 ;;; Generated autoloads from url/url-file.el | |
12198 | |
12199 ;;;*** | |
12200 | |
12201 ;;;*** | |
12202 | |
12203 ;;;### (autoloads nil "url-gopher" "url/url-gopher.el" (12984 29591)) | |
12204 ;;; Generated autoloads from url/url-gopher.el | |
12205 | |
12206 ;;;*** | |
12207 | |
12208 ;;;### (autoloads nil "url-hash" "url/url-hash.el" (12984 29591)) | |
12209 ;;; Generated autoloads from url/url-hash.el | |
12210 | |
12211 ;;;*** | |
12212 | |
12213 ;;;### (autoloads nil "url-http" "url/url-http.el" (12984 29591)) | |
12214 ;;; Generated autoloads from url/url-http.el | |
12215 | |
12216 ;;;*** | |
12217 | |
12218 ;;;### (autoloads nil "url-irc" "url/url-irc.el" (12984 29591)) | |
12219 ;;; Generated autoloads from url/url-irc.el | |
12220 | |
12221 ;;;*** | |
12222 | |
12223 ;;;### (autoloads nil "url-mail" "url/url-mail.el" (12984 29591)) | |
12224 ;;; Generated autoloads from url/url-mail.el | |
12225 | |
12226 ;;;*** | |
12227 | |
12228 ;;;*** | |
12229 | |
12230 ;;;*** | |
12231 | |
12232 ;;;### (autoloads nil "url-misc" "url/url-misc.el" (12984 29591)) | |
12233 ;;; Generated autoloads from url/url-misc.el | |
12234 | |
12235 ;;;*** | |
12236 | |
12237 ;;;### (autoloads nil "url-news" "url/url-news.el" (12984 29591)) | |
12238 ;;; Generated autoloads from url/url-news.el | |
12239 | |
12240 ;;;*** | |
12241 | |
12242 ;;;### (autoloads nil "url-nfs" "url/url-nfs.el" (12984 29591)) | |
12243 ;;; Generated autoloads from url/url-nfs.el | |
12244 | |
12245 ;;;*** | |
12246 | |
12247 ;;;### (autoloads nil "url-parse" "url/url-parse.el" (12984 29591)) | |
12248 ;;; Generated autoloads from url/url-parse.el | |
12249 | |
12250 ;;;*** | |
12251 | |
12252 ;;;### (autoloads nil "url-pgp" "url/url-pgp.el" (12984 29591)) | |
12253 ;;; Generated autoloads from url/url-pgp.el | |
12254 | |
12255 ;;;*** | |
12256 | |
12257 ;;;*** | |
12258 | |
12259 ;;;*** | |
12260 | |
12261 ;;;### (autoloads nil "url-sysdp" "url/url-sysdp.el" (12984 29591)) | |
12262 ;;; Generated autoloads from url/url-sysdp.el | |
12263 | |
12264 ;;;*** | |
12265 | |
12266 ;;;### (autoloads nil "url-vars" "url/url-vars.el" (12984 29591)) | |
12267 ;;; Generated autoloads from url/url-vars.el | |
12268 | |
12269 ;;;*** | |
12270 | |
12271 ;;;### (autoloads nil "url-wais" "url/url-wais.el" (12984 29591)) | |
12272 ;;; Generated autoloads from url/url-wais.el | |
12273 | |
12274 | |
12275 ;;; Generated autoloads from url/urlauth.el | |
12276 | |
12277 ;;;*** | |
12278 | |
12279 ;;;*** | |
12280 | |
12281 ;;;### (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" (12984 29590)) | |
12282 ;;; Generated autoloads from url/url.el | |
12283 | |
12284 (autoload 'url-file-attributes "url" "\ | |
12285 Return a list of attributes of URL. | |
12286 Value is nil if specified file cannot be opened. | |
12287 Otherwise, list elements are: | |
12288 0. t for directory, string (name linked to) for symbolic link, or nil. | |
12289 1. Number of links to file. | |
12290 2. File uid. | |
12291 3. File gid. | |
12292 4. Last access time, as a list of two integers. | |
12293 First integer has high-order 16 bits of time, second has low 16 bits. | |
12294 5. Last modification time, likewise. | |
12295 6. Last status change time, likewise. | |
12296 7. Size in bytes. (-1, if number is out of range). | |
12297 8. File modes, as a string of ten letters or dashes as in ls -l. | |
12298 If URL is on an http server, this will return the content-type if possible. | |
12299 9. t iff file's gid would change if file were deleted and recreated. | |
12300 10. inode number. | |
12301 11. Device number. | |
12302 | |
12303 If file does not exist, returns nil." nil nil) | |
12304 | |
12305 (autoload 'url-normalize-url "url" "\ | |
12306 Return a 'normalized' version of URL. This strips out default port | |
12307 numbers, etc." nil nil) | |
12308 | |
12309 (autoload 'url-buffer-visiting "url" "\ | |
12310 Return the name of a buffer (if any) that is visiting URL." nil nil) | |
12311 | |
12312 (autoload 'url-get-url-at-point "url" "\ | |
12313 Get the URL closest to point, but don't change your | |
12314 position. Has a preference for looking backward when not | |
12315 directly on a symbol." nil nil) | |
12316 | |
12317 (autoload 'url-popup-info "url" "\ | |
12318 Retrieve the HTTP/1.0 headers and display them in a temp buffer." nil nil) | |
12319 | |
12320 (autoload 'url-cache-expired "url" "\ | |
12321 Return t iff a cached file has expired." nil nil) | |
12322 | |
12323 (autoload 'url-retrieve "url" "\ | |
12324 Retrieve a document over the World Wide Web. | |
12325 The document should be specified by its fully specified | |
12326 Uniform Resource Locator. No parsing is done, just return the | |
12327 document as the server sent it. The document is left in the | |
12328 buffer specified by url-working-buffer. url-working-buffer is killed | |
12329 immediately before starting the transfer, so that no buffer-local | |
12330 variables interfere with the retrieval. HTTP/1.0 redirection will | |
12331 be honored before this function exits." nil nil) | |
12332 | |
12333 ;;;*** | |
12334 | |
12335 ;;;*** | |
12336 | |
12337 ;;;### (autoloads nil "urlauth" "url/urlauth.el" (12984 29590)) | |
12338 ;;; Generated autoloads from url/urlauth.el | |
12339 | |
12340 ;;;*** | |
12341 | |
12342 ;;;### (autoloads nil "abbrevlist" "utils/abbrevlist.el" (12984 29556)) | |
12343 ;;; Generated autoloads from utils/abbrevlist.el | |
12344 | |
12345 ;;;### (autoloads (defadvice ad-add-advice) "advice" "utils/advice.el" (12984 29556)) | |
12346 ;;; Generated autoloads from utils/advice.el | |
12347 | |
12348 (defvar ad-redefinition-action 'warn "\ | |
12349 *Defines what to do with redefinitions during Advice de/activation. | |
12350 Redefinition occurs if a previously activated function that already has an | |
12351 original definition associated with it gets redefined and then de/activated. | |
12352 In such a case we can either accept the current definition as the new | |
12353 original definition, discard the current definition and replace it with the | |
12354 old original, or keep it and raise an error. The values `accept', `discard', | |
12355 `error' or `warn' govern what will be done. `warn' is just like `accept' but | |
12356 it additionally prints a warning message. All other values will be | |
12357 interpreted as `error'.") | |
12358 | |
12359 (defvar ad-default-compilation-action 'maybe "\ | |
12360 *Defines whether to compile advised definitions during activation. | |
12361 A value of `always' will result in unconditional compilation, `never' will | |
12362 always avoid compilation, `maybe' will compile if the byte-compiler is already | |
12363 loaded, and `like-original' will compile if the original definition of the | |
12364 advised function is compiled or a built-in function. Every other value will | |
12365 be interpreted as `maybe'. This variable will only be considered if the | |
12366 COMPILE argument of `ad-activate' was supplied as nil.") | |
12367 | |
12368 (autoload 'ad-add-advice "advice" "\ | |
12369 Adds a piece of ADVICE to FUNCTION's list of advices in CLASS. | |
12370 If FUNCTION already has one or more pieces of advice of the specified | |
12371 CLASS then POSITION determines where the new piece will go. The value | |
12372 of POSITION can either be `first', `last' or a number where 0 corresponds | |
12373 to `first'. Numbers outside the range will be mapped to the closest | |
12374 extreme position. If there was already a piece of ADVICE with the same | |
12375 name, then the position argument will be ignored and the old advice | |
12376 will be overwritten with the new one. | |
12377 If the FUNCTION was not advised already, then its advice info will be | |
12378 initialized. Redefining a piece of advice whose name is part of the cache-id | |
12379 will clear the cache." nil nil) | |
12380 | |
12381 (autoload 'defadvice "advice" "\ | |
12382 Defines a piece of advice for FUNCTION (a symbol). | |
12383 The syntax of `defadvice' is as follows: | |
12384 | |
12385 (defadvice FUNCTION (CLASS NAME [POSITION] [ARGLIST] FLAG...) | |
12386 [DOCSTRING] [INTERACTIVE-FORM] | |
12387 BODY... ) | |
12388 | |
12389 FUNCTION ::= Name of the function to be advised. | |
12390 CLASS ::= `before' | `around' | `after' | `activation' | `deactivation'. | |
12391 NAME ::= Non-nil symbol that names this piece of advice. | |
12392 POSITION ::= `first' | `last' | NUMBER. Optional, defaults to `first', | |
12393 see also `ad-add-advice'. | |
12394 ARGLIST ::= An optional argument list to be used for the advised function | |
12395 instead of the argument list of the original. The first one found in | |
12396 before/around/after-advices will be used. | |
12397 FLAG ::= `protect'|`disable'|`activate'|`compile'|`preactivate'|`freeze'. | |
12398 All flags can be specified with unambiguous initial substrings. | |
12399 DOCSTRING ::= Optional documentation for this piece of advice. | |
12400 INTERACTIVE-FORM ::= Optional interactive form to be used for the advised | |
12401 function. The first one found in before/around/after-advices will be used. | |
12402 BODY ::= Any s-expression. | |
12403 | |
12404 Semantics of the various flags: | |
12405 `protect': The piece of advice will be protected against non-local exits in | |
12406 any code that precedes it. If any around-advice of a function is protected | |
12407 then automatically all around-advices will be protected (the complete onion). | |
12408 | |
12409 `activate': All advice of FUNCTION will be activated immediately if | |
12410 FUNCTION has been properly defined prior to this application of `defadvice'. | |
12411 | |
12412 `compile': In conjunction with `activate' specifies that the resulting | |
12413 advised function should be compiled. | |
12414 | |
12415 `disable': The defined advice will be disabled, hence, it will not be used | |
12416 during activation until somebody enables it. | |
12417 | |
12418 `preactivate': Preactivates the advised FUNCTION at macro-expansion/compile | |
12419 time. This generates a compiled advised definition according to the current | |
12420 advice state that will be used during activation if appropriate. Only use | |
12421 this if the `defadvice' gets actually compiled. | |
12422 | |
12423 `freeze': Expands the `defadvice' into a redefining `defun/defmacro' according | |
12424 to this particular single advice. No other advice information will be saved. | |
12425 Frozen advices cannot be undone, they behave like a hard redefinition of | |
12426 the advised function. `freeze' implies `activate' and `preactivate'. The | |
12427 documentation of the advised function can be dumped onto the `DOC' file | |
12428 during preloading. | |
12429 | |
12430 Look at the file `advice.el' for comprehensive documentation." nil 'macro) | |
12431 | |
12432 ;;;*** | |
12433 | |
12434 ;;;### (autoloads (all-annotations annotation-list annotations-at annotations-in-region annotation-at annotationp delete-annotation make-annotation) "annotations" "utils/annotations.el" (12984 29556)) | |
12435 ;;; Generated autoloads from utils/annotations.el | |
12436 | |
12437 (defvar make-annotation-hook nil "\ | |
12438 *Function or functions to run immediately after creating an annotation.") | |
12439 | |
12440 (defvar before-delete-annotation-hook nil "\ | |
12441 *Function or functions to run immediately before deleting an annotation.") | |
12442 | |
12443 (defvar after-delete-annotation-hook nil "\ | |
12444 *Function or functions to run immediately after deleting an annotation.") | |
12445 | |
12446 (autoload 'make-annotation "annotations" "\ | |
12447 Create a marginal annotation, displayed using GLYPH, at position POS. | |
12448 GLYPH may be either a glyph object or a string. Use layout policy | |
12449 LAYOUT and place the annotation in buffer BUFFER. If POS is nil, point is | |
12450 used. If LAYOUT is nil, `whitespace' is used. If BUFFER is nil, the | |
12451 current buffer is used. If WITH-EVENT is non-nil, then when an annotation | |
12452 is activated, the triggering event is passed as the second arg to the | |
12453 annotation function. If D-GLYPH is non-nil then it is used as the glyph | |
12454 that will be displayed when button1 is down. If RIGHTP is non-nil then | |
12455 the glyph will be displayed on the right side of the buffer instead of the | |
12456 left." nil nil) | |
12457 | |
12458 (autoload 'delete-annotation "annotations" "\ | |
12459 Remove ANNOTATION from its buffer. This does not modify the buffer text." nil nil) | |
12460 | |
12461 (autoload 'annotationp "annotations" "\ | |
12462 T if OBJECT is an annotation." nil nil) | |
12463 | |
12464 (autoload 'annotation-at "annotations" "\ | |
12465 Return the first annotation at POS in BUFFER. | |
12466 BUFFER defaults to the current buffer. POS defaults to point in BUFFER." nil nil) | |
12467 | |
12468 (autoload 'annotations-in-region "annotations" "\ | |
12469 Return all annotations in BUFFER between START and END inclusively." nil nil) | |
12470 | |
12471 (autoload 'annotations-at "annotations" "\ | |
12472 Return a list of all annotations at POS in BUFFER. | |
12473 If BUFFER is nil, the current buffer is used. If POS is nil, point is used." nil nil) | |
12474 | |
12475 (autoload 'annotation-list "annotations" "\ | |
12476 Return a list of all annotations in BUFFER. | |
12477 If BUFFER is nil, the current buffer is used." nil nil) | |
12478 | |
12479 (autoload 'all-annotations "annotations" "\ | |
12480 Return a list of all annotations in existence." nil nil) | |
12481 | |
12482 ;;;*** | |
12483 | |
12484 ;;;*** | |
12485 | |
12486 ;;;*** | |
12487 | |
12488 ;;;*** | |
12489 | |
12490 ;;;### (autoloads nil "assoc" "utils/assoc.el" (12984 29557)) | |
12491 ;;; Generated autoloads from utils/assoc.el | |
12492 | |
12493 ;;;*** | |
12494 | |
12495 ;;;### (autoloads nil "atomic-extents" "utils/atomic-extents.el" (12984 29556)) | |
12496 ;;; Generated autoloads from utils/atomic-extents.el | |
12497 | |
12498 ;;;*** | |
12499 | |
12500 ;;;*** | |
12501 | |
12502 ;;;### (autoloads (batch-update-autoloads update-directory-autoloads update-autoloads-here update-file-autoloads generate-file-autoloads) "autoload" "utils/autoload.el" (12984 29556)) | |
12503 ;;; Generated autoloads from utils/autoload.el | |
12504 | |
12505 (autoload 'generate-file-autoloads "autoload" "\ | |
12506 Insert at point a loaddefs autoload section for FILE. | |
12507 autoloads are generated for defuns and defmacros in FILE | |
12508 marked by `generate-autoload-cookie' (which see). | |
12509 If FILE is being visited in a buffer, the contents of the buffer | |
12510 are used." t nil) | |
12511 | |
12512 (autoload 'update-file-autoloads "autoload" "\ | |
12513 Update the autoloads for FILE in `generated-autoload-file' | |
12514 \(which FILE might bind in its local variables)." t nil) | |
12515 | |
12516 (autoload 'update-autoloads-here "autoload" "\ | |
12517 Update sections of the current buffer generated by \\[update-file-autoloads]." t nil) | |
12518 | |
12519 (autoload 'update-directory-autoloads "autoload" "\ | |
12520 Run \\[update-file-autoloads] on each .el file in DIR." t nil) | |
12521 | |
12522 (autoload 'batch-update-autoloads "autoload" "\ | |
12523 Update the autoloads for the files or directories on the command line. | |
12524 Runs \\[update-file-autoloads] on files and \\[update-directory-autoloads] | |
12525 on directories. Must be used only with -batch, and kills Emacs on completion. | |
12526 Each file will be processed even if an error occurred previously. | |
12527 For example, invoke `emacs -batch -f batch-update-autoloads *.el'." nil nil) | |
12528 | |
12529 ;;;*** | |
12530 | |
12531 ;;;*** | |
12532 | |
12533 ;;;### (autoloads nil "bench" "utils/bench.el" (12988 19767)) | |
12534 ;;; Generated autoloads from utils/bench.el | |
12535 | |
12536 ;;;*** | |
12537 | |
12538 ;;;### (autoloads nil "blessmail" "utils/blessmail.el" (12984 29557)) | |
12539 ;;; Generated autoloads from utils/blessmail.el | |
12540 | |
12541 ;;;*** | |
12542 | |
12543 ;;;### (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" (12984 29557)) | |
12544 ;;; Generated autoloads from utils/browse-url.el | |
12545 | |
12546 (defvar browse-url-browser-function 'browse-url-w3 "\ | |
12547 *Function to display the current buffer in a WWW browser. | |
12548 Used by the `browse-url-at-point', `browse-url-at-mouse', and | |
12549 `browse-url-of-file' commands.") | |
12550 | |
12551 (autoload 'browse-url-netscape "browse-url" "\ | |
12552 Ask the Netscape WWW browser to load URL. | |
12553 | |
12554 Default to the URL around or before point. The strings in variable | |
12555 `browse-url-netscape-arguments' are also passed to Netscape. | |
12556 | |
12557 When called interactively, if variable `browse-url-new-window-p' is | |
12558 non-nil, load the document in a new Netscape window, otherwise use a | |
12559 random existing one. A non-nil interactive prefix argument reverses | |
12560 the effect of browse-url-new-window-p. | |
12561 | |
12562 When called non-interactively, optional second argument NEW-WINDOW is | |
12563 used instead of browse-url-new-window-p." t nil) | |
12564 | |
12565 (autoload 'browse-url-mosaic "browse-url" "\ | |
12566 Ask the XMosaic WWW browser to load URL. | |
12567 Default to the URL around or before point." t nil) | |
12568 | |
12569 (autoload 'browse-url-grail "browse-url" "\ | |
12570 Ask the Grail WWW browser to load URL. | |
12571 Default to the URL around or before point. Runs the program in the | |
12572 variable `browse-url-grail'." t nil) | |
12573 | |
12574 (autoload 'browse-url-iximosaic "browse-url" "\ | |
12575 Ask the IXIMosaic WWW browser to load URL. | |
12576 Default to the URL around or before point." t nil) | |
12577 | |
12578 (autoload 'browse-url-w3 "browse-url" "\ | |
12579 Ask the w3 WWW browser to load URL. | |
12580 Default to the URL around or before point." t nil) | |
12581 | |
12582 (autoload 'browse-url-lynx-xterm "browse-url" "\ | |
12583 Ask the Lynx WWW browser to load URL. | |
12584 Default to the URL around or before point. A new Lynx process is run | |
12585 in an Xterm window." t nil) | |
12586 | |
12587 (autoload 'browse-url-lynx-emacs "browse-url" "\ | |
12588 Ask the Lynx WWW browser to load URL. | |
12589 Default to the URL around or before point. Run a new Lynx process in | |
12590 an Emacs buffer." t nil) | |
12591 | |
12592 ;;;*** | |
12593 | |
12594 ;;;*** | |
12595 | |
12596 ;;;### (autoloads nil "crontab" "utils/crontab.el" (12984 29557)) | |
12597 ;;; Generated autoloads from utils/crontab.el | |
12598 | |
12599 ;;;*** | |
12600 | |
12601 ;;;*** | |
12602 | |
12603 ;;;*** | |
12604 | |
12605 ;;;### (autoloads nil "delbackspace" "utils/delbackspace.el" (12992 6938)) | |
12606 ;;; Generated autoloads from utils/delbackspace.el | |
12607 | |
12608 ;;;*** | |
12609 | |
12610 ;;;### (autoloads nil "derived" "utils/derived.el" (12984 29556)) | |
12611 ;;; Generated autoloads from utils/derived.el | |
12612 | |
12613 ;;;### (autoloads (docref-setup) "docref" "utils/docref.el" (12984 29557)) | |
12614 ;;; Generated autoloads from utils/docref.el | |
12615 | |
12616 (autoload 'docref-setup "docref" "\ | |
12617 Process docref cross-references in the current buffer. | |
12618 See also \\(f@docref-subst)." t nil) | |
12619 | |
12620 ;;;*** | |
12621 | |
12622 ;;;### (autoloads (easy-menu-define) "easymenu" "utils/easymenu.el" (12984 29557)) | |
12623 ;;; Generated autoloads from utils/easymenu.el | |
12624 | |
12625 (autoload 'easy-menu-define "easymenu" "\ | |
12626 Define a menu bar submenu in maps MAPS, according to MENU. | |
12627 The arguments SYMBOL and DOC are ignored; they are present for | |
12628 compatibility only. SYMBOL is not evaluated. In other Emacs versions | |
12629 these arguments may be used as a variable to hold the menu data, and a | |
12630 doc string for that variable. | |
12631 | |
12632 The first element of MENU must be a string. It is the menu bar item name. | |
12633 The rest of the elements are menu items. | |
12634 | |
12635 A menu item is usually a vector of three elements: [NAME CALLBACK ENABLE] | |
12636 | |
12637 NAME is a string--the menu item name. | |
12638 | |
12639 CALLBACK is a command to run when the item is chosen, | |
12640 or a list to evaluate when the item is chosen. | |
12641 | |
12642 ENABLE is an expression; the item is enabled for selection | |
12643 whenever this expression's value is non-nil. | |
12644 | |
12645 Alternatively, a menu item may have the form: | |
12646 | |
12647 [ NAME CALLBACK [ KEYWORD ARG ] ... ] | |
12648 | |
12649 Where KEYWORD is one of the symbol defined below. | |
12650 | |
12651 :keys KEYS | |
12652 | |
12653 KEYS is a string; a complex keyboard equivalent to this menu item. | |
12654 | |
12655 :active ENABLE | |
12656 | |
12657 ENABLE is an expression; the item is enabled for selection | |
12658 whenever this expression's value is non-nil. | |
12659 | |
12660 :suffix NAME | |
12661 | |
12662 NAME is a string; the name of an argument to CALLBACK. | |
12663 | |
12664 :style STYLE | |
12665 | |
12666 STYLE is a symbol describing the type of menu item. The following are | |
12667 defined: | |
12668 | |
12669 toggle: A checkbox. | |
12670 Currently just prepend the name with the string \"Toggle \". | |
12671 radio: A radio button. | |
12672 nil: An ordinary menu item. | |
12673 | |
12674 :selected SELECTED | |
12675 | |
12676 SELECTED is an expression; the checkbox or radio button is selected | |
12677 whenever this expression's value is non-nil. | |
12678 Currently just disable radio buttons, no effect on checkboxes. | |
12679 | |
12680 A menu item can be a string. Then that string appears in the menu as | |
12681 unselectable text. A string consisting solely of hyphens is displayed | |
12682 as a solid horizontal line. | |
12683 | |
12684 A menu item can be a list. It is treated as a submenu. | |
12685 The first element should be the submenu name. That's used as the | |
12686 menu item in the top-level menu. The cdr of the submenu list | |
12687 is a list of menu items, as above." nil 'macro) | |
12688 | |
12689 ;;;*** | |
12690 | |
12691 ;;;### (autoloads (elp-submit-bug-report elp-results elp-instrument-package elp-instrument-list elp-restore-function elp-instrument-function) "elp" "utils/elp.el" (12984 29556)) | |
12692 ;;; Generated autoloads from utils/elp.el | |
12693 | |
12694 (autoload 'elp-instrument-function "elp" "\ | |
12695 Instrument FUNSYM for profiling. | |
12696 FUNSYM must be a symbol of a defined function." t nil) | |
12697 | |
12698 (autoload 'elp-restore-function "elp" "\ | |
12699 Restore an instrumented function to its original definition. | |
12700 Argument FUNSYM is the symbol of a defined function." t nil) | |
12701 | |
12702 (autoload 'elp-instrument-list "elp" "\ | |
12703 Instrument for profiling, all functions in `elp-function-list'. | |
12704 Use optional LIST if provided instead." t nil) | |
12705 | |
12706 (autoload 'elp-instrument-package "elp" "\ | |
12707 Instrument for profiling, all functions which start with PREFIX. | |
12708 For example, to instrument all ELP functions, do the following: | |
12709 | |
12710 \\[elp-instrument-package] RET elp- RET" t nil) | |
12711 | |
12712 (autoload 'elp-results "elp" "\ | |
12713 Display current profiling results. | |
12714 If `elp-reset-after-results' is non-nil, then current profiling | |
12715 information for all instrumented functions are reset after results are | |
12716 displayed." t nil) | |
12717 | |
12718 (autoload 'elp-submit-bug-report "elp" "\ | |
12719 Submit via mail, a bug report on elp." t nil) | |
12720 | |
12721 ;;;*** | |
12722 | |
12723 ;;;### (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" (12984 29556)) | |
12724 ;;; Generated autoloads from utils/facemenu.el | |
12725 | |
12726 (defvar facemenu-menu nil "\ | |
12727 Facemenu top-level menu keymap.") | |
12728 | |
12729 (defvar facemenu-keymap (let ((map (make-sparse-keymap "Set face"))) (define-key map ?o 'facemenu-set-face) map) "\ | |
12730 Keymap for face-changing commands. | |
12731 `Facemenu-update' fills in the keymap according to the bindings | |
12732 requested in `facemenu-keybindings'.") | |
12733 | |
12734 (autoload 'facemenu-set-face "facemenu" "\ | |
12735 Add FACE to the region or next character typed. | |
12736 It will be added to the top of the face list; any faces lower on the list that | |
12737 will not show through at all will be removed. | |
12738 | |
12739 Interactively, the face to be used is read with the minibuffer. | |
12740 | |
12741 If the region is active and there is no prefix argument, | |
12742 this command sets the region to the requested face. | |
12743 | |
12744 Otherwise, this command specifies the face for the next character | |
12745 inserted. Moving point or switching buffers before | |
12746 typing a character to insert cancels the specification." t nil) | |
12747 | |
12748 (autoload 'facemenu-set-foreground "facemenu" "\ | |
12749 Set the foreground color of the region or next character typed. | |
12750 The color is prompted for. A face named `fg:color' is used (or created). | |
12751 If the region is active, it will be set to the requested face. If | |
12752 it is inactive (even if mark-even-if-inactive is set) the next | |
12753 character that is typed (via `self-insert-command') will be set to | |
12754 the selected face. Moving point or switching buffers before | |
12755 typing a character cancels the request." t nil) | |
12756 | |
12757 (autoload 'facemenu-set-background "facemenu" "\ | |
12758 Set the background color of the region or next character typed. | |
12759 The color is prompted for. A face named `bg:color' is used (or created). | |
12760 If the region is active, it will be set to the requested face. If | |
12761 it is inactive (even if mark-even-if-inactive is set) the next | |
12762 character that is typed (via `self-insert-command') will be set to | |
12763 the selected face. Moving point or switching buffers before | |
12764 typing a character cancels the request." t nil) | |
12765 | |
12766 (autoload 'facemenu-set-face-from-menu "facemenu" "\ | |
12767 Set the face of the region or next character typed. | |
12768 This function is designed to be called from a menu; the face to use | |
12769 is the menu item's name. | |
12770 | |
12771 If the region is active and there is no prefix argument, | |
12772 this command sets the region to the requested face. | |
12773 | |
12774 Otherwise, this command specifies the face for the next character | |
12775 inserted. Moving point or switching buffers before | |
12776 typing a character to insert cancels the specification." nil nil) | |
12777 | |
12778 (autoload 'facemenu-set-size-default "facemenu" nil t nil) | |
12779 | |
12780 (autoload 'facemenu-make-larger "facemenu" nil t nil) | |
12781 | |
12782 (autoload 'facemenu-make-smaller "facemenu" nil t nil) | |
12783 | |
12784 (autoload 'facemenu-make-much-larger "facemenu" nil t nil) | |
12785 | |
12786 (autoload 'facemenu-make-much-smaller "facemenu" nil t nil) | |
12787 | |
12788 (autoload 'facemenu-set-invisible "facemenu" "\ | |
12789 Make the region invisible. | |
12790 This sets the `invisible' text property; it can be undone with | |
12791 `facemenu-remove-special'." t nil) | |
12792 | |
12793 (autoload 'facemenu-set-intangible "facemenu" "\ | |
12794 Make the region intangible: disallow moving into it. | |
12795 This sets the `intangible' text property; it can be undone with | |
12796 `facemenu-remove-special'." t nil) | |
12797 | |
12798 (autoload 'facemenu-set-read-only "facemenu" "\ | |
12799 Make the region unmodifiable. | |
12800 This sets the `read-only' text property; it can be undone with | |
12801 `facemenu-remove-special'." t nil) | |
12802 | |
12803 (autoload 'facemenu-remove-props "facemenu" "\ | |
12804 Remove all text properties that facemenu added to region." t nil) | |
12805 | |
12806 (autoload 'facemenu-remove-special "facemenu" "\ | |
12807 Remove all the \"special\" text properties from the region. | |
12808 These special properties include `invisible', `intangible' and `read-only'." t nil) | |
12809 | |
12810 (autoload 'list-text-properties-at "facemenu" "\ | |
12811 Pop up a buffer listing text-properties at LOCATION." t nil) | |
12812 | |
12813 (autoload 'facemenu-read-color "facemenu" "\ | |
12814 Read a color using the minibuffer." nil nil) | |
12815 | |
12816 (autoload 'list-colors-display "facemenu" "\ | |
12817 Display names of defined colors, and show what they look like. | |
12818 If the optional argument LIST is non-nil, it should be a list of | |
12819 colors to display. Otherwise, this command computes a list | |
12820 of colors that the current display can handle." t nil) | |
12821 | |
12822 ;;;*** | |
12823 | |
12824 ;;;*** | |
12825 | |
12826 ;;;*** | |
12827 | |
12828 ;;;*** | |
12829 | |
12830 ;;;### (autoloads nil "find-gc" "utils/find-gc.el" (12984 29557)) | |
12831 ;;; Generated autoloads from utils/find-gc.el | |
12832 | |
12833 ;;;*** | |
12834 | |
12835 ;;;*** | |
12836 | |
12837 ;;;*** | |
12838 | |
12839 ;;;### (autoloads nil "finder-inf" "utils/finder-inf.el" (12984 29556)) | |
12840 ;;; Generated autoloads from utils/finder-inf.el | |
12841 | |
12842 ;;;*** | |
12843 | |
12844 ;;;### (autoloads nil "finder" "utils/finder.el" (12984 29557)) | |
12845 ;;; Generated autoloads from utils/finder.el | |
12846 | |
12847 ;;;*** | |
12848 | |
12849 ;;;*** | |
12850 | |
12851 ;;;### (autoloads (enable-flow-control-on enable-flow-control) "flow-ctrl" "utils/flow-ctrl.el" (12984 30059)) | |
12852 ;;; Generated autoloads from utils/flow-ctrl.el | |
12853 | |
12854 (autoload 'enable-flow-control "flow-ctrl" "\ | |
12855 Toggle flow control handling. | |
12856 When handling is enabled, user can type C-s as C-\\, and C-q as C-^. | |
12857 With arg, enable flow control mode if arg is positive, otherwise disable." t nil) | |
12858 | |
12859 (autoload 'enable-flow-control-on "flow-ctrl" "\ | |
12860 Enable flow control if using one of a specified set of terminal types. | |
12861 Use `(enable-flow-control-on \"vt100\" \"h19\")' to enable flow control | |
12862 on VT-100 and H19 terminals. When flow control is enabled, | |
12863 you must type C-\\ to get the effect of a C-s, and type C-^ | |
12864 to get the effect of a C-q. | |
12865 | |
12866 This function has no effect unless the current device is a tty. | |
12867 | |
12868 The tty terminal type is determined from the TERM environment variable. | |
12869 Trailing hyphens and everything following is stripped, so a TERM | |
12870 value of \"vt100-nam\" is treated the same as \"vt100\"." nil nil) | |
12871 | |
12872 ;;;*** | |
12873 | |
12874 ;;;*** | |
12875 | |
12876 ;;;### (autoloads nil "foldout" "utils/foldout.el" (12984 29557)) | |
12877 ;;; Generated autoloads from utils/foldout.el | |
12878 | |
12879 ;;;*** | |
12880 | |
12881 ;;;### (autoloads nil "forms-d2" "utils/forms-d2.el" (12984 29556)) | |
12882 ;;; Generated autoloads from utils/forms-d2.el | |
12883 | |
12884 ;;;*** | |
12885 | |
12886 ;;;### (autoloads nil "forms-pass" "utils/forms-pass.el" (12984 29556)) | |
12887 ;;; Generated autoloads from utils/forms-pass.el | |
12888 | |
12889 ;;;### (autoloads (forms-find-file-other-window forms-find-file forms-mode) "forms" "utils/forms.el" (12984 30061)) | |
12890 ;;; Generated autoloads from utils/forms.el | |
12891 | |
12892 (autoload 'forms-mode "forms" "\ | |
12893 Major mode to visit files in a field-structured manner using a form. | |
12894 | |
12895 Commands: Equivalent keys in read-only mode: | |
12896 TAB forms-next-field TAB | |
12897 \\C-c TAB forms-next-field | |
12898 \\C-c < forms-first-record < | |
12899 \\C-c > forms-last-record > | |
12900 \\C-c ? describe-mode ? | |
12901 \\C-c \\C-k forms-delete-record | |
12902 \\C-c \\C-q forms-toggle-read-only q | |
12903 \\C-c \\C-o forms-insert-record | |
12904 \\C-c \\C-l forms-jump-record l | |
12905 \\C-c \\C-n forms-next-record n | |
12906 \\C-c \\C-p forms-prev-record p | |
12907 \\C-c \\C-r forms-search-backward r | |
12908 \\C-c \\C-s forms-search-forward s | |
12909 \\C-c \\C-x forms-exit x | |
12910 " t nil) | |
12911 | |
12912 (autoload 'forms-find-file "forms" "\ | |
12913 Visit a file in Forms mode." t nil) | |
12914 | |
12915 (autoload 'forms-find-file-other-window "forms" "\ | |
12916 Visit a file in Forms mode in other window." t nil) | |
12917 | |
12918 ;;;*** | |
12919 | |
12920 ;;;*** | |
12921 | |
12922 ;;;### (autoloads nil "hide-copyleft" "utils/hide-copyleft.el" (12984 29557)) | |
12923 ;;; Generated autoloads from utils/hide-copyleft.el | |
12924 | |
12925 ;;;*** | |
12926 | |
12927 ;;;### (autoloads (highlight-headers-follow-url highlight-headers-follow-url-mosaic highlight-headers-follow-url-netscape highlight-headers) "highlight-headers" "utils/highlight-headers.el" (12984 29556)) | |
12928 ;;; Generated autoloads from utils/highlight-headers.el | |
12929 | |
12930 (autoload 'highlight-headers "highlight-headers" "\ | |
12931 Highlight message headers between start and end. | |
12932 Faces used: | |
12933 message-headers the part before the colon | |
12934 message-header-contents the part after the colon | |
12935 message-highlighted-header-contents contents of \"special\" headers | |
12936 message-cited-text quoted text from other messages | |
12937 | |
12938 Variables used: | |
12939 | |
12940 highlight-headers-regexp what makes a \"special\" header | |
12941 highlight-headers-citation-regexp matches lines of quoted text | |
12942 highlight-headers-citation-header-regexp matches headers for quoted text | |
12943 | |
12944 If HACK-SIG is true,then we search backward from END for something that | |
12945 looks like the beginning of a signature block, and don't consider that a | |
12946 part of the message (this is because signatures are often incorrectly | |
12947 interpreted as cited text.)" nil nil) | |
12948 | |
12949 (autoload 'highlight-headers-follow-url-netscape "highlight-headers" nil nil nil) | |
12950 | |
12951 (autoload 'highlight-headers-follow-url-mosaic "highlight-headers" nil nil nil) | |
12952 | |
12953 (autoload 'highlight-headers-follow-url "highlight-headers" nil t nil) | |
12954 | |
12955 ;;;*** | |
12956 | |
12957 ;;;### (autoloads (id-select-double-click-hook id-select-and-kill-thing id-select-and-copy-thing id-select-goto-matching-tag id-select-thing-with-mouse id-select-thing) "id-select" "utils/id-select.el" (12984 30065)) | |
12958 ;;; Generated autoloads from utils/id-select.el | |
12959 | |
12960 (autoload 'id-select-thing "id-select" "\ | |
12961 Mark the region selected by the syntax of the thing at point. | |
12962 If invoked repeatedly, selects bigger and bigger things. | |
12963 If `id-select-display-type' is non-nil, the type of selection is displayed in | |
12964 the minibuffer." t nil) | |
12965 | |
12966 (autoload 'id-select-thing-with-mouse "id-select" "\ | |
12967 Select a region based on the syntax of the character from a mouse click. | |
12968 If the click occurs at the same point as the last click, select | |
12969 the next larger syntactic structure. If `id-select-display-type' is non-nil, | |
12970 the type of selection is displayed in the minibuffer." t nil) | |
12971 | |
12972 (autoload 'id-select-goto-matching-tag "id-select" "\ | |
12973 If in a major mode listed in `id-select-markup-modes,' moves point to the start of the tag paired with the closest tag that point is within or precedes. | |
12974 Returns t if point is moved, else nil. | |
12975 Signals an error if no tag is found following point or if the closing tag | |
12976 does not have a `>' terminator character." t nil) | |
12977 | |
12978 (autoload 'id-select-and-copy-thing "id-select" "\ | |
12979 Copy the region surrounding the syntactical unit at point." t nil) | |
12980 | |
12981 (autoload 'id-select-and-kill-thing "id-select" "\ | |
12982 Kill the region surrounding the syntactical unit at point." t nil) | |
12983 | |
12984 (autoload 'id-select-double-click-hook "id-select" "\ | |
12985 Select a region based on the syntax of the character wherever the mouse is double-clicked. | |
12986 If the double-click occurs at the same point as the last double-click, select | |
12987 the next larger syntactic structure. If `id-select-display-type' is non-nil, | |
12988 the type of selection is displayed in the minibuffer." nil nil) | |
12989 | |
12990 ;;;*** | |
12991 | |
12992 ;;;*** | |
12993 | |
12994 ;;;*** | |
12995 | |
12996 ;;;### (autoloads nil "lib-complete" "utils/lib-complete.el" (12984 29557)) | |
12997 ;;; Generated autoloads from utils/lib-complete.el | |
12998 | |
12999 ;;;*** | |
13000 | |
13001 ;;;### (autoloads nil "live-icon" "utils/live-icon.el" (12984 29557)) | |
13002 ;;; Generated autoloads from utils/live-icon.el | |
13003 | |
13004 ;;;### (autoloads (unload-feature) "loadhist" "utils/loadhist.el" (12984 29557)) | |
13005 ;;; Generated autoloads from utils/loadhist.el | |
13006 | |
13007 (autoload 'unload-feature "loadhist" "\ | |
13008 Unload the library that provided FEATURE, restoring all its autoloads. | |
13009 If the feature is required by any other loaded code, and optional FORCE | |
13010 is nil, raise an error." t nil) | |
13011 | |
13012 ;;;*** | |
13013 | |
13014 ;;;### (autoloads (what-domain mail-extract-address-components) "mail-extr" "utils/mail-extr.el" (12988 19760)) | |
13015 ;;; Generated autoloads from utils/mail-extr.el | |
13016 | |
13017 (autoload 'mail-extract-address-components "mail-extr" "\ | |
13018 Given an RFC-822 ADDRESS, extract full name and canonical address. | |
13019 Returns a list of the form (FULL-NAME CANONICAL-ADDRESS). | |
13020 If no name can be extracted, FULL-NAME will be nil. | |
13021 ADDRESS may be a string or a buffer. If it is a buffer, the visible | |
13022 (narrowed) portion of the buffer will be interpreted as the address. | |
13023 (This feature exists so that the clever caller might be able to avoid | |
13024 consing a string.) | |
13025 If ADDRESS contains more than one RFC-822 address, only the first is | |
13026 returned. Some day this function may be extended to extract multiple | |
13027 addresses, or perhaps return the position at which parsing stopped." nil nil) | |
13028 | |
13029 (autoload 'what-domain "mail-extr" "\ | |
13030 Prompts for a mail domain, and prints the country it corresponds to | |
13031 in the minibuffer." t nil) | |
13032 | |
13033 ;;;*** | |
13034 | |
13035 ;;;### (autoloads (mail-fetch-field mail-file-babyl-p) "mail-utils" "utils/mail-utils.el" (12984 29556)) | |
13036 ;;; Generated autoloads from utils/mail-utils.el | |
13037 | |
13038 (defvar mail-use-rfc822 nil "\ | |
13039 *If non-nil, use a full, hairy RFC822 parser on mail addresses. | |
13040 Otherwise, (the default) use a smaller, somewhat faster, and | |
13041 often correct parser.") | |
13042 | |
13043 (autoload 'mail-file-babyl-p "mail-utils" nil nil nil) | |
13044 | |
13045 (autoload 'mail-fetch-field "mail-utils" "\ | |
13046 Return the value of the header field FIELD-NAME. | |
13047 The buffer is expected to be narrowed to just the headers of the message. | |
13048 If second arg LAST is non-nil, use the last such field if there are several. | |
13049 If third arg ALL is non-nil, concatenate all such fields with commas between." nil nil) | |
13050 | |
13051 ;;;*** | |
13052 | |
13053 ;;;*** | |
13054 | |
13055 ;;;*** | |
13056 | |
13057 ;;;*** | |
13058 | |
13059 ;;;*** | |
13060 | |
13061 ;;;### (autoloads nil "mailpost" "utils/mailpost.el" (12984 29556)) | |
13062 ;;; Generated autoloads from utils/mailpost.el | |
13063 | |
13064 ;;;*** | |
13065 | |
13066 ;;;*** | |
13067 | |
13068 ;;;### (autoloads nil "map-ynp" "utils/map-ynp.el" (12984 29556)) | |
13069 ;;; Generated autoloads from utils/map-ynp.el | |
13070 | |
13071 ;;;*** | |
13072 | |
13073 ;;;### (autoloads nil "meese" "utils/meese.el" (12984 29556)) | |
13074 ;;; Generated autoloads from utils/meese.el | |
13075 | |
13076 ;;;### (autoloads (read-passwd) "passwd" "utils/passwd.el" (12984 29556)) | |
13077 ;;; Generated autoloads from utils/passwd.el | |
13078 | |
13079 (autoload 'read-passwd "passwd" "\ | |
13080 Prompts for a password in the minibuffer, and returns it as a string. | |
13081 If PROMPT may be a prompt string or an alist of elements | |
13082 '(prompt . default). | |
13083 If optional arg CONFIRM is true, then ask the user to type the password | |
13084 again to confirm that they typed it correctly. | |
13085 If optional arg DEFAULT is provided, then it is a string to insert as | |
13086 the default choice (it is not, of course, displayed.) | |
13087 | |
13088 If running under X, the keyboard will be grabbed (with XGrabKeyboard()) | |
13089 to reduce the possibility that evesdropping is occuring. | |
13090 | |
13091 When reading a password, all keys self-insert, except for: | |
13092 \\<read-passwd-map> | |
13093 \\[read-passwd-erase-line] Erase the entire line. | |
13094 \\[quoted-insert] Insert the next character literally. | |
13095 \\[delete-backward-char] Delete the previous character. | |
13096 \\[exit-minibuffer] Accept what you have typed. | |
13097 \\[keyboard-quit] Abort the command. | |
13098 | |
13099 The returned value is always a newly-created string. No additional copies | |
13100 of the password remain after this function has returned. | |
13101 | |
13102 NOTE: unless great care is taken, the typed password will exist in plaintext | |
13103 form in the running image for an arbitrarily long time. Priveleged users may | |
13104 be able to extract it from memory. If emacs crashes, it may appear in the | |
13105 resultant core file. | |
13106 | |
13107 Some steps you can take to prevent the password from being copied around: | |
13108 | |
13109 - as soon as you are done with the returned string, destroy it with | |
13110 (fillarray string 0). The same goes for any default passwords | |
13111 or password histories. | |
13112 | |
13113 - do not copy the string, as with concat or substring - if you do, be | |
13114 sure to keep track of and destroy all copies. | |
13115 | |
13116 - do not insert the password into a buffer - if you do, be sure to | |
13117 overwrite the buffer text before killing it, as with the functions | |
13118 `passwd-erase-buffer' or `passwd-kill-buffer'. Note that deleting | |
13119 the text from the buffer does NOT necessarily remove the text from | |
13120 memory. | |
13121 | |
13122 - be careful of the undo history - if you insert the password into a | |
13123 buffer which has undo recording turned on, the password will be | |
13124 copied onto the undo list, and thus recoverable. | |
13125 | |
13126 - do not pass it as an argument to a shell command - anyone will be | |
13127 able to see it if they run `ps' at the right time. | |
13128 | |
13129 Note that the password will be temporarily recoverable with the `view-lossage' | |
13130 command. This data will not be overwritten until another hundred or so | |
13131 characters are typed. There's not currently a way around this." nil nil) | |
13132 | |
13133 ;;;*** | |
13134 | |
13135 ;;;### (autoloads (pp-eval-last-sexp pp-eval-expression pp) "pp" "utils/pp.el" (12984 29556)) | |
13136 ;;; Generated autoloads from utils/pp.el | |
13137 | |
13138 (defalias 'pprint 'pp) | |
13139 | |
13140 (autoload 'pp "pp" "\ | |
13141 Output the pretty-printed representation of OBJECT, any Lisp object. | |
13142 Quoting characters are printed when needed to make output that `read' | |
13143 can handle, whenever this is possible. | |
13144 Output stream is STREAM, or value of `standard-output' (which see)." nil nil) | |
13145 | |
13146 (autoload 'pp-eval-expression "pp" "\ | |
13147 Evaluate EXPRESSION and pretty-print value into a new display buffer. | |
13148 If the pretty-printed value fits on one line, the message line is used | |
13149 instead. Value is also consed on to front of variable values 's | |
13150 value." t nil) | |
13151 | |
13152 (autoload 'pp-eval-last-sexp "pp" "\ | |
13153 Run `pp-eval-expression' on sexp before point (which see). | |
13154 With argument, pretty-print output into current buffer. | |
13155 Ignores leading comment characters." t nil) | |
13156 | |
13157 ;;;*** | |
13158 | |
13159 ;;;*** | |
13160 | |
13161 ;;;*** | |
13162 | |
13163 ;;;*** | |
13164 | |
13165 ;;;### (autoloads (prettyexpand-all-sexp prettyexpand-sexp macroexpand-all-sexp macroexpand-sexp pp-plist pp-variable pp-function) "pretty-print" "utils/pretty-print.el" (12984 30065)) | |
13166 ;;; Generated autoloads from utils/pretty-print.el | |
13167 | |
13168 (autoload 'pp-function "pretty-print" "\ | |
13169 Pretty print the function definition of SYMBOL in a seperate buffer" t nil) | |
13170 | |
13171 (autoload 'pp-variable "pretty-print" "\ | |
13172 Pretty print the variable value of SYMBOL in a seperate buffer" t nil) | |
13173 | |
13174 (autoload 'pp-plist "pretty-print" "\ | |
13175 Pretty print the property list of SYMBOL in a seperate buffer" t nil) | |
13176 | |
13177 (autoload 'macroexpand-sexp "pretty-print" "\ | |
13178 Macro expand the sexpression following point. Pretty print expansion in a | |
13179 temporary buffer. With prefix argument, replace the original | |
13180 sexpression by its expansion in the current buffer." t nil) | |
13181 | |
13182 (autoload 'macroexpand-all-sexp "pretty-print" "\ | |
13183 Macro expand recursively the sexpression following point. Pretty print | |
13184 expansion in a temporary buffer. With prefix argument, replace the | |
13185 original sexpression by its expansion in the current buffer." t nil) | |
13186 | |
13187 (autoload 'prettyexpand-sexp "pretty-print" "\ | |
13188 Macro expand the sexpression following point. Pretty print expansion | |
13189 in a temporary buffer. With prefix argument, replace the original | |
13190 sexpression by its expansion in the current buffer. | |
13191 However, calls to macros specified in the variable | |
13192 `pp-shadow-expansion-list' are not expanded, in order to make the code | |
13193 look nicer." t nil) | |
13194 | |
13195 (autoload 'prettyexpand-all-sexp "pretty-print" "\ | |
13196 Macro expand recursively the sexpression following point. Pretty print | |
13197 expansion in a temporary buffer. With prefix argument, replace the | |
13198 original sexpression by its expansion in the current buffer. | |
13199 However, calls to macros specified in the variable | |
13200 `pp-shadow-expansion-list' are not expanded, in order to make the code | |
13201 look nicer." t nil) | |
13202 | |
13203 ;;;*** | |
13204 | |
13205 ;;;*** | |
13206 | |
13207 ;;;### (autoloads nil "regi" "utils/regi.el" (12984 29556)) | |
13208 ;;; Generated autoloads from utils/regi.el | |
13209 | |
13210 ;;;*** | |
13211 | |
13212 ;;;### (autoloads (reporter-submit-bug-report) "reporter" "utils/reporter.el" (12984 29556)) | |
13213 ;;; Generated autoloads from utils/reporter.el | |
13214 | |
13215 (autoload 'reporter-submit-bug-report "reporter" nil nil nil) | |
13216 | |
13217 ;;;*** | |
13218 | |
13219 ;;;*** | |
13220 | |
13221 ;;;### (autoloads nil "rfc822" "utils/rfc822.el" (12984 29556)) | |
13222 ;;; Generated autoloads from utils/rfc822.el | |
13223 | |
13224 ;;;*** | |
13225 | |
13226 ;;;*** | |
13227 | |
13228 ;;;### (autoloads (make-ring ringp) "ring" "utils/ring.el" (12984 29556)) | |
13229 ;;; Generated autoloads from utils/ring.el | |
13230 | |
13231 (autoload 'ringp "ring" "\ | |
13232 Returns t if X is a ring; nil otherwise." nil nil) | |
13233 | |
13234 (define-obsolete-function-alias 'ring-p 'ringp) | |
13235 | |
13236 (autoload 'make-ring "ring" "\ | |
13237 Make a ring that can contain SIZE elements." nil nil) | |
13238 | |
13239 ;;;*** | |
13240 | |
13241 ;;;*** | |
13242 | |
13243 ;;;### (autoloads nil "shadowfile" "utils/shadowfile.el" (12984 29557)) | |
13244 ;;; Generated autoloads from utils/shadowfile.el | |
13245 | |
13246 ;;;*** | |
13247 | |
13248 ;;;*** | |
13249 | |
13250 ;;;### (autoloads (skeleton-pair-insert-maybe skeleton-insert skeleton-proxy skeleton-proxy-new define-skeleton) "skeleton" "utils/skeleton.el" (12984 29557)) | |
13251 ;;; Generated autoloads from utils/skeleton.el | |
13252 | |
13253 (defvar skeleton-filter 'identity "\ | |
13254 Function for transforming a skeleton proxy's aliases' variable value.") | |
13255 | |
13256 (autoload 'define-skeleton "skeleton" "\ | |
13257 Define a user-configurable COMMAND that enters a statement skeleton. | |
13258 DOCUMENTATION is that of the command, while the variable of the same name, | |
13259 which contains the skeleton, has a documentation to that effect. | |
13260 INTERACTOR and ELEMENT ... are as defined under `skeleton-insert'." nil 'macro) | |
13261 | |
13262 (autoload 'skeleton-proxy-new "skeleton" "\ | |
13263 Insert skeleton defined by variable of same name (see `skeleton-insert'). | |
13264 Prefix ARG allows wrapping around words or regions (see `skeleton-insert'). | |
13265 If no ARG was given, but the region is visible, ARG defaults to -1 depending | |
13266 on `skeleton-autowrap'. An ARG of M-0 will prevent this just for once. | |
13267 This command can also be an abbrev expansion (3rd and 4th columns in | |
13268 \\[edit-abbrevs] buffer: \"\" command-name). | |
13269 | |
13270 When called as a function, optional first argument STR may also be a string | |
13271 which will be the value of `str' whereas the skeleton's interactor is then | |
13272 ignored." t nil) | |
13273 | |
13274 (autoload 'skeleton-proxy "skeleton" "\ | |
13275 Insert skeleton defined by variable of same name (see `skeleton-insert'). | |
13276 Prefix ARG allows wrapping around words or regions (see `skeleton-insert'). | |
13277 If no ARG was given, but the region is visible, ARG defaults to -1 depending | |
13278 on `skeleton-autowrap'. An ARG of M-0 will prevent this just for once. | |
13279 This command can also be an abbrev expansion (3rd and 4th columns in | |
13280 \\[edit-abbrevs] buffer: \"\" command-name). | |
13281 | |
13282 When called as a function, optional first argument STR may also be a string | |
13283 which will be the value of `str' whereas the skeleton's interactor is then | |
13284 ignored." t nil) | |
13285 | |
13286 (autoload 'skeleton-insert "skeleton" "\ | |
13287 Insert the complex statement skeleton SKELETON describes very concisely. | |
13288 | |
13289 With optional third REGIONS wrap first interesting point (`_') in skeleton | |
13290 around next REGIONS words, if REGIONS is positive. If REGIONS is negative, | |
13291 wrap REGIONS preceding interregions into first REGIONS interesting positions | |
13292 \(successive `_'s) in skeleton. An interregion is the stretch of text between | |
13293 two contiguous marked points. If you marked A B C [] (where [] is the cursor) | |
13294 in alphabetical order, the 3 interregions are simply the last 3 regions. But | |
13295 if you marked B A [] C, the interregions are B-A, A-[], []-C. | |
13296 | |
13297 Optional fourth STR is the value for the variable `str' within the skeleton. | |
13298 When this is non-`nil' the interactor gets ignored, and this should be a valid | |
13299 skeleton element. | |
13300 | |
13301 SKELETON is made up as (INTERACTOR ELEMENT ...). INTERACTOR may be nil if | |
13302 not needed, a prompt-string or an expression for complex read functions. | |
13303 | |
13304 If ELEMENT is a string or a character it gets inserted (see also | |
13305 `skeleton-transformation'). Other possibilities are: | |
13306 | |
13307 \\n go to next line and indent according to mode | |
13308 _ interesting point, interregion here, point after termination | |
13309 > indent line (or interregion if > _) according to major mode | |
13310 & do next ELEMENT if previous moved point | |
13311 | do next ELEMENT if previous didn't move point | |
13312 -num delete num preceding characters (see `skeleton-untabify') | |
13313 resume: skipped, continue here if quit is signaled | |
13314 nil skipped | |
13315 | |
13316 Further elements can be defined via `skeleton-further-elements'. ELEMENT may | |
13317 itself be a SKELETON with an INTERACTOR. The user is prompted repeatedly for | |
13318 different inputs. The SKELETON is processed as often as the user enters a | |
13319 non-empty string. \\[keyboard-quit] terminates skeleton insertion, but | |
13320 continues after `resume:' and positions at `_' if any. If INTERACTOR in such | |
13321 a subskeleton is a prompt-string which contains a \".. %s ..\" it is | |
13322 formatted with `skeleton-subprompt'. Such an INTERACTOR may also a list of | |
13323 strings with the subskeleton being repeated once for each string. | |
13324 | |
13325 Quoted Lisp expressions are evaluated evaluated for their side-effect. | |
13326 Other Lisp expressions are evaluated and the value treated as above. | |
13327 Note that expressions may not return `t' since this implies an | |
13328 endless loop. Modes can define other symbols by locally setting them | |
13329 to any valid skeleton element. The following local variables are | |
13330 available: | |
13331 | |
13332 str first time: read a string according to INTERACTOR | |
13333 then: insert previously read string once more | |
13334 help help-form during interaction with the user or `nil' | |
13335 input initial input (string or cons with index) while reading str | |
13336 v1, v2 local variables for memorizing anything you want | |
13337 | |
13338 When done with skeleton, but before going back to `_'-point call | |
13339 `skeleton-end-hook' if that is non-`nil'." nil nil) | |
13340 | |
13341 (autoload 'skeleton-pair-insert-maybe "skeleton" "\ | |
13342 Insert the character you type ARG times. | |
13343 | |
13344 With no ARG, if `skeleton-pair' is non-nil, pairing can occur. If the region | |
13345 is visible the pair is wrapped around it depending on `skeleton-autowrap'. | |
13346 Else, if `skeleton-pair-on-word' is non-nil or we are not before or inside a | |
13347 word, and if `skeleton-pair-filter' returns nil, pairing is performed. | |
13348 | |
13349 If a match is found in `skeleton-pair-alist', that is inserted, else | |
13350 the defaults are used. These are (), [], {}, <> and `' for the | |
13351 symmetrical ones, and the same character twice for the others." t nil) | |
13352 | |
13353 ;;;*** | |
13354 | |
13355 ;;;*** | |
13356 | |
13357 ;;;### (autoloads nil "smtpmail" "utils/smtpmail.el" (12984 30065)) | |
13358 ;;; Generated autoloads from utils/smtpmail.el | |
13359 | |
13360 ;;;*** | |
13361 | |
13362 ;;;### (autoloads nil "soundex" "utils/soundex.el" (12984 29557)) | |
13363 ;;; Generated autoloads from utils/soundex.el | |
13364 | |
13365 ;;;*** | |
13366 | |
13367 ;;;### (autoloads nil "symbol-syntax" "utils/symbol-syntax.el" (12984 29556)) | |
13368 ;;; Generated autoloads from utils/symbol-syntax.el | |
13369 | |
13370 ;;;*** | |
13371 | |
13372 ;;;### (autoloads nil "sysdep" "utils/sysdep.el" (12984 29557)) | |
13373 ;;; Generated autoloads from utils/sysdep.el | |
13374 | |
13375 ;;;*** | |
13376 | |
13377 ;;;*** | |
13378 | |
13379 ;;;### (autoloads nil "text-props" "utils/text-props.el" (12984 29556)) | |
13380 ;;; Generated autoloads from utils/text-props.el | |
13381 | |
13382 ;;;*** | |
13383 | |
13384 ;;;### (autoloads nil "thing" "utils/thing.el" (12984 29557)) | |
13385 ;;; Generated autoloads from utils/thing.el | |
13386 | |
13387 ;;;*** | |
13388 | |
13389 ;;;### (autoloads nil "timezone" "utils/timezone.el" (12984 29557)) | |
13390 ;;; Generated autoloads from utils/timezone.el | |
13391 | |
13392 ;;;### (autoloads (tq-create) "tq" "utils/tq.el" (12984 29557)) | |
13393 ;;; Generated autoloads from utils/tq.el | |
13394 | |
13395 (autoload 'tq-create "tq" "\ | |
13396 Create and return a transaction queue communicating with PROCESS. | |
13397 PROCESS should be a subprocess capable of sending and receiving | |
13398 streams of bytes. It may be a local process, or it may be connected | |
13399 to a tcp server on another machine." nil nil) | |
13400 | |
13401 ;;;*** | |
13402 | |
13403 ;;;### (autoloads (trace-function-background trace-function) "trace" "utils/trace.el" (12984 29556)) | |
13404 ;;; Generated autoloads from utils/trace.el | |
13405 | |
13406 (defvar trace-buffer "*trace-output*" "\ | |
13407 *Trace output will by default go to that buffer.") | |
13408 | |
13409 (autoload 'trace-function "trace" "\ | |
13410 Traces FUNCTION with trace output going to BUFFER. | |
13411 For every call of FUNCTION Lisp-style trace messages that display argument | |
13412 and return values will be inserted into BUFFER. This function generates the | |
13413 trace advice for FUNCTION and activates it together with any other advice | |
13414 there might be!! The trace BUFFER will popup whenever FUNCTION is called. | |
13415 Do not use this to trace functions that switch buffers or do any other | |
13416 display oriented stuff, use `trace-function-background' instead." t nil) | |
13417 | |
13418 (autoload 'trace-function-background "trace" "\ | |
13419 Traces FUNCTION with trace output going quietly to BUFFER. | |
13420 For every call of FUNCTION Lisp-style trace messages that display argument | |
13421 and return values will be inserted into BUFFER. This function generates the | |
13422 trace advice for FUNCTION and activates it together with any other advice | |
13423 there might be!! Trace output will quietly go to BUFFER without changing | |
13424 the window or buffer configuration at all." t nil) | |
13425 | |
13426 ;;;*** | |
13427 | |
13428 ;;;*** | |
13429 | |
13430 ;;;*** | |
13431 | |
13432 ;;;*** | |
13433 | |
13434 ;;;### (autoloads nil "tree-menu" "utils/tree-menu.el" (12984 29557)) | |
13435 ;;; Generated autoloads from utils/tree-menu.el | |
13436 | |
13437 ;;;*** | |
13438 | |
13439 ;;;### (autoloads nil "uniquify" "utils/uniquify.el" (12984 29557)) | |
13440 ;;; Generated autoloads from utils/uniquify.el | |
13441 | |
13442 ;;;### (autoloads (y-or-n-p-with-timeout yes-or-no-p-with-timeout with-timeout with-timeout-internal) "with-timeout" "utils/with-timeout.el" (12984 29556)) | |
13443 ;;; Generated autoloads from utils/with-timeout.el | |
13444 | |
13445 (autoload 'with-timeout-internal "with-timeout" nil nil nil) | |
13446 | |
13447 (autoload 'with-timeout "with-timeout" "\ | |
13448 Usage: (with-timeout (seconds &rest timeout-forms) &rest body) | |
13449 This is just like progn, but if the given number of seconds expires before | |
13450 the body returns, then timeout-forms are evaluated and returned instead. | |
13451 The body won't be interrupted in the middle of a computation: the check for | |
13452 the timer expiration only occurs when body does a redisplay, or prompts the | |
13453 user for input, or calls accept-process-output." nil 'macro) | |
13454 | |
13455 (autoload 'yes-or-no-p-with-timeout "with-timeout" "\ | |
13456 Just like yes-or-no-p, but will time out after TIMEOUT seconds | |
13457 if the user has not yes answered, returning DEFAULT-VALUE." nil nil) | |
13458 | |
13459 (autoload 'y-or-n-p-with-timeout "with-timeout" "\ | |
13460 Just like y-or-n-p, but will time out after TIMEOUT seconds | |
13461 if the user has not yes answered, returning DEFAULT-VALUE." nil nil) | |
13462 | |
13463 ;;;*** | |
13464 | |
13465 ;;;### (autoloads (xbm-button-create) "xbm-button" "utils/xbm-button.el" (12984 29557)) | |
13466 ;;; Generated autoloads from utils/xbm-button.el | |
13467 | |
13468 (autoload 'xbm-button-create "xbm-button" "\ | |
13469 Returns a list of XBM image instantiators for a button displaying TEXT. | |
13470 The list is of the form | |
13471 (UP DOWN DISABLED) | |
13472 where UP, DOWN, and DISABLED are the up, down and disabled image | |
13473 instantiators for the button. | |
13474 | |
13475 BORDER-THICKNESS specifies how many pixels should be used for the | |
13476 borders on the edges of the buttons. It should be a positive integer, | |
13477 or 0 to mean no border." nil nil) | |
13478 | |
13479 ;;;*** | |
13480 | |
13481 ;;;### (autoloads (xpm-button-create) "xpm-button" "utils/xpm-button.el" (12984 29556)) | |
13482 ;;; Generated autoloads from utils/xpm-button.el | |
13483 | |
13484 (autoload 'xpm-button-create "xpm-button" "\ | |
13485 Returns a list of XPM image instantiators for a button displaying TEXT. | |
13486 The list is of the form | |
13487 (UP DOWN DISABLED) | |
13488 where UP, DOWN, and DISABLED are the up, down and disabled image | |
13489 instantiators for the button. | |
13490 | |
13491 SHADOW-THICKNESS specifies how many pixels should be used for the | |
13492 shadows on the edges of the buttons. It should be a positive integer, | |
13493 or 0 to mean no shadows on the edges. | |
13494 FG-COLOR is the color used to display the text. It should be a string. | |
13495 BG-COLOR is the background color the text will be displayed upon. | |
13496 It should be a string." nil nil) | |
13497 | |
13498 ;;;*** | |
13499 | |
13500 ;;;*** | |
13501 | |
13502 ;;;*** | |
13503 | |
13504 ;;;*** | |
13505 | |
13506 ;;;### (autoloads nil "viper-ex" "viper/viper-ex.el" (12984 29577)) | |
13507 ;;; Generated autoloads from viper/viper-ex.el | |
13508 | |
13509 ;;;*** | |
13510 | |
13511 ;;;*** | |
13512 | |
13513 ;;;### (autoloads nil "viper-keym" "viper/viper-keym.el" (12984 29578)) | |
13514 ;;; Generated autoloads from viper/viper-keym.el | |
13515 | |
13516 ;;;*** | |
13517 | |
13518 ;;;### (autoloads nil "viper-macs" "viper/viper-macs.el" (12984 29578)) | |
13519 ;;; Generated autoloads from viper/viper-macs.el | |
13520 | |
13521 ;;;*** | |
13522 | |
13523 ;;;*** | |
13524 | |
13525 ;;;### (autoloads nil "viper-mous" "viper/viper-mous.el" (12984 29578)) | |
13526 ;;; Generated autoloads from viper/viper-mous.el | |
13527 | |
13528 ;;;*** | |
13529 | |
13530 ;;;*** | |
13531 | |
13532 ;;;### (autoloads nil "viper-util" "viper/viper-util.el" (12984 29578)) | |
13533 ;;; Generated autoloads from viper/viper-util.el | |
13534 | |
13535 ;;;### (autoloads (viper-mode) "viper" "viper/viper.el" (12984 29578)) | |
13536 ;;; Generated autoloads from viper/viper.el | |
13537 | |
13538 (autoload 'viper-mode "viper" "\ | |
13539 Turn on Viper emulation of Vi." t nil) | |
13540 | |
13541 (defalias 'vip-mode 'viper-mode) | |
13542 | |
13543 ;;;*** | |
13544 | |
13545 ;;;### (autoloads nil "tapestry" "vm/tapestry.el" (12677 32694)) | |
13546 ;;; Generated autoloads from vm/tapestry.el | |
13547 | |
13548 ;;;*** | |
13549 | |
13550 ;;;*** | |
13551 | |
13552 ;;;*** | |
13553 | |
13554 ;;;*** | |
13555 | |
13556 ;;;*** | |
13557 | |
13558 ;;;*** | |
13559 | |
13560 ;;;### (autoloads nil "vm-autoload" "vm/vm-autoload.el" (12997 30933)) | |
13561 ;;; Generated autoloads from vm/vm-autoload.el | |
13562 | |
13563 ;;;### (autoloads nil "vm-byteopts" "vm/vm-byteopts.el" (12677 32690)) | |
13564 ;;; Generated autoloads from vm/vm-byteopts.el | |
13565 | |
13566 ;;;*** | |
13567 | |
13568 ;;;### (autoloads nil "vm-delete" "vm/vm-delete.el" (12807 56781)) | |
13569 ;;; Generated autoloads from vm/vm-delete.el | |
13570 | |
13571 ;;;*** | |
13572 | |
13573 ;;;### (autoloads nil "vm-digest" "vm/vm-digest.el" (12885 62665)) | |
13574 ;;; Generated autoloads from vm/vm-digest.el | |
13575 | |
13576 ;;;### (autoloads (vm-easy-menu-create-keymaps vm-easy-menu-define) "vm-easymenu" "vm/vm-easymenu.el" (12677 32693)) | |
13577 ;;; Generated autoloads from vm/vm-easymenu.el | |
13578 | |
13579 (autoload 'vm-easy-menu-define "vm-easymenu" "\ | |
13580 Define a menu bar submenu in maps MAPS, according to MENU. | |
13581 The menu keymap is stored in symbol SYMBOL, both as its value | |
13582 and as its function definition. DOC is used as the doc string for SYMBOL. | |
13583 | |
13584 The first element of MENU must be a string. It is the menu bar item name. | |
13585 The rest of the elements are menu items. | |
13586 | |
13587 A menu item is usually a vector of three elements: [NAME CALLBACK ENABLE] | |
13588 | |
13589 NAME is a string--the menu item name. | |
13590 | |
13591 CALLBACK is a command to run when the item is chosen, | |
13592 or a list to evaluate when the item is chosen. | |
13593 | |
13594 ENABLE is an expression; the item is enabled for selection | |
13595 whenever this expression's value is non-nil. | |
13596 | |
13597 Alternatively, a menu item may have the form: | |
13598 | |
13599 [ NAME CALLBACK [ KEYWORD ARG ] ... ] | |
13600 | |
13601 Where KEYWORD is one of the symbol defined below. | |
13602 | |
13603 :keys KEYS | |
13604 | |
13605 KEYS is a string; a complex keyboard equivalent to this menu item. | |
13606 This is normally not needed because keyboard equivalents are usually | |
13607 computed automatically. | |
13608 | |
13609 :active ENABLE | |
13610 | |
13611 ENABLE is an expression; the item is enabled for selection | |
13612 whenever this expression's value is non-nil. | |
13613 | |
13614 :suffix NAME | |
13615 | |
13616 NAME is a string; the name of an argument to CALLBACK. | |
13617 | |
13618 :style | |
13619 | |
13620 STYLE is a symbol describing the type of menu item. The following are | |
13621 defined: | |
13622 | |
13623 toggle: A checkbox. | |
13624 Currently just prepend the name with the string \"Toggle \". | |
13625 radio: A radio button. | |
13626 nil: An ordinary menu item. | |
13627 | |
13628 :selected SELECTED | |
13629 | |
13630 SELECTED is an expression; the checkbox or radio button is selected | |
13631 whenever this expression's value is non-nil. | |
13632 Currently just disable radio buttons, no effect on checkboxes. | |
13633 | |
13634 A menu item can be a string. Then that string appears in the menu as | |
13635 unselectable text. A string consisting solely of hyphens is displayed | |
13636 as a solid horizontal line. | |
13637 | |
13638 A menu item can be a list. It is treated as a submenu. | |
13639 The first element should be the submenu name. That's used as the | |
13640 menu item in the top-level menu. The cdr of the submenu list | |
13641 is a list of menu items, as above." nil 'macro) | |
13642 | |
13643 (autoload 'vm-easy-menu-create-keymaps "vm-easymenu" nil nil nil) | |
13644 | |
13645 ;;;*** | |
13646 | |
13647 ;;;### (autoloads nil "vm-edit" "vm/vm-edit.el" (12677 32667)) | |
13648 ;;; Generated autoloads from vm/vm-edit.el | |
13649 | |
13650 ;;;*** | |
13651 | |
13652 ;;;*** | |
13653 | |
13654 ;;;*** | |
13655 | |
13656 ;;;### (autoloads nil "vm-folder" "vm/vm-folder.el" (12989 40981)) | |
13657 ;;; Generated autoloads from vm/vm-folder.el | |
13658 | |
13659 ;;;*** | |
13660 | |
13661 ;;;### (autoloads nil "vm-license" "vm/vm-license.el" (12243 50296)) | |
13662 ;;; Generated autoloads from vm/vm-license.el | |
13663 | |
13664 ;;;### (autoloads nil "vm-mark" "vm/vm-mark.el" (12677 32673)) | |
13665 ;;; Generated autoloads from vm/vm-mark.el | |
13666 | |
13667 ;;;*** | |
13668 | |
13669 ;;;### (autoloads nil "vm-menu" "vm/vm-menu.el" (12677 32677)) | |
13670 ;;; Generated autoloads from vm/vm-menu.el | |
13671 | |
13672 ;;;*** | |
13673 | |
13674 ;;;### (autoloads nil "vm-message" "vm/vm-message.el" (12677 32674)) | |
13675 ;;; Generated autoloads from vm/vm-message.el | |
13676 | |
13677 ;;;*** | |
13678 | |
13679 ;;;### (autoloads nil "vm-minibuf" "vm/vm-minibuf.el" (12677 32691)) | |
13680 ;;; Generated autoloads from vm/vm-minibuf.el | |
13681 | |
13682 ;;;*** | |
13683 | |
13684 ;;;*** | |
13685 | |
13686 ;;;### (autoloads nil "vm-misc" "vm/vm-misc.el" (12989 40635)) | |
13687 ;;; Generated autoloads from vm/vm-misc.el | |
13688 | |
13689 ;;;### (autoloads nil "vm-motion" "vm/vm-motion.el" (12748 62837)) | |
13690 ;;; Generated autoloads from vm/vm-motion.el | |
13691 | |
13692 ;;;*** | |
13693 | |
13694 ;;;### (autoloads nil "vm-mouse" "vm/vm-mouse.el" (12677 32692)) | |
13695 ;;; Generated autoloads from vm/vm-mouse.el | |
13696 | |
13697 ;;;*** | |
13698 | |
13699 ;;;### (autoloads nil "vm-page" "vm/vm-page.el" (12677 32678)) | |
13700 ;;; Generated autoloads from vm/vm-page.el | |
13701 | |
13702 ;;;*** | |
13703 | |
13704 ;;;### (autoloads nil "vm-pop" "vm/vm-pop.el" (12748 62835)) | |
13705 ;;; Generated autoloads from vm/vm-pop.el | |
13706 | |
13707 ;;;*** | |
13708 | |
13709 ;;;*** | |
13710 | |
13711 ;;;*** | |
13712 | |
13713 ;;;### (autoloads nil "vm-reply" "vm/vm-reply.el" (12885 62666)) | |
13714 ;;; Generated autoloads from vm/vm-reply.el | |
13715 | |
13716 ;;;*** | |
13717 | |
13718 ;;;### (autoloads nil "vm-save" "vm/vm-save.el" (12677 32678)) | |
13719 ;;; Generated autoloads from vm/vm-save.el | |
13720 | |
13721 ;;;*** | |
13722 | |
13723 ;;;*** | |
13724 | |
13725 ;;;### (autoloads nil "vm-search" "vm/vm-search.el" (12995 4633)) | |
13726 ;;; Generated autoloads from vm/vm-search.el | |
13727 | |
13728 ;;;*** | |
13729 | |
13730 ;;;### (autoloads nil "vm-search18" "vm/vm-search18.el" (12243 50158)) | |
13731 ;;; Generated autoloads from vm/vm-search18.el | |
13732 | |
13733 ;;;### (autoloads nil "vm-search19" "vm/vm-search19.el" (12677 32690)) | |
13734 ;;; Generated autoloads from vm/vm-search19.el | |
13735 | |
13736 ;;;*** | |
13737 | |
13738 ;;;### (autoloads nil "vm-sort" "vm/vm-sort.el" (12677 32686)) | |
13739 ;;; Generated autoloads from vm/vm-sort.el | |
13740 | |
13741 ;;;*** | |
13742 | |
13743 ;;;### (autoloads nil "vm-startup" "vm/vm-startup.el" (12748 62843)) | |
13744 ;;; Generated autoloads from vm/vm-startup.el | |
13745 | |
13746 ;;;*** | |
13747 | |
13748 ;;;### (autoloads nil "vm-summary" "vm/vm-summary.el" (12748 62838)) | |
13749 ;;; Generated autoloads from vm/vm-summary.el | |
13750 | |
13751 ;;;*** | |
13752 | |
13753 ;;;### (autoloads nil "vm-thread" "vm/vm-thread.el" (12677 32692)) | |
13754 ;;; Generated autoloads from vm/vm-thread.el | |
13755 | |
13756 ;;;*** | |
13757 | |
13758 ;;;### (autoloads nil "vm-toolbar" "vm/vm-toolbar.el" (12777 31551)) | |
13759 ;;; Generated autoloads from vm/vm-toolbar.el | |
13760 | |
13761 ;;;### (autoloads nil "vm-undo" "vm/vm-undo.el" (12677 32680)) | |
13762 ;;; Generated autoloads from vm/vm-undo.el | |
13763 | |
13764 ;;;*** | |
13765 | |
13766 ;;;*** | |
13767 | |
13768 ;;;*** | |
13769 | |
13770 ;;;*** | |
13771 | |
13772 ;;;*** | |
13773 | |
13774 ;;;*** | |
13775 | |
13776 ;;;### (autoloads nil "vm-vars" "vm/vm-vars.el" (12997 29676)) | |
13777 ;;; Generated autoloads from vm/vm-vars.el | |
13778 | |
13779 ;;;### (autoloads nil "vm-version" "vm/vm-version.el" (12972 42446)) | |
13780 ;;; Generated autoloads from vm/vm-version.el | |
13781 | |
13782 ;;;### (autoloads nil "vm-virtual" "vm/vm-virtual.el" (12677 32684)) | |
13783 ;;; Generated autoloads from vm/vm-virtual.el | |
13784 | |
13785 ;;;### (autoloads nil "vm-window" "vm/vm-window.el" (12748 62841)) | |
13786 ;;; Generated autoloads from vm/vm-window.el | |
13787 | |
13788 ;;;*** | |
13789 | |
13790 ;;;*** | |
13791 | |
13792 ;;;*** | |
13793 | |
13794 ;;;*** | |
13795 | |
13796 ;;;### (autoloads nil "font" "w3/font.el" (12984 29564)) | |
13797 ;;; Generated autoloads from w3/font.el | |
13798 | |
13799 ;;;*** | |
13800 | |
13801 ;;;### (autoloads nil "images" "w3/images.el" (12984 29564)) | |
13802 ;;; Generated autoloads from w3/images.el | |
13803 | |
13804 ;;;*** | |
13805 | |
13806 ;;;### (autoloads nil "w3-about" "w3/w3-about.el" (12984 29564)) | |
13807 ;;; Generated autoloads from w3/w3-about.el | |
13808 | |
13809 ;;;*** | |
13810 | |
13811 ;;;### (autoloads nil "w3-annotat" "w3/w3-annotat.el" (12984 29565)) | |
13812 ;;; Generated autoloads from w3/w3-annotat.el | |
13813 | |
13814 ;;;*** | |
13815 | |
13816 ;;;### (autoloads nil "w3-auto" "w3/w3-auto.el" (12984 29565)) | |
13817 ;;; Generated autoloads from w3/w3-auto.el | |
13818 | |
13819 ;;;*** | |
13820 | |
13821 ;;;*** | |
13822 | |
13823 ;;;### (autoloads nil "w3-draw" "w3/w3-draw.el" (12984 29564)) | |
13824 ;;; Generated autoloads from w3/w3-draw.el | |
13825 | |
13826 ;;;*** | |
13827 | |
13828 ;;;### (autoloads nil "w3-e19" "w3/w3-e19.el" (12984 29564)) | |
13829 ;;; Generated autoloads from w3/w3-e19.el | |
13830 | |
13831 ;;;*** | |
13832 | |
13833 ;;;### (autoloads nil "w3-emulate" "w3/w3-emulate.el" (12984 29565)) | |
13834 ;;; Generated autoloads from w3/w3-emulate.el | |
13835 | |
13836 ;;;*** | |
13837 | |
13838 ;;;### (autoloads nil "w3-forms" "w3/w3-forms.el" (12984 29565)) | |
13839 ;;; Generated autoloads from w3/w3-forms.el | |
13840 | |
13841 ;;;*** | |
13842 | |
13843 ;;;*** | |
13844 | |
13845 ;;;### (autoloads (w3-use-hotlist) "w3-hot" "w3/w3-hot.el" (12984 29565)) | |
13846 ;;; Generated autoloads from w3/w3-hot.el | |
13847 | |
13848 (autoload 'w3-use-hotlist "w3-hot" "\ | |
13849 Possibly go to a link in your W3/Mosaic hotlist. | |
13850 This is part of the emacs World Wide Web browser. It will prompt for | |
13851 one of the items in your 'hotlist'. A hotlist is a list of often | |
13852 visited or interesting items you have found on the World Wide Web." t nil) | |
13853 | |
13854 ;;;*** | |
13855 | |
13856 ;;;*** | |
13857 | |
13858 ;;;### (autoloads nil "w3-imap" "w3/w3-imap.el" (12984 29565)) | |
13859 ;;; Generated autoloads from w3/w3-imap.el | |
13860 | |
13861 ;;;*** | |
13862 | |
13863 ;;;### (autoloads nil "w3-keyword" "w3/w3-keyword.el" (12984 29565)) | |
13864 ;;; Generated autoloads from w3/w3-keyword.el | |
13865 | |
13866 ;;;*** | |
13867 | |
13868 ;;;### (autoloads nil "w3-latex" "w3/w3-latex.el" (12984 29565)) | |
13869 ;;; Generated autoloads from w3/w3-latex.el | |
13870 | |
13871 ;;;*** | |
13872 | |
13873 ;;;### (autoloads nil "w3-menu" "w3/w3-menu.el" (12984 29565)) | |
13874 ;;; Generated autoloads from w3/w3-menu.el | |
13875 | |
13876 ;;;*** | |
13877 | |
13878 ;;;### (autoloads nil "w3-mouse" "w3/w3-mouse.el" (12984 29565)) | |
13879 ;;; Generated autoloads from w3/w3-mouse.el | |
13880 | |
13881 ;;;*** | |
13882 | |
13883 ;;;### (autoloads nil "w3-mule" "w3/w3-mule.el" (12984 29564)) | |
13884 ;;; Generated autoloads from w3/w3-mule.el | |
13885 | |
13886 ;;;*** | |
13887 | |
13888 ;;;### (autoloads nil "w3-parse" "w3/w3-parse.el" (12984 29564)) | |
13889 ;;; Generated autoloads from w3/w3-parse.el | |
13890 | |
13891 ;;;*** | |
13892 | |
13893 ;;;### (autoloads nil "w3-prefs" "w3/w3-prefs.el" (12984 29565)) | |
13894 ;;; Generated autoloads from w3/w3-prefs.el | |
13895 | |
13896 ;;;*** | |
13897 | |
13898 ;;;### (autoloads nil "w3-print" "w3/w3-print.el" (12984 29565)) | |
13899 ;;; Generated autoloads from w3/w3-print.el | |
13900 | |
13901 ;;;*** | |
13902 | |
13903 ;;;### (autoloads nil "w3-speak" "w3/w3-speak.el" (12984 29565)) | |
13904 ;;; Generated autoloads from w3/w3-speak.el | |
13905 | |
13906 ;;;*** | |
13907 | |
13908 ;;;### (autoloads nil "w3-style" "w3/w3-style.el" (12984 29565)) | |
13909 ;;; Generated autoloads from w3/w3-style.el | |
13910 | |
13911 ;;;*** | |
13912 | |
13913 ;;;### (autoloads nil "w3-sysdp" "w3/w3-sysdp.el" (12984 29564)) | |
13914 ;;; Generated autoloads from w3/w3-sysdp.el | |
13915 | |
13916 ;;;*** | |
13917 | |
13918 ;;;### (autoloads nil "w3-toolbar" "w3/w3-toolbar.el" (12984 29564)) | |
13919 ;;; Generated autoloads from w3/w3-toolbar.el | |
13920 | |
13921 ;;;*** | |
13922 | |
13923 ;;;### (autoloads nil "w3-vars" "w3/w3-vars.el" (12984 29564)) | |
13924 ;;; Generated autoloads from w3/w3-vars.el | |
13925 | |
13926 ;;;*** | |
13927 | |
13928 ;;;### (autoloads nil "w3-widget" "w3/w3-widget.el" (12984 29565)) | |
13929 ;;; Generated autoloads from w3/w3-widget.el | |
13930 | |
13931 ;;;*** | |
13932 | |
13933 ;;;### (autoloads nil "w3-xem20" "w3/w3-xem20.el" (12984 29565)) | |
13934 ;;; Generated autoloads from w3/w3-xem20.el | |
13935 | |
13936 ;;;*** | |
13937 | |
13938 ;;;### (autoloads nil "w3-xemac" "w3/w3-xemac.el" (12984 29564)) | |
13939 ;;; Generated autoloads from w3/w3-xemac.el | |
13940 | |
13941 ;;;*** | |
13942 | |
13943 ;;;*** | |
13944 | |
13945 ;;;### (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" (12984 29564)) | |
13946 ;;; Generated autoloads from w3/w3.el | |
13947 | |
13948 (autoload 'w3-open-local "w3" "\ | |
13949 Find a local file, and interpret it as a hypertext document. | |
13950 It will prompt for an existing file or directory, and retrieve it as a | |
13951 hypertext document. If it is a directory, and url-use-hypertext-dired | |
13952 is non-nil, then an HTML directory listing is created on the fly. | |
13953 Otherwise, dired-mode is used to visit the buffer." t nil) | |
13954 | |
13955 (autoload 'w3-find-file "w3" "\ | |
13956 Find a local file, and interpret it as a hypertext document. | |
13957 It will prompt for an existing file or directory, and retrieve it as a | |
13958 hypertext document. If it is a directory, and url-use-hypertext-dired | |
13959 is non-nil, then an HTML directory listing is created on the fly. | |
13960 Otherwise, dired-mode is used to visit the buffer." t nil) | |
13961 | |
13962 (autoload 'w3-fetch-other-frame "w3" "\ | |
13963 Attempt to follow the hypertext reference under point in a new frame. | |
13964 With prefix-arg P, ignore viewers and dump the link straight | |
13965 to disk." t nil) | |
13966 | |
13967 (autoload 'w3-fetch "w3" "\ | |
13968 Retrieve a document over the World Wide Web. | |
13969 The World Wide Web is a global hypertext system started by CERN in | |
13970 Switzerland in 1991. | |
13971 | |
13972 The document should be specified by its fully specified | |
13973 Uniform Resource Locator. The document will be parsed, printed, or | |
13974 passed to an external viewer as appropriate. Variable | |
13975 `mm-mime-info' specifies viewers for particular file types." t nil) | |
13976 | |
13977 (autoload 'w3-maybe-follow-link-mouse "w3" "\ | |
13978 Maybe follow a hypertext link under point. | |
13979 If there is no link under point, this will try using | |
13980 url-get-url-at-point" t nil) | |
13981 | |
13982 (autoload 'w3-maybe-follow-link "w3" "\ | |
13983 Maybe follow a hypertext link under point. | |
13984 If there is no link under point, this will try using | |
13985 url-get-url-at-point" t nil) | |
13986 | |
13987 (autoload 'w3-follow-url-at-point-other-frame "w3" "\ | |
13988 Follow the URL under PT, defaults to link under (point)" t nil) | |
13989 | |
13990 (autoload 'w3-follow-url-at-point "w3" "\ | |
13991 Follow the URL under PT, defaults to link under (point)" t nil) | |
13992 | |
13993 (autoload 'w3-batch-fetch "w3" "\ | |
13994 Fetch all the URLs on the command line and save them to files in | |
13995 the current directory. The first argument after the -f w3-batch-fetch | |
13996 on the command line should be a string specifying how to save the | |
13997 information retrieved. If it is \"html\", then the page will be | |
13998 unformatted when it is written to disk. If it is \"text\", then the | |
13999 page will be formatted before it is written to disk. If it is | |
14000 \"binary\" it will not mess with the file extensions, and just save | |
14001 the data in raw binary format. If none of those, the default is | |
14002 \"text\", and the first argument is treated as a normal URL." nil nil) | |
14003 | |
14004 (autoload 'w3-preview-this-buffer "w3" "\ | |
14005 See what this buffer will look like when its formatted as HTML. | |
14006 HTML is the HyperText Markup Language used by the World Wide Web to | |
14007 specify formatting for text. More information on HTML can be found at | |
14008 ftp.w3.org:/pub/www/doc." t nil) | |
14009 | |
14010 (autoload 'w3 "w3" "\ | |
14011 Retrieve the default World Wide Web home page. | |
14012 The World Wide Web is a global hypertext system started by CERN in | |
14013 Switzerland in 1991. | |
14014 | |
14015 The home page is specified by the variable w3-default-homepage. The | |
14016 document should be specified by its fully specified Uniform Resource | |
14017 Locator. The document will be parsed as HTML (if appropriate) and | |
14018 displayed in a new buffer." t nil) | |
14019 | |
14020 (autoload 'w3-do-setup "w3" "\ | |
14021 Do setup - this is to avoid conflict with user settings when W3 is | |
14022 dumped with emacs." nil nil) | |
14023 | |
14024 (autoload 'w3-follow-link-other-frame "w3" "\ | |
14025 Attempt to follow the hypertext reference under point in a new frame. | |
14026 With prefix-arg P, ignore viewers and dump the link straight | |
14027 to disk." nil nil) | |
14028 | |
14029 (autoload 'w3-follow-link "w3" "\ | |
14030 Attempt to follow the hypertext reference under point. | |
14031 With prefix-arg P, ignore viewers and dump the link straight | |
14032 to disk." t nil) | |
14033 | |
14034 ;;;*** | |
14035 | |
14036 ;;;*** | |
14037 | |
14038 ;;;### (autoloads nil "widget-edit" "w3/widget-edit.el" (12984 29565)) | |
14039 ;;; Generated autoloads from w3/widget-edit.el | |
14040 | |
14041 ;;;*** | |
14042 | |
14043 ;;;*** | |
14044 | |
14045 ;;;### (autoloads nil "widget" "w3/widget.el" (12984 29565)) | |
14046 ;;; Generated autoloads from w3/widget.el | |
14047 | |
14048 ;;;*** | |
14049 | |
14050 ;;;### (autoloads nil "x-compose" "x11/x-compose.el" (12984 29561)) | |
14051 ;;; Generated autoloads from x11/x-compose.el | |
14052 | |
14053 ;;;*** | |
14054 | |
14055 ;;;*** | |
14056 | |
14057 ;;;*** | |
14058 | |
14059 ;;;### (autoloads nil "x-faces" "x11/x-faces.el" (12984 29561)) | |
14060 ;;; Generated autoloads from x11/x-faces.el | |
14061 | |
14062 ;;;*** | |
14063 | |
14064 ;;;### (autoloads (font-menu-weight-constructor font-menu-size-constructor font-menu-family-constructor reset-device-font-menus) "x-font-menu" "x11/x-font-menu.el" (12996 41539)) | |
14065 ;;; Generated autoloads from x11/x-font-menu.el | |
14066 | |
14067 (defvar font-menu-ignore-scaled-fonts t "\ | |
14068 *If non-nil, then the font menu will try to show only bitmap fonts.") | |
14069 | |
14070 (defvar font-menu-this-frame-only-p nil "\ | |
14071 *If non-nil, then changing the default font from the font menu will only | |
14072 affect one frame instead of all frames.") | |
14073 | |
14074 (fset 'install-font-menus 'reset-device-font-menus) | |
14075 | |
14076 (autoload 'reset-device-font-menus "x-font-menu" "\ | |
14077 Generates the `Font', `Size', and `Weight' submenus for the Options menu. | |
14078 This is run the first time that a font-menu is needed for each device. | |
14079 If you don't like the lazy invocation of this function, you can add it to | |
14080 `create-device-hook' and that will make the font menus respond more quickly | |
14081 when they are selected for the first time. If you add fonts to your system, | |
14082 or if you change your font path, you can call this to re-initialize the menus." nil nil) | |
14083 | |
14084 (autoload 'font-menu-family-constructor "x-font-menu" nil nil nil) | |
14085 | |
14086 (autoload 'font-menu-size-constructor "x-font-menu" nil nil nil) | |
14087 | |
14088 (autoload 'font-menu-weight-constructor "x-font-menu" nil nil nil) | |
14089 | |
14090 ;;;*** | |
14091 | |
14092 ;;;*** | |
14093 | |
14094 ;;;### (autoloads nil "x-init" "x11/x-init.el" (12988 19777)) | |
14095 ;;; Generated autoloads from x11/x-init.el | |
14096 | |
14097 ;;;*** | |
14098 | |
14099 ;;;*** | |
14100 | |
14101 ;;;*** | |
14102 | |
14103 ;;;### (autoloads nil "x-iso8859-1" "x11/x-iso8859-1.el" (12988 19775)) | |
14104 ;;; Generated autoloads from x11/x-iso8859-1.el | |
14105 | |
14106 ;;;*** | |
14107 | |
14108 ;;;*** | |
14109 | |
14110 ;;;### (autoloads nil "x-menubar" "x11/x-menubar.el" (12997 29158)) | |
14111 ;;; Generated autoloads from x11/x-menubar.el | |
14112 | |
14113 ;;;### (autoloads nil "x-misc" "x11/x-misc.el" (12984 29562)) | |
14114 ;;; Generated autoloads from x11/x-misc.el | |
14115 | |
14116 ;;;*** | |
14117 | |
14118 ;;;### (autoloads nil "x-mouse" "x11/x-mouse.el" (12984 29561)) | |
14119 ;;; Generated autoloads from x11/x-mouse.el | |
14120 | |
14121 ;;;*** | |
14122 | |
14123 ;;;### (autoloads nil "x-scrollbar" "x11/x-scrollbar.el" (12984 29562)) | |
14124 ;;; Generated autoloads from x11/x-scrollbar.el | |
14125 | |
14126 ;;;*** | |
14127 | |
14128 ;;;### (autoloads nil "x-select" "x11/x-select.el" (12984 29561)) | |
14129 ;;; Generated autoloads from x11/x-select.el | |
14130 | |
14131 ;;;*** | |
14132 | |
14133 ;;;*** | |
14134 | |
14135 ;;;### (autoloads nil "x-toolbar" "x11/x-toolbar.el" (12906 6177)) | |
14136 ;;; Generated autoloads from x11/x-toolbar.el | |
14137 | |
14138 ;;;### (autoloads nil "x-win-sun" "x11/x-win-sun.el" (12823 45303)) | |
14139 ;;; Generated autoloads from x11/x-win-sun.el | |
14140 | |
14141 ;;;### (autoloads nil "x-win-xfree86" "x11/x-win-xfree86.el" (12677 32709)) | |
14142 ;;; Generated autoloads from x11/x-win-xfree86.el | |
14143 | |
14144 ;;; Generated autoloads from x11/x-win-sun.el | |
14145 | |
14146 ;;; Don't make backup versions of this file - most of it is generated | |
14147 ;;; automatically by autoload.el, and what isn't changes rarely. | |
14148 ;;; Local Variables: | 317 ;;; Local Variables: |
14149 ;;; version-control: never | |
14150 ;;; no-byte-compile: t | 318 ;;; no-byte-compile: t |
14151 ;;; no-update-autoloads: t | 319 ;;; no-update-autoloads: t |
14152 ;;; End: | 320 ;;; End: |
14153 ;;; loaddefs.el ends here | 321 ;;; loaddefs.el ends here |