diff options
| author | Gerd Moellmann | 2000-12-04 12:28:37 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2000-12-04 12:28:37 +0000 |
| commit | 6c083b4cec6d39893a0fa3c2c994e6c05bf0a07b (patch) | |
| tree | e9c39445717f8845af6f47083f65a478c39bd44d | |
| parent | 793cd2c862240d14a8f87e7747dba0661892ec6c (diff) | |
| download | emacs-6c083b4cec6d39893a0fa3c2c994e6c05bf0a07b.tar.gz emacs-6c083b4cec6d39893a0fa3c2c994e6c05bf0a07b.zip | |
*** empty log message ***
| -rw-r--r-- | etc/NEWS | 6 | ||||
| -rw-r--r-- | lisp/cus-load.el | 93 | ||||
| -rw-r--r-- | lisp/loaddefs.el | 658 | ||||
| -rw-r--r-- | src/ChangeLog | 6 |
4 files changed, 548 insertions, 215 deletions
| @@ -2584,8 +2584,10 @@ are now defined in Emacs Lisp. | |||
| 2584 | Then return the value of RESULT, or nil if RESULT is omitted. | 2584 | Then return the value of RESULT, or nil if RESULT is omitted. |
| 2585 | 2585 | ||
| 2586 | +++ | 2586 | +++ |
| 2587 | ** Regular expressions now support Posix character classes such | 2587 | ** Regular expressions now support Posix character classes such as |
| 2588 | as [:alpha:], [:space:] and so on. | 2588 | [:alpha:], [:space:] and so on. These must be used within a character |
| 2589 | class--for instance, [-[:digit:].+] matches digits or a period | ||
| 2590 | or a sign. | ||
| 2589 | 2591 | ||
| 2590 | [:digit:] matches 0 through 9 | 2592 | [:digit:] matches 0 through 9 |
| 2591 | [:cntrl:] matches ASCII control characters | 2593 | [:cntrl:] matches ASCII control characters |
diff --git a/lisp/cus-load.el b/lisp/cus-load.el index 424c174e67c..27605eb750a 100644 --- a/lisp/cus-load.el +++ b/lisp/cus-load.el | |||
| @@ -60,9 +60,9 @@ | |||
| 60 | (put 'gnus-score-expire 'custom-loads '("gnus-kill" "gnus-score")) | 60 | (put 'gnus-score-expire 'custom-loads '("gnus-kill" "gnus-score")) |
| 61 | (put 'supercite-frames 'custom-loads '("supercite")) | 61 | (put 'supercite-frames 'custom-loads '("supercite")) |
| 62 | (put 'dirtrack 'custom-loads '("dirtrack")) | 62 | (put 'dirtrack 'custom-loads '("dirtrack")) |
| 63 | (put 'ediff-window 'custom-loads '("ediff-wind")) | 63 | (put 'ediff-window 'custom-loads '("ediff-help" "ediff-wind")) |
| 64 | (put 'bruce 'custom-loads '("bruce")) | 64 | (put 'bruce 'custom-loads '("bruce")) |
| 65 | (put 'windows 'custom-loads '("window" "follow" "windmove")) | 65 | (put 'windows 'custom-loads '("scroll-all" "window" "follow" "windmove")) |
| 66 | (put 'gnus-exit 'custom-loads '("gnus-group" "gnus")) | 66 | (put 'gnus-exit 'custom-loads '("gnus-group" "gnus")) |
| 67 | (put 'speedbar 'custom-loads '("speedbar")) | 67 | (put 'speedbar 'custom-loads '("speedbar")) |
| 68 | (put 'etags 'custom-loads '("etags")) | 68 | (put 'etags 'custom-loads '("etags")) |
| @@ -139,7 +139,7 @@ | |||
| 139 | (put 'feedmail-spray 'custom-loads '("feedmail")) | 139 | (put 'feedmail-spray 'custom-loads '("feedmail")) |
| 140 | (put 'idlwave-external-programs 'custom-loads '("idlwave")) | 140 | (put 'idlwave-external-programs 'custom-loads '("idlwave")) |
| 141 | (put 'strokes 'custom-loads '("strokes")) | 141 | (put 'strokes 'custom-loads '("strokes")) |
| 142 | (put 'mouse 'custom-loads '("faces" "mouse" "menu-bar" "avoid" "mouse-sel" "msb" "mwheel" "strokes" "tooltip" "goto-addr")) | 142 | (put 'mouse 'custom-loads '("faces" "mouse" "menu-bar" "avoid" "mouse-sel" "msb" "mwheel" "strokes" "tooltip" "artist" "goto-addr")) |
| 143 | (put 'nnmail-various 'custom-loads '("nnmail")) | 143 | (put 'nnmail-various 'custom-loads '("nnmail")) |
| 144 | (put 'smiley 'custom-loads '("smiley-ems")) | 144 | (put 'smiley 'custom-loads '("smiley-ems")) |
| 145 | (put 'extensions 'custom-loads '("generic" "time-stamp" "wid-edit" "cust-print" "eldoc" "page-ext")) | 145 | (put 'extensions 'custom-loads '("generic" "time-stamp" "wid-edit" "cust-print" "eldoc" "page-ext")) |
| @@ -181,7 +181,6 @@ | |||
| 181 | (put 'eshell-prompt 'custom-loads '("em-prompt")) | 181 | (put 'eshell-prompt 'custom-loads '("em-prompt")) |
| 182 | (put 'vhdl-sequential-process 'custom-loads '("vhdl-mode")) | 182 | (put 'vhdl-sequential-process 'custom-loads '("vhdl-mode")) |
| 183 | (put 'simula 'custom-loads '("simula")) | 183 | (put 'simula 'custom-loads '("simula")) |
| 184 | (put 'bs-appearence 'custom-loads '("bs")) | ||
| 185 | (put 'vhdl-comment 'custom-loads '("vhdl-mode")) | 184 | (put 'vhdl-comment 'custom-loads '("vhdl-mode")) |
| 186 | (put 'message-buffers 'custom-loads '("message")) | 185 | (put 'message-buffers 'custom-loads '("message")) |
| 187 | (put '5x5 'custom-loads '("5x5")) | 186 | (put '5x5 'custom-loads '("5x5")) |
| @@ -207,6 +206,7 @@ | |||
| 207 | (put 'forms 'custom-loads '("forms")) | 206 | (put 'forms 'custom-loads '("forms")) |
| 208 | (put 'widget-documentation 'custom-loads '("wid-edit")) | 207 | (put 'widget-documentation 'custom-loads '("wid-edit")) |
| 209 | (put 'eshell-banner 'custom-loads '("em-banner")) | 208 | (put 'eshell-banner 'custom-loads '("em-banner")) |
| 209 | (put 'artist 'custom-loads '("artist")) | ||
| 210 | (put 'gnus-score-various 'custom-loads '("gnus-score" "gnus")) | 210 | (put 'gnus-score-various 'custom-loads '("gnus-score" "gnus")) |
| 211 | (put 'cperl-faces 'custom-loads '("cperl-mode")) | 211 | (put 'cperl-faces 'custom-loads '("cperl-mode")) |
| 212 | (put 'goto-address 'custom-loads '("goto-addr")) | 212 | (put 'goto-address 'custom-loads '("goto-addr")) |
| @@ -250,6 +250,7 @@ | |||
| 250 | (put 'idlwave-shell-highlighting-and-faces 'custom-loads '("idlw-shell")) | 250 | (put 'idlwave-shell-highlighting-and-faces 'custom-loads '("idlw-shell")) |
| 251 | (put 'tcl 'custom-loads '("tcl")) | 251 | (put 'tcl 'custom-loads '("tcl")) |
| 252 | (put 'vhdl-print 'custom-loads '("vhdl-mode")) | 252 | (put 'vhdl-print 'custom-loads '("vhdl-mode")) |
| 253 | (put 'artist-text 'custom-loads '("artist")) | ||
| 253 | (put 'gnus-summary-tree 'custom-loads '("gnus-salt")) | 254 | (put 'gnus-summary-tree 'custom-loads '("gnus-salt")) |
| 254 | (put 'tar 'custom-loads '("tar-mode")) | 255 | (put 'tar 'custom-loads '("tar-mode")) |
| 255 | (put 'archive 'custom-loads '("arc-mode")) | 256 | (put 'archive 'custom-loads '("arc-mode")) |
| @@ -265,7 +266,7 @@ | |||
| 265 | (put 'tags 'custom-loads '("speedbar")) | 266 | (put 'tags 'custom-loads '("speedbar")) |
| 266 | (put 'eshell-proc 'custom-loads '("esh-proc")) | 267 | (put 'eshell-proc 'custom-loads '("esh-proc")) |
| 267 | (put 'custom-browse 'custom-loads '("cus-edit")) | 268 | (put 'custom-browse 'custom-loads '("cus-edit")) |
| 268 | (put 'mime 'custom-loads '("mm-bodies")) | 269 | (put 'mime 'custom-loads '("mailcap" "mm-bodies")) |
| 269 | (put 'generic-x 'custom-loads '("generic-x")) | 270 | (put 'generic-x 'custom-loads '("generic-x")) |
| 270 | (put 'partial-completion 'custom-loads '("complete")) | 271 | (put 'partial-completion 'custom-loads '("complete")) |
| 271 | (put 'whitespace 'custom-loads '("whitespace")) | 272 | (put 'whitespace 'custom-loads '("whitespace")) |
| @@ -386,6 +387,7 @@ | |||
| 386 | (put 'change-log 'custom-loads '("add-log")) | 387 | (put 'change-log 'custom-loads '("add-log")) |
| 387 | (put 'gnus-group-levels 'custom-loads '("gnus-group" "gnus-start" "gnus")) | 388 | (put 'gnus-group-levels 'custom-loads '("gnus-group" "gnus-start" "gnus")) |
| 388 | (put 'cperl 'custom-loads '("cperl-mode")) | 389 | (put 'cperl 'custom-loads '("cperl-mode")) |
| 390 | (put 'bs-appearance 'custom-loads '("bs")) | ||
| 389 | (put 'pcmpl-cvs 'custom-loads '("pcmpl-cvs")) | 391 | (put 'pcmpl-cvs 'custom-loads '("pcmpl-cvs")) |
| 390 | (put 'eshell-mode 'custom-loads '("esh-mode")) | 392 | (put 'eshell-mode 'custom-loads '("esh-mode")) |
| 391 | (put 'files 'custom-loads '("files" "autoinsert" "autorevert" "cus-edit" "filecache" "recentf" "shadow" "ange-ftp")) | 393 | (put 'files 'custom-loads '("files" "autoinsert" "autorevert" "cus-edit" "filecache" "recentf" "shadow" "ange-ftp")) |
| @@ -458,7 +460,7 @@ | |||
| 458 | (put 'hl-line 'custom-loads '("hl-line")) | 460 | (put 'hl-line 'custom-loads '("hl-line")) |
| 459 | (put 'eshell-glob 'custom-loads '("em-glob")) | 461 | (put 'eshell-glob 'custom-loads '("em-glob")) |
| 460 | (put 'internal 'custom-loads '("startup" "cus-edit" "delim-col")) | 462 | (put 'internal 'custom-loads '("startup" "cus-edit" "delim-col")) |
| 461 | (put 'lisp 'custom-loads '("simple" "lisp" "lisp-mode" "cmuscheme" "ielm" "xscheme" "advice" "bytecomp" "checkdoc" "cl-indent" "cust-print" "edebug" "eldoc" "elp" "find-func" "pp" "re-builder" "shadow" "trace" "scheme")) | 463 | (put 'lisp 'custom-loads '("simple" "lisp" "lisp-mode" "ielm" "xscheme" "advice" "bytecomp" "checkdoc" "cl-indent" "cust-print" "edebug" "eldoc" "elp" "find-func" "pp" "re-builder" "shadow" "trace" "scheme")) |
| 462 | (put 'local 'custom-loads '("calendar")) | 464 | (put 'local 'custom-loads '("calendar")) |
| 463 | (put 'rlogin 'custom-loads '("rlogin")) | 465 | (put 'rlogin 'custom-loads '("rlogin")) |
| 464 | (put 'debugger 'custom-loads '("debug")) | 466 | (put 'debugger 'custom-loads '("debug")) |
| @@ -542,7 +544,7 @@ | |||
| 542 | (put 'hardware 'custom-loads '("battery")) | 544 | (put 'hardware 'custom-loads '("battery")) |
| 543 | (put 'edebug 'custom-loads '("edebug")) | 545 | (put 'edebug 'custom-loads '("edebug")) |
| 544 | (put 'emerge 'custom-loads '("emerge")) | 546 | (put 'emerge 'custom-loads '("emerge")) |
| 545 | (put 'scheme 'custom-loads '("scheme")) | 547 | (put 'scheme 'custom-loads '("cmuscheme" "scheme")) |
| 546 | (put 'gametree 'custom-loads '("gametree")) | 548 | (put 'gametree 'custom-loads '("gametree")) |
| 547 | (put 'gnus-group-foreign 'custom-loads '("gnus-group")) | 549 | (put 'gnus-group-foreign 'custom-loads '("gnus-group")) |
| 548 | (put 'initialization 'custom-loads '("startup")) | 550 | (put 'initialization 'custom-loads '("startup")) |
| @@ -556,6 +558,7 @@ | |||
| 556 | (put 'eshell-unix 'custom-loads '("em-unix")) | 558 | (put 'eshell-unix 'custom-loads '("em-unix")) |
| 557 | (put 'hi-lock-faces 'custom-loads '("hi-lock")) | 559 | (put 'hi-lock-faces 'custom-loads '("hi-lock")) |
| 558 | (put 'hideshow 'custom-loads '("hideshow")) | 560 | (put 'hideshow 'custom-loads '("hideshow")) |
| 561 | (put 'mailcap 'custom-loads '("mailcap")) | ||
| 559 | (put 'viper-search 'custom-loads '("viper-init")) | 562 | (put 'viper-search 'custom-loads '("viper-init")) |
| 560 | (put 'mule 'custom-loads '("mule-cmds" "kkc")) | 563 | (put 'mule 'custom-loads '("mule-cmds" "kkc")) |
| 561 | (put 'glasses 'custom-loads '("glasses")) | 564 | (put 'glasses 'custom-loads '("glasses")) |
| @@ -577,7 +580,7 @@ | |||
| 577 | (put 'delphi 'custom-loads '("delphi")) | 580 | (put 'delphi 'custom-loads '("delphi")) |
| 578 | (put 're-builder 'custom-loads '("re-builder")) | 581 | (put 're-builder 'custom-loads '("re-builder")) |
| 579 | (put 'eshell-io 'custom-loads '("esh-io")) | 582 | (put 'eshell-io 'custom-loads '("esh-io")) |
| 580 | (put 'killing 'custom-loads '("simple")) | 583 | (put 'killing 'custom-loads '("simple" "x-win")) |
| 581 | (put 'woman-interface 'custom-loads '("woman")) | 584 | (put 'woman-interface 'custom-loads '("woman")) |
| 582 | (put 'gnus-group-various 'custom-loads '("gnus-group" "gnus")) | 585 | (put 'gnus-group-various 'custom-loads '("gnus-group" "gnus")) |
| 583 | ;;; These are for handling :version. We need to have a minimum of | 586 | ;;; These are for handling :version. We need to have a minimum of |
| @@ -619,10 +622,14 @@ | |||
| 619 | (custom-put-if-not 'footnote 'group-documentation "Support for footnotes in mail and news messages.") | 622 | (custom-put-if-not 'footnote 'group-documentation "Support for footnotes in mail and news messages.") |
| 620 | (custom-put-if-not 'pcomplete 'custom-version "21.1") | 623 | (custom-put-if-not 'pcomplete 'custom-version "21.1") |
| 621 | (custom-put-if-not 'pcomplete 'group-documentation "Programmable completion.") | 624 | (custom-put-if-not 'pcomplete 'group-documentation "Programmable completion.") |
| 625 | (custom-put-if-not 'gnus-mime-action-alist 'custom-version "21.1") | ||
| 626 | (custom-put-if-not 'gnus-mime-action-alist 'standard-value t) | ||
| 622 | (custom-put-if-not 'fancy-splash-screen 'custom-version "21.1") | 627 | (custom-put-if-not 'fancy-splash-screen 'custom-version "21.1") |
| 623 | (custom-put-if-not 'fancy-splash-screen 'group-documentation "Fancy splash screen when Emacs starts.") | 628 | (custom-put-if-not 'fancy-splash-screen 'group-documentation "Fancy splash screen when Emacs starts.") |
| 624 | (custom-put-if-not 'custom-variable-default-form 'custom-version "20.3") | 629 | (custom-put-if-not 'custom-variable-default-form 'custom-version "20.3") |
| 625 | (custom-put-if-not 'custom-variable-default-form 'standard-value t) | 630 | (custom-put-if-not 'custom-variable-default-form 'standard-value t) |
| 631 | (custom-put-if-not 'gnus-agent-synchronize-flags 'custom-version "21.1") | ||
| 632 | (custom-put-if-not 'gnus-agent-synchronize-flags 'standard-value t) | ||
| 626 | (custom-put-if-not 'mode-line 'custom-version "21.1") | 633 | (custom-put-if-not 'mode-line 'custom-version "21.1") |
| 627 | (custom-put-if-not 'mode-line 'group-documentation nil) | 634 | (custom-put-if-not 'mode-line 'group-documentation nil) |
| 628 | (custom-put-if-not 'find-function-after-hook 'custom-version "20.3") | 635 | (custom-put-if-not 'find-function-after-hook 'custom-version "20.3") |
| @@ -635,10 +642,16 @@ | |||
| 635 | (custom-put-if-not 'browse-url-lynx-input-field 'standard-value t) | 642 | (custom-put-if-not 'browse-url-lynx-input-field 'standard-value t) |
| 636 | (custom-put-if-not 'help-highlight-face 'custom-version "20.3") | 643 | (custom-put-if-not 'help-highlight-face 'custom-version "20.3") |
| 637 | (custom-put-if-not 'help-highlight-face 'standard-value t) | 644 | (custom-put-if-not 'help-highlight-face 'standard-value t) |
| 645 | (custom-put-if-not 'ldap 'custom-version "21.1") | ||
| 646 | (custom-put-if-not 'ldap 'group-documentation "Lightweight Directory Access Protocol.") | ||
| 638 | (custom-put-if-not 'vc-cvs-header 'custom-version "21.1") | 647 | (custom-put-if-not 'vc-cvs-header 'custom-version "21.1") |
| 639 | (custom-put-if-not 'vc-cvs-header 'standard-value t) | 648 | (custom-put-if-not 'vc-cvs-header 'standard-value t) |
| 640 | (custom-put-if-not 'speedbar 'custom-version "20.3") | 649 | (custom-put-if-not 'speedbar 'custom-version "20.3") |
| 641 | (custom-put-if-not 'speedbar 'group-documentation "File and tag browser frame.") | 650 | (custom-put-if-not 'speedbar 'group-documentation "File and tag browser frame.") |
| 651 | (custom-put-if-not 'message-dont-reply-to-names 'custom-version "21.1") | ||
| 652 | (custom-put-if-not 'message-dont-reply-to-names 'standard-value t) | ||
| 653 | (custom-put-if-not 'nnmail-expiry-target 'custom-version "21.1") | ||
| 654 | (custom-put-if-not 'nnmail-expiry-target 'standard-value t) | ||
| 642 | (custom-put-if-not 'custom-button-face 'custom-version "21.1") | 655 | (custom-put-if-not 'custom-button-face 'custom-version "21.1") |
| 643 | (custom-put-if-not 'custom-button-face 'group-documentation nil) | 656 | (custom-put-if-not 'custom-button-face 'group-documentation nil) |
| 644 | (custom-put-if-not 'cursor 'custom-version "21.1") | 657 | (custom-put-if-not 'cursor 'custom-version "21.1") |
| @@ -667,6 +680,8 @@ bash, zsh, rc, 4dos; since Emacs itself is capable of handling most of | |||
| 667 | the tasks accomplished by such tools.") | 680 | the tasks accomplished by such tools.") |
| 668 | (custom-put-if-not 'compilation-scroll-output 'custom-version "20.3") | 681 | (custom-put-if-not 'compilation-scroll-output 'custom-version "20.3") |
| 669 | (custom-put-if-not 'compilation-scroll-output 'standard-value t) | 682 | (custom-put-if-not 'compilation-scroll-output 'standard-value t) |
| 683 | (custom-put-if-not 'gnus-unbuttonized-mime-types 'custom-version "21.1") | ||
| 684 | (custom-put-if-not 'gnus-unbuttonized-mime-types 'standard-value t) | ||
| 670 | (custom-put-if-not 'vc-dired-recurse 'custom-version "20.3") | 685 | (custom-put-if-not 'vc-dired-recurse 'custom-version "20.3") |
| 671 | (custom-put-if-not 'vc-dired-recurse 'standard-value t) | 686 | (custom-put-if-not 'vc-dired-recurse 'standard-value t) |
| 672 | (custom-put-if-not 'change-log-email-face 'custom-version "21.1") | 687 | (custom-put-if-not 'change-log-email-face 'custom-version "21.1") |
| @@ -707,6 +722,8 @@ the tasks accomplished by such tools.") | |||
| 707 | (custom-put-if-not 'tildify 'group-documentation "Adding missing hard spaces or other text fragments into texts.") | 722 | (custom-put-if-not 'tildify 'group-documentation "Adding missing hard spaces or other text fragments into texts.") |
| 708 | (custom-put-if-not 'vc-rcs-checkin-switches 'custom-version "21.1") | 723 | (custom-put-if-not 'vc-rcs-checkin-switches 'custom-version "21.1") |
| 709 | (custom-put-if-not 'vc-rcs-checkin-switches 'standard-value t) | 724 | (custom-put-if-not 'vc-rcs-checkin-switches 'standard-value t) |
| 725 | (custom-put-if-not 'gnus-article-banner-alist 'custom-version "21.1") | ||
| 726 | (custom-put-if-not 'gnus-article-banner-alist 'standard-value t) | ||
| 710 | (custom-put-if-not 'region 'custom-version "21.1") | 727 | (custom-put-if-not 'region 'custom-version "21.1") |
| 711 | (custom-put-if-not 'region 'group-documentation nil) | 728 | (custom-put-if-not 'region 'group-documentation nil) |
| 712 | (custom-put-if-not 'change-log-version-info-enabled 'custom-version "21.1") | 729 | (custom-put-if-not 'change-log-version-info-enabled 'custom-version "21.1") |
| @@ -717,6 +734,8 @@ the tasks accomplished by such tools.") | |||
| 717 | (custom-put-if-not 'change-log-name-face 'group-documentation nil) | 734 | (custom-put-if-not 'change-log-name-face 'group-documentation nil) |
| 718 | (custom-put-if-not 'sql-electric-stuff 'custom-version "20.8") | 735 | (custom-put-if-not 'sql-electric-stuff 'custom-version "20.8") |
| 719 | (custom-put-if-not 'sql-electric-stuff 'standard-value t) | 736 | (custom-put-if-not 'sql-electric-stuff 'standard-value t) |
| 737 | (custom-put-if-not 'gnus-ignored-from-addresses 'custom-version "21.1") | ||
| 738 | (custom-put-if-not 'gnus-ignored-from-addresses 'standard-value t) | ||
| 720 | (custom-put-if-not 'ansi-colors 'custom-version "20.7") | 739 | (custom-put-if-not 'ansi-colors 'custom-version "20.7") |
| 721 | (custom-put-if-not 'ansi-colors 'group-documentation "Translating SGR control sequences to text-properties. | 740 | (custom-put-if-not 'ansi-colors 'group-documentation "Translating SGR control sequences to text-properties. |
| 722 | This translation effectively colorizes strings and regions based upon | 741 | This translation effectively colorizes strings and regions based upon |
| @@ -724,18 +743,30 @@ SGR control sequences embedded in the text. SGR (Select Graphic | |||
| 724 | Rendition) control sequences are defined in section 3.8.117 of the | 743 | Rendition) control sequences are defined in section 3.8.117 of the |
| 725 | ECMA-48 standard (identical to ISO/IEC 6429), which is freely available | 744 | ECMA-48 standard (identical to ISO/IEC 6429), which is freely available |
| 726 | as a PDF file <URL:http://www.ecma.ch/ecma1/STAND/ECMA-048.HTM>.") | 745 | as a PDF file <URL:http://www.ecma.ch/ecma1/STAND/ECMA-048.HTM>.") |
| 746 | (custom-put-if-not 'gnus-group-name-charset-method-alist 'custom-version "21.1") | ||
| 747 | (custom-put-if-not 'gnus-group-name-charset-method-alist 'standard-value t) | ||
| 727 | (custom-put-if-not 'vc-sccs-register-switches 'custom-version "21.1") | 748 | (custom-put-if-not 'vc-sccs-register-switches 'custom-version "21.1") |
| 728 | (custom-put-if-not 'vc-sccs-register-switches 'standard-value t) | 749 | (custom-put-if-not 'vc-sccs-register-switches 'standard-value t) |
| 750 | (custom-put-if-not 'gnus-article-date-lapsed-new-header 'custom-version "21.1") | ||
| 751 | (custom-put-if-not 'gnus-article-date-lapsed-new-header 'standard-value t) | ||
| 729 | (custom-put-if-not 'midnight 'custom-version "20.3") | 752 | (custom-put-if-not 'midnight 'custom-version "20.3") |
| 730 | (custom-put-if-not 'midnight 'group-documentation "Run something every day at midnight.") | 753 | (custom-put-if-not 'midnight 'group-documentation "Run something every day at midnight.") |
| 754 | (custom-put-if-not 'gnus-extra-headers 'custom-version "21.1") | ||
| 755 | (custom-put-if-not 'gnus-extra-headers 'standard-value t) | ||
| 731 | (custom-put-if-not 'speedbar-use-images 'custom-version "21.1") | 756 | (custom-put-if-not 'speedbar-use-images 'custom-version "21.1") |
| 732 | (custom-put-if-not 'speedbar-use-images 'standard-value t) | 757 | (custom-put-if-not 'speedbar-use-images 'standard-value t) |
| 758 | (custom-put-if-not 'gnus-auto-expirable-marks 'custom-version "21.1") | ||
| 759 | (custom-put-if-not 'gnus-auto-expirable-marks 'standard-value t) | ||
| 733 | (custom-put-if-not 'automatic-hscrolling 'custom-version "21.1") | 760 | (custom-put-if-not 'automatic-hscrolling 'custom-version "21.1") |
| 734 | (custom-put-if-not 'automatic-hscrolling 'standard-value t) | 761 | (custom-put-if-not 'automatic-hscrolling 'standard-value t) |
| 735 | (custom-put-if-not 'custom-buffer-done-function 'custom-version "21.1") | 762 | (custom-put-if-not 'custom-buffer-done-function 'custom-version "21.1") |
| 736 | (custom-put-if-not 'custom-buffer-done-function 'standard-value t) | 763 | (custom-put-if-not 'custom-buffer-done-function 'standard-value t) |
| 764 | (custom-put-if-not 'gnus-article-mime-match-handle-function 'custom-version "21.1") | ||
| 765 | (custom-put-if-not 'gnus-article-mime-match-handle-function 'standard-value t) | ||
| 737 | (custom-put-if-not 'cwarn 'custom-version "21.1") | 766 | (custom-put-if-not 'cwarn 'custom-version "21.1") |
| 738 | (custom-put-if-not 'cwarn 'group-documentation "Highlight suspicious C and C++ constructions.") | 767 | (custom-put-if-not 'cwarn 'group-documentation "Highlight suspicious C and C++ constructions.") |
| 768 | (custom-put-if-not 'message-buffer-naming-style 'custom-version "21.1") | ||
| 769 | (custom-put-if-not 'message-buffer-naming-style 'standard-value t) | ||
| 739 | (custom-put-if-not 'tags-apropos-additional-actions 'custom-version "21.1") | 770 | (custom-put-if-not 'tags-apropos-additional-actions 'custom-version "21.1") |
| 740 | (custom-put-if-not 'tags-apropos-additional-actions 'standard-value t) | 771 | (custom-put-if-not 'tags-apropos-additional-actions 'standard-value t) |
| 741 | (custom-put-if-not 'generic-x 'custom-version "20.3") | 772 | (custom-put-if-not 'generic-x 'custom-version "20.3") |
| @@ -760,6 +791,8 @@ as a PDF file <URL:http://www.ecma.ch/ecma1/STAND/ECMA-048.HTM>.") | |||
| 760 | (custom-put-if-not 'vc-rcs-header 'standard-value t) | 791 | (custom-put-if-not 'vc-rcs-header 'standard-value t) |
| 761 | (custom-put-if-not 'vhdl 'custom-version "20.4") | 792 | (custom-put-if-not 'vhdl 'custom-version "20.4") |
| 762 | (custom-put-if-not 'vhdl 'group-documentation "Customizations for VHDL Mode.") | 793 | (custom-put-if-not 'vhdl 'group-documentation "Customizations for VHDL Mode.") |
| 794 | (custom-put-if-not 'face-font-registry-alternatives 'custom-version "21.1") | ||
| 795 | (custom-put-if-not 'face-font-registry-alternatives 'standard-value t) | ||
| 763 | (custom-put-if-not 'show-paren-priority 'custom-version "21.1") | 796 | (custom-put-if-not 'show-paren-priority 'custom-version "21.1") |
| 764 | (custom-put-if-not 'show-paren-priority 'standard-value t) | 797 | (custom-put-if-not 'show-paren-priority 'standard-value t) |
| 765 | (custom-put-if-not 'isearch-faces 'custom-version "21.1") | 798 | (custom-put-if-not 'isearch-faces 'custom-version "21.1") |
| @@ -782,6 +815,8 @@ as a PDF file <URL:http://www.ecma.ch/ecma1/STAND/ECMA-048.HTM>.") | |||
| 782 | (custom-put-if-not 'diary-mail-days 'standard-value t) | 815 | (custom-put-if-not 'diary-mail-days 'standard-value t) |
| 783 | (custom-put-if-not 'diary-mail-addr 'custom-version "20.3") | 816 | (custom-put-if-not 'diary-mail-addr 'custom-version "20.3") |
| 784 | (custom-put-if-not 'diary-mail-addr 'standard-value t) | 817 | (custom-put-if-not 'diary-mail-addr 'standard-value t) |
| 818 | (custom-put-if-not 'nnmail-extra-headers 'custom-version "21.1") | ||
| 819 | (custom-put-if-not 'nnmail-extra-headers 'standard-value t) | ||
| 785 | (custom-put-if-not 'font-lock-support-mode 'custom-version "21.1") | 820 | (custom-put-if-not 'font-lock-support-mode 'custom-version "21.1") |
| 786 | (custom-put-if-not 'font-lock-support-mode 'standard-value t) | 821 | (custom-put-if-not 'font-lock-support-mode 'standard-value t) |
| 787 | (custom-put-if-not 'compilation-error-screen-columns 'custom-version "20.4") | 822 | (custom-put-if-not 'compilation-error-screen-columns 'custom-version "20.4") |
| @@ -790,12 +825,16 @@ as a PDF file <URL:http://www.ecma.ch/ecma1/STAND/ECMA-048.HTM>.") | |||
| 790 | (custom-put-if-not 'debugger-record-buffer 'standard-value t) | 825 | (custom-put-if-not 'debugger-record-buffer 'standard-value t) |
| 791 | (custom-put-if-not 'query-replace-to-history-variable 'custom-version "20.3") | 826 | (custom-put-if-not 'query-replace-to-history-variable 'custom-version "20.3") |
| 792 | (custom-put-if-not 'query-replace-to-history-variable 'standard-value t) | 827 | (custom-put-if-not 'query-replace-to-history-variable 'standard-value t) |
| 828 | (custom-put-if-not 'gnus-mime-multipart-functions 'custom-version "21.1") | ||
| 829 | (custom-put-if-not 'gnus-mime-multipart-functions 'standard-value t) | ||
| 793 | (custom-put-if-not 'which-func 'custom-version "20.3") | 830 | (custom-put-if-not 'which-func 'custom-version "20.3") |
| 794 | (custom-put-if-not 'which-func 'group-documentation "Mode to display the current function name in the modeline.") | 831 | (custom-put-if-not 'which-func 'group-documentation "Mode to display the current function name in the modeline.") |
| 795 | (custom-put-if-not 'read-mail-command 'custom-version "21.1") | 832 | (custom-put-if-not 'read-mail-command 'custom-version "21.1") |
| 796 | (custom-put-if-not 'read-mail-command 'standard-value t) | 833 | (custom-put-if-not 'read-mail-command 'standard-value t) |
| 797 | (custom-put-if-not 'ange-ftp-try-passive-mode 'custom-version 21.1) | 834 | (custom-put-if-not 'ange-ftp-try-passive-mode 'custom-version 21.1) |
| 798 | (custom-put-if-not 'ange-ftp-try-passive-mode 'standard-value t) | 835 | (custom-put-if-not 'ange-ftp-try-passive-mode 'standard-value t) |
| 836 | (custom-put-if-not 'rmail-automatic-folder-directives 'custom-version "21.1") | ||
| 837 | (custom-put-if-not 'rmail-automatic-folder-directives 'standard-value t) | ||
| 799 | (custom-put-if-not 'mouse-buffer-menu-mode-mult 'custom-version "20.3") | 838 | (custom-put-if-not 'mouse-buffer-menu-mode-mult 'custom-version "20.3") |
| 800 | (custom-put-if-not 'mouse-buffer-menu-mode-mult 'standard-value t) | 839 | (custom-put-if-not 'mouse-buffer-menu-mode-mult 'standard-value t) |
| 801 | (custom-put-if-not 'eval-expression-print-length 'custom-version "21.1") | 840 | (custom-put-if-not 'eval-expression-print-length 'custom-version "21.1") |
| @@ -811,7 +850,7 @@ as a PDF file <URL:http://www.ecma.ch/ecma1/STAND/ECMA-048.HTM>.") | |||
| 811 | (custom-put-if-not 'gnus-charset 'custom-version "21.1") | 850 | (custom-put-if-not 'gnus-charset 'custom-version "21.1") |
| 812 | (custom-put-if-not 'gnus-charset 'group-documentation "Group character set issues.") | 851 | (custom-put-if-not 'gnus-charset 'group-documentation "Group character set issues.") |
| 813 | (custom-put-if-not 'calculator 'custom-version "21.1") | 852 | (custom-put-if-not 'calculator 'custom-version "21.1") |
| 814 | (custom-put-if-not 'calculator 'group-documentation "Simple pocket calculator.") | 853 | (custom-put-if-not 'calculator 'group-documentation "Simple Emacs calculator.") |
| 815 | (custom-put-if-not 'custom-button-pressed-face 'custom-version "21.1") | 854 | (custom-put-if-not 'custom-button-pressed-face 'custom-version "21.1") |
| 816 | (custom-put-if-not 'custom-button-pressed-face 'group-documentation nil) | 855 | (custom-put-if-not 'custom-button-pressed-face 'group-documentation nil) |
| 817 | (custom-put-if-not 'dos-codepage-setup-hook 'custom-version "20.3.3") | 856 | (custom-put-if-not 'dos-codepage-setup-hook 'custom-version "20.3.3") |
| @@ -834,6 +873,8 @@ as a PDF file <URL:http://www.ecma.ch/ecma1/STAND/ECMA-048.HTM>.") | |||
| 834 | (custom-put-if-not 'cperl 'group-documentation "Major mode for editing Perl code.") | 873 | (custom-put-if-not 'cperl 'group-documentation "Major mode for editing Perl code.") |
| 835 | (custom-put-if-not 'focus-follows-mouse 'custom-version "20.3") | 874 | (custom-put-if-not 'focus-follows-mouse 'custom-version "20.3") |
| 836 | (custom-put-if-not 'focus-follows-mouse 'standard-value t) | 875 | (custom-put-if-not 'focus-follows-mouse 'standard-value t) |
| 876 | (custom-put-if-not 'message-forward-as-mime 'custom-version "21.1") | ||
| 877 | (custom-put-if-not 'message-forward-as-mime 'standard-value t) | ||
| 837 | (custom-put-if-not 'pcl-cvs 'custom-version "21.1") | 878 | (custom-put-if-not 'pcl-cvs 'custom-version "21.1") |
| 838 | (custom-put-if-not 'pcl-cvs 'group-documentation "Special support for the CVS versioning system.") | 879 | (custom-put-if-not 'pcl-cvs 'group-documentation "Special support for the CVS versioning system.") |
| 839 | (custom-put-if-not 'windmove 'custom-version "21.1") | 880 | (custom-put-if-not 'windmove 'custom-version "21.1") |
| @@ -844,6 +885,8 @@ as a PDF file <URL:http://www.ecma.ch/ecma1/STAND/ECMA-048.HTM>.") | |||
| 844 | (custom-put-if-not 'vc-cvs-stay-local 'standard-value t) | 885 | (custom-put-if-not 'vc-cvs-stay-local 'standard-value t) |
| 845 | (custom-put-if-not 'fortran-comment-line-start-skip 'custom-version "21.1") | 886 | (custom-put-if-not 'fortran-comment-line-start-skip 'custom-version "21.1") |
| 846 | (custom-put-if-not 'fortran-comment-line-start-skip 'standard-value t) | 887 | (custom-put-if-not 'fortran-comment-line-start-skip 'standard-value t) |
| 888 | (custom-put-if-not 'gnus-list-identifiers 'custom-version "21.1") | ||
| 889 | (custom-put-if-not 'gnus-list-identifiers 'standard-value t) | ||
| 847 | (custom-put-if-not 'checkdoc 'custom-version "20.3") | 890 | (custom-put-if-not 'checkdoc 'custom-version "20.3") |
| 848 | (custom-put-if-not 'checkdoc 'group-documentation "Support for doc string checking in Emacs Lisp.") | 891 | (custom-put-if-not 'checkdoc 'group-documentation "Support for doc string checking in Emacs Lisp.") |
| 849 | (custom-put-if-not 'imap 'custom-version "21.1") | 892 | (custom-put-if-not 'imap 'custom-version "21.1") |
| @@ -852,6 +895,8 @@ as a PDF file <URL:http://www.ecma.ch/ecma1/STAND/ECMA-048.HTM>.") | |||
| 852 | (custom-put-if-not 'change-log-acknowledgement-face 'group-documentation nil) | 895 | (custom-put-if-not 'change-log-acknowledgement-face 'group-documentation nil) |
| 853 | (custom-put-if-not 'mail-abbrevs-mode 'custom-version "20.3") | 896 | (custom-put-if-not 'mail-abbrevs-mode 'custom-version "20.3") |
| 854 | (custom-put-if-not 'mail-abbrevs-mode 'standard-value t) | 897 | (custom-put-if-not 'mail-abbrevs-mode 'standard-value t) |
| 898 | (custom-put-if-not 'message-forward-ignored-headers 'custom-version "21.1") | ||
| 899 | (custom-put-if-not 'message-forward-ignored-headers 'standard-value t) | ||
| 855 | (custom-put-if-not 'eudc 'custom-version "21.1") | 900 | (custom-put-if-not 'eudc 'custom-version "21.1") |
| 856 | (custom-put-if-not 'eudc 'group-documentation "Emacs Unified Directory Client.") | 901 | (custom-put-if-not 'eudc 'group-documentation "Emacs Unified Directory Client.") |
| 857 | (custom-put-if-not 'scrolling 'custom-version "21.1") | 902 | (custom-put-if-not 'scrolling 'custom-version "21.1") |
| @@ -862,6 +907,10 @@ as a PDF file <URL:http://www.ecma.ch/ecma1/STAND/ECMA-048.HTM>.") | |||
| 862 | (custom-put-if-not 'temp-buffer-max-height 'standard-value t) | 907 | (custom-put-if-not 'temp-buffer-max-height 'standard-value t) |
| 863 | (custom-put-if-not 'border 'custom-version "21.1") | 908 | (custom-put-if-not 'border 'custom-version "21.1") |
| 864 | (custom-put-if-not 'border 'group-documentation nil) | 909 | (custom-put-if-not 'border 'group-documentation nil) |
| 910 | (custom-put-if-not 'nnmail-scan-directory-mail-source-once 'custom-version "21.1") | ||
| 911 | (custom-put-if-not 'nnmail-scan-directory-mail-source-once 'standard-value t) | ||
| 912 | (custom-put-if-not 'gnus-preserve-marks 'custom-version "21.1") | ||
| 913 | (custom-put-if-not 'gnus-preserve-marks 'standard-value t) | ||
| 865 | (custom-put-if-not 'speedbar-indentation-width 'custom-version "21.1") | 914 | (custom-put-if-not 'speedbar-indentation-width 'custom-version "21.1") |
| 866 | (custom-put-if-not 'speedbar-indentation-width 'standard-value t) | 915 | (custom-put-if-not 'speedbar-indentation-width 'standard-value t) |
| 867 | (custom-put-if-not 'hl-line 'custom-version "21.1") | 916 | (custom-put-if-not 'hl-line 'custom-version "21.1") |
| @@ -872,26 +921,42 @@ as a PDF file <URL:http://www.ecma.ch/ecma1/STAND/ECMA-048.HTM>.") | |||
| 872 | (custom-put-if-not 'custom-comment-face 'group-documentation nil) | 921 | (custom-put-if-not 'custom-comment-face 'group-documentation nil) |
| 873 | (custom-put-if-not 'custom-raised-buttons 'custom-version "21.1") | 922 | (custom-put-if-not 'custom-raised-buttons 'custom-version "21.1") |
| 874 | (custom-put-if-not 'custom-raised-buttons 'standard-value t) | 923 | (custom-put-if-not 'custom-raised-buttons 'standard-value t) |
| 924 | (custom-put-if-not 'gnus-inhibit-user-auto-expire 'custom-version "21.1") | ||
| 925 | (custom-put-if-not 'gnus-inhibit-user-auto-expire 'standard-value t) | ||
| 875 | (custom-put-if-not 'show-paren-ring-bell-on-mismatch 'custom-version "20.3") | 926 | (custom-put-if-not 'show-paren-ring-bell-on-mismatch 'custom-version "20.3") |
| 876 | (custom-put-if-not 'show-paren-ring-bell-on-mismatch 'standard-value t) | 927 | (custom-put-if-not 'show-paren-ring-bell-on-mismatch 'standard-value t) |
| 877 | (custom-put-if-not 'rmail-default-body-file 'custom-version "20.3") | 928 | (custom-put-if-not 'rmail-default-body-file 'custom-version "20.3") |
| 878 | (custom-put-if-not 'rmail-default-body-file 'standard-value t) | 929 | (custom-put-if-not 'rmail-default-body-file 'standard-value t) |
| 930 | (custom-put-if-not 'gnus-emphasize-whitespace-regexp 'custom-version "21.1") | ||
| 931 | (custom-put-if-not 'gnus-emphasize-whitespace-regexp 'standard-value t) | ||
| 932 | (custom-put-if-not 'gnus-summary-show-article-charset-alist 'custom-version "21.1") | ||
| 933 | (custom-put-if-not 'gnus-summary-show-article-charset-alist 'standard-value t) | ||
| 879 | (custom-put-if-not 'vc-dired-listing-switches 'custom-version "21.1") | 934 | (custom-put-if-not 'vc-dired-listing-switches 'custom-version "21.1") |
| 880 | (custom-put-if-not 'vc-dired-listing-switches 'standard-value t) | 935 | (custom-put-if-not 'vc-dired-listing-switches 'standard-value t) |
| 881 | (custom-put-if-not 'rmail-movemail-flags 'custom-version "20.3") | 936 | (custom-put-if-not 'rmail-movemail-flags 'custom-version "20.3") |
| 882 | (custom-put-if-not 'rmail-movemail-flags 'standard-value t) | 937 | (custom-put-if-not 'rmail-movemail-flags 'standard-value t) |
| 883 | (custom-put-if-not 'sql-sybase-options 'custom-version "20.8") | 938 | (custom-put-if-not 'sql-sybase-options 'custom-version "20.8") |
| 884 | (custom-put-if-not 'sql-sybase-options 'standard-value t) | 939 | (custom-put-if-not 'sql-sybase-options 'standard-value t) |
| 940 | (custom-put-if-not 'gnus-read-newsrc-file 'custom-version "21.1") | ||
| 941 | (custom-put-if-not 'gnus-read-newsrc-file 'standard-value t) | ||
| 885 | (custom-put-if-not 'recentf 'custom-version "21.1") | 942 | (custom-put-if-not 'recentf 'custom-version "21.1") |
| 886 | (custom-put-if-not 'recentf 'group-documentation "Maintain a menu of recently opened files.") | 943 | (custom-put-if-not 'recentf 'group-documentation "Maintain a menu of recently opened files.") |
| 944 | (custom-put-if-not 'nnmail-split-header-length-limit 'custom-version "21.1") | ||
| 945 | (custom-put-if-not 'nnmail-split-header-length-limit 'standard-value t) | ||
| 946 | (custom-put-if-not 'gnus-ignored-mime-types 'custom-version "21.1") | ||
| 947 | (custom-put-if-not 'gnus-ignored-mime-types 'standard-value t) | ||
| 887 | (custom-put-if-not 'fortune 'custom-version "21.1") | 948 | (custom-put-if-not 'fortune 'custom-version "21.1") |
| 888 | (custom-put-if-not 'fortune 'group-documentation "Settings for fortune.") | 949 | (custom-put-if-not 'fortune 'group-documentation "Settings for fortune.") |
| 950 | (custom-put-if-not 'gnus-agent-confirmation-function 'custom-version "21.1") | ||
| 951 | (custom-put-if-not 'gnus-agent-confirmation-function 'standard-value t) | ||
| 889 | (custom-put-if-not 'dired-at-point-require-prefix 'custom-version "20.3") | 952 | (custom-put-if-not 'dired-at-point-require-prefix 'custom-version "20.3") |
| 890 | (custom-put-if-not 'dired-at-point-require-prefix 'standard-value t) | 953 | (custom-put-if-not 'dired-at-point-require-prefix 'standard-value t) |
| 891 | (custom-put-if-not 'diff-mode 'custom-version "21.1") | 954 | (custom-put-if-not 'diff-mode 'custom-version "21.1") |
| 892 | (custom-put-if-not 'diff-mode 'group-documentation "Major mode for viewing/editing diffs") | 955 | (custom-put-if-not 'diff-mode 'group-documentation "Major mode for viewing/editing diffs") |
| 893 | (custom-put-if-not 'sql-mysql-options 'custom-version "20.8") | 956 | (custom-put-if-not 'sql-mysql-options 'custom-version "20.8") |
| 894 | (custom-put-if-not 'sql-mysql-options 'standard-value t) | 957 | (custom-put-if-not 'sql-mysql-options 'standard-value t) |
| 958 | (custom-put-if-not 'gnus-group-highlight-words-alist 'custom-version "21.1") | ||
| 959 | (custom-put-if-not 'gnus-group-highlight-words-alist 'standard-value t) | ||
| 895 | (custom-put-if-not 'dabbrev-ignored-buffer-names 'custom-version "20.3") | 960 | (custom-put-if-not 'dabbrev-ignored-buffer-names 'custom-version "20.3") |
| 896 | (custom-put-if-not 'dabbrev-ignored-buffer-names 'standard-value t) | 961 | (custom-put-if-not 'dabbrev-ignored-buffer-names 'standard-value t) |
| 897 | (custom-put-if-not 'change-log-file-face 'custom-version "21.1") | 962 | (custom-put-if-not 'change-log-file-face 'custom-version "21.1") |
| @@ -902,6 +967,10 @@ as a PDF file <URL:http://www.ecma.ch/ecma1/STAND/ECMA-048.HTM>.") | |||
| 902 | (custom-put-if-not 'browse-url-lynx-emacs-args 'standard-value t) | 967 | (custom-put-if-not 'browse-url-lynx-emacs-args 'standard-value t) |
| 903 | (custom-put-if-not 'tooltip 'custom-version "21.1") | 968 | (custom-put-if-not 'tooltip 'custom-version "21.1") |
| 904 | (custom-put-if-not 'tooltip 'group-documentation "Customization group for the `tooltip' package.") | 969 | (custom-put-if-not 'tooltip 'group-documentation "Customization group for the `tooltip' package.") |
| 970 | (custom-put-if-not 'gnus-newsgroup-ignored-charsets 'custom-version "21.1") | ||
| 971 | (custom-put-if-not 'gnus-newsgroup-ignored-charsets 'standard-value t) | ||
| 972 | (custom-put-if-not 'message-send-mail-partially-limit 'custom-version "21.1") | ||
| 973 | (custom-put-if-not 'message-send-mail-partially-limit 'standard-value t) | ||
| 905 | (custom-put-if-not 'quickurl 'custom-version "21.1") | 974 | (custom-put-if-not 'quickurl 'custom-version "21.1") |
| 906 | (custom-put-if-not 'quickurl 'group-documentation "Insert an URL based on text at point in buffer.") | 975 | (custom-put-if-not 'quickurl 'group-documentation "Insert an URL based on text at point in buffer.") |
| 907 | (custom-put-if-not 'tool-bar 'custom-version "21.1") | 976 | (custom-put-if-not 'tool-bar 'custom-version "21.1") |
| @@ -914,10 +983,14 @@ as a PDF file <URL:http://www.ecma.ch/ecma1/STAND/ECMA-048.HTM>.") | |||
| 914 | (custom-put-if-not 'change-log-function-face 'group-documentation nil) | 983 | (custom-put-if-not 'change-log-function-face 'group-documentation nil) |
| 915 | (custom-put-if-not 'hscroll-global-mode 'custom-version "20.3") | 984 | (custom-put-if-not 'hscroll-global-mode 'custom-version "20.3") |
| 916 | (custom-put-if-not 'hscroll-global-mode 'standard-value t) | 985 | (custom-put-if-not 'hscroll-global-mode 'standard-value t) |
| 986 | (custom-put-if-not 'message-default-charset 'custom-version "21.1") | ||
| 987 | (custom-put-if-not 'message-default-charset 'standard-value t) | ||
| 917 | (custom-put-if-not 'auto-save-file-name-transforms 'custom-version "21.1") | 988 | (custom-put-if-not 'auto-save-file-name-transforms 'custom-version "21.1") |
| 918 | (custom-put-if-not 'auto-save-file-name-transforms 'standard-value t) | 989 | (custom-put-if-not 'auto-save-file-name-transforms 'standard-value t) |
| 919 | (custom-put-if-not 'tags-apropos-verbose 'custom-version "21.1") | 990 | (custom-put-if-not 'tags-apropos-verbose 'custom-version "21.1") |
| 920 | (custom-put-if-not 'tags-apropos-verbose 'standard-value t) | 991 | (custom-put-if-not 'tags-apropos-verbose 'standard-value t) |
| 992 | (custom-put-if-not 'mailcap 'custom-version "21.1") | ||
| 993 | (custom-put-if-not 'mailcap 'group-documentation "Definition of viewers for MIME types.") | ||
| 921 | (custom-put-if-not 'dabbrev-ignored-regexps 'custom-version "21.1") | 994 | (custom-put-if-not 'dabbrev-ignored-regexps 'custom-version "21.1") |
| 922 | (custom-put-if-not 'dabbrev-ignored-regexps 'standard-value t) | 995 | (custom-put-if-not 'dabbrev-ignored-regexps 'standard-value t) |
| 923 | (custom-put-if-not 'find-variable-regexp 'custom-version "21.1") | 996 | (custom-put-if-not 'find-variable-regexp 'custom-version "21.1") |
| @@ -943,7 +1016,7 @@ as a PDF file <URL:http://www.ecma.ch/ecma1/STAND/ECMA-048.HTM>.") | |||
| 943 | (custom-put-if-not 'eval-expression-print-level 'custom-version "21.1") | 1016 | (custom-put-if-not 'eval-expression-print-level 'custom-version "21.1") |
| 944 | (custom-put-if-not 'eval-expression-print-level 'standard-value t) | 1017 | (custom-put-if-not 'eval-expression-print-level 'standard-value t) |
| 945 | 1018 | ||
| 946 | (defvar custom-versions-load-alist '(("20.3.3" "dos-vars") (21.1 "ange-ftp") ("20.4" "files" "help" "sh-script" "compile") ("20.3" "desktop" "easymenu" "hscroll" "dabbrev" "ffap" "rmail" "paren" "mailabbrev" "frame" "uce" "mouse" "diary-lib" "sendmail" "debug" "hexl" "vcursor" "vc" "compile" "etags" "help" "browse-url" "add-log" "find-func" "cus-edit" "replace") ("21.1" "server" "debug" "dabbrev" "vc" "paths" "sgml-mode" "net-utils" "font-lock" "gnus-nocem" "vc-hooks" "paren" "fortran" "etags" "cus-edit" "frame" "vc-sccs" "files" "add-log" "find-func" "wid-edit" "vc-rcs" "vc-cvs" "simple" "browse-url" "speedbar") ("20.8" "ansi-color" "sql")) | 1019 | (defvar custom-versions-load-alist '(("20.3.3" "dos-vars") (21.1 "ange-ftp") ("20.4" "files" "help" "sh-script" "compile") ("20.3" "desktop" "easymenu" "hscroll" "dabbrev" "ffap" "rmail" "paren" "mailabbrev" "frame" "uce" "mouse" "diary-lib" "sendmail" "debug" "hexl" "vcursor" "vc" "compile" "etags" "help" "browse-url" "add-log" "find-func" "cus-edit" "replace") ("21.1" "server" "debug" "dabbrev" "gnus-start" "vc" "paths" "sgml-mode" "net-utils" "rmail" "font-lock" "gnus-nocem" "vc-hooks" "paren" "faces" "fortran" "etags" "cus-edit" "frame" "vc-sccs" "gnus-group" "gnus-sum" "files" "add-log" "find-func" "wid-edit" "vc-rcs" "nnmail" "message" "vc-cvs" "simple" "gnus-agent" "gnus-art" "browse-url" "speedbar") ("20.8" "ansi-color" "sql")) |
| 947 | "For internal use by custom.") | 1020 | "For internal use by custom.") |
| 948 | 1021 | ||
| 949 | (provide 'cus-load) | 1022 | (provide 'cus-load) |
diff --git a/lisp/loaddefs.el b/lisp/loaddefs.el index 7613c4122be..15dedd2049a 100644 --- a/lisp/loaddefs.el +++ b/lisp/loaddefs.el | |||
| @@ -4,7 +4,7 @@ | |||
| 4 | 4 | ||
| 5 | ;;;### (autoloads (5x5-crack 5x5-crack-xor-mutate 5x5-crack-mutating-best | 5 | ;;;### (autoloads (5x5-crack 5x5-crack-xor-mutate 5x5-crack-mutating-best |
| 6 | ;;;;;; 5x5-crack-mutating-current 5x5-crack-randomly 5x5) "5x5" | 6 | ;;;;;; 5x5-crack-mutating-current 5x5-crack-randomly 5x5) "5x5" |
| 7 | ;;;;;; "play/5x5.el" (14247 4566)) | 7 | ;;;;;; "play/5x5.el" (14885 9098)) |
| 8 | ;;; Generated autoloads from play/5x5.el | 8 | ;;; Generated autoloads from play/5x5.el |
| 9 | 9 | ||
| 10 | (autoload (quote 5x5) "5x5" "\ | 10 | (autoload (quote 5x5) "5x5" "\ |
| @@ -52,7 +52,7 @@ should return a grid vector array that is the new solution." t nil) | |||
| 52 | ;;;*** | 52 | ;;;*** |
| 53 | 53 | ||
| 54 | ;;;### (autoloads (ada-mode ada-add-extensions) "ada-mode" "progmodes/ada-mode.el" | 54 | ;;;### (autoloads (ada-mode ada-add-extensions) "ada-mode" "progmodes/ada-mode.el" |
| 55 | ;;;;;; (14821 31351)) | 55 | ;;;;;; (14876 60332)) |
| 56 | ;;; Generated autoloads from progmodes/ada-mode.el | 56 | ;;; Generated autoloads from progmodes/ada-mode.el |
| 57 | 57 | ||
| 58 | (autoload (quote ada-add-extensions) "ada-mode" "\ | 58 | (autoload (quote ada-add-extensions) "ada-mode" "\ |
| @@ -108,7 +108,7 @@ If you use ada-xref.el: | |||
| 108 | ;;;*** | 108 | ;;;*** |
| 109 | 109 | ||
| 110 | ;;;### (autoloads (ada-header) "ada-stmt" "progmodes/ada-stmt.el" | 110 | ;;;### (autoloads (ada-header) "ada-stmt" "progmodes/ada-stmt.el" |
| 111 | ;;;;;; (14821 31351)) | 111 | ;;;;;; (14877 36787)) |
| 112 | ;;; Generated autoloads from progmodes/ada-stmt.el | 112 | ;;; Generated autoloads from progmodes/ada-stmt.el |
| 113 | 113 | ||
| 114 | (autoload (quote ada-header) "ada-stmt" "\ | 114 | (autoload (quote ada-header) "ada-stmt" "\ |
| @@ -217,8 +217,8 @@ Fix any old-style date entries in the current log file to default format." t nil | |||
| 217 | ;;;*** | 217 | ;;;*** |
| 218 | 218 | ||
| 219 | ;;;### (autoloads (defadvice ad-add-advice ad-default-compilation-action | 219 | ;;;### (autoloads (defadvice ad-add-advice ad-default-compilation-action |
| 220 | ;;;;;; ad-redefinition-action) "advice" "emacs-lisp/advice.el" (14660 | 220 | ;;;;;; ad-redefinition-action) "advice" "emacs-lisp/advice.el" (14874 |
| 221 | ;;;;;; 49405)) | 221 | ;;;;;; 16519)) |
| 222 | ;;; Generated autoloads from emacs-lisp/advice.el | 222 | ;;; Generated autoloads from emacs-lisp/advice.el |
| 223 | 223 | ||
| 224 | (defvar ad-redefinition-action (quote warn) "\ | 224 | (defvar ad-redefinition-action (quote warn) "\ |
| @@ -385,7 +385,7 @@ A replacement function for `newline-and-indent', aligning as it goes." t nil) | |||
| 385 | ;;;*** | 385 | ;;;*** |
| 386 | 386 | ||
| 387 | ;;;### (autoloads (ange-ftp-hook-function ange-ftp-reread-dir) "ange-ftp" | 387 | ;;;### (autoloads (ange-ftp-hook-function ange-ftp-reread-dir) "ange-ftp" |
| 388 | ;;;;;; "net/ange-ftp.el" (14729 20675)) | 388 | ;;;;;; "net/ange-ftp.el" (14868 1431)) |
| 389 | ;;; Generated autoloads from net/ange-ftp.el | 389 | ;;; Generated autoloads from net/ange-ftp.el |
| 390 | (defalias 'ange-ftp-re-read-dir 'ange-ftp-reread-dir) | 390 | (defalias 'ange-ftp-re-read-dir 'ange-ftp-reread-dir) |
| 391 | 391 | ||
| @@ -404,10 +404,27 @@ directory, so that Emacs will know its current contents." t nil) | |||
| 404 | 404 | ||
| 405 | ;;;*** | 405 | ;;;*** |
| 406 | 406 | ||
| 407 | ;;;### (autoloads (antlr-set-tabs antlr-mode) "antlr-mode" "progmodes/antlr-mode.el" | 407 | ;;;### (autoloads (antlr-set-tabs antlr-mode antlr-show-makefile-rules) |
| 408 | ;;;;;; (14642 37233)) | 408 | ;;;;;; "antlr-mode" "progmodes/antlr-mode.el" (14885 13467)) |
| 409 | ;;; Generated autoloads from progmodes/antlr-mode.el | 409 | ;;; Generated autoloads from progmodes/antlr-mode.el |
| 410 | 410 | ||
| 411 | (autoload (quote antlr-show-makefile-rules) "antlr-mode" "\ | ||
| 412 | Show Makefile rules for all grammar files in the current directory. | ||
| 413 | If the `major-mode' of the current buffer has the value `makefile-mode', | ||
| 414 | the rules are directory inserted at point. Otherwise, a *Help* buffer | ||
| 415 | is shown with the rules which are also put into the `kill-ring' for | ||
| 416 | \\[yank]. | ||
| 417 | |||
| 418 | This command considers import/export vocabularies and grammar | ||
| 419 | inheritance and provides a value for the \"-glib\" option if necessary. | ||
| 420 | Customize variable `antlr-makefile-specification' for the appearance of | ||
| 421 | the rules. | ||
| 422 | |||
| 423 | If the file for a super-grammar cannot be determined, special file names | ||
| 424 | are used according to variable `antlr-unknown-file-formats' and a | ||
| 425 | commentary with value `antlr-help-unknown-file-text' is added. The | ||
| 426 | *Help* buffer always starts with the text in `antlr-help-rules-intro'." t nil) | ||
| 427 | |||
| 411 | (autoload (quote antlr-mode) "antlr-mode" "\ | 428 | (autoload (quote antlr-mode) "antlr-mode" "\ |
| 412 | Major mode for editing ANTLR grammar files. | 429 | Major mode for editing ANTLR grammar files. |
| 413 | \\{antlr-mode-map}" t nil) | 430 | \\{antlr-mode-map}" t nil) |
| @@ -473,8 +490,8 @@ They specify the range of dates that the diary is being processed for." nil nil) | |||
| 473 | ;;;*** | 490 | ;;;*** |
| 474 | 491 | ||
| 475 | ;;;### (autoloads (apropos-documentation apropos-value apropos apropos-command | 492 | ;;;### (autoloads (apropos-documentation apropos-value apropos apropos-command |
| 476 | ;;;;;; apropos-variable apropos-mode) "apropos" "apropos.el" (14812 | 493 | ;;;;;; apropos-variable apropos-mode) "apropos" "apropos.el" (14883 |
| 477 | ;;;;;; 23964)) | 494 | ;;;;;; 29489)) |
| 478 | ;;; Generated autoloads from apropos.el | 495 | ;;; Generated autoloads from apropos.el |
| 479 | 496 | ||
| 480 | (autoload (quote apropos-mode) "apropos" "\ | 497 | (autoload (quote apropos-mode) "apropos" "\ |
| @@ -606,6 +623,210 @@ Entering array mode calls the function `array-mode-hook'." t nil) | |||
| 606 | 623 | ||
| 607 | ;;;*** | 624 | ;;;*** |
| 608 | 625 | ||
| 626 | ;;;### (autoloads (artist-mode) "artist" "textmodes/artist.el" (14873 | ||
| 627 | ;;;;;; 31240)) | ||
| 628 | ;;; Generated autoloads from textmodes/artist.el | ||
| 629 | |||
| 630 | (autoload (quote artist-mode) "artist" "\ | ||
| 631 | Toggle artist mode. With arg, turn artist mode on if arg is positive. | ||
| 632 | Artist lets you draw lines, squares, rectangles and poly-lines, ellipses | ||
| 633 | and circles with your mouse and/or keyboard. | ||
| 634 | |||
| 635 | How to quit artist mode | ||
| 636 | |||
| 637 | Type \\[artist-mode-off] to quit artist-mode. | ||
| 638 | |||
| 639 | |||
| 640 | How to submit a bug report | ||
| 641 | |||
| 642 | Type \\[artist-submit-bug-report] to submit a bug report. | ||
| 643 | |||
| 644 | |||
| 645 | Drawing with the mouse: | ||
| 646 | |||
| 647 | mouse-2 | ||
| 648 | shift mouse-2 Pops up a menu where you can select what to draw with | ||
| 649 | mouse-1, and where you can do some settings (described | ||
| 650 | below). | ||
| 651 | |||
| 652 | mouse-1 | ||
| 653 | shift mouse-1 Draws lines, rectangles or poly-lines, erases, cuts, copies | ||
| 654 | or pastes: | ||
| 655 | |||
| 656 | Operation Not shifted Shifted | ||
| 657 | -------------------------------------------------------------- | ||
| 658 | Pen fill-char at point line from last point | ||
| 659 | to new point | ||
| 660 | -------------------------------------------------------------- | ||
| 661 | Line Line in any direction Straight line | ||
| 662 | -------------------------------------------------------------- | ||
| 663 | Rectangle Rectangle Square | ||
| 664 | -------------------------------------------------------------- | ||
| 665 | Poly-line Poly-line in any dir Straight poly-lines | ||
| 666 | -------------------------------------------------------------- | ||
| 667 | Ellipses Ellipses Circles | ||
| 668 | -------------------------------------------------------------- | ||
| 669 | Text Text (see thru) Text (overwrite) | ||
| 670 | -------------------------------------------------------------- | ||
| 671 | Spray-can Spray-can Set size for spray | ||
| 672 | -------------------------------------------------------------- | ||
| 673 | Erase Erase character Erase rectangle | ||
| 674 | -------------------------------------------------------------- | ||
| 675 | Vaporize Erase single line Erase connected | ||
| 676 | lines | ||
| 677 | -------------------------------------------------------------- | ||
| 678 | Cut Cut rectangle Cut square | ||
| 679 | -------------------------------------------------------------- | ||
| 680 | Copy Copy rectangle Copy square | ||
| 681 | -------------------------------------------------------------- | ||
| 682 | Paste Paste Paste | ||
| 683 | -------------------------------------------------------------- | ||
| 684 | Flood-fill Flood-fill Flood-fill | ||
| 685 | -------------------------------------------------------------- | ||
| 686 | |||
| 687 | * Straight lines can only go horiziontally, vertically | ||
| 688 | or diagonally. | ||
| 689 | |||
| 690 | * Poly-lines are drawn while holding mouse-1 down. When you | ||
| 691 | release the button, the point is set. If you want a segment | ||
| 692 | to be straight, hold down shift before pressing the | ||
| 693 | mouse-1 button. Click mouse-2 or mouse-3 to stop drawing | ||
| 694 | poly-lines. | ||
| 695 | |||
| 696 | * See thru for text means that text already in the buffer | ||
| 697 | will be visible through blanks in the text rendered, while | ||
| 698 | overwrite means the opposite. | ||
| 699 | |||
| 700 | * Vaporizing connected lines only vaporizes lines whose | ||
| 701 | _endpoints_ are connected. See also the variable | ||
| 702 | `artist-vaporize-fuzziness'. | ||
| 703 | |||
| 704 | * Cut copies, then clears the rectangle/square. | ||
| 705 | |||
| 706 | * When drawing lines or poly-lines, you can set arrows. | ||
| 707 | See below under ``Arrows'' for more info. | ||
| 708 | |||
| 709 | * The mode line shows the currently selected drawing operation. | ||
| 710 | In addition, if it has an asterisk (*) at the end, you | ||
| 711 | are currently drawing something. | ||
| 712 | |||
| 713 | * Be patient when flood-filling -- large areas take quite | ||
| 714 | some time to fill. | ||
| 715 | |||
| 716 | |||
| 717 | mouse-3 Erases character under pointer | ||
| 718 | shift mouse-3 Erases rectangle | ||
| 719 | |||
| 720 | |||
| 721 | Settings | ||
| 722 | |||
| 723 | Set fill Sets the character used when filling rectangles/squares | ||
| 724 | |||
| 725 | Set line Sets the character used when drawing lines | ||
| 726 | |||
| 727 | Erase char Sets the character used when erasing | ||
| 728 | |||
| 729 | Rubber-banding Toggles rubber-banding | ||
| 730 | |||
| 731 | Trimming Toggles trimming of line-endings (that is: when the shape | ||
| 732 | is drawn, extraneous white-space at end of lines is removed) | ||
| 733 | |||
| 734 | Borders Toggles the drawing of line borders around filled shapes. | ||
| 735 | |||
| 736 | |||
| 737 | Drawing with keys | ||
| 738 | |||
| 739 | \\[artist-key-set-point] Does one of the following: | ||
| 740 | For lines/rectangles/squares: sets the first/second endpoint | ||
| 741 | For poly-lines: sets a point (use C-u \\[artist-key-set-point] to set last point) | ||
| 742 | When erase characters: toggles erasing | ||
| 743 | When cutting/copying: Sets first/last endpoint of rect/square | ||
| 744 | When pasting: Pastes | ||
| 745 | |||
| 746 | \\[artist-select-operation] Selects what to draw | ||
| 747 | |||
| 748 | Move around with \\[artist-next-line], \\[artist-previous-line], \\[artist-forward-char] and \\[artist-backward-char]. | ||
| 749 | |||
| 750 | \\[artist-select-fill-char] Sets the charater to use when filling | ||
| 751 | \\[artist-select-line-char] Sets the charater to use when drawing | ||
| 752 | \\[artist-select-erase-char] Sets the charater to use when erasing | ||
| 753 | \\[artist-toggle-rubber-banding] Toggles rubber-banding | ||
| 754 | \\[artist-toggle-trim-line-endings] Toggles trimming of line-endings | ||
| 755 | \\[artist-toggle-borderless-shapes] Toggles borders on drawn shapes | ||
| 756 | |||
| 757 | |||
| 758 | Arrows | ||
| 759 | |||
| 760 | \\[artist-toggle-first-arrow] Sets/unsets an arrow at the beginning | ||
| 761 | of the line/poly-line | ||
| 762 | |||
| 763 | \\[artist-toggle-second-arrow] Sets/unsets an arrow at the end | ||
| 764 | of the line/poly-line | ||
| 765 | |||
| 766 | |||
| 767 | Selecting operation | ||
| 768 | |||
| 769 | There are some keys for quickly selecting drawing operations: | ||
| 770 | |||
| 771 | \\[artist-select-op-line] Selects drawing lines | ||
| 772 | \\[artist-select-op-straight-line] Selects drawing straight lines | ||
| 773 | \\[artist-select-op-rectangle] Selects drawing rectangles | ||
| 774 | \\[artist-select-op-square] Selects drawing squares | ||
| 775 | \\[artist-select-op-poly-line] Selects drawing poly-lines | ||
| 776 | \\[artist-select-op-straight-poly-line] Selects drawing straight poly-lines | ||
| 777 | \\[artist-select-op-ellipse] Selects drawing ellipses | ||
| 778 | \\[artist-select-op-circle] Selects drawing circles | ||
| 779 | \\[artist-select-op-text-see-thru] Selects rendering text (see thru) | ||
| 780 | \\[artist-select-op-text-overwrite] Selects rendering text (overwrite) | ||
| 781 | \\[artist-select-op-spray-can] Spray with spray-can | ||
| 782 | \\[artist-select-op-spray-set-size] Set size for the spray-can | ||
| 783 | \\[artist-select-op-erase-char] Selects erasing characters | ||
| 784 | \\[artist-select-op-erase-rectangle] Selects erasing rectangles | ||
| 785 | \\[artist-select-op-vaporize-line] Selects vaporizing single lines | ||
| 786 | \\[artist-select-op-vaporize-lines] Selects vaporizing connected lines | ||
| 787 | \\[artist-select-op-cut-rectangle] Selects cutting rectangles | ||
| 788 | \\[artist-select-op-copy-rectangle] Selects copying rectangles | ||
| 789 | \\[artist-select-op-paste] Selects pasting | ||
| 790 | \\[artist-select-op-flood-fill] Selects flood-filling | ||
| 791 | |||
| 792 | |||
| 793 | Variables | ||
| 794 | |||
| 795 | This is a brief overview of the different varaibles. For more info, | ||
| 796 | see the documentation for the variables (type \\[describe-variable] <variable> RET). | ||
| 797 | |||
| 798 | artist-rubber-banding Interactively do rubber-banding or not | ||
| 799 | artist-first-char What to set at first/second point... | ||
| 800 | artist-second-char ...when not rubber-banding | ||
| 801 | artist-interface-with-rect If cut/copy/paste should interface with rect | ||
| 802 | artist-arrows The arrows to use when drawing arrows | ||
| 803 | artist-aspect-ratio Character height-to-width for squares | ||
| 804 | artist-trim-line-endings Trimming of line endings | ||
| 805 | artist-flood-fill-right-border Right border when flood-filling | ||
| 806 | artist-flood-fill-show-incrementally Update display while filling | ||
| 807 | artist-pointer-shape Pointer shape to use while drawing | ||
| 808 | artist-ellipse-left-char Character to use for narrow ellipses | ||
| 809 | artist-ellipse-right-char Character to use for narrow ellipses | ||
| 810 | artist-borderless-shapes If shapes should have borders | ||
| 811 | artist-picture-compatibility Whether or not to be picture mode compatible | ||
| 812 | artist-vaporize-fuzziness Tolerance when recognizing lines | ||
| 813 | artist-spray-interval Seconds between repeated sprayings | ||
| 814 | artist-spray-radius Size of the spray-area | ||
| 815 | artist-spray-chars The spray-``color'' | ||
| 816 | artist-spray-new-chars Initial spray-``color'' | ||
| 817 | |||
| 818 | Hooks | ||
| 819 | |||
| 820 | When entering artist-mode, the hook `artist-mode-init-hook' is called. | ||
| 821 | When quitting artist-mode, the hook `artist-mode-exit-hook' is called. | ||
| 822 | |||
| 823 | |||
| 824 | Keymap summary | ||
| 825 | |||
| 826 | \\{artist-mode-map}" t nil) | ||
| 827 | |||
| 828 | ;;;*** | ||
| 829 | |||
| 609 | ;;;### (autoloads (asm-mode) "asm-mode" "progmodes/asm-mode.el" (14807 | 830 | ;;;### (autoloads (asm-mode) "asm-mode" "progmodes/asm-mode.el" (14807 |
| 610 | ;;;;;; 56561)) | 831 | ;;;;;; 56561)) |
| 611 | ;;; Generated autoloads from progmodes/asm-mode.el | 832 | ;;; Generated autoloads from progmodes/asm-mode.el |
| @@ -633,24 +854,6 @@ Special commands: | |||
| 633 | 854 | ||
| 634 | ;;;*** | 855 | ;;;*** |
| 635 | 856 | ||
| 636 | ;;;### (autoloads (batch-update-authors authors) "authors" "emacs-lisp/authors.el" | ||
| 637 | ;;;;;; (14849 35128)) | ||
| 638 | ;;; Generated autoloads from emacs-lisp/authors.el | ||
| 639 | |||
| 640 | (autoload (quote authors) "authors" "\ | ||
| 641 | Extract author information from change logs and Lisp source files. | ||
| 642 | ROOT is the root directory under which to find the files. If called | ||
| 643 | interactively, ROOT is read from the minibuffer. Result is a | ||
| 644 | buffer *Authors* containing authorship information." t nil) | ||
| 645 | |||
| 646 | (autoload (quote batch-update-authors) "authors" "\ | ||
| 647 | Produce an AUTHORS file. | ||
| 648 | Call this function in batch mode with two command line arguments FILE | ||
| 649 | and ROOT. FILE is the file to write, ROOT is the root directory of | ||
| 650 | the Emacs source tree, from which to build the file." nil nil) | ||
| 651 | |||
| 652 | ;;;*** | ||
| 653 | |||
| 654 | ;;;### (autoloads (auto-show-mode auto-show-mode) "auto-show" "auto-show.el" | 857 | ;;;### (autoloads (auto-show-mode auto-show-mode) "auto-show" "auto-show.el" |
| 655 | ;;;;;; (14777 22130)) | 858 | ;;;;;; (14777 22130)) |
| 656 | ;;; Generated autoloads from auto-show.el | 859 | ;;; Generated autoloads from auto-show.el |
| @@ -728,7 +931,7 @@ Major mode for editing Autoconf configure.in files." t nil) | |||
| 728 | ;;;*** | 931 | ;;;*** |
| 729 | 932 | ||
| 730 | ;;;### (autoloads (auto-insert-mode define-auto-insert auto-insert) | 933 | ;;;### (autoloads (auto-insert-mode define-auto-insert auto-insert) |
| 731 | ;;;;;; "autoinsert" "autoinsert.el" (14855 56552)) | 934 | ;;;;;; "autoinsert" "autoinsert.el" (14876 60331)) |
| 732 | ;;; Generated autoloads from autoinsert.el | 935 | ;;; Generated autoloads from autoinsert.el |
| 733 | 936 | ||
| 734 | (autoload (quote auto-insert) "autoinsert" "\ | 937 | (autoload (quote auto-insert) "autoinsert" "\ |
| @@ -823,7 +1026,7 @@ Use `auto-revert-mode' to revert a particular buffer." t nil) | |||
| 823 | ;;;*** | 1026 | ;;;*** |
| 824 | 1027 | ||
| 825 | ;;;### (autoloads (mouse-avoidance-mode mouse-avoidance-mode) "avoid" | 1028 | ;;;### (autoloads (mouse-avoidance-mode mouse-avoidance-mode) "avoid" |
| 826 | ;;;;;; "avoid.el" (14777 22132)) | 1029 | ;;;;;; "avoid.el" (14877 9921)) |
| 827 | ;;; Generated autoloads from avoid.el | 1030 | ;;; Generated autoloads from avoid.el |
| 828 | 1031 | ||
| 829 | (defvar mouse-avoidance-mode nil "\ | 1032 | (defvar mouse-avoidance-mode nil "\ |
| @@ -1413,7 +1616,7 @@ corresponding bookmark function from Lisp (the one without the | |||
| 1413 | ;;;;;; browse-url-of-dired-file browse-url-of-buffer browse-url-of-file | 1616 | ;;;;;; browse-url-of-dired-file browse-url-of-buffer browse-url-of-file |
| 1414 | ;;;;;; browse-url-generic-program browse-url-save-file browse-url-netscape-display | 1617 | ;;;;;; browse-url-generic-program browse-url-save-file browse-url-netscape-display |
| 1415 | ;;;;;; browse-url-new-window-p browse-url-browser-function) "browse-url" | 1618 | ;;;;;; browse-url-new-window-p browse-url-browser-function) "browse-url" |
| 1416 | ;;;;;; "net/browse-url.el" (14821 31351)) | 1619 | ;;;;;; "net/browse-url.el" (14862 37898)) |
| 1417 | ;;; Generated autoloads from net/browse-url.el | 1620 | ;;; Generated autoloads from net/browse-url.el |
| 1418 | 1621 | ||
| 1419 | (defvar browse-url-browser-function (if (eq system-type (quote windows-nt)) (quote browse-url-default-windows-browser) (quote browse-url-netscape)) "\ | 1622 | (defvar browse-url-browser-function (if (eq system-type (quote windows-nt)) (quote browse-url-default-windows-browser) (quote browse-url-netscape)) "\ |
| @@ -1626,7 +1829,7 @@ Return a vector containing the lines from `bruce-phrases-file'." nil nil) | |||
| 1626 | ;;;*** | 1829 | ;;;*** |
| 1627 | 1830 | ||
| 1628 | ;;;### (autoloads (bs-show bs-customize bs-cycle-previous bs-cycle-next) | 1831 | ;;;### (autoloads (bs-show bs-customize bs-cycle-previous bs-cycle-next) |
| 1629 | ;;;;;; "bs" "bs.el" (14777 22138)) | 1832 | ;;;;;; "bs" "bs.el" (14886 21309)) |
| 1630 | ;;; Generated autoloads from bs.el | 1833 | ;;; Generated autoloads from bs.el |
| 1631 | 1834 | ||
| 1632 | (autoload (quote bs-cycle-next) "bs" "\ | 1835 | (autoload (quote bs-cycle-next) "bs" "\ |
| @@ -1661,7 +1864,7 @@ name of buffer configuration." t nil) | |||
| 1661 | ;;;### (autoloads (batch-byte-recompile-directory batch-byte-compile | 1864 | ;;;### (autoloads (batch-byte-recompile-directory batch-byte-compile |
| 1662 | ;;;;;; display-call-tree byte-compile compile-defun byte-compile-file | 1865 | ;;;;;; display-call-tree byte-compile compile-defun byte-compile-file |
| 1663 | ;;;;;; byte-recompile-directory byte-force-recompile) "bytecomp" | 1866 | ;;;;;; byte-recompile-directory byte-force-recompile) "bytecomp" |
| 1664 | ;;;;;; "emacs-lisp/bytecomp.el" (14859 7672)) | 1867 | ;;;;;; "emacs-lisp/bytecomp.el" (14859 11531)) |
| 1665 | ;;; Generated autoloads from emacs-lisp/bytecomp.el | 1868 | ;;; Generated autoloads from emacs-lisp/bytecomp.el |
| 1666 | 1869 | ||
| 1667 | (autoload (quote byte-force-recompile) "bytecomp" "\ | 1870 | (autoload (quote byte-force-recompile) "bytecomp" "\ |
| @@ -1747,12 +1950,12 @@ from the cursor position." t nil) | |||
| 1747 | 1950 | ||
| 1748 | ;;;*** | 1951 | ;;;*** |
| 1749 | 1952 | ||
| 1750 | ;;;### (autoloads (calculator) "calculator" "calculator.el" (14777 | 1953 | ;;;### (autoloads (calculator) "calculator" "calculator.el" (14873 |
| 1751 | ;;;;;; 22140)) | 1954 | ;;;;;; 6783)) |
| 1752 | ;;; Generated autoloads from calculator.el | 1955 | ;;; Generated autoloads from calculator.el |
| 1753 | 1956 | ||
| 1754 | (autoload (quote calculator) "calculator" "\ | 1957 | (autoload (quote calculator) "calculator" "\ |
| 1755 | Run the pocket calculator. | 1958 | Run the Emacs calculator. |
| 1756 | See the documentation for `calculator-mode' for more information." t nil) | 1959 | See the documentation for `calculator-mode' for more information." t nil) |
| 1757 | 1960 | ||
| 1758 | ;;;*** | 1961 | ;;;*** |
| @@ -1773,7 +1976,7 @@ See the documentation for `calculator-mode' for more information." t nil) | |||
| 1773 | ;;;;;; calendar-remove-frame-by-deleting mark-diary-entries-in-calendar | 1976 | ;;;;;; calendar-remove-frame-by-deleting mark-diary-entries-in-calendar |
| 1774 | ;;;;;; number-of-diary-entries view-diary-entries-initially calendar-offset | 1977 | ;;;;;; number-of-diary-entries view-diary-entries-initially calendar-offset |
| 1775 | ;;;;;; calendar-week-start-day) "calendar" "calendar/calendar.el" | 1978 | ;;;;;; calendar-week-start-day) "calendar" "calendar/calendar.el" |
| 1776 | ;;;;;; (14854 32222)) | 1979 | ;;;;;; (14875 40521)) |
| 1777 | ;;; Generated autoloads from calendar/calendar.el | 1980 | ;;; Generated autoloads from calendar/calendar.el |
| 1778 | 1981 | ||
| 1779 | (defvar calendar-week-start-day 0 "\ | 1982 | (defvar calendar-week-start-day 0 "\ |
| @@ -2665,7 +2868,7 @@ See the documentation of `define-ccl-program' for the detail of CCL program." ni | |||
| 2665 | ;;;;;; checkdoc-continue checkdoc-start checkdoc-current-buffer | 2868 | ;;;;;; checkdoc-continue checkdoc-start checkdoc-current-buffer |
| 2666 | ;;;;;; checkdoc-eval-current-buffer checkdoc-message-interactive | 2869 | ;;;;;; checkdoc-eval-current-buffer checkdoc-message-interactive |
| 2667 | ;;;;;; checkdoc-interactive checkdoc) "checkdoc" "emacs-lisp/checkdoc.el" | 2870 | ;;;;;; checkdoc-interactive checkdoc) "checkdoc" "emacs-lisp/checkdoc.el" |
| 2668 | ;;;;;; (14482 54417)) | 2871 | ;;;;;; (14866 25750)) |
| 2669 | ;;; Generated autoloads from emacs-lisp/checkdoc.el | 2872 | ;;; Generated autoloads from emacs-lisp/checkdoc.el |
| 2670 | 2873 | ||
| 2671 | (autoload (quote checkdoc) "checkdoc" "\ | 2874 | (autoload (quote checkdoc) "checkdoc" "\ |
| @@ -2790,10 +2993,10 @@ Toggle Checkdoc minor mode, a mode for checking Lisp doc strings. | |||
| 2790 | With prefix ARG, turn Checkdoc minor mode on iff ARG is positive. | 2993 | With prefix ARG, turn Checkdoc minor mode on iff ARG is positive. |
| 2791 | 2994 | ||
| 2792 | In Checkdoc minor mode, the usual bindings for `eval-defun' which is | 2995 | In Checkdoc minor mode, the usual bindings for `eval-defun' which is |
| 2793 | bound to \\<checkdoc-minor-keymap> \\[checkdoc-eval-defun] and `checkdoc-eval-current-buffer' are overridden to include | 2996 | bound to \\<checkdoc-minor-mode-map> \\[checkdoc-eval-defun] and `checkdoc-eval-current-buffer' are overridden to include |
| 2794 | checking of documentation strings. | 2997 | checking of documentation strings. |
| 2795 | 2998 | ||
| 2796 | \\{checkdoc-minor-keymap}" t nil) | 2999 | \\{checkdoc-minor-mode-map}" t nil) |
| 2797 | 3000 | ||
| 2798 | ;;;*** | 3001 | ;;;*** |
| 2799 | 3002 | ||
| @@ -2819,7 +3022,7 @@ Encode the text in the current buffer to HZ." t nil) | |||
| 2819 | ;;;*** | 3022 | ;;;*** |
| 2820 | 3023 | ||
| 2821 | ;;;### (autoloads (command-history list-command-history repeat-matching-complex-command) | 3024 | ;;;### (autoloads (command-history list-command-history repeat-matching-complex-command) |
| 2822 | ;;;;;; "chistory" "chistory.el" (14821 31343)) | 3025 | ;;;;;; "chistory" "chistory.el" (14883 31697)) |
| 2823 | ;;; Generated autoloads from chistory.el | 3026 | ;;; Generated autoloads from chistory.el |
| 2824 | 3027 | ||
| 2825 | (autoload (quote repeat-matching-complex-command) "chistory" "\ | 3028 | (autoload (quote repeat-matching-complex-command) "chistory" "\ |
| @@ -2852,7 +3055,7 @@ and runs the normal hook `command-history-hook'." t nil) | |||
| 2852 | 3055 | ||
| 2853 | ;;;*** | 3056 | ;;;*** |
| 2854 | 3057 | ||
| 2855 | ;;;### (autoloads nil "cl" "emacs-lisp/cl.el" (14753 19207)) | 3058 | ;;;### (autoloads nil "cl" "emacs-lisp/cl.el" (14886 9525)) |
| 2856 | ;;; Generated autoloads from emacs-lisp/cl.el | 3059 | ;;; Generated autoloads from emacs-lisp/cl.el |
| 2857 | 3060 | ||
| 2858 | (defvar custom-print-functions nil "\ | 3061 | (defvar custom-print-functions nil "\ |
| @@ -2893,15 +3096,15 @@ For use inside Lisp programs, see also `c-macro-expansion'." t nil) | |||
| 2893 | 3096 | ||
| 2894 | ;;;*** | 3097 | ;;;*** |
| 2895 | 3098 | ||
| 2896 | ;;;### (autoloads (run-scheme) "cmuscheme" "cmuscheme.el" (14831 | 3099 | ;;;### (autoloads (run-scheme) "cmuscheme" "cmuscheme.el" (14865 |
| 2897 | ;;;;;; 12714)) | 3100 | ;;;;;; 26959)) |
| 2898 | ;;; Generated autoloads from cmuscheme.el | 3101 | ;;; Generated autoloads from cmuscheme.el |
| 2899 | 3102 | ||
| 2900 | (autoload (quote run-scheme) "cmuscheme" "\ | 3103 | (autoload (quote run-scheme) "cmuscheme" "\ |
| 2901 | Run an inferior Scheme process, input and output via buffer *scheme*. | 3104 | Run an inferior Scheme process, input and output via buffer *scheme*. |
| 2902 | If there is a process already running in `*scheme*', switch to that buffer. | 3105 | If there is a process already running in `*scheme*', switch to that buffer. |
| 2903 | With argument, allows you to edit the command line (default is value | 3106 | With argument, allows you to edit the command line (default is value |
| 2904 | of `cmuscheme-program-name'). Runs the hooks `inferior-scheme-mode-hook' | 3107 | of `scheme-program-name'). Runs the hooks `inferior-scheme-mode-hook' |
| 2905 | \(after the `comint-mode-hook' is run). | 3108 | \(after the `comint-mode-hook' is run). |
| 2906 | \(Type \\[describe-mode] in the process buffer for a list of commands.)" t nil) | 3109 | \(Type \\[describe-mode] in the process buffer for a list of commands.)" t nil) |
| 2907 | (add-hook 'same-window-buffer-names "*scheme*") | 3110 | (add-hook 'same-window-buffer-names "*scheme*") |
| @@ -3037,7 +3240,7 @@ If `compare-ignore-case' is non-nil, changes in case are also ignored." t nil) | |||
| 3037 | ;;;### (autoloads (next-error compilation-minor-mode compilation-shell-minor-mode | 3240 | ;;;### (autoloads (next-error compilation-minor-mode compilation-shell-minor-mode |
| 3038 | ;;;;;; compilation-mode grep-find grep compile compilation-search-path | 3241 | ;;;;;; compilation-mode grep-find grep compile compilation-search-path |
| 3039 | ;;;;;; compilation-ask-about-save compilation-window-height compilation-mode-hook) | 3242 | ;;;;;; compilation-ask-about-save compilation-window-height compilation-mode-hook) |
| 3040 | ;;;;;; "compile" "progmodes/compile.el" (14813 40531)) | 3243 | ;;;;;; "compile" "progmodes/compile.el" (14866 25750)) |
| 3041 | ;;; Generated autoloads from progmodes/compile.el | 3244 | ;;; Generated autoloads from progmodes/compile.el |
| 3042 | 3245 | ||
| 3043 | (defvar compilation-mode-hook nil "\ | 3246 | (defvar compilation-mode-hook nil "\ |
| @@ -3688,7 +3891,7 @@ INHERIT-INPUT-METHOD." nil nil) | |||
| 3688 | ;;;;;; customize-option-other-window customize-changed-options customize-option | 3891 | ;;;;;; customize-option-other-window customize-changed-options customize-option |
| 3689 | ;;;;;; customize-group-other-window customize-group customize customize-save-variable | 3892 | ;;;;;; customize-group-other-window customize-group customize customize-save-variable |
| 3690 | ;;;;;; customize-set-variable customize-set-value) "cus-edit" "cus-edit.el" | 3893 | ;;;;;; customize-set-variable customize-set-value) "cus-edit" "cus-edit.el" |
| 3691 | ;;;;;; (14847 14322)) | 3894 | ;;;;;; (14886 20133)) |
| 3692 | ;;; Generated autoloads from cus-edit.el | 3895 | ;;; Generated autoloads from cus-edit.el |
| 3693 | (add-hook 'same-window-regexps "\\`\\*Customiz.*\\*\\'") | 3896 | (add-hook 'same-window-regexps "\\`\\*Customiz.*\\*\\'") |
| 3694 | 3897 | ||
| @@ -3847,7 +4050,7 @@ The format is suitable for use with `easy-menu-define'." nil nil) | |||
| 3847 | ;;;*** | 4050 | ;;;*** |
| 3848 | 4051 | ||
| 3849 | ;;;### (autoloads (custom-set-faces custom-declare-face) "cus-face" | 4052 | ;;;### (autoloads (custom-set-faces custom-declare-face) "cus-face" |
| 3850 | ;;;;;; "cus-face.el" (14777 22155)) | 4053 | ;;;;;; "cus-face.el" (14883 29489)) |
| 3851 | ;;; Generated autoloads from cus-face.el | 4054 | ;;; Generated autoloads from cus-face.el |
| 3852 | 4055 | ||
| 3853 | (autoload (quote custom-declare-face) "cus-face" "\ | 4056 | (autoload (quote custom-declare-face) "cus-face" "\ |
| @@ -4245,10 +4448,41 @@ any selection." t nil) | |||
| 4245 | 4448 | ||
| 4246 | ;;;*** | 4449 | ;;;*** |
| 4247 | 4450 | ||
| 4248 | ;;;### (autoloads (derived-mode-init-mode-variables) "derived" "derived.el" | 4451 | ;;;### (autoloads (derived-mode-init-mode-variables define-derived-mode) |
| 4249 | ;;;;;; (14777 22160)) | 4452 | ;;;;;; "derived" "derived.el" (14891 28342)) |
| 4250 | ;;; Generated autoloads from derived.el | 4453 | ;;; Generated autoloads from derived.el |
| 4251 | 4454 | ||
| 4455 | (autoload (quote define-derived-mode) "derived" "\ | ||
| 4456 | Create a new mode as a variant of an existing mode. | ||
| 4457 | |||
| 4458 | The arguments to this command are as follow: | ||
| 4459 | |||
| 4460 | CHILD: the name of the command for the derived mode. | ||
| 4461 | PARENT: the name of the command for the parent mode (e.g. `text-mode'). | ||
| 4462 | NAME: a string which will appear in the status line (e.g. \"Hypertext\") | ||
| 4463 | DOCSTRING: an optional documentation string--if you do not supply one, | ||
| 4464 | the function will attempt to invent something useful. | ||
| 4465 | BODY: forms to execute just before running the | ||
| 4466 | hooks for the new mode. | ||
| 4467 | |||
| 4468 | Here is how you could define LaTeX-Thesis mode as a variant of LaTeX mode: | ||
| 4469 | |||
| 4470 | (define-derived-mode LaTeX-thesis-mode LaTeX-mode \"LaTeX-Thesis\") | ||
| 4471 | |||
| 4472 | You could then make new key bindings for `LaTeX-thesis-mode-map' | ||
| 4473 | without changing regular LaTeX mode. In this example, BODY is empty, | ||
| 4474 | and DOCSTRING is generated by default. | ||
| 4475 | |||
| 4476 | On a more complicated level, the following command uses `sgml-mode' as | ||
| 4477 | the parent, and then sets the variable `case-fold-search' to nil: | ||
| 4478 | |||
| 4479 | (define-derived-mode article-mode sgml-mode \"Article\" | ||
| 4480 | \"Major mode for editing technical articles.\" | ||
| 4481 | (setq case-fold-search nil)) | ||
| 4482 | |||
| 4483 | Note that if the documentation string had been left out, it would have | ||
| 4484 | been generated automatically, with a reference to the keymap." nil (quote macro)) | ||
| 4485 | |||
| 4252 | (autoload (quote derived-mode-init-mode-variables) "derived" "\ | 4486 | (autoload (quote derived-mode-init-mode-variables) "derived" "\ |
| 4253 | Initialise variables for a new MODE. | 4487 | Initialise variables for a new MODE. |
| 4254 | Right now, if they don't already exist, set up a blank keymap, an | 4488 | Right now, if they don't already exist, set up a blank keymap, an |
| @@ -4333,7 +4567,7 @@ Decompose Devanagari characters in the region to IS 13194 characters." t nil) | |||
| 4333 | ;;;*** | 4567 | ;;;*** |
| 4334 | 4568 | ||
| 4335 | ;;;### (autoloads (diary-mail-entries diary) "diary-lib" "calendar/diary-lib.el" | 4569 | ;;;### (autoloads (diary-mail-entries diary) "diary-lib" "calendar/diary-lib.el" |
| 4336 | ;;;;;; (14821 46405)) | 4570 | ;;;;;; (14886 18220)) |
| 4337 | ;;; Generated autoloads from calendar/diary-lib.el | 4571 | ;;; Generated autoloads from calendar/diary-lib.el |
| 4338 | 4572 | ||
| 4339 | (autoload (quote diary) "diary-lib" "\ | 4573 | (autoload (quote diary) "diary-lib" "\ |
| @@ -4392,7 +4626,7 @@ The backup file is the first file given to `diff'." t nil) | |||
| 4392 | ;;;*** | 4626 | ;;;*** |
| 4393 | 4627 | ||
| 4394 | ;;;### (autoloads (diff-minor-mode diff-mode) "diff-mode" "diff-mode.el" | 4628 | ;;;### (autoloads (diff-minor-mode diff-mode) "diff-mode" "diff-mode.el" |
| 4395 | ;;;;;; (14832 4348)) | 4629 | ;;;;;; (14866 25750)) |
| 4396 | ;;; Generated autoloads from diff-mode.el | 4630 | ;;; Generated autoloads from diff-mode.el |
| 4397 | 4631 | ||
| 4398 | (autoload (quote diff-mode) "diff-mode" "\ | 4632 | (autoload (quote diff-mode) "diff-mode" "\ |
| @@ -4412,7 +4646,7 @@ Minor mode for viewing/editing context diffs. | |||
| 4412 | ;;;;;; dired dired-copy-preserve-time dired-dwim-target dired-keep-marker-symlink | 4646 | ;;;;;; dired dired-copy-preserve-time dired-dwim-target dired-keep-marker-symlink |
| 4413 | ;;;;;; dired-keep-marker-hardlink dired-keep-marker-copy dired-keep-marker-rename | 4647 | ;;;;;; dired-keep-marker-hardlink dired-keep-marker-copy dired-keep-marker-rename |
| 4414 | ;;;;;; dired-trivial-filenames dired-ls-F-marks-symlinks dired-listing-switches) | 4648 | ;;;;;; dired-trivial-filenames dired-ls-F-marks-symlinks dired-listing-switches) |
| 4415 | ;;;;;; "dired" "dired.el" (14856 13563)) | 4649 | ;;;;;; "dired" "dired.el" (14883 29489)) |
| 4416 | ;;; Generated autoloads from dired.el | 4650 | ;;; Generated autoloads from dired.el |
| 4417 | 4651 | ||
| 4418 | (defvar dired-listing-switches "-al" "\ | 4652 | (defvar dired-listing-switches "-al" "\ |
| @@ -4516,7 +4750,7 @@ Like `dired' but returns the dired buffer as value, does not select it." nil nil | |||
| 4516 | ;;;;;; dired-do-compress dired-compress-file dired-do-kill-lines | 4750 | ;;;;;; dired-do-compress dired-compress-file dired-do-kill-lines |
| 4517 | ;;;;;; dired-do-shell-command dired-do-print dired-do-chown dired-do-chgrp | 4751 | ;;;;;; dired-do-shell-command dired-do-print dired-do-chown dired-do-chgrp |
| 4518 | ;;;;;; dired-do-chmod dired-backup-diff dired-diff) "dired-aux" | 4752 | ;;;;;; dired-do-chmod dired-backup-diff dired-diff) "dired-aux" |
| 4519 | ;;;;;; "dired-aux.el" (14812 23964)) | 4753 | ;;;;;; "dired-aux.el" (14883 57152)) |
| 4520 | ;;; Generated autoloads from dired-aux.el | 4754 | ;;; Generated autoloads from dired-aux.el |
| 4521 | 4755 | ||
| 4522 | (autoload (quote dired-diff) "dired-aux" "\ | 4756 | (autoload (quote dired-diff) "dired-aux" "\ |
| @@ -4918,9 +5152,9 @@ Play sounds in message buffers." t nil) | |||
| 4918 | 5152 | ||
| 4919 | ;;;*** | 5153 | ;;;*** |
| 4920 | 5154 | ||
| 4921 | ;;;### (autoloads (define-derived-mode easy-mmode-defsyntax easy-mmode-defmap | 5155 | ;;;### (autoloads (easy-mmode-defsyntax easy-mmode-defmap easy-mmode-define-keymap |
| 4922 | ;;;;;; easy-mmode-define-keymap easy-mmode-define-global-mode define-minor-mode) | 5156 | ;;;;;; easy-mmode-define-global-mode define-minor-mode) "easy-mmode" |
| 4923 | ;;;;;; "easy-mmode" "emacs-lisp/easy-mmode.el" (14850 36349)) | 5157 | ;;;;;; "emacs-lisp/easy-mmode.el" (14891 28342)) |
| 4924 | ;;; Generated autoloads from emacs-lisp/easy-mmode.el | 5158 | ;;; Generated autoloads from emacs-lisp/easy-mmode.el |
| 4925 | 5159 | ||
| 4926 | (defalias (quote easy-mmode-define-minor-mode) (quote define-minor-mode)) | 5160 | (defalias (quote easy-mmode-define-minor-mode) (quote define-minor-mode)) |
| @@ -4963,7 +5197,7 @@ BS must be a list of (KEY . BINDING) where | |||
| 4963 | KEY and BINDINGS are suitable for `define-key'. | 5197 | KEY and BINDINGS are suitable for `define-key'. |
| 4964 | Optional NAME is passed to `make-sparse-keymap'. | 5198 | Optional NAME is passed to `make-sparse-keymap'. |
| 4965 | Optional map M can be used to modify an existing map. | 5199 | Optional map M can be used to modify an existing map. |
| 4966 | ARGS is a list of additional arguments." nil nil) | 5200 | ARGS is a list of additional keyword arguments." nil nil) |
| 4967 | 5201 | ||
| 4968 | (autoload (quote easy-mmode-defmap) "easy-mmode" nil nil (quote macro)) | 5202 | (autoload (quote easy-mmode-defmap) "easy-mmode" nil nil (quote macro)) |
| 4969 | 5203 | ||
| @@ -4972,37 +5206,6 @@ Define variable ST as a syntax-table. | |||
| 4972 | CSS contains a list of syntax specifications of the form (CHAR . SYNTAX). | 5206 | CSS contains a list of syntax specifications of the form (CHAR . SYNTAX). |
| 4973 | " nil (quote macro)) | 5207 | " nil (quote macro)) |
| 4974 | 5208 | ||
| 4975 | (autoload (quote define-derived-mode) "easy-mmode" "\ | ||
| 4976 | Create a new mode as a variant of an existing mode. | ||
| 4977 | |||
| 4978 | The arguments to this command are as follow: | ||
| 4979 | |||
| 4980 | CHILD: the name of the command for the derived mode. | ||
| 4981 | PARENT: the name of the command for the parent mode (e.g. `text-mode'). | ||
| 4982 | NAME: a string which will appear in the status line (e.g. \"Hypertext\") | ||
| 4983 | DOCSTRING: an optional documentation string--if you do not supply one, | ||
| 4984 | the function will attempt to invent something useful. | ||
| 4985 | BODY: forms to execute just before running the | ||
| 4986 | hooks for the new mode. | ||
| 4987 | |||
| 4988 | Here is how you could define LaTeX-Thesis mode as a variant of LaTeX mode: | ||
| 4989 | |||
| 4990 | (define-derived-mode LaTeX-thesis-mode LaTeX-mode \"LaTeX-Thesis\") | ||
| 4991 | |||
| 4992 | You could then make new key bindings for `LaTeX-thesis-mode-map' | ||
| 4993 | without changing regular LaTeX mode. In this example, BODY is empty, | ||
| 4994 | and DOCSTRING is generated by default. | ||
| 4995 | |||
| 4996 | On a more complicated level, the following command uses `sgml-mode' as | ||
| 4997 | the parent, and then sets the variable `case-fold-search' to nil: | ||
| 4998 | |||
| 4999 | (define-derived-mode article-mode sgml-mode \"Article\" | ||
| 5000 | \"Major mode for editing technical articles.\" | ||
| 5001 | (setq case-fold-search nil)) | ||
| 5002 | |||
| 5003 | Note that if the documentation string had been left out, it would have | ||
| 5004 | been generated automatically, with a reference to the keymap." nil (quote macro)) | ||
| 5005 | |||
| 5006 | ;;;*** | 5209 | ;;;*** |
| 5007 | 5210 | ||
| 5008 | ;;;### (autoloads (easy-menu-change easy-menu-create-menu easy-menu-do-define | 5211 | ;;;### (autoloads (easy-menu-change easy-menu-create-menu easy-menu-do-define |
| @@ -5321,7 +5524,7 @@ With prefix arg NOCONFIRM, execute current line as-is without editing." t nil) | |||
| 5321 | ;;;*** | 5524 | ;;;*** |
| 5322 | 5525 | ||
| 5323 | ;;;### (autoloads (edebug-eval-top-level-form def-edebug-spec edebug-all-forms | 5526 | ;;;### (autoloads (edebug-eval-top-level-form def-edebug-spec edebug-all-forms |
| 5324 | ;;;;;; edebug-all-defs) "edebug" "emacs-lisp/edebug.el" (14821 31350)) | 5527 | ;;;;;; edebug-all-defs) "edebug" "emacs-lisp/edebug.el" (14875 62936)) |
| 5325 | ;;; Generated autoloads from emacs-lisp/edebug.el | 5528 | ;;; Generated autoloads from emacs-lisp/edebug.el |
| 5326 | 5529 | ||
| 5327 | (defvar edebug-all-defs nil "\ | 5530 | (defvar edebug-all-defs nil "\ |
| @@ -5364,7 +5567,7 @@ or if an error occurs, leave point after it with mark at the original point." t | |||
| 5364 | ;;;;;; ediff-merge-directory-revisions ediff-merge-directories-with-ancestor | 5567 | ;;;;;; ediff-merge-directory-revisions ediff-merge-directories-with-ancestor |
| 5365 | ;;;;;; ediff-merge-directories ediff-directories3 ediff-directory-revisions | 5568 | ;;;;;; ediff-merge-directories ediff-directories3 ediff-directory-revisions |
| 5366 | ;;;;;; ediff-directories ediff-buffers3 ediff-buffers ediff-files3 | 5569 | ;;;;;; ediff-directories ediff-buffers3 ediff-buffers ediff-files3 |
| 5367 | ;;;;;; ediff-files) "ediff" "ediff.el" (14845 20843)) | 5570 | ;;;;;; ediff-files) "ediff" "ediff.el" (14862 37894)) |
| 5368 | ;;; Generated autoloads from ediff.el | 5571 | ;;; Generated autoloads from ediff.el |
| 5369 | 5572 | ||
| 5370 | (autoload (quote ediff-files) "ediff" "\ | 5573 | (autoload (quote ediff-files) "ediff" "\ |
| @@ -5528,7 +5731,7 @@ With optional NODE, goes to that node." t nil) | |||
| 5528 | ;;;*** | 5731 | ;;;*** |
| 5529 | 5732 | ||
| 5530 | ;;;### (autoloads (ediff-customize) "ediff-help" "ediff-help.el" | 5733 | ;;;### (autoloads (ediff-customize) "ediff-help" "ediff-help.el" |
| 5531 | ;;;;;; (14777 22188)) | 5734 | ;;;;;; (14878 17055)) |
| 5532 | ;;; Generated autoloads from ediff-help.el | 5735 | ;;; Generated autoloads from ediff-help.el |
| 5533 | 5736 | ||
| 5534 | (autoload (quote ediff-customize) "ediff-help" nil t nil) | 5737 | (autoload (quote ediff-customize) "ediff-help" nil t nil) |
| @@ -5558,7 +5761,7 @@ Display Ediff's registry." t nil) | |||
| 5558 | ;;;*** | 5761 | ;;;*** |
| 5559 | 5762 | ||
| 5560 | ;;;### (autoloads (ediff-toggle-use-toolbar ediff-toggle-multiframe) | 5763 | ;;;### (autoloads (ediff-toggle-use-toolbar ediff-toggle-multiframe) |
| 5561 | ;;;;;; "ediff-util" "ediff-util.el" (14845 20843)) | 5764 | ;;;;;; "ediff-util" "ediff-util.el" (14875 62935)) |
| 5562 | ;;; Generated autoloads from ediff-util.el | 5765 | ;;; Generated autoloads from ediff-util.el |
| 5563 | 5766 | ||
| 5564 | (autoload (quote ediff-toggle-multiframe) "ediff-util" "\ | 5767 | (autoload (quote ediff-toggle-multiframe) "ediff-util" "\ |
| @@ -5661,7 +5864,7 @@ BUFFER is put into `default-major-mode' (or `fundamental-mode') when we exit." n | |||
| 5661 | ;;;*** | 5864 | ;;;*** |
| 5662 | 5865 | ||
| 5663 | ;;;### (autoloads (turn-on-eldoc-mode eldoc-mode eldoc-minor-mode-string | 5866 | ;;;### (autoloads (turn-on-eldoc-mode eldoc-mode eldoc-minor-mode-string |
| 5664 | ;;;;;; eldoc-mode) "eldoc" "emacs-lisp/eldoc.el" (14716 17385)) | 5867 | ;;;;;; eldoc-mode) "eldoc" "emacs-lisp/eldoc.el" (14890 7814)) |
| 5665 | ;;; Generated autoloads from emacs-lisp/eldoc.el | 5868 | ;;; Generated autoloads from emacs-lisp/eldoc.el |
| 5666 | 5869 | ||
| 5667 | (defvar eldoc-mode nil "\ | 5870 | (defvar eldoc-mode nil "\ |
| @@ -5831,7 +6034,7 @@ as a multilingual text encoded in a coding system set by | |||
| 5831 | ;;;*** | 6034 | ;;;*** |
| 5832 | 6035 | ||
| 5833 | ;;;### (autoloads (enriched-decode enriched-encode enriched-mode) | 6036 | ;;;### (autoloads (enriched-decode enriched-encode enriched-mode) |
| 5834 | ;;;;;; "enriched" "enriched.el" (14777 22210)) | 6037 | ;;;;;; "enriched" "enriched.el" (14885 14624)) |
| 5835 | ;;; Generated autoloads from enriched.el | 6038 | ;;; Generated autoloads from enriched.el |
| 5836 | 6039 | ||
| 5837 | (autoload (quote enriched-mode) "enriched" "\ | 6040 | (autoload (quote enriched-mode) "enriched" "\ |
| @@ -5908,8 +6111,8 @@ Please include any configuration details that might be involved." t nil) | |||
| 5908 | ;;;;;; pop-tag-mark find-tag-regexp find-tag-other-frame find-tag-other-window | 6111 | ;;;;;; pop-tag-mark find-tag-regexp find-tag-other-frame find-tag-other-window |
| 5909 | ;;;;;; find-tag find-tag-noselect tags-table-files visit-tags-table | 6112 | ;;;;;; find-tag find-tag-noselect tags-table-files visit-tags-table |
| 5910 | ;;;;;; find-tag-default-function find-tag-hook tags-add-tables tags-table-list | 6113 | ;;;;;; find-tag-default-function find-tag-hook tags-add-tables tags-table-list |
| 5911 | ;;;;;; tags-case-fold-search) "etags" "progmodes/etags.el" (14821 | 6114 | ;;;;;; tags-case-fold-search) "etags" "progmodes/etags.el" (14862 |
| 5912 | ;;;;;; 31354)) | 6115 | ;;;;;; 37898)) |
| 5913 | ;;; Generated autoloads from progmodes/etags.el | 6116 | ;;; Generated autoloads from progmodes/etags.el |
| 5914 | 6117 | ||
| 5915 | (defvar tags-file-name nil "\ | 6118 | (defvar tags-file-name nil "\ |
| @@ -6339,7 +6542,7 @@ This does nothing except loading eudc by autoload side-effect." t nil) | |||
| 6339 | 6542 | ||
| 6340 | ;;;### (autoloads (eudc-display-jpeg-as-button eudc-display-jpeg-inline | 6543 | ;;;### (autoloads (eudc-display-jpeg-as-button eudc-display-jpeg-inline |
| 6341 | ;;;;;; eudc-display-sound eudc-display-url eudc-display-generic-binary) | 6544 | ;;;;;; eudc-display-sound eudc-display-url eudc-display-generic-binary) |
| 6342 | ;;;;;; "eudc-bob" "net/eudc-bob.el" (14461 55579)) | 6545 | ;;;;;; "eudc-bob" "net/eudc-bob.el" (14867 31700)) |
| 6343 | ;;; Generated autoloads from net/eudc-bob.el | 6546 | ;;; Generated autoloads from net/eudc-bob.el |
| 6344 | 6547 | ||
| 6345 | (autoload (quote eudc-display-generic-binary) "eudc-bob" "\ | 6548 | (autoload (quote eudc-display-generic-binary) "eudc-bob" "\ |
| @@ -6680,10 +6883,18 @@ Unconditionally turn on Fast Lock mode." nil nil) | |||
| 6680 | ;;;*** | 6883 | ;;;*** |
| 6681 | 6884 | ||
| 6682 | ;;;### (autoloads (feedmail-queue-reminder feedmail-run-the-queue | 6885 | ;;;### (autoloads (feedmail-queue-reminder feedmail-run-the-queue |
| 6683 | ;;;;;; feedmail-run-the-queue-global-prompt feedmail-run-the-queue-no-prompts) | 6886 | ;;;;;; feedmail-run-the-queue-global-prompt feedmail-run-the-queue-no-prompts |
| 6684 | ;;;;;; "feedmail" "mail/feedmail.el" (14415 51114)) | 6887 | ;;;;;; feedmail-send-it) "feedmail" "mail/feedmail.el" (14885 3818)) |
| 6685 | ;;; Generated autoloads from mail/feedmail.el | 6888 | ;;; Generated autoloads from mail/feedmail.el |
| 6686 | 6889 | ||
| 6890 | (autoload (quote feedmail-send-it) "feedmail" "\ | ||
| 6891 | A function which is a suitable value for `send-mail-function'. | ||
| 6892 | To use it, you probably want something like this in your .emacs or | ||
| 6893 | similar place: | ||
| 6894 | |||
| 6895 | (setq send-mail-function 'feedmail-send-it) | ||
| 6896 | (autoload 'feedmail-send-it \"feedmail\")" nil nil) | ||
| 6897 | |||
| 6687 | (autoload (quote feedmail-run-the-queue-no-prompts) "feedmail" "\ | 6898 | (autoload (quote feedmail-run-the-queue-no-prompts) "feedmail" "\ |
| 6688 | Like feedmail-run-the-queue, but suppress confirmation prompts." t nil) | 6899 | Like feedmail-run-the-queue, but suppress confirmation prompts." t nil) |
| 6689 | 6900 | ||
| @@ -6763,7 +6974,7 @@ Start Dired, defaulting to file at point. See `ffap'." t nil) | |||
| 6763 | ;;;*** | 6974 | ;;;*** |
| 6764 | 6975 | ||
| 6765 | ;;;### (autoloads (file-cache-minibuffer-complete) "filecache" "filecache.el" | 6976 | ;;;### (autoloads (file-cache-minibuffer-complete) "filecache" "filecache.el" |
| 6766 | ;;;;;; (14767 36637)) | 6977 | ;;;;;; (14887 28113)) |
| 6767 | ;;; Generated autoloads from filecache.el | 6978 | ;;; Generated autoloads from filecache.el |
| 6768 | 6979 | ||
| 6769 | (autoload (quote file-cache-minibuffer-complete) "filecache" "\ | 6980 | (autoload (quote file-cache-minibuffer-complete) "filecache" "\ |
| @@ -6982,7 +7193,7 @@ Define some key bindings for the find-function family of functions." nil nil) | |||
| 6982 | ;;;*** | 7193 | ;;;*** |
| 6983 | 7194 | ||
| 6984 | ;;;### (autoloads (finder-by-keyword finder-commentary finder-list-keywords) | 7195 | ;;;### (autoloads (finder-by-keyword finder-commentary finder-list-keywords) |
| 6985 | ;;;;;; "finder" "finder.el" (14747 44772)) | 7196 | ;;;;;; "finder" "finder.el" (14862 37894)) |
| 6986 | ;;; Generated autoloads from finder.el | 7197 | ;;; Generated autoloads from finder.el |
| 6987 | 7198 | ||
| 6988 | (autoload (quote finder-list-keywords) "finder" "\ | 7199 | (autoload (quote finder-list-keywords) "finder" "\ |
| @@ -7017,7 +7228,7 @@ to get the effect of a C-q." nil nil) | |||
| 7017 | 7228 | ||
| 7018 | ;;;### (autoloads (flyspell-mode-off flyspell-mode flyspell-prog-mode | 7229 | ;;;### (autoloads (flyspell-mode-off flyspell-mode flyspell-prog-mode |
| 7019 | ;;;;;; flyspell-mode-line-string) "flyspell" "textmodes/flyspell.el" | 7230 | ;;;;;; flyspell-mode-line-string) "flyspell" "textmodes/flyspell.el" |
| 7020 | ;;;;;; (14845 20876)) | 7231 | ;;;;;; (14876 60333)) |
| 7021 | ;;; Generated autoloads from textmodes/flyspell.el | 7232 | ;;; Generated autoloads from textmodes/flyspell.el |
| 7022 | 7233 | ||
| 7023 | (defvar flyspell-mode-line-string " Fly" "\ | 7234 | (defvar flyspell-mode-line-string " Fly" "\ |
| @@ -7135,14 +7346,11 @@ in your `~/.emacs' file, replacing [f7] by your favourite key: | |||
| 7135 | 7346 | ||
| 7136 | ;;;### (autoloads (font-lock-fontify-buffer global-font-lock-mode | 7347 | ;;;### (autoloads (font-lock-fontify-buffer global-font-lock-mode |
| 7137 | ;;;;;; font-lock-remove-keywords font-lock-add-keywords turn-on-font-lock | 7348 | ;;;;;; font-lock-remove-keywords font-lock-add-keywords turn-on-font-lock |
| 7138 | ;;;;;; font-lock-mode) "font-lock" "font-lock.el" (14850 36349)) | 7349 | ;;;;;; font-lock-mode) "font-lock" "font-lock.el" (14873 20026)) |
| 7139 | ;;; Generated autoloads from font-lock.el | 7350 | ;;; Generated autoloads from font-lock.el |
| 7140 | 7351 | ||
| 7141 | (make-variable-buffer-local (quote font-lock-defaults)) | 7352 | (make-variable-buffer-local (quote font-lock-defaults)) |
| 7142 | 7353 | ||
| 7143 | (defvar font-lock-mode-hook nil "\ | ||
| 7144 | Function or functions to run on entry to Font Lock mode.") | ||
| 7145 | |||
| 7146 | (autoload (quote font-lock-mode) "font-lock" "\ | 7354 | (autoload (quote font-lock-mode) "font-lock" "\ |
| 7147 | Toggle Font Lock mode. | 7355 | Toggle Font Lock mode. |
| 7148 | With arg, turn Font Lock mode on if and only if arg is positive. | 7356 | With arg, turn Font Lock mode on if and only if arg is positive. |
| @@ -7198,8 +7406,7 @@ settings. You can set your own default settings for some mode, by setting a | |||
| 7198 | buffer local value for `font-lock-defaults', via its mode hook." t nil) | 7406 | buffer local value for `font-lock-defaults', via its mode hook." t nil) |
| 7199 | 7407 | ||
| 7200 | (autoload (quote turn-on-font-lock) "font-lock" "\ | 7408 | (autoload (quote turn-on-font-lock) "font-lock" "\ |
| 7201 | Turn on Font Lock mode conditionally. | 7409 | Turn on Font Lock mode (only if the terminal can display it)." nil nil) |
| 7202 | Turn on only if the terminal can display it." nil nil) | ||
| 7203 | 7410 | ||
| 7204 | (autoload (quote font-lock-add-keywords) "font-lock" "\ | 7411 | (autoload (quote font-lock-add-keywords) "font-lock" "\ |
| 7205 | Add highlighting KEYWORDS for MODE. | 7412 | Add highlighting KEYWORDS for MODE. |
| @@ -7252,7 +7459,7 @@ Fontify the current buffer the way the function `font-lock-mode' would." t nil) | |||
| 7252 | ;;;*** | 7459 | ;;;*** |
| 7253 | 7460 | ||
| 7254 | ;;;### (autoloads (create-fontset-from-fontset-spec) "fontset" "international/fontset.el" | 7461 | ;;;### (autoloads (create-fontset-from-fontset-spec) "fontset" "international/fontset.el" |
| 7255 | ;;;;;; (14845 20876)) | 7462 | ;;;;;; (14891 28342)) |
| 7256 | ;;; Generated autoloads from international/fontset.el | 7463 | ;;; Generated autoloads from international/fontset.el |
| 7257 | 7464 | ||
| 7258 | (autoload (quote create-fontset-from-fontset-spec) "fontset" "\ | 7465 | (autoload (quote create-fontset-from-fontset-spec) "fontset" "\ |
| @@ -7324,7 +7531,7 @@ Visit a file in Forms mode in other window." t nil) | |||
| 7324 | ;;;*** | 7531 | ;;;*** |
| 7325 | 7532 | ||
| 7326 | ;;;### (autoloads (fortran-mode fortran-tab-mode-default) "fortran" | 7533 | ;;;### (autoloads (fortran-mode fortran-tab-mode-default) "fortran" |
| 7327 | ;;;;;; "progmodes/fortran.el" (14799 2695)) | 7534 | ;;;;;; "progmodes/fortran.el" (14884 1390)) |
| 7328 | ;;; Generated autoloads from progmodes/fortran.el | 7535 | ;;; Generated autoloads from progmodes/fortran.el |
| 7329 | 7536 | ||
| 7330 | (defvar fortran-tab-mode-default nil "\ | 7537 | (defvar fortran-tab-mode-default nil "\ |
| @@ -7462,7 +7669,7 @@ at places they belong to." t nil) | |||
| 7462 | ;;;*** | 7669 | ;;;*** |
| 7463 | 7670 | ||
| 7464 | ;;;### (autoloads (gnus gnus-other-frame gnus-slave gnus-no-server | 7671 | ;;;### (autoloads (gnus gnus-other-frame gnus-slave gnus-no-server |
| 7465 | ;;;;;; gnus-slave-no-server) "gnus" "gnus/gnus.el" (14845 20875)) | 7672 | ;;;;;; gnus-slave-no-server) "gnus" "gnus/gnus.el" (14859 52340)) |
| 7466 | ;;; Generated autoloads from gnus/gnus.el | 7673 | ;;; Generated autoloads from gnus/gnus.el |
| 7467 | 7674 | ||
| 7468 | (autoload (quote gnus-slave-no-server) "gnus" "\ | 7675 | (autoload (quote gnus-slave-no-server) "gnus" "\ |
| @@ -7492,7 +7699,7 @@ prompt the user for the name of an NNTP server to use." t nil) | |||
| 7492 | 7699 | ||
| 7493 | ;;;### (autoloads (gnus-agent-batch gnus-agent-batch-fetch gnus-agentize | 7700 | ;;;### (autoloads (gnus-agent-batch gnus-agent-batch-fetch gnus-agentize |
| 7494 | ;;;;;; gnus-plugged gnus-unplugged) "gnus-agent" "gnus/gnus-agent.el" | 7701 | ;;;;;; gnus-plugged gnus-unplugged) "gnus-agent" "gnus/gnus-agent.el" |
| 7495 | ;;;;;; (14845 20874)) | 7702 | ;;;;;; (14862 37895)) |
| 7496 | ;;; Generated autoloads from gnus/gnus-agent.el | 7703 | ;;; Generated autoloads from gnus/gnus-agent.el |
| 7497 | 7704 | ||
| 7498 | (autoload (quote gnus-unplugged) "gnus-agent" "\ | 7705 | (autoload (quote gnus-unplugged) "gnus-agent" "\ |
| @@ -7520,7 +7727,7 @@ Start Gnus and fetch session." t nil) | |||
| 7520 | ;;;*** | 7727 | ;;;*** |
| 7521 | 7728 | ||
| 7522 | ;;;### (autoloads (gnus-article-prepare-display) "gnus-art" "gnus/gnus-art.el" | 7729 | ;;;### (autoloads (gnus-article-prepare-display) "gnus-art" "gnus/gnus-art.el" |
| 7523 | ;;;;;; (14846 39264)) | 7730 | ;;;;;; (14875 40522)) |
| 7524 | ;;; Generated autoloads from gnus/gnus-art.el | 7731 | ;;; Generated autoloads from gnus/gnus-art.el |
| 7525 | 7732 | ||
| 7526 | (autoload (quote gnus-article-prepare-display) "gnus-art" "\ | 7733 | (autoload (quote gnus-article-prepare-display) "gnus-art" "\ |
| @@ -7538,8 +7745,8 @@ Play a sound FILE through the speaker." t nil) | |||
| 7538 | ;;;*** | 7745 | ;;;*** |
| 7539 | 7746 | ||
| 7540 | ;;;### (autoloads (gnus-cache-generate-nov-databases gnus-cache-generate-active | 7747 | ;;;### (autoloads (gnus-cache-generate-nov-databases gnus-cache-generate-active |
| 7541 | ;;;;;; gnus-jog-cache) "gnus-cache" "gnus/gnus-cache.el" (14792 | 7748 | ;;;;;; gnus-jog-cache) "gnus-cache" "gnus/gnus-cache.el" (14862 |
| 7542 | ;;;;;; 2675)) | 7749 | ;;;;;; 37896)) |
| 7543 | ;;; Generated autoloads from gnus/gnus-cache.el | 7750 | ;;; Generated autoloads from gnus/gnus-cache.el |
| 7544 | 7751 | ||
| 7545 | (autoload (quote gnus-jog-cache) "gnus-cache" "\ | 7752 | (autoload (quote gnus-jog-cache) "gnus-cache" "\ |
| @@ -7557,7 +7764,7 @@ Generate NOV files recursively starting in DIR." t nil) | |||
| 7557 | ;;;*** | 7764 | ;;;*** |
| 7558 | 7765 | ||
| 7559 | ;;;### (autoloads (gnus-fetch-group-other-frame gnus-fetch-group) | 7766 | ;;;### (autoloads (gnus-fetch-group-other-frame gnus-fetch-group) |
| 7560 | ;;;;;; "gnus-group" "gnus/gnus-group.el" (14858 32484)) | 7767 | ;;;;;; "gnus-group" "gnus/gnus-group.el" (14875 56701)) |
| 7561 | ;;; Generated autoloads from gnus/gnus-group.el | 7768 | ;;; Generated autoloads from gnus/gnus-group.el |
| 7562 | 7769 | ||
| 7563 | (autoload (quote gnus-fetch-group) "gnus-group" "\ | 7770 | (autoload (quote gnus-fetch-group) "gnus-group" "\ |
| @@ -7596,7 +7803,7 @@ Minor mode for providing mailing-list commands. | |||
| 7596 | 7803 | ||
| 7597 | ;;;### (autoloads (gnus-group-split-fancy gnus-group-split gnus-group-split-update | 7804 | ;;;### (autoloads (gnus-group-split-fancy gnus-group-split gnus-group-split-update |
| 7598 | ;;;;;; gnus-group-split-setup) "gnus-mlspl" "gnus/gnus-mlspl.el" | 7805 | ;;;;;; gnus-group-split-setup) "gnus-mlspl" "gnus/gnus-mlspl.el" |
| 7599 | ;;;;;; (14855 56553)) | 7806 | ;;;;;; (14862 37897)) |
| 7600 | ;;; Generated autoloads from gnus/gnus-mlspl.el | 7807 | ;;; Generated autoloads from gnus/gnus-mlspl.el |
| 7601 | 7808 | ||
| 7602 | (autoload (quote gnus-group-split-setup) "gnus-mlspl" "\ | 7809 | (autoload (quote gnus-group-split-setup) "gnus-mlspl" "\ |
| @@ -7608,19 +7815,30 @@ group parameters. | |||
| 7608 | If AUTO-UPDATE is non-nil (prefix argument accepted, if called | 7815 | If AUTO-UPDATE is non-nil (prefix argument accepted, if called |
| 7609 | interactively), it makes sure nnmail-split-fancy is re-computed before | 7816 | interactively), it makes sure nnmail-split-fancy is re-computed before |
| 7610 | getting new mail, by adding gnus-group-split-update to | 7817 | getting new mail, by adding gnus-group-split-update to |
| 7611 | nnmail-pre-get-new-mail-hook." t nil) | 7818 | nnmail-pre-get-new-mail-hook. |
| 7819 | |||
| 7820 | A non-nil CATCH-ALL replaces the current value of | ||
| 7821 | gnus-group-split-default-catch-all-group. This variable is only used | ||
| 7822 | by gnus-group-split-update, and only when its CATCH-ALL argument is | ||
| 7823 | nil. This argument may contain any fancy split, that will be added as | ||
| 7824 | the last split in a `|' split produced by gnus-group-split-fancy, | ||
| 7825 | unless overridden by any group marked as a catch-all group. Typical | ||
| 7826 | uses are as simple as the name of a default mail group, but more | ||
| 7827 | elaborate fancy splits may also be useful to split mail that doesn't | ||
| 7828 | match any of the group-specified splitting rules. See | ||
| 7829 | gnus-group-split-fancy for details." t nil) | ||
| 7612 | 7830 | ||
| 7613 | (autoload (quote gnus-group-split-update) "gnus-mlspl" "\ | 7831 | (autoload (quote gnus-group-split-update) "gnus-mlspl" "\ |
| 7614 | Computes nnmail-split-fancy from group params. | 7832 | Computes nnmail-split-fancy from group params and CATCH-ALL, by |
| 7615 | It does this by calling (gnus-group-split-fancy nil CROSSPOST DEFAULTGROUP)." t nil) | 7833 | calling (gnus-group-split-fancy nil nil CATCH-ALL). |
| 7834 | |||
| 7835 | If CATCH-ALL is nil, gnus-group-split-default-catch-all-group is used | ||
| 7836 | instead. This variable is set by gnus-group-split-setup." t nil) | ||
| 7616 | 7837 | ||
| 7617 | (autoload (quote gnus-group-split) "gnus-mlspl" "\ | 7838 | (autoload (quote gnus-group-split) "gnus-mlspl" "\ |
| 7618 | Uses information from group parameters in order to split mail. | 7839 | Uses information from group parameters in order to split mail. |
| 7619 | See gnus-group-split-fancy for more information. | 7840 | See gnus-group-split-fancy for more information. |
| 7620 | 7841 | ||
| 7621 | If no group is defined as catch-all, the value of | ||
| 7622 | gnus-group-split-default-catch-all-group is used. | ||
| 7623 | |||
| 7624 | gnus-group-split is a valid value for nnmail-split-methods." nil nil) | 7842 | gnus-group-split is a valid value for nnmail-split-methods." nil nil) |
| 7625 | 7843 | ||
| 7626 | (autoload (quote gnus-group-split-fancy) "gnus-mlspl" "\ | 7844 | (autoload (quote gnus-group-split-fancy) "gnus-mlspl" "\ |
| @@ -7637,11 +7855,6 @@ if NO-CROSSPOST is ommitted or nil, a & split will be returned, | |||
| 7637 | otherwise, a | split, that does not allow crossposting, will be | 7855 | otherwise, a | split, that does not allow crossposting, will be |
| 7638 | returned. | 7856 | returned. |
| 7639 | 7857 | ||
| 7640 | if CATCH-ALL is not nil, and there is no selected group whose | ||
| 7641 | SPLIT-REGEXP matches the empty string, nor is there a selected group | ||
| 7642 | whose SPLIT-SPEC is 'catch-all, this group name will be appended to | ||
| 7643 | the returned SPLIT list, as the last element in a '| SPLIT. | ||
| 7644 | |||
| 7645 | For each selected group, a SPLIT is composed like this: if SPLIT-SPEC | 7858 | For each selected group, a SPLIT is composed like this: if SPLIT-SPEC |
| 7646 | is specified, this split is returned as-is (unless it is nil: in this | 7859 | is specified, this split is returned as-is (unless it is nil: in this |
| 7647 | case, the group is ignored). Otherwise, if TO-ADDRESS, TO-LIST and/or | 7860 | case, the group is ignored). Otherwise, if TO-ADDRESS, TO-LIST and/or |
| @@ -7651,6 +7864,13 @@ SPLIT-REGEXP is specified, the regexp will be extended so that it | |||
| 7651 | matches this regexp too, and if SPLIT-EXCLUDE is specified, RESTRICT | 7864 | matches this regexp too, and if SPLIT-EXCLUDE is specified, RESTRICT |
| 7652 | clauses will be generated. | 7865 | clauses will be generated. |
| 7653 | 7866 | ||
| 7867 | If CATCH-ALL is nil, no catch-all handling is performed, regardless of | ||
| 7868 | catch-all marks in group parameters. Otherwise, if there is no | ||
| 7869 | selected group whose SPLIT-REGEXP matches the empty string, nor is | ||
| 7870 | there a selected group whose SPLIT-SPEC is 'catch-all, this fancy | ||
| 7871 | split (say, a group name) will be appended to the returned SPLIT list, | ||
| 7872 | as the last element of a '| SPLIT. | ||
| 7873 | |||
| 7654 | For example, given the following group parameters: | 7874 | For example, given the following group parameters: |
| 7655 | 7875 | ||
| 7656 | nnml:mail.bar: | 7876 | nnml:mail.bar: |
| @@ -7684,8 +7904,8 @@ Update the .newsrc.eld file to reflect the change of nntp server." t nil) | |||
| 7684 | 7904 | ||
| 7685 | ;;;*** | 7905 | ;;;*** |
| 7686 | 7906 | ||
| 7687 | ;;;### (autoloads (gnus-msg-mail) "gnus-msg" "gnus/gnus-msg.el" (14858 | 7907 | ;;;### (autoloads (gnus-msg-mail) "gnus-msg" "gnus/gnus-msg.el" (14859 |
| 7688 | ;;;;;; 32484)) | 7908 | ;;;;;; 52340)) |
| 7689 | ;;; Generated autoloads from gnus/gnus-msg.el | 7909 | ;;; Generated autoloads from gnus/gnus-msg.el |
| 7690 | 7910 | ||
| 7691 | (define-mail-user-agent (quote gnus-user-agent) (quote gnus-msg-mail) (quote message-send-and-exit) (quote message-kill-buffer) (quote message-send-hook)) | 7911 | (define-mail-user-agent (quote gnus-user-agent) (quote gnus-msg-mail) (quote message-send-and-exit) (quote message-kill-buffer) (quote message-send-hook)) |
| @@ -7732,7 +7952,7 @@ Note -- this function hasn't been implemented yet." t nil) | |||
| 7732 | ;;;*** | 7952 | ;;;*** |
| 7733 | 7953 | ||
| 7734 | ;;;### (autoloads (gnus-update-format) "gnus-spec" "gnus/gnus-spec.el" | 7954 | ;;;### (autoloads (gnus-update-format) "gnus-spec" "gnus/gnus-spec.el" |
| 7735 | ;;;;;; (14792 2677)) | 7955 | ;;;;;; (14862 37897)) |
| 7736 | ;;; Generated autoloads from gnus/gnus-spec.el | 7956 | ;;; Generated autoloads from gnus/gnus-spec.el |
| 7737 | 7957 | ||
| 7738 | (autoload (quote gnus-update-format) "gnus-spec" "\ | 7958 | (autoload (quote gnus-update-format) "gnus-spec" "\ |
| @@ -7741,7 +7961,7 @@ Update the format specification near point." t nil) | |||
| 7741 | ;;;*** | 7961 | ;;;*** |
| 7742 | 7962 | ||
| 7743 | ;;;### (autoloads (gnus-declare-backend gnus-unload) "gnus-start" | 7963 | ;;;### (autoloads (gnus-declare-backend gnus-unload) "gnus-start" |
| 7744 | ;;;;;; "gnus/gnus-start.el" (14858 32484)) | 7964 | ;;;;;; "gnus/gnus-start.el" (14862 37897)) |
| 7745 | ;;; Generated autoloads from gnus/gnus-start.el | 7965 | ;;; Generated autoloads from gnus/gnus-start.el |
| 7746 | 7966 | ||
| 7747 | (autoload (quote gnus-unload) "gnus-start" "\ | 7967 | (autoload (quote gnus-unload) "gnus-start" "\ |
| @@ -7756,7 +7976,7 @@ Declare backend NAME with ABILITIES as a Gnus backend." nil nil) | |||
| 7756 | ;;;*** | 7976 | ;;;*** |
| 7757 | 7977 | ||
| 7758 | ;;;### (autoloads (gnus-add-configuration) "gnus-win" "gnus/gnus-win.el" | 7978 | ;;;### (autoloads (gnus-add-configuration) "gnus-win" "gnus/gnus-win.el" |
| 7759 | ;;;;;; (14792 2682)) | 7979 | ;;;;;; (14875 40522)) |
| 7760 | ;;; Generated autoloads from gnus/gnus-win.el | 7980 | ;;; Generated autoloads from gnus/gnus-win.el |
| 7761 | 7981 | ||
| 7762 | (autoload (quote gnus-add-configuration) "gnus-win" "\ | 7982 | (autoload (quote gnus-add-configuration) "gnus-win" "\ |
| @@ -7822,7 +8042,7 @@ the form \"WINDOW-ID PIXMAP-ID\". Value is non-nil if successful." nil nil) | |||
| 7822 | ;;;*** | 8042 | ;;;*** |
| 7823 | 8043 | ||
| 7824 | ;;;### (autoloads (jdb pdb perldb xdb dbx sdb gdb) "gud" "gud.el" | 8044 | ;;;### (autoloads (jdb pdb perldb xdb dbx sdb gdb) "gud" "gud.el" |
| 7825 | ;;;;;; (14750 26818)) | 8045 | ;;;;;; (14863 49547)) |
| 7826 | ;;; Generated autoloads from gud.el | 8046 | ;;; Generated autoloads from gud.el |
| 7827 | 8047 | ||
| 7828 | (autoload (quote gdb) "gud" "\ | 8048 | (autoload (quote gdb) "gud" "\ |
| @@ -8020,7 +8240,7 @@ This discards the buffer's undo information." t nil) | |||
| 8020 | 8240 | ||
| 8021 | ;;;### (autoloads (hi-lock-write-interactive-patterns hi-lock-unface-buffer | 8241 | ;;;### (autoloads (hi-lock-write-interactive-patterns hi-lock-unface-buffer |
| 8022 | ;;;;;; hi-lock-face-buffer hi-lock-line-face-buffer hi-lock-mode | 8242 | ;;;;;; hi-lock-face-buffer hi-lock-line-face-buffer hi-lock-mode |
| 8023 | ;;;;;; hi-lock-mode) "hi-lock" "hi-lock.el" (14792 36880)) | 8243 | ;;;;;; hi-lock-mode) "hi-lock" "hi-lock.el" (14884 12791)) |
| 8024 | ;;; Generated autoloads from hi-lock.el | 8244 | ;;; Generated autoloads from hi-lock.el |
| 8025 | 8245 | ||
| 8026 | (defgroup hi-lock-interactive-text-highlighting nil "Interactively add and remove font-lock patterns for highlighting text." :group (quote faces)) | 8246 | (defgroup hi-lock-interactive-text-highlighting nil "Interactively add and remove font-lock patterns for highlighting text." :group (quote faces)) |
| @@ -8409,17 +8629,23 @@ The optional LABEL is used to label the buffer created." t nil) | |||
| 8409 | ;;;*** | 8629 | ;;;*** |
| 8410 | 8630 | ||
| 8411 | ;;;### (autoloads (hscroll-global-mode hscroll-mode turn-on-hscroll) | 8631 | ;;;### (autoloads (hscroll-global-mode hscroll-mode turn-on-hscroll) |
| 8412 | ;;;;;; "hscroll" "hscroll.el" (14671 47520)) | 8632 | ;;;;;; "hscroll" "hscroll.el" (14883 57782)) |
| 8413 | ;;; Generated autoloads from hscroll.el | 8633 | ;;; Generated autoloads from hscroll.el |
| 8414 | 8634 | ||
| 8415 | (autoload (quote turn-on-hscroll) "hscroll" "\ | 8635 | (autoload (quote turn-on-hscroll) "hscroll" "\ |
| 8416 | This function is obsolete." nil nil) | 8636 | This function is obsolete. |
| 8637 | Emacs now does hscrolling automatically, if `truncate-lines' is non-nil. | ||
| 8638 | Also see `automatic-hscrolling'." nil nil) | ||
| 8417 | 8639 | ||
| 8418 | (autoload (quote hscroll-mode) "hscroll" "\ | 8640 | (autoload (quote hscroll-mode) "hscroll" "\ |
| 8419 | This function is absolete." t nil) | 8641 | This function is obsolete. |
| 8642 | Emacs now does hscrolling automatically, if `truncate-lines' is non-nil. | ||
| 8643 | Also see `automatic-hscrolling'." t nil) | ||
| 8420 | 8644 | ||
| 8421 | (autoload (quote hscroll-global-mode) "hscroll" "\ | 8645 | (autoload (quote hscroll-global-mode) "hscroll" "\ |
| 8422 | This function is absolete." t nil) | 8646 | This function is obsolete. |
| 8647 | Emacs now does hscrolling automatically, if `truncate-lines' is non-nil. | ||
| 8648 | Also see `automatic-hscrolling'." t nil) | ||
| 8423 | 8649 | ||
| 8424 | ;;;*** | 8650 | ;;;*** |
| 8425 | 8651 | ||
| @@ -8725,7 +8951,7 @@ Example: | |||
| 8725 | 8951 | ||
| 8726 | ;;;### (autoloads (auto-image-file-mode insert-image-file image-file-name-regexp | 8952 | ;;;### (autoloads (auto-image-file-mode insert-image-file image-file-name-regexp |
| 8727 | ;;;;;; image-file-name-regexps image-file-name-extensions) "image-file" | 8953 | ;;;;;; image-file-name-regexps image-file-name-extensions) "image-file" |
| 8728 | ;;;;;; "image-file.el" (14854 32221)) | 8954 | ;;;;;; "image-file.el" (14887 28113)) |
| 8729 | ;;; Generated autoloads from image-file.el | 8955 | ;;; Generated autoloads from image-file.el |
| 8730 | 8956 | ||
| 8731 | (defvar image-file-name-extensions (quote ("png" "jpeg" "jpg" "gif" "tiff" "xbm" "xpm" "pbm")) "\ | 8957 | (defvar image-file-name-extensions (quote ("png" "jpeg" "jpg" "gif" "tiff" "xbm" "xpm" "pbm")) "\ |
| @@ -8976,7 +9202,7 @@ of `inferior-lisp-program'). Runs the hooks from | |||
| 8976 | 9202 | ||
| 8977 | ;;;### (autoloads (Info-speedbar-browser Info-goto-emacs-key-command-node | 9203 | ;;;### (autoloads (Info-speedbar-browser Info-goto-emacs-key-command-node |
| 8978 | ;;;;;; Info-goto-emacs-command-node Info-directory info-standalone | 9204 | ;;;;;; Info-goto-emacs-command-node Info-directory info-standalone |
| 8979 | ;;;;;; info info-other-window) "info" "info.el" (14854 32221)) | 9205 | ;;;;;; info info-other-window) "info" "info.el" (14872 20396)) |
| 8980 | ;;; Generated autoloads from info.el | 9206 | ;;; Generated autoloads from info.el |
| 8981 | 9207 | ||
| 8982 | (autoload (quote info-other-window) "info" "\ | 9208 | (autoload (quote info-other-window) "info" "\ |
| @@ -9222,7 +9448,7 @@ Add submenus to the Files menu, to convert to and from various formats." t nil) | |||
| 9222 | ;;;;;; ispell-region ispell-change-dictionary ispell-kill-ispell | 9448 | ;;;;;; ispell-region ispell-change-dictionary ispell-kill-ispell |
| 9223 | ;;;;;; ispell-help ispell-word ispell-dictionary-alist ispell-local-dictionary-alist | 9449 | ;;;;;; ispell-help ispell-word ispell-dictionary-alist ispell-local-dictionary-alist |
| 9224 | ;;;;;; ispell-personal-dictionary) "ispell" "textmodes/ispell.el" | 9450 | ;;;;;; ispell-personal-dictionary) "ispell" "textmodes/ispell.el" |
| 9225 | ;;;;;; (14859 5489)) | 9451 | ;;;;;; (14890 7814)) |
| 9226 | ;;; Generated autoloads from textmodes/ispell.el | 9452 | ;;; Generated autoloads from textmodes/ispell.el |
| 9227 | 9453 | ||
| 9228 | (defconst xemacsp (string-match "Lucid\\|XEmacs" emacs-version) "\ | 9454 | (defconst xemacsp (string-match "Lucid\\|XEmacs" emacs-version) "\ |
| @@ -9466,7 +9692,7 @@ You can bind this to the key C-c i in GNUS or mail by adding to | |||
| 9466 | ;;;### (autoloads (iswitchb-mode iswitchb-buffer-other-frame iswitchb-display-buffer | 9692 | ;;;### (autoloads (iswitchb-mode iswitchb-buffer-other-frame iswitchb-display-buffer |
| 9467 | ;;;;;; iswitchb-buffer-other-window iswitchb-buffer iswitchb-default-keybindings | 9693 | ;;;;;; iswitchb-buffer-other-window iswitchb-buffer iswitchb-default-keybindings |
| 9468 | ;;;;;; iswitchb-read-buffer iswitchb-mode) "iswitchb" "iswitchb.el" | 9694 | ;;;;;; iswitchb-read-buffer iswitchb-mode) "iswitchb" "iswitchb.el" |
| 9469 | ;;;;;; (14821 31349)) | 9695 | ;;;;;; (14877 36786)) |
| 9470 | ;;; Generated autoloads from iswitchb.el | 9696 | ;;; Generated autoloads from iswitchb.el |
| 9471 | 9697 | ||
| 9472 | (defvar iswitchb-mode nil "\ | 9698 | (defvar iswitchb-mode nil "\ |
| @@ -9734,7 +9960,7 @@ The return value is number of composed characters." nil nil) | |||
| 9734 | ;;;*** | 9960 | ;;;*** |
| 9735 | 9961 | ||
| 9736 | ;;;### (autoloads (latin1-display latin1-display) "latin1-disp" "international/latin1-disp.el" | 9962 | ;;;### (autoloads (latin1-display latin1-display) "latin1-disp" "international/latin1-disp.el" |
| 9737 | ;;;;;; (14845 20876)) | 9963 | ;;;;;; (14862 37898)) |
| 9738 | ;;; Generated autoloads from international/latin1-disp.el | 9964 | ;;; Generated autoloads from international/latin1-disp.el |
| 9739 | 9965 | ||
| 9740 | (defvar latin1-display nil "\ | 9966 | (defvar latin1-display nil "\ |
| @@ -9762,7 +9988,7 @@ display for all of `latin1-display-sets'. See also `latin1-display-setup'." nil | |||
| 9762 | ;;;*** | 9988 | ;;;*** |
| 9763 | 9989 | ||
| 9764 | ;;;### (autoloads (turn-on-lazy-lock lazy-lock-mode) "lazy-lock" | 9990 | ;;;### (autoloads (turn-on-lazy-lock lazy-lock-mode) "lazy-lock" |
| 9765 | ;;;;;; "lazy-lock.el" (14477 53252)) | 9991 | ;;;;;; "lazy-lock.el" (14862 37894)) |
| 9766 | ;;; Generated autoloads from lazy-lock.el | 9992 | ;;; Generated autoloads from lazy-lock.el |
| 9767 | 9993 | ||
| 9768 | (autoload (quote lazy-lock-mode) "lazy-lock" "\ | 9994 | (autoload (quote lazy-lock-mode) "lazy-lock" "\ |
| @@ -10363,7 +10589,7 @@ Get a Un*x manual page of the item under point and put it in a buffer." t nil) | |||
| 10363 | ;;;;;; message-signature message-indent-citation-function message-cite-function | 10589 | ;;;;;; message-signature message-indent-citation-function message-cite-function |
| 10364 | ;;;;;; message-yank-prefix message-citation-line-function message-send-mail-function | 10590 | ;;;;;; message-yank-prefix message-citation-line-function message-send-mail-function |
| 10365 | ;;;;;; message-user-organization-file message-signature-separator | 10591 | ;;;;;; message-user-organization-file message-signature-separator |
| 10366 | ;;;;;; message-from-style) "message" "gnus/message.el" (14858 32485)) | 10592 | ;;;;;; message-from-style) "message" "gnus/message.el" (14887 28114)) |
| 10367 | ;;; Generated autoloads from gnus/message.el | 10593 | ;;; Generated autoloads from gnus/message.el |
| 10368 | 10594 | ||
| 10369 | (defvar message-from-style (quote default) "\ | 10595 | (defvar message-from-style (quote default) "\ |
| @@ -10541,7 +10767,7 @@ Turning on MetaPost mode calls the value of the variable | |||
| 10541 | 10767 | ||
| 10542 | ;;;### (autoloads (metamail-region metamail-buffer metamail-interpret-body | 10768 | ;;;### (autoloads (metamail-region metamail-buffer metamail-interpret-body |
| 10543 | ;;;;;; metamail-interpret-header) "metamail" "mail/metamail.el" | 10769 | ;;;;;; metamail-interpret-header) "metamail" "mail/metamail.el" |
| 10544 | ;;;;;; (14345 52966)) | 10770 | ;;;;;; (14862 37898)) |
| 10545 | ;;; Generated autoloads from mail/metamail.el | 10771 | ;;; Generated autoloads from mail/metamail.el |
| 10546 | 10772 | ||
| 10547 | (autoload (quote metamail-interpret-header) "metamail" "\ | 10773 | (autoload (quote metamail-interpret-header) "metamail" "\ |
| @@ -10831,7 +11057,7 @@ different buffer menu using the function `msb'." t nil) | |||
| 10831 | ;;;;;; list-coding-systems describe-current-coding-system describe-current-coding-system-briefly | 11057 | ;;;;;; list-coding-systems describe-current-coding-system describe-current-coding-system-briefly |
| 10832 | ;;;;;; describe-coding-system describe-char-after describe-character-set | 11058 | ;;;;;; describe-coding-system describe-char-after describe-character-set |
| 10833 | ;;;;;; list-charset-chars read-charset list-character-sets) "mule-diag" | 11059 | ;;;;;; list-charset-chars read-charset list-character-sets) "mule-diag" |
| 10834 | ;;;;;; "international/mule-diag.el" (14763 35975)) | 11060 | ;;;;;; "international/mule-diag.el" (14887 28114)) |
| 10835 | ;;; Generated autoloads from international/mule-diag.el | 11061 | ;;; Generated autoloads from international/mule-diag.el |
| 10836 | 11062 | ||
| 10837 | (autoload (quote list-character-sets) "mule-diag" "\ | 11063 | (autoload (quote list-character-sets) "mule-diag" "\ |
| @@ -11139,7 +11365,7 @@ Open a network connection to HOST on PORT." t nil) | |||
| 11139 | ;;;;;; uncomment-region comment-kill comment-set-column comment-indent | 11365 | ;;;;;; uncomment-region comment-kill comment-set-column comment-indent |
| 11140 | ;;;;;; comment-indent-default comment-multi-line comment-padding | 11366 | ;;;;;; comment-indent-default comment-multi-line comment-padding |
| 11141 | ;;;;;; comment-style comment-column) "newcomment" "newcomment.el" | 11367 | ;;;;;; comment-style comment-column) "newcomment" "newcomment.el" |
| 11142 | ;;;;;; (14821 31349)) | 11368 | ;;;;;; (14884 54601)) |
| 11143 | ;;; Generated autoloads from newcomment.el | 11369 | ;;; Generated autoloads from newcomment.el |
| 11144 | 11370 | ||
| 11145 | (defalias (quote indent-for-comment) (quote comment-indent)) | 11371 | (defalias (quote indent-for-comment) (quote comment-indent)) |
| @@ -11281,7 +11507,7 @@ This command does not work if you use short group names." t nil) | |||
| 11281 | ;;;*** | 11507 | ;;;*** |
| 11282 | 11508 | ||
| 11283 | ;;;### (autoloads (nnkiboze-generate-groups) "nnkiboze" "gnus/nnkiboze.el" | 11509 | ;;;### (autoloads (nnkiboze-generate-groups) "nnkiboze" "gnus/nnkiboze.el" |
| 11284 | ;;;;;; (14845 20875)) | 11510 | ;;;;;; (14859 52340)) |
| 11285 | ;;; Generated autoloads from gnus/nnkiboze.el | 11511 | ;;; Generated autoloads from gnus/nnkiboze.el |
| 11286 | 11512 | ||
| 11287 | (autoload (quote nnkiboze-generate-groups) "nnkiboze" "\ | 11513 | (autoload (quote nnkiboze-generate-groups) "nnkiboze" "\ |
| @@ -11498,7 +11724,7 @@ The Custom feature is intended to make this obsolete." t nil) | |||
| 11498 | ;;;*** | 11724 | ;;;*** |
| 11499 | 11725 | ||
| 11500 | ;;;### (autoloads (outline-minor-mode outline-mode) "outline" "textmodes/outline.el" | 11726 | ;;;### (autoloads (outline-minor-mode outline-mode) "outline" "textmodes/outline.el" |
| 11501 | ;;;;;; (14807 56561)) | 11727 | ;;;;;; (14876 60333)) |
| 11502 | ;;; Generated autoloads from textmodes/outline.el | 11728 | ;;; Generated autoloads from textmodes/outline.el |
| 11503 | 11729 | ||
| 11504 | (autoload (quote outline-mode) "outline" "\ | 11730 | (autoload (quote outline-mode) "outline" "\ |
| @@ -11838,7 +12064,7 @@ Setup shell-mode to use pcomplete." nil nil) | |||
| 11838 | 12064 | ||
| 11839 | ;;;### (autoloads (cvs-dired-use-hook cvs-dired-action cvs-status | 12065 | ;;;### (autoloads (cvs-dired-use-hook cvs-dired-action cvs-status |
| 11840 | ;;;;;; cvs-update cvs-examine cvs-quickdir cvs-checkout) "pcvs" | 12066 | ;;;;;; cvs-update cvs-examine cvs-quickdir cvs-checkout) "pcvs" |
| 11841 | ;;;;;; "pcvs.el" (14854 32222)) | 12067 | ;;;;;; "pcvs.el" (14875 40521)) |
| 11842 | ;;; Generated autoloads from pcvs.el | 12068 | ;;; Generated autoloads from pcvs.el |
| 11843 | 12069 | ||
| 11844 | (autoload (quote cvs-checkout) "pcvs" "\ | 12070 | (autoload (quote cvs-checkout) "pcvs" "\ |
| @@ -11959,7 +12185,7 @@ Turning on Perl mode runs the normal hook `perl-mode-hook'." t nil) | |||
| 11959 | ;;;*** | 12185 | ;;;*** |
| 11960 | 12186 | ||
| 11961 | ;;;### (autoloads (picture-mode) "picture" "textmodes/picture.el" | 12187 | ;;;### (autoloads (picture-mode) "picture" "textmodes/picture.el" |
| 11962 | ;;;;;; (14348 33291)) | 12188 | ;;;;;; (14883 29490)) |
| 11963 | ;;; Generated autoloads from textmodes/picture.el | 12189 | ;;; Generated autoloads from textmodes/picture.el |
| 11964 | 12190 | ||
| 11965 | (autoload (quote picture-mode) "picture" "\ | 12191 | (autoload (quote picture-mode) "picture" "\ |
| @@ -12091,8 +12317,8 @@ The default value is '(\"/usr/local/share/emacs/fonts/bdf\").") | |||
| 12091 | 12317 | ||
| 12092 | ;;;*** | 12318 | ;;;*** |
| 12093 | 12319 | ||
| 12094 | ;;;### (autoloads (ps-mode) "ps-mode" "progmodes/ps-mode.el" (14380 | 12320 | ;;;### (autoloads (ps-mode) "ps-mode" "progmodes/ps-mode.el" (14884 |
| 12095 | ;;;;;; 3920)) | 12321 | ;;;;;; 1390)) |
| 12096 | ;;; Generated autoloads from progmodes/ps-mode.el | 12322 | ;;; Generated autoloads from progmodes/ps-mode.el |
| 12097 | 12323 | ||
| 12098 | (autoload (quote ps-mode) "ps-mode" "\ | 12324 | (autoload (quote ps-mode) "ps-mode" "\ |
| @@ -12237,7 +12463,7 @@ This checks if all multi-byte characters in the region are printable or not." ni | |||
| 12237 | ;;;;;; ps-spool-region ps-spool-buffer-with-faces ps-spool-buffer | 12463 | ;;;;;; ps-spool-region ps-spool-buffer-with-faces ps-spool-buffer |
| 12238 | ;;;;;; ps-print-region-with-faces ps-print-region ps-print-buffer-with-faces | 12464 | ;;;;;; ps-print-region-with-faces ps-print-region ps-print-buffer-with-faces |
| 12239 | ;;;;;; ps-print-buffer ps-print-customize ps-paper-type) "ps-print" | 12465 | ;;;;;; ps-print-buffer ps-print-customize ps-paper-type) "ps-print" |
| 12240 | ;;;;;; "ps-print.el" (14858 37543)) | 12466 | ;;;;;; "ps-print.el" (14887 28113)) |
| 12241 | ;;; Generated autoloads from ps-print.el | 12467 | ;;; Generated autoloads from ps-print.el |
| 12242 | 12468 | ||
| 12243 | (defvar ps-paper-type (quote letter) "\ | 12469 | (defvar ps-paper-type (quote letter) "\ |
| @@ -12375,7 +12601,7 @@ If EXTENSION is any other symbol, it is ignored." nil nil) | |||
| 12375 | ;;;;;; quail-defrule quail-install-decode-map quail-install-map | 12601 | ;;;;;; quail-defrule quail-install-decode-map quail-install-map |
| 12376 | ;;;;;; quail-define-rules quail-show-keyboard-layout quail-set-keyboard-layout | 12602 | ;;;;;; quail-define-rules quail-show-keyboard-layout quail-set-keyboard-layout |
| 12377 | ;;;;;; quail-define-package quail-use-package) "quail" "international/quail.el" | 12603 | ;;;;;; quail-define-package quail-use-package) "quail" "international/quail.el" |
| 12378 | ;;;;;; (14845 20876)) | 12604 | ;;;;;; (14868 1431)) |
| 12379 | ;;; Generated autoloads from international/quail.el | 12605 | ;;; Generated autoloads from international/quail.el |
| 12380 | 12606 | ||
| 12381 | (autoload (quote quail-use-package) "quail" "\ | 12607 | (autoload (quote quail-use-package) "quail" "\ |
| @@ -12655,7 +12881,7 @@ Call up the RE Builder for the current window." t nil) | |||
| 12655 | 12881 | ||
| 12656 | ;;;### (autoloads (recentf-mode recentf-open-more-files recentf-open-files | 12882 | ;;;### (autoloads (recentf-mode recentf-open-more-files recentf-open-files |
| 12657 | ;;;;;; recentf-cleanup recentf-edit-list recentf-save-list) "recentf" | 12883 | ;;;;;; recentf-cleanup recentf-edit-list recentf-save-list) "recentf" |
| 12658 | ;;;;;; "recentf.el" (14854 32222)) | 12884 | ;;;;;; "recentf.el" (14875 64576)) |
| 12659 | ;;; Generated autoloads from recentf.el | 12885 | ;;; Generated autoloads from recentf.el |
| 12660 | 12886 | ||
| 12661 | (autoload (quote recentf-save-list) "recentf" "\ | 12887 | (autoload (quote recentf-save-list) "recentf" "\ |
| @@ -12699,8 +12925,8 @@ were operated on recently." t nil) | |||
| 12699 | ;;;### (autoloads (clear-rectangle replace-rectangle string-rectangle | 12925 | ;;;### (autoloads (clear-rectangle replace-rectangle string-rectangle |
| 12700 | ;;;;;; delete-whitespace-rectangle open-rectangle insert-rectangle | 12926 | ;;;;;; delete-whitespace-rectangle open-rectangle insert-rectangle |
| 12701 | ;;;;;; yank-rectangle kill-rectangle extract-rectangle delete-extract-rectangle | 12927 | ;;;;;; yank-rectangle kill-rectangle extract-rectangle delete-extract-rectangle |
| 12702 | ;;;;;; delete-rectangle move-to-column-force) "rect" "rect.el" (14710 | 12928 | ;;;;;; delete-rectangle move-to-column-force) "rect" "rect.el" (14877 |
| 12703 | ;;;;;; 21251)) | 12929 | ;;;;;; 36786)) |
| 12704 | ;;; Generated autoloads from rect.el | 12930 | ;;; Generated autoloads from rect.el |
| 12705 | 12931 | ||
| 12706 | (autoload (quote move-to-column-force) "rect" "\ | 12932 | (autoload (quote move-to-column-force) "rect" "\ |
| @@ -12793,8 +13019,8 @@ rectangle which were empty." t nil) | |||
| 12793 | 13019 | ||
| 12794 | ;;;*** | 13020 | ;;;*** |
| 12795 | 13021 | ||
| 12796 | ;;;### (autoloads (refill-mode) "refill" "textmodes/refill.el" (14845 | 13022 | ;;;### (autoloads (refill-mode) "refill" "textmodes/refill.el" (14875 |
| 12797 | ;;;;;; 20876)) | 13023 | ;;;;;; 62936)) |
| 12798 | ;;; Generated autoloads from textmodes/refill.el | 13024 | ;;; Generated autoloads from textmodes/refill.el |
| 12799 | 13025 | ||
| 12800 | (autoload (quote refill-mode) "refill" "\ | 13026 | (autoload (quote refill-mode) "refill" "\ |
| @@ -13070,7 +13296,7 @@ variable." t nil) | |||
| 13070 | ;;;;;; rmail-mail-new-frame rmail-primary-inbox-list rmail-delete-after-output | 13296 | ;;;;;; rmail-mail-new-frame rmail-primary-inbox-list rmail-delete-after-output |
| 13071 | ;;;;;; rmail-highlight-face rmail-highlighted-headers rmail-retry-ignored-headers | 13297 | ;;;;;; rmail-highlight-face rmail-highlighted-headers rmail-retry-ignored-headers |
| 13072 | ;;;;;; rmail-displayed-headers rmail-ignored-headers rmail-dont-reply-to-names) | 13298 | ;;;;;; rmail-displayed-headers rmail-ignored-headers rmail-dont-reply-to-names) |
| 13073 | ;;;;;; "rmail" "mail/rmail.el" (14726 41837)) | 13299 | ;;;;;; "rmail" "mail/rmail.el" (14886 32019)) |
| 13074 | ;;; Generated autoloads from mail/rmail.el | 13300 | ;;; Generated autoloads from mail/rmail.el |
| 13075 | 13301 | ||
| 13076 | (defvar rmail-dont-reply-to-names nil "\ | 13302 | (defvar rmail-dont-reply-to-names nil "\ |
| @@ -13128,7 +13354,7 @@ and the value of the environment variable MAIL overrides it).") | |||
| 13128 | (defvar rmail-secondary-file-regexp "\\.xmail$" "\ | 13354 | (defvar rmail-secondary-file-regexp "\\.xmail$" "\ |
| 13129 | *Regexp for which files are secondary Rmail files.") | 13355 | *Regexp for which files are secondary Rmail files.") |
| 13130 | 13356 | ||
| 13131 | (defvar rmail-confirm-expunge (quote yes-or-no-p) "\ | 13357 | (defvar rmail-confirm-expunge (quote y-or-n-p) "\ |
| 13132 | *Whether and how to ask for confirmation before expunging deleted messages.") | 13358 | *Whether and how to ask for confirmation before expunging deleted messages.") |
| 13133 | 13359 | ||
| 13134 | (defvar rmail-mode-hook nil "\ | 13360 | (defvar rmail-mode-hook nil "\ |
| @@ -13516,7 +13742,7 @@ This function is obsolete." t nil) | |||
| 13516 | ;;;*** | 13742 | ;;;*** |
| 13517 | 13743 | ||
| 13518 | ;;;### (autoloads (dsssl-mode scheme-mode) "scheme" "progmodes/scheme.el" | 13744 | ;;;### (autoloads (dsssl-mode scheme-mode) "scheme" "progmodes/scheme.el" |
| 13519 | ;;;;;; (14821 46406)) | 13745 | ;;;;;; (14866 25750)) |
| 13520 | ;;; Generated autoloads from progmodes/scheme.el | 13746 | ;;; Generated autoloads from progmodes/scheme.el |
| 13521 | 13747 | ||
| 13522 | (autoload (quote scheme-mode) "scheme" "\ | 13748 | (autoload (quote scheme-mode) "scheme" "\ |
| @@ -13588,11 +13814,30 @@ scribe-electric-parenthesis | |||
| 13588 | 13814 | ||
| 13589 | ;;;*** | 13815 | ;;;*** |
| 13590 | 13816 | ||
| 13817 | ;;;### (autoloads (scroll-all-mode scroll-all-mode) "scroll-all" | ||
| 13818 | ;;;;;; "scroll-all.el" (14862 37894)) | ||
| 13819 | ;;; Generated autoloads from scroll-all.el | ||
| 13820 | |||
| 13821 | (defvar scroll-all-mode nil "\ | ||
| 13822 | Control/track scroll locking. | ||
| 13823 | |||
| 13824 | Setting this variable directly does not take effect; | ||
| 13825 | use either M-x customize or the function `scroll-all-mode'.") | ||
| 13826 | |||
| 13827 | (custom-add-to-group (quote windows) (quote scroll-all-mode) (quote custom-variable)) | ||
| 13828 | |||
| 13829 | (custom-add-load (quote scroll-all-mode) (quote scroll-all)) | ||
| 13830 | |||
| 13831 | (autoload (quote scroll-all-mode) "scroll-all" "\ | ||
| 13832 | Toggle Scroll-All minor mode." t nil) | ||
| 13833 | |||
| 13834 | ;;;*** | ||
| 13835 | |||
| 13591 | ;;;### (autoloads (mail-other-frame mail-other-window mail mail-mode | 13836 | ;;;### (autoloads (mail-other-frame mail-other-window mail mail-mode |
| 13592 | ;;;;;; mail-signature mail-personal-alias-file mail-alias-file mail-default-reply-to | 13837 | ;;;;;; mail-signature mail-personal-alias-file mail-alias-file mail-default-reply-to |
| 13593 | ;;;;;; mail-archive-file-name mail-header-separator mail-yank-ignored-headers | 13838 | ;;;;;; mail-archive-file-name mail-header-separator mail-yank-ignored-headers |
| 13594 | ;;;;;; mail-interactive mail-self-blind mail-specify-envelope-from | 13839 | ;;;;;; mail-interactive mail-self-blind mail-specify-envelope-from |
| 13595 | ;;;;;; mail-from-style) "sendmail" "mail/sendmail.el" (14821 31351)) | 13840 | ;;;;;; mail-from-style) "sendmail" "mail/sendmail.el" (14862 37898)) |
| 13596 | ;;; Generated autoloads from mail/sendmail.el | 13841 | ;;; Generated autoloads from mail/sendmail.el |
| 13597 | 13842 | ||
| 13598 | (defvar mail-from-style (quote angles) "\ | 13843 | (defvar mail-from-style (quote angles) "\ |
| @@ -13829,7 +14074,7 @@ To work around that, do: | |||
| 13829 | ;;;*** | 14074 | ;;;*** |
| 13830 | 14075 | ||
| 13831 | ;;;### (autoloads (sh-mode) "sh-script" "progmodes/sh-script.el" | 14076 | ;;;### (autoloads (sh-mode) "sh-script" "progmodes/sh-script.el" |
| 13832 | ;;;;;; (14834 55789)) | 14077 | ;;;;;; (14863 49548)) |
| 13833 | ;;; Generated autoloads from progmodes/sh-script.el | 14078 | ;;; Generated autoloads from progmodes/sh-script.el |
| 13834 | 14079 | ||
| 13835 | (put (quote sh-mode) (quote mode-class) (quote special)) | 14080 | (put (quote sh-mode) (quote mode-class) (quote special)) |
| @@ -13938,7 +14183,7 @@ buffer called `*Shadows*'. Shadowings are located by calling the | |||
| 13938 | ;;;*** | 14183 | ;;;*** |
| 13939 | 14184 | ||
| 13940 | ;;;### (autoloads (shell shell-dumb-shell-regexp) "shell" "shell.el" | 14185 | ;;;### (autoloads (shell shell-dumb-shell-regexp) "shell" "shell.el" |
| 13941 | ;;;;;; (14841 20034)) | 14186 | ;;;;;; (14875 40521)) |
| 13942 | ;;; Generated autoloads from shell.el | 14187 | ;;; Generated autoloads from shell.el |
| 13943 | 14188 | ||
| 13944 | (defvar shell-dumb-shell-regexp "cmd\\(proxy\\)?\\.exe" "\ | 14189 | (defvar shell-dumb-shell-regexp "cmd\\(proxy\\)?\\.exe" "\ |
| @@ -14352,7 +14597,7 @@ Pick your favourite shortcuts: | |||
| 14352 | 14597 | ||
| 14353 | ;;;### (autoloads (reverse-region sort-columns sort-regexp-fields | 14598 | ;;;### (autoloads (reverse-region sort-columns sort-regexp-fields |
| 14354 | ;;;;;; sort-fields sort-numeric-fields sort-pages sort-paragraphs | 14599 | ;;;;;; sort-fields sort-numeric-fields sort-pages sort-paragraphs |
| 14355 | ;;;;;; sort-lines sort-subr) "sort" "sort.el" (14481 36842)) | 14600 | ;;;;;; sort-lines sort-subr) "sort" "sort.el" (14886 9525)) |
| 14356 | ;;; Generated autoloads from sort.el | 14601 | ;;; Generated autoloads from sort.el |
| 14357 | 14602 | ||
| 14358 | (autoload (quote sort-subr) "sort" "\ | 14603 | (autoload (quote sort-subr) "sort" "\ |
| @@ -14455,10 +14700,10 @@ For example: to sort lines in the region by the first word on each line | |||
| 14455 | 14700 | ||
| 14456 | (autoload (quote sort-columns) "sort" "\ | 14701 | (autoload (quote sort-columns) "sort" "\ |
| 14457 | Sort lines in region alphabetically by a certain range of columns. | 14702 | Sort lines in region alphabetically by a certain range of columns. |
| 14458 | For the purpose of this command, the region includes | 14703 | For the purpose of this command, the region BEG...END includes |
| 14459 | the entire line that point is in and the entire line the mark is in. | 14704 | the entire line that point is in and the entire line the mark is in. |
| 14460 | The column positions of point and mark bound the range of columns to sort on. | 14705 | The column positions of point and mark bound the range of columns to sort on. |
| 14461 | A prefix argument means sort into reverse order. | 14706 | A prefix argument means sort into REVERSE order. |
| 14462 | The variable `sort-fold-case' determines whether alphabetic case affects | 14707 | The variable `sort-fold-case' determines whether alphabetic case affects |
| 14463 | the sort order. | 14708 | the sort order. |
| 14464 | 14709 | ||
| @@ -15132,7 +15377,7 @@ tetris-mode keybindings: | |||
| 15132 | ;;;;;; tex-start-options-string slitex-run-command latex-run-command | 15377 | ;;;;;; tex-start-options-string slitex-run-command latex-run-command |
| 15133 | ;;;;;; tex-run-command tex-offer-save tex-main-file tex-first-line-header-regexp | 15378 | ;;;;;; tex-run-command tex-offer-save tex-main-file tex-first-line-header-regexp |
| 15134 | ;;;;;; tex-directory tex-shell-file-name) "tex-mode" "textmodes/tex-mode.el" | 15379 | ;;;;;; tex-directory tex-shell-file-name) "tex-mode" "textmodes/tex-mode.el" |
| 15135 | ;;;;;; (14849 20131)) | 15380 | ;;;;;; (14890 7814)) |
| 15136 | ;;; Generated autoloads from textmodes/tex-mode.el | 15381 | ;;; Generated autoloads from textmodes/tex-mode.el |
| 15137 | 15382 | ||
| 15138 | (defvar tex-shell-file-name nil "\ | 15383 | (defvar tex-shell-file-name nil "\ |
| @@ -15413,10 +15658,16 @@ if large. You can use Info-split to do this manually." t nil) | |||
| 15413 | 15658 | ||
| 15414 | ;;;*** | 15659 | ;;;*** |
| 15415 | 15660 | ||
| 15416 | ;;;### (autoloads (texinfo-mode) "texinfo" "textmodes/texinfo.el" | 15661 | ;;;### (autoloads (texinfo-mode texinfo-close-quote texinfo-open-quote) |
| 15417 | ;;;;;; (14855 56553)) | 15662 | ;;;;;; "texinfo" "textmodes/texinfo.el" (14890 7814)) |
| 15418 | ;;; Generated autoloads from textmodes/texinfo.el | 15663 | ;;; Generated autoloads from textmodes/texinfo.el |
| 15419 | 15664 | ||
| 15665 | (defvar texinfo-open-quote "``" "\ | ||
| 15666 | *String inserted by typing \\[texinfo-insert-quote] to open a quotation.") | ||
| 15667 | |||
| 15668 | (defvar texinfo-close-quote "''" "\ | ||
| 15669 | *String inserted by typing \\[texinfo-insert-quote] to close a quotation.") | ||
| 15670 | |||
| 15420 | (autoload (quote texinfo-mode) "texinfo" "\ | 15671 | (autoload (quote texinfo-mode) "texinfo" "\ |
| 15421 | Major mode for editing Texinfo files. | 15672 | Major mode for editing Texinfo files. |
| 15422 | 15673 | ||
| @@ -15605,7 +15856,7 @@ See also docstring of the function tibetan-compose-region." t nil) | |||
| 15605 | ;;;*** | 15856 | ;;;*** |
| 15606 | 15857 | ||
| 15607 | ;;;### (autoloads (tildify-buffer tildify-region) "tildify" "textmodes/tildify.el" | 15858 | ;;;### (autoloads (tildify-buffer tildify-region) "tildify" "textmodes/tildify.el" |
| 15608 | ;;;;;; (14780 47087)) | 15859 | ;;;;;; (14883 35658)) |
| 15609 | ;;; Generated autoloads from textmodes/tildify.el | 15860 | ;;; Generated autoloads from textmodes/tildify.el |
| 15610 | 15861 | ||
| 15611 | (autoload (quote tildify-region) "tildify" "\ | 15862 | (autoload (quote tildify-region) "tildify" "\ |
| @@ -15660,7 +15911,7 @@ This runs the normal hook `display-time-hook' after each update." t nil) | |||
| 15660 | ;;;*** | 15911 | ;;;*** |
| 15661 | 15912 | ||
| 15662 | ;;;### (autoloads (safe-date-to-time date-to-time) "time-date" "gnus/time-date.el" | 15913 | ;;;### (autoloads (safe-date-to-time date-to-time) "time-date" "gnus/time-date.el" |
| 15663 | ;;;;;; (14791 27442)) | 15914 | ;;;;;; (14862 37897)) |
| 15664 | ;;; Generated autoloads from gnus/time-date.el | 15915 | ;;; Generated autoloads from gnus/time-date.el |
| 15665 | 15916 | ||
| 15666 | (autoload (quote date-to-time) "time-date" "\ | 15917 | (autoload (quote date-to-time) "time-date" "\ |
| @@ -15860,7 +16111,7 @@ To get complete usage, invoke \"emacs -batch -f batch-titdic-convert -h\"." nil | |||
| 15860 | ;;;*** | 16111 | ;;;*** |
| 15861 | 16112 | ||
| 15862 | ;;;### (autoloads (tmm-prompt tmm-menubar-mouse tmm-menubar) "tmm" | 16113 | ;;;### (autoloads (tmm-prompt tmm-menubar-mouse tmm-menubar) "tmm" |
| 15863 | ;;;;;; "tmm.el" (14789 57836)) | 16114 | ;;;;;; "tmm.el" (14890 7814)) |
| 15864 | ;;; Generated autoloads from tmm.el | 16115 | ;;; Generated autoloads from tmm.el |
| 15865 | (define-key global-map "\M-`" 'tmm-menubar) | 16116 | (define-key global-map "\M-`" 'tmm-menubar) |
| 15866 | (define-key global-map [f10] 'tmm-menubar) | 16117 | (define-key global-map [f10] 'tmm-menubar) |
| @@ -15894,7 +16145,7 @@ Its value should be an event that has a binding in MENU." nil nil) | |||
| 15894 | ;;;*** | 16145 | ;;;*** |
| 15895 | 16146 | ||
| 15896 | ;;;### (autoloads (todo-print todo-save-top-priorities todo-top-priorities) | 16147 | ;;;### (autoloads (todo-print todo-save-top-priorities todo-top-priorities) |
| 15897 | ;;;;;; "todo-mode" "calendar/todo-mode.el" (14690 14754)) | 16148 | ;;;;;; "todo-mode" "calendar/todo-mode.el" (14876 60332)) |
| 15898 | ;;; Generated autoloads from calendar/todo-mode.el | 16149 | ;;; Generated autoloads from calendar/todo-mode.el |
| 15899 | 16150 | ||
| 15900 | (autoload (quote todo-top-priorities) "todo-mode" "\ | 16151 | (autoload (quote todo-top-priorities) "todo-mode" "\ |
| @@ -15922,7 +16173,7 @@ Number of entries for each category is given by `todo-print-priorities'." t nil) | |||
| 15922 | ;;;*** | 16173 | ;;;*** |
| 15923 | 16174 | ||
| 15924 | ;;;### (autoloads (tool-bar-add-item-from-menu tool-bar-add-item | 16175 | ;;;### (autoloads (tool-bar-add-item-from-menu tool-bar-add-item |
| 15925 | ;;;;;; tool-bar-mode) "tool-bar" "toolbar/tool-bar.el" (14854 32223)) | 16176 | ;;;;;; tool-bar-mode) "tool-bar" "toolbar/tool-bar.el" (14885 15496)) |
| 15926 | ;;; Generated autoloads from toolbar/tool-bar.el | 16177 | ;;; Generated autoloads from toolbar/tool-bar.el |
| 15927 | 16178 | ||
| 15928 | (defvar tool-bar-mode nil "\ | 16179 | (defvar tool-bar-mode nil "\ |
| @@ -15937,7 +16188,7 @@ use either \\[customize] or the function `tool-bar-mode'.") | |||
| 15937 | 16188 | ||
| 15938 | (autoload (quote tool-bar-mode) "tool-bar" "\ | 16189 | (autoload (quote tool-bar-mode) "tool-bar" "\ |
| 15939 | Toggle use of the tool bar. | 16190 | Toggle use of the tool bar. |
| 15940 | With ARG, display the tool bar if and only if ARG is positive. | 16191 | With numeric ARG, display the tool bar if and only if ARG is positive. |
| 15941 | 16192 | ||
| 15942 | See `tool-bar-add-item' and `tool-bar-add-item-from-menu' for | 16193 | See `tool-bar-add-item' and `tool-bar-add-item-from-menu' for |
| 15943 | conveniently adding tool bar items." t nil) | 16194 | conveniently adding tool bar items." t nil) |
| @@ -15972,7 +16223,7 @@ function." nil nil) | |||
| 15972 | ;;;*** | 16223 | ;;;*** |
| 15973 | 16224 | ||
| 15974 | ;;;### (autoloads (tooltip-mode tooltip-mode) "tooltip" "tooltip.el" | 16225 | ;;;### (autoloads (tooltip-mode tooltip-mode) "tooltip" "tooltip.el" |
| 15975 | ;;;;;; (14849 20130)) | 16226 | ;;;;;; (14883 29489)) |
| 15976 | ;;; Generated autoloads from tooltip.el | 16227 | ;;; Generated autoloads from tooltip.el |
| 15977 | 16228 | ||
| 15978 | (autoload (quote tooltip-mode) "tooltip" "\ | 16229 | (autoload (quote tooltip-mode) "tooltip" "\ |
| @@ -15990,8 +16241,8 @@ use either \\[customize] or the function `tooltip-mode'.") | |||
| 15990 | 16241 | ||
| 15991 | ;;;*** | 16242 | ;;;*** |
| 15992 | 16243 | ||
| 15993 | ;;;### (autoloads (tpu-edt-on) "tpu-edt" "emulation/tpu-edt.el" (14299 | 16244 | ;;;### (autoloads (tpu-edt-on) "tpu-edt" "emulation/tpu-edt.el" (14886 |
| 15994 | ;;;;;; 63726)) | 16245 | ;;;;;; 17544)) |
| 15995 | ;;; Generated autoloads from emulation/tpu-edt.el | 16246 | ;;; Generated autoloads from emulation/tpu-edt.el |
| 15996 | 16247 | ||
| 15997 | (fset (quote tpu-edt-mode) (quote tpu-edt-on)) | 16248 | (fset (quote tpu-edt-mode) (quote tpu-edt-on)) |
| @@ -16004,7 +16255,7 @@ Turn on TPU/edt emulation." t nil) | |||
| 16004 | ;;;*** | 16255 | ;;;*** |
| 16005 | 16256 | ||
| 16006 | ;;;### (autoloads (tpu-set-cursor-bound tpu-set-cursor-free tpu-set-scroll-margins) | 16257 | ;;;### (autoloads (tpu-set-cursor-bound tpu-set-cursor-free tpu-set-scroll-margins) |
| 16007 | ;;;;;; "tpu-extras" "emulation/tpu-extras.el" (13623 36919)) | 16258 | ;;;;;; "tpu-extras" "emulation/tpu-extras.el" (14886 17615)) |
| 16008 | ;;; Generated autoloads from emulation/tpu-extras.el | 16259 | ;;; Generated autoloads from emulation/tpu-extras.el |
| 16009 | 16260 | ||
| 16010 | (autoload (quote tpu-set-scroll-margins) "tpu-extras" "\ | 16261 | (autoload (quote tpu-set-scroll-margins) "tpu-extras" "\ |
| @@ -16056,7 +16307,7 @@ the window or buffer configuration at all." t nil) | |||
| 16056 | ;;;*** | 16307 | ;;;*** |
| 16057 | 16308 | ||
| 16058 | ;;;### (autoloads (2C-split 2C-associate-buffer 2C-two-columns) "two-column" | 16309 | ;;;### (autoloads (2C-split 2C-associate-buffer 2C-two-columns) "two-column" |
| 16059 | ;;;;;; "textmodes/two-column.el" (13940 33924)) | 16310 | ;;;;;; "textmodes/two-column.el" (14876 60333)) |
| 16060 | ;;; Generated autoloads from textmodes/two-column.el | 16311 | ;;; Generated autoloads from textmodes/two-column.el |
| 16061 | (autoload '2C-command "two-column" () t 'keymap) | 16312 | (autoload '2C-command "two-column" () t 'keymap) |
| 16062 | (global-set-key "\C-x6" '2C-command) | 16313 | (global-set-key "\C-x6" '2C-command) |
| @@ -16100,7 +16351,7 @@ First column's text sSs Second column's text | |||
| 16100 | ;;;### (autoloads (type-break-guesstimate-keystroke-threshold type-break-statistics | 16351 | ;;;### (autoloads (type-break-guesstimate-keystroke-threshold type-break-statistics |
| 16101 | ;;;;;; type-break type-break-mode type-break-keystroke-threshold | 16352 | ;;;;;; type-break type-break-mode type-break-keystroke-threshold |
| 16102 | ;;;;;; type-break-good-rest-interval type-break-interval type-break-mode) | 16353 | ;;;;;; type-break-good-rest-interval type-break-interval type-break-mode) |
| 16103 | ;;;;;; "type-break" "type-break.el" (14716 17385)) | 16354 | ;;;;;; "type-break" "type-break.el" (14891 28342)) |
| 16104 | ;;; Generated autoloads from type-break.el | 16355 | ;;; Generated autoloads from type-break.el |
| 16105 | 16356 | ||
| 16106 | (defvar type-break-mode nil "\ | 16357 | (defvar type-break-mode nil "\ |
| @@ -16320,16 +16571,16 @@ The buffer in question is current when this function is called." nil nil) | |||
| 16320 | ;;;*** | 16571 | ;;;*** |
| 16321 | 16572 | ||
| 16322 | ;;;### (autoloads (uudecode-decode-region uudecode-decode-region-external) | 16573 | ;;;### (autoloads (uudecode-decode-region uudecode-decode-region-external) |
| 16323 | ;;;;;; "uudecode" "gnus/uudecode.el" (14858 32485)) | 16574 | ;;;;;; "uudecode" "gnus/uudecode.el" (14877 36787)) |
| 16324 | ;;; Generated autoloads from gnus/uudecode.el | 16575 | ;;; Generated autoloads from gnus/uudecode.el |
| 16325 | 16576 | ||
| 16326 | (autoload (quote uudecode-decode-region-external) "uudecode" "\ | 16577 | (autoload (quote uudecode-decode-region-external) "uudecode" "\ |
| 16327 | Uudecode region between START and END with external decoder. | 16578 | Uudecode region between START and END using external program. |
| 16328 | 16579 | If FILE-NAME is non-nil, save the result to FILE-NAME. The program | |
| 16329 | If FILE-NAME is non-nil, save the result to FILE-NAME." t nil) | 16580 | used is specified by `uudecode-decoder-program'." t nil) |
| 16330 | 16581 | ||
| 16331 | (autoload (quote uudecode-decode-region) "uudecode" "\ | 16582 | (autoload (quote uudecode-decode-region) "uudecode" "\ |
| 16332 | Uudecode region between START and END. | 16583 | Uudecode region between START and END without using an external program. |
| 16333 | If FILE-NAME is non-nil, save the result to FILE-NAME." t nil) | 16584 | If FILE-NAME is non-nil, save the result to FILE-NAME." t nil) |
| 16334 | 16585 | ||
| 16335 | ;;;*** | 16586 | ;;;*** |
| @@ -16339,7 +16590,7 @@ If FILE-NAME is non-nil, save the result to FILE-NAME." t nil) | |||
| 16339 | ;;;;;; vc-create-snapshot vc-directory vc-resolve-conflicts vc-merge | 16590 | ;;;;;; vc-create-snapshot vc-directory vc-resolve-conflicts vc-merge |
| 16340 | ;;;;;; vc-insert-headers vc-version-other-window vc-diff vc-register | 16591 | ;;;;;; vc-insert-headers vc-version-other-window vc-diff vc-register |
| 16341 | ;;;;;; vc-next-action edit-vc-file with-vc-file vc-before-checkin-hook | 16592 | ;;;;;; vc-next-action edit-vc-file with-vc-file vc-before-checkin-hook |
| 16342 | ;;;;;; vc-checkin-hook) "vc" "vc.el" (14845 20872)) | 16593 | ;;;;;; vc-checkin-hook) "vc" "vc.el" (14874 16518)) |
| 16343 | ;;; Generated autoloads from vc.el | 16594 | ;;; Generated autoloads from vc.el |
| 16344 | 16595 | ||
| 16345 | (defvar vc-checkin-hook nil "\ | 16596 | (defvar vc-checkin-hook nil "\ |
| @@ -16501,8 +16752,9 @@ log entries should be gathered." t nil) | |||
| 16501 | (autoload (quote vc-annotate) "vc" "\ | 16752 | (autoload (quote vc-annotate) "vc" "\ |
| 16502 | Display the result of the \"Annotate\" command using colors. | 16753 | Display the result of the \"Annotate\" command using colors. |
| 16503 | \"Annotate\" is defined by `vc-BACKEND-annotate-command'. New lines | 16754 | \"Annotate\" is defined by `vc-BACKEND-annotate-command'. New lines |
| 16504 | are displayed in red, old in blue. A prefix argument specifies a | 16755 | are displayed in red, old in blue. When given a prefix argument, asks |
| 16505 | factor for stretching the time scale. | 16756 | for a version to annotate from, and a factor for stretching the time |
| 16757 | scale. | ||
| 16506 | 16758 | ||
| 16507 | `vc-annotate-menu-elements' customizes the menu elements of the | 16759 | `vc-annotate-menu-elements' customizes the menu elements of the |
| 16508 | mode-specific menu. `vc-annotate-color-map' and | 16760 | mode-specific menu. `vc-annotate-color-map' and |
| @@ -16511,7 +16763,7 @@ colors. `vc-annotate-background' specifies the background color." t nil) | |||
| 16511 | 16763 | ||
| 16512 | ;;;*** | 16764 | ;;;*** |
| 16513 | 16765 | ||
| 16514 | ;;;### (autoloads nil "vc-cvs" "vc-cvs.el" (14845 20872)) | 16766 | ;;;### (autoloads nil "vc-cvs" "vc-cvs.el" (14874 16518)) |
| 16515 | ;;; Generated autoloads from vc-cvs.el | 16767 | ;;; Generated autoloads from vc-cvs.el |
| 16516 | (defun vc-cvs-registered (f) | 16768 | (defun vc-cvs-registered (f) |
| 16517 | (when (file-readable-p (expand-file-name | 16769 | (when (file-readable-p (expand-file-name |
| @@ -16522,7 +16774,7 @@ colors. `vc-annotate-background' specifies the background color." t nil) | |||
| 16522 | ;;;*** | 16774 | ;;;*** |
| 16523 | 16775 | ||
| 16524 | ;;;### (autoloads (vc-rcs-master-templates) "vc-rcs" "vc-rcs.el" | 16776 | ;;;### (autoloads (vc-rcs-master-templates) "vc-rcs" "vc-rcs.el" |
| 16525 | ;;;;;; (14810 62717)) | 16777 | ;;;;;; (14874 16518)) |
| 16526 | ;;; Generated autoloads from vc-rcs.el | 16778 | ;;; Generated autoloads from vc-rcs.el |
| 16527 | 16779 | ||
| 16528 | (defvar vc-rcs-master-templates (quote ("%sRCS/%s,v" "%s%s,v" "%sRCS/%s")) "\ | 16780 | (defvar vc-rcs-master-templates (quote ("%sRCS/%s,v" "%s%s,v" "%sRCS/%s")) "\ |
| @@ -16534,7 +16786,7 @@ For a description of possible values, see `vc-check-master-templates'.") | |||
| 16534 | ;;;*** | 16786 | ;;;*** |
| 16535 | 16787 | ||
| 16536 | ;;;### (autoloads (vc-sccs-master-templates) "vc-sccs" "vc-sccs.el" | 16788 | ;;;### (autoloads (vc-sccs-master-templates) "vc-sccs" "vc-sccs.el" |
| 16537 | ;;;;;; (14777 64827)) | 16789 | ;;;;;; (14869 5816)) |
| 16538 | ;;; Generated autoloads from vc-sccs.el | 16790 | ;;; Generated autoloads from vc-sccs.el |
| 16539 | 16791 | ||
| 16540 | (defvar vc-sccs-master-templates (quote ("%sSCCS/s.%s" "%ss.%s" vc-sccs-search-project-dir)) "\ | 16792 | (defvar vc-sccs-master-templates (quote ("%sSCCS/s.%s" "%ss.%s" vc-sccs-search-project-dir)) "\ |
| @@ -16909,8 +17161,8 @@ Convert Vietnamese characaters of the current buffer to `VIQR' mnemonics." t nil | |||
| 16909 | 17161 | ||
| 16910 | ;;;### (autoloads (View-exit-and-edit view-mode-enter view-mode view-buffer-other-frame | 17162 | ;;;### (autoloads (View-exit-and-edit view-mode-enter view-mode view-buffer-other-frame |
| 16911 | ;;;;;; view-buffer-other-window view-buffer view-file-other-frame | 17163 | ;;;;;; view-buffer-other-window view-buffer view-file-other-frame |
| 16912 | ;;;;;; view-file-other-window view-file) "view" "view.el" (14789 | 17164 | ;;;;;; view-file-other-window view-file) "view" "view.el" (14862 |
| 16913 | ;;;;;; 57836)) | 17165 | ;;;;;; 37894)) |
| 16914 | ;;; Generated autoloads from view.el | 17166 | ;;; Generated autoloads from view.el |
| 16915 | 17167 | ||
| 16916 | (defvar view-mode nil "\ | 17168 | (defvar view-mode nil "\ |
| @@ -17106,7 +17358,7 @@ Turn on VIP emulation of VI." t nil) | |||
| 17106 | ;;;*** | 17358 | ;;;*** |
| 17107 | 17359 | ||
| 17108 | ;;;### (autoloads (viper-mode toggle-viper-mode) "viper" "emulation/viper.el" | 17360 | ;;;### (autoloads (viper-mode toggle-viper-mode) "viper" "emulation/viper.el" |
| 17109 | ;;;;;; (14845 20873)) | 17361 | ;;;;;; (14878 17056)) |
| 17110 | ;;; Generated autoloads from emulation/viper.el | 17362 | ;;; Generated autoloads from emulation/viper.el |
| 17111 | 17363 | ||
| 17112 | (autoload (quote toggle-viper-mode) "viper" "\ | 17364 | (autoload (quote toggle-viper-mode) "viper" "\ |
| @@ -17133,7 +17385,7 @@ Please submit bug reports and other feedback to the author, Neil W. Van Dyke | |||
| 17133 | ;;;*** | 17385 | ;;;*** |
| 17134 | 17386 | ||
| 17135 | ;;;### (autoloads (which-func-mode which-func-mode-global) "which-func" | 17387 | ;;;### (autoloads (which-func-mode which-func-mode-global) "which-func" |
| 17136 | ;;;;;; "which-func.el" (14813 40531)) | 17388 | ;;;;;; "which-func.el" (14875 40521)) |
| 17137 | ;;; Generated autoloads from which-func.el | 17389 | ;;; Generated autoloads from which-func.el |
| 17138 | 17390 | ||
| 17139 | (defvar which-func-mode-global nil "\ | 17391 | (defvar which-func-mode-global nil "\ |
| @@ -17273,7 +17525,7 @@ With arg, turn widget mode on if and only if arg is positive." t nil) | |||
| 17273 | ;;;*** | 17525 | ;;;*** |
| 17274 | 17526 | ||
| 17275 | ;;;### (autoloads (widget-delete widget-create widget-prompt-value) | 17527 | ;;;### (autoloads (widget-delete widget-create widget-prompt-value) |
| 17276 | ;;;;;; "wid-edit" "wid-edit.el" (14854 32222)) | 17528 | ;;;;;; "wid-edit" "wid-edit.el" (14883 29489)) |
| 17277 | ;;; Generated autoloads from wid-edit.el | 17529 | ;;; Generated autoloads from wid-edit.el |
| 17278 | 17530 | ||
| 17279 | (autoload (quote widget-prompt-value) "wid-edit" "\ | 17531 | (autoload (quote widget-prompt-value) "wid-edit" "\ |
diff --git a/src/ChangeLog b/src/ChangeLog index 08d4354eaa7..01d201b4d2a 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2000-12-04 Gerd Moellmann <gerd@gnu.org> | ||
| 2 | |||
| 3 | * keyboard.c (record_char): Record `help-echo' input events | ||
| 4 | in recent_keys only if they display some help. Don't record | ||
| 5 | `help-echo' events as macro char. | ||
| 6 | |||
| 1 | 2000-12-04 Kenichi Handa <handa@etl.go.jp> | 7 | 2000-12-04 Kenichi Handa <handa@etl.go.jp> |
| 2 | 8 | ||
| 3 | * xfaces.c (struct font_name): New member registry_priority. | 9 | * xfaces.c (struct font_name): New member registry_priority. |