diff options
| author | jave | 2014-12-28 17:33:38 +0100 |
|---|---|---|
| committer | jave | 2014-12-28 17:33:38 +0100 |
| commit | 703cbed72f82633cf3720ce8ad0523ea3af2c9f5 (patch) | |
| tree | b6ba0487fe9097e2efea4629d76c8661bd417c21 /lisp | |
| parent | 5f46725992bf26f887483c14c63c03f5b5794f34 (diff) | |
| parent | 807c3413c478be964f24b5ecc44712ce3358001e (diff) | |
| download | emacs-703cbed72f82633cf3720ce8ad0523ea3af2c9f5.tar.gz emacs-703cbed72f82633cf3720ce8ad0523ea3af2c9f5.zip | |
Merge branch 'master' into xwidget
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/ChangeLog | 186 | ||||
| -rw-r--r-- | lisp/cedet/ChangeLog | 16 | ||||
| -rw-r--r-- | lisp/cus-start.el | 7 | ||||
| -rw-r--r-- | lisp/dired-aux.el | 5 | ||||
| -rw-r--r-- | lisp/eshell/esh-ext.el | 5 | ||||
| -rw-r--r-- | lisp/ldefs-boot.el | 2469 | ||||
| -rw-r--r-- | lisp/let-alist.el | 2 | ||||
| -rw-r--r-- | lisp/progmodes/elisp-mode.el | 100 | ||||
| -rw-r--r-- | lisp/progmodes/etags.el | 97 | ||||
| -rw-r--r-- | lisp/progmodes/js.el | 27 | ||||
| -rw-r--r-- | lisp/progmodes/xref.el | 499 | ||||
| -rw-r--r-- | lisp/shell.el | 9 | ||||
| -rw-r--r-- | lisp/startup.el | 8 | ||||
| -rw-r--r-- | lisp/window.el | 41 |
14 files changed, 2155 insertions, 1316 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index d8bb1c89f1f..4c6b23dac0b 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,78 @@ | |||
| 1 | 2014-12-26 Dmitry Gutov <dgutov@yandex.ru> | ||
| 2 | |||
| 3 | Add basic xref apropos implementation to elisp-mode. | ||
| 4 | |||
| 5 | * progmodes/elisp-mode.el (elisp--xref-find-definitions): | ||
| 6 | Filter out nil results. | ||
| 7 | (elisp--xref-find-apropos): New function. | ||
| 8 | (elisp-xref-find): Use it. | ||
| 9 | |||
| 10 | * progmodes/xref.el (xref--show-xrefs): Use `user-error'. | ||
| 11 | |||
| 12 | 2014-12-25 Helmut Eller <eller.helmut@gmail.com> | ||
| 13 | Dmitry Gutov <dgutov@yandex.ru> | ||
| 14 | |||
| 15 | Consolidate cross-referencing commands. | ||
| 16 | |||
| 17 | Move autoloaded bindings for `M-.', `M-,', `C-x 4 .' and | ||
| 18 | `C-x 5 .' from etags.el to xref.el. | ||
| 19 | |||
| 20 | * progmodes/xref.el: New file. | ||
| 21 | |||
| 22 | * progmodes/elisp-mode.el (elisp--identifier-types): New variable. | ||
| 23 | (elisp--identifier-location): New function, extracted from | ||
| 24 | `elisp--company-location'. | ||
| 25 | (elisp--company-location): Use it. | ||
| 26 | (elisp--identifier-completion-table): New variable. | ||
| 27 | (elisp-completion-at-point): Use it. | ||
| 28 | (emacs-lisp-mode): Set the local values of `xref-find-function' | ||
| 29 | and `xref-identifier-completion-table-function'. | ||
| 30 | (elisp-xref-find, elisp--xref-find-definitions) | ||
| 31 | (elisp--xref-identifier-completion-table): New functions. | ||
| 32 | |||
| 33 | * progmodes/etags.el (find-tag-marker-ring): Mark obsolete in | ||
| 34 | favor of `xref--marker-ring'. | ||
| 35 | (tags-lazy-completion-table): Autoload. | ||
| 36 | (tags-reset-tags-tables): Use `xref-clear-marker-stack'. | ||
| 37 | (find-tag-noselect): Use `xref-push-marker-stack'. | ||
| 38 | (pop-tag-mark): Make an alias for `xref-pop-marker-stack'. | ||
| 39 | (etags--xref-limit): New constant. | ||
| 40 | (etags-xref-find, etags--xref-find-definitions): New functions. | ||
| 41 | |||
| 42 | 2014-12-25 Martin Rudalics <rudalics@gmx.at> | ||
| 43 | |||
| 44 | * cus-start.el (resize-mini-windows): Make it customizable. | ||
| 45 | |||
| 46 | 2014-12-24 Stephen Leake <stephen_leake@stephe-leake.org> | ||
| 47 | |||
| 48 | * startup.el (fancy-about-text): Change buttons for etc/CONTRIBUTE | ||
| 49 | to (info "(emacs)Contributing"). (Bug#19299) | ||
| 50 | |||
| 51 | 2014-12-24 Martin Rudalics <rudalics@gmx.at> | ||
| 52 | |||
| 53 | * window.el (mouse-autoselect-window-position-1): New variable. | ||
| 54 | (mouse-autoselect-window-cancel) | ||
| 55 | (mouse-autoselect-window-select, handle-select-window): With | ||
| 56 | delayed autoselection select window only if mouse moves after | ||
| 57 | selecting its frame. | ||
| 58 | |||
| 59 | 2014-12-24 Michael Albinus <michael.albinus@gmx.de> | ||
| 60 | |||
| 61 | * eshell/esh-ext.el (eshell-find-interpreter): Expand relative | ||
| 62 | remote file names. (Bug#18782) | ||
| 63 | |||
| 64 | 2014-12-23 Sam Steingold <sds@gnu.org> | ||
| 65 | |||
| 66 | * shell.el (shell-display-buffer-actions): New user option. | ||
| 67 | (shell): Pass it to `pop-to-buffer' instead of hard-coding | ||
| 68 | `pop-to-buffer-same-window'. | ||
| 69 | |||
| 70 | 2014-12-23 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 71 | |||
| 72 | * progmodes/js.el (js--syntax-propertize-regexp-syntax-table): New var. | ||
| 73 | (js-syntax-propertize-regexp): Use it to recognize "slash in | ||
| 74 | a character class" (bug#19397). | ||
| 75 | |||
| 1 | 2014-12-22 Stefan Monnier <monnier@iro.umontreal.ca> | 76 | 2014-12-22 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 77 | ||
| 3 | * completion.el: Use post-self-insert-hook (bug#19400). | 78 | * completion.el: Use post-self-insert-hook (bug#19400). |
| @@ -35,24 +110,21 @@ | |||
| 35 | 110 | ||
| 36 | 2014-12-19 Alan Mackenzie <acm@muc.de> | 111 | 2014-12-19 Alan Mackenzie <acm@muc.de> |
| 37 | 112 | ||
| 38 | Make C++11 uniform init syntax work. New keywords "final" and "override" | 113 | Make C++11 uniform init syntax work. |
| 39 | 114 | New keywords "final" and "override" | |
| 40 | * progmodes/cc-engine.el (c-back-over-member-initializer-braces): | 115 | * progmodes/cc-engine.el (c-back-over-member-initializer-braces): |
| 41 | New function. | 116 | New function. |
| 42 | (c-guess-basic-syntax): Set `containing-sex' and `lim' using the | 117 | (c-guess-basic-syntax): Set `containing-sex' and `lim' using the |
| 43 | new function. | 118 | new function. |
| 44 | |||
| 45 | * progmodes/cc-fonts.el (c-font-lock-declarations): Check more | 119 | * progmodes/cc-fonts.el (c-font-lock-declarations): Check more |
| 46 | carefully for "are we at a declarator?" using | 120 | carefully for "are we at a declarator?" using |
| 47 | c-back-over-member-initializers. | 121 | c-back-over-member-initializers. |
| 48 | 122 | * progmodes/cc-langs.el (c-type-modifier-kwds): Include "final" | |
| 49 | * progmodes/cc-langs.el (c-type-modifier-kwds): include "final" | ||
| 50 | and "override" in the C++ value. | 123 | and "override" in the C++ value. |
| 51 | 124 | ||
| 52 | 2014-12-19 Martin Rudalics <rudalics@gmx.at> | 125 | 2014-12-19 Martin Rudalics <rudalics@gmx.at> |
| 53 | 126 | ||
| 54 | * textmodes/ispell.el (ispell-command-loop): Don't use | 127 | * textmodes/ispell.el (ispell-command-loop): Don't use `next-window'. |
| 55 | `next-window'. | ||
| 56 | 128 | ||
| 57 | 2014-12-21 Lars Ingebrigtsen <larsi@gnus.org> | 129 | 2014-12-21 Lars Ingebrigtsen <larsi@gnus.org> |
| 58 | 130 | ||
| @@ -132,7 +204,7 @@ | |||
| 132 | do the window handling. | 204 | do the window handling. |
| 133 | (ispell-adjusted-window-height, ispell-overlay-window): Remove. | 205 | (ispell-adjusted-window-height, ispell-overlay-window): Remove. |
| 134 | (ispell-display-buffer): New function to reuse, create and fit | 206 | (ispell-display-buffer): New function to reuse, create and fit |
| 135 | window to ispell's buffers. (Bug#3413) | 207 | window to ispell's buffers. (Bug#3413) |
| 136 | 208 | ||
| 137 | 2014-12-18 Dmitry Gutov <dgutov@yandex.ru> | 209 | 2014-12-18 Dmitry Gutov <dgutov@yandex.ru> |
| 138 | 210 | ||
| @@ -256,6 +328,13 @@ | |||
| 256 | * vc/vc-bzr.el (vc-bzr-diff): | 328 | * vc/vc-bzr.el (vc-bzr-diff): |
| 257 | * obsolete/vc-arch.el (vc-arch-diff): Move ASYNC argument to the end. | 329 | * obsolete/vc-arch.el (vc-arch-diff): Move ASYNC argument to the end. |
| 258 | 330 | ||
| 331 | 2014-12-14 Paul Eggert <eggert@cs.ucla.edu> | ||
| 332 | |||
| 333 | * emacs-lisp/cconv.el (cconv--analyze-use): | ||
| 334 | Rename from cconv--analyse-use. | ||
| 335 | (cconv--analyze-function): Rename from cconv--analyse-function. | ||
| 336 | (cconv-analyze-form): Rename from cconv-analyse-form. | ||
| 337 | |||
| 259 | 2014-12-13 Andreas Schwab <schwab@linux-m68k.org> | 338 | 2014-12-13 Andreas Schwab <schwab@linux-m68k.org> |
| 260 | 339 | ||
| 261 | * net/shr.el (shr-next-link): Don't error out at eob. | 340 | * net/shr.el (shr-next-link): Don't error out at eob. |
| @@ -322,12 +401,12 @@ | |||
| 322 | 401 | ||
| 323 | 2014-12-12 Eric S. Raymond <esr@snark.thyrsus.com> | 402 | 2014-12-12 Eric S. Raymond <esr@snark.thyrsus.com> |
| 324 | 403 | ||
| 325 | * vc/vc-dav.el, vc/vc-git.el, vc/vc-hg.el, vc/vc-src.el, | 404 | * vc/vc-dav.el, vc/vc-git.el, vc/vc-hg.el, vc/vc-src.el: |
| 326 | vc/vc.el: latest-on-branch-p is no longer a public method. | 405 | * vc/vc.el: latest-on-branch-p is no longer a public method. |
| 327 | 406 | ||
| 328 | * vc/vc.el, vc/vc-hg.el, vc/vc-git.el, vc/vc-hooks.el, | 407 | * vc/vc.el, vc/vc-hg.el, vc/vc-git.el, vc/vc-hooks.el: |
| 329 | vc/vc-mtn.el, vc/vc-rcs.el, vc/vc-sccs.el, vc/vc-src.el: Remove `rollback' | 408 | * vc/vc-mtn.el, vc/vc-rcs.el, vc/vc-sccs.el, vc/vc-src.el: |
| 330 | method, to be replaced in the future by uncommit. | 409 | Remove `rollback' method, to be replaced in the future by uncommit. |
| 331 | 410 | ||
| 332 | 2014-12-11 Michael Albinus <michael.albinus@gmx.de> | 411 | 2014-12-11 Michael Albinus <michael.albinus@gmx.de> |
| 333 | 412 | ||
| @@ -345,10 +424,9 @@ | |||
| 345 | 424 | ||
| 346 | 2014-12-10 Eric S. Raymond <esr@snark.thyrsus.com> | 425 | 2014-12-10 Eric S. Raymond <esr@snark.thyrsus.com> |
| 347 | 426 | ||
| 348 | * vc/vc-dispatcher.el, vc/vc-hooks.el, vc/vc-rcs.el, | 427 | * vc/vc-dispatcher.el, vc/vc-hooks.el, vc/vc-rcs.el: |
| 349 | vc/vc-sccs.el, vc/vc.el: Righteous featurectomy of | 428 | * vc/vc-sccs.el, vc/vc.el: Righteous featurectomy of vc-keep-workfiles, |
| 350 | vc-keep-workfiles, it's a shoot-self-in-foot archaism. | 429 | it's a shoot-self-in-foot archaism. Workfiles are always kept. |
| 351 | Workfiles are always kept. | ||
| 352 | 430 | ||
| 353 | 2014-12-10 Rasmus Pank Roulund <emacs@pank.eu> | 431 | 2014-12-10 Rasmus Pank Roulund <emacs@pank.eu> |
| 354 | 432 | ||
| @@ -379,7 +457,7 @@ | |||
| 379 | 2014-12-09 Eric S. Raymond <esr@snark.thyrsus.com> | 457 | 2014-12-09 Eric S. Raymond <esr@snark.thyrsus.com> |
| 380 | 458 | ||
| 381 | * vc/vc-src.el (vc-src-do-comand): Prepend -- to file argument | 459 | * vc/vc-src.el (vc-src-do-comand): Prepend -- to file argument |
| 382 | list, avoids problems witth names containing hyphens. | 460 | list, avoids problems witt names containing hyphens. |
| 383 | 461 | ||
| 384 | 2014-12-09 Wilson Snyder <wsnyder@wsnyder.org> | 462 | 2014-12-09 Wilson Snyder <wsnyder@wsnyder.org> |
| 385 | 463 | ||
| @@ -499,7 +577,7 @@ | |||
| 499 | 577 | ||
| 500 | 2014-12-08 Eric S. Raymond <esr@snark.thyrsus.com> | 578 | 2014-12-08 Eric S. Raymond <esr@snark.thyrsus.com> |
| 501 | 579 | ||
| 502 | * vc/vc-arch.el: Moved to obsolete directory so a test framework | 580 | * vc/vc-arch.el: Move to obsolete directory so a test framework |
| 503 | won't trip over bit-rot in it. There has been no Arch snapshot | 581 | won't trip over bit-rot in it. There has been no Arch snapshot |
| 504 | for nine years. | 582 | for nine years. |
| 505 | 583 | ||
| @@ -706,13 +784,13 @@ | |||
| 706 | 784 | ||
| 707 | 2014-12-02 Eric S. Raymond <esr@snark.thyrsus.com> | 785 | 2014-12-02 Eric S. Raymond <esr@snark.thyrsus.com> |
| 708 | 786 | ||
| 709 | * subr.el (filter): New macro. Because it's just silly for a Lisp | 787 | * subr.el (filter): New macro. Because it's just silly for a Lisp |
| 710 | not to have this in 2014. And VC needs it. | 788 | not to have this in 2014. And VC needs it. |
| 711 | 789 | ||
| 712 | * vc.el, all backends: API simplification: Abolish dir-status. | 790 | * vc.el: All backends: API simplification: Abolish dir-status. |
| 713 | It's replaced by dir-status-files. | 791 | It's replaced by dir-status-files. |
| 714 | 792 | ||
| 715 | * vc.el, all backends: API simplification: Remove 4th | 793 | * vc.el: All backends: API simplification: Remove 4th |
| 716 | 'default-state' argument from vc-dir-status files and its backend | 794 | 'default-state' argument from vc-dir-status files and its backend |
| 717 | methods - no backend method ever set it. It was used only in the | 795 | methods - no backend method ever set it. It was used only in the |
| 718 | fallback method to to set a default of 'up-to-date, though a | 796 | fallback method to to set a default of 'up-to-date, though a |
| @@ -723,17 +801,17 @@ | |||
| 723 | * vc.el (vc-expand-dirs): Now takes a second BACKEND argument, | 801 | * vc.el (vc-expand-dirs): Now takes a second BACKEND argument, |
| 724 | improving behavior on directories using multiple file-oriented VCSes. | 802 | improving behavior on directories using multiple file-oriented VCSes. |
| 725 | 803 | ||
| 726 | * vc/vc.el and all backends: API simplification; clear-headers | 804 | * vc/vc.el: All backends: API simplification; clear-headers |
| 727 | is no longer a public method. It is now local to the one place | 805 | is no longer a public method. It is now local to the one place |
| 728 | it's used, in the RCS steal-lock method. | 806 | it's used, in the RCS steal-lock method. |
| 729 | 807 | ||
| 730 | 2014-12-01 Eric S. Raymond <esr@snark.thyrsus.com> | 808 | 2014-12-01 Eric S. Raymond <esr@snark.thyrsus.com> |
| 731 | 809 | ||
| 732 | * vc/vc.el and all backends: API simplification; could-register | 810 | * vc/vc.el: In all backends: API simplification; could-register |
| 733 | is no longer a public method. (vc-cvs.el still has a private | 811 | is no longer a public method. (vc-cvs.el still has a private |
| 734 | implementation.) | 812 | implementation.) |
| 735 | 813 | ||
| 736 | * vc/vc.el and all backends: API cleanup; the backend diff method | 814 | * vc/vc.el: In all backends: API cleanup; the backend diff method |
| 737 | takes an explicit async flag. This eliminates a particularly ugly | 815 | takes an explicit async flag. This eliminates a particularly ugly |
| 738 | global. | 816 | global. |
| 739 | 817 | ||
| @@ -848,11 +926,11 @@ | |||
| 848 | the back ends; this fixes a layering violation that caused bad | 926 | the back ends; this fixes a layering violation that caused bad |
| 849 | behavior with SVN. | 927 | behavior with SVN. |
| 850 | 928 | ||
| 851 | * vc/vc.el, vc-hooks.el, and all backends: API simplification; | 929 | * vc/vc.el, vc-hooks.el: All backends: API simplification; |
| 852 | vc-stay-local-p and repository-hostname are no longer public | 930 | vc-stay-local-p and repository-hostname are no longer public |
| 853 | methods. Only the CVS and SVN backends used these, and the SVN | 931 | methods. Only the CVS and SVN backends used these, and the SVN |
| 854 | support was conditioned out because svn status -v is too slow. | 932 | support was conditioned out because svn status -v is too slow. |
| 855 | The CVS back end retains this machibery and the vc-stay-local | 933 | The CVS back end retains this machinery and the vc-stay-local |
| 856 | configuration variable now only affects it. | 934 | configuration variable now only affects it. |
| 857 | 935 | ||
| 858 | 2014-12-01 Stefan Monnier <monnier@iro.umontreal.ca> | 936 | 2014-12-01 Stefan Monnier <monnier@iro.umontreal.ca> |
| @@ -861,26 +939,26 @@ | |||
| 861 | 939 | ||
| 862 | 2014-12-01 Eric S. Raymond <esr@snark.thyrsus.com> | 940 | 2014-12-01 Eric S. Raymond <esr@snark.thyrsus.com> |
| 863 | 941 | ||
| 864 | * vc/vc.el, vc-hooks.el, and all backends: API simplification; | 942 | * vc/vc.el, vc-hooks.el: All backends: API simplification; |
| 865 | vc-state-heuristic is no longer a public method, having been | 943 | vc-state-heuristic is no longer a public method, having been |
| 866 | removed where it is redundant, unnecessary, or known buggy. | 944 | removed where it is redundant, unnecessary, or known buggy. |
| 867 | This eliminated all backends except CVS. Eliminates bug#7850. | 945 | This eliminated all backends except CVS. Eliminates bug#7850. |
| 868 | 946 | ||
| 869 | * vc/vc-cvs.el, vc/vc-hooks.el, vc/vc-rcs.el, vc/vc-sccs.el: | 947 | * vc/vc-cvs.el, vc/vc-hooks.el, vc/vc-rcs.el, vc/vc-sccs.el: |
| 870 | Eliminate vc-mistrust-permissions. It was only relevant to the | 948 | Eliminate vc-mistrust-permissions. It was only relevant to the |
| 871 | RCS and SCCS back ends and defaulted to t. Code now always | 949 | RCS and SCCS back ends and defaulted to t. Code now always |
| 872 | mistrusts permissions - by actual measurement the effect on | 950 | mistrusts permissions - by actual measurement the effect on |
| 873 | performance is negligible. As a side effect bug#11490 is now | 951 | performance is negligible. As a side effect bug#11490 is now |
| 874 | irrelevant. | 952 | irrelevant. |
| 875 | 953 | ||
| 876 | * vc/vc.el, vc-hooks.el, and all backends: API simplification; | 954 | * vc/vc.el, vc-hooks.el: All backends: API simplification; |
| 877 | vc-workfile-unchanged-p is no longer a public method (but the RCS | 955 | vc-workfile-unchanged-p is no longer a public method (but the RCS |
| 878 | and SCCS back ends retain it as a private method used in state | 956 | and SCCS back ends retain it as a private method used in state |
| 879 | computation). This method was redundant with vc-state and usually | 957 | computation). This method was redundant with vc-state and usually |
| 880 | implemented as a trivial call to same. Fixes the failure mode | 958 | implemented as a trivial call to same. Fixes the failure mode |
| 881 | described in bug#694. | 959 | described in bug#694. |
| 882 | 960 | ||
| 883 | * vc/vc.el and all backends: API simplification; init-revision is | 961 | * vc/vc.el: All backends: API simplification; init-revision is |
| 884 | gone, and vc-registered functions no longer take an | 962 | gone, and vc-registered functions no longer take an |
| 885 | initial-revision argument. | 963 | initial-revision argument. |
| 886 | 964 | ||
| @@ -1040,7 +1118,7 @@ | |||
| 1040 | string. | 1118 | string. |
| 1041 | (newsticker--treeview-load): Change wording of the questions the | 1119 | (newsticker--treeview-load): Change wording of the questions the |
| 1042 | user is asked when `newsticker-groups-filename' is found to be | 1120 | user is asked when `newsticker-groups-filename' is found to be |
| 1043 | used and we offer to read and remove the groups file. (bug#19165) | 1121 | used and we offer to read and remove the groups file. (Bug#19165) |
| 1044 | 1122 | ||
| 1045 | 2014-11-27 Lars Magne Ingebrigtsen <larsi@gnus.org> | 1123 | 2014-11-27 Lars Magne Ingebrigtsen <larsi@gnus.org> |
| 1046 | 1124 | ||
| @@ -1245,7 +1323,7 @@ | |||
| 1245 | 2014-11-22 Ulf Jasper <ulf.jasper@web.de> | 1323 | 2014-11-22 Ulf Jasper <ulf.jasper@web.de> |
| 1246 | 1324 | ||
| 1247 | * net/newst-backend.el (newsticker--sentinel-work): | 1325 | * net/newst-backend.el (newsticker--sentinel-work): |
| 1248 | Tell `libxml-parse-xml-region' to discard comments. Fixes bug#18787. | 1326 | Tell `libxml-parse-xml-region' to discard comments. Fixes bug#18787. |
| 1249 | 1327 | ||
| 1250 | 2014-11-22 Michael Albinus <michael.albinus@gmx.de> | 1328 | 2014-11-22 Michael Albinus <michael.albinus@gmx.de> |
| 1251 | 1329 | ||
| @@ -1262,7 +1340,7 @@ | |||
| 1262 | live in vc.el and certainly not in vc-hooks.el. | 1340 | live in vc.el and certainly not in vc-hooks.el. |
| 1263 | 1341 | ||
| 1264 | * vc/vc-hooks.el, vc-rcs.el, vc-sccs.el: vc-name -> vc-master-name. | 1342 | * vc/vc-hooks.el, vc-rcs.el, vc-sccs.el: vc-name -> vc-master-name. |
| 1265 | This is preaparatory to isolating all the 'master' functions | 1343 | This is preparatory to isolating all the 'master' functions |
| 1266 | used only by the file-oriented back ends. With this done first, | 1344 | used only by the file-oriented back ends. With this done first, |
| 1267 | the substantive diffs will be easier to read. | 1345 | the substantive diffs will be easier to read. |
| 1268 | 1346 | ||
| @@ -1611,7 +1689,7 @@ | |||
| 1611 | 2014-11-16 Oscar Fuentes <ofv@wanadoo.es> | 1689 | 2014-11-16 Oscar Fuentes <ofv@wanadoo.es> |
| 1612 | 1690 | ||
| 1613 | Add faces for the VC modeline state indicator. | 1691 | Add faces for the VC modeline state indicator. |
| 1614 | * lisp/vc/vc-hooks.el: | 1692 | * vc/vc-hooks.el: |
| 1615 | (vc-state-faces, vc-state-base-face) | 1693 | (vc-state-faces, vc-state-base-face) |
| 1616 | (vc-up-to-date-state, vc-needs-update-state) | 1694 | (vc-up-to-date-state, vc-needs-update-state) |
| 1617 | (vc-locked-state, vc-locally-added-state) | 1695 | (vc-locked-state, vc-locally-added-state) |
| @@ -2305,9 +2383,9 @@ | |||
| 2305 | * ses.el (macroexp): Add require for this package, so that function | 2383 | * ses.el (macroexp): Add require for this package, so that function |
| 2306 | `ses--cell gets macroexp-quote. | 2384 | `ses--cell gets macroexp-quote. |
| 2307 | (ses--cell): Makes formula a macroexp-quote of value when formula | 2385 | (ses--cell): Makes formula a macroexp-quote of value when formula |
| 2308 | is nil. The rationale of this changr is to allow in the future | 2386 | is nil. The rationale of this changr is to allow in the future |
| 2309 | shorter SES files, e.g. we could have only `(ses-cell A1 1.0)' | 2387 | shorter SES files, e.g. we could have only `(ses-cell A1 1.0)' |
| 2310 | instead of `(ses-cell A1 1.0 1.0 nil REFLIST)'. In such a case | 2388 | instead of `(ses-cell A1 1.0 1.0 nil REFLIST)'. In such a case |
| 2311 | reference list REFLIST would be re-computed after load --- thus | 2389 | reference list REFLIST would be re-computed after load --- thus |
| 2312 | trading off load time against file size. | 2390 | trading off load time against file size. |
| 2313 | 2391 | ||
| @@ -3312,7 +3390,7 @@ | |||
| 3312 | HTML code has become part of the xml parse tree. | 3390 | HTML code has become part of the xml parse tree. |
| 3313 | (newsticker--parse-rss-1.0, newsticker--parse-rss-2.0): Take care | 3391 | (newsticker--parse-rss-1.0, newsticker--parse-rss-2.0): Take care |
| 3314 | of possibly missing namespace prefixes. | 3392 | of possibly missing namespace prefixes. |
| 3315 | (newsticker--parse-generic-items): Code formatting. Typo. | 3393 | (newsticker--parse-generic-items): Code formatting. Typo. |
| 3316 | (newsticker--images-dir): Add trailing slash. | 3394 | (newsticker--images-dir): Add trailing slash. |
| 3317 | (newsticker--image-get): Fix error message. | 3395 | (newsticker--image-get): Fix error message. |
| 3318 | 3396 | ||
| @@ -3477,7 +3555,7 @@ | |||
| 3477 | * vc/add-log.el (change-log-next-buffer): Don't create an empty | 3555 | * vc/add-log.el (change-log-next-buffer): Don't create an empty |
| 3478 | buffer "ChangeLog" when the current buffer doesn't match ChangeLog.[0-9]. | 3556 | buffer "ChangeLog" when the current buffer doesn't match ChangeLog.[0-9]. |
| 3479 | Return the current buffer if no files match the default pattern | 3557 | Return the current buffer if no files match the default pattern |
| 3480 | ChangeLog.[0-9]. Signal "end of multi" when file is nil. (Bug#18547) | 3558 | ChangeLog.[0-9]. Signal "end of multi" when file is nil. (Bug#18547) |
| 3481 | 3559 | ||
| 3482 | 2014-09-25 Stefan Monnier <monnier@iro.umontreal.ca> | 3560 | 2014-09-25 Stefan Monnier <monnier@iro.umontreal.ca> |
| 3483 | 3561 | ||
| @@ -3615,7 +3693,7 @@ | |||
| 3615 | * textmodes/reftex-sel.el (reftex-select-label-mode) | 3693 | * textmodes/reftex-sel.el (reftex-select-label-mode) |
| 3616 | (reftex-select-bib-mode, reftex-insert-docstruct): Derive modes | 3694 | (reftex-select-bib-mode, reftex-insert-docstruct): Derive modes |
| 3617 | from special-mode (instead of fundamental-mode) and propertize | 3695 | from special-mode (instead of fundamental-mode) and propertize |
| 3618 | with font-lock-face instead of just face. (Bug#18496) | 3696 | with font-lock-face instead of just face. (Bug#18496) |
| 3619 | 3697 | ||
| 3620 | * textmodes/reftex-toc.el (reftex-toc-mode, reftex-toc): Ditto. | 3698 | * textmodes/reftex-toc.el (reftex-toc-mode, reftex-toc): Ditto. |
| 3621 | 3699 | ||
| @@ -4009,7 +4087,7 @@ | |||
| 4009 | of local overrides. | 4087 | of local overrides. |
| 4010 | (ibuffer): Don't store previous windows configuration. | 4088 | (ibuffer): Don't store previous windows configuration. |
| 4011 | Let `quit-window' handle restoring. | 4089 | Let `quit-window' handle restoring. |
| 4012 | (ibuffer-quit): Remove function. Use `quit-window' instead. | 4090 | (ibuffer-quit): Remove function. Use `quit-window' instead. |
| 4013 | (ibuffer-restore-window-config-on-quit): Remove variable. | 4091 | (ibuffer-restore-window-config-on-quit): Remove variable. |
| 4014 | (ibuffer-prev-window-config): Remove variable. | 4092 | (ibuffer-prev-window-config): Remove variable. |
| 4015 | 4093 | ||
| @@ -4263,10 +4341,10 @@ | |||
| 4263 | 4341 | ||
| 4264 | 2014-08-11 Ulf Jasper <ulf.jasper@web.de> | 4342 | 2014-08-11 Ulf Jasper <ulf.jasper@web.de> |
| 4265 | 4343 | ||
| 4266 | Newsticker: introduce `newsticker-treeview-date-format'. (Bug#17227) | 4344 | Newsticker: introduce `newsticker-treeview-date-format'. (Bug#17227) |
| 4267 | |||
| 4268 | * net/newst-treeview.el (newsticker-treeview-date-format): New. | 4345 | * net/newst-treeview.el (newsticker-treeview-date-format): New. |
| 4269 | (newsticker--treeview-list-add-item): Use `newsticker-treeview-date-format'. | 4346 | (newsticker--treeview-list-add-item): |
| 4347 | Use `newsticker-treeview-date-format'. | ||
| 4270 | 4348 | ||
| 4271 | 2014-08-11 Glenn Morris <rgm@gnu.org> | 4349 | 2014-08-11 Glenn Morris <rgm@gnu.org> |
| 4272 | 4350 | ||
| @@ -4475,7 +4553,7 @@ | |||
| 4475 | 2014-07-30 Christophe Deleuze <christophe.deleuze@free.fr> (tiny change) | 4553 | 2014-07-30 Christophe Deleuze <christophe.deleuze@free.fr> (tiny change) |
| 4476 | 4554 | ||
| 4477 | * calendar/icalendar.el (icalendar--decode-isodatetime): | 4555 | * calendar/icalendar.el (icalendar--decode-isodatetime): |
| 4478 | Use actual current-time-zone when converting to local time. (Bug#15408) | 4556 | Use actual current-time-zone when converting to local time. (Bug#15408) |
| 4479 | 4557 | ||
| 4480 | 2014-07-29 Martin Rudalics <rudalics@gmx.at> | 4558 | 2014-07-29 Martin Rudalics <rudalics@gmx.at> |
| 4481 | 4559 | ||
| @@ -4864,7 +4942,7 @@ | |||
| 4864 | 4942 | ||
| 4865 | 2014-07-12 Fabián Ezequiel Gallina <fgallina@gnu.org> | 4943 | 2014-07-12 Fabián Ezequiel Gallina <fgallina@gnu.org> |
| 4866 | 4944 | ||
| 4867 | Fix dedenters and electric colon handling. (Bug#15163) | 4945 | Fix dedenters and electric colon handling. (Bug#15163) |
| 4868 | * progmodes/python.el | 4946 | * progmodes/python.el |
| 4869 | (python-rx-constituents): Add dedenter and block-ender. | 4947 | (python-rx-constituents): Add dedenter and block-ender. |
| 4870 | (python-indent-dedenters, python-indent-block-enders): Delete. | 4948 | (python-indent-dedenters, python-indent-block-enders): Delete. |
| @@ -5112,7 +5190,7 @@ | |||
| 5112 | 5190 | ||
| 5113 | * progmodes/python.el (python-indent-post-self-insert-function): | 5191 | * progmodes/python.el (python-indent-post-self-insert-function): |
| 5114 | Enhancements to electric indentation behavior inside | 5192 | Enhancements to electric indentation behavior inside |
| 5115 | parens. (Bug#17658) | 5193 | parens. (Bug#17658) |
| 5116 | 5194 | ||
| 5117 | 2014-07-03 Stefan Monnier <monnier@iro.umontreal.ca> | 5195 | 2014-07-03 Stefan Monnier <monnier@iro.umontreal.ca> |
| 5118 | 5196 | ||
| @@ -5903,7 +5981,7 @@ | |||
| 5903 | * help.el (help--key-binding-keymap): New function. | 5981 | * help.el (help--key-binding-keymap): New function. |
| 5904 | (help--binding-locus): New function. | 5982 | (help--binding-locus): New function. |
| 5905 | (describe-key): Mention the keymap in which the binding was | 5983 | (describe-key): Mention the keymap in which the binding was |
| 5906 | found. (bug#13948) | 5984 | found. (bug#13948) |
| 5907 | 5985 | ||
| 5908 | 2014-06-12 Stefan Monnier <monnier@iro.umontreal.ca> | 5986 | 2014-06-12 Stefan Monnier <monnier@iro.umontreal.ca> |
| 5909 | 5987 | ||
| @@ -6584,7 +6662,7 @@ | |||
| 6584 | 2014-05-24 Daniel Colascione <dancol@dancol.org> | 6662 | 2014-05-24 Daniel Colascione <dancol@dancol.org> |
| 6585 | 6663 | ||
| 6586 | * progmodes/subword.el (subword-find-word-boundary): Move point to | 6664 | * progmodes/subword.el (subword-find-word-boundary): Move point to |
| 6587 | correct spot before search. (Bug#17580) | 6665 | correct spot before search. (Bug#17580) |
| 6588 | 6666 | ||
| 6589 | * emacs-lisp/nadvice.el (defun): Write in eval-and-compile to avoid | 6667 | * emacs-lisp/nadvice.el (defun): Write in eval-and-compile to avoid |
| 6590 | breaking the build. | 6668 | breaking the build. |
| @@ -6613,7 +6691,7 @@ | |||
| 6613 | mksh. Improve custom spec; allow regular expressions. | 6691 | mksh. Improve custom spec; allow regular expressions. |
| 6614 | (sh-shell): Delegate name splitting to `sh-canonicalize-shell'. | 6692 | (sh-shell): Delegate name splitting to `sh-canonicalize-shell'. |
| 6615 | (sh-after-hack-local-variables): New function. | 6693 | (sh-after-hack-local-variables): New function. |
| 6616 | (sh-mode): Use it; respect file-local `sh-shell' variable. (bug#17333) | 6694 | (sh-mode): Use it; respect file-local `sh-shell' variable. (Bug#17333) |
| 6617 | (sh-set-shell): Use `sh-canonicalize-shell' instead of open-coding | 6695 | (sh-set-shell): Use `sh-canonicalize-shell' instead of open-coding |
| 6618 | the normalization. | 6696 | the normalization. |
| 6619 | (sh-canonicalize-shell): Rewrite to support regexes. | 6697 | (sh-canonicalize-shell): Rewrite to support regexes. |
| @@ -7601,7 +7679,7 @@ | |||
| 7601 | 2014-04-07 João Távora <joaotavora@gmail.com> | 7679 | 2014-04-07 João Távora <joaotavora@gmail.com> |
| 7602 | 7680 | ||
| 7603 | Fix `electric-pair-delete-adjacent-pairs' in modes binding | 7681 | Fix `electric-pair-delete-adjacent-pairs' in modes binding |
| 7604 | backspace. (bug#16981) | 7682 | backspace. (Bug#16981) |
| 7605 | * elec-pair.el (electric-pair-backward-delete-char): Delete. | 7683 | * elec-pair.el (electric-pair-backward-delete-char): Delete. |
| 7606 | (electric-pair-backward-delete-char-untabify): Delete. | 7684 | (electric-pair-backward-delete-char-untabify): Delete. |
| 7607 | (electric-pair-mode-map): Bind backspace to a menu item filtering | 7685 | (electric-pair-mode-map): Bind backspace to a menu item filtering |
diff --git a/lisp/cedet/ChangeLog b/lisp/cedet/ChangeLog index a43e94c5686..0c9158dffe2 100644 --- a/lisp/cedet/ChangeLog +++ b/lisp/cedet/ChangeLog | |||
| @@ -17,6 +17,11 @@ | |||
| 17 | (semantic-analyze-nolongprefix-completion-at-point-function): | 17 | (semantic-analyze-nolongprefix-completion-at-point-function): |
| 18 | Do nothing if the current buffer is not using Semantic (bug#19077). | 18 | Do nothing if the current buffer is not using Semantic (bug#19077). |
| 19 | 19 | ||
| 20 | 2014-12-14 Paul Eggert <eggert@cs.ucla.edu> | ||
| 21 | |||
| 22 | * semantic/lex-spp.el (semantic-lex-spp-analyzer-do-replace): | ||
| 23 | Rename from semantic-lex-spp-anlyzer-do-replace. | ||
| 24 | |||
| 20 | 2014-12-08 Matt Curtis <matt.r.curtis@gmail.com> (tiny change) | 25 | 2014-12-08 Matt Curtis <matt.r.curtis@gmail.com> (tiny change) |
| 21 | 26 | ||
| 22 | * pulse.el (pulse-momentary-highlight-one-line): Respect the POINT | 27 | * pulse.el (pulse-momentary-highlight-one-line): Respect the POINT |
| @@ -215,7 +220,7 @@ | |||
| 215 | (ede-project-autoload): Remove dirmatch entry - it is no longer | 220 | (ede-project-autoload): Remove dirmatch entry - it is no longer |
| 216 | needed. | 221 | needed. |
| 217 | 222 | ||
| 218 | * lisp/cedet/ede/proj.el (project-rescan): Replace direct | 223 | * ede/proj.el (project-rescan): Replace direct |
| 219 | manipulation of `ede-projects' with equivalent and better | 224 | manipulation of `ede-projects' with equivalent and better |
| 220 | functions. | 225 | functions. |
| 221 | (ede-proj-load): Replace call to test if dir has project to | 226 | (ede-proj-load): Replace call to test if dir has project to |
| @@ -267,11 +272,10 @@ | |||
| 267 | 272 | ||
| 268 | 2014-11-09 David Engster <dengste@eml.cc> | 273 | 2014-11-09 David Engster <dengste@eml.cc> |
| 269 | 274 | ||
| 270 | * lisp/cedet/ede/proj-elisp.el | 275 | * ede/proj-elisp.el (ede-proj-target-elisp::ede-proj-tweak-autoconf): |
| 271 | (ede-proj-target-elisp::ede-proj-tweak-autoconf): Kill buffer | 276 | Kill buffer after saving modified elisp-comp script, so as to avoid |
| 272 | after saving modified elisp-comp script, as to avoid "file has | 277 | "file has changed on disk; really edit the buffer" questions when |
| 273 | changed on disk; really edit the buffer" questions when script | 278 | script gets rewritten. |
| 274 | gets rewritten. | ||
| 275 | 279 | ||
| 276 | 2014-10-29 Paul Eggert <eggert@cs.ucla.edu> | 280 | 2014-10-29 Paul Eggert <eggert@cs.ucla.edu> |
| 277 | 281 | ||
diff --git a/lisp/cus-start.el b/lisp/cus-start.el index 4049974841e..5394a1c3744 100644 --- a/lisp/cus-start.el +++ b/lisp/cus-start.el | |||
| @@ -520,7 +520,12 @@ since it could result in memory overflow and make Emacs crash." | |||
| 520 | (const :tag "Hourglass" :value hourglass))) | 520 | (const :tag "Hourglass" :value hourglass))) |
| 521 | (display-hourglass cursor boolean) | 521 | (display-hourglass cursor boolean) |
| 522 | (hourglass-delay cursor number) | 522 | (hourglass-delay cursor number) |
| 523 | 523 | (resize-mini-windows | |
| 524 | windows (choice | ||
| 525 | (const :tag "Off (nil)" :value nil) | ||
| 526 | (const :tag "Fit (t)" :value t) | ||
| 527 | (const :tag "Grow only" :value grow-only)) | ||
| 528 | "25.1") | ||
| 524 | ;; xfaces.c | 529 | ;; xfaces.c |
| 525 | (scalable-fonts-allowed display boolean "22.1") | 530 | (scalable-fonts-allowed display boolean "22.1") |
| 526 | ;; xfns.c | 531 | ;; xfns.c |
diff --git a/lisp/dired-aux.el b/lisp/dired-aux.el index bb93cce6500..acc7e767d69 100644 --- a/lisp/dired-aux.el +++ b/lisp/dired-aux.el | |||
| @@ -2062,7 +2062,10 @@ See Info node `(emacs)Subdir switches' for more details." | |||
| 2062 | ;; inserted *after* opoint. | 2062 | ;; inserted *after* opoint. |
| 2063 | (setq dirname (file-name-as-directory dirname)) | 2063 | (setq dirname (file-name-as-directory dirname)) |
| 2064 | (or (and (not switches) | 2064 | (or (and (not switches) |
| 2065 | (dired-goto-subdir dirname)) | 2065 | (when (dired-goto-subdir dirname) |
| 2066 | (unless (dired-subdir-hidden-p dirname) | ||
| 2067 | (dired-initial-position dirname)) | ||
| 2068 | t)) | ||
| 2066 | (dired-insert-subdir dirname switches no-error-if-not-dir-p)) | 2069 | (dired-insert-subdir dirname switches no-error-if-not-dir-p)) |
| 2067 | ;; Push mark so that it's easy to find back. Do this after the | 2070 | ;; Push mark so that it's easy to find back. Do this after the |
| 2068 | ;; insert message so that the user sees the `Mark set' message. | 2071 | ;; insert message so that the user sees the `Mark set' message. |
diff --git a/lisp/eshell/esh-ext.el b/lisp/eshell/esh-ext.el index 2654bf21e6a..d7fea47601c 100644 --- a/lisp/eshell/esh-ext.el +++ b/lisp/eshell/esh-ext.el | |||
| @@ -296,6 +296,11 @@ line of the form #!<interp>." | |||
| 296 | (let ((fullname (if (file-name-directory file) file | 296 | (let ((fullname (if (file-name-directory file) file |
| 297 | (eshell-search-path file))) | 297 | (eshell-search-path file))) |
| 298 | (suffixes eshell-binary-suffixes)) | 298 | (suffixes eshell-binary-suffixes)) |
| 299 | (if (and fullname | ||
| 300 | (not (file-remote-p fullname)) | ||
| 301 | (file-remote-p default-directory)) | ||
| 302 | (setq fullname (expand-file-name | ||
| 303 | (concat "./" fullname) default-directory))) | ||
| 299 | (if (and fullname (not (or eshell-force-execution | 304 | (if (and fullname (not (or eshell-force-execution |
| 300 | (file-executable-p fullname)))) | 305 | (file-executable-p fullname)))) |
| 301 | (while suffixes | 306 | (while suffixes |
diff --git a/lisp/ldefs-boot.el b/lisp/ldefs-boot.el index 41579222295..92933b6a2e1 100644 --- a/lisp/ldefs-boot.el +++ b/lisp/ldefs-boot.el | |||
| @@ -3,7 +3,7 @@ | |||
| 3 | ;;; Code: | 3 | ;;; Code: |
| 4 | 4 | ||
| 5 | 5 | ||
| 6 | ;;;### (autoloads nil "5x5" "play/5x5.el" (21607 54478 800121 42000)) | 6 | ;;;### (autoloads nil "5x5" "play/5x5.el" (21604 48550 301934 225000)) |
| 7 | ;;; Generated autoloads from play/5x5.el | 7 | ;;; Generated autoloads from play/5x5.el |
| 8 | 8 | ||
| 9 | (autoload '5x5 "5x5" "\ | 9 | (autoload '5x5 "5x5" "\ |
| @@ -65,8 +65,8 @@ should return a grid vector array that is the new solution. | |||
| 65 | 65 | ||
| 66 | ;;;*** | 66 | ;;;*** |
| 67 | 67 | ||
| 68 | ;;;### (autoloads nil "ada-mode" "progmodes/ada-mode.el" (21607 54478 | 68 | ;;;### (autoloads nil "ada-mode" "progmodes/ada-mode.el" (21604 48550 |
| 69 | ;;;;;; 800121 42000)) | 69 | ;;;;;; 313934 225000)) |
| 70 | ;;; Generated autoloads from progmodes/ada-mode.el | 70 | ;;; Generated autoloads from progmodes/ada-mode.el |
| 71 | 71 | ||
| 72 | (autoload 'ada-add-extensions "ada-mode" "\ | 72 | (autoload 'ada-add-extensions "ada-mode" "\ |
| @@ -85,8 +85,8 @@ Ada mode is the major mode for editing Ada code. | |||
| 85 | 85 | ||
| 86 | ;;;*** | 86 | ;;;*** |
| 87 | 87 | ||
| 88 | ;;;### (autoloads nil "ada-stmt" "progmodes/ada-stmt.el" (21607 54478 | 88 | ;;;### (autoloads nil "ada-stmt" "progmodes/ada-stmt.el" (21604 48550 |
| 89 | ;;;;;; 800121 42000)) | 89 | ;;;;;; 313934 225000)) |
| 90 | ;;; Generated autoloads from progmodes/ada-stmt.el | 90 | ;;; Generated autoloads from progmodes/ada-stmt.el |
| 91 | 91 | ||
| 92 | (autoload 'ada-header "ada-stmt" "\ | 92 | (autoload 'ada-header "ada-stmt" "\ |
| @@ -96,8 +96,8 @@ Insert a descriptive header at the top of the file. | |||
| 96 | 96 | ||
| 97 | ;;;*** | 97 | ;;;*** |
| 98 | 98 | ||
| 99 | ;;;### (autoloads nil "ada-xref" "progmodes/ada-xref.el" (21607 54478 | 99 | ;;;### (autoloads nil "ada-xref" "progmodes/ada-xref.el" (21604 48550 |
| 100 | ;;;;;; 800121 42000)) | 100 | ;;;;;; 313934 225000)) |
| 101 | ;;; Generated autoloads from progmodes/ada-xref.el | 101 | ;;; Generated autoloads from progmodes/ada-xref.el |
| 102 | 102 | ||
| 103 | (autoload 'ada-find-file "ada-xref" "\ | 103 | (autoload 'ada-find-file "ada-xref" "\ |
| @@ -108,8 +108,8 @@ Completion is available. | |||
| 108 | 108 | ||
| 109 | ;;;*** | 109 | ;;;*** |
| 110 | 110 | ||
| 111 | ;;;### (autoloads nil "add-log" "vc/add-log.el" (21607 54478 800121 | 111 | ;;;### (autoloads nil "add-log" "vc/add-log.el" (21604 48550 421934 |
| 112 | ;;;;;; 42000)) | 112 | ;;;;;; 229000)) |
| 113 | ;;; Generated autoloads from vc/add-log.el | 113 | ;;; Generated autoloads from vc/add-log.el |
| 114 | 114 | ||
| 115 | (put 'change-log-default-name 'safe-local-variable 'string-or-null-p) | 115 | (put 'change-log-default-name 'safe-local-variable 'string-or-null-p) |
| @@ -238,8 +238,8 @@ old-style time formats for entries are supported. | |||
| 238 | 238 | ||
| 239 | ;;;*** | 239 | ;;;*** |
| 240 | 240 | ||
| 241 | ;;;### (autoloads nil "advice" "emacs-lisp/advice.el" (21607 54477 | 241 | ;;;### (autoloads nil "advice" "emacs-lisp/advice.el" (21604 48550 |
| 242 | ;;;;;; 800124 118000)) | 242 | ;;;;;; 1934 214000)) |
| 243 | ;;; Generated autoloads from emacs-lisp/advice.el | 243 | ;;; Generated autoloads from emacs-lisp/advice.el |
| 244 | 244 | ||
| 245 | (defvar ad-redefinition-action 'warn "\ | 245 | (defvar ad-redefinition-action 'warn "\ |
| @@ -374,7 +374,7 @@ usage: (defadvice FUNCTION (CLASS NAME [POSITION] [ARGLIST] FLAG...) | |||
| 374 | 374 | ||
| 375 | ;;;*** | 375 | ;;;*** |
| 376 | 376 | ||
| 377 | ;;;### (autoloads nil "align" "align.el" (21607 54477 800124 118000)) | 377 | ;;;### (autoloads nil "align" "align.el" (21604 48549 921934 211000)) |
| 378 | ;;; Generated autoloads from align.el | 378 | ;;; Generated autoloads from align.el |
| 379 | 379 | ||
| 380 | (autoload 'align "align" "\ | 380 | (autoload 'align "align" "\ |
| @@ -477,7 +477,7 @@ A replacement function for `newline-and-indent', aligning as it goes. | |||
| 477 | 477 | ||
| 478 | ;;;*** | 478 | ;;;*** |
| 479 | 479 | ||
| 480 | ;;;### (autoloads nil "allout" "allout.el" (21607 54477 800124 118000)) | 480 | ;;;### (autoloads nil "allout" "allout.el" (21604 48549 925934 211000)) |
| 481 | ;;; Generated autoloads from allout.el | 481 | ;;; Generated autoloads from allout.el |
| 482 | (push (purecopy '(allout 2 3)) package--builtin-versions) | 482 | (push (purecopy '(allout 2 3)) package--builtin-versions) |
| 483 | 483 | ||
| @@ -837,8 +837,8 @@ for details on preparing Emacs for automatic allout activation. | |||
| 837 | 837 | ||
| 838 | ;;;*** | 838 | ;;;*** |
| 839 | 839 | ||
| 840 | ;;;### (autoloads nil "allout-widgets" "allout-widgets.el" (21609 | 840 | ;;;### (autoloads nil "allout-widgets" "allout-widgets.el" (21631 |
| 841 | ;;;;;; 55608 852266 580000)) | 841 | ;;;;;; 35966 795121 865000)) |
| 842 | ;;; Generated autoloads from allout-widgets.el | 842 | ;;; Generated autoloads from allout-widgets.el |
| 843 | (push (purecopy '(allout-widgets 1 0)) package--builtin-versions) | 843 | (push (purecopy '(allout-widgets 1 0)) package--builtin-versions) |
| 844 | 844 | ||
| @@ -896,8 +896,8 @@ outline hot-spot navigation (see `allout-mode'). | |||
| 896 | 896 | ||
| 897 | ;;;*** | 897 | ;;;*** |
| 898 | 898 | ||
| 899 | ;;;### (autoloads nil "ange-ftp" "net/ange-ftp.el" (21607 54478 300138 | 899 | ;;;### (autoloads nil "ange-ftp" "net/ange-ftp.el" (21640 32530 974334 |
| 900 | ;;;;;; 641000)) | 900 | ;;;;;; 457000)) |
| 901 | ;;; Generated autoloads from net/ange-ftp.el | 901 | ;;; Generated autoloads from net/ange-ftp.el |
| 902 | 902 | ||
| 903 | (defalias 'ange-ftp-re-read-dir 'ange-ftp-reread-dir) | 903 | (defalias 'ange-ftp-re-read-dir 'ange-ftp-reread-dir) |
| @@ -918,8 +918,8 @@ directory, so that Emacs will know its current contents. | |||
| 918 | 918 | ||
| 919 | ;;;*** | 919 | ;;;*** |
| 920 | 920 | ||
| 921 | ;;;### (autoloads nil "animate" "play/animate.el" (21607 54478 800121 | 921 | ;;;### (autoloads nil "animate" "play/animate.el" (21604 48550 301934 |
| 922 | ;;;;;; 42000)) | 922 | ;;;;;; 225000)) |
| 923 | ;;; Generated autoloads from play/animate.el | 923 | ;;; Generated autoloads from play/animate.el |
| 924 | 924 | ||
| 925 | (autoload 'animate-string "animate" "\ | 925 | (autoload 'animate-string "animate" "\ |
| @@ -951,8 +951,8 @@ the buffer *Birthday-Present-for-Name*. | |||
| 951 | 951 | ||
| 952 | ;;;*** | 952 | ;;;*** |
| 953 | 953 | ||
| 954 | ;;;### (autoloads nil "ansi-color" "ansi-color.el" (21607 54477 800124 | 954 | ;;;### (autoloads nil "ansi-color" "ansi-color.el" (21604 48549 925934 |
| 955 | ;;;;;; 118000)) | 955 | ;;;;;; 211000)) |
| 956 | ;;; Generated autoloads from ansi-color.el | 956 | ;;; Generated autoloads from ansi-color.el |
| 957 | (push (purecopy '(ansi-color 3 4 2)) package--builtin-versions) | 957 | (push (purecopy '(ansi-color 3 4 2)) package--builtin-versions) |
| 958 | 958 | ||
| @@ -978,8 +978,8 @@ This is a good function to put in `comint-output-filter-functions'. | |||
| 978 | 978 | ||
| 979 | ;;;*** | 979 | ;;;*** |
| 980 | 980 | ||
| 981 | ;;;### (autoloads nil "antlr-mode" "progmodes/antlr-mode.el" (21607 | 981 | ;;;### (autoloads nil "antlr-mode" "progmodes/antlr-mode.el" (21604 |
| 982 | ;;;;;; 54478 800121 42000)) | 982 | ;;;;;; 48550 313934 225000)) |
| 983 | ;;; Generated autoloads from progmodes/antlr-mode.el | 983 | ;;; Generated autoloads from progmodes/antlr-mode.el |
| 984 | (push (purecopy '(antlr-mode 2 2 3)) package--builtin-versions) | 984 | (push (purecopy '(antlr-mode 2 2 3)) package--builtin-versions) |
| 985 | 985 | ||
| @@ -1015,8 +1015,8 @@ Used in `antlr-mode'. Also a useful function in `java-mode-hook'. | |||
| 1015 | 1015 | ||
| 1016 | ;;;*** | 1016 | ;;;*** |
| 1017 | 1017 | ||
| 1018 | ;;;### (autoloads nil "appt" "calendar/appt.el" (21607 54477 800124 | 1018 | ;;;### (autoloads nil "appt" "calendar/appt.el" (21604 48549 945934 |
| 1019 | ;;;;;; 118000)) | 1019 | ;;;;;; 212000)) |
| 1020 | ;;; Generated autoloads from calendar/appt.el | 1020 | ;;; Generated autoloads from calendar/appt.el |
| 1021 | 1021 | ||
| 1022 | (autoload 'appt-add "appt" "\ | 1022 | (autoload 'appt-add "appt" "\ |
| @@ -1037,8 +1037,8 @@ ARG is positive, otherwise off. | |||
| 1037 | 1037 | ||
| 1038 | ;;;*** | 1038 | ;;;*** |
| 1039 | 1039 | ||
| 1040 | ;;;### (autoloads nil "apropos" "apropos.el" (21607 54477 800124 | 1040 | ;;;### (autoloads nil "apropos" "apropos.el" (21604 48549 925934 |
| 1041 | ;;;;;; 118000)) | 1041 | ;;;;;; 211000)) |
| 1042 | ;;; Generated autoloads from apropos.el | 1042 | ;;; Generated autoloads from apropos.el |
| 1043 | 1043 | ||
| 1044 | (autoload 'apropos-read-pattern "apropos" "\ | 1044 | (autoload 'apropos-read-pattern "apropos" "\ |
| @@ -1153,8 +1153,8 @@ Returns list of symbols and documentation found. | |||
| 1153 | 1153 | ||
| 1154 | ;;;*** | 1154 | ;;;*** |
| 1155 | 1155 | ||
| 1156 | ;;;### (autoloads nil "arc-mode" "arc-mode.el" (21621 7062 810116 | 1156 | ;;;### (autoloads nil "arc-mode" "arc-mode.el" (21631 35966 799121 |
| 1157 | ;;;;;; 332000)) | 1157 | ;;;;;; 866000)) |
| 1158 | ;;; Generated autoloads from arc-mode.el | 1158 | ;;; Generated autoloads from arc-mode.el |
| 1159 | 1159 | ||
| 1160 | (autoload 'archive-mode "arc-mode" "\ | 1160 | (autoload 'archive-mode "arc-mode" "\ |
| @@ -1174,7 +1174,7 @@ archive. | |||
| 1174 | 1174 | ||
| 1175 | ;;;*** | 1175 | ;;;*** |
| 1176 | 1176 | ||
| 1177 | ;;;### (autoloads nil "array" "array.el" (21607 54477 800124 118000)) | 1177 | ;;;### (autoloads nil "array" "array.el" (21604 48549 925934 211000)) |
| 1178 | ;;; Generated autoloads from array.el | 1178 | ;;; Generated autoloads from array.el |
| 1179 | 1179 | ||
| 1180 | (autoload 'array-mode "array" "\ | 1180 | (autoload 'array-mode "array" "\ |
| @@ -1245,8 +1245,8 @@ Entering array mode calls the function `array-mode-hook'. | |||
| 1245 | 1245 | ||
| 1246 | ;;;*** | 1246 | ;;;*** |
| 1247 | 1247 | ||
| 1248 | ;;;### (autoloads nil "artist" "textmodes/artist.el" (21607 54478 | 1248 | ;;;### (autoloads nil "artist" "textmodes/artist.el" (21604 48550 |
| 1249 | ;;;;;; 800121 42000)) | 1249 | ;;;;;; 393934 228000)) |
| 1250 | ;;; Generated autoloads from textmodes/artist.el | 1250 | ;;; Generated autoloads from textmodes/artist.el |
| 1251 | (push (purecopy '(artist 1 2 6)) package--builtin-versions) | 1251 | (push (purecopy '(artist 1 2 6)) package--builtin-versions) |
| 1252 | 1252 | ||
| @@ -1452,8 +1452,8 @@ Keymap summary | |||
| 1452 | 1452 | ||
| 1453 | ;;;*** | 1453 | ;;;*** |
| 1454 | 1454 | ||
| 1455 | ;;;### (autoloads nil "asm-mode" "progmodes/asm-mode.el" (21607 54478 | 1455 | ;;;### (autoloads nil "asm-mode" "progmodes/asm-mode.el" (21604 48550 |
| 1456 | ;;;;;; 800121 42000)) | 1456 | ;;;;;; 313934 225000)) |
| 1457 | ;;; Generated autoloads from progmodes/asm-mode.el | 1457 | ;;; Generated autoloads from progmodes/asm-mode.el |
| 1458 | 1458 | ||
| 1459 | (autoload 'asm-mode "asm-mode" "\ | 1459 | (autoload 'asm-mode "asm-mode" "\ |
| @@ -1480,8 +1480,8 @@ Special commands: | |||
| 1480 | 1480 | ||
| 1481 | ;;;*** | 1481 | ;;;*** |
| 1482 | 1482 | ||
| 1483 | ;;;### (autoloads nil "auth-source" "gnus/auth-source.el" (21625 | 1483 | ;;;### (autoloads nil "auth-source" "gnus/auth-source.el" (21631 |
| 1484 | ;;;;;; 43838 483701 627000)) | 1484 | ;;;;;; 35966 847121 867000)) |
| 1485 | ;;; Generated autoloads from gnus/auth-source.el | 1485 | ;;; Generated autoloads from gnus/auth-source.el |
| 1486 | 1486 | ||
| 1487 | (defvar auth-source-cache-expiry 7200 "\ | 1487 | (defvar auth-source-cache-expiry 7200 "\ |
| @@ -1493,8 +1493,8 @@ let-binding.") | |||
| 1493 | 1493 | ||
| 1494 | ;;;*** | 1494 | ;;;*** |
| 1495 | 1495 | ||
| 1496 | ;;;### (autoloads nil "autoarg" "autoarg.el" (21607 54477 800124 | 1496 | ;;;### (autoloads nil "autoarg" "autoarg.el" (21604 48549 925934 |
| 1497 | ;;;;;; 118000)) | 1497 | ;;;;;; 211000)) |
| 1498 | ;;; Generated autoloads from autoarg.el | 1498 | ;;; Generated autoloads from autoarg.el |
| 1499 | 1499 | ||
| 1500 | (defvar autoarg-mode nil "\ | 1500 | (defvar autoarg-mode nil "\ |
| @@ -1554,8 +1554,8 @@ This is similar to `autoarg-mode' but rebinds the keypad keys | |||
| 1554 | 1554 | ||
| 1555 | ;;;*** | 1555 | ;;;*** |
| 1556 | 1556 | ||
| 1557 | ;;;### (autoloads nil "autoconf" "progmodes/autoconf.el" (21607 54478 | 1557 | ;;;### (autoloads nil "autoconf" "progmodes/autoconf.el" (21604 48550 |
| 1558 | ;;;;;; 800121 42000)) | 1558 | ;;;;;; 313934 225000)) |
| 1559 | ;;; Generated autoloads from progmodes/autoconf.el | 1559 | ;;; Generated autoloads from progmodes/autoconf.el |
| 1560 | 1560 | ||
| 1561 | (autoload 'autoconf-mode "autoconf" "\ | 1561 | (autoload 'autoconf-mode "autoconf" "\ |
| @@ -1565,8 +1565,8 @@ Major mode for editing Autoconf configure.ac files. | |||
| 1565 | 1565 | ||
| 1566 | ;;;*** | 1566 | ;;;*** |
| 1567 | 1567 | ||
| 1568 | ;;;### (autoloads nil "autoinsert" "autoinsert.el" (21607 54477 800124 | 1568 | ;;;### (autoloads nil "autoinsert" "autoinsert.el" (21637 50476 651217 |
| 1569 | ;;;;;; 118000)) | 1569 | ;;;;;; 120000)) |
| 1570 | ;;; Generated autoloads from autoinsert.el | 1570 | ;;; Generated autoloads from autoinsert.el |
| 1571 | 1571 | ||
| 1572 | (autoload 'auto-insert "autoinsert" "\ | 1572 | (autoload 'auto-insert "autoinsert" "\ |
| @@ -1604,8 +1604,8 @@ insert a template for the file depending on the mode of the buffer. | |||
| 1604 | 1604 | ||
| 1605 | ;;;*** | 1605 | ;;;*** |
| 1606 | 1606 | ||
| 1607 | ;;;### (autoloads nil "autoload" "emacs-lisp/autoload.el" (21628 | 1607 | ;;;### (autoloads nil "autoload" "emacs-lisp/autoload.el" (21631 |
| 1608 | ;;;;;; 43483 380149 771000)) | 1608 | ;;;;;; 35966 819121 866000)) |
| 1609 | ;;; Generated autoloads from emacs-lisp/autoload.el | 1609 | ;;; Generated autoloads from emacs-lisp/autoload.el |
| 1610 | 1610 | ||
| 1611 | (put 'generated-autoload-file 'safe-local-variable 'stringp) | 1611 | (put 'generated-autoload-file 'safe-local-variable 'stringp) |
| @@ -1656,8 +1656,8 @@ should be non-nil). | |||
| 1656 | 1656 | ||
| 1657 | ;;;*** | 1657 | ;;;*** |
| 1658 | 1658 | ||
| 1659 | ;;;### (autoloads nil "autorevert" "autorevert.el" (21607 54477 800124 | 1659 | ;;;### (autoloads nil "autorevert" "autorevert.el" (21604 48549 929934 |
| 1660 | ;;;;;; 118000)) | 1660 | ;;;;;; 211000)) |
| 1661 | ;;; Generated autoloads from autorevert.el | 1661 | ;;; Generated autoloads from autorevert.el |
| 1662 | 1662 | ||
| 1663 | (autoload 'auto-revert-mode "autorevert" "\ | 1663 | (autoload 'auto-revert-mode "autorevert" "\ |
| @@ -1745,7 +1745,7 @@ specifies in the mode line. | |||
| 1745 | 1745 | ||
| 1746 | ;;;*** | 1746 | ;;;*** |
| 1747 | 1747 | ||
| 1748 | ;;;### (autoloads nil "avoid" "avoid.el" (21607 54477 800124 118000)) | 1748 | ;;;### (autoloads nil "avoid" "avoid.el" (21604 48549 929934 211000)) |
| 1749 | ;;; Generated autoloads from avoid.el | 1749 | ;;; Generated autoloads from avoid.el |
| 1750 | 1750 | ||
| 1751 | (defvar mouse-avoidance-mode nil "\ | 1751 | (defvar mouse-avoidance-mode nil "\ |
| @@ -1783,8 +1783,8 @@ definition of \"random distance\".) | |||
| 1783 | 1783 | ||
| 1784 | ;;;*** | 1784 | ;;;*** |
| 1785 | 1785 | ||
| 1786 | ;;;### (autoloads nil "bat-mode" "progmodes/bat-mode.el" (21607 54478 | 1786 | ;;;### (autoloads nil "bat-mode" "progmodes/bat-mode.el" (21604 48550 |
| 1787 | ;;;;;; 800121 42000)) | 1787 | ;;;;;; 313934 225000)) |
| 1788 | ;;; Generated autoloads from progmodes/bat-mode.el | 1788 | ;;; Generated autoloads from progmodes/bat-mode.el |
| 1789 | 1789 | ||
| 1790 | (add-to-list 'auto-mode-alist '("\\.\\(bat\\|cmd\\)\\'" . bat-mode)) | 1790 | (add-to-list 'auto-mode-alist '("\\.\\(bat\\|cmd\\)\\'" . bat-mode)) |
| @@ -1802,8 +1802,8 @@ Run script using `bat-run' and `bat-run-args'. | |||
| 1802 | 1802 | ||
| 1803 | ;;;*** | 1803 | ;;;*** |
| 1804 | 1804 | ||
| 1805 | ;;;### (autoloads nil "battery" "battery.el" (21607 54477 800124 | 1805 | ;;;### (autoloads nil "battery" "battery.el" (21604 48549 929934 |
| 1806 | ;;;;;; 118000)) | 1806 | ;;;;;; 211000)) |
| 1807 | ;;; Generated autoloads from battery.el | 1807 | ;;; Generated autoloads from battery.el |
| 1808 | (put 'battery-mode-line-string 'risky-local-variable t) | 1808 | (put 'battery-mode-line-string 'risky-local-variable t) |
| 1809 | 1809 | ||
| @@ -1838,8 +1838,8 @@ seconds. | |||
| 1838 | 1838 | ||
| 1839 | ;;;*** | 1839 | ;;;*** |
| 1840 | 1840 | ||
| 1841 | ;;;### (autoloads nil "benchmark" "emacs-lisp/benchmark.el" (21607 | 1841 | ;;;### (autoloads nil "benchmark" "emacs-lisp/benchmark.el" (21604 |
| 1842 | ;;;;;; 54477 800124 118000)) | 1842 | ;;;;;; 48550 1934 214000)) |
| 1843 | ;;; Generated autoloads from emacs-lisp/benchmark.el | 1843 | ;;; Generated autoloads from emacs-lisp/benchmark.el |
| 1844 | 1844 | ||
| 1845 | (autoload 'benchmark-run "benchmark" "\ | 1845 | (autoload 'benchmark-run "benchmark" "\ |
| @@ -1875,8 +1875,8 @@ For non-interactive use see also `benchmark-run' and | |||
| 1875 | 1875 | ||
| 1876 | ;;;*** | 1876 | ;;;*** |
| 1877 | 1877 | ||
| 1878 | ;;;### (autoloads nil "bibtex" "textmodes/bibtex.el" (21607 54478 | 1878 | ;;;### (autoloads nil "bibtex" "textmodes/bibtex.el" (21604 48550 |
| 1879 | ;;;;;; 800121 42000)) | 1879 | ;;;;;; 393934 228000)) |
| 1880 | ;;; Generated autoloads from textmodes/bibtex.el | 1880 | ;;; Generated autoloads from textmodes/bibtex.el |
| 1881 | 1881 | ||
| 1882 | (autoload 'bibtex-initialize "bibtex" "\ | 1882 | (autoload 'bibtex-initialize "bibtex" "\ |
| @@ -1968,7 +1968,7 @@ A prefix arg negates the value of `bibtex-search-entry-globally'. | |||
| 1968 | ;;;*** | 1968 | ;;;*** |
| 1969 | 1969 | ||
| 1970 | ;;;### (autoloads nil "bibtex-style" "textmodes/bibtex-style.el" | 1970 | ;;;### (autoloads nil "bibtex-style" "textmodes/bibtex-style.el" |
| 1971 | ;;;;;; (21607 54478 800121 42000)) | 1971 | ;;;;;; (21604 48550 393934 228000)) |
| 1972 | ;;; Generated autoloads from textmodes/bibtex-style.el | 1972 | ;;; Generated autoloads from textmodes/bibtex-style.el |
| 1973 | 1973 | ||
| 1974 | (autoload 'bibtex-style-mode "bibtex-style" "\ | 1974 | (autoload 'bibtex-style-mode "bibtex-style" "\ |
| @@ -1978,8 +1978,8 @@ Major mode for editing BibTeX style files. | |||
| 1978 | 1978 | ||
| 1979 | ;;;*** | 1979 | ;;;*** |
| 1980 | 1980 | ||
| 1981 | ;;;### (autoloads nil "binhex" "mail/binhex.el" (21607 54478 300138 | 1981 | ;;;### (autoloads nil "binhex" "mail/binhex.el" (21604 48550 181934 |
| 1982 | ;;;;;; 641000)) | 1982 | ;;;;;; 220000)) |
| 1983 | ;;; Generated autoloads from mail/binhex.el | 1983 | ;;; Generated autoloads from mail/binhex.el |
| 1984 | 1984 | ||
| 1985 | (defconst binhex-begin-line "^:...............................................................$" "\ | 1985 | (defconst binhex-begin-line "^:...............................................................$" "\ |
| @@ -2003,8 +2003,8 @@ Binhex decode region between START and END. | |||
| 2003 | 2003 | ||
| 2004 | ;;;*** | 2004 | ;;;*** |
| 2005 | 2005 | ||
| 2006 | ;;;### (autoloads nil "blackbox" "play/blackbox.el" (21607 54478 | 2006 | ;;;### (autoloads nil "blackbox" "play/blackbox.el" (21604 48550 |
| 2007 | ;;;;;; 800121 42000)) | 2007 | ;;;;;; 301934 225000)) |
| 2008 | ;;; Generated autoloads from play/blackbox.el | 2008 | ;;; Generated autoloads from play/blackbox.el |
| 2009 | 2009 | ||
| 2010 | (autoload 'blackbox "blackbox" "\ | 2010 | (autoload 'blackbox "blackbox" "\ |
| @@ -2123,8 +2123,8 @@ a reflection. | |||
| 2123 | 2123 | ||
| 2124 | ;;;*** | 2124 | ;;;*** |
| 2125 | 2125 | ||
| 2126 | ;;;### (autoloads nil "bookmark" "bookmark.el" (21607 54477 800124 | 2126 | ;;;### (autoloads nil "bookmark" "bookmark.el" (21604 48549 929934 |
| 2127 | ;;;;;; 118000)) | 2127 | ;;;;;; 211000)) |
| 2128 | ;;; Generated autoloads from bookmark.el | 2128 | ;;; Generated autoloads from bookmark.el |
| 2129 | (define-key ctl-x-r-map "b" 'bookmark-jump) | 2129 | (define-key ctl-x-r-map "b" 'bookmark-jump) |
| 2130 | (define-key ctl-x-r-map "m" 'bookmark-set) | 2130 | (define-key ctl-x-r-map "m" 'bookmark-set) |
| @@ -2317,8 +2317,8 @@ Incremental search of bookmarks, hiding the non-matches as we go. | |||
| 2317 | 2317 | ||
| 2318 | ;;;*** | 2318 | ;;;*** |
| 2319 | 2319 | ||
| 2320 | ;;;### (autoloads nil "browse-url" "net/browse-url.el" (21607 54478 | 2320 | ;;;### (autoloads nil "browse-url" "net/browse-url.el" (21604 48550 |
| 2321 | ;;;;;; 300138 641000)) | 2321 | ;;;;;; 213934 222000)) |
| 2322 | ;;; Generated autoloads from net/browse-url.el | 2322 | ;;; Generated autoloads from net/browse-url.el |
| 2323 | 2323 | ||
| 2324 | (defvar browse-url-browser-function 'browse-url-default-browser "\ | 2324 | (defvar browse-url-browser-function 'browse-url-default-browser "\ |
| @@ -2633,7 +2633,7 @@ from `browse-url-elinks-wrapper'. | |||
| 2633 | 2633 | ||
| 2634 | ;;;*** | 2634 | ;;;*** |
| 2635 | 2635 | ||
| 2636 | ;;;### (autoloads nil "bs" "bs.el" (21607 54477 800124 118000)) | 2636 | ;;;### (autoloads nil "bs" "bs.el" (21604 48549 929934 211000)) |
| 2637 | ;;; Generated autoloads from bs.el | 2637 | ;;; Generated autoloads from bs.el |
| 2638 | (push (purecopy '(bs 1 17)) package--builtin-versions) | 2638 | (push (purecopy '(bs 1 17)) package--builtin-versions) |
| 2639 | 2639 | ||
| @@ -2674,8 +2674,8 @@ name of buffer configuration. | |||
| 2674 | 2674 | ||
| 2675 | ;;;*** | 2675 | ;;;*** |
| 2676 | 2676 | ||
| 2677 | ;;;### (autoloads nil "bubbles" "play/bubbles.el" (21607 54478 800121 | 2677 | ;;;### (autoloads nil "bubbles" "play/bubbles.el" (21604 48550 301934 |
| 2678 | ;;;;;; 42000)) | 2678 | ;;;;;; 225000)) |
| 2679 | ;;; Generated autoloads from play/bubbles.el | 2679 | ;;; Generated autoloads from play/bubbles.el |
| 2680 | 2680 | ||
| 2681 | (autoload 'bubbles "bubbles" "\ | 2681 | (autoload 'bubbles "bubbles" "\ |
| @@ -2697,7 +2697,7 @@ columns on its right towards the left. | |||
| 2697 | ;;;*** | 2697 | ;;;*** |
| 2698 | 2698 | ||
| 2699 | ;;;### (autoloads nil "bug-reference" "progmodes/bug-reference.el" | 2699 | ;;;### (autoloads nil "bug-reference" "progmodes/bug-reference.el" |
| 2700 | ;;;;;; (21607 54478 800121 42000)) | 2700 | ;;;;;; (21604 48550 313934 225000)) |
| 2701 | ;;; Generated autoloads from progmodes/bug-reference.el | 2701 | ;;; Generated autoloads from progmodes/bug-reference.el |
| 2702 | 2702 | ||
| 2703 | (put 'bug-reference-url-format 'safe-local-variable (lambda (s) (or (stringp s) (and (symbolp s) (get s 'bug-reference-url-format))))) | 2703 | (put 'bug-reference-url-format 'safe-local-variable (lambda (s) (or (stringp s) (and (symbolp s) (get s 'bug-reference-url-format))))) |
| @@ -2717,8 +2717,8 @@ Like `bug-reference-mode', but only buttonize in comments and strings. | |||
| 2717 | 2717 | ||
| 2718 | ;;;*** | 2718 | ;;;*** |
| 2719 | 2719 | ||
| 2720 | ;;;### (autoloads nil "bytecomp" "emacs-lisp/bytecomp.el" (21607 | 2720 | ;;;### (autoloads nil "bytecomp" "emacs-lisp/bytecomp.el" (21645 |
| 2721 | ;;;;;; 54477 800124 118000)) | 2721 | ;;;;;; 25761 789186 828000)) |
| 2722 | ;;; Generated autoloads from emacs-lisp/bytecomp.el | 2722 | ;;; Generated autoloads from emacs-lisp/bytecomp.el |
| 2723 | (put 'byte-compile-dynamic 'safe-local-variable 'booleanp) | 2723 | (put 'byte-compile-dynamic 'safe-local-variable 'booleanp) |
| 2724 | (put 'byte-compile-disable-print-circle 'safe-local-variable 'booleanp) | 2724 | (put 'byte-compile-disable-print-circle 'safe-local-variable 'booleanp) |
| @@ -2838,8 +2838,8 @@ and corresponding effects. | |||
| 2838 | 2838 | ||
| 2839 | ;;;*** | 2839 | ;;;*** |
| 2840 | 2840 | ||
| 2841 | ;;;### (autoloads nil "cal-china" "calendar/cal-china.el" (21617 | 2841 | ;;;### (autoloads nil "cal-china" "calendar/cal-china.el" (21631 |
| 2842 | ;;;;;; 49721 420132 227000)) | 2842 | ;;;;;; 35966 799121 866000)) |
| 2843 | ;;; Generated autoloads from calendar/cal-china.el | 2843 | ;;; Generated autoloads from calendar/cal-china.el |
| 2844 | 2844 | ||
| 2845 | (put 'calendar-chinese-time-zone 'risky-local-variable t) | 2845 | (put 'calendar-chinese-time-zone 'risky-local-variable t) |
| @@ -2848,8 +2848,8 @@ and corresponding effects. | |||
| 2848 | 2848 | ||
| 2849 | ;;;*** | 2849 | ;;;*** |
| 2850 | 2850 | ||
| 2851 | ;;;### (autoloads nil "cal-dst" "calendar/cal-dst.el" (21609 55608 | 2851 | ;;;### (autoloads nil "cal-dst" "calendar/cal-dst.el" (21631 35966 |
| 2852 | ;;;;;; 852266 580000)) | 2852 | ;;;;;; 799121 866000)) |
| 2853 | ;;; Generated autoloads from calendar/cal-dst.el | 2853 | ;;; Generated autoloads from calendar/cal-dst.el |
| 2854 | 2854 | ||
| 2855 | (put 'calendar-daylight-savings-starts 'risky-local-variable t) | 2855 | (put 'calendar-daylight-savings-starts 'risky-local-variable t) |
| @@ -2860,8 +2860,8 @@ and corresponding effects. | |||
| 2860 | 2860 | ||
| 2861 | ;;;*** | 2861 | ;;;*** |
| 2862 | 2862 | ||
| 2863 | ;;;### (autoloads nil "cal-hebrew" "calendar/cal-hebrew.el" (21607 | 2863 | ;;;### (autoloads nil "cal-hebrew" "calendar/cal-hebrew.el" (21604 |
| 2864 | ;;;;;; 54477 800124 118000)) | 2864 | ;;;;;; 48549 949934 212000)) |
| 2865 | ;;; Generated autoloads from calendar/cal-hebrew.el | 2865 | ;;; Generated autoloads from calendar/cal-hebrew.el |
| 2866 | 2866 | ||
| 2867 | (autoload 'calendar-hebrew-list-yahrzeits "cal-hebrew" "\ | 2867 | (autoload 'calendar-hebrew-list-yahrzeits "cal-hebrew" "\ |
| @@ -2873,7 +2873,7 @@ from the cursor position. | |||
| 2873 | 2873 | ||
| 2874 | ;;;*** | 2874 | ;;;*** |
| 2875 | 2875 | ||
| 2876 | ;;;### (autoloads nil "calc" "calc/calc.el" (21607 54477 800124 118000)) | 2876 | ;;;### (autoloads nil "calc" "calc/calc.el" (21604 48549 945934 212000)) |
| 2877 | ;;; Generated autoloads from calc/calc.el | 2877 | ;;; Generated autoloads from calc/calc.el |
| 2878 | (define-key ctl-x-map "*" 'calc-dispatch) | 2878 | (define-key ctl-x-map "*" 'calc-dispatch) |
| 2879 | 2879 | ||
| @@ -2959,8 +2959,8 @@ See Info node `(calc)Defining Functions'. | |||
| 2959 | 2959 | ||
| 2960 | ;;;*** | 2960 | ;;;*** |
| 2961 | 2961 | ||
| 2962 | ;;;### (autoloads nil "calc-undo" "calc/calc-undo.el" (21607 54477 | 2962 | ;;;### (autoloads nil "calc-undo" "calc/calc-undo.el" (21604 48549 |
| 2963 | ;;;;;; 800124 118000)) | 2963 | ;;;;;; 941934 211000)) |
| 2964 | ;;; Generated autoloads from calc/calc-undo.el | 2964 | ;;; Generated autoloads from calc/calc-undo.el |
| 2965 | 2965 | ||
| 2966 | (autoload 'calc-undo "calc-undo" "\ | 2966 | (autoload 'calc-undo "calc-undo" "\ |
| @@ -2970,8 +2970,8 @@ See Info node `(calc)Defining Functions'. | |||
| 2970 | 2970 | ||
| 2971 | ;;;*** | 2971 | ;;;*** |
| 2972 | 2972 | ||
| 2973 | ;;;### (autoloads nil "calculator" "calculator.el" (21607 54477 800124 | 2973 | ;;;### (autoloads nil "calculator" "calculator.el" (21604 48549 945934 |
| 2974 | ;;;;;; 118000)) | 2974 | ;;;;;; 212000)) |
| 2975 | ;;; Generated autoloads from calculator.el | 2975 | ;;; Generated autoloads from calculator.el |
| 2976 | 2976 | ||
| 2977 | (autoload 'calculator "calculator" "\ | 2977 | (autoload 'calculator "calculator" "\ |
| @@ -2982,8 +2982,8 @@ See the documentation for `calculator-mode' for more information. | |||
| 2982 | 2982 | ||
| 2983 | ;;;*** | 2983 | ;;;*** |
| 2984 | 2984 | ||
| 2985 | ;;;### (autoloads nil "calendar" "calendar/calendar.el" (21607 54477 | 2985 | ;;;### (autoloads nil "calendar" "calendar/calendar.el" (21604 48549 |
| 2986 | ;;;;;; 800124 118000)) | 2986 | ;;;;;; 953934 212000)) |
| 2987 | ;;; Generated autoloads from calendar/calendar.el | 2987 | ;;; Generated autoloads from calendar/calendar.el |
| 2988 | 2988 | ||
| 2989 | (autoload 'calendar "calendar" "\ | 2989 | (autoload 'calendar "calendar" "\ |
| @@ -3026,8 +3026,8 @@ This function is suitable for execution in an init file. | |||
| 3026 | 3026 | ||
| 3027 | ;;;*** | 3027 | ;;;*** |
| 3028 | 3028 | ||
| 3029 | ;;;### (autoloads nil "canlock" "gnus/canlock.el" (21607 54478 300138 | 3029 | ;;;### (autoloads nil "canlock" "gnus/canlock.el" (21604 48550 81934 |
| 3030 | ;;;;;; 641000)) | 3030 | ;;;;;; 217000)) |
| 3031 | ;;; Generated autoloads from gnus/canlock.el | 3031 | ;;; Generated autoloads from gnus/canlock.el |
| 3032 | 3032 | ||
| 3033 | (autoload 'canlock-insert-header "canlock" "\ | 3033 | (autoload 'canlock-insert-header "canlock" "\ |
| @@ -3044,8 +3044,8 @@ it fails. | |||
| 3044 | 3044 | ||
| 3045 | ;;;*** | 3045 | ;;;*** |
| 3046 | 3046 | ||
| 3047 | ;;;### (autoloads nil "cc-engine" "progmodes/cc-engine.el" (21623 | 3047 | ;;;### (autoloads nil "cc-engine" "progmodes/cc-engine.el" (21659 |
| 3048 | ;;;;;; 2108 292281 129000)) | 3048 | ;;;;;; 61733 214949 164000)) |
| 3049 | ;;; Generated autoloads from progmodes/cc-engine.el | 3049 | ;;; Generated autoloads from progmodes/cc-engine.el |
| 3050 | 3050 | ||
| 3051 | (autoload 'c-guess-basic-syntax "cc-engine" "\ | 3051 | (autoload 'c-guess-basic-syntax "cc-engine" "\ |
| @@ -3055,8 +3055,8 @@ Return the syntactic context of the current line. | |||
| 3055 | 3055 | ||
| 3056 | ;;;*** | 3056 | ;;;*** |
| 3057 | 3057 | ||
| 3058 | ;;;### (autoloads nil "cc-guess" "progmodes/cc-guess.el" (21607 54478 | 3058 | ;;;### (autoloads nil "cc-guess" "progmodes/cc-guess.el" (21631 35966 |
| 3059 | ;;;;;; 800121 42000)) | 3059 | ;;;;;; 903121 869000)) |
| 3060 | ;;; Generated autoloads from progmodes/cc-guess.el | 3060 | ;;; Generated autoloads from progmodes/cc-guess.el |
| 3061 | 3061 | ||
| 3062 | (defvar c-guess-guessed-offsets-alist nil "\ | 3062 | (defvar c-guess-guessed-offsets-alist nil "\ |
| @@ -3154,8 +3154,8 @@ the absolute file name of the file if STYLE-NAME is nil. | |||
| 3154 | 3154 | ||
| 3155 | ;;;*** | 3155 | ;;;*** |
| 3156 | 3156 | ||
| 3157 | ;;;### (autoloads nil "cc-mode" "progmodes/cc-mode.el" (21607 54478 | 3157 | ;;;### (autoloads nil "cc-mode" "progmodes/cc-mode.el" (21651 20707 |
| 3158 | ;;;;;; 800121 42000)) | 3158 | ;;;;;; 184225 752000)) |
| 3159 | ;;; Generated autoloads from progmodes/cc-mode.el | 3159 | ;;; Generated autoloads from progmodes/cc-mode.el |
| 3160 | 3160 | ||
| 3161 | (autoload 'c-initialize-cc-mode "cc-mode" "\ | 3161 | (autoload 'c-initialize-cc-mode "cc-mode" "\ |
| @@ -3312,8 +3312,8 @@ Key bindings: | |||
| 3312 | 3312 | ||
| 3313 | ;;;*** | 3313 | ;;;*** |
| 3314 | 3314 | ||
| 3315 | ;;;### (autoloads nil "cc-styles" "progmodes/cc-styles.el" (21607 | 3315 | ;;;### (autoloads nil "cc-styles" "progmodes/cc-styles.el" (21631 |
| 3316 | ;;;;;; 54478 800121 42000)) | 3316 | ;;;;;; 35966 907121 870000)) |
| 3317 | ;;; Generated autoloads from progmodes/cc-styles.el | 3317 | ;;; Generated autoloads from progmodes/cc-styles.el |
| 3318 | 3318 | ||
| 3319 | (autoload 'c-set-style "cc-styles" "\ | 3319 | (autoload 'c-set-style "cc-styles" "\ |
| @@ -3364,8 +3364,8 @@ and exists only for compatibility reasons. | |||
| 3364 | 3364 | ||
| 3365 | ;;;*** | 3365 | ;;;*** |
| 3366 | 3366 | ||
| 3367 | ;;;### (autoloads nil "cc-vars" "progmodes/cc-vars.el" (21607 54478 | 3367 | ;;;### (autoloads nil "cc-vars" "progmodes/cc-vars.el" (21631 35966 |
| 3368 | ;;;;;; 800121 42000)) | 3368 | ;;;;;; 907121 870000)) |
| 3369 | ;;; Generated autoloads from progmodes/cc-vars.el | 3369 | ;;; Generated autoloads from progmodes/cc-vars.el |
| 3370 | (put 'c-basic-offset 'safe-local-variable 'integerp) | 3370 | (put 'c-basic-offset 'safe-local-variable 'integerp) |
| 3371 | (put 'c-backslash-column 'safe-local-variable 'integerp) | 3371 | (put 'c-backslash-column 'safe-local-variable 'integerp) |
| @@ -3373,8 +3373,8 @@ and exists only for compatibility reasons. | |||
| 3373 | 3373 | ||
| 3374 | ;;;*** | 3374 | ;;;*** |
| 3375 | 3375 | ||
| 3376 | ;;;### (autoloads nil "ccl" "international/ccl.el" (21607 54478 300138 | 3376 | ;;;### (autoloads nil "ccl" "international/ccl.el" (21604 48550 133934 |
| 3377 | ;;;;;; 641000)) | 3377 | ;;;;;; 219000)) |
| 3378 | ;;; Generated autoloads from international/ccl.el | 3378 | ;;; Generated autoloads from international/ccl.el |
| 3379 | 3379 | ||
| 3380 | (autoload 'ccl-compile "ccl" "\ | 3380 | (autoload 'ccl-compile "ccl" "\ |
| @@ -3634,8 +3634,8 @@ See the documentation of `define-ccl-program' for the detail of CCL program. | |||
| 3634 | 3634 | ||
| 3635 | ;;;*** | 3635 | ;;;*** |
| 3636 | 3636 | ||
| 3637 | ;;;### (autoloads nil "cconv" "emacs-lisp/cconv.el" (21607 54477 | 3637 | ;;;### (autoloads nil "cconv" "emacs-lisp/cconv.el" (21645 25761 |
| 3638 | ;;;;;; 800124 118000)) | 3638 | ;;;;;; 789186 828000)) |
| 3639 | ;;; Generated autoloads from emacs-lisp/cconv.el | 3639 | ;;; Generated autoloads from emacs-lisp/cconv.el |
| 3640 | 3640 | ||
| 3641 | (autoload 'cconv-closure-convert "cconv" "\ | 3641 | (autoload 'cconv-closure-convert "cconv" "\ |
| @@ -3654,15 +3654,15 @@ Add the warnings that closure conversion would encounter. | |||
| 3654 | 3654 | ||
| 3655 | ;;;*** | 3655 | ;;;*** |
| 3656 | 3656 | ||
| 3657 | ;;;### (autoloads nil "cedet" "cedet/cedet.el" (21607 54477 800124 | 3657 | ;;;### (autoloads nil "cedet" "cedet/cedet.el" (21604 48549 957934 |
| 3658 | ;;;;;; 118000)) | 3658 | ;;;;;; 212000)) |
| 3659 | ;;; Generated autoloads from cedet/cedet.el | 3659 | ;;; Generated autoloads from cedet/cedet.el |
| 3660 | (push (purecopy '(cedet 2 0)) package--builtin-versions) | 3660 | (push (purecopy '(cedet 2 0)) package--builtin-versions) |
| 3661 | 3661 | ||
| 3662 | ;;;*** | 3662 | ;;;*** |
| 3663 | 3663 | ||
| 3664 | ;;;### (autoloads nil "cfengine" "progmodes/cfengine.el" (21607 54478 | 3664 | ;;;### (autoloads nil "cfengine" "progmodes/cfengine.el" (21604 48550 |
| 3665 | ;;;;;; 800121 42000)) | 3665 | ;;;;;; 321934 226000)) |
| 3666 | ;;; Generated autoloads from progmodes/cfengine.el | 3666 | ;;; Generated autoloads from progmodes/cfengine.el |
| 3667 | (push (purecopy '(cfengine 1 3)) package--builtin-versions) | 3667 | (push (purecopy '(cfengine 1 3)) package--builtin-versions) |
| 3668 | 3668 | ||
| @@ -3691,15 +3691,15 @@ Choose `cfengine2-mode' or `cfengine3-mode' by buffer contents. | |||
| 3691 | 3691 | ||
| 3692 | ;;;*** | 3692 | ;;;*** |
| 3693 | 3693 | ||
| 3694 | ;;;### (autoloads nil "chart" "emacs-lisp/chart.el" (21607 54477 | 3694 | ;;;### (autoloads nil "chart" "emacs-lisp/chart.el" (21604 48550 |
| 3695 | ;;;;;; 800124 118000)) | 3695 | ;;;;;; 5934 214000)) |
| 3696 | ;;; Generated autoloads from emacs-lisp/chart.el | 3696 | ;;; Generated autoloads from emacs-lisp/chart.el |
| 3697 | (push (purecopy '(chart 0 2)) package--builtin-versions) | 3697 | (push (purecopy '(chart 0 2)) package--builtin-versions) |
| 3698 | 3698 | ||
| 3699 | ;;;*** | 3699 | ;;;*** |
| 3700 | 3700 | ||
| 3701 | ;;;### (autoloads nil "check-declare" "emacs-lisp/check-declare.el" | 3701 | ;;;### (autoloads nil "check-declare" "emacs-lisp/check-declare.el" |
| 3702 | ;;;;;; (21607 54477 800124 118000)) | 3702 | ;;;;;; (21604 48550 5934 214000)) |
| 3703 | ;;; Generated autoloads from emacs-lisp/check-declare.el | 3703 | ;;; Generated autoloads from emacs-lisp/check-declare.el |
| 3704 | 3704 | ||
| 3705 | (autoload 'check-declare-file "check-declare" "\ | 3705 | (autoload 'check-declare-file "check-declare" "\ |
| @@ -3716,8 +3716,8 @@ Returns non-nil if any false statements are found. | |||
| 3716 | 3716 | ||
| 3717 | ;;;*** | 3717 | ;;;*** |
| 3718 | 3718 | ||
| 3719 | ;;;### (autoloads nil "checkdoc" "emacs-lisp/checkdoc.el" (21607 | 3719 | ;;;### (autoloads nil "checkdoc" "emacs-lisp/checkdoc.el" (21604 |
| 3720 | ;;;;;; 54477 800124 118000)) | 3720 | ;;;;;; 48550 9934 214000)) |
| 3721 | ;;; Generated autoloads from emacs-lisp/checkdoc.el | 3721 | ;;; Generated autoloads from emacs-lisp/checkdoc.el |
| 3722 | (push (purecopy '(checkdoc 0 6 2)) package--builtin-versions) | 3722 | (push (purecopy '(checkdoc 0 6 2)) package--builtin-versions) |
| 3723 | (put 'checkdoc-force-docstrings-flag 'safe-local-variable #'booleanp) | 3723 | (put 'checkdoc-force-docstrings-flag 'safe-local-variable #'booleanp) |
| @@ -3917,8 +3917,8 @@ checking of documentation strings. | |||
| 3917 | 3917 | ||
| 3918 | ;;;*** | 3918 | ;;;*** |
| 3919 | 3919 | ||
| 3920 | ;;;### (autoloads nil "china-util" "language/china-util.el" (21607 | 3920 | ;;;### (autoloads nil "china-util" "language/china-util.el" (21604 |
| 3921 | ;;;;;; 54478 300138 641000)) | 3921 | ;;;;;; 48550 145934 219000)) |
| 3922 | ;;; Generated autoloads from language/china-util.el | 3922 | ;;; Generated autoloads from language/china-util.el |
| 3923 | 3923 | ||
| 3924 | (autoload 'decode-hz-region "china-util" "\ | 3924 | (autoload 'decode-hz-region "china-util" "\ |
| @@ -3955,8 +3955,8 @@ Encode the text in the current buffer to HZ. | |||
| 3955 | 3955 | ||
| 3956 | ;;;*** | 3956 | ;;;*** |
| 3957 | 3957 | ||
| 3958 | ;;;### (autoloads nil "chistory" "chistory.el" (21607 54477 800124 | 3958 | ;;;### (autoloads nil "chistory" "chistory.el" (21604 48549 985934 |
| 3959 | ;;;;;; 118000)) | 3959 | ;;;;;; 213000)) |
| 3960 | ;;; Generated autoloads from chistory.el | 3960 | ;;; Generated autoloads from chistory.el |
| 3961 | 3961 | ||
| 3962 | (autoload 'repeat-matching-complex-command "chistory" "\ | 3962 | (autoload 'repeat-matching-complex-command "chistory" "\ |
| @@ -3995,8 +3995,8 @@ and runs the normal hook `command-history-hook'. | |||
| 3995 | 3995 | ||
| 3996 | ;;;*** | 3996 | ;;;*** |
| 3997 | 3997 | ||
| 3998 | ;;;### (autoloads nil "cl-indent" "emacs-lisp/cl-indent.el" (21607 | 3998 | ;;;### (autoloads nil "cl-indent" "emacs-lisp/cl-indent.el" (21604 |
| 3999 | ;;;;;; 54477 800124 118000)) | 3999 | ;;;;;; 48550 9934 214000)) |
| 4000 | ;;; Generated autoloads from emacs-lisp/cl-indent.el | 4000 | ;;; Generated autoloads from emacs-lisp/cl-indent.el |
| 4001 | 4001 | ||
| 4002 | (autoload 'common-lisp-indent-function "cl-indent" "\ | 4002 | (autoload 'common-lisp-indent-function "cl-indent" "\ |
| @@ -4079,8 +4079,8 @@ instead. | |||
| 4079 | 4079 | ||
| 4080 | ;;;*** | 4080 | ;;;*** |
| 4081 | 4081 | ||
| 4082 | ;;;### (autoloads nil "cl-lib" "emacs-lisp/cl-lib.el" (21619 26501 | 4082 | ;;;### (autoloads nil "cl-lib" "emacs-lisp/cl-lib.el" (21631 35966 |
| 4083 | ;;;;;; 970129 581000)) | 4083 | ;;;;;; 823121 866000)) |
| 4084 | ;;; Generated autoloads from emacs-lisp/cl-lib.el | 4084 | ;;; Generated autoloads from emacs-lisp/cl-lib.el |
| 4085 | (push (purecopy '(cl-lib 1 0)) package--builtin-versions) | 4085 | (push (purecopy '(cl-lib 1 0)) package--builtin-versions) |
| 4086 | 4086 | ||
| @@ -4110,8 +4110,8 @@ a future Emacs interpreter will be able to use it.") | |||
| 4110 | 4110 | ||
| 4111 | ;;;*** | 4111 | ;;;*** |
| 4112 | 4112 | ||
| 4113 | ;;;### (autoloads nil "cmacexp" "progmodes/cmacexp.el" (21607 54478 | 4113 | ;;;### (autoloads nil "cmacexp" "progmodes/cmacexp.el" (21604 48550 |
| 4114 | ;;;;;; 800121 42000)) | 4114 | ;;;;;; 325934 226000)) |
| 4115 | ;;; Generated autoloads from progmodes/cmacexp.el | 4115 | ;;; Generated autoloads from progmodes/cmacexp.el |
| 4116 | 4116 | ||
| 4117 | (autoload 'c-macro-expand "cmacexp" "\ | 4117 | (autoload 'c-macro-expand "cmacexp" "\ |
| @@ -4131,8 +4131,8 @@ For use inside Lisp programs, see also `c-macro-expansion'. | |||
| 4131 | 4131 | ||
| 4132 | ;;;*** | 4132 | ;;;*** |
| 4133 | 4133 | ||
| 4134 | ;;;### (autoloads nil "cmuscheme" "cmuscheme.el" (21607 54477 800124 | 4134 | ;;;### (autoloads nil "cmuscheme" "cmuscheme.el" (21604 48549 985934 |
| 4135 | ;;;;;; 118000)) | 4135 | ;;;;;; 213000)) |
| 4136 | ;;; Generated autoloads from cmuscheme.el | 4136 | ;;; Generated autoloads from cmuscheme.el |
| 4137 | 4137 | ||
| 4138 | (autoload 'run-scheme "cmuscheme" "\ | 4138 | (autoload 'run-scheme "cmuscheme" "\ |
| @@ -4152,7 +4152,7 @@ is run). | |||
| 4152 | 4152 | ||
| 4153 | ;;;*** | 4153 | ;;;*** |
| 4154 | 4154 | ||
| 4155 | ;;;### (autoloads nil "color" "color.el" (21607 54477 800124 118000)) | 4155 | ;;;### (autoloads nil "color" "color.el" (21604 48549 985934 213000)) |
| 4156 | ;;; Generated autoloads from color.el | 4156 | ;;; Generated autoloads from color.el |
| 4157 | 4157 | ||
| 4158 | (autoload 'color-name-to-rgb "color" "\ | 4158 | (autoload 'color-name-to-rgb "color" "\ |
| @@ -4171,7 +4171,7 @@ If FRAME cannot display COLOR, return nil. | |||
| 4171 | 4171 | ||
| 4172 | ;;;*** | 4172 | ;;;*** |
| 4173 | 4173 | ||
| 4174 | ;;;### (autoloads nil "comint" "comint.el" (21607 54477 800124 118000)) | 4174 | ;;;### (autoloads nil "comint" "comint.el" (21637 50476 651217 120000)) |
| 4175 | ;;; Generated autoloads from comint.el | 4175 | ;;; Generated autoloads from comint.el |
| 4176 | 4176 | ||
| 4177 | (defvar comint-output-filter-functions '(ansi-color-process-output comint-postoutput-scroll-to-bottom comint-watch-for-password-prompt) "\ | 4177 | (defvar comint-output-filter-functions '(ansi-color-process-output comint-postoutput-scroll-to-bottom comint-watch-for-password-prompt) "\ |
| @@ -4272,12 +4272,15 @@ REGEXP-GROUP is the regular expression group in REGEXP to use. | |||
| 4272 | 4272 | ||
| 4273 | ;;;*** | 4273 | ;;;*** |
| 4274 | 4274 | ||
| 4275 | ;;;### (autoloads nil "compare-w" "vc/compare-w.el" (21607 54478 | 4275 | ;;;### (autoloads nil "compare-w" "vc/compare-w.el" (21637 50476 |
| 4276 | ;;;;;; 800121 42000)) | 4276 | ;;;;;; 683217 122000)) |
| 4277 | ;;; Generated autoloads from vc/compare-w.el | 4277 | ;;; Generated autoloads from vc/compare-w.el |
| 4278 | 4278 | ||
| 4279 | (autoload 'compare-windows "compare-w" "\ | 4279 | (autoload 'compare-windows "compare-w" "\ |
| 4280 | Compare text in current window with text in next window. | 4280 | Compare text in current window with text in another window. |
| 4281 | The option `compare-windows-get-window-function' defines how | ||
| 4282 | to get another window. | ||
| 4283 | |||
| 4281 | Compares the text starting at point in each window, | 4284 | Compares the text starting at point in each window, |
| 4282 | moving over text in each one as far as they match. | 4285 | moving over text in each one as far as they match. |
| 4283 | 4286 | ||
| @@ -4306,8 +4309,8 @@ on third call it again advances points to the next difference and so on. | |||
| 4306 | 4309 | ||
| 4307 | ;;;*** | 4310 | ;;;*** |
| 4308 | 4311 | ||
| 4309 | ;;;### (autoloads nil "compile" "progmodes/compile.el" (21607 54478 | 4312 | ;;;### (autoloads nil "compile" "progmodes/compile.el" (21604 48550 |
| 4310 | ;;;;;; 800121 42000)) | 4313 | ;;;;;; 325934 226000)) |
| 4311 | ;;; Generated autoloads from progmodes/compile.el | 4314 | ;;; Generated autoloads from progmodes/compile.el |
| 4312 | 4315 | ||
| 4313 | (defvar compilation-mode-hook nil "\ | 4316 | (defvar compilation-mode-hook nil "\ |
| @@ -4488,8 +4491,8 @@ This is the value of `next-error-function' in Compilation buffers. | |||
| 4488 | 4491 | ||
| 4489 | ;;;*** | 4492 | ;;;*** |
| 4490 | 4493 | ||
| 4491 | ;;;### (autoloads nil "completion" "completion.el" (21607 54477 800124 | 4494 | ;;;### (autoloads nil "completion" "completion.el" (21659 61733 206949 |
| 4492 | ;;;;;; 118000)) | 4495 | ;;;;;; 164000)) |
| 4493 | ;;; Generated autoloads from completion.el | 4496 | ;;; Generated autoloads from completion.el |
| 4494 | 4497 | ||
| 4495 | (defvar dynamic-completion-mode nil "\ | 4498 | (defvar dynamic-completion-mode nil "\ |
| @@ -4511,8 +4514,8 @@ if ARG is omitted or nil. | |||
| 4511 | 4514 | ||
| 4512 | ;;;*** | 4515 | ;;;*** |
| 4513 | 4516 | ||
| 4514 | ;;;### (autoloads nil "conf-mode" "textmodes/conf-mode.el" (21607 | 4517 | ;;;### (autoloads nil "conf-mode" "textmodes/conf-mode.el" (21604 |
| 4515 | ;;;;;; 54478 800121 42000)) | 4518 | ;;;;;; 48550 393934 228000)) |
| 4516 | ;;; Generated autoloads from textmodes/conf-mode.el | 4519 | ;;; Generated autoloads from textmodes/conf-mode.el |
| 4517 | 4520 | ||
| 4518 | (autoload 'conf-mode "conf-mode" "\ | 4521 | (autoload 'conf-mode "conf-mode" "\ |
| @@ -4667,8 +4670,8 @@ For details see `conf-mode'. Example: | |||
| 4667 | 4670 | ||
| 4668 | ;;;*** | 4671 | ;;;*** |
| 4669 | 4672 | ||
| 4670 | ;;;### (autoloads nil "cookie1" "play/cookie1.el" (21607 54478 800121 | 4673 | ;;;### (autoloads nil "cookie1" "play/cookie1.el" (21604 48550 301934 |
| 4671 | ;;;;;; 42000)) | 4674 | ;;;;;; 225000)) |
| 4672 | ;;; Generated autoloads from play/cookie1.el | 4675 | ;;; Generated autoloads from play/cookie1.el |
| 4673 | 4676 | ||
| 4674 | (autoload 'cookie "cookie1" "\ | 4677 | (autoload 'cookie "cookie1" "\ |
| @@ -4696,8 +4699,8 @@ and subsequent calls on the same file won't go to disk. | |||
| 4696 | 4699 | ||
| 4697 | ;;;*** | 4700 | ;;;*** |
| 4698 | 4701 | ||
| 4699 | ;;;### (autoloads nil "copyright" "emacs-lisp/copyright.el" (21607 | 4702 | ;;;### (autoloads nil "copyright" "emacs-lisp/copyright.el" (21604 |
| 4700 | ;;;;;; 54477 800124 118000)) | 4703 | ;;;;;; 48550 9934 214000)) |
| 4701 | ;;; Generated autoloads from emacs-lisp/copyright.el | 4704 | ;;; Generated autoloads from emacs-lisp/copyright.el |
| 4702 | (put 'copyright-at-end-flag 'safe-local-variable 'booleanp) | 4705 | (put 'copyright-at-end-flag 'safe-local-variable 'booleanp) |
| 4703 | (put 'copyright-names-regexp 'safe-local-variable 'stringp) | 4706 | (put 'copyright-names-regexp 'safe-local-variable 'stringp) |
| @@ -4735,8 +4738,8 @@ If FIX is non-nil, run `copyright-fix-years' instead. | |||
| 4735 | 4738 | ||
| 4736 | ;;;*** | 4739 | ;;;*** |
| 4737 | 4740 | ||
| 4738 | ;;;### (autoloads nil "cperl-mode" "progmodes/cperl-mode.el" (21607 | 4741 | ;;;### (autoloads nil "cperl-mode" "progmodes/cperl-mode.el" (21604 |
| 4739 | ;;;;;; 54478 800121 42000)) | 4742 | ;;;;;; 48550 325934 226000)) |
| 4740 | ;;; Generated autoloads from progmodes/cperl-mode.el | 4743 | ;;; Generated autoloads from progmodes/cperl-mode.el |
| 4741 | (put 'cperl-indent-level 'safe-local-variable 'integerp) | 4744 | (put 'cperl-indent-level 'safe-local-variable 'integerp) |
| 4742 | (put 'cperl-brace-offset 'safe-local-variable 'integerp) | 4745 | (put 'cperl-brace-offset 'safe-local-variable 'integerp) |
| @@ -4934,8 +4937,8 @@ Run a `perldoc' on the word around point. | |||
| 4934 | 4937 | ||
| 4935 | ;;;*** | 4938 | ;;;*** |
| 4936 | 4939 | ||
| 4937 | ;;;### (autoloads nil "cpp" "progmodes/cpp.el" (21607 54478 800121 | 4940 | ;;;### (autoloads nil "cpp" "progmodes/cpp.el" (21604 48550 329934 |
| 4938 | ;;;;;; 42000)) | 4941 | ;;;;;; 226000)) |
| 4939 | ;;; Generated autoloads from progmodes/cpp.el | 4942 | ;;; Generated autoloads from progmodes/cpp.el |
| 4940 | 4943 | ||
| 4941 | (autoload 'cpp-highlight-buffer "cpp" "\ | 4944 | (autoload 'cpp-highlight-buffer "cpp" "\ |
| @@ -4953,8 +4956,8 @@ Edit display information for cpp conditionals. | |||
| 4953 | 4956 | ||
| 4954 | ;;;*** | 4957 | ;;;*** |
| 4955 | 4958 | ||
| 4956 | ;;;### (autoloads nil "crm" "emacs-lisp/crm.el" (21607 54477 800124 | 4959 | ;;;### (autoloads nil "crm" "emacs-lisp/crm.el" (21604 48550 9934 |
| 4957 | ;;;;;; 118000)) | 4960 | ;;;;;; 214000)) |
| 4958 | ;;; Generated autoloads from emacs-lisp/crm.el | 4961 | ;;; Generated autoloads from emacs-lisp/crm.el |
| 4959 | 4962 | ||
| 4960 | (autoload 'completing-read-multiple "crm" "\ | 4963 | (autoload 'completing-read-multiple "crm" "\ |
| @@ -4980,8 +4983,8 @@ with empty strings removed. | |||
| 4980 | 4983 | ||
| 4981 | ;;;*** | 4984 | ;;;*** |
| 4982 | 4985 | ||
| 4983 | ;;;### (autoloads nil "css-mode" "textmodes/css-mode.el" (21607 54478 | 4986 | ;;;### (autoloads nil "css-mode" "textmodes/css-mode.el" (21604 48550 |
| 4984 | ;;;;;; 800121 42000)) | 4987 | ;;;;;; 393934 228000)) |
| 4985 | ;;; Generated autoloads from textmodes/css-mode.el | 4988 | ;;; Generated autoloads from textmodes/css-mode.el |
| 4986 | 4989 | ||
| 4987 | (autoload 'css-mode "css-mode" "\ | 4990 | (autoload 'css-mode "css-mode" "\ |
| @@ -4997,8 +5000,8 @@ Major mode to edit \"Sassy CSS\" files. | |||
| 4997 | 5000 | ||
| 4998 | ;;;*** | 5001 | ;;;*** |
| 4999 | 5002 | ||
| 5000 | ;;;### (autoloads nil "cua-base" "emulation/cua-base.el" (21607 54477 | 5003 | ;;;### (autoloads nil "cua-base" "emulation/cua-base.el" (21604 48550 |
| 5001 | ;;;;;; 800124 118000)) | 5004 | ;;;;;; 25934 215000)) |
| 5002 | ;;; Generated autoloads from emulation/cua-base.el | 5005 | ;;; Generated autoloads from emulation/cua-base.el |
| 5003 | 5006 | ||
| 5004 | (defvar cua-mode nil "\ | 5007 | (defvar cua-mode nil "\ |
| @@ -5043,8 +5046,8 @@ Enable CUA selection mode without the C-z/C-x/C-c/C-v bindings. | |||
| 5043 | 5046 | ||
| 5044 | ;;;*** | 5047 | ;;;*** |
| 5045 | 5048 | ||
| 5046 | ;;;### (autoloads nil "cua-rect" "emulation/cua-rect.el" (21607 54477 | 5049 | ;;;### (autoloads nil "cua-rect" "emulation/cua-rect.el" (21604 48550 |
| 5047 | ;;;;;; 800124 118000)) | 5050 | ;;;;;; 29934 215000)) |
| 5048 | ;;; Generated autoloads from emulation/cua-rect.el | 5051 | ;;; Generated autoloads from emulation/cua-rect.el |
| 5049 | 5052 | ||
| 5050 | (autoload 'cua-rectangle-mark-mode "cua-rect" "\ | 5053 | (autoload 'cua-rectangle-mark-mode "cua-rect" "\ |
| @@ -5055,8 +5058,8 @@ Activates the region if needed. Only lasts until the region is deactivated. | |||
| 5055 | 5058 | ||
| 5056 | ;;;*** | 5059 | ;;;*** |
| 5057 | 5060 | ||
| 5058 | ;;;### (autoloads nil "cus-edit" "cus-edit.el" (21607 54477 800124 | 5061 | ;;;### (autoloads nil "cus-edit" "cus-edit.el" (21645 38383 209524 |
| 5059 | ;;;;;; 118000)) | 5062 | ;;;;;; 819000)) |
| 5060 | ;;; Generated autoloads from cus-edit.el | 5063 | ;;; Generated autoloads from cus-edit.el |
| 5061 | 5064 | ||
| 5062 | (defvar custom-browse-sort-alphabetically nil "\ | 5065 | (defvar custom-browse-sort-alphabetically nil "\ |
| @@ -5282,6 +5285,13 @@ Customize all loaded groups matching REGEXP. | |||
| 5282 | 5285 | ||
| 5283 | \(fn REGEXP)" t nil) | 5286 | \(fn REGEXP)" t nil) |
| 5284 | 5287 | ||
| 5288 | (autoload 'custom-prompt-customize-unsaved-options "cus-edit" "\ | ||
| 5289 | Prompt user to customize any unsaved customization options. | ||
| 5290 | Return non-nil if user chooses to customize, for use in | ||
| 5291 | `kill-emacs-query-functions'. | ||
| 5292 | |||
| 5293 | \(fn)" nil nil) | ||
| 5294 | |||
| 5285 | (autoload 'custom-buffer-create "cus-edit" "\ | 5295 | (autoload 'custom-buffer-create "cus-edit" "\ |
| 5286 | Create a buffer containing OPTIONS. | 5296 | Create a buffer containing OPTIONS. |
| 5287 | Optional NAME is the name of the buffer. | 5297 | Optional NAME is the name of the buffer. |
| @@ -5368,8 +5378,8 @@ The format is suitable for use with `easy-menu-define'. | |||
| 5368 | 5378 | ||
| 5369 | ;;;*** | 5379 | ;;;*** |
| 5370 | 5380 | ||
| 5371 | ;;;### (autoloads nil "cus-theme" "cus-theme.el" (21607 54477 800124 | 5381 | ;;;### (autoloads nil "cus-theme" "cus-theme.el" (21604 48549 993934 |
| 5372 | ;;;;;; 118000)) | 5382 | ;;;;;; 213000)) |
| 5373 | ;;; Generated autoloads from cus-theme.el | 5383 | ;;; Generated autoloads from cus-theme.el |
| 5374 | 5384 | ||
| 5375 | (autoload 'customize-create-theme "cus-theme" "\ | 5385 | (autoload 'customize-create-theme "cus-theme" "\ |
| @@ -5402,8 +5412,8 @@ omitted, a buffer named *Custom Themes* is used. | |||
| 5402 | 5412 | ||
| 5403 | ;;;*** | 5413 | ;;;*** |
| 5404 | 5414 | ||
| 5405 | ;;;### (autoloads nil "cvs-status" "vc/cvs-status.el" (21607 54478 | 5415 | ;;;### (autoloads nil "cvs-status" "vc/cvs-status.el" (21604 48550 |
| 5406 | ;;;;;; 800121 42000)) | 5416 | ;;;;;; 421934 229000)) |
| 5407 | ;;; Generated autoloads from vc/cvs-status.el | 5417 | ;;; Generated autoloads from vc/cvs-status.el |
| 5408 | 5418 | ||
| 5409 | (autoload 'cvs-status-mode "cvs-status" "\ | 5419 | (autoload 'cvs-status-mode "cvs-status" "\ |
| @@ -5413,8 +5423,8 @@ Mode used for cvs status output. | |||
| 5413 | 5423 | ||
| 5414 | ;;;*** | 5424 | ;;;*** |
| 5415 | 5425 | ||
| 5416 | ;;;### (autoloads nil "cwarn" "progmodes/cwarn.el" (21607 54478 800121 | 5426 | ;;;### (autoloads nil "cwarn" "progmodes/cwarn.el" (21604 48550 329934 |
| 5417 | ;;;;;; 42000)) | 5427 | ;;;;;; 226000)) |
| 5418 | ;;; Generated autoloads from progmodes/cwarn.el | 5428 | ;;; Generated autoloads from progmodes/cwarn.el |
| 5419 | (push (purecopy '(cwarn 1 3 1)) package--builtin-versions) | 5429 | (push (purecopy '(cwarn 1 3 1)) package--builtin-versions) |
| 5420 | 5430 | ||
| @@ -5458,8 +5468,8 @@ See `cwarn-mode' for more information on Cwarn mode. | |||
| 5458 | 5468 | ||
| 5459 | ;;;*** | 5469 | ;;;*** |
| 5460 | 5470 | ||
| 5461 | ;;;### (autoloads nil "cyril-util" "language/cyril-util.el" (21607 | 5471 | ;;;### (autoloads nil "cyril-util" "language/cyril-util.el" (21604 |
| 5462 | ;;;;;; 54478 300138 641000)) | 5472 | ;;;;;; 48550 145934 219000)) |
| 5463 | ;;; Generated autoloads from language/cyril-util.el | 5473 | ;;; Generated autoloads from language/cyril-util.el |
| 5464 | 5474 | ||
| 5465 | (autoload 'cyrillic-encode-koi8-r-char "cyril-util" "\ | 5475 | (autoload 'cyrillic-encode-koi8-r-char "cyril-util" "\ |
| @@ -5487,8 +5497,8 @@ If the argument is nil, we return the display table to its standard state. | |||
| 5487 | 5497 | ||
| 5488 | ;;;*** | 5498 | ;;;*** |
| 5489 | 5499 | ||
| 5490 | ;;;### (autoloads nil "dabbrev" "dabbrev.el" (21607 54477 800124 | 5500 | ;;;### (autoloads nil "dabbrev" "dabbrev.el" (21604 48549 993934 |
| 5491 | ;;;;;; 118000)) | 5501 | ;;;;;; 213000)) |
| 5492 | ;;; Generated autoloads from dabbrev.el | 5502 | ;;; Generated autoloads from dabbrev.el |
| 5493 | (put 'dabbrev-case-fold-search 'risky-local-variable t) | 5503 | (put 'dabbrev-case-fold-search 'risky-local-variable t) |
| 5494 | (put 'dabbrev-case-replace 'risky-local-variable t) | 5504 | (put 'dabbrev-case-replace 'risky-local-variable t) |
| @@ -5534,8 +5544,8 @@ See also `dabbrev-abbrev-char-regexp' and \\[dabbrev-completion]. | |||
| 5534 | 5544 | ||
| 5535 | ;;;*** | 5545 | ;;;*** |
| 5536 | 5546 | ||
| 5537 | ;;;### (autoloads nil "data-debug" "cedet/data-debug.el" (21607 54477 | 5547 | ;;;### (autoloads nil "data-debug" "cedet/data-debug.el" (21604 48549 |
| 5538 | ;;;;;; 800124 118000)) | 5548 | ;;;;;; 961934 212000)) |
| 5539 | ;;; Generated autoloads from cedet/data-debug.el | 5549 | ;;; Generated autoloads from cedet/data-debug.el |
| 5540 | 5550 | ||
| 5541 | (autoload 'data-debug-new-buffer "data-debug" "\ | 5551 | (autoload 'data-debug-new-buffer "data-debug" "\ |
| @@ -5545,7 +5555,7 @@ Create a new data-debug buffer with NAME. | |||
| 5545 | 5555 | ||
| 5546 | ;;;*** | 5556 | ;;;*** |
| 5547 | 5557 | ||
| 5548 | ;;;### (autoloads nil "dbus" "net/dbus.el" (21607 54478 300138 641000)) | 5558 | ;;;### (autoloads nil "dbus" "net/dbus.el" (21604 48550 213934 222000)) |
| 5549 | ;;; Generated autoloads from net/dbus.el | 5559 | ;;; Generated autoloads from net/dbus.el |
| 5550 | 5560 | ||
| 5551 | (autoload 'dbus-handle-event "dbus" "\ | 5561 | (autoload 'dbus-handle-event "dbus" "\ |
| @@ -5558,8 +5568,8 @@ If the HANDLER returns a `dbus-error', it is propagated as return message. | |||
| 5558 | 5568 | ||
| 5559 | ;;;*** | 5569 | ;;;*** |
| 5560 | 5570 | ||
| 5561 | ;;;### (autoloads nil "dcl-mode" "progmodes/dcl-mode.el" (21607 54478 | 5571 | ;;;### (autoloads nil "dcl-mode" "progmodes/dcl-mode.el" (21604 48550 |
| 5562 | ;;;;;; 800121 42000)) | 5572 | ;;;;;; 329934 226000)) |
| 5563 | ;;; Generated autoloads from progmodes/dcl-mode.el | 5573 | ;;; Generated autoloads from progmodes/dcl-mode.el |
| 5564 | 5574 | ||
| 5565 | (autoload 'dcl-mode "dcl-mode" "\ | 5575 | (autoload 'dcl-mode "dcl-mode" "\ |
| @@ -5685,8 +5695,8 @@ There is some minimal font-lock support (see vars | |||
| 5685 | 5695 | ||
| 5686 | ;;;*** | 5696 | ;;;*** |
| 5687 | 5697 | ||
| 5688 | ;;;### (autoloads nil "debug" "emacs-lisp/debug.el" (21607 54477 | 5698 | ;;;### (autoloads nil "debug" "emacs-lisp/debug.el" (21604 48550 |
| 5689 | ;;;;;; 800124 118000)) | 5699 | ;;;;;; 9934 214000)) |
| 5690 | ;;; Generated autoloads from emacs-lisp/debug.el | 5700 | ;;; Generated autoloads from emacs-lisp/debug.el |
| 5691 | 5701 | ||
| 5692 | (setq debugger 'debug) | 5702 | (setq debugger 'debug) |
| @@ -5729,8 +5739,8 @@ To specify a nil argument interactively, exit with an empty minibuffer. | |||
| 5729 | 5739 | ||
| 5730 | ;;;*** | 5740 | ;;;*** |
| 5731 | 5741 | ||
| 5732 | ;;;### (autoloads nil "decipher" "play/decipher.el" (21607 54478 | 5742 | ;;;### (autoloads nil "decipher" "play/decipher.el" (21604 48550 |
| 5733 | ;;;;;; 800121 42000)) | 5743 | ;;;;;; 301934 225000)) |
| 5734 | ;;; Generated autoloads from play/decipher.el | 5744 | ;;; Generated autoloads from play/decipher.el |
| 5735 | 5745 | ||
| 5736 | (autoload 'decipher "decipher" "\ | 5746 | (autoload 'decipher "decipher" "\ |
| @@ -5758,8 +5768,8 @@ The most useful commands are: | |||
| 5758 | 5768 | ||
| 5759 | ;;;*** | 5769 | ;;;*** |
| 5760 | 5770 | ||
| 5761 | ;;;### (autoloads nil "delim-col" "delim-col.el" (21607 54477 800124 | 5771 | ;;;### (autoloads nil "delim-col" "delim-col.el" (21604 48549 993934 |
| 5762 | ;;;;;; 118000)) | 5772 | ;;;;;; 213000)) |
| 5763 | ;;; Generated autoloads from delim-col.el | 5773 | ;;; Generated autoloads from delim-col.el |
| 5764 | (push (purecopy '(delim-col 2 1)) package--builtin-versions) | 5774 | (push (purecopy '(delim-col 2 1)) package--builtin-versions) |
| 5765 | 5775 | ||
| @@ -5784,7 +5794,7 @@ START and END delimits the corners of text rectangle. | |||
| 5784 | 5794 | ||
| 5785 | ;;;*** | 5795 | ;;;*** |
| 5786 | 5796 | ||
| 5787 | ;;;### (autoloads nil "delsel" "delsel.el" (21607 54477 800124 118000)) | 5797 | ;;;### (autoloads nil "delsel" "delsel.el" (21604 48549 993934 213000)) |
| 5788 | ;;; Generated autoloads from delsel.el | 5798 | ;;; Generated autoloads from delsel.el |
| 5789 | 5799 | ||
| 5790 | (defalias 'pending-delete-mode 'delete-selection-mode) | 5800 | (defalias 'pending-delete-mode 'delete-selection-mode) |
| @@ -5812,8 +5822,8 @@ point regardless of any selection. | |||
| 5812 | 5822 | ||
| 5813 | ;;;*** | 5823 | ;;;*** |
| 5814 | 5824 | ||
| 5815 | ;;;### (autoloads nil "derived" "emacs-lisp/derived.el" (21607 54477 | 5825 | ;;;### (autoloads nil "derived" "emacs-lisp/derived.el" (21604 48550 |
| 5816 | ;;;;;; 800124 118000)) | 5826 | ;;;;;; 9934 214000)) |
| 5817 | ;;; Generated autoloads from emacs-lisp/derived.el | 5827 | ;;; Generated autoloads from emacs-lisp/derived.el |
| 5818 | 5828 | ||
| 5819 | (autoload 'define-derived-mode "derived" "\ | 5829 | (autoload 'define-derived-mode "derived" "\ |
| @@ -5879,8 +5889,8 @@ the first time the mode is used. | |||
| 5879 | 5889 | ||
| 5880 | ;;;*** | 5890 | ;;;*** |
| 5881 | 5891 | ||
| 5882 | ;;;### (autoloads nil "descr-text" "descr-text.el" (21607 54477 800124 | 5892 | ;;;### (autoloads nil "descr-text" "descr-text.el" (21604 48549 993934 |
| 5883 | ;;;;;; 118000)) | 5893 | ;;;;;; 213000)) |
| 5884 | ;;; Generated autoloads from descr-text.el | 5894 | ;;; Generated autoloads from descr-text.el |
| 5885 | 5895 | ||
| 5886 | (autoload 'describe-text-properties "descr-text" "\ | 5896 | (autoload 'describe-text-properties "descr-text" "\ |
| @@ -5914,7 +5924,8 @@ relevant to POS. | |||
| 5914 | 5924 | ||
| 5915 | ;;;*** | 5925 | ;;;*** |
| 5916 | 5926 | ||
| 5917 | ;;;### (autoloads nil "desktop" "desktop.el" (21616 28857 81577 239000)) | 5927 | ;;;### (autoloads nil "desktop" "desktop.el" (21631 35966 815121 |
| 5928 | ;;;;;; 866000)) | ||
| 5918 | ;;; Generated autoloads from desktop.el | 5929 | ;;; Generated autoloads from desktop.el |
| 5919 | 5930 | ||
| 5920 | (defvar desktop-save-mode nil "\ | 5931 | (defvar desktop-save-mode nil "\ |
| @@ -6119,8 +6130,8 @@ Revert to the last loaded desktop. | |||
| 6119 | 6130 | ||
| 6120 | ;;;*** | 6131 | ;;;*** |
| 6121 | 6132 | ||
| 6122 | ;;;### (autoloads nil "deuglify" "gnus/deuglify.el" (21607 54478 | 6133 | ;;;### (autoloads nil "deuglify" "gnus/deuglify.el" (21604 48550 |
| 6123 | ;;;;;; 300138 641000)) | 6134 | ;;;;;; 81934 217000)) |
| 6124 | ;;; Generated autoloads from gnus/deuglify.el | 6135 | ;;; Generated autoloads from gnus/deuglify.el |
| 6125 | 6136 | ||
| 6126 | (autoload 'gnus-article-outlook-unwrap-lines "deuglify" "\ | 6137 | (autoload 'gnus-article-outlook-unwrap-lines "deuglify" "\ |
| @@ -6152,8 +6163,8 @@ Deuglify broken Outlook (Express) articles and redisplay. | |||
| 6152 | 6163 | ||
| 6153 | ;;;*** | 6164 | ;;;*** |
| 6154 | 6165 | ||
| 6155 | ;;;### (autoloads nil "diary-lib" "calendar/diary-lib.el" (21625 | 6166 | ;;;### (autoloads nil "diary-lib" "calendar/diary-lib.el" (21631 |
| 6156 | ;;;;;; 43838 483701 627000)) | 6167 | ;;;;;; 35966 803121 866000)) |
| 6157 | ;;; Generated autoloads from calendar/diary-lib.el | 6168 | ;;; Generated autoloads from calendar/diary-lib.el |
| 6158 | 6169 | ||
| 6159 | (autoload 'diary "diary-lib" "\ | 6170 | (autoload 'diary "diary-lib" "\ |
| @@ -6195,7 +6206,7 @@ Major mode for editing the diary file. | |||
| 6195 | 6206 | ||
| 6196 | ;;;*** | 6207 | ;;;*** |
| 6197 | 6208 | ||
| 6198 | ;;;### (autoloads nil "diff" "vc/diff.el" (21607 54478 800121 42000)) | 6209 | ;;;### (autoloads nil "diff" "vc/diff.el" (21604 48550 421934 229000)) |
| 6199 | ;;; Generated autoloads from vc/diff.el | 6210 | ;;; Generated autoloads from vc/diff.el |
| 6200 | 6211 | ||
| 6201 | (defvar diff-switches (purecopy "-c") "\ | 6212 | (defvar diff-switches (purecopy "-c") "\ |
| @@ -6243,8 +6254,8 @@ This requires the external program `diff' to be in your `exec-path'. | |||
| 6243 | 6254 | ||
| 6244 | ;;;*** | 6255 | ;;;*** |
| 6245 | 6256 | ||
| 6246 | ;;;### (autoloads nil "diff-mode" "vc/diff-mode.el" (21628 45530 | 6257 | ;;;### (autoloads nil "diff-mode" "vc/diff-mode.el" (21631 35966 |
| 6247 | ;;;;;; 160140 360000)) | 6258 | ;;;;;; 923121 870000)) |
| 6248 | ;;; Generated autoloads from vc/diff-mode.el | 6259 | ;;; Generated autoloads from vc/diff-mode.el |
| 6249 | 6260 | ||
| 6250 | (autoload 'diff-mode "diff-mode" "\ | 6261 | (autoload 'diff-mode "diff-mode" "\ |
| @@ -6276,7 +6287,7 @@ the mode if ARG is omitted or nil. | |||
| 6276 | 6287 | ||
| 6277 | ;;;*** | 6288 | ;;;*** |
| 6278 | 6289 | ||
| 6279 | ;;;### (autoloads nil "dig" "net/dig.el" (21607 54478 300138 641000)) | 6290 | ;;;### (autoloads nil "dig" "net/dig.el" (21604 48550 213934 222000)) |
| 6280 | ;;; Generated autoloads from net/dig.el | 6291 | ;;; Generated autoloads from net/dig.el |
| 6281 | 6292 | ||
| 6282 | (autoload 'dig "dig" "\ | 6293 | (autoload 'dig "dig" "\ |
| @@ -6287,7 +6298,7 @@ Optional arguments are passed to `dig-invoke'. | |||
| 6287 | 6298 | ||
| 6288 | ;;;*** | 6299 | ;;;*** |
| 6289 | 6300 | ||
| 6290 | ;;;### (autoloads nil "dired" "dired.el" (21607 54477 800124 118000)) | 6301 | ;;;### (autoloads nil "dired" "dired.el" (21651 20707 164225 751000)) |
| 6291 | ;;; Generated autoloads from dired.el | 6302 | ;;; Generated autoloads from dired.el |
| 6292 | 6303 | ||
| 6293 | (defvar dired-listing-switches (purecopy "-al") "\ | 6304 | (defvar dired-listing-switches (purecopy "-al") "\ |
| @@ -6407,8 +6418,8 @@ Keybindings: | |||
| 6407 | 6418 | ||
| 6408 | ;;;*** | 6419 | ;;;*** |
| 6409 | 6420 | ||
| 6410 | ;;;### (autoloads nil "dirtrack" "dirtrack.el" (21607 54477 800124 | 6421 | ;;;### (autoloads nil "dirtrack" "dirtrack.el" (21604 48549 997934 |
| 6411 | ;;;;;; 118000)) | 6422 | ;;;;;; 214000)) |
| 6412 | ;;; Generated autoloads from dirtrack.el | 6423 | ;;; Generated autoloads from dirtrack.el |
| 6413 | 6424 | ||
| 6414 | (autoload 'dirtrack-mode "dirtrack" "\ | 6425 | (autoload 'dirtrack-mode "dirtrack" "\ |
| @@ -6438,8 +6449,8 @@ from `default-directory'. | |||
| 6438 | 6449 | ||
| 6439 | ;;;*** | 6450 | ;;;*** |
| 6440 | 6451 | ||
| 6441 | ;;;### (autoloads nil "disass" "emacs-lisp/disass.el" (21607 54477 | 6452 | ;;;### (autoloads nil "disass" "emacs-lisp/disass.el" (21604 48550 |
| 6442 | ;;;;;; 800124 118000)) | 6453 | ;;;;;; 13934 214000)) |
| 6443 | ;;; Generated autoloads from emacs-lisp/disass.el | 6454 | ;;; Generated autoloads from emacs-lisp/disass.el |
| 6444 | 6455 | ||
| 6445 | (autoload 'disassemble "disass" "\ | 6456 | (autoload 'disassemble "disass" "\ |
| @@ -6453,8 +6464,8 @@ redefine OBJECT if it is a symbol. | |||
| 6453 | 6464 | ||
| 6454 | ;;;*** | 6465 | ;;;*** |
| 6455 | 6466 | ||
| 6456 | ;;;### (autoloads nil "disp-table" "disp-table.el" (21607 54477 800124 | 6467 | ;;;### (autoloads nil "disp-table" "disp-table.el" (21604 48549 997934 |
| 6457 | ;;;;;; 118000)) | 6468 | ;;;;;; 214000)) |
| 6458 | ;;; Generated autoloads from disp-table.el | 6469 | ;;; Generated autoloads from disp-table.el |
| 6459 | 6470 | ||
| 6460 | (autoload 'make-display-table "disp-table" "\ | 6471 | (autoload 'make-display-table "disp-table" "\ |
| @@ -6575,8 +6586,8 @@ in `.emacs'. | |||
| 6575 | 6586 | ||
| 6576 | ;;;*** | 6587 | ;;;*** |
| 6577 | 6588 | ||
| 6578 | ;;;### (autoloads nil "dissociate" "play/dissociate.el" (21607 54478 | 6589 | ;;;### (autoloads nil "dissociate" "play/dissociate.el" (21604 48550 |
| 6579 | ;;;;;; 800121 42000)) | 6590 | ;;;;;; 301934 225000)) |
| 6580 | ;;; Generated autoloads from play/dissociate.el | 6591 | ;;; Generated autoloads from play/dissociate.el |
| 6581 | 6592 | ||
| 6582 | (autoload 'dissociated-press "dissociate" "\ | 6593 | (autoload 'dissociated-press "dissociate" "\ |
| @@ -6592,7 +6603,7 @@ Default is 2. | |||
| 6592 | 6603 | ||
| 6593 | ;;;*** | 6604 | ;;;*** |
| 6594 | 6605 | ||
| 6595 | ;;;### (autoloads nil "dnd" "dnd.el" (21607 54477 800124 118000)) | 6606 | ;;;### (autoloads nil "dnd" "dnd.el" (21604 48549 997934 214000)) |
| 6596 | ;;; Generated autoloads from dnd.el | 6607 | ;;; Generated autoloads from dnd.el |
| 6597 | 6608 | ||
| 6598 | (defvar dnd-protocol-alist `((,(purecopy "^file:///") . dnd-open-local-file) (,(purecopy "^file://") . dnd-open-file) (,(purecopy "^file:") . dnd-open-local-file) (,(purecopy "^\\(https?\\|ftp\\|file\\|nfs\\)://") . dnd-open-file)) "\ | 6609 | (defvar dnd-protocol-alist `((,(purecopy "^file:///") . dnd-open-local-file) (,(purecopy "^file://") . dnd-open-file) (,(purecopy "^file:") . dnd-open-local-file) (,(purecopy "^\\(https?\\|ftp\\|file\\|nfs\\)://") . dnd-open-file)) "\ |
| @@ -6612,8 +6623,8 @@ if some action was made, or nil if the URL is ignored.") | |||
| 6612 | 6623 | ||
| 6613 | ;;;*** | 6624 | ;;;*** |
| 6614 | 6625 | ||
| 6615 | ;;;### (autoloads nil "dns-mode" "textmodes/dns-mode.el" (21607 54478 | 6626 | ;;;### (autoloads nil "dns-mode" "textmodes/dns-mode.el" (21604 48550 |
| 6616 | ;;;;;; 800121 42000)) | 6627 | ;;;;;; 393934 228000)) |
| 6617 | ;;; Generated autoloads from textmodes/dns-mode.el | 6628 | ;;; Generated autoloads from textmodes/dns-mode.el |
| 6618 | 6629 | ||
| 6619 | (autoload 'dns-mode "dns-mode" "\ | 6630 | (autoload 'dns-mode "dns-mode" "\ |
| @@ -6636,8 +6647,8 @@ Locate SOA record and increment the serial field. | |||
| 6636 | 6647 | ||
| 6637 | ;;;*** | 6648 | ;;;*** |
| 6638 | 6649 | ||
| 6639 | ;;;### (autoloads nil "doc-view" "doc-view.el" (21607 54477 800124 | 6650 | ;;;### (autoloads nil "doc-view" "doc-view.el" (21604 48549 997934 |
| 6640 | ;;;;;; 118000)) | 6651 | ;;;;;; 214000)) |
| 6641 | ;;; Generated autoloads from doc-view.el | 6652 | ;;; Generated autoloads from doc-view.el |
| 6642 | 6653 | ||
| 6643 | (autoload 'doc-view-mode-p "doc-view" "\ | 6654 | (autoload 'doc-view-mode-p "doc-view" "\ |
| @@ -6683,8 +6694,8 @@ See the command `doc-view-mode' for more information on this mode. | |||
| 6683 | 6694 | ||
| 6684 | ;;;*** | 6695 | ;;;*** |
| 6685 | 6696 | ||
| 6686 | ;;;### (autoloads nil "doctor" "play/doctor.el" (21607 54478 800121 | 6697 | ;;;### (autoloads nil "doctor" "play/doctor.el" (21604 48550 301934 |
| 6687 | ;;;;;; 42000)) | 6698 | ;;;;;; 225000)) |
| 6688 | ;;; Generated autoloads from play/doctor.el | 6699 | ;;; Generated autoloads from play/doctor.el |
| 6689 | 6700 | ||
| 6690 | (autoload 'doctor "doctor" "\ | 6701 | (autoload 'doctor "doctor" "\ |
| @@ -6694,7 +6705,7 @@ Switch to *doctor* buffer and start giving psychotherapy. | |||
| 6694 | 6705 | ||
| 6695 | ;;;*** | 6706 | ;;;*** |
| 6696 | 6707 | ||
| 6697 | ;;;### (autoloads nil "double" "double.el" (21607 54477 800124 118000)) | 6708 | ;;;### (autoloads nil "double" "double.el" (21604 48549 997934 214000)) |
| 6698 | ;;; Generated autoloads from double.el | 6709 | ;;; Generated autoloads from double.el |
| 6699 | 6710 | ||
| 6700 | (autoload 'double-mode "double" "\ | 6711 | (autoload 'double-mode "double" "\ |
| @@ -6710,8 +6721,8 @@ strings when pressed twice. See `double-map' for details. | |||
| 6710 | 6721 | ||
| 6711 | ;;;*** | 6722 | ;;;*** |
| 6712 | 6723 | ||
| 6713 | ;;;### (autoloads nil "dunnet" "play/dunnet.el" (21607 54478 800121 | 6724 | ;;;### (autoloads nil "dunnet" "play/dunnet.el" (21604 48550 305934 |
| 6714 | ;;;;;; 42000)) | 6725 | ;;;;;; 225000)) |
| 6715 | ;;; Generated autoloads from play/dunnet.el | 6726 | ;;; Generated autoloads from play/dunnet.el |
| 6716 | (push (purecopy '(dunnet 2 1)) package--builtin-versions) | 6727 | (push (purecopy '(dunnet 2 1)) package--builtin-versions) |
| 6717 | 6728 | ||
| @@ -6722,8 +6733,8 @@ Switch to *dungeon* buffer and start game. | |||
| 6722 | 6733 | ||
| 6723 | ;;;*** | 6734 | ;;;*** |
| 6724 | 6735 | ||
| 6725 | ;;;### (autoloads nil "easy-mmode" "emacs-lisp/easy-mmode.el" (21607 | 6736 | ;;;### (autoloads nil "easy-mmode" "emacs-lisp/easy-mmode.el" (21604 |
| 6726 | ;;;;;; 54477 800124 118000)) | 6737 | ;;;;;; 48550 13934 214000)) |
| 6727 | ;;; Generated autoloads from emacs-lisp/easy-mmode.el | 6738 | ;;; Generated autoloads from emacs-lisp/easy-mmode.el |
| 6728 | 6739 | ||
| 6729 | (defalias 'easy-mmode-define-minor-mode 'define-minor-mode) | 6740 | (defalias 'easy-mmode-define-minor-mode 'define-minor-mode) |
| @@ -6862,8 +6873,8 @@ CSS contains a list of syntax specifications of the form (CHAR . SYNTAX). | |||
| 6862 | 6873 | ||
| 6863 | ;;;*** | 6874 | ;;;*** |
| 6864 | 6875 | ||
| 6865 | ;;;### (autoloads nil "easymenu" "emacs-lisp/easymenu.el" (21607 | 6876 | ;;;### (autoloads nil "easymenu" "emacs-lisp/easymenu.el" (21604 |
| 6866 | ;;;;;; 54477 800124 118000)) | 6877 | ;;;;;; 48550 13934 214000)) |
| 6867 | ;;; Generated autoloads from emacs-lisp/easymenu.el | 6878 | ;;; Generated autoloads from emacs-lisp/easymenu.el |
| 6868 | 6879 | ||
| 6869 | (autoload 'easy-menu-define "easymenu" "\ | 6880 | (autoload 'easy-menu-define "easymenu" "\ |
| @@ -7001,8 +7012,8 @@ To implement dynamic menus, either call this from | |||
| 7001 | 7012 | ||
| 7002 | ;;;*** | 7013 | ;;;*** |
| 7003 | 7014 | ||
| 7004 | ;;;### (autoloads nil "ebnf2ps" "progmodes/ebnf2ps.el" (21607 54478 | 7015 | ;;;### (autoloads nil "ebnf2ps" "progmodes/ebnf2ps.el" (21604 48550 |
| 7005 | ;;;;;; 800121 42000)) | 7016 | ;;;;;; 329934 226000)) |
| 7006 | ;;; Generated autoloads from progmodes/ebnf2ps.el | 7017 | ;;; Generated autoloads from progmodes/ebnf2ps.el |
| 7007 | (push (purecopy '(ebnf2ps 4 4)) package--builtin-versions) | 7018 | (push (purecopy '(ebnf2ps 4 4)) package--builtin-versions) |
| 7008 | 7019 | ||
| @@ -7267,8 +7278,8 @@ See `ebnf-style-database' documentation. | |||
| 7267 | 7278 | ||
| 7268 | ;;;*** | 7279 | ;;;*** |
| 7269 | 7280 | ||
| 7270 | ;;;### (autoloads nil "ebrowse" "progmodes/ebrowse.el" (21607 54478 | 7281 | ;;;### (autoloads nil "ebrowse" "progmodes/ebrowse.el" (21604 48550 |
| 7271 | ;;;;;; 800121 42000)) | 7282 | ;;;;;; 333934 226000)) |
| 7272 | ;;; Generated autoloads from progmodes/ebrowse.el | 7283 | ;;; Generated autoloads from progmodes/ebrowse.el |
| 7273 | 7284 | ||
| 7274 | (autoload 'ebrowse-tree-mode "ebrowse" "\ | 7285 | (autoload 'ebrowse-tree-mode "ebrowse" "\ |
| @@ -7416,8 +7427,8 @@ Display statistics for a class tree. | |||
| 7416 | 7427 | ||
| 7417 | ;;;*** | 7428 | ;;;*** |
| 7418 | 7429 | ||
| 7419 | ;;;### (autoloads nil "ebuff-menu" "ebuff-menu.el" (21607 54477 800124 | 7430 | ;;;### (autoloads nil "ebuff-menu" "ebuff-menu.el" (21604 48549 997934 |
| 7420 | ;;;;;; 118000)) | 7431 | ;;;;;; 214000)) |
| 7421 | ;;; Generated autoloads from ebuff-menu.el | 7432 | ;;; Generated autoloads from ebuff-menu.el |
| 7422 | 7433 | ||
| 7423 | (autoload 'electric-buffer-list "ebuff-menu" "\ | 7434 | (autoload 'electric-buffer-list "ebuff-menu" "\ |
| @@ -7449,8 +7460,8 @@ Run hooks in `electric-buffer-menu-mode-hook' on entry. | |||
| 7449 | 7460 | ||
| 7450 | ;;;*** | 7461 | ;;;*** |
| 7451 | 7462 | ||
| 7452 | ;;;### (autoloads nil "echistory" "echistory.el" (21607 54477 800124 | 7463 | ;;;### (autoloads nil "echistory" "echistory.el" (21604 48549 997934 |
| 7453 | ;;;;;; 118000)) | 7464 | ;;;;;; 214000)) |
| 7454 | ;;; Generated autoloads from echistory.el | 7465 | ;;; Generated autoloads from echistory.el |
| 7455 | 7466 | ||
| 7456 | (autoload 'Electric-command-history-redo-expression "echistory" "\ | 7467 | (autoload 'Electric-command-history-redo-expression "echistory" "\ |
| @@ -7461,8 +7472,8 @@ With prefix arg NOCONFIRM, execute current line as-is without editing. | |||
| 7461 | 7472 | ||
| 7462 | ;;;*** | 7473 | ;;;*** |
| 7463 | 7474 | ||
| 7464 | ;;;### (autoloads nil "ecomplete" "gnus/ecomplete.el" (21607 54478 | 7475 | ;;;### (autoloads nil "ecomplete" "gnus/ecomplete.el" (21604 48550 |
| 7465 | ;;;;;; 300138 641000)) | 7476 | ;;;;;; 81934 217000)) |
| 7466 | ;;; Generated autoloads from gnus/ecomplete.el | 7477 | ;;; Generated autoloads from gnus/ecomplete.el |
| 7467 | 7478 | ||
| 7468 | (autoload 'ecomplete-setup "ecomplete" "\ | 7479 | (autoload 'ecomplete-setup "ecomplete" "\ |
| @@ -7472,7 +7483,7 @@ With prefix arg NOCONFIRM, execute current line as-is without editing. | |||
| 7472 | 7483 | ||
| 7473 | ;;;*** | 7484 | ;;;*** |
| 7474 | 7485 | ||
| 7475 | ;;;### (autoloads nil "ede" "cedet/ede.el" (21607 54477 800124 118000)) | 7486 | ;;;### (autoloads nil "ede" "cedet/ede.el" (21604 48549 961934 212000)) |
| 7476 | ;;; Generated autoloads from cedet/ede.el | 7487 | ;;; Generated autoloads from cedet/ede.el |
| 7477 | (push (purecopy '(ede 1 2)) package--builtin-versions) | 7488 | (push (purecopy '(ede 1 2)) package--builtin-versions) |
| 7478 | 7489 | ||
| @@ -7498,8 +7509,8 @@ an EDE controlled project. | |||
| 7498 | 7509 | ||
| 7499 | ;;;*** | 7510 | ;;;*** |
| 7500 | 7511 | ||
| 7501 | ;;;### (autoloads nil "edebug" "emacs-lisp/edebug.el" (21607 54477 | 7512 | ;;;### (autoloads nil "edebug" "emacs-lisp/edebug.el" (21604 48550 |
| 7502 | ;;;;;; 800124 118000)) | 7513 | ;;;;;; 13934 214000)) |
| 7503 | ;;; Generated autoloads from emacs-lisp/edebug.el | 7514 | ;;; Generated autoloads from emacs-lisp/edebug.el |
| 7504 | 7515 | ||
| 7505 | (defvar edebug-all-defs nil "\ | 7516 | (defvar edebug-all-defs nil "\ |
| @@ -7563,7 +7574,7 @@ Toggle edebugging of all forms. | |||
| 7563 | 7574 | ||
| 7564 | ;;;*** | 7575 | ;;;*** |
| 7565 | 7576 | ||
| 7566 | ;;;### (autoloads nil "ediff" "vc/ediff.el" (21607 54478 800121 42000)) | 7577 | ;;;### (autoloads nil "ediff" "vc/ediff.el" (21604 48550 429934 230000)) |
| 7567 | ;;; Generated autoloads from vc/ediff.el | 7578 | ;;; Generated autoloads from vc/ediff.el |
| 7568 | (push (purecopy '(ediff 2 81 4)) package--builtin-versions) | 7579 | (push (purecopy '(ediff 2 81 4)) package--builtin-versions) |
| 7569 | 7580 | ||
| @@ -7835,8 +7846,8 @@ With optional NODE, goes to that node. | |||
| 7835 | 7846 | ||
| 7836 | ;;;*** | 7847 | ;;;*** |
| 7837 | 7848 | ||
| 7838 | ;;;### (autoloads nil "ediff-help" "vc/ediff-help.el" (21607 54478 | 7849 | ;;;### (autoloads nil "ediff-help" "vc/ediff-help.el" (21604 48550 |
| 7839 | ;;;;;; 800121 42000)) | 7850 | ;;;;;; 425934 230000)) |
| 7840 | ;;; Generated autoloads from vc/ediff-help.el | 7851 | ;;; Generated autoloads from vc/ediff-help.el |
| 7841 | 7852 | ||
| 7842 | (autoload 'ediff-customize "ediff-help" "\ | 7853 | (autoload 'ediff-customize "ediff-help" "\ |
| @@ -7846,8 +7857,8 @@ With optional NODE, goes to that node. | |||
| 7846 | 7857 | ||
| 7847 | ;;;*** | 7858 | ;;;*** |
| 7848 | 7859 | ||
| 7849 | ;;;### (autoloads nil "ediff-mult" "vc/ediff-mult.el" (21607 54478 | 7860 | ;;;### (autoloads nil "ediff-mult" "vc/ediff-mult.el" (21604 48550 |
| 7850 | ;;;;;; 800121 42000)) | 7861 | ;;;;;; 425934 230000)) |
| 7851 | ;;; Generated autoloads from vc/ediff-mult.el | 7862 | ;;; Generated autoloads from vc/ediff-mult.el |
| 7852 | 7863 | ||
| 7853 | (autoload 'ediff-show-registry "ediff-mult" "\ | 7864 | (autoload 'ediff-show-registry "ediff-mult" "\ |
| @@ -7859,8 +7870,8 @@ Display Ediff's registry. | |||
| 7859 | 7870 | ||
| 7860 | ;;;*** | 7871 | ;;;*** |
| 7861 | 7872 | ||
| 7862 | ;;;### (autoloads nil "ediff-util" "vc/ediff-util.el" (21607 54478 | 7873 | ;;;### (autoloads nil "ediff-util" "vc/ediff-util.el" (21604 48550 |
| 7863 | ;;;;;; 800121 42000)) | 7874 | ;;;;;; 425934 230000)) |
| 7864 | ;;; Generated autoloads from vc/ediff-util.el | 7875 | ;;; Generated autoloads from vc/ediff-util.el |
| 7865 | 7876 | ||
| 7866 | (autoload 'ediff-toggle-multiframe "ediff-util" "\ | 7877 | (autoload 'ediff-toggle-multiframe "ediff-util" "\ |
| @@ -7879,8 +7890,8 @@ To change the default, set the variable `ediff-use-toolbar-p', which see. | |||
| 7879 | 7890 | ||
| 7880 | ;;;*** | 7891 | ;;;*** |
| 7881 | 7892 | ||
| 7882 | ;;;### (autoloads nil "edmacro" "edmacro.el" (21607 54477 800124 | 7893 | ;;;### (autoloads nil "edmacro" "edmacro.el" (21604 48549 997934 |
| 7883 | ;;;;;; 118000)) | 7894 | ;;;;;; 214000)) |
| 7884 | ;;; Generated autoloads from edmacro.el | 7895 | ;;; Generated autoloads from edmacro.el |
| 7885 | (push (purecopy '(edmacro 2 1)) package--builtin-versions) | 7896 | (push (purecopy '(edmacro 2 1)) package--builtin-versions) |
| 7886 | 7897 | ||
| @@ -7929,8 +7940,8 @@ or nil, use a compact 80-column format. | |||
| 7929 | 7940 | ||
| 7930 | ;;;*** | 7941 | ;;;*** |
| 7931 | 7942 | ||
| 7932 | ;;;### (autoloads nil "edt" "emulation/edt.el" (21607 54477 800124 | 7943 | ;;;### (autoloads nil "edt" "emulation/edt.el" (21604 48550 29934 |
| 7933 | ;;;;;; 118000)) | 7944 | ;;;;;; 215000)) |
| 7934 | ;;; Generated autoloads from emulation/edt.el | 7945 | ;;; Generated autoloads from emulation/edt.el |
| 7935 | 7946 | ||
| 7936 | (autoload 'edt-set-scroll-margins "edt" "\ | 7947 | (autoload 'edt-set-scroll-margins "edt" "\ |
| @@ -7947,7 +7958,7 @@ Turn on EDT Emulation. | |||
| 7947 | 7958 | ||
| 7948 | ;;;*** | 7959 | ;;;*** |
| 7949 | 7960 | ||
| 7950 | ;;;### (autoloads nil "ehelp" "ehelp.el" (21607 54477 800124 118000)) | 7961 | ;;;### (autoloads nil "ehelp" "ehelp.el" (21604 48549 997934 214000)) |
| 7951 | ;;; Generated autoloads from ehelp.el | 7962 | ;;; Generated autoloads from ehelp.el |
| 7952 | 7963 | ||
| 7953 | (autoload 'with-electric-help "ehelp" "\ | 7964 | (autoload 'with-electric-help "ehelp" "\ |
| @@ -7983,15 +7994,15 @@ BUFFER is put back into its original major mode. | |||
| 7983 | 7994 | ||
| 7984 | ;;;*** | 7995 | ;;;*** |
| 7985 | 7996 | ||
| 7986 | ;;;### (autoloads nil "eieio" "emacs-lisp/eieio.el" (21607 54477 | 7997 | ;;;### (autoloads nil "eieio" "emacs-lisp/eieio.el" (21604 48550 |
| 7987 | ;;;;;; 800124 118000)) | 7998 | ;;;;;; 17934 214000)) |
| 7988 | ;;; Generated autoloads from emacs-lisp/eieio.el | 7999 | ;;; Generated autoloads from emacs-lisp/eieio.el |
| 7989 | (push (purecopy '(eieio 1 4)) package--builtin-versions) | 8000 | (push (purecopy '(eieio 1 4)) package--builtin-versions) |
| 7990 | 8001 | ||
| 7991 | ;;;*** | 8002 | ;;;*** |
| 7992 | 8003 | ||
| 7993 | ;;;### (autoloads nil "eieio-core" "emacs-lisp/eieio-core.el" (21607 | 8004 | ;;;### (autoloads nil "eieio-core" "emacs-lisp/eieio-core.el" (21637 |
| 7994 | ;;;;;; 54477 800124 118000)) | 8005 | ;;;;;; 50476 655217 121000)) |
| 7995 | ;;; Generated autoloads from emacs-lisp/eieio-core.el | 8006 | ;;; Generated autoloads from emacs-lisp/eieio-core.el |
| 7996 | (push (purecopy '(eieio-core 1 4)) package--builtin-versions) | 8007 | (push (purecopy '(eieio-core 1 4)) package--builtin-versions) |
| 7997 | 8008 | ||
| @@ -8007,8 +8018,8 @@ It creates an autoload function for CNAME's constructor. | |||
| 8007 | 8018 | ||
| 8008 | ;;;*** | 8019 | ;;;*** |
| 8009 | 8020 | ||
| 8010 | ;;;### (autoloads nil "elec-pair" "elec-pair.el" (21607 54477 800124 | 8021 | ;;;### (autoloads nil "elec-pair" "elec-pair.el" (21604 48550 1934 |
| 8011 | ;;;;;; 118000)) | 8022 | ;;;;;; 214000)) |
| 8012 | ;;; Generated autoloads from elec-pair.el | 8023 | ;;; Generated autoloads from elec-pair.el |
| 8013 | 8024 | ||
| 8014 | (defvar electric-pair-text-pairs '((34 . 34)) "\ | 8025 | (defvar electric-pair-text-pairs '((34 . 34)) "\ |
| @@ -8043,8 +8054,8 @@ closing parenthesis. (Likewise for brackets, etc.). | |||
| 8043 | 8054 | ||
| 8044 | ;;;*** | 8055 | ;;;*** |
| 8045 | 8056 | ||
| 8046 | ;;;### (autoloads nil "elide-head" "elide-head.el" (21607 54477 800124 | 8057 | ;;;### (autoloads nil "elide-head" "elide-head.el" (21604 48550 1934 |
| 8047 | ;;;;;; 118000)) | 8058 | ;;;;;; 214000)) |
| 8048 | ;;; Generated autoloads from elide-head.el | 8059 | ;;; Generated autoloads from elide-head.el |
| 8049 | 8060 | ||
| 8050 | (autoload 'elide-head "elide-head" "\ | 8061 | (autoload 'elide-head "elide-head" "\ |
| @@ -8059,8 +8070,8 @@ This is suitable as an entry on `find-file-hook' or appropriate mode hooks. | |||
| 8059 | 8070 | ||
| 8060 | ;;;*** | 8071 | ;;;*** |
| 8061 | 8072 | ||
| 8062 | ;;;### (autoloads nil "elint" "emacs-lisp/elint.el" (21607 54477 | 8073 | ;;;### (autoloads nil "elint" "emacs-lisp/elint.el" (21604 48550 |
| 8063 | ;;;;;; 800124 118000)) | 8074 | ;;;;;; 17934 214000)) |
| 8064 | ;;; Generated autoloads from emacs-lisp/elint.el | 8075 | ;;; Generated autoloads from emacs-lisp/elint.el |
| 8065 | 8076 | ||
| 8066 | (autoload 'elint-file "elint" "\ | 8077 | (autoload 'elint-file "elint" "\ |
| @@ -8095,8 +8106,8 @@ optional prefix argument REINIT is non-nil. | |||
| 8095 | 8106 | ||
| 8096 | ;;;*** | 8107 | ;;;*** |
| 8097 | 8108 | ||
| 8098 | ;;;### (autoloads nil "elp" "emacs-lisp/elp.el" (21607 54477 800124 | 8109 | ;;;### (autoloads nil "elp" "emacs-lisp/elp.el" (21604 48550 17934 |
| 8099 | ;;;;;; 118000)) | 8110 | ;;;;;; 214000)) |
| 8100 | ;;; Generated autoloads from emacs-lisp/elp.el | 8111 | ;;; Generated autoloads from emacs-lisp/elp.el |
| 8101 | 8112 | ||
| 8102 | (autoload 'elp-instrument-function "elp" "\ | 8113 | (autoload 'elp-instrument-function "elp" "\ |
| @@ -8130,8 +8141,8 @@ displayed. | |||
| 8130 | 8141 | ||
| 8131 | ;;;*** | 8142 | ;;;*** |
| 8132 | 8143 | ||
| 8133 | ;;;### (autoloads nil "emacs-lock" "emacs-lock.el" (21607 54477 800124 | 8144 | ;;;### (autoloads nil "emacs-lock" "emacs-lock.el" (21604 48550 25934 |
| 8134 | ;;;;;; 118000)) | 8145 | ;;;;;; 215000)) |
| 8135 | ;;; Generated autoloads from emacs-lock.el | 8146 | ;;; Generated autoloads from emacs-lock.el |
| 8136 | 8147 | ||
| 8137 | (autoload 'emacs-lock-mode "emacs-lock" "\ | 8148 | (autoload 'emacs-lock-mode "emacs-lock" "\ |
| @@ -8158,8 +8169,8 @@ Other values are interpreted as usual. | |||
| 8158 | 8169 | ||
| 8159 | ;;;*** | 8170 | ;;;*** |
| 8160 | 8171 | ||
| 8161 | ;;;### (autoloads nil "emacsbug" "mail/emacsbug.el" (21608 34742 | 8172 | ;;;### (autoloads nil "emacsbug" "mail/emacsbug.el" (21631 35966 |
| 8162 | ;;;;;; 2253 811000)) | 8173 | ;;;;;; 875121 868000)) |
| 8163 | ;;; Generated autoloads from mail/emacsbug.el | 8174 | ;;; Generated autoloads from mail/emacsbug.el |
| 8164 | 8175 | ||
| 8165 | (autoload 'report-emacs-bug "emacsbug" "\ | 8176 | (autoload 'report-emacs-bug "emacsbug" "\ |
| @@ -8172,8 +8183,8 @@ Prompts for bug subject. Leaves you in a mail buffer. | |||
| 8172 | 8183 | ||
| 8173 | ;;;*** | 8184 | ;;;*** |
| 8174 | 8185 | ||
| 8175 | ;;;### (autoloads nil "emerge" "vc/emerge.el" (21607 54478 800121 | 8186 | ;;;### (autoloads nil "emerge" "vc/emerge.el" (21604 48550 429934 |
| 8176 | ;;;;;; 42000)) | 8187 | ;;;;;; 230000)) |
| 8177 | ;;; Generated autoloads from vc/emerge.el | 8188 | ;;; Generated autoloads from vc/emerge.el |
| 8178 | 8189 | ||
| 8179 | (autoload 'emerge-files "emerge" "\ | 8190 | (autoload 'emerge-files "emerge" "\ |
| @@ -8233,8 +8244,8 @@ Emerge two RCS revisions of a file, with another revision as ancestor. | |||
| 8233 | 8244 | ||
| 8234 | ;;;*** | 8245 | ;;;*** |
| 8235 | 8246 | ||
| 8236 | ;;;### (autoloads nil "enriched" "textmodes/enriched.el" (21607 54478 | 8247 | ;;;### (autoloads nil "enriched" "textmodes/enriched.el" (21604 48550 |
| 8237 | ;;;;;; 800121 42000)) | 8248 | ;;;;;; 393934 228000)) |
| 8238 | ;;; Generated autoloads from textmodes/enriched.el | 8249 | ;;; Generated autoloads from textmodes/enriched.el |
| 8239 | 8250 | ||
| 8240 | (autoload 'enriched-mode "enriched" "\ | 8251 | (autoload 'enriched-mode "enriched" "\ |
| @@ -8269,7 +8280,7 @@ Commands: | |||
| 8269 | 8280 | ||
| 8270 | ;;;*** | 8281 | ;;;*** |
| 8271 | 8282 | ||
| 8272 | ;;;### (autoloads nil "epa" "epa.el" (21624 22971 140149 848000)) | 8283 | ;;;### (autoloads nil "epa" "epa.el" (21631 35966 827121 867000)) |
| 8273 | ;;; Generated autoloads from epa.el | 8284 | ;;; Generated autoloads from epa.el |
| 8274 | 8285 | ||
| 8275 | (autoload 'epa-list-keys "epa" "\ | 8286 | (autoload 'epa-list-keys "epa" "\ |
| @@ -8457,8 +8468,8 @@ Insert selected KEYS after the point. | |||
| 8457 | 8468 | ||
| 8458 | ;;;*** | 8469 | ;;;*** |
| 8459 | 8470 | ||
| 8460 | ;;;### (autoloads nil "epa-dired" "epa-dired.el" (21607 54478 300138 | 8471 | ;;;### (autoloads nil "epa-dired" "epa-dired.el" (21604 48550 33934 |
| 8461 | ;;;;;; 641000)) | 8472 | ;;;;;; 215000)) |
| 8462 | ;;; Generated autoloads from epa-dired.el | 8473 | ;;; Generated autoloads from epa-dired.el |
| 8463 | 8474 | ||
| 8464 | (autoload 'epa-dired-do-decrypt "epa-dired" "\ | 8475 | (autoload 'epa-dired-do-decrypt "epa-dired" "\ |
| @@ -8483,8 +8494,8 @@ Encrypt marked files. | |||
| 8483 | 8494 | ||
| 8484 | ;;;*** | 8495 | ;;;*** |
| 8485 | 8496 | ||
| 8486 | ;;;### (autoloads nil "epa-file" "epa-file.el" (21611 10937 700236 | 8497 | ;;;### (autoloads nil "epa-file" "epa-file.el" (21631 35966 827121 |
| 8487 | ;;;;;; 3000)) | 8498 | ;;;;;; 867000)) |
| 8488 | ;;; Generated autoloads from epa-file.el | 8499 | ;;; Generated autoloads from epa-file.el |
| 8489 | 8500 | ||
| 8490 | (autoload 'epa-file-handler "epa-file" "\ | 8501 | (autoload 'epa-file-handler "epa-file" "\ |
| @@ -8504,8 +8515,8 @@ Encrypt marked files. | |||
| 8504 | 8515 | ||
| 8505 | ;;;*** | 8516 | ;;;*** |
| 8506 | 8517 | ||
| 8507 | ;;;### (autoloads nil "epa-mail" "epa-mail.el" (21607 54478 300138 | 8518 | ;;;### (autoloads nil "epa-mail" "epa-mail.el" (21604 48550 33934 |
| 8508 | ;;;;;; 641000)) | 8519 | ;;;;;; 215000)) |
| 8509 | ;;; Generated autoloads from epa-mail.el | 8520 | ;;; Generated autoloads from epa-mail.el |
| 8510 | 8521 | ||
| 8511 | (autoload 'epa-mail-mode "epa-mail" "\ | 8522 | (autoload 'epa-mail-mode "epa-mail" "\ |
| @@ -8582,7 +8593,7 @@ if ARG is omitted or nil. | |||
| 8582 | 8593 | ||
| 8583 | ;;;*** | 8594 | ;;;*** |
| 8584 | 8595 | ||
| 8585 | ;;;### (autoloads nil "epg" "epg.el" (21611 10937 700236 3000)) | 8596 | ;;;### (autoloads nil "epg" "epg.el" (21631 35966 827121 867000)) |
| 8586 | ;;; Generated autoloads from epg.el | 8597 | ;;; Generated autoloads from epg.el |
| 8587 | (push (purecopy '(epg 1 0 0)) package--builtin-versions) | 8598 | (push (purecopy '(epg 1 0 0)) package--builtin-versions) |
| 8588 | 8599 | ||
| @@ -8593,8 +8604,8 @@ Return a context object. | |||
| 8593 | 8604 | ||
| 8594 | ;;;*** | 8605 | ;;;*** |
| 8595 | 8606 | ||
| 8596 | ;;;### (autoloads nil "epg-config" "epg-config.el" (21607 54478 300138 | 8607 | ;;;### (autoloads nil "epg-config" "epg-config.el" (21604 48550 33934 |
| 8597 | ;;;;;; 641000)) | 8608 | ;;;;;; 215000)) |
| 8598 | ;;; Generated autoloads from epg-config.el | 8609 | ;;; Generated autoloads from epg-config.el |
| 8599 | 8610 | ||
| 8600 | (autoload 'epg-configuration "epg-config" "\ | 8611 | (autoload 'epg-configuration "epg-config" "\ |
| @@ -8614,7 +8625,7 @@ Look at CONFIG and try to expand GROUP. | |||
| 8614 | 8625 | ||
| 8615 | ;;;*** | 8626 | ;;;*** |
| 8616 | 8627 | ||
| 8617 | ;;;### (autoloads nil "erc" "erc/erc.el" (21607 54478 300138 641000)) | 8628 | ;;;### (autoloads nil "erc" "erc/erc.el" (21604 48550 49934 215000)) |
| 8618 | ;;; Generated autoloads from erc/erc.el | 8629 | ;;; Generated autoloads from erc/erc.el |
| 8619 | 8630 | ||
| 8620 | (autoload 'erc-select-read-args "erc" "\ | 8631 | (autoload 'erc-select-read-args "erc" "\ |
| @@ -8643,7 +8654,7 @@ then the server and full-name will be set to those values, whereas | |||
| 8643 | `erc-compute-port', `erc-compute-nick' and `erc-compute-full-name' will | 8654 | `erc-compute-port', `erc-compute-nick' and `erc-compute-full-name' will |
| 8644 | be invoked for the values of the other parameters. | 8655 | be invoked for the values of the other parameters. |
| 8645 | 8656 | ||
| 8646 | \(fn &key (server (erc-compute-server)) (port (erc-compute-port)) (nick (erc-compute-nick)) PASSWORD (full-name (erc-compute-full-name)))" t nil) | 8657 | \(fn &key (SERVER (erc-compute-server)) (PORT (erc-compute-port)) (NICK (erc-compute-nick)) PASSWORD (FULL-NAME (erc-compute-full-name)))" t nil) |
| 8647 | 8658 | ||
| 8648 | (defalias 'erc-select 'erc) | 8659 | (defalias 'erc-select 'erc) |
| 8649 | 8660 | ||
| @@ -8662,36 +8673,36 @@ Otherwise, connect to HOST:PORT as USER and /join CHANNEL. | |||
| 8662 | 8673 | ||
| 8663 | ;;;*** | 8674 | ;;;*** |
| 8664 | 8675 | ||
| 8665 | ;;;### (autoloads nil "erc-autoaway" "erc/erc-autoaway.el" (21607 | 8676 | ;;;### (autoloads nil "erc-autoaway" "erc/erc-autoaway.el" (21604 |
| 8666 | ;;;;;; 54478 300138 641000)) | 8677 | ;;;;;; 48550 37934 215000)) |
| 8667 | ;;; Generated autoloads from erc/erc-autoaway.el | 8678 | ;;; Generated autoloads from erc/erc-autoaway.el |
| 8668 | (autoload 'erc-autoaway-mode "erc-autoaway") | 8679 | (autoload 'erc-autoaway-mode "erc-autoaway") |
| 8669 | 8680 | ||
| 8670 | ;;;*** | 8681 | ;;;*** |
| 8671 | 8682 | ||
| 8672 | ;;;### (autoloads nil "erc-button" "erc/erc-button.el" (21607 54478 | 8683 | ;;;### (autoloads nil "erc-button" "erc/erc-button.el" (21604 48550 |
| 8673 | ;;;;;; 300138 641000)) | 8684 | ;;;;;; 37934 215000)) |
| 8674 | ;;; Generated autoloads from erc/erc-button.el | 8685 | ;;; Generated autoloads from erc/erc-button.el |
| 8675 | (autoload 'erc-button-mode "erc-button" nil t) | 8686 | (autoload 'erc-button-mode "erc-button" nil t) |
| 8676 | 8687 | ||
| 8677 | ;;;*** | 8688 | ;;;*** |
| 8678 | 8689 | ||
| 8679 | ;;;### (autoloads nil "erc-capab" "erc/erc-capab.el" (21607 54478 | 8690 | ;;;### (autoloads nil "erc-capab" "erc/erc-capab.el" (21604 48550 |
| 8680 | ;;;;;; 300138 641000)) | 8691 | ;;;;;; 41934 215000)) |
| 8681 | ;;; Generated autoloads from erc/erc-capab.el | 8692 | ;;; Generated autoloads from erc/erc-capab.el |
| 8682 | (autoload 'erc-capab-identify-mode "erc-capab" nil t) | 8693 | (autoload 'erc-capab-identify-mode "erc-capab" nil t) |
| 8683 | 8694 | ||
| 8684 | ;;;*** | 8695 | ;;;*** |
| 8685 | 8696 | ||
| 8686 | ;;;### (autoloads nil "erc-compat" "erc/erc-compat.el" (21607 54478 | 8697 | ;;;### (autoloads nil "erc-compat" "erc/erc-compat.el" (21604 48550 |
| 8687 | ;;;;;; 300138 641000)) | 8698 | ;;;;;; 41934 215000)) |
| 8688 | ;;; Generated autoloads from erc/erc-compat.el | 8699 | ;;; Generated autoloads from erc/erc-compat.el |
| 8689 | (autoload 'erc-define-minor-mode "erc-compat") | 8700 | (autoload 'erc-define-minor-mode "erc-compat") |
| 8690 | 8701 | ||
| 8691 | ;;;*** | 8702 | ;;;*** |
| 8692 | 8703 | ||
| 8693 | ;;;### (autoloads nil "erc-dcc" "erc/erc-dcc.el" (21607 54478 300138 | 8704 | ;;;### (autoloads nil "erc-dcc" "erc/erc-dcc.el" (21604 48550 41934 |
| 8694 | ;;;;;; 641000)) | 8705 | ;;;;;; 215000)) |
| 8695 | ;;; Generated autoloads from erc/erc-dcc.el | 8706 | ;;; Generated autoloads from erc/erc-dcc.el |
| 8696 | (autoload 'erc-dcc-mode "erc-dcc") | 8707 | (autoload 'erc-dcc-mode "erc-dcc") |
| 8697 | 8708 | ||
| @@ -8721,14 +8732,14 @@ that subcommand. | |||
| 8721 | ;;;*** | 8732 | ;;;*** |
| 8722 | 8733 | ||
| 8723 | ;;;### (autoloads nil "erc-desktop-notifications" "erc/erc-desktop-notifications.el" | 8734 | ;;;### (autoloads nil "erc-desktop-notifications" "erc/erc-desktop-notifications.el" |
| 8724 | ;;;;;; (21617 49721 420132 227000)) | 8735 | ;;;;;; (21631 35966 831121 867000)) |
| 8725 | ;;; Generated autoloads from erc/erc-desktop-notifications.el | 8736 | ;;; Generated autoloads from erc/erc-desktop-notifications.el |
| 8726 | (autoload 'erc-notifications-mode "erc-desktop-notifications" "" t) | 8737 | (autoload 'erc-notifications-mode "erc-desktop-notifications" "" t) |
| 8727 | 8738 | ||
| 8728 | ;;;*** | 8739 | ;;;*** |
| 8729 | 8740 | ||
| 8730 | ;;;### (autoloads nil "erc-ezbounce" "erc/erc-ezbounce.el" (21607 | 8741 | ;;;### (autoloads nil "erc-ezbounce" "erc/erc-ezbounce.el" (21604 |
| 8731 | ;;;;;; 54478 300138 641000)) | 8742 | ;;;;;; 48550 41934 215000)) |
| 8732 | ;;; Generated autoloads from erc/erc-ezbounce.el | 8743 | ;;; Generated autoloads from erc/erc-ezbounce.el |
| 8733 | 8744 | ||
| 8734 | (autoload 'erc-cmd-ezb "erc-ezbounce" "\ | 8745 | (autoload 'erc-cmd-ezb "erc-ezbounce" "\ |
| @@ -8790,8 +8801,8 @@ Add EZBouncer convenience functions to ERC. | |||
| 8790 | 8801 | ||
| 8791 | ;;;*** | 8802 | ;;;*** |
| 8792 | 8803 | ||
| 8793 | ;;;### (autoloads nil "erc-fill" "erc/erc-fill.el" (21607 54478 300138 | 8804 | ;;;### (autoloads nil "erc-fill" "erc/erc-fill.el" (21604 48550 41934 |
| 8794 | ;;;;;; 641000)) | 8805 | ;;;;;; 215000)) |
| 8795 | ;;; Generated autoloads from erc/erc-fill.el | 8806 | ;;; Generated autoloads from erc/erc-fill.el |
| 8796 | (autoload 'erc-fill-mode "erc-fill" nil t) | 8807 | (autoload 'erc-fill-mode "erc-fill" nil t) |
| 8797 | 8808 | ||
| @@ -8803,8 +8814,8 @@ You can put this on `erc-insert-modify-hook' and/or `erc-send-modify-hook'. | |||
| 8803 | 8814 | ||
| 8804 | ;;;*** | 8815 | ;;;*** |
| 8805 | 8816 | ||
| 8806 | ;;;### (autoloads nil "erc-identd" "erc/erc-identd.el" (21607 54478 | 8817 | ;;;### (autoloads nil "erc-identd" "erc/erc-identd.el" (21604 48550 |
| 8807 | ;;;;;; 300138 641000)) | 8818 | ;;;;;; 45934 215000)) |
| 8808 | ;;; Generated autoloads from erc/erc-identd.el | 8819 | ;;; Generated autoloads from erc/erc-identd.el |
| 8809 | (autoload 'erc-identd-mode "erc-identd") | 8820 | (autoload 'erc-identd-mode "erc-identd") |
| 8810 | 8821 | ||
| @@ -8825,8 +8836,8 @@ system. | |||
| 8825 | 8836 | ||
| 8826 | ;;;*** | 8837 | ;;;*** |
| 8827 | 8838 | ||
| 8828 | ;;;### (autoloads nil "erc-imenu" "erc/erc-imenu.el" (21607 54478 | 8839 | ;;;### (autoloads nil "erc-imenu" "erc/erc-imenu.el" (21604 48550 |
| 8829 | ;;;;;; 300138 641000)) | 8840 | ;;;;;; 45934 215000)) |
| 8830 | ;;; Generated autoloads from erc/erc-imenu.el | 8841 | ;;; Generated autoloads from erc/erc-imenu.el |
| 8831 | 8842 | ||
| 8832 | (autoload 'erc-create-imenu-index "erc-imenu" "\ | 8843 | (autoload 'erc-create-imenu-index "erc-imenu" "\ |
| @@ -8836,22 +8847,22 @@ system. | |||
| 8836 | 8847 | ||
| 8837 | ;;;*** | 8848 | ;;;*** |
| 8838 | 8849 | ||
| 8839 | ;;;### (autoloads nil "erc-join" "erc/erc-join.el" (21607 54478 300138 | 8850 | ;;;### (autoloads nil "erc-join" "erc/erc-join.el" (21604 48550 45934 |
| 8840 | ;;;;;; 641000)) | 8851 | ;;;;;; 215000)) |
| 8841 | ;;; Generated autoloads from erc/erc-join.el | 8852 | ;;; Generated autoloads from erc/erc-join.el |
| 8842 | (autoload 'erc-autojoin-mode "erc-join" nil t) | 8853 | (autoload 'erc-autojoin-mode "erc-join" nil t) |
| 8843 | 8854 | ||
| 8844 | ;;;*** | 8855 | ;;;*** |
| 8845 | 8856 | ||
| 8846 | ;;;### (autoloads nil "erc-list" "erc/erc-list.el" (21607 54478 300138 | 8857 | ;;;### (autoloads nil "erc-list" "erc/erc-list.el" (21604 48550 45934 |
| 8847 | ;;;;;; 641000)) | 8858 | ;;;;;; 215000)) |
| 8848 | ;;; Generated autoloads from erc/erc-list.el | 8859 | ;;; Generated autoloads from erc/erc-list.el |
| 8849 | (autoload 'erc-list-mode "erc-list") | 8860 | (autoload 'erc-list-mode "erc-list") |
| 8850 | 8861 | ||
| 8851 | ;;;*** | 8862 | ;;;*** |
| 8852 | 8863 | ||
| 8853 | ;;;### (autoloads nil "erc-log" "erc/erc-log.el" (21607 54478 300138 | 8864 | ;;;### (autoloads nil "erc-log" "erc/erc-log.el" (21604 48550 45934 |
| 8854 | ;;;;;; 641000)) | 8865 | ;;;;;; 215000)) |
| 8855 | ;;; Generated autoloads from erc/erc-log.el | 8866 | ;;; Generated autoloads from erc/erc-log.el |
| 8856 | (autoload 'erc-log-mode "erc-log" nil t) | 8867 | (autoload 'erc-log-mode "erc-log" nil t) |
| 8857 | 8868 | ||
| @@ -8880,8 +8891,8 @@ You can save every individual message by putting this function on | |||
| 8880 | 8891 | ||
| 8881 | ;;;*** | 8892 | ;;;*** |
| 8882 | 8893 | ||
| 8883 | ;;;### (autoloads nil "erc-match" "erc/erc-match.el" (21607 54478 | 8894 | ;;;### (autoloads nil "erc-match" "erc/erc-match.el" (21604 48550 |
| 8884 | ;;;;;; 300138 641000)) | 8895 | ;;;;;; 45934 215000)) |
| 8885 | ;;; Generated autoloads from erc/erc-match.el | 8896 | ;;; Generated autoloads from erc/erc-match.el |
| 8886 | (autoload 'erc-match-mode "erc-match") | 8897 | (autoload 'erc-match-mode "erc-match") |
| 8887 | 8898 | ||
| @@ -8927,15 +8938,15 @@ Delete dangerous-host interactively to `erc-dangerous-hosts'. | |||
| 8927 | 8938 | ||
| 8928 | ;;;*** | 8939 | ;;;*** |
| 8929 | 8940 | ||
| 8930 | ;;;### (autoloads nil "erc-menu" "erc/erc-menu.el" (21607 54478 300138 | 8941 | ;;;### (autoloads nil "erc-menu" "erc/erc-menu.el" (21604 48550 45934 |
| 8931 | ;;;;;; 641000)) | 8942 | ;;;;;; 215000)) |
| 8932 | ;;; Generated autoloads from erc/erc-menu.el | 8943 | ;;; Generated autoloads from erc/erc-menu.el |
| 8933 | (autoload 'erc-menu-mode "erc-menu" nil t) | 8944 | (autoload 'erc-menu-mode "erc-menu" nil t) |
| 8934 | 8945 | ||
| 8935 | ;;;*** | 8946 | ;;;*** |
| 8936 | 8947 | ||
| 8937 | ;;;### (autoloads nil "erc-netsplit" "erc/erc-netsplit.el" (21607 | 8948 | ;;;### (autoloads nil "erc-netsplit" "erc/erc-netsplit.el" (21604 |
| 8938 | ;;;;;; 54478 300138 641000)) | 8949 | ;;;;;; 48550 45934 215000)) |
| 8939 | ;;; Generated autoloads from erc/erc-netsplit.el | 8950 | ;;; Generated autoloads from erc/erc-netsplit.el |
| 8940 | (autoload 'erc-netsplit-mode "erc-netsplit") | 8951 | (autoload 'erc-netsplit-mode "erc-netsplit") |
| 8941 | 8952 | ||
| @@ -8946,8 +8957,8 @@ Show who's gone. | |||
| 8946 | 8957 | ||
| 8947 | ;;;*** | 8958 | ;;;*** |
| 8948 | 8959 | ||
| 8949 | ;;;### (autoloads nil "erc-networks" "erc/erc-networks.el" (21607 | 8960 | ;;;### (autoloads nil "erc-networks" "erc/erc-networks.el" (21604 |
| 8950 | ;;;;;; 54478 300138 641000)) | 8961 | ;;;;;; 48550 45934 215000)) |
| 8951 | ;;; Generated autoloads from erc/erc-networks.el | 8962 | ;;; Generated autoloads from erc/erc-networks.el |
| 8952 | 8963 | ||
| 8953 | (autoload 'erc-determine-network "erc-networks" "\ | 8964 | (autoload 'erc-determine-network "erc-networks" "\ |
| @@ -8964,8 +8975,8 @@ Interactively select a server to connect to using `erc-server-alist'. | |||
| 8964 | 8975 | ||
| 8965 | ;;;*** | 8976 | ;;;*** |
| 8966 | 8977 | ||
| 8967 | ;;;### (autoloads nil "erc-notify" "erc/erc-notify.el" (21607 54478 | 8978 | ;;;### (autoloads nil "erc-notify" "erc/erc-notify.el" (21604 48550 |
| 8968 | ;;;;;; 300138 641000)) | 8979 | ;;;;;; 45934 215000)) |
| 8969 | ;;; Generated autoloads from erc/erc-notify.el | 8980 | ;;; Generated autoloads from erc/erc-notify.el |
| 8970 | (autoload 'erc-notify-mode "erc-notify" nil t) | 8981 | (autoload 'erc-notify-mode "erc-notify" nil t) |
| 8971 | 8982 | ||
| @@ -8983,36 +8994,36 @@ with args, toggle notify status of people. | |||
| 8983 | 8994 | ||
| 8984 | ;;;*** | 8995 | ;;;*** |
| 8985 | 8996 | ||
| 8986 | ;;;### (autoloads nil "erc-page" "erc/erc-page.el" (21607 54478 300138 | 8997 | ;;;### (autoloads nil "erc-page" "erc/erc-page.el" (21604 48550 45934 |
| 8987 | ;;;;;; 641000)) | 8998 | ;;;;;; 215000)) |
| 8988 | ;;; Generated autoloads from erc/erc-page.el | 8999 | ;;; Generated autoloads from erc/erc-page.el |
| 8989 | (autoload 'erc-page-mode "erc-page") | 9000 | (autoload 'erc-page-mode "erc-page") |
| 8990 | 9001 | ||
| 8991 | ;;;*** | 9002 | ;;;*** |
| 8992 | 9003 | ||
| 8993 | ;;;### (autoloads nil "erc-pcomplete" "erc/erc-pcomplete.el" (21607 | 9004 | ;;;### (autoloads nil "erc-pcomplete" "erc/erc-pcomplete.el" (21604 |
| 8994 | ;;;;;; 54478 300138 641000)) | 9005 | ;;;;;; 48550 45934 215000)) |
| 8995 | ;;; Generated autoloads from erc/erc-pcomplete.el | 9006 | ;;; Generated autoloads from erc/erc-pcomplete.el |
| 8996 | (autoload 'erc-completion-mode "erc-pcomplete" nil t) | 9007 | (autoload 'erc-completion-mode "erc-pcomplete" nil t) |
| 8997 | 9008 | ||
| 8998 | ;;;*** | 9009 | ;;;*** |
| 8999 | 9010 | ||
| 9000 | ;;;### (autoloads nil "erc-replace" "erc/erc-replace.el" (21607 54478 | 9011 | ;;;### (autoloads nil "erc-replace" "erc/erc-replace.el" (21604 48550 |
| 9001 | ;;;;;; 300138 641000)) | 9012 | ;;;;;; 45934 215000)) |
| 9002 | ;;; Generated autoloads from erc/erc-replace.el | 9013 | ;;; Generated autoloads from erc/erc-replace.el |
| 9003 | (autoload 'erc-replace-mode "erc-replace") | 9014 | (autoload 'erc-replace-mode "erc-replace") |
| 9004 | 9015 | ||
| 9005 | ;;;*** | 9016 | ;;;*** |
| 9006 | 9017 | ||
| 9007 | ;;;### (autoloads nil "erc-ring" "erc/erc-ring.el" (21607 54478 300138 | 9018 | ;;;### (autoloads nil "erc-ring" "erc/erc-ring.el" (21604 48550 45934 |
| 9008 | ;;;;;; 641000)) | 9019 | ;;;;;; 215000)) |
| 9009 | ;;; Generated autoloads from erc/erc-ring.el | 9020 | ;;; Generated autoloads from erc/erc-ring.el |
| 9010 | (autoload 'erc-ring-mode "erc-ring" nil t) | 9021 | (autoload 'erc-ring-mode "erc-ring" nil t) |
| 9011 | 9022 | ||
| 9012 | ;;;*** | 9023 | ;;;*** |
| 9013 | 9024 | ||
| 9014 | ;;;### (autoloads nil "erc-services" "erc/erc-services.el" (21607 | 9025 | ;;;### (autoloads nil "erc-services" "erc/erc-services.el" (21604 |
| 9015 | ;;;;;; 54478 300138 641000)) | 9026 | ;;;;;; 48550 45934 215000)) |
| 9016 | ;;; Generated autoloads from erc/erc-services.el | 9027 | ;;; Generated autoloads from erc/erc-services.el |
| 9017 | (autoload 'erc-services-mode "erc-services" nil t) | 9028 | (autoload 'erc-services-mode "erc-services" nil t) |
| 9018 | 9029 | ||
| @@ -9029,15 +9040,15 @@ When called interactively, read the password using `read-passwd'. | |||
| 9029 | 9040 | ||
| 9030 | ;;;*** | 9041 | ;;;*** |
| 9031 | 9042 | ||
| 9032 | ;;;### (autoloads nil "erc-sound" "erc/erc-sound.el" (21607 54478 | 9043 | ;;;### (autoloads nil "erc-sound" "erc/erc-sound.el" (21604 48550 |
| 9033 | ;;;;;; 300138 641000)) | 9044 | ;;;;;; 45934 215000)) |
| 9034 | ;;; Generated autoloads from erc/erc-sound.el | 9045 | ;;; Generated autoloads from erc/erc-sound.el |
| 9035 | (autoload 'erc-sound-mode "erc-sound") | 9046 | (autoload 'erc-sound-mode "erc-sound") |
| 9036 | 9047 | ||
| 9037 | ;;;*** | 9048 | ;;;*** |
| 9038 | 9049 | ||
| 9039 | ;;;### (autoloads nil "erc-speedbar" "erc/erc-speedbar.el" (21607 | 9050 | ;;;### (autoloads nil "erc-speedbar" "erc/erc-speedbar.el" (21604 |
| 9040 | ;;;;;; 54478 300138 641000)) | 9051 | ;;;;;; 48550 45934 215000)) |
| 9041 | ;;; Generated autoloads from erc/erc-speedbar.el | 9052 | ;;; Generated autoloads from erc/erc-speedbar.el |
| 9042 | 9053 | ||
| 9043 | (autoload 'erc-speedbar-browser "erc-speedbar" "\ | 9054 | (autoload 'erc-speedbar-browser "erc-speedbar" "\ |
| @@ -9048,22 +9059,22 @@ This will add a speedbar major display mode. | |||
| 9048 | 9059 | ||
| 9049 | ;;;*** | 9060 | ;;;*** |
| 9050 | 9061 | ||
| 9051 | ;;;### (autoloads nil "erc-spelling" "erc/erc-spelling.el" (21607 | 9062 | ;;;### (autoloads nil "erc-spelling" "erc/erc-spelling.el" (21604 |
| 9052 | ;;;;;; 54478 300138 641000)) | 9063 | ;;;;;; 48550 45934 215000)) |
| 9053 | ;;; Generated autoloads from erc/erc-spelling.el | 9064 | ;;; Generated autoloads from erc/erc-spelling.el |
| 9054 | (autoload 'erc-spelling-mode "erc-spelling" nil t) | 9065 | (autoload 'erc-spelling-mode "erc-spelling" nil t) |
| 9055 | 9066 | ||
| 9056 | ;;;*** | 9067 | ;;;*** |
| 9057 | 9068 | ||
| 9058 | ;;;### (autoloads nil "erc-stamp" "erc/erc-stamp.el" (21607 54478 | 9069 | ;;;### (autoloads nil "erc-stamp" "erc/erc-stamp.el" (21604 48550 |
| 9059 | ;;;;;; 300138 641000)) | 9070 | ;;;;;; 45934 215000)) |
| 9060 | ;;; Generated autoloads from erc/erc-stamp.el | 9071 | ;;; Generated autoloads from erc/erc-stamp.el |
| 9061 | (autoload 'erc-timestamp-mode "erc-stamp" nil t) | 9072 | (autoload 'erc-timestamp-mode "erc-stamp" nil t) |
| 9062 | 9073 | ||
| 9063 | ;;;*** | 9074 | ;;;*** |
| 9064 | 9075 | ||
| 9065 | ;;;### (autoloads nil "erc-track" "erc/erc-track.el" (21607 54478 | 9076 | ;;;### (autoloads nil "erc-track" "erc/erc-track.el" (21604 48550 |
| 9066 | ;;;;;; 300138 641000)) | 9077 | ;;;;;; 45934 215000)) |
| 9067 | ;;; Generated autoloads from erc/erc-track.el | 9078 | ;;; Generated autoloads from erc/erc-track.el |
| 9068 | 9079 | ||
| 9069 | (defvar erc-track-minor-mode nil "\ | 9080 | (defvar erc-track-minor-mode nil "\ |
| @@ -9088,8 +9099,8 @@ keybindings will not do anything useful. | |||
| 9088 | 9099 | ||
| 9089 | ;;;*** | 9100 | ;;;*** |
| 9090 | 9101 | ||
| 9091 | ;;;### (autoloads nil "erc-truncate" "erc/erc-truncate.el" (21607 | 9102 | ;;;### (autoloads nil "erc-truncate" "erc/erc-truncate.el" (21604 |
| 9092 | ;;;;;; 54478 300138 641000)) | 9103 | ;;;;;; 48550 45934 215000)) |
| 9093 | ;;; Generated autoloads from erc/erc-truncate.el | 9104 | ;;; Generated autoloads from erc/erc-truncate.el |
| 9094 | (autoload 'erc-truncate-mode "erc-truncate" nil t) | 9105 | (autoload 'erc-truncate-mode "erc-truncate" nil t) |
| 9095 | 9106 | ||
| @@ -9108,8 +9119,8 @@ Meant to be used in hooks, like `erc-insert-post-hook'. | |||
| 9108 | 9119 | ||
| 9109 | ;;;*** | 9120 | ;;;*** |
| 9110 | 9121 | ||
| 9111 | ;;;### (autoloads nil "erc-xdcc" "erc/erc-xdcc.el" (21607 54478 300138 | 9122 | ;;;### (autoloads nil "erc-xdcc" "erc/erc-xdcc.el" (21604 48550 45934 |
| 9112 | ;;;;;; 641000)) | 9123 | ;;;;;; 215000)) |
| 9113 | ;;; Generated autoloads from erc/erc-xdcc.el | 9124 | ;;; Generated autoloads from erc/erc-xdcc.el |
| 9114 | (autoload 'erc-xdcc-mode "erc-xdcc") | 9125 | (autoload 'erc-xdcc-mode "erc-xdcc") |
| 9115 | 9126 | ||
| @@ -9120,8 +9131,8 @@ Add a file to `erc-xdcc-files'. | |||
| 9120 | 9131 | ||
| 9121 | ;;;*** | 9132 | ;;;*** |
| 9122 | 9133 | ||
| 9123 | ;;;### (autoloads nil "ert" "emacs-lisp/ert.el" (21607 54477 800124 | 9134 | ;;;### (autoloads nil "ert" "emacs-lisp/ert.el" (21604 48550 17934 |
| 9124 | ;;;;;; 118000)) | 9135 | ;;;;;; 214000)) |
| 9125 | ;;; Generated autoloads from emacs-lisp/ert.el | 9136 | ;;; Generated autoloads from emacs-lisp/ert.el |
| 9126 | 9137 | ||
| 9127 | (autoload 'ert-deftest "ert" "\ | 9138 | (autoload 'ert-deftest "ert" "\ |
| @@ -9139,7 +9150,11 @@ Tests that are expected to fail can be marked as such | |||
| 9139 | using :expected-result. See `ert-test-result-type-p' for a | 9150 | using :expected-result. See `ert-test-result-type-p' for a |
| 9140 | description of valid values for RESULT-TYPE. | 9151 | description of valid values for RESULT-TYPE. |
| 9141 | 9152 | ||
| 9142 | \(fn NAME () [DOCSTRING] [:expected-result RESULT-TYPE] [:tags '(TAG...)] BODY...)" nil (quote macro)) | 9153 | \(fn NAME () [DOCSTRING] [:expected-result RESULT-TYPE] [:tags '(TAG...)] BODY...)" nil t) |
| 9154 | |||
| 9155 | (function-put 'ert-deftest 'doc-string-elt '3) | ||
| 9156 | |||
| 9157 | (function-put 'ert-deftest 'lisp-indent-function '2) | ||
| 9143 | 9158 | ||
| 9144 | (put 'ert-deftest 'lisp-indent-function 2) | 9159 | (put 'ert-deftest 'lisp-indent-function 2) |
| 9145 | 9160 | ||
| @@ -9186,8 +9201,8 @@ Display the documentation for TEST-OR-TEST-NAME (a symbol or ert-test). | |||
| 9186 | 9201 | ||
| 9187 | ;;;*** | 9202 | ;;;*** |
| 9188 | 9203 | ||
| 9189 | ;;;### (autoloads nil "ert-x" "emacs-lisp/ert-x.el" (21607 54477 | 9204 | ;;;### (autoloads nil "ert-x" "emacs-lisp/ert-x.el" (21604 48550 |
| 9190 | ;;;;;; 800124 118000)) | 9205 | ;;;;;; 17934 214000)) |
| 9191 | ;;; Generated autoloads from emacs-lisp/ert-x.el | 9206 | ;;; Generated autoloads from emacs-lisp/ert-x.el |
| 9192 | 9207 | ||
| 9193 | (put 'ert-with-test-buffer 'lisp-indent-function 1) | 9208 | (put 'ert-with-test-buffer 'lisp-indent-function 1) |
| @@ -9199,8 +9214,8 @@ Kill all test buffers that are still live. | |||
| 9199 | 9214 | ||
| 9200 | ;;;*** | 9215 | ;;;*** |
| 9201 | 9216 | ||
| 9202 | ;;;### (autoloads nil "esh-mode" "eshell/esh-mode.el" (21607 54478 | 9217 | ;;;### (autoloads nil "esh-mode" "eshell/esh-mode.el" (21604 48550 |
| 9203 | ;;;;;; 300138 641000)) | 9218 | ;;;;;; 53934 216000)) |
| 9204 | ;;; Generated autoloads from eshell/esh-mode.el | 9219 | ;;; Generated autoloads from eshell/esh-mode.el |
| 9205 | 9220 | ||
| 9206 | (autoload 'eshell-mode "esh-mode" "\ | 9221 | (autoload 'eshell-mode "esh-mode" "\ |
| @@ -9210,8 +9225,8 @@ Emacs shell interactive mode. | |||
| 9210 | 9225 | ||
| 9211 | ;;;*** | 9226 | ;;;*** |
| 9212 | 9227 | ||
| 9213 | ;;;### (autoloads nil "eshell" "eshell/eshell.el" (21607 54478 300138 | 9228 | ;;;### (autoloads nil "eshell" "eshell/eshell.el" (21604 48550 53934 |
| 9214 | ;;;;;; 641000)) | 9229 | ;;;;;; 216000)) |
| 9215 | ;;; Generated autoloads from eshell/eshell.el | 9230 | ;;; Generated autoloads from eshell/eshell.el |
| 9216 | (push (purecopy '(eshell 2 4 2)) package--builtin-versions) | 9231 | (push (purecopy '(eshell 2 4 2)) package--builtin-versions) |
| 9217 | 9232 | ||
| @@ -9246,8 +9261,8 @@ corresponding to a successful execution. | |||
| 9246 | 9261 | ||
| 9247 | ;;;*** | 9262 | ;;;*** |
| 9248 | 9263 | ||
| 9249 | ;;;### (autoloads nil "etags" "progmodes/etags.el" (21607 54478 800121 | 9264 | ;;;### (autoloads nil "etags" "progmodes/etags.el" (21660 25453 16850 |
| 9250 | ;;;;;; 42000)) | 9265 | ;;;;;; 17000)) |
| 9251 | ;;; Generated autoloads from progmodes/etags.el | 9266 | ;;; Generated autoloads from progmodes/etags.el |
| 9252 | 9267 | ||
| 9253 | (defvar tags-file-name nil "\ | 9268 | (defvar tags-file-name nil "\ |
| @@ -9340,6 +9355,11 @@ as they appeared in the `etags' command that created the table, usually | |||
| 9340 | without directory names. | 9355 | without directory names. |
| 9341 | 9356 | ||
| 9342 | \(fn)" nil nil) | 9357 | \(fn)" nil nil) |
| 9358 | |||
| 9359 | (autoload 'tags-lazy-completion-table "etags" "\ | ||
| 9360 | |||
| 9361 | |||
| 9362 | \(fn)" nil nil) | ||
| 9343 | (defun tags-completion-at-point-function () | 9363 | (defun tags-completion-at-point-function () |
| 9344 | (if (or tags-table-list tags-file-name) | 9364 | (if (or tags-table-list tags-file-name) |
| 9345 | (progn | 9365 | (progn |
| @@ -9388,7 +9408,6 @@ Contrast this with the ring of marks gone to by the command. | |||
| 9388 | See documentation of variable `tags-file-name'. | 9408 | See documentation of variable `tags-file-name'. |
| 9389 | 9409 | ||
| 9390 | \(fn TAGNAME &optional NEXT-P REGEXP-P)" t nil) | 9410 | \(fn TAGNAME &optional NEXT-P REGEXP-P)" t nil) |
| 9391 | (define-key esc-map "." 'find-tag) | ||
| 9392 | 9411 | ||
| 9393 | (autoload 'find-tag-other-window "etags" "\ | 9412 | (autoload 'find-tag-other-window "etags" "\ |
| 9394 | Find tag (in current tags table) whose name contains TAGNAME. | 9413 | Find tag (in current tags table) whose name contains TAGNAME. |
| @@ -9411,7 +9430,6 @@ Contrast this with the ring of marks gone to by the command. | |||
| 9411 | See documentation of variable `tags-file-name'. | 9430 | See documentation of variable `tags-file-name'. |
| 9412 | 9431 | ||
| 9413 | \(fn TAGNAME &optional NEXT-P REGEXP-P)" t nil) | 9432 | \(fn TAGNAME &optional NEXT-P REGEXP-P)" t nil) |
| 9414 | (define-key ctl-x-4-map "." 'find-tag-other-window) | ||
| 9415 | 9433 | ||
| 9416 | (autoload 'find-tag-other-frame "etags" "\ | 9434 | (autoload 'find-tag-other-frame "etags" "\ |
| 9417 | Find tag (in current tags table) whose name contains TAGNAME. | 9435 | Find tag (in current tags table) whose name contains TAGNAME. |
| @@ -9434,7 +9452,6 @@ Contrast this with the ring of marks gone to by the command. | |||
| 9434 | See documentation of variable `tags-file-name'. | 9452 | See documentation of variable `tags-file-name'. |
| 9435 | 9453 | ||
| 9436 | \(fn TAGNAME &optional NEXT-P)" t nil) | 9454 | \(fn TAGNAME &optional NEXT-P)" t nil) |
| 9437 | (define-key ctl-x-5-map "." 'find-tag-other-frame) | ||
| 9438 | 9455 | ||
| 9439 | (autoload 'find-tag-regexp "etags" "\ | 9456 | (autoload 'find-tag-regexp "etags" "\ |
| 9440 | Find tag (in current tags table) whose name matches REGEXP. | 9457 | Find tag (in current tags table) whose name matches REGEXP. |
| @@ -9455,17 +9472,8 @@ Contrast this with the ring of marks gone to by the command. | |||
| 9455 | See documentation of variable `tags-file-name'. | 9472 | See documentation of variable `tags-file-name'. |
| 9456 | 9473 | ||
| 9457 | \(fn REGEXP &optional NEXT-P OTHER-WINDOW)" t nil) | 9474 | \(fn REGEXP &optional NEXT-P OTHER-WINDOW)" t nil) |
| 9458 | (define-key esc-map [?\C-.] 'find-tag-regexp) | ||
| 9459 | (define-key esc-map "*" 'pop-tag-mark) | ||
| 9460 | 9475 | ||
| 9461 | (autoload 'pop-tag-mark "etags" "\ | 9476 | (defalias 'pop-tag-mark 'xref-pop-marker-stack) |
| 9462 | Pop back to where \\[find-tag] was last invoked. | ||
| 9463 | |||
| 9464 | This is distinct from invoking \\[find-tag] with a negative argument | ||
| 9465 | since that pops a stack of markers at which tags were found, not from | ||
| 9466 | where they were found. | ||
| 9467 | |||
| 9468 | \(fn)" t nil) | ||
| 9469 | 9477 | ||
| 9470 | (autoload 'next-file "etags" "\ | 9478 | (autoload 'next-file "etags" "\ |
| 9471 | Select next file among files in current tags table. | 9479 | Select next file among files in current tags table. |
| @@ -9494,7 +9502,6 @@ evaluate to operate on an interesting file. If the latter evaluates to | |||
| 9494 | nil, we exit; otherwise we scan the next file. | 9502 | nil, we exit; otherwise we scan the next file. |
| 9495 | 9503 | ||
| 9496 | \(fn &optional FIRST-TIME)" t nil) | 9504 | \(fn &optional FIRST-TIME)" t nil) |
| 9497 | (define-key esc-map "," 'tags-loop-continue) | ||
| 9498 | 9505 | ||
| 9499 | (autoload 'tags-search "etags" "\ | 9506 | (autoload 'tags-search "etags" "\ |
| 9500 | Search through all files listed in tags table for match for REGEXP. | 9507 | Search through all files listed in tags table for match for REGEXP. |
| @@ -9553,10 +9560,15 @@ for \\[find-tag] (which see). | |||
| 9553 | 9560 | ||
| 9554 | \(fn)" t nil) | 9561 | \(fn)" t nil) |
| 9555 | 9562 | ||
| 9563 | (autoload 'etags-xref-find "etags" "\ | ||
| 9564 | |||
| 9565 | |||
| 9566 | \(fn ACTION ID)" nil nil) | ||
| 9567 | |||
| 9556 | ;;;*** | 9568 | ;;;*** |
| 9557 | 9569 | ||
| 9558 | ;;;### (autoloads nil "ethio-util" "language/ethio-util.el" (21607 | 9570 | ;;;### (autoloads nil "ethio-util" "language/ethio-util.el" (21604 |
| 9559 | ;;;;;; 54478 300138 641000)) | 9571 | ;;;;;; 48550 145934 219000)) |
| 9560 | ;;; Generated autoloads from language/ethio-util.el | 9572 | ;;; Generated autoloads from language/ethio-util.el |
| 9561 | 9573 | ||
| 9562 | (autoload 'setup-ethiopic-environment-internal "ethio-util" "\ | 9574 | (autoload 'setup-ethiopic-environment-internal "ethio-util" "\ |
| @@ -9724,7 +9736,7 @@ With ARG, insert that many delimiters. | |||
| 9724 | 9736 | ||
| 9725 | ;;;*** | 9737 | ;;;*** |
| 9726 | 9738 | ||
| 9727 | ;;;### (autoloads nil "eudc" "net/eudc.el" (21607 54478 300138 641000)) | 9739 | ;;;### (autoloads nil "eudc" "net/eudc.el" (21604 48550 213934 222000)) |
| 9728 | ;;; Generated autoloads from net/eudc.el | 9740 | ;;; Generated autoloads from net/eudc.el |
| 9729 | 9741 | ||
| 9730 | (autoload 'eudc-set-server "eudc" "\ | 9742 | (autoload 'eudc-set-server "eudc" "\ |
| @@ -9778,8 +9790,8 @@ This does nothing except loading eudc by autoload side-effect. | |||
| 9778 | 9790 | ||
| 9779 | ;;;*** | 9791 | ;;;*** |
| 9780 | 9792 | ||
| 9781 | ;;;### (autoloads nil "eudc-bob" "net/eudc-bob.el" (21607 54478 300138 | 9793 | ;;;### (autoloads nil "eudc-bob" "net/eudc-bob.el" (21604 48550 213934 |
| 9782 | ;;;;;; 641000)) | 9794 | ;;;;;; 222000)) |
| 9783 | ;;; Generated autoloads from net/eudc-bob.el | 9795 | ;;; Generated autoloads from net/eudc-bob.el |
| 9784 | 9796 | ||
| 9785 | (autoload 'eudc-display-generic-binary "eudc-bob" "\ | 9797 | (autoload 'eudc-display-generic-binary "eudc-bob" "\ |
| @@ -9814,8 +9826,8 @@ Display a button for the JPEG DATA. | |||
| 9814 | 9826 | ||
| 9815 | ;;;*** | 9827 | ;;;*** |
| 9816 | 9828 | ||
| 9817 | ;;;### (autoloads nil "eudc-export" "net/eudc-export.el" (21607 54478 | 9829 | ;;;### (autoloads nil "eudc-export" "net/eudc-export.el" (21604 48550 |
| 9818 | ;;;;;; 300138 641000)) | 9830 | ;;;;;; 213934 222000)) |
| 9819 | ;;; Generated autoloads from net/eudc-export.el | 9831 | ;;; Generated autoloads from net/eudc-export.el |
| 9820 | 9832 | ||
| 9821 | (autoload 'eudc-insert-record-at-point-into-bbdb "eudc-export" "\ | 9833 | (autoload 'eudc-insert-record-at-point-into-bbdb "eudc-export" "\ |
| @@ -9831,8 +9843,8 @@ Call `eudc-insert-record-at-point-into-bbdb' if on a record. | |||
| 9831 | 9843 | ||
| 9832 | ;;;*** | 9844 | ;;;*** |
| 9833 | 9845 | ||
| 9834 | ;;;### (autoloads nil "eudc-hotlist" "net/eudc-hotlist.el" (21607 | 9846 | ;;;### (autoloads nil "eudc-hotlist" "net/eudc-hotlist.el" (21604 |
| 9835 | ;;;;;; 54478 300138 641000)) | 9847 | ;;;;;; 48550 213934 222000)) |
| 9836 | ;;; Generated autoloads from net/eudc-hotlist.el | 9848 | ;;; Generated autoloads from net/eudc-hotlist.el |
| 9837 | 9849 | ||
| 9838 | (autoload 'eudc-edit-hotlist "eudc-hotlist" "\ | 9850 | (autoload 'eudc-edit-hotlist "eudc-hotlist" "\ |
| @@ -9842,8 +9854,8 @@ Edit the hotlist of directory servers in a specialized buffer. | |||
| 9842 | 9854 | ||
| 9843 | ;;;*** | 9855 | ;;;*** |
| 9844 | 9856 | ||
| 9845 | ;;;### (autoloads nil "ewoc" "emacs-lisp/ewoc.el" (21607 54477 800124 | 9857 | ;;;### (autoloads nil "ewoc" "emacs-lisp/ewoc.el" (21604 48550 17934 |
| 9846 | ;;;;;; 118000)) | 9858 | ;;;;;; 214000)) |
| 9847 | ;;; Generated autoloads from emacs-lisp/ewoc.el | 9859 | ;;; Generated autoloads from emacs-lisp/ewoc.el |
| 9848 | 9860 | ||
| 9849 | (autoload 'ewoc-create "ewoc" "\ | 9861 | (autoload 'ewoc-create "ewoc" "\ |
| @@ -9869,7 +9881,7 @@ fourth arg NOSEP non-nil inhibits this. | |||
| 9869 | 9881 | ||
| 9870 | ;;;*** | 9882 | ;;;*** |
| 9871 | 9883 | ||
| 9872 | ;;;### (autoloads nil "eww" "net/eww.el" (21628 44513 720130 219000)) | 9884 | ;;;### (autoloads nil "eww" "net/eww.el" (21640 32530 974334 457000)) |
| 9873 | ;;; Generated autoloads from net/eww.el | 9885 | ;;; Generated autoloads from net/eww.el |
| 9874 | 9886 | ||
| 9875 | (autoload 'eww "eww" "\ | 9887 | (autoload 'eww "eww" "\ |
| @@ -9903,8 +9915,8 @@ Display the bookmarks. | |||
| 9903 | 9915 | ||
| 9904 | ;;;*** | 9916 | ;;;*** |
| 9905 | 9917 | ||
| 9906 | ;;;### (autoloads nil "executable" "progmodes/executable.el" (21607 | 9918 | ;;;### (autoloads nil "executable" "progmodes/executable.el" (21604 |
| 9907 | ;;;;;; 54478 800121 42000)) | 9919 | ;;;;;; 48550 333934 226000)) |
| 9908 | ;;; Generated autoloads from progmodes/executable.el | 9920 | ;;; Generated autoloads from progmodes/executable.el |
| 9909 | 9921 | ||
| 9910 | (autoload 'executable-command-find-posix-p "executable" "\ | 9922 | (autoload 'executable-command-find-posix-p "executable" "\ |
| @@ -9945,7 +9957,7 @@ file modes. | |||
| 9945 | 9957 | ||
| 9946 | ;;;*** | 9958 | ;;;*** |
| 9947 | 9959 | ||
| 9948 | ;;;### (autoloads nil "expand" "expand.el" (21607 54478 300138 641000)) | 9960 | ;;;### (autoloads nil "expand" "expand.el" (21604 48550 53934 216000)) |
| 9949 | ;;; Generated autoloads from expand.el | 9961 | ;;; Generated autoloads from expand.el |
| 9950 | 9962 | ||
| 9951 | (autoload 'expand-add-abbrevs "expand" "\ | 9963 | (autoload 'expand-add-abbrevs "expand" "\ |
| @@ -9994,8 +10006,8 @@ This is used only in conjunction with `expand-add-abbrevs'. | |||
| 9994 | 10006 | ||
| 9995 | ;;;*** | 10007 | ;;;*** |
| 9996 | 10008 | ||
| 9997 | ;;;### (autoloads nil "f90" "progmodes/f90.el" (21607 54478 800121 | 10009 | ;;;### (autoloads nil "f90" "progmodes/f90.el" (21604 48550 333934 |
| 9998 | ;;;;;; 42000)) | 10010 | ;;;;;; 226000)) |
| 9999 | ;;; Generated autoloads from progmodes/f90.el | 10011 | ;;; Generated autoloads from progmodes/f90.el |
| 10000 | 10012 | ||
| 10001 | (autoload 'f90-mode "f90" "\ | 10013 | (autoload 'f90-mode "f90" "\ |
| @@ -10062,8 +10074,8 @@ with no args, if that value is non-nil. | |||
| 10062 | 10074 | ||
| 10063 | ;;;*** | 10075 | ;;;*** |
| 10064 | 10076 | ||
| 10065 | ;;;### (autoloads nil "face-remap" "face-remap.el" (21607 54478 300138 | 10077 | ;;;### (autoloads nil "face-remap" "face-remap.el" (21604 48550 53934 |
| 10066 | ;;;;;; 641000)) | 10078 | ;;;;;; 216000)) |
| 10067 | ;;; Generated autoloads from face-remap.el | 10079 | ;;; Generated autoloads from face-remap.el |
| 10068 | 10080 | ||
| 10069 | (autoload 'face-remap-add-relative "face-remap" "\ | 10081 | (autoload 'face-remap-add-relative "face-remap" "\ |
| @@ -10222,8 +10234,8 @@ Besides the choice of face, it is the same as `buffer-face-mode'. | |||
| 10222 | 10234 | ||
| 10223 | ;;;*** | 10235 | ;;;*** |
| 10224 | 10236 | ||
| 10225 | ;;;### (autoloads nil "feedmail" "mail/feedmail.el" (21607 54478 | 10237 | ;;;### (autoloads nil "feedmail" "mail/feedmail.el" (21604 48550 |
| 10226 | ;;;;;; 300138 641000)) | 10238 | ;;;;;; 181934 220000)) |
| 10227 | ;;; Generated autoloads from mail/feedmail.el | 10239 | ;;; Generated autoloads from mail/feedmail.el |
| 10228 | (push (purecopy '(feedmail 11)) package--builtin-versions) | 10240 | (push (purecopy '(feedmail 11)) package--builtin-versions) |
| 10229 | 10241 | ||
| @@ -10277,7 +10289,7 @@ you can set `feedmail-queue-reminder-alist' to nil. | |||
| 10277 | 10289 | ||
| 10278 | ;;;*** | 10290 | ;;;*** |
| 10279 | 10291 | ||
| 10280 | ;;;### (autoloads nil "ffap" "ffap.el" (21607 54478 300138 641000)) | 10292 | ;;;### (autoloads nil "ffap" "ffap.el" (21604 48550 57934 216000)) |
| 10281 | ;;; Generated autoloads from ffap.el | 10293 | ;;; Generated autoloads from ffap.el |
| 10282 | 10294 | ||
| 10283 | (autoload 'ffap-next "ffap" "\ | 10295 | (autoload 'ffap-next "ffap" "\ |
| @@ -10340,8 +10352,8 @@ Evaluate the forms in variable `ffap-bindings'. | |||
| 10340 | 10352 | ||
| 10341 | ;;;*** | 10353 | ;;;*** |
| 10342 | 10354 | ||
| 10343 | ;;;### (autoloads nil "filecache" "filecache.el" (21607 54478 300138 | 10355 | ;;;### (autoloads nil "filecache" "filecache.el" (21604 48550 57934 |
| 10344 | ;;;;;; 641000)) | 10356 | ;;;;;; 216000)) |
| 10345 | ;;; Generated autoloads from filecache.el | 10357 | ;;; Generated autoloads from filecache.el |
| 10346 | 10358 | ||
| 10347 | (autoload 'file-cache-add-directory "filecache" "\ | 10359 | (autoload 'file-cache-add-directory "filecache" "\ |
| @@ -10398,8 +10410,8 @@ the name is considered already unique; only the second substitution | |||
| 10398 | 10410 | ||
| 10399 | ;;;*** | 10411 | ;;;*** |
| 10400 | 10412 | ||
| 10401 | ;;;### (autoloads nil "filenotify" "filenotify.el" (21607 54478 300138 | 10413 | ;;;### (autoloads nil "filenotify" "filenotify.el" (21604 48550 57934 |
| 10402 | ;;;;;; 641000)) | 10414 | ;;;;;; 216000)) |
| 10403 | ;;; Generated autoloads from filenotify.el | 10415 | ;;; Generated autoloads from filenotify.el |
| 10404 | 10416 | ||
| 10405 | (autoload 'file-notify-handle-event "filenotify" "\ | 10417 | (autoload 'file-notify-handle-event "filenotify" "\ |
| @@ -10411,8 +10423,7 @@ Otherwise, signal a `file-notify-error'. | |||
| 10411 | 10423 | ||
| 10412 | ;;;*** | 10424 | ;;;*** |
| 10413 | 10425 | ||
| 10414 | ;;;### (autoloads nil "files-x" "files-x.el" (21607 54478 300138 | 10426 | ;;;### (autoloads nil "files-x" "files-x.el" (21604 48550 57934 216000)) |
| 10415 | ;;;;;; 641000)) | ||
| 10416 | ;;; Generated autoloads from files-x.el | 10427 | ;;; Generated autoloads from files-x.el |
| 10417 | 10428 | ||
| 10418 | (autoload 'add-file-local-variable "files-x" "\ | 10429 | (autoload 'add-file-local-variable "files-x" "\ |
| @@ -10477,8 +10488,8 @@ Copy directory-local variables to the -*- line. | |||
| 10477 | 10488 | ||
| 10478 | ;;;*** | 10489 | ;;;*** |
| 10479 | 10490 | ||
| 10480 | ;;;### (autoloads nil "filesets" "filesets.el" (21607 54478 300138 | 10491 | ;;;### (autoloads nil "filesets" "filesets.el" (21604 48550 61934 |
| 10481 | ;;;;;; 641000)) | 10492 | ;;;;;; 216000)) |
| 10482 | ;;; Generated autoloads from filesets.el | 10493 | ;;; Generated autoloads from filesets.el |
| 10483 | 10494 | ||
| 10484 | (autoload 'filesets-init "filesets" "\ | 10495 | (autoload 'filesets-init "filesets" "\ |
| @@ -10489,8 +10500,8 @@ Set up hooks, load the cache file -- if existing -- and build the menu. | |||
| 10489 | 10500 | ||
| 10490 | ;;;*** | 10501 | ;;;*** |
| 10491 | 10502 | ||
| 10492 | ;;;### (autoloads nil "find-cmd" "find-cmd.el" (21607 54478 300138 | 10503 | ;;;### (autoloads nil "find-cmd" "find-cmd.el" (21604 48550 61934 |
| 10493 | ;;;;;; 641000)) | 10504 | ;;;;;; 216000)) |
| 10494 | ;;; Generated autoloads from find-cmd.el | 10505 | ;;; Generated autoloads from find-cmd.el |
| 10495 | (push (purecopy '(find-cmd 0 6)) package--builtin-versions) | 10506 | (push (purecopy '(find-cmd 0 6)) package--builtin-versions) |
| 10496 | 10507 | ||
| @@ -10510,8 +10521,8 @@ result is a string that should be ready for the command line. | |||
| 10510 | 10521 | ||
| 10511 | ;;;*** | 10522 | ;;;*** |
| 10512 | 10523 | ||
| 10513 | ;;;### (autoloads nil "find-dired" "find-dired.el" (21607 54478 300138 | 10524 | ;;;### (autoloads nil "find-dired" "find-dired.el" (21604 48550 61934 |
| 10514 | ;;;;;; 641000)) | 10525 | ;;;;;; 216000)) |
| 10515 | ;;; Generated autoloads from find-dired.el | 10526 | ;;; Generated autoloads from find-dired.el |
| 10516 | 10527 | ||
| 10517 | (autoload 'find-dired "find-dired" "\ | 10528 | (autoload 'find-dired "find-dired" "\ |
| @@ -10551,8 +10562,8 @@ use in place of \"-ls\" as the final argument. | |||
| 10551 | 10562 | ||
| 10552 | ;;;*** | 10563 | ;;;*** |
| 10553 | 10564 | ||
| 10554 | ;;;### (autoloads nil "find-file" "find-file.el" (21607 54478 300138 | 10565 | ;;;### (autoloads nil "find-file" "find-file.el" (21604 48550 61934 |
| 10555 | ;;;;;; 641000)) | 10566 | ;;;;;; 216000)) |
| 10556 | ;;; Generated autoloads from find-file.el | 10567 | ;;; Generated autoloads from find-file.el |
| 10557 | 10568 | ||
| 10558 | (defvar ff-special-constructs `((,(purecopy "^#\\s *\\(include\\|import\\)\\s +[<\"]\\(.*\\)[>\"]") lambda nil (buffer-substring (match-beginning 2) (match-end 2)))) "\ | 10569 | (defvar ff-special-constructs `((,(purecopy "^#\\s *\\(include\\|import\\)\\s +[<\"]\\(.*\\)[>\"]") lambda nil (buffer-substring (match-beginning 2) (match-end 2)))) "\ |
| @@ -10642,8 +10653,8 @@ Visit the file you click on in another window. | |||
| 10642 | 10653 | ||
| 10643 | ;;;*** | 10654 | ;;;*** |
| 10644 | 10655 | ||
| 10645 | ;;;### (autoloads nil "find-func" "emacs-lisp/find-func.el" (21607 | 10656 | ;;;### (autoloads nil "find-func" "emacs-lisp/find-func.el" (21640 |
| 10646 | ;;;;;; 54477 800124 118000)) | 10657 | ;;;;;; 60472 610520 813000)) |
| 10647 | ;;; Generated autoloads from emacs-lisp/find-func.el | 10658 | ;;; Generated autoloads from emacs-lisp/find-func.el |
| 10648 | 10659 | ||
| 10649 | (autoload 'find-library "find-func" "\ | 10660 | (autoload 'find-library "find-func" "\ |
| @@ -10801,8 +10812,8 @@ Define some key bindings for the find-function family of functions. | |||
| 10801 | 10812 | ||
| 10802 | ;;;*** | 10813 | ;;;*** |
| 10803 | 10814 | ||
| 10804 | ;;;### (autoloads nil "find-lisp" "find-lisp.el" (21607 54478 300138 | 10815 | ;;;### (autoloads nil "find-lisp" "find-lisp.el" (21604 48550 61934 |
| 10805 | ;;;;;; 641000)) | 10816 | ;;;;;; 216000)) |
| 10806 | ;;; Generated autoloads from find-lisp.el | 10817 | ;;; Generated autoloads from find-lisp.el |
| 10807 | 10818 | ||
| 10808 | (autoload 'find-lisp-find-dired "find-lisp" "\ | 10819 | (autoload 'find-lisp-find-dired "find-lisp" "\ |
| @@ -10822,7 +10833,7 @@ Change the filter on a `find-lisp-find-dired' buffer to REGEXP. | |||
| 10822 | 10833 | ||
| 10823 | ;;;*** | 10834 | ;;;*** |
| 10824 | 10835 | ||
| 10825 | ;;;### (autoloads nil "finder" "finder.el" (21607 54478 300138 641000)) | 10836 | ;;;### (autoloads nil "finder" "finder.el" (21604 48550 61934 216000)) |
| 10826 | ;;; Generated autoloads from finder.el | 10837 | ;;; Generated autoloads from finder.el |
| 10827 | (push (purecopy '(finder 1 0)) package--builtin-versions) | 10838 | (push (purecopy '(finder 1 0)) package--builtin-versions) |
| 10828 | 10839 | ||
| @@ -10844,8 +10855,8 @@ Find packages matching a given keyword. | |||
| 10844 | 10855 | ||
| 10845 | ;;;*** | 10856 | ;;;*** |
| 10846 | 10857 | ||
| 10847 | ;;;### (autoloads nil "flow-ctrl" "flow-ctrl.el" (21607 54478 300138 | 10858 | ;;;### (autoloads nil "flow-ctrl" "flow-ctrl.el" (21604 48550 61934 |
| 10848 | ;;;;;; 641000)) | 10859 | ;;;;;; 216000)) |
| 10849 | ;;; Generated autoloads from flow-ctrl.el | 10860 | ;;; Generated autoloads from flow-ctrl.el |
| 10850 | 10861 | ||
| 10851 | (autoload 'enable-flow-control "flow-ctrl" "\ | 10862 | (autoload 'enable-flow-control "flow-ctrl" "\ |
| @@ -10866,8 +10877,8 @@ to get the effect of a C-q. | |||
| 10866 | 10877 | ||
| 10867 | ;;;*** | 10878 | ;;;*** |
| 10868 | 10879 | ||
| 10869 | ;;;### (autoloads nil "flow-fill" "gnus/flow-fill.el" (21607 54478 | 10880 | ;;;### (autoloads nil "flow-fill" "gnus/flow-fill.el" (21604 48550 |
| 10870 | ;;;;;; 300138 641000)) | 10881 | ;;;;;; 81934 217000)) |
| 10871 | ;;; Generated autoloads from gnus/flow-fill.el | 10882 | ;;; Generated autoloads from gnus/flow-fill.el |
| 10872 | 10883 | ||
| 10873 | (autoload 'fill-flowed-encode "flow-fill" "\ | 10884 | (autoload 'fill-flowed-encode "flow-fill" "\ |
| @@ -10882,8 +10893,8 @@ to get the effect of a C-q. | |||
| 10882 | 10893 | ||
| 10883 | ;;;*** | 10894 | ;;;*** |
| 10884 | 10895 | ||
| 10885 | ;;;### (autoloads nil "flymake" "progmodes/flymake.el" (21607 54478 | 10896 | ;;;### (autoloads nil "flymake" "progmodes/flymake.el" (21604 48550 |
| 10886 | ;;;;;; 800121 42000)) | 10897 | ;;;;;; 333934 226000)) |
| 10887 | ;;; Generated autoloads from progmodes/flymake.el | 10898 | ;;; Generated autoloads from progmodes/flymake.el |
| 10888 | (push (purecopy '(flymake 0 3)) package--builtin-versions) | 10899 | (push (purecopy '(flymake 0 3)) package--builtin-versions) |
| 10889 | 10900 | ||
| @@ -10913,8 +10924,8 @@ Turn flymake mode off. | |||
| 10913 | 10924 | ||
| 10914 | ;;;*** | 10925 | ;;;*** |
| 10915 | 10926 | ||
| 10916 | ;;;### (autoloads nil "flyspell" "textmodes/flyspell.el" (21607 54478 | 10927 | ;;;### (autoloads nil "flyspell" "textmodes/flyspell.el" (21604 48550 |
| 10917 | ;;;;;; 800121 42000)) | 10928 | ;;;;;; 397934 228000)) |
| 10918 | ;;; Generated autoloads from textmodes/flyspell.el | 10929 | ;;; Generated autoloads from textmodes/flyspell.el |
| 10919 | 10930 | ||
| 10920 | (autoload 'flyspell-prog-mode "flyspell" "\ | 10931 | (autoload 'flyspell-prog-mode "flyspell" "\ |
| @@ -10984,14 +10995,13 @@ Flyspell whole buffer. | |||
| 10984 | 10995 | ||
| 10985 | ;;;*** | 10996 | ;;;*** |
| 10986 | 10997 | ||
| 10987 | ;;;### (autoloads nil "foldout" "foldout.el" (21607 54478 300138 | 10998 | ;;;### (autoloads nil "foldout" "foldout.el" (21604 48550 61934 216000)) |
| 10988 | ;;;;;; 641000)) | ||
| 10989 | ;;; Generated autoloads from foldout.el | 10999 | ;;; Generated autoloads from foldout.el |
| 10990 | (push (purecopy '(foldout 1 10)) package--builtin-versions) | 11000 | (push (purecopy '(foldout 1 10)) package--builtin-versions) |
| 10991 | 11001 | ||
| 10992 | ;;;*** | 11002 | ;;;*** |
| 10993 | 11003 | ||
| 10994 | ;;;### (autoloads nil "follow" "follow.el" (21607 54478 300138 641000)) | 11004 | ;;;### (autoloads nil "follow" "follow.el" (21604 48550 61934 216000)) |
| 10995 | ;;; Generated autoloads from follow.el | 11005 | ;;; Generated autoloads from follow.el |
| 10996 | 11006 | ||
| 10997 | (autoload 'turn-on-follow-mode "follow" "\ | 11007 | (autoload 'turn-on-follow-mode "follow" "\ |
| @@ -11059,8 +11069,8 @@ selected if the original window is the first one in the frame. | |||
| 11059 | 11069 | ||
| 11060 | ;;;*** | 11070 | ;;;*** |
| 11061 | 11071 | ||
| 11062 | ;;;### (autoloads nil "footnote" "mail/footnote.el" (21607 54478 | 11072 | ;;;### (autoloads nil "footnote" "mail/footnote.el" (21604 48550 |
| 11063 | ;;;;;; 300138 641000)) | 11073 | ;;;;;; 181934 220000)) |
| 11064 | ;;; Generated autoloads from mail/footnote.el | 11074 | ;;; Generated autoloads from mail/footnote.el |
| 11065 | (push (purecopy '(footnote 0 19)) package--builtin-versions) | 11075 | (push (purecopy '(footnote 0 19)) package--builtin-versions) |
| 11066 | 11076 | ||
| @@ -11079,7 +11089,7 @@ play around with the following keys: | |||
| 11079 | 11089 | ||
| 11080 | ;;;*** | 11090 | ;;;*** |
| 11081 | 11091 | ||
| 11082 | ;;;### (autoloads nil "forms" "forms.el" (21607 54478 300138 641000)) | 11092 | ;;;### (autoloads nil "forms" "forms.el" (21604 48550 65934 216000)) |
| 11083 | ;;; Generated autoloads from forms.el | 11093 | ;;; Generated autoloads from forms.el |
| 11084 | 11094 | ||
| 11085 | (autoload 'forms-mode "forms" "\ | 11095 | (autoload 'forms-mode "forms" "\ |
| @@ -11115,8 +11125,8 @@ Visit a file in Forms mode in other window. | |||
| 11115 | 11125 | ||
| 11116 | ;;;*** | 11126 | ;;;*** |
| 11117 | 11127 | ||
| 11118 | ;;;### (autoloads nil "fortran" "progmodes/fortran.el" (21607 54478 | 11128 | ;;;### (autoloads nil "fortran" "progmodes/fortran.el" (21604 48550 |
| 11119 | ;;;;;; 800121 42000)) | 11129 | ;;;;;; 337934 226000)) |
| 11120 | ;;; Generated autoloads from progmodes/fortran.el | 11130 | ;;; Generated autoloads from progmodes/fortran.el |
| 11121 | 11131 | ||
| 11122 | (autoload 'fortran-mode "fortran" "\ | 11132 | (autoload 'fortran-mode "fortran" "\ |
| @@ -11193,8 +11203,8 @@ with no args, if that value is non-nil. | |||
| 11193 | 11203 | ||
| 11194 | ;;;*** | 11204 | ;;;*** |
| 11195 | 11205 | ||
| 11196 | ;;;### (autoloads nil "fortune" "play/fortune.el" (21607 54478 800121 | 11206 | ;;;### (autoloads nil "fortune" "play/fortune.el" (21604 48550 305934 |
| 11197 | ;;;;;; 42000)) | 11207 | ;;;;;; 225000)) |
| 11198 | ;;; Generated autoloads from play/fortune.el | 11208 | ;;; Generated autoloads from play/fortune.el |
| 11199 | 11209 | ||
| 11200 | (autoload 'fortune-add-fortune "fortune" "\ | 11210 | (autoload 'fortune-add-fortune "fortune" "\ |
| @@ -11242,8 +11252,8 @@ and choose the directory as the fortune-file. | |||
| 11242 | 11252 | ||
| 11243 | ;;;*** | 11253 | ;;;*** |
| 11244 | 11254 | ||
| 11245 | ;;;### (autoloads nil "frameset" "frameset.el" (21607 54478 300138 | 11255 | ;;;### (autoloads nil "frameset" "frameset.el" (21604 48550 65934 |
| 11246 | ;;;;;; 641000)) | 11256 | ;;;;;; 216000)) |
| 11247 | ;;; Generated autoloads from frameset.el | 11257 | ;;; Generated autoloads from frameset.el |
| 11248 | 11258 | ||
| 11249 | (defvar frameset-session-filter-alist '((name . :never) (left . frameset-filter-iconified) (minibuffer . frameset-filter-minibuffer) (top . frameset-filter-iconified)) "\ | 11259 | (defvar frameset-session-filter-alist '((name . :never) (left . frameset-filter-iconified) (minibuffer . frameset-filter-minibuffer) (top . frameset-filter-iconified)) "\ |
| @@ -11429,15 +11439,15 @@ Interactively, reads the register using `register-read-with-preview'. | |||
| 11429 | 11439 | ||
| 11430 | ;;;*** | 11440 | ;;;*** |
| 11431 | 11441 | ||
| 11432 | ;;;### (autoloads nil "gamegrid" "play/gamegrid.el" (21607 54478 | 11442 | ;;;### (autoloads nil "gamegrid" "play/gamegrid.el" (21604 48550 |
| 11433 | ;;;;;; 800121 42000)) | 11443 | ;;;;;; 305934 225000)) |
| 11434 | ;;; Generated autoloads from play/gamegrid.el | 11444 | ;;; Generated autoloads from play/gamegrid.el |
| 11435 | (push (purecopy '(gamegrid 1 2)) package--builtin-versions) | 11445 | (push (purecopy '(gamegrid 1 2)) package--builtin-versions) |
| 11436 | 11446 | ||
| 11437 | ;;;*** | 11447 | ;;;*** |
| 11438 | 11448 | ||
| 11439 | ;;;### (autoloads nil "gdb-mi" "progmodes/gdb-mi.el" (21607 54478 | 11449 | ;;;### (autoloads nil "gdb-mi" "progmodes/gdb-mi.el" (21604 48550 |
| 11440 | ;;;;;; 800121 42000)) | 11450 | ;;;;;; 337934 226000)) |
| 11441 | ;;; Generated autoloads from progmodes/gdb-mi.el | 11451 | ;;; Generated autoloads from progmodes/gdb-mi.el |
| 11442 | 11452 | ||
| 11443 | (defvar gdb-enable-debug nil "\ | 11453 | (defvar gdb-enable-debug nil "\ |
| @@ -11514,8 +11524,8 @@ detailed description of this mode. | |||
| 11514 | 11524 | ||
| 11515 | ;;;*** | 11525 | ;;;*** |
| 11516 | 11526 | ||
| 11517 | ;;;### (autoloads nil "generic" "emacs-lisp/generic.el" (21607 54477 | 11527 | ;;;### (autoloads nil "generic" "emacs-lisp/generic.el" (21604 48550 |
| 11518 | ;;;;;; 800124 118000)) | 11528 | ;;;;;; 17934 214000)) |
| 11519 | ;;; Generated autoloads from emacs-lisp/generic.el | 11529 | ;;; Generated autoloads from emacs-lisp/generic.el |
| 11520 | 11530 | ||
| 11521 | (defvar generic-mode-list nil "\ | 11531 | (defvar generic-mode-list nil "\ |
| @@ -11595,8 +11605,8 @@ regular expression that can be used as an element of | |||
| 11595 | 11605 | ||
| 11596 | ;;;*** | 11606 | ;;;*** |
| 11597 | 11607 | ||
| 11598 | ;;;### (autoloads nil "glasses" "progmodes/glasses.el" (21607 54478 | 11608 | ;;;### (autoloads nil "glasses" "progmodes/glasses.el" (21604 48550 |
| 11599 | ;;;;;; 800121 42000)) | 11609 | ;;;;;; 337934 226000)) |
| 11600 | ;;; Generated autoloads from progmodes/glasses.el | 11610 | ;;; Generated autoloads from progmodes/glasses.el |
| 11601 | 11611 | ||
| 11602 | (autoload 'glasses-mode "glasses" "\ | 11612 | (autoload 'glasses-mode "glasses" "\ |
| @@ -11610,8 +11620,8 @@ add virtual separators (like underscores) at places they belong to. | |||
| 11610 | 11620 | ||
| 11611 | ;;;*** | 11621 | ;;;*** |
| 11612 | 11622 | ||
| 11613 | ;;;### (autoloads nil "gmm-utils" "gnus/gmm-utils.el" (21607 54478 | 11623 | ;;;### (autoloads nil "gmm-utils" "gnus/gmm-utils.el" (21604 48550 |
| 11614 | ;;;;;; 300138 641000)) | 11624 | ;;;;;; 81934 217000)) |
| 11615 | ;;; Generated autoloads from gnus/gmm-utils.el | 11625 | ;;; Generated autoloads from gnus/gmm-utils.el |
| 11616 | 11626 | ||
| 11617 | (autoload 'gmm-regexp-concat "gmm-utils" "\ | 11627 | (autoload 'gmm-regexp-concat "gmm-utils" "\ |
| @@ -11665,7 +11675,7 @@ DEFAULT-MAP specifies the default key map for ICON-LIST. | |||
| 11665 | 11675 | ||
| 11666 | ;;;*** | 11676 | ;;;*** |
| 11667 | 11677 | ||
| 11668 | ;;;### (autoloads nil "gnus" "gnus/gnus.el" (21607 54478 300138 641000)) | 11678 | ;;;### (autoloads nil "gnus" "gnus/gnus.el" (21604 48550 101934 217000)) |
| 11669 | ;;; Generated autoloads from gnus/gnus.el | 11679 | ;;; Generated autoloads from gnus/gnus.el |
| 11670 | (push (purecopy '(gnus 5 13)) package--builtin-versions) | 11680 | (push (purecopy '(gnus 5 13)) package--builtin-versions) |
| 11671 | (when (fboundp 'custom-autoload) | 11681 | (when (fboundp 'custom-autoload) |
| @@ -11715,8 +11725,8 @@ prompt the user for the name of an NNTP server to use. | |||
| 11715 | 11725 | ||
| 11716 | ;;;*** | 11726 | ;;;*** |
| 11717 | 11727 | ||
| 11718 | ;;;### (autoloads nil "gnus-agent" "gnus/gnus-agent.el" (21607 54478 | 11728 | ;;;### (autoloads nil "gnus-agent" "gnus/gnus-agent.el" (21604 48550 |
| 11719 | ;;;;;; 300138 641000)) | 11729 | ;;;;;; 85934 217000)) |
| 11720 | ;;; Generated autoloads from gnus/gnus-agent.el | 11730 | ;;; Generated autoloads from gnus/gnus-agent.el |
| 11721 | 11731 | ||
| 11722 | (autoload 'gnus-unplugged "gnus-agent" "\ | 11732 | (autoload 'gnus-unplugged "gnus-agent" "\ |
| @@ -11806,8 +11816,8 @@ CLEAN is obsolete and ignored. | |||
| 11806 | 11816 | ||
| 11807 | ;;;*** | 11817 | ;;;*** |
| 11808 | 11818 | ||
| 11809 | ;;;### (autoloads nil "gnus-art" "gnus/gnus-art.el" (21623 2108 292281 | 11819 | ;;;### (autoloads nil "gnus-art" "gnus/gnus-art.el" (21651 20707 |
| 11810 | ;;;;;; 129000)) | 11820 | ;;;;;; 176225 752000)) |
| 11811 | ;;; Generated autoloads from gnus/gnus-art.el | 11821 | ;;; Generated autoloads from gnus/gnus-art.el |
| 11812 | 11822 | ||
| 11813 | (autoload 'gnus-article-prepare-display "gnus-art" "\ | 11823 | (autoload 'gnus-article-prepare-display "gnus-art" "\ |
| @@ -11817,8 +11827,8 @@ Make the current buffer look like a nice article. | |||
| 11817 | 11827 | ||
| 11818 | ;;;*** | 11828 | ;;;*** |
| 11819 | 11829 | ||
| 11820 | ;;;### (autoloads nil "gnus-bookmark" "gnus/gnus-bookmark.el" (21607 | 11830 | ;;;### (autoloads nil "gnus-bookmark" "gnus/gnus-bookmark.el" (21645 |
| 11821 | ;;;;;; 54478 300138 641000)) | 11831 | ;;;;;; 25761 793186 828000)) |
| 11822 | ;;; Generated autoloads from gnus/gnus-bookmark.el | 11832 | ;;; Generated autoloads from gnus/gnus-bookmark.el |
| 11823 | 11833 | ||
| 11824 | (autoload 'gnus-bookmark-set "gnus-bookmark" "\ | 11834 | (autoload 'gnus-bookmark-set "gnus-bookmark" "\ |
| @@ -11841,8 +11851,8 @@ deletion, or > if it is flagged for displaying. | |||
| 11841 | 11851 | ||
| 11842 | ;;;*** | 11852 | ;;;*** |
| 11843 | 11853 | ||
| 11844 | ;;;### (autoloads nil "gnus-cache" "gnus/gnus-cache.el" (21607 54478 | 11854 | ;;;### (autoloads nil "gnus-cache" "gnus/gnus-cache.el" (21604 48550 |
| 11845 | ;;;;;; 300138 641000)) | 11855 | ;;;;;; 85934 217000)) |
| 11846 | ;;; Generated autoloads from gnus/gnus-cache.el | 11856 | ;;; Generated autoloads from gnus/gnus-cache.el |
| 11847 | 11857 | ||
| 11848 | (autoload 'gnus-jog-cache "gnus-cache" "\ | 11858 | (autoload 'gnus-jog-cache "gnus-cache" "\ |
| @@ -11883,8 +11893,8 @@ supported. | |||
| 11883 | 11893 | ||
| 11884 | ;;;*** | 11894 | ;;;*** |
| 11885 | 11895 | ||
| 11886 | ;;;### (autoloads nil "gnus-delay" "gnus/gnus-delay.el" (21607 54478 | 11896 | ;;;### (autoloads nil "gnus-delay" "gnus/gnus-delay.el" (21604 48550 |
| 11887 | ;;;;;; 300138 641000)) | 11897 | ;;;;;; 89934 217000)) |
| 11888 | ;;; Generated autoloads from gnus/gnus-delay.el | 11898 | ;;; Generated autoloads from gnus/gnus-delay.el |
| 11889 | 11899 | ||
| 11890 | (autoload 'gnus-delay-article "gnus-delay" "\ | 11900 | (autoload 'gnus-delay-article "gnus-delay" "\ |
| @@ -11919,8 +11929,8 @@ Checking delayed messages is skipped if optional arg NO-CHECK is non-nil. | |||
| 11919 | 11929 | ||
| 11920 | ;;;*** | 11930 | ;;;*** |
| 11921 | 11931 | ||
| 11922 | ;;;### (autoloads nil "gnus-diary" "gnus/gnus-diary.el" (21607 54478 | 11932 | ;;;### (autoloads nil "gnus-diary" "gnus/gnus-diary.el" (21604 48550 |
| 11923 | ;;;;;; 300138 641000)) | 11933 | ;;;;;; 89934 217000)) |
| 11924 | ;;; Generated autoloads from gnus/gnus-diary.el | 11934 | ;;; Generated autoloads from gnus/gnus-diary.el |
| 11925 | 11935 | ||
| 11926 | (autoload 'gnus-user-format-function-d "gnus-diary" "\ | 11936 | (autoload 'gnus-user-format-function-d "gnus-diary" "\ |
| @@ -11935,8 +11945,8 @@ Checking delayed messages is skipped if optional arg NO-CHECK is non-nil. | |||
| 11935 | 11945 | ||
| 11936 | ;;;*** | 11946 | ;;;*** |
| 11937 | 11947 | ||
| 11938 | ;;;### (autoloads nil "gnus-dired" "gnus/gnus-dired.el" (21607 54478 | 11948 | ;;;### (autoloads nil "gnus-dired" "gnus/gnus-dired.el" (21604 48550 |
| 11939 | ;;;;;; 300138 641000)) | 11949 | ;;;;;; 89934 217000)) |
| 11940 | ;;; Generated autoloads from gnus/gnus-dired.el | 11950 | ;;; Generated autoloads from gnus/gnus-dired.el |
| 11941 | 11951 | ||
| 11942 | (autoload 'turn-on-gnus-dired-mode "gnus-dired" "\ | 11952 | (autoload 'turn-on-gnus-dired-mode "gnus-dired" "\ |
| @@ -11946,8 +11956,8 @@ Convenience method to turn on gnus-dired-mode. | |||
| 11946 | 11956 | ||
| 11947 | ;;;*** | 11957 | ;;;*** |
| 11948 | 11958 | ||
| 11949 | ;;;### (autoloads nil "gnus-draft" "gnus/gnus-draft.el" (21607 54478 | 11959 | ;;;### (autoloads nil "gnus-draft" "gnus/gnus-draft.el" (21604 48550 |
| 11950 | ;;;;;; 300138 641000)) | 11960 | ;;;;;; 89934 217000)) |
| 11951 | ;;; Generated autoloads from gnus/gnus-draft.el | 11961 | ;;; Generated autoloads from gnus/gnus-draft.el |
| 11952 | 11962 | ||
| 11953 | (autoload 'gnus-draft-reminder "gnus-draft" "\ | 11963 | (autoload 'gnus-draft-reminder "gnus-draft" "\ |
| @@ -11957,8 +11967,8 @@ Reminder user if there are unsent drafts. | |||
| 11957 | 11967 | ||
| 11958 | ;;;*** | 11968 | ;;;*** |
| 11959 | 11969 | ||
| 11960 | ;;;### (autoloads nil "gnus-fun" "gnus/gnus-fun.el" (21607 54478 | 11970 | ;;;### (autoloads nil "gnus-fun" "gnus/gnus-fun.el" (21604 48550 |
| 11961 | ;;;;;; 300138 641000)) | 11971 | ;;;;;; 89934 217000)) |
| 11962 | ;;; Generated autoloads from gnus/gnus-fun.el | 11972 | ;;; Generated autoloads from gnus/gnus-fun.el |
| 11963 | 11973 | ||
| 11964 | (autoload 'gnus--random-face-with-type "gnus-fun" "\ | 11974 | (autoload 'gnus--random-face-with-type "gnus-fun" "\ |
| @@ -12023,8 +12033,8 @@ Insert a random Face header from `gnus-face-directory'. | |||
| 12023 | 12033 | ||
| 12024 | ;;;*** | 12034 | ;;;*** |
| 12025 | 12035 | ||
| 12026 | ;;;### (autoloads nil "gnus-gravatar" "gnus/gnus-gravatar.el" (21607 | 12036 | ;;;### (autoloads nil "gnus-gravatar" "gnus/gnus-gravatar.el" (21604 |
| 12027 | ;;;;;; 54478 300138 641000)) | 12037 | ;;;;;; 48550 89934 217000)) |
| 12028 | ;;; Generated autoloads from gnus/gnus-gravatar.el | 12038 | ;;; Generated autoloads from gnus/gnus-gravatar.el |
| 12029 | 12039 | ||
| 12030 | (autoload 'gnus-treat-from-gravatar "gnus-gravatar" "\ | 12040 | (autoload 'gnus-treat-from-gravatar "gnus-gravatar" "\ |
| @@ -12041,8 +12051,8 @@ If gravatars are already displayed, remove them. | |||
| 12041 | 12051 | ||
| 12042 | ;;;*** | 12052 | ;;;*** |
| 12043 | 12053 | ||
| 12044 | ;;;### (autoloads nil "gnus-group" "gnus/gnus-group.el" (21607 54478 | 12054 | ;;;### (autoloads nil "gnus-group" "gnus/gnus-group.el" (21604 48550 |
| 12045 | ;;;;;; 300138 641000)) | 12055 | ;;;;;; 89934 217000)) |
| 12046 | ;;; Generated autoloads from gnus/gnus-group.el | 12056 | ;;; Generated autoloads from gnus/gnus-group.el |
| 12047 | 12057 | ||
| 12048 | (autoload 'gnus-fetch-group "gnus-group" "\ | 12058 | (autoload 'gnus-fetch-group "gnus-group" "\ |
| @@ -12059,8 +12069,8 @@ Pop up a frame and enter GROUP. | |||
| 12059 | 12069 | ||
| 12060 | ;;;*** | 12070 | ;;;*** |
| 12061 | 12071 | ||
| 12062 | ;;;### (autoloads nil "gnus-html" "gnus/gnus-html.el" (21607 54478 | 12072 | ;;;### (autoloads nil "gnus-html" "gnus/gnus-html.el" (21604 48550 |
| 12063 | ;;;;;; 300138 641000)) | 12073 | ;;;;;; 89934 217000)) |
| 12064 | ;;; Generated autoloads from gnus/gnus-html.el | 12074 | ;;; Generated autoloads from gnus/gnus-html.el |
| 12065 | 12075 | ||
| 12066 | (autoload 'gnus-article-html "gnus-html" "\ | 12076 | (autoload 'gnus-article-html "gnus-html" "\ |
| @@ -12075,8 +12085,8 @@ Pop up a frame and enter GROUP. | |||
| 12075 | 12085 | ||
| 12076 | ;;;*** | 12086 | ;;;*** |
| 12077 | 12087 | ||
| 12078 | ;;;### (autoloads nil "gnus-kill" "gnus/gnus-kill.el" (21607 54478 | 12088 | ;;;### (autoloads nil "gnus-kill" "gnus/gnus-kill.el" (21604 48550 |
| 12079 | ;;;;;; 300138 641000)) | 12089 | ;;;;;; 93934 217000)) |
| 12080 | ;;; Generated autoloads from gnus/gnus-kill.el | 12090 | ;;; Generated autoloads from gnus/gnus-kill.el |
| 12081 | 12091 | ||
| 12082 | (defalias 'gnus-batch-kill 'gnus-batch-score) | 12092 | (defalias 'gnus-batch-kill 'gnus-batch-score) |
| @@ -12089,8 +12099,8 @@ Usage: emacs -batch -l ~/.emacs -l gnus -f gnus-batch-score | |||
| 12089 | 12099 | ||
| 12090 | ;;;*** | 12100 | ;;;*** |
| 12091 | 12101 | ||
| 12092 | ;;;### (autoloads nil "gnus-ml" "gnus/gnus-ml.el" (21607 54478 300138 | 12102 | ;;;### (autoloads nil "gnus-ml" "gnus/gnus-ml.el" (21604 48550 93934 |
| 12093 | ;;;;;; 641000)) | 12103 | ;;;;;; 217000)) |
| 12094 | ;;; Generated autoloads from gnus/gnus-ml.el | 12104 | ;;; Generated autoloads from gnus/gnus-ml.el |
| 12095 | 12105 | ||
| 12096 | (autoload 'turn-on-gnus-mailing-list-mode "gnus-ml" "\ | 12106 | (autoload 'turn-on-gnus-mailing-list-mode "gnus-ml" "\ |
| @@ -12113,8 +12123,8 @@ Minor mode for providing mailing-list commands. | |||
| 12113 | 12123 | ||
| 12114 | ;;;*** | 12124 | ;;;*** |
| 12115 | 12125 | ||
| 12116 | ;;;### (autoloads nil "gnus-mlspl" "gnus/gnus-mlspl.el" (21607 54478 | 12126 | ;;;### (autoloads nil "gnus-mlspl" "gnus/gnus-mlspl.el" (21604 48550 |
| 12117 | ;;;;;; 300138 641000)) | 12127 | ;;;;;; 93934 217000)) |
| 12118 | ;;; Generated autoloads from gnus/gnus-mlspl.el | 12128 | ;;; Generated autoloads from gnus/gnus-mlspl.el |
| 12119 | 12129 | ||
| 12120 | (autoload 'gnus-group-split-setup "gnus-mlspl" "\ | 12130 | (autoload 'gnus-group-split-setup "gnus-mlspl" "\ |
| @@ -12214,8 +12224,8 @@ Calling (gnus-group-split-fancy nil nil \"mail.others\") returns: | |||
| 12214 | 12224 | ||
| 12215 | ;;;*** | 12225 | ;;;*** |
| 12216 | 12226 | ||
| 12217 | ;;;### (autoloads nil "gnus-msg" "gnus/gnus-msg.el" (21607 54478 | 12227 | ;;;### (autoloads nil "gnus-msg" "gnus/gnus-msg.el" (21604 48550 |
| 12218 | ;;;;;; 300138 641000)) | 12228 | ;;;;;; 93934 217000)) |
| 12219 | ;;; Generated autoloads from gnus/gnus-msg.el | 12229 | ;;; Generated autoloads from gnus/gnus-msg.el |
| 12220 | 12230 | ||
| 12221 | (autoload 'gnus-msg-mail "gnus-msg" "\ | 12231 | (autoload 'gnus-msg-mail "gnus-msg" "\ |
| @@ -12242,7 +12252,7 @@ Like `message-reply'. | |||
| 12242 | ;;;*** | 12252 | ;;;*** |
| 12243 | 12253 | ||
| 12244 | ;;;### (autoloads nil "gnus-notifications" "gnus/gnus-notifications.el" | 12254 | ;;;### (autoloads nil "gnus-notifications" "gnus/gnus-notifications.el" |
| 12245 | ;;;;;; (21607 54478 300138 641000)) | 12255 | ;;;;;; (21631 35966 851121 868000)) |
| 12246 | ;;; Generated autoloads from gnus/gnus-notifications.el | 12256 | ;;; Generated autoloads from gnus/gnus-notifications.el |
| 12247 | 12257 | ||
| 12248 | (autoload 'gnus-notifications "gnus-notifications" "\ | 12258 | (autoload 'gnus-notifications "gnus-notifications" "\ |
| @@ -12258,8 +12268,8 @@ This is typically a function to add in | |||
| 12258 | 12268 | ||
| 12259 | ;;;*** | 12269 | ;;;*** |
| 12260 | 12270 | ||
| 12261 | ;;;### (autoloads nil "gnus-picon" "gnus/gnus-picon.el" (21607 54478 | 12271 | ;;;### (autoloads nil "gnus-picon" "gnus/gnus-picon.el" (21604 48550 |
| 12262 | ;;;;;; 300138 641000)) | 12272 | ;;;;;; 93934 217000)) |
| 12263 | ;;; Generated autoloads from gnus/gnus-picon.el | 12273 | ;;; Generated autoloads from gnus/gnus-picon.el |
| 12264 | 12274 | ||
| 12265 | (autoload 'gnus-treat-from-picon "gnus-picon" "\ | 12275 | (autoload 'gnus-treat-from-picon "gnus-picon" "\ |
| @@ -12282,8 +12292,8 @@ If picons are already displayed, remove them. | |||
| 12282 | 12292 | ||
| 12283 | ;;;*** | 12293 | ;;;*** |
| 12284 | 12294 | ||
| 12285 | ;;;### (autoloads nil "gnus-range" "gnus/gnus-range.el" (21607 54478 | 12295 | ;;;### (autoloads nil "gnus-range" "gnus/gnus-range.el" (21604 48550 |
| 12286 | ;;;;;; 300138 641000)) | 12296 | ;;;;;; 93934 217000)) |
| 12287 | ;;; Generated autoloads from gnus/gnus-range.el | 12297 | ;;; Generated autoloads from gnus/gnus-range.el |
| 12288 | 12298 | ||
| 12289 | (autoload 'gnus-sorted-difference "gnus-range" "\ | 12299 | (autoload 'gnus-sorted-difference "gnus-range" "\ |
| @@ -12350,8 +12360,8 @@ Add NUM into sorted LIST by side effect. | |||
| 12350 | 12360 | ||
| 12351 | ;;;*** | 12361 | ;;;*** |
| 12352 | 12362 | ||
| 12353 | ;;;### (autoloads nil "gnus-registry" "gnus/gnus-registry.el" (21607 | 12363 | ;;;### (autoloads nil "gnus-registry" "gnus/gnus-registry.el" (21650 |
| 12354 | ;;;;;; 54478 300138 641000)) | 12364 | ;;;;;; 56624 523745 975000)) |
| 12355 | ;;; Generated autoloads from gnus/gnus-registry.el | 12365 | ;;; Generated autoloads from gnus/gnus-registry.el |
| 12356 | 12366 | ||
| 12357 | (autoload 'gnus-registry-initialize "gnus-registry" "\ | 12367 | (autoload 'gnus-registry-initialize "gnus-registry" "\ |
| @@ -12366,8 +12376,8 @@ Install the registry hooks. | |||
| 12366 | 12376 | ||
| 12367 | ;;;*** | 12377 | ;;;*** |
| 12368 | 12378 | ||
| 12369 | ;;;### (autoloads nil "gnus-sieve" "gnus/gnus-sieve.el" (21607 54478 | 12379 | ;;;### (autoloads nil "gnus-sieve" "gnus/gnus-sieve.el" (21604 48550 |
| 12370 | ;;;;;; 300138 641000)) | 12380 | ;;;;;; 93934 217000)) |
| 12371 | ;;; Generated autoloads from gnus/gnus-sieve.el | 12381 | ;;; Generated autoloads from gnus/gnus-sieve.el |
| 12372 | 12382 | ||
| 12373 | (autoload 'gnus-sieve-update "gnus-sieve" "\ | 12383 | (autoload 'gnus-sieve-update "gnus-sieve" "\ |
| @@ -12394,8 +12404,8 @@ See the documentation for these variables and functions for details. | |||
| 12394 | 12404 | ||
| 12395 | ;;;*** | 12405 | ;;;*** |
| 12396 | 12406 | ||
| 12397 | ;;;### (autoloads nil "gnus-spec" "gnus/gnus-spec.el" (21607 54478 | 12407 | ;;;### (autoloads nil "gnus-spec" "gnus/gnus-spec.el" (21604 48550 |
| 12398 | ;;;;;; 300138 641000)) | 12408 | ;;;;;; 93934 217000)) |
| 12399 | ;;; Generated autoloads from gnus/gnus-spec.el | 12409 | ;;; Generated autoloads from gnus/gnus-spec.el |
| 12400 | 12410 | ||
| 12401 | (autoload 'gnus-update-format "gnus-spec" "\ | 12411 | (autoload 'gnus-update-format "gnus-spec" "\ |
| @@ -12405,8 +12415,8 @@ Update the format specification near point. | |||
| 12405 | 12415 | ||
| 12406 | ;;;*** | 12416 | ;;;*** |
| 12407 | 12417 | ||
| 12408 | ;;;### (autoloads nil "gnus-start" "gnus/gnus-start.el" (21620 25920 | 12418 | ;;;### (autoloads nil "gnus-start" "gnus/gnus-start.el" (21631 35966 |
| 12409 | ;;;;;; 601566 783000)) | 12419 | ;;;;;; 851121 868000)) |
| 12410 | ;;; Generated autoloads from gnus/gnus-start.el | 12420 | ;;; Generated autoloads from gnus/gnus-start.el |
| 12411 | 12421 | ||
| 12412 | (autoload 'gnus-declare-backend "gnus-start" "\ | 12422 | (autoload 'gnus-declare-backend "gnus-start" "\ |
| @@ -12416,8 +12426,8 @@ Declare back end NAME with ABILITIES as a Gnus back end. | |||
| 12416 | 12426 | ||
| 12417 | ;;;*** | 12427 | ;;;*** |
| 12418 | 12428 | ||
| 12419 | ;;;### (autoloads nil "gnus-sum" "gnus/gnus-sum.el" (21623 2108 292281 | 12429 | ;;;### (autoloads nil "gnus-sum" "gnus/gnus-sum.el" (21631 35966 |
| 12420 | ;;;;;; 129000)) | 12430 | ;;;;;; 855121 868000)) |
| 12421 | ;;; Generated autoloads from gnus/gnus-sum.el | 12431 | ;;; Generated autoloads from gnus/gnus-sum.el |
| 12422 | 12432 | ||
| 12423 | (autoload 'gnus-summary-bookmark-jump "gnus-sum" "\ | 12433 | (autoload 'gnus-summary-bookmark-jump "gnus-sum" "\ |
| @@ -12428,8 +12438,8 @@ BOOKMARK is a bookmark name or a bookmark record. | |||
| 12428 | 12438 | ||
| 12429 | ;;;*** | 12439 | ;;;*** |
| 12430 | 12440 | ||
| 12431 | ;;;### (autoloads nil "gnus-sync" "gnus/gnus-sync.el" (21607 54478 | 12441 | ;;;### (autoloads nil "gnus-sync" "gnus/gnus-sync.el" (21604 48550 |
| 12432 | ;;;;;; 300138 641000)) | 12442 | ;;;;;; 101934 217000)) |
| 12433 | ;;; Generated autoloads from gnus/gnus-sync.el | 12443 | ;;; Generated autoloads from gnus/gnus-sync.el |
| 12434 | 12444 | ||
| 12435 | (autoload 'gnus-sync-initialize "gnus-sync" "\ | 12445 | (autoload 'gnus-sync-initialize "gnus-sync" "\ |
| @@ -12444,8 +12454,8 @@ Install the sync hooks. | |||
| 12444 | 12454 | ||
| 12445 | ;;;*** | 12455 | ;;;*** |
| 12446 | 12456 | ||
| 12447 | ;;;### (autoloads nil "gnus-win" "gnus/gnus-win.el" (21607 54478 | 12457 | ;;;### (autoloads nil "gnus-win" "gnus/gnus-win.el" (21604 48550 |
| 12448 | ;;;;;; 300138 641000)) | 12458 | ;;;;;; 101934 217000)) |
| 12449 | ;;; Generated autoloads from gnus/gnus-win.el | 12459 | ;;; Generated autoloads from gnus/gnus-win.el |
| 12450 | 12460 | ||
| 12451 | (autoload 'gnus-add-configuration "gnus-win" "\ | 12461 | (autoload 'gnus-add-configuration "gnus-win" "\ |
| @@ -12455,8 +12465,8 @@ Add the window configuration CONF to `gnus-buffer-configuration'. | |||
| 12455 | 12465 | ||
| 12456 | ;;;*** | 12466 | ;;;*** |
| 12457 | 12467 | ||
| 12458 | ;;;### (autoloads nil "gnutls" "net/gnutls.el" (21620 46140 530123 | 12468 | ;;;### (autoloads nil "gnutls" "net/gnutls.el" (21640 32530 974334 |
| 12459 | ;;;;;; 341000)) | 12469 | ;;;;;; 457000)) |
| 12460 | ;;; Generated autoloads from net/gnutls.el | 12470 | ;;; Generated autoloads from net/gnutls.el |
| 12461 | 12471 | ||
| 12462 | (defvar gnutls-min-prime-bits 256 "\ | 12472 | (defvar gnutls-min-prime-bits 256 "\ |
| @@ -12472,8 +12482,8 @@ A value of nil says to use the default GnuTLS value.") | |||
| 12472 | 12482 | ||
| 12473 | ;;;*** | 12483 | ;;;*** |
| 12474 | 12484 | ||
| 12475 | ;;;### (autoloads nil "gomoku" "play/gomoku.el" (21607 54478 800121 | 12485 | ;;;### (autoloads nil "gomoku" "play/gomoku.el" (21604 48550 305934 |
| 12476 | ;;;;;; 42000)) | 12486 | ;;;;;; 225000)) |
| 12477 | ;;; Generated autoloads from play/gomoku.el | 12487 | ;;; Generated autoloads from play/gomoku.el |
| 12478 | 12488 | ||
| 12479 | (autoload 'gomoku "gomoku" "\ | 12489 | (autoload 'gomoku "gomoku" "\ |
| @@ -12499,8 +12509,8 @@ Use \\[describe-mode] for more info. | |||
| 12499 | 12509 | ||
| 12500 | ;;;*** | 12510 | ;;;*** |
| 12501 | 12511 | ||
| 12502 | ;;;### (autoloads nil "goto-addr" "net/goto-addr.el" (21607 54478 | 12512 | ;;;### (autoloads nil "goto-addr" "net/goto-addr.el" (21604 48550 |
| 12503 | ;;;;;; 300138 641000)) | 12513 | ;;;;;; 217934 222000)) |
| 12504 | ;;; Generated autoloads from net/goto-addr.el | 12514 | ;;; Generated autoloads from net/goto-addr.el |
| 12505 | 12515 | ||
| 12506 | (define-obsolete-function-alias 'goto-address-at-mouse 'goto-address-at-point "22.1") | 12516 | (define-obsolete-function-alias 'goto-address-at-mouse 'goto-address-at-point "22.1") |
| @@ -12541,8 +12551,8 @@ Like `goto-address-mode', but only for comments and strings. | |||
| 12541 | 12551 | ||
| 12542 | ;;;*** | 12552 | ;;;*** |
| 12543 | 12553 | ||
| 12544 | ;;;### (autoloads nil "gravatar" "gnus/gravatar.el" (21607 54478 | 12554 | ;;;### (autoloads nil "gravatar" "gnus/gravatar.el" (21604 48550 |
| 12545 | ;;;;;; 300138 641000)) | 12555 | ;;;;;; 101934 217000)) |
| 12546 | ;;; Generated autoloads from gnus/gravatar.el | 12556 | ;;; Generated autoloads from gnus/gravatar.el |
| 12547 | 12557 | ||
| 12548 | (autoload 'gravatar-retrieve "gravatar" "\ | 12558 | (autoload 'gravatar-retrieve "gravatar" "\ |
| @@ -12558,8 +12568,8 @@ Retrieve MAIL-ADDRESS gravatar and returns it. | |||
| 12558 | 12568 | ||
| 12559 | ;;;*** | 12569 | ;;;*** |
| 12560 | 12570 | ||
| 12561 | ;;;### (autoloads nil "grep" "progmodes/grep.el" (21612 31801 50825 | 12571 | ;;;### (autoloads nil "grep" "progmodes/grep.el" (21631 35966 907121 |
| 12562 | ;;;;;; 711000)) | 12572 | ;;;;;; 870000)) |
| 12563 | ;;; Generated autoloads from progmodes/grep.el | 12573 | ;;; Generated autoloads from progmodes/grep.el |
| 12564 | 12574 | ||
| 12565 | (defvar grep-window-height nil "\ | 12575 | (defvar grep-window-height nil "\ |
| @@ -12723,7 +12733,7 @@ file name to `*.gz', and sets `grep-highlight-matches' to `always'. | |||
| 12723 | 12733 | ||
| 12724 | ;;;*** | 12734 | ;;;*** |
| 12725 | 12735 | ||
| 12726 | ;;;### (autoloads nil "gs" "gs.el" (21607 54478 300138 641000)) | 12736 | ;;;### (autoloads nil "gs" "gs.el" (21604 48550 121934 218000)) |
| 12727 | ;;; Generated autoloads from gs.el | 12737 | ;;; Generated autoloads from gs.el |
| 12728 | 12738 | ||
| 12729 | (autoload 'gs-load-image "gs" "\ | 12739 | (autoload 'gs-load-image "gs" "\ |
| @@ -12736,8 +12746,8 @@ the form \"WINDOW-ID PIXMAP-ID\". Value is non-nil if successful. | |||
| 12736 | 12746 | ||
| 12737 | ;;;*** | 12747 | ;;;*** |
| 12738 | 12748 | ||
| 12739 | ;;;### (autoloads nil "gud" "progmodes/gud.el" (21607 54478 800121 | 12749 | ;;;### (autoloads nil "gud" "progmodes/gud.el" (21640 32530 986334 |
| 12740 | ;;;;;; 42000)) | 12750 | ;;;;;; 458000)) |
| 12741 | ;;; Generated autoloads from progmodes/gud.el | 12751 | ;;; Generated autoloads from progmodes/gud.el |
| 12742 | 12752 | ||
| 12743 | (autoload 'gud-gdb "gud" "\ | 12753 | (autoload 'gud-gdb "gud" "\ |
| @@ -12832,8 +12842,8 @@ it if ARG is omitted or nil. | |||
| 12832 | 12842 | ||
| 12833 | ;;;*** | 12843 | ;;;*** |
| 12834 | 12844 | ||
| 12835 | ;;;### (autoloads nil "gv" "emacs-lisp/gv.el" (21607 54477 800124 | 12845 | ;;;### (autoloads nil "gv" "emacs-lisp/gv.el" (21604 48550 17934 |
| 12836 | ;;;;;; 118000)) | 12846 | ;;;;;; 214000)) |
| 12837 | ;;; Generated autoloads from emacs-lisp/gv.el | 12847 | ;;; Generated autoloads from emacs-lisp/gv.el |
| 12838 | 12848 | ||
| 12839 | (autoload 'gv-get "gv" "\ | 12849 | (autoload 'gv-get "gv" "\ |
| @@ -12935,8 +12945,8 @@ binding mode. | |||
| 12935 | 12945 | ||
| 12936 | ;;;*** | 12946 | ;;;*** |
| 12937 | 12947 | ||
| 12938 | ;;;### (autoloads nil "handwrite" "play/handwrite.el" (21607 54478 | 12948 | ;;;### (autoloads nil "handwrite" "play/handwrite.el" (21604 48550 |
| 12939 | ;;;;;; 800121 42000)) | 12949 | ;;;;;; 305934 225000)) |
| 12940 | ;;; Generated autoloads from play/handwrite.el | 12950 | ;;; Generated autoloads from play/handwrite.el |
| 12941 | 12951 | ||
| 12942 | (autoload 'handwrite "handwrite" "\ | 12952 | (autoload 'handwrite "handwrite" "\ |
| @@ -12953,8 +12963,8 @@ Variables: `handwrite-linespace' (default 12) | |||
| 12953 | 12963 | ||
| 12954 | ;;;*** | 12964 | ;;;*** |
| 12955 | 12965 | ||
| 12956 | ;;;### (autoloads nil "hanoi" "play/hanoi.el" (21607 54478 800121 | 12966 | ;;;### (autoloads nil "hanoi" "play/hanoi.el" (21604 48550 305934 |
| 12957 | ;;;;;; 42000)) | 12967 | ;;;;;; 225000)) |
| 12958 | ;;; Generated autoloads from play/hanoi.el | 12968 | ;;; Generated autoloads from play/hanoi.el |
| 12959 | 12969 | ||
| 12960 | (autoload 'hanoi "hanoi" "\ | 12970 | (autoload 'hanoi "hanoi" "\ |
| @@ -12981,8 +12991,8 @@ to be updated. | |||
| 12981 | 12991 | ||
| 12982 | ;;;*** | 12992 | ;;;*** |
| 12983 | 12993 | ||
| 12984 | ;;;### (autoloads nil "hashcash" "mail/hashcash.el" (21607 54478 | 12994 | ;;;### (autoloads nil "hashcash" "mail/hashcash.el" (21604 48550 |
| 12985 | ;;;;;; 300138 641000)) | 12995 | ;;;;;; 181934 220000)) |
| 12986 | ;;; Generated autoloads from mail/hashcash.el | 12996 | ;;; Generated autoloads from mail/hashcash.el |
| 12987 | 12997 | ||
| 12988 | (autoload 'hashcash-insert-payment "hashcash" "\ | 12998 | (autoload 'hashcash-insert-payment "hashcash" "\ |
| @@ -13024,8 +13034,8 @@ Prefix arg sets default accept amount temporarily. | |||
| 13024 | 13034 | ||
| 13025 | ;;;*** | 13035 | ;;;*** |
| 13026 | 13036 | ||
| 13027 | ;;;### (autoloads nil "help-at-pt" "help-at-pt.el" (21607 54478 300138 | 13037 | ;;;### (autoloads nil "help-at-pt" "help-at-pt.el" (21604 48550 121934 |
| 13028 | ;;;;;; 641000)) | 13038 | ;;;;;; 218000)) |
| 13029 | ;;; Generated autoloads from help-at-pt.el | 13039 | ;;; Generated autoloads from help-at-pt.el |
| 13030 | 13040 | ||
| 13031 | (autoload 'help-at-pt-string "help-at-pt" "\ | 13041 | (autoload 'help-at-pt-string "help-at-pt" "\ |
| @@ -13152,8 +13162,8 @@ different regions. With numeric argument ARG, behaves like | |||
| 13152 | 13162 | ||
| 13153 | ;;;*** | 13163 | ;;;*** |
| 13154 | 13164 | ||
| 13155 | ;;;### (autoloads nil "help-fns" "help-fns.el" (21607 54478 300138 | 13165 | ;;;### (autoloads nil "help-fns" "help-fns.el" (21604 48550 121934 |
| 13156 | ;;;;;; 641000)) | 13166 | ;;;;;; 218000)) |
| 13157 | ;;; Generated autoloads from help-fns.el | 13167 | ;;; Generated autoloads from help-fns.el |
| 13158 | 13168 | ||
| 13159 | (autoload 'describe-function "help-fns" "\ | 13169 | (autoload 'describe-function "help-fns" "\ |
| @@ -13232,8 +13242,8 @@ Produce a texinfo buffer with sorted doc-strings from the DOC file. | |||
| 13232 | 13242 | ||
| 13233 | ;;;*** | 13243 | ;;;*** |
| 13234 | 13244 | ||
| 13235 | ;;;### (autoloads nil "help-macro" "help-macro.el" (21607 54478 300138 | 13245 | ;;;### (autoloads nil "help-macro" "help-macro.el" (21604 48550 121934 |
| 13236 | ;;;;;; 641000)) | 13246 | ;;;;;; 218000)) |
| 13237 | ;;; Generated autoloads from help-macro.el | 13247 | ;;; Generated autoloads from help-macro.el |
| 13238 | 13248 | ||
| 13239 | (defvar three-step-help nil "\ | 13249 | (defvar three-step-help nil "\ |
| @@ -13247,8 +13257,8 @@ gives the window that lists the options.") | |||
| 13247 | 13257 | ||
| 13248 | ;;;*** | 13258 | ;;;*** |
| 13249 | 13259 | ||
| 13250 | ;;;### (autoloads nil "help-mode" "help-mode.el" (21607 54478 300138 | 13260 | ;;;### (autoloads nil "help-mode" "help-mode.el" (21604 48550 121934 |
| 13251 | ;;;;;; 641000)) | 13261 | ;;;;;; 218000)) |
| 13252 | ;;; Generated autoloads from help-mode.el | 13262 | ;;; Generated autoloads from help-mode.el |
| 13253 | 13263 | ||
| 13254 | (autoload 'help-mode "help-mode" "\ | 13264 | (autoload 'help-mode "help-mode" "\ |
| @@ -13347,8 +13357,8 @@ BOOKMARK is a bookmark name or a bookmark record. | |||
| 13347 | 13357 | ||
| 13348 | ;;;*** | 13358 | ;;;*** |
| 13349 | 13359 | ||
| 13350 | ;;;### (autoloads nil "helper" "emacs-lisp/helper.el" (21607 54477 | 13360 | ;;;### (autoloads nil "helper" "emacs-lisp/helper.el" (21604 48550 |
| 13351 | ;;;;;; 800124 118000)) | 13361 | ;;;;;; 17934 214000)) |
| 13352 | ;;; Generated autoloads from emacs-lisp/helper.el | 13362 | ;;; Generated autoloads from emacs-lisp/helper.el |
| 13353 | 13363 | ||
| 13354 | (autoload 'Helper-describe-bindings "helper" "\ | 13364 | (autoload 'Helper-describe-bindings "helper" "\ |
| @@ -13363,7 +13373,7 @@ Provide help for current mode. | |||
| 13363 | 13373 | ||
| 13364 | ;;;*** | 13374 | ;;;*** |
| 13365 | 13375 | ||
| 13366 | ;;;### (autoloads nil "hexl" "hexl.el" (21607 54478 300138 641000)) | 13376 | ;;;### (autoloads nil "hexl" "hexl.el" (21604 48550 125934 218000)) |
| 13367 | ;;; Generated autoloads from hexl.el | 13377 | ;;; Generated autoloads from hexl.el |
| 13368 | 13378 | ||
| 13369 | (autoload 'hexl-mode "hexl" "\ | 13379 | (autoload 'hexl-mode "hexl" "\ |
| @@ -13457,8 +13467,8 @@ This discards the buffer's undo information. | |||
| 13457 | 13467 | ||
| 13458 | ;;;*** | 13468 | ;;;*** |
| 13459 | 13469 | ||
| 13460 | ;;;### (autoloads nil "hi-lock" "hi-lock.el" (21607 54478 300138 | 13470 | ;;;### (autoloads nil "hi-lock" "hi-lock.el" (21604 48550 125934 |
| 13461 | ;;;;;; 641000)) | 13471 | ;;;;;; 218000)) |
| 13462 | ;;; Generated autoloads from hi-lock.el | 13472 | ;;; Generated autoloads from hi-lock.el |
| 13463 | 13473 | ||
| 13464 | (autoload 'hi-lock-mode "hi-lock" "\ | 13474 | (autoload 'hi-lock-mode "hi-lock" "\ |
| @@ -13625,8 +13635,8 @@ be found in variable `hi-lock-interactive-patterns'. | |||
| 13625 | 13635 | ||
| 13626 | ;;;*** | 13636 | ;;;*** |
| 13627 | 13637 | ||
| 13628 | ;;;### (autoloads nil "hideif" "progmodes/hideif.el" (21607 54478 | 13638 | ;;;### (autoloads nil "hideif" "progmodes/hideif.el" (21604 48550 |
| 13629 | ;;;;;; 800121 42000)) | 13639 | ;;;;;; 337934 226000)) |
| 13630 | ;;; Generated autoloads from progmodes/hideif.el | 13640 | ;;; Generated autoloads from progmodes/hideif.el |
| 13631 | 13641 | ||
| 13632 | (autoload 'hide-ifdef-mode "hideif" "\ | 13642 | (autoload 'hide-ifdef-mode "hideif" "\ |
| @@ -13673,8 +13683,8 @@ Several variables affect how the hiding is done: | |||
| 13673 | 13683 | ||
| 13674 | ;;;*** | 13684 | ;;;*** |
| 13675 | 13685 | ||
| 13676 | ;;;### (autoloads nil "hideshow" "progmodes/hideshow.el" (21607 54478 | 13686 | ;;;### (autoloads nil "hideshow" "progmodes/hideshow.el" (21604 48550 |
| 13677 | ;;;;;; 800121 42000)) | 13687 | ;;;;;; 341934 226000)) |
| 13678 | ;;; Generated autoloads from progmodes/hideshow.el | 13688 | ;;; Generated autoloads from progmodes/hideshow.el |
| 13679 | 13689 | ||
| 13680 | (defvar hs-special-modes-alist (mapcar 'purecopy '((c-mode "{" "}" "/[*/]" nil nil) (c++-mode "{" "}" "/[*/]" nil nil) (bibtex-mode ("@\\S(*\\(\\s(\\)" 1)) (java-mode "{" "}" "/[*/]" nil nil) (js-mode "{" "}" "/[*/]" nil))) "\ | 13690 | (defvar hs-special-modes-alist (mapcar 'purecopy '((c-mode "{" "}" "/[*/]" nil nil) (c++-mode "{" "}" "/[*/]" nil nil) (bibtex-mode ("@\\S(*\\(\\s(\\)" 1)) (java-mode "{" "}" "/[*/]" nil nil) (js-mode "{" "}" "/[*/]" nil))) "\ |
| @@ -13736,8 +13746,8 @@ Unconditionally turn off `hs-minor-mode'. | |||
| 13736 | 13746 | ||
| 13737 | ;;;*** | 13747 | ;;;*** |
| 13738 | 13748 | ||
| 13739 | ;;;### (autoloads nil "hilit-chg" "hilit-chg.el" (21607 54478 300138 | 13749 | ;;;### (autoloads nil "hilit-chg" "hilit-chg.el" (21604 48550 125934 |
| 13740 | ;;;;;; 641000)) | 13750 | ;;;;;; 218000)) |
| 13741 | ;;; Generated autoloads from hilit-chg.el | 13751 | ;;; Generated autoloads from hilit-chg.el |
| 13742 | 13752 | ||
| 13743 | (autoload 'highlight-changes-mode "hilit-chg" "\ | 13753 | (autoload 'highlight-changes-mode "hilit-chg" "\ |
| @@ -13868,8 +13878,8 @@ See `highlight-changes-mode' for more information on Highlight-Changes mode. | |||
| 13868 | 13878 | ||
| 13869 | ;;;*** | 13879 | ;;;*** |
| 13870 | 13880 | ||
| 13871 | ;;;### (autoloads nil "hippie-exp" "hippie-exp.el" (21607 54478 300138 | 13881 | ;;;### (autoloads nil "hippie-exp" "hippie-exp.el" (21604 48550 125934 |
| 13872 | ;;;;;; 641000)) | 13882 | ;;;;;; 218000)) |
| 13873 | ;;; Generated autoloads from hippie-exp.el | 13883 | ;;; Generated autoloads from hippie-exp.el |
| 13874 | (push (purecopy '(hippie-exp 1 6)) package--builtin-versions) | 13884 | (push (purecopy '(hippie-exp 1 6)) package--builtin-versions) |
| 13875 | 13885 | ||
| @@ -13901,8 +13911,8 @@ argument VERBOSE non-nil makes the function verbose. | |||
| 13901 | 13911 | ||
| 13902 | ;;;*** | 13912 | ;;;*** |
| 13903 | 13913 | ||
| 13904 | ;;;### (autoloads nil "hl-line" "hl-line.el" (21607 54478 300138 | 13914 | ;;;### (autoloads nil "hl-line" "hl-line.el" (21604 48550 125934 |
| 13905 | ;;;;;; 641000)) | 13915 | ;;;;;; 218000)) |
| 13906 | ;;; Generated autoloads from hl-line.el | 13916 | ;;; Generated autoloads from hl-line.el |
| 13907 | 13917 | ||
| 13908 | (autoload 'hl-line-mode "hl-line" "\ | 13918 | (autoload 'hl-line-mode "hl-line" "\ |
| @@ -13951,8 +13961,8 @@ Global-Hl-Line mode uses the functions `global-hl-line-unhighlight' and | |||
| 13951 | 13961 | ||
| 13952 | ;;;*** | 13962 | ;;;*** |
| 13953 | 13963 | ||
| 13954 | ;;;### (autoloads nil "holidays" "calendar/holidays.el" (21607 54477 | 13964 | ;;;### (autoloads nil "holidays" "calendar/holidays.el" (21604 48549 |
| 13955 | ;;;;;; 800124 118000)) | 13965 | ;;;;;; 953934 212000)) |
| 13956 | ;;; Generated autoloads from calendar/holidays.el | 13966 | ;;; Generated autoloads from calendar/holidays.el |
| 13957 | 13967 | ||
| 13958 | (defvar holiday-general-holidays (mapcar 'purecopy '((holiday-fixed 1 1 "New Year's Day") (holiday-float 1 1 3 "Martin Luther King Day") (holiday-fixed 2 2 "Groundhog Day") (holiday-fixed 2 14 "Valentine's Day") (holiday-float 2 1 3 "President's Day") (holiday-fixed 3 17 "St. Patrick's Day") (holiday-fixed 4 1 "April Fools' Day") (holiday-float 5 0 2 "Mother's Day") (holiday-float 5 1 -1 "Memorial Day") (holiday-fixed 6 14 "Flag Day") (holiday-float 6 0 3 "Father's Day") (holiday-fixed 7 4 "Independence Day") (holiday-float 9 1 1 "Labor Day") (holiday-float 10 1 2 "Columbus Day") (holiday-fixed 10 31 "Halloween") (holiday-fixed 11 11 "Veteran's Day") (holiday-float 11 4 4 "Thanksgiving"))) "\ | 13968 | (defvar holiday-general-holidays (mapcar 'purecopy '((holiday-fixed 1 1 "New Year's Day") (holiday-float 1 1 3 "Martin Luther King Day") (holiday-fixed 2 2 "Groundhog Day") (holiday-fixed 2 14 "Valentine's Day") (holiday-float 2 1 3 "President's Day") (holiday-fixed 3 17 "St. Patrick's Day") (holiday-fixed 4 1 "April Fools' Day") (holiday-float 5 0 2 "Mother's Day") (holiday-float 5 1 -1 "Memorial Day") (holiday-fixed 6 14 "Flag Day") (holiday-float 6 0 3 "Father's Day") (holiday-fixed 7 4 "Independence Day") (holiday-float 9 1 1 "Labor Day") (holiday-float 10 1 2 "Columbus Day") (holiday-fixed 10 31 "Halloween") (holiday-fixed 11 11 "Veteran's Day") (holiday-float 11 4 4 "Thanksgiving"))) "\ |
| @@ -14062,8 +14072,8 @@ The optional LABEL is used to label the buffer created. | |||
| 14062 | 14072 | ||
| 14063 | ;;;*** | 14073 | ;;;*** |
| 14064 | 14074 | ||
| 14065 | ;;;### (autoloads nil "html2text" "gnus/html2text.el" (21607 54478 | 14075 | ;;;### (autoloads nil "html2text" "gnus/html2text.el" (21604 48550 |
| 14066 | ;;;;;; 300138 641000)) | 14076 | ;;;;;; 101934 217000)) |
| 14067 | ;;; Generated autoloads from gnus/html2text.el | 14077 | ;;; Generated autoloads from gnus/html2text.el |
| 14068 | 14078 | ||
| 14069 | (autoload 'html2text "html2text" "\ | 14079 | (autoload 'html2text "html2text" "\ |
| @@ -14073,8 +14083,8 @@ Convert HTML to plain text in the current buffer. | |||
| 14073 | 14083 | ||
| 14074 | ;;;*** | 14084 | ;;;*** |
| 14075 | 14085 | ||
| 14076 | ;;;### (autoloads nil "htmlfontify" "htmlfontify.el" (21607 54478 | 14086 | ;;;### (autoloads nil "htmlfontify" "htmlfontify.el" (21604 48550 |
| 14077 | ;;;;;; 300138 641000)) | 14087 | ;;;;;; 125934 218000)) |
| 14078 | ;;; Generated autoloads from htmlfontify.el | 14088 | ;;; Generated autoloads from htmlfontify.el |
| 14079 | (push (purecopy '(htmlfontify 0 21)) package--builtin-versions) | 14089 | (push (purecopy '(htmlfontify 0 21)) package--builtin-versions) |
| 14080 | 14090 | ||
| @@ -14107,8 +14117,8 @@ You may also want to set `hfy-page-header' and `hfy-page-footer'. | |||
| 14107 | 14117 | ||
| 14108 | ;;;*** | 14118 | ;;;*** |
| 14109 | 14119 | ||
| 14110 | ;;;### (autoloads nil "ibuf-macs" "ibuf-macs.el" (21607 54478 300138 | 14120 | ;;;### (autoloads nil "ibuf-macs" "ibuf-macs.el" (21604 48550 125934 |
| 14111 | ;;;;;; 641000)) | 14121 | ;;;;;; 218000)) |
| 14112 | ;;; Generated autoloads from ibuf-macs.el | 14122 | ;;; Generated autoloads from ibuf-macs.el |
| 14113 | 14123 | ||
| 14114 | (autoload 'define-ibuffer-column "ibuf-macs" "\ | 14124 | (autoload 'define-ibuffer-column "ibuf-macs" "\ |
| @@ -14134,7 +14144,9 @@ inlined into the compiled format versions. This means that if you | |||
| 14134 | change its definition, you should explicitly call | 14144 | change its definition, you should explicitly call |
| 14135 | `ibuffer-recompile-formats'. | 14145 | `ibuffer-recompile-formats'. |
| 14136 | 14146 | ||
| 14137 | \(fn SYMBOL (&key NAME INLINE PROPS SUMMARIZER) &rest BODY)" nil (quote macro)) | 14147 | \(fn SYMBOL (&key NAME INLINE PROPS SUMMARIZER) &rest BODY)" nil t) |
| 14148 | |||
| 14149 | (function-put 'define-ibuffer-column 'lisp-indent-function 'defun) | ||
| 14138 | 14150 | ||
| 14139 | (autoload 'define-ibuffer-sorter "ibuf-macs" "\ | 14151 | (autoload 'define-ibuffer-sorter "ibuf-macs" "\ |
| 14140 | Define a method of sorting named NAME. | 14152 | Define a method of sorting named NAME. |
| @@ -14146,7 +14158,11 @@ For sorting, the forms in BODY will be evaluated with `a' bound to one | |||
| 14146 | buffer object, and `b' bound to another. BODY should return a non-nil | 14158 | buffer object, and `b' bound to another. BODY should return a non-nil |
| 14147 | value if and only if `a' is \"less than\" `b'. | 14159 | value if and only if `a' is \"less than\" `b'. |
| 14148 | 14160 | ||
| 14149 | \(fn NAME DOCUMENTATION (&key DESCRIPTION) &rest BODY)" nil (quote macro)) | 14161 | \(fn NAME DOCUMENTATION (&key DESCRIPTION) &rest BODY)" nil t) |
| 14162 | |||
| 14163 | (function-put 'define-ibuffer-sorter 'lisp-indent-function '1) | ||
| 14164 | |||
| 14165 | (function-put 'define-ibuffer-sorter 'doc-string-elt '2) | ||
| 14150 | 14166 | ||
| 14151 | (autoload 'define-ibuffer-op "ibuf-macs" "\ | 14167 | (autoload 'define-ibuffer-op "ibuf-macs" "\ |
| 14152 | Generate a function which operates on a buffer. | 14168 | Generate a function which operates on a buffer. |
| @@ -14179,7 +14195,11 @@ confirmation message, in the form: | |||
| 14179 | COMPLEX means this function is special; see the source code of this | 14195 | COMPLEX means this function is special; see the source code of this |
| 14180 | macro for exactly what it does. | 14196 | macro for exactly what it does. |
| 14181 | 14197 | ||
| 14182 | \(fn OP ARGS DOCUMENTATION (&key INTERACTIVE MARK MODIFIER-P DANGEROUS OPSTRING ACTIVE-OPSTRING COMPLEX) &rest BODY)" nil (quote macro)) | 14198 | \(fn OP ARGS DOCUMENTATION (&key INTERACTIVE MARK MODIFIER-P DANGEROUS OPSTRING ACTIVE-OPSTRING COMPLEX) &rest BODY)" nil t) |
| 14199 | |||
| 14200 | (function-put 'define-ibuffer-op 'lisp-indent-function '2) | ||
| 14201 | |||
| 14202 | (function-put 'define-ibuffer-op 'doc-string-elt '3) | ||
| 14183 | 14203 | ||
| 14184 | (autoload 'define-ibuffer-filter "ibuf-macs" "\ | 14204 | (autoload 'define-ibuffer-filter "ibuf-macs" "\ |
| 14185 | Define a filter named NAME. | 14205 | Define a filter named NAME. |
| @@ -14192,12 +14212,16 @@ not a particular buffer should be displayed or not. The forms in BODY | |||
| 14192 | will be evaluated with BUF bound to the buffer object, and QUALIFIER | 14212 | will be evaluated with BUF bound to the buffer object, and QUALIFIER |
| 14193 | bound to the current value of the filter. | 14213 | bound to the current value of the filter. |
| 14194 | 14214 | ||
| 14195 | \(fn NAME DOCUMENTATION (&key READER DESCRIPTION) &rest BODY)" nil (quote macro)) | 14215 | \(fn NAME DOCUMENTATION (&key READER DESCRIPTION) &rest BODY)" nil t) |
| 14216 | |||
| 14217 | (function-put 'define-ibuffer-filter 'lisp-indent-function '2) | ||
| 14218 | |||
| 14219 | (function-put 'define-ibuffer-filter 'doc-string-elt '2) | ||
| 14196 | 14220 | ||
| 14197 | ;;;*** | 14221 | ;;;*** |
| 14198 | 14222 | ||
| 14199 | ;;;### (autoloads nil "ibuffer" "ibuffer.el" (21607 54478 300138 | 14223 | ;;;### (autoloads nil "ibuffer" "ibuffer.el" (21604 48550 129934 |
| 14200 | ;;;;;; 641000)) | 14224 | ;;;;;; 218000)) |
| 14201 | ;;; Generated autoloads from ibuffer.el | 14225 | ;;; Generated autoloads from ibuffer.el |
| 14202 | 14226 | ||
| 14203 | (autoload 'ibuffer-list-buffers "ibuffer" "\ | 14227 | (autoload 'ibuffer-list-buffers "ibuffer" "\ |
| @@ -14236,8 +14260,8 @@ FORMATS is the value to use for `ibuffer-formats'. | |||
| 14236 | 14260 | ||
| 14237 | ;;;*** | 14261 | ;;;*** |
| 14238 | 14262 | ||
| 14239 | ;;;### (autoloads nil "icalendar" "calendar/icalendar.el" (21611 | 14263 | ;;;### (autoloads nil "icalendar" "calendar/icalendar.el" (21631 |
| 14240 | ;;;;;; 10937 700236 3000)) | 14264 | ;;;;;; 35966 803121 866000)) |
| 14241 | ;;; Generated autoloads from calendar/icalendar.el | 14265 | ;;; Generated autoloads from calendar/icalendar.el |
| 14242 | (push (purecopy '(icalendar 0 19)) package--builtin-versions) | 14266 | (push (purecopy '(icalendar 0 19)) package--builtin-versions) |
| 14243 | 14267 | ||
| @@ -14290,8 +14314,8 @@ buffer `*icalendar-errors*'. | |||
| 14290 | 14314 | ||
| 14291 | ;;;*** | 14315 | ;;;*** |
| 14292 | 14316 | ||
| 14293 | ;;;### (autoloads nil "icomplete" "icomplete.el" (21607 54478 300138 | 14317 | ;;;### (autoloads nil "icomplete" "icomplete.el" (21604 48550 129934 |
| 14294 | ;;;;;; 641000)) | 14318 | ;;;;;; 218000)) |
| 14295 | ;;; Generated autoloads from icomplete.el | 14319 | ;;; Generated autoloads from icomplete.el |
| 14296 | 14320 | ||
| 14297 | (defvar icomplete-mode nil "\ | 14321 | (defvar icomplete-mode nil "\ |
| @@ -14330,8 +14354,8 @@ completions: | |||
| 14330 | 14354 | ||
| 14331 | ;;;*** | 14355 | ;;;*** |
| 14332 | 14356 | ||
| 14333 | ;;;### (autoloads nil "icon" "progmodes/icon.el" (21607 54478 800121 | 14357 | ;;;### (autoloads nil "icon" "progmodes/icon.el" (21604 48550 341934 |
| 14334 | ;;;;;; 42000)) | 14358 | ;;;;;; 226000)) |
| 14335 | ;;; Generated autoloads from progmodes/icon.el | 14359 | ;;; Generated autoloads from progmodes/icon.el |
| 14336 | 14360 | ||
| 14337 | (autoload 'icon-mode "icon" "\ | 14361 | (autoload 'icon-mode "icon" "\ |
| @@ -14371,8 +14395,8 @@ with no args, if that value is non-nil. | |||
| 14371 | 14395 | ||
| 14372 | ;;;*** | 14396 | ;;;*** |
| 14373 | 14397 | ||
| 14374 | ;;;### (autoloads nil "idlw-shell" "progmodes/idlw-shell.el" (21607 | 14398 | ;;;### (autoloads nil "idlw-shell" "progmodes/idlw-shell.el" (21604 |
| 14375 | ;;;;;; 54478 800121 42000)) | 14399 | ;;;;;; 48550 341934 226000)) |
| 14376 | ;;; Generated autoloads from progmodes/idlw-shell.el | 14400 | ;;; Generated autoloads from progmodes/idlw-shell.el |
| 14377 | 14401 | ||
| 14378 | (autoload 'idlwave-shell "idlw-shell" "\ | 14402 | (autoload 'idlwave-shell "idlw-shell" "\ |
| @@ -14397,8 +14421,8 @@ See also the variable `idlwave-shell-prompt-pattern'. | |||
| 14397 | 14421 | ||
| 14398 | ;;;*** | 14422 | ;;;*** |
| 14399 | 14423 | ||
| 14400 | ;;;### (autoloads nil "idlwave" "progmodes/idlwave.el" (21607 54478 | 14424 | ;;;### (autoloads nil "idlwave" "progmodes/idlwave.el" (21645 25761 |
| 14401 | ;;;;;; 800121 42000)) | 14425 | ;;;;;; 805186 828000)) |
| 14402 | ;;; Generated autoloads from progmodes/idlwave.el | 14426 | ;;; Generated autoloads from progmodes/idlwave.el |
| 14403 | (push (purecopy '(idlwave 6 1 22)) package--builtin-versions) | 14427 | (push (purecopy '(idlwave 6 1 22)) package--builtin-versions) |
| 14404 | 14428 | ||
| @@ -14527,7 +14551,7 @@ The main features of this mode are | |||
| 14527 | 14551 | ||
| 14528 | ;;;*** | 14552 | ;;;*** |
| 14529 | 14553 | ||
| 14530 | ;;;### (autoloads nil "ido" "ido.el" (21612 31801 50825 711000)) | 14554 | ;;;### (autoloads nil "ido" "ido.el" (21631 35966 863121 868000)) |
| 14531 | ;;; Generated autoloads from ido.el | 14555 | ;;; Generated autoloads from ido.el |
| 14532 | 14556 | ||
| 14533 | (defvar ido-mode nil "\ | 14557 | (defvar ido-mode nil "\ |
| @@ -14789,7 +14813,7 @@ DEF, if non-nil, is the default value. | |||
| 14789 | 14813 | ||
| 14790 | ;;;*** | 14814 | ;;;*** |
| 14791 | 14815 | ||
| 14792 | ;;;### (autoloads nil "ielm" "ielm.el" (21607 54478 300138 641000)) | 14816 | ;;;### (autoloads nil "ielm" "ielm.el" (21604 48550 129934 218000)) |
| 14793 | ;;; Generated autoloads from ielm.el | 14817 | ;;; Generated autoloads from ielm.el |
| 14794 | 14818 | ||
| 14795 | (autoload 'ielm "ielm" "\ | 14819 | (autoload 'ielm "ielm" "\ |
| @@ -14801,7 +14825,7 @@ See `inferior-emacs-lisp-mode' for details. | |||
| 14801 | 14825 | ||
| 14802 | ;;;*** | 14826 | ;;;*** |
| 14803 | 14827 | ||
| 14804 | ;;;### (autoloads nil "iimage" "iimage.el" (21607 54478 300138 641000)) | 14828 | ;;;### (autoloads nil "iimage" "iimage.el" (21604 48550 129934 218000)) |
| 14805 | ;;; Generated autoloads from iimage.el | 14829 | ;;; Generated autoloads from iimage.el |
| 14806 | 14830 | ||
| 14807 | (define-obsolete-function-alias 'turn-on-iimage-mode 'iimage-mode "24.1") | 14831 | (define-obsolete-function-alias 'turn-on-iimage-mode 'iimage-mode "24.1") |
| @@ -14817,7 +14841,7 @@ the mode if ARG is omitted or nil, and toggle it if ARG is `toggle'. | |||
| 14817 | 14841 | ||
| 14818 | ;;;*** | 14842 | ;;;*** |
| 14819 | 14843 | ||
| 14820 | ;;;### (autoloads nil "image" "image.el" (21607 54478 300138 641000)) | 14844 | ;;;### (autoloads nil "image" "image.el" (21604 48550 133934 219000)) |
| 14821 | ;;; Generated autoloads from image.el | 14845 | ;;; Generated autoloads from image.el |
| 14822 | 14846 | ||
| 14823 | (autoload 'image-type-from-data "image" "\ | 14847 | (autoload 'image-type-from-data "image" "\ |
| @@ -15010,8 +15034,8 @@ If Emacs is compiled without ImageMagick support, this does nothing. | |||
| 15010 | 15034 | ||
| 15011 | ;;;*** | 15035 | ;;;*** |
| 15012 | 15036 | ||
| 15013 | ;;;### (autoloads nil "image-dired" "image-dired.el" (21607 54478 | 15037 | ;;;### (autoloads nil "image-dired" "image-dired.el" (21604 48550 |
| 15014 | ;;;;;; 300138 641000)) | 15038 | ;;;;;; 129934 218000)) |
| 15015 | ;;; Generated autoloads from image-dired.el | 15039 | ;;; Generated autoloads from image-dired.el |
| 15016 | (push (purecopy '(image-dired 0 4 11)) package--builtin-versions) | 15040 | (push (purecopy '(image-dired 0 4 11)) package--builtin-versions) |
| 15017 | 15041 | ||
| @@ -15148,8 +15172,8 @@ easy-to-use form. | |||
| 15148 | 15172 | ||
| 15149 | ;;;*** | 15173 | ;;;*** |
| 15150 | 15174 | ||
| 15151 | ;;;### (autoloads nil "image-file" "image-file.el" (21607 54478 300138 | 15175 | ;;;### (autoloads nil "image-file" "image-file.el" (21604 48550 129934 |
| 15152 | ;;;;;; 641000)) | 15176 | ;;;;;; 218000)) |
| 15153 | ;;; Generated autoloads from image-file.el | 15177 | ;;; Generated autoloads from image-file.el |
| 15154 | 15178 | ||
| 15155 | (defvar image-file-name-extensions (purecopy '("png" "jpeg" "jpg" "gif" "tiff" "tif" "xbm" "xpm" "pbm" "pgm" "ppm" "pnm" "svg")) "\ | 15179 | (defvar image-file-name-extensions (purecopy '("png" "jpeg" "jpg" "gif" "tiff" "tif" "xbm" "xpm" "pbm" "pgm" "ppm" "pnm" "svg")) "\ |
| @@ -15211,8 +15235,8 @@ An image file is one whose name has an extension in | |||
| 15211 | 15235 | ||
| 15212 | ;;;*** | 15236 | ;;;*** |
| 15213 | 15237 | ||
| 15214 | ;;;### (autoloads nil "image-mode" "image-mode.el" (21607 54478 300138 | 15238 | ;;;### (autoloads nil "image-mode" "image-mode.el" (21604 48550 129934 |
| 15215 | ;;;;;; 641000)) | 15239 | ;;;;;; 218000)) |
| 15216 | ;;; Generated autoloads from image-mode.el | 15240 | ;;; Generated autoloads from image-mode.el |
| 15217 | 15241 | ||
| 15218 | (autoload 'image-mode "image-mode" "\ | 15242 | (autoload 'image-mode "image-mode" "\ |
| @@ -15259,7 +15283,7 @@ on these modes. | |||
| 15259 | 15283 | ||
| 15260 | ;;;*** | 15284 | ;;;*** |
| 15261 | 15285 | ||
| 15262 | ;;;### (autoloads nil "imenu" "imenu.el" (21607 54478 300138 641000)) | 15286 | ;;;### (autoloads nil "imenu" "imenu.el" (21604 48550 133934 219000)) |
| 15263 | ;;; Generated autoloads from imenu.el | 15287 | ;;; Generated autoloads from imenu.el |
| 15264 | 15288 | ||
| 15265 | (defvar imenu-sort-function nil "\ | 15289 | (defvar imenu-sort-function nil "\ |
| @@ -15397,8 +15421,8 @@ for more information. | |||
| 15397 | 15421 | ||
| 15398 | ;;;*** | 15422 | ;;;*** |
| 15399 | 15423 | ||
| 15400 | ;;;### (autoloads nil "ind-util" "language/ind-util.el" (21607 54478 | 15424 | ;;;### (autoloads nil "ind-util" "language/ind-util.el" (21604 48550 |
| 15401 | ;;;;;; 300138 641000)) | 15425 | ;;;;;; 153934 219000)) |
| 15402 | ;;; Generated autoloads from language/ind-util.el | 15426 | ;;; Generated autoloads from language/ind-util.el |
| 15403 | 15427 | ||
| 15404 | (autoload 'indian-compose-region "ind-util" "\ | 15428 | (autoload 'indian-compose-region "ind-util" "\ |
| @@ -15428,8 +15452,8 @@ Convert old Emacs Devanagari characters to UCS. | |||
| 15428 | 15452 | ||
| 15429 | ;;;*** | 15453 | ;;;*** |
| 15430 | 15454 | ||
| 15431 | ;;;### (autoloads nil "inf-lisp" "progmodes/inf-lisp.el" (21607 54478 | 15455 | ;;;### (autoloads nil "inf-lisp" "progmodes/inf-lisp.el" (21604 48550 |
| 15432 | ;;;;;; 800121 42000)) | 15456 | ;;;;;; 345934 227000)) |
| 15433 | ;;; Generated autoloads from progmodes/inf-lisp.el | 15457 | ;;; Generated autoloads from progmodes/inf-lisp.el |
| 15434 | 15458 | ||
| 15435 | (autoload 'inferior-lisp "inf-lisp" "\ | 15459 | (autoload 'inferior-lisp "inf-lisp" "\ |
| @@ -15447,7 +15471,7 @@ of `inferior-lisp-program'). Runs the hooks from | |||
| 15447 | 15471 | ||
| 15448 | ;;;*** | 15472 | ;;;*** |
| 15449 | 15473 | ||
| 15450 | ;;;### (autoloads nil "info" "info.el" (21607 54478 300138 641000)) | 15474 | ;;;### (autoloads nil "info" "info.el" (21640 32530 970334 457000)) |
| 15451 | ;;; Generated autoloads from info.el | 15475 | ;;; Generated autoloads from info.el |
| 15452 | 15476 | ||
| 15453 | (defcustom Info-default-directory-list (let* ((config-dir (file-name-as-directory (or (and (featurep 'ns) (let ((dir (expand-file-name "../info" data-directory))) (if (file-directory-p dir) dir))) configure-info-directory))) (prefixes (prune-directory-list '("/usr/local/" "/usr/" "/opt/" "/"))) (suffixes '("share/" "" "gnu/" "gnu/lib/" "gnu/lib/emacs/" "emacs/" "lib/" "lib/emacs/")) (standard-info-dirs (apply #'nconc (mapcar (lambda (pfx) (let ((dirs (mapcar (lambda (sfx) (concat pfx sfx "info/")) suffixes))) (prune-directory-list dirs))) prefixes))) (dirs (if (member config-dir standard-info-dirs) (nconc standard-info-dirs (list config-dir)) (cons config-dir standard-info-dirs)))) (if (not (eq system-type 'windows-nt)) dirs (let* ((instdir (file-name-directory invocation-directory)) (dir1 (expand-file-name "../info/" instdir)) (dir2 (expand-file-name "../../../info/" instdir))) (cond ((file-exists-p dir1) (append dirs (list dir1))) ((file-exists-p dir2) (append dirs (list dir2))) (t dirs))))) "\ | 15477 | (defcustom Info-default-directory-list (let* ((config-dir (file-name-as-directory (or (and (featurep 'ns) (let ((dir (expand-file-name "../info" data-directory))) (if (file-directory-p dir) dir))) configure-info-directory))) (prefixes (prune-directory-list '("/usr/local/" "/usr/" "/opt/" "/"))) (suffixes '("share/" "" "gnu/" "gnu/lib/" "gnu/lib/emacs/" "emacs/" "lib/" "lib/emacs/")) (standard-info-dirs (apply #'nconc (mapcar (lambda (pfx) (let ((dirs (mapcar (lambda (sfx) (concat pfx sfx "info/")) suffixes))) (prune-directory-list dirs))) prefixes))) (dirs (if (member config-dir standard-info-dirs) (nconc standard-info-dirs (list config-dir)) (cons config-dir standard-info-dirs)))) (if (not (eq system-type 'windows-nt)) dirs (let* ((instdir (file-name-directory invocation-directory)) (dir1 (expand-file-name "../info/" instdir)) (dir2 (expand-file-name "../../../info/" instdir))) (cond ((file-exists-p dir1) (append dirs (list dir1))) ((file-exists-p dir2) (append dirs (list dir2))) (t dirs))))) "\ |
| @@ -15657,8 +15681,8 @@ Otherwise, visit the manual in a new Info buffer. | |||
| 15657 | 15681 | ||
| 15658 | ;;;*** | 15682 | ;;;*** |
| 15659 | 15683 | ||
| 15660 | ;;;### (autoloads nil "info-look" "info-look.el" (21607 54478 300138 | 15684 | ;;;### (autoloads nil "info-look" "info-look.el" (21604 48550 133934 |
| 15661 | ;;;;;; 641000)) | 15685 | ;;;;;; 219000)) |
| 15662 | ;;; Generated autoloads from info-look.el | 15686 | ;;; Generated autoloads from info-look.el |
| 15663 | 15687 | ||
| 15664 | (autoload 'info-lookup-reset "info-look" "\ | 15688 | (autoload 'info-lookup-reset "info-look" "\ |
| @@ -15705,8 +15729,8 @@ Perform completion on file preceding point. | |||
| 15705 | 15729 | ||
| 15706 | ;;;*** | 15730 | ;;;*** |
| 15707 | 15731 | ||
| 15708 | ;;;### (autoloads nil "info-xref" "info-xref.el" (21607 54478 300138 | 15732 | ;;;### (autoloads nil "info-xref" "info-xref.el" (21604 48550 133934 |
| 15709 | ;;;;;; 641000)) | 15733 | ;;;;;; 219000)) |
| 15710 | ;;; Generated autoloads from info-xref.el | 15734 | ;;; Generated autoloads from info-xref.el |
| 15711 | (push (purecopy '(info-xref 3)) package--builtin-versions) | 15735 | (push (purecopy '(info-xref 3)) package--builtin-versions) |
| 15712 | 15736 | ||
| @@ -15789,8 +15813,8 @@ the sources handy. | |||
| 15789 | 15813 | ||
| 15790 | ;;;*** | 15814 | ;;;*** |
| 15791 | 15815 | ||
| 15792 | ;;;### (autoloads nil "informat" "informat.el" (21607 54478 300138 | 15816 | ;;;### (autoloads nil "informat" "informat.el" (21604 48550 133934 |
| 15793 | ;;;;;; 641000)) | 15817 | ;;;;;; 219000)) |
| 15794 | ;;; Generated autoloads from informat.el | 15818 | ;;; Generated autoloads from informat.el |
| 15795 | 15819 | ||
| 15796 | (autoload 'Info-tagify "informat" "\ | 15820 | (autoload 'Info-tagify "informat" "\ |
| @@ -15835,8 +15859,8 @@ For example, invoke \"emacs -batch -f batch-info-validate $info/ ~/*.info\" | |||
| 15835 | 15859 | ||
| 15836 | ;;;*** | 15860 | ;;;*** |
| 15837 | 15861 | ||
| 15838 | ;;;### (autoloads nil "inline" "emacs-lisp/inline.el" (21628 43483 | 15862 | ;;;### (autoloads nil "inline" "emacs-lisp/inline.el" (21631 35966 |
| 15839 | ;;;;;; 380149 771000)) | 15863 | ;;;;;; 827121 867000)) |
| 15840 | ;;; Generated autoloads from emacs-lisp/inline.el | 15864 | ;;; Generated autoloads from emacs-lisp/inline.el |
| 15841 | 15865 | ||
| 15842 | (autoload 'define-inline "inline" "\ | 15866 | (autoload 'define-inline "inline" "\ |
| @@ -15850,8 +15874,8 @@ For example, invoke \"emacs -batch -f batch-info-validate $info/ ~/*.info\" | |||
| 15850 | 15874 | ||
| 15851 | ;;;*** | 15875 | ;;;*** |
| 15852 | 15876 | ||
| 15853 | ;;;### (autoloads nil "inversion" "cedet/inversion.el" (21607 54477 | 15877 | ;;;### (autoloads nil "inversion" "cedet/inversion.el" (21604 48549 |
| 15854 | ;;;;;; 800124 118000)) | 15878 | ;;;;;; 965934 212000)) |
| 15855 | ;;; Generated autoloads from cedet/inversion.el | 15879 | ;;; Generated autoloads from cedet/inversion.el |
| 15856 | (push (purecopy '(inversion 1 3)) package--builtin-versions) | 15880 | (push (purecopy '(inversion 1 3)) package--builtin-versions) |
| 15857 | 15881 | ||
| @@ -15863,8 +15887,8 @@ Only checks one based on which kind of Emacs is being run. | |||
| 15863 | 15887 | ||
| 15864 | ;;;*** | 15888 | ;;;*** |
| 15865 | 15889 | ||
| 15866 | ;;;### (autoloads nil "isearch-x" "international/isearch-x.el" (21607 | 15890 | ;;;### (autoloads nil "isearch-x" "international/isearch-x.el" (21604 |
| 15867 | ;;;;;; 54478 300138 641000)) | 15891 | ;;;;;; 48550 137934 219000)) |
| 15868 | ;;; Generated autoloads from international/isearch-x.el | 15892 | ;;; Generated autoloads from international/isearch-x.el |
| 15869 | 15893 | ||
| 15870 | (autoload 'isearch-toggle-specified-input-method "isearch-x" "\ | 15894 | (autoload 'isearch-toggle-specified-input-method "isearch-x" "\ |
| @@ -15884,8 +15908,8 @@ Toggle input method in interactive search. | |||
| 15884 | 15908 | ||
| 15885 | ;;;*** | 15909 | ;;;*** |
| 15886 | 15910 | ||
| 15887 | ;;;### (autoloads nil "isearchb" "isearchb.el" (21607 54478 300138 | 15911 | ;;;### (autoloads nil "isearchb" "isearchb.el" (21604 48550 145934 |
| 15888 | ;;;;;; 641000)) | 15912 | ;;;;;; 219000)) |
| 15889 | ;;; Generated autoloads from isearchb.el | 15913 | ;;; Generated autoloads from isearchb.el |
| 15890 | (push (purecopy '(isearchb 1 5)) package--builtin-versions) | 15914 | (push (purecopy '(isearchb 1 5)) package--builtin-versions) |
| 15891 | 15915 | ||
| @@ -15899,8 +15923,8 @@ accessed via isearchb. | |||
| 15899 | 15923 | ||
| 15900 | ;;;*** | 15924 | ;;;*** |
| 15901 | 15925 | ||
| 15902 | ;;;### (autoloads nil "iso-cvt" "international/iso-cvt.el" (21607 | 15926 | ;;;### (autoloads nil "iso-cvt" "international/iso-cvt.el" (21604 |
| 15903 | ;;;;;; 54478 300138 641000)) | 15927 | ;;;;;; 48550 137934 219000)) |
| 15904 | ;;; Generated autoloads from international/iso-cvt.el | 15928 | ;;; Generated autoloads from international/iso-cvt.el |
| 15905 | 15929 | ||
| 15906 | (autoload 'iso-spanish "iso-cvt" "\ | 15930 | (autoload 'iso-spanish "iso-cvt" "\ |
| @@ -15991,15 +16015,15 @@ Add submenus to the File menu, to convert to and from various formats. | |||
| 15991 | ;;;*** | 16015 | ;;;*** |
| 15992 | 16016 | ||
| 15993 | ;;;### (autoloads nil "iso-transl" "international/iso-transl.el" | 16017 | ;;;### (autoloads nil "iso-transl" "international/iso-transl.el" |
| 15994 | ;;;;;; (21607 54478 300138 641000)) | 16018 | ;;;;;; (21604 48550 137934 219000)) |
| 15995 | ;;; Generated autoloads from international/iso-transl.el | 16019 | ;;; Generated autoloads from international/iso-transl.el |
| 15996 | (define-key key-translation-map "\C-x8" 'iso-transl-ctl-x-8-map) | 16020 | (define-key key-translation-map "\C-x8" 'iso-transl-ctl-x-8-map) |
| 15997 | (autoload 'iso-transl-ctl-x-8-map "iso-transl" "Keymap for C-x 8 prefix." t 'keymap) | 16021 | (autoload 'iso-transl-ctl-x-8-map "iso-transl" "Keymap for C-x 8 prefix." t 'keymap) |
| 15998 | 16022 | ||
| 15999 | ;;;*** | 16023 | ;;;*** |
| 16000 | 16024 | ||
| 16001 | ;;;### (autoloads nil "ispell" "textmodes/ispell.el" (21607 54478 | 16025 | ;;;### (autoloads nil "ispell" "textmodes/ispell.el" (21659 61733 |
| 16002 | ;;;;;; 800121 42000)) | 16026 | ;;;;;; 226949 164000)) |
| 16003 | ;;; Generated autoloads from textmodes/ispell.el | 16027 | ;;; Generated autoloads from textmodes/ispell.el |
| 16004 | 16028 | ||
| 16005 | (put 'ispell-check-comments 'safe-local-variable (lambda (a) (memq a '(nil t exclusive)))) | 16029 | (put 'ispell-check-comments 'safe-local-variable (lambda (a) (memq a '(nil t exclusive)))) |
| @@ -16232,8 +16256,8 @@ You can bind this to the key C-c i in GNUS or mail by adding to | |||
| 16232 | 16256 | ||
| 16233 | ;;;*** | 16257 | ;;;*** |
| 16234 | 16258 | ||
| 16235 | ;;;### (autoloads nil "japan-util" "language/japan-util.el" (21607 | 16259 | ;;;### (autoloads nil "japan-util" "language/japan-util.el" (21604 |
| 16236 | ;;;;;; 54478 300138 641000)) | 16260 | ;;;;;; 48550 153934 219000)) |
| 16237 | ;;; Generated autoloads from language/japan-util.el | 16261 | ;;; Generated autoloads from language/japan-util.el |
| 16238 | 16262 | ||
| 16239 | (autoload 'setup-japanese-environment-internal "japan-util" "\ | 16263 | (autoload 'setup-japanese-environment-internal "japan-util" "\ |
| @@ -16310,8 +16334,8 @@ If non-nil, second arg INITIAL-INPUT is a string to insert before reading. | |||
| 16310 | 16334 | ||
| 16311 | ;;;*** | 16335 | ;;;*** |
| 16312 | 16336 | ||
| 16313 | ;;;### (autoloads nil "jka-compr" "jka-compr.el" (21607 54478 300138 | 16337 | ;;;### (autoloads nil "jka-compr" "jka-compr.el" (21604 48550 145934 |
| 16314 | ;;;;;; 641000)) | 16338 | ;;;;;; 219000)) |
| 16315 | ;;; Generated autoloads from jka-compr.el | 16339 | ;;; Generated autoloads from jka-compr.el |
| 16316 | 16340 | ||
| 16317 | (defvar jka-compr-inhibit nil "\ | 16341 | (defvar jka-compr-inhibit nil "\ |
| @@ -16334,7 +16358,8 @@ by `jka-compr-installed'. | |||
| 16334 | 16358 | ||
| 16335 | ;;;*** | 16359 | ;;;*** |
| 16336 | 16360 | ||
| 16337 | ;;;### (autoloads nil "js" "progmodes/js.el" (21623 2108 292281 129000)) | 16361 | ;;;### (autoloads nil "js" "progmodes/js.el" (21659 61733 222949 |
| 16362 | ;;;;;; 164000)) | ||
| 16338 | ;;; Generated autoloads from progmodes/js.el | 16363 | ;;; Generated autoloads from progmodes/js.el |
| 16339 | (push (purecopy '(js 9)) package--builtin-versions) | 16364 | (push (purecopy '(js 9)) package--builtin-versions) |
| 16340 | 16365 | ||
| @@ -16348,14 +16373,14 @@ Major mode for editing JavaScript. | |||
| 16348 | 16373 | ||
| 16349 | ;;;*** | 16374 | ;;;*** |
| 16350 | 16375 | ||
| 16351 | ;;;### (autoloads nil "json" "json.el" (21607 54478 300138 641000)) | 16376 | ;;;### (autoloads nil "json" "json.el" (21604 48550 145934 219000)) |
| 16352 | ;;; Generated autoloads from json.el | 16377 | ;;; Generated autoloads from json.el |
| 16353 | (push (purecopy '(json 1 4)) package--builtin-versions) | 16378 | (push (purecopy '(json 1 4)) package--builtin-versions) |
| 16354 | 16379 | ||
| 16355 | ;;;*** | 16380 | ;;;*** |
| 16356 | 16381 | ||
| 16357 | ;;;### (autoloads nil "keypad" "emulation/keypad.el" (21607 54477 | 16382 | ;;;### (autoloads nil "keypad" "emulation/keypad.el" (21604 48550 |
| 16358 | ;;;;;; 800124 118000)) | 16383 | ;;;;;; 29934 215000)) |
| 16359 | ;;; Generated autoloads from emulation/keypad.el | 16384 | ;;; Generated autoloads from emulation/keypad.el |
| 16360 | 16385 | ||
| 16361 | (defvar keypad-setup nil "\ | 16386 | (defvar keypad-setup nil "\ |
| @@ -16410,8 +16435,8 @@ the decimal key on the keypad is mapped to DECIMAL instead of `.' | |||
| 16410 | 16435 | ||
| 16411 | ;;;*** | 16436 | ;;;*** |
| 16412 | 16437 | ||
| 16413 | ;;;### (autoloads nil "kinsoku" "international/kinsoku.el" (21607 | 16438 | ;;;### (autoloads nil "kinsoku" "international/kinsoku.el" (21604 |
| 16414 | ;;;;;; 54478 300138 641000)) | 16439 | ;;;;;; 48550 137934 219000)) |
| 16415 | ;;; Generated autoloads from international/kinsoku.el | 16440 | ;;; Generated autoloads from international/kinsoku.el |
| 16416 | 16441 | ||
| 16417 | (autoload 'kinsoku "kinsoku" "\ | 16442 | (autoload 'kinsoku "kinsoku" "\ |
| @@ -16432,8 +16457,8 @@ the context of text formatting. | |||
| 16432 | 16457 | ||
| 16433 | ;;;*** | 16458 | ;;;*** |
| 16434 | 16459 | ||
| 16435 | ;;;### (autoloads nil "kkc" "international/kkc.el" (21607 54478 300138 | 16460 | ;;;### (autoloads nil "kkc" "international/kkc.el" (21604 48550 137934 |
| 16436 | ;;;;;; 641000)) | 16461 | ;;;;;; 219000)) |
| 16437 | ;;; Generated autoloads from international/kkc.el | 16462 | ;;; Generated autoloads from international/kkc.el |
| 16438 | 16463 | ||
| 16439 | (defvar kkc-after-update-conversion-functions nil "\ | 16464 | (defvar kkc-after-update-conversion-functions nil "\ |
| @@ -16455,7 +16480,7 @@ and the return value is the length of the conversion. | |||
| 16455 | 16480 | ||
| 16456 | ;;;*** | 16481 | ;;;*** |
| 16457 | 16482 | ||
| 16458 | ;;;### (autoloads nil "kmacro" "kmacro.el" (21607 54478 300138 641000)) | 16483 | ;;;### (autoloads nil "kmacro" "kmacro.el" (21604 48550 145934 219000)) |
| 16459 | ;;; Generated autoloads from kmacro.el | 16484 | ;;; Generated autoloads from kmacro.el |
| 16460 | (global-set-key "\C-x(" 'kmacro-start-macro) | 16485 | (global-set-key "\C-x(" 'kmacro-start-macro) |
| 16461 | (global-set-key "\C-x)" 'kmacro-end-macro) | 16486 | (global-set-key "\C-x)" 'kmacro-end-macro) |
| @@ -16567,8 +16592,8 @@ If kbd macro currently being defined end it before activating it. | |||
| 16567 | 16592 | ||
| 16568 | ;;;*** | 16593 | ;;;*** |
| 16569 | 16594 | ||
| 16570 | ;;;### (autoloads nil "korea-util" "language/korea-util.el" (21607 | 16595 | ;;;### (autoloads nil "korea-util" "language/korea-util.el" (21604 |
| 16571 | ;;;;;; 54478 300138 641000)) | 16596 | ;;;;;; 48550 153934 219000)) |
| 16572 | ;;; Generated autoloads from language/korea-util.el | 16597 | ;;; Generated autoloads from language/korea-util.el |
| 16573 | 16598 | ||
| 16574 | (defvar default-korean-keyboard (purecopy (if (string-match "3" (or (getenv "HANGUL_KEYBOARD_TYPE") "")) "3" "")) "\ | 16599 | (defvar default-korean-keyboard (purecopy (if (string-match "3" (or (getenv "HANGUL_KEYBOARD_TYPE") "")) "3" "")) "\ |
| @@ -16582,8 +16607,8 @@ The kind of Korean keyboard for Korean input method. | |||
| 16582 | 16607 | ||
| 16583 | ;;;*** | 16608 | ;;;*** |
| 16584 | 16609 | ||
| 16585 | ;;;### (autoloads nil "landmark" "play/landmark.el" (21607 54478 | 16610 | ;;;### (autoloads nil "landmark" "play/landmark.el" (21604 48550 |
| 16586 | ;;;;;; 800121 42000)) | 16611 | ;;;;;; 305934 225000)) |
| 16587 | ;;; Generated autoloads from play/landmark.el | 16612 | ;;; Generated autoloads from play/landmark.el |
| 16588 | (push (purecopy '(landmark 1 0)) package--builtin-versions) | 16613 | (push (purecopy '(landmark 1 0)) package--builtin-versions) |
| 16589 | 16614 | ||
| @@ -16614,8 +16639,8 @@ Use \\[describe-mode] for more info. | |||
| 16614 | 16639 | ||
| 16615 | ;;;*** | 16640 | ;;;*** |
| 16616 | 16641 | ||
| 16617 | ;;;### (autoloads nil "lao-util" "language/lao-util.el" (21607 54478 | 16642 | ;;;### (autoloads nil "lao-util" "language/lao-util.el" (21604 48550 |
| 16618 | ;;;;;; 300138 641000)) | 16643 | ;;;;;; 153934 219000)) |
| 16619 | ;;; Generated autoloads from language/lao-util.el | 16644 | ;;; Generated autoloads from language/lao-util.el |
| 16620 | 16645 | ||
| 16621 | (autoload 'lao-compose-string "lao-util" "\ | 16646 | (autoload 'lao-compose-string "lao-util" "\ |
| @@ -16652,8 +16677,8 @@ Transcribe Romanized Lao string STR to Lao character string. | |||
| 16652 | 16677 | ||
| 16653 | ;;;*** | 16678 | ;;;*** |
| 16654 | 16679 | ||
| 16655 | ;;;### (autoloads nil "latexenc" "international/latexenc.el" (21607 | 16680 | ;;;### (autoloads nil "latexenc" "international/latexenc.el" (21604 |
| 16656 | ;;;;;; 54478 300138 641000)) | 16681 | ;;;;;; 48550 137934 219000)) |
| 16657 | ;;; Generated autoloads from international/latexenc.el | 16682 | ;;; Generated autoloads from international/latexenc.el |
| 16658 | 16683 | ||
| 16659 | (defvar latex-inputenc-coding-alist (purecopy '(("ansinew" . windows-1252) ("applemac" . mac-roman) ("ascii" . us-ascii) ("cp1250" . windows-1250) ("cp1252" . windows-1252) ("cp1257" . cp1257) ("cp437de" . cp437) ("cp437" . cp437) ("cp850" . cp850) ("cp852" . cp852) ("cp858" . cp858) ("cp865" . cp865) ("latin1" . iso-8859-1) ("latin2" . iso-8859-2) ("latin3" . iso-8859-3) ("latin4" . iso-8859-4) ("latin5" . iso-8859-5) ("latin9" . iso-8859-15) ("next" . next) ("utf8" . utf-8) ("utf8x" . utf-8))) "\ | 16684 | (defvar latex-inputenc-coding-alist (purecopy '(("ansinew" . windows-1252) ("applemac" . mac-roman) ("ascii" . us-ascii) ("cp1250" . windows-1250) ("cp1252" . windows-1252) ("cp1257" . cp1257) ("cp437de" . cp437) ("cp437" . cp437) ("cp850" . cp850) ("cp852" . cp852) ("cp858" . cp858) ("cp865" . cp865) ("latin1" . iso-8859-1) ("latin2" . iso-8859-2) ("latin3" . iso-8859-3) ("latin4" . iso-8859-4) ("latin5" . iso-8859-5) ("latin9" . iso-8859-15) ("next" . next) ("utf8" . utf-8) ("utf8x" . utf-8))) "\ |
| @@ -16685,7 +16710,7 @@ coding system names is determined from `latex-inputenc-coding-alist'. | |||
| 16685 | ;;;*** | 16710 | ;;;*** |
| 16686 | 16711 | ||
| 16687 | ;;;### (autoloads nil "latin1-disp" "international/latin1-disp.el" | 16712 | ;;;### (autoloads nil "latin1-disp" "international/latin1-disp.el" |
| 16688 | ;;;;;; (21607 54478 300138 641000)) | 16713 | ;;;;;; (21604 48550 137934 219000)) |
| 16689 | ;;; Generated autoloads from international/latin1-disp.el | 16714 | ;;; Generated autoloads from international/latin1-disp.el |
| 16690 | 16715 | ||
| 16691 | (defvar latin1-display nil "\ | 16716 | (defvar latin1-display nil "\ |
| @@ -16726,8 +16751,8 @@ use either \\[customize] or the function `latin1-display'.") | |||
| 16726 | 16751 | ||
| 16727 | ;;;*** | 16752 | ;;;*** |
| 16728 | 16753 | ||
| 16729 | ;;;### (autoloads nil "ld-script" "progmodes/ld-script.el" (21607 | 16754 | ;;;### (autoloads nil "ld-script" "progmodes/ld-script.el" (21604 |
| 16730 | ;;;;;; 54478 800121 42000)) | 16755 | ;;;;;; 48550 345934 227000)) |
| 16731 | ;;; Generated autoloads from progmodes/ld-script.el | 16756 | ;;; Generated autoloads from progmodes/ld-script.el |
| 16732 | 16757 | ||
| 16733 | (autoload 'ld-script-mode "ld-script" "\ | 16758 | (autoload 'ld-script-mode "ld-script" "\ |
| @@ -16737,7 +16762,47 @@ A major mode to edit GNU ld script files | |||
| 16737 | 16762 | ||
| 16738 | ;;;*** | 16763 | ;;;*** |
| 16739 | 16764 | ||
| 16740 | ;;;### (autoloads nil "life" "play/life.el" (21607 54478 800121 42000)) | 16765 | ;;;### (autoloads nil "let-alist" "let-alist.el" (21659 61733 206949 |
| 16766 | ;;;;;; 164000)) | ||
| 16767 | ;;; Generated autoloads from let-alist.el | ||
| 16768 | (push (purecopy '(let-alist 1 0 3)) package--builtin-versions) | ||
| 16769 | |||
| 16770 | (autoload 'let-alist "let-alist" "\ | ||
| 16771 | Let-bind dotted symbols to their cdrs in ALIST and execute BODY. | ||
| 16772 | Dotted symbol is any symbol starting with a `.'. Only those present | ||
| 16773 | in BODY are let-bound and this search is done at compile time. | ||
| 16774 | |||
| 16775 | For instance, the following code | ||
| 16776 | |||
| 16777 | (let-alist alist | ||
| 16778 | (if (and .title .body) | ||
| 16779 | .body | ||
| 16780 | .site | ||
| 16781 | .site.contents)) | ||
| 16782 | |||
| 16783 | essentially expands to | ||
| 16784 | |||
| 16785 | (let ((.title (cdr (assq 'title alist))) | ||
| 16786 | (.body (cdr (assq 'body alist))) | ||
| 16787 | (.site (cdr (assq 'site alist))) | ||
| 16788 | (.site.contents (cdr (assq 'contents (cdr (assq 'site alist)))))) | ||
| 16789 | (if (and .title .body) | ||
| 16790 | .body | ||
| 16791 | .site | ||
| 16792 | .site.contents)) | ||
| 16793 | |||
| 16794 | If you nest `let-alist' invocations, the inner one can't access | ||
| 16795 | the variables of the outer one. You can, however, access alists | ||
| 16796 | inside the original alist by using dots inside the symbol, as | ||
| 16797 | displayed in the example above. | ||
| 16798 | |||
| 16799 | \(fn ALIST &rest BODY)" nil t) | ||
| 16800 | |||
| 16801 | (function-put 'let-alist 'lisp-indent-function '1) | ||
| 16802 | |||
| 16803 | ;;;*** | ||
| 16804 | |||
| 16805 | ;;;### (autoloads nil "life" "play/life.el" (21604 48550 305934 225000)) | ||
| 16741 | ;;; Generated autoloads from play/life.el | 16806 | ;;; Generated autoloads from play/life.el |
| 16742 | 16807 | ||
| 16743 | (autoload 'life "life" "\ | 16808 | (autoload 'life "life" "\ |
| @@ -16750,7 +16815,7 @@ generations (this defaults to 1). | |||
| 16750 | 16815 | ||
| 16751 | ;;;*** | 16816 | ;;;*** |
| 16752 | 16817 | ||
| 16753 | ;;;### (autoloads nil "linum" "linum.el" (21607 54478 300138 641000)) | 16818 | ;;;### (autoloads nil "linum" "linum.el" (21651 20707 180225 752000)) |
| 16754 | ;;; Generated autoloads from linum.el | 16819 | ;;; Generated autoloads from linum.el |
| 16755 | (push (purecopy '(linum 0 9 24)) package--builtin-versions) | 16820 | (push (purecopy '(linum 0 9 24)) package--builtin-versions) |
| 16756 | 16821 | ||
| @@ -16787,8 +16852,8 @@ See `linum-mode' for more information on Linum mode. | |||
| 16787 | 16852 | ||
| 16788 | ;;;*** | 16853 | ;;;*** |
| 16789 | 16854 | ||
| 16790 | ;;;### (autoloads nil "loadhist" "loadhist.el" (21607 54478 300138 | 16855 | ;;;### (autoloads nil "loadhist" "loadhist.el" (21604 48550 177934 |
| 16791 | ;;;;;; 641000)) | 16856 | ;;;;;; 220000)) |
| 16792 | ;;; Generated autoloads from loadhist.el | 16857 | ;;; Generated autoloads from loadhist.el |
| 16793 | 16858 | ||
| 16794 | (autoload 'unload-feature "loadhist" "\ | 16859 | (autoload 'unload-feature "loadhist" "\ |
| @@ -16819,7 +16884,7 @@ something strange, such as redefining an Emacs function. | |||
| 16819 | 16884 | ||
| 16820 | ;;;*** | 16885 | ;;;*** |
| 16821 | 16886 | ||
| 16822 | ;;;### (autoloads nil "locate" "locate.el" (21607 54478 300138 641000)) | 16887 | ;;;### (autoloads nil "locate" "locate.el" (21604 48550 177934 220000)) |
| 16823 | ;;; Generated autoloads from locate.el | 16888 | ;;; Generated autoloads from locate.el |
| 16824 | 16889 | ||
| 16825 | (defvar locate-ls-subdir-switches (purecopy "-al") "\ | 16890 | (defvar locate-ls-subdir-switches (purecopy "-al") "\ |
| @@ -16871,8 +16936,8 @@ except that FILTER is not optional. | |||
| 16871 | 16936 | ||
| 16872 | ;;;*** | 16937 | ;;;*** |
| 16873 | 16938 | ||
| 16874 | ;;;### (autoloads nil "log-edit" "vc/log-edit.el" (21607 54478 800121 | 16939 | ;;;### (autoloads nil "log-edit" "vc/log-edit.el" (21604 48550 429934 |
| 16875 | ;;;;;; 42000)) | 16940 | ;;;;;; 230000)) |
| 16876 | ;;; Generated autoloads from vc/log-edit.el | 16941 | ;;; Generated autoloads from vc/log-edit.el |
| 16877 | 16942 | ||
| 16878 | (autoload 'log-edit "log-edit" "\ | 16943 | (autoload 'log-edit "log-edit" "\ |
| @@ -16903,8 +16968,8 @@ done. Otherwise, it uses the current buffer. | |||
| 16903 | 16968 | ||
| 16904 | ;;;*** | 16969 | ;;;*** |
| 16905 | 16970 | ||
| 16906 | ;;;### (autoloads nil "log-view" "vc/log-view.el" (21607 54478 800121 | 16971 | ;;;### (autoloads nil "log-view" "vc/log-view.el" (21604 48550 429934 |
| 16907 | ;;;;;; 42000)) | 16972 | ;;;;;; 230000)) |
| 16908 | ;;; Generated autoloads from vc/log-view.el | 16973 | ;;; Generated autoloads from vc/log-view.el |
| 16909 | 16974 | ||
| 16910 | (autoload 'log-view-mode "log-view" "\ | 16975 | (autoload 'log-view-mode "log-view" "\ |
| @@ -16914,7 +16979,7 @@ Major mode for browsing CVS log output. | |||
| 16914 | 16979 | ||
| 16915 | ;;;*** | 16980 | ;;;*** |
| 16916 | 16981 | ||
| 16917 | ;;;### (autoloads nil "lpr" "lpr.el" (21607 54478 300138 641000)) | 16982 | ;;;### (autoloads nil "lpr" "lpr.el" (21604 48550 181934 220000)) |
| 16918 | ;;; Generated autoloads from lpr.el | 16983 | ;;; Generated autoloads from lpr.el |
| 16919 | 16984 | ||
| 16920 | (defvar lpr-windows-system (memq system-type '(ms-dos windows-nt)) "\ | 16985 | (defvar lpr-windows-system (memq system-type '(ms-dos windows-nt)) "\ |
| @@ -17009,8 +17074,8 @@ for further customization of the printer command. | |||
| 17009 | 17074 | ||
| 17010 | ;;;*** | 17075 | ;;;*** |
| 17011 | 17076 | ||
| 17012 | ;;;### (autoloads nil "ls-lisp" "ls-lisp.el" (21607 54478 300138 | 17077 | ;;;### (autoloads nil "ls-lisp" "ls-lisp.el" (21604 48550 181934 |
| 17013 | ;;;;;; 641000)) | 17078 | ;;;;;; 220000)) |
| 17014 | ;;; Generated autoloads from ls-lisp.el | 17079 | ;;; Generated autoloads from ls-lisp.el |
| 17015 | 17080 | ||
| 17016 | (defvar ls-lisp-support-shell-wildcards t "\ | 17081 | (defvar ls-lisp-support-shell-wildcards t "\ |
| @@ -17021,8 +17086,8 @@ Otherwise they are treated as Emacs regexps (for backward compatibility).") | |||
| 17021 | 17086 | ||
| 17022 | ;;;*** | 17087 | ;;;*** |
| 17023 | 17088 | ||
| 17024 | ;;;### (autoloads nil "lunar" "calendar/lunar.el" (21607 54477 800124 | 17089 | ;;;### (autoloads nil "lunar" "calendar/lunar.el" (21604 48549 953934 |
| 17025 | ;;;;;; 118000)) | 17090 | ;;;;;; 212000)) |
| 17026 | ;;; Generated autoloads from calendar/lunar.el | 17091 | ;;; Generated autoloads from calendar/lunar.el |
| 17027 | 17092 | ||
| 17028 | (autoload 'lunar-phases "lunar" "\ | 17093 | (autoload 'lunar-phases "lunar" "\ |
| @@ -17034,8 +17099,8 @@ This function is suitable for execution in an init file. | |||
| 17034 | 17099 | ||
| 17035 | ;;;*** | 17100 | ;;;*** |
| 17036 | 17101 | ||
| 17037 | ;;;### (autoloads nil "m4-mode" "progmodes/m4-mode.el" (21607 54478 | 17102 | ;;;### (autoloads nil "m4-mode" "progmodes/m4-mode.el" (21604 48550 |
| 17038 | ;;;;;; 800121 42000)) | 17103 | ;;;;;; 345934 227000)) |
| 17039 | ;;; Generated autoloads from progmodes/m4-mode.el | 17104 | ;;; Generated autoloads from progmodes/m4-mode.el |
| 17040 | 17105 | ||
| 17041 | (autoload 'm4-mode "m4-mode" "\ | 17106 | (autoload 'm4-mode "m4-mode" "\ |
| @@ -17045,7 +17110,7 @@ A major mode to edit m4 macro files. | |||
| 17045 | 17110 | ||
| 17046 | ;;;*** | 17111 | ;;;*** |
| 17047 | 17112 | ||
| 17048 | ;;;### (autoloads nil "macros" "macros.el" (21607 54478 300138 641000)) | 17113 | ;;;### (autoloads nil "macros" "macros.el" (21604 48550 181934 220000)) |
| 17049 | ;;; Generated autoloads from macros.el | 17114 | ;;; Generated autoloads from macros.el |
| 17050 | 17115 | ||
| 17051 | (autoload 'name-last-kbd-macro "macros" "\ | 17116 | (autoload 'name-last-kbd-macro "macros" "\ |
| @@ -17134,8 +17199,8 @@ and then select the region of un-tablified names and use | |||
| 17134 | 17199 | ||
| 17135 | ;;;*** | 17200 | ;;;*** |
| 17136 | 17201 | ||
| 17137 | ;;;### (autoloads nil "mail-extr" "mail/mail-extr.el" (21607 54478 | 17202 | ;;;### (autoloads nil "mail-extr" "mail/mail-extr.el" (21604 48550 |
| 17138 | ;;;;;; 300138 641000)) | 17203 | ;;;;;; 181934 220000)) |
| 17139 | ;;; Generated autoloads from mail/mail-extr.el | 17204 | ;;; Generated autoloads from mail/mail-extr.el |
| 17140 | 17205 | ||
| 17141 | (autoload 'mail-extract-address-components "mail-extr" "\ | 17206 | (autoload 'mail-extract-address-components "mail-extr" "\ |
| @@ -17165,8 +17230,8 @@ Convert mail domain DOMAIN to the country it corresponds to. | |||
| 17165 | 17230 | ||
| 17166 | ;;;*** | 17231 | ;;;*** |
| 17167 | 17232 | ||
| 17168 | ;;;### (autoloads nil "mail-hist" "mail/mail-hist.el" (21607 54478 | 17233 | ;;;### (autoloads nil "mail-hist" "mail/mail-hist.el" (21604 48550 |
| 17169 | ;;;;;; 300138 641000)) | 17234 | ;;;;;; 181934 220000)) |
| 17170 | ;;; Generated autoloads from mail/mail-hist.el | 17235 | ;;; Generated autoloads from mail/mail-hist.el |
| 17171 | 17236 | ||
| 17172 | (autoload 'mail-hist-define-keys "mail-hist" "\ | 17237 | (autoload 'mail-hist-define-keys "mail-hist" "\ |
| @@ -17195,8 +17260,8 @@ This function normally would be called when the message is sent. | |||
| 17195 | 17260 | ||
| 17196 | ;;;*** | 17261 | ;;;*** |
| 17197 | 17262 | ||
| 17198 | ;;;### (autoloads nil "mail-utils" "mail/mail-utils.el" (21607 54478 | 17263 | ;;;### (autoloads nil "mail-utils" "mail/mail-utils.el" (21604 48550 |
| 17199 | ;;;;;; 300138 641000)) | 17264 | ;;;;;; 181934 220000)) |
| 17200 | ;;; Generated autoloads from mail/mail-utils.el | 17265 | ;;; Generated autoloads from mail/mail-utils.el |
| 17201 | 17266 | ||
| 17202 | (defvar mail-use-rfc822 nil "\ | 17267 | (defvar mail-use-rfc822 nil "\ |
| @@ -17270,8 +17335,8 @@ matches may be returned from the message body. | |||
| 17270 | 17335 | ||
| 17271 | ;;;*** | 17336 | ;;;*** |
| 17272 | 17337 | ||
| 17273 | ;;;### (autoloads nil "mailabbrev" "mail/mailabbrev.el" (21607 54478 | 17338 | ;;;### (autoloads nil "mailabbrev" "mail/mailabbrev.el" (21604 48550 |
| 17274 | ;;;;;; 300138 641000)) | 17339 | ;;;;;; 181934 220000)) |
| 17275 | ;;; Generated autoloads from mail/mailabbrev.el | 17340 | ;;; Generated autoloads from mail/mailabbrev.el |
| 17276 | 17341 | ||
| 17277 | (defvar mail-abbrevs-mode nil "\ | 17342 | (defvar mail-abbrevs-mode nil "\ |
| @@ -17320,8 +17385,8 @@ double-quotes. | |||
| 17320 | 17385 | ||
| 17321 | ;;;*** | 17386 | ;;;*** |
| 17322 | 17387 | ||
| 17323 | ;;;### (autoloads nil "mailalias" "mail/mailalias.el" (21607 54478 | 17388 | ;;;### (autoloads nil "mailalias" "mail/mailalias.el" (21604 48550 |
| 17324 | ;;;;;; 300138 641000)) | 17389 | ;;;;;; 185934 221000)) |
| 17325 | ;;; Generated autoloads from mail/mailalias.el | 17390 | ;;; Generated autoloads from mail/mailalias.el |
| 17326 | 17391 | ||
| 17327 | (defvar mail-complete-style 'angles "\ | 17392 | (defvar mail-complete-style 'angles "\ |
| @@ -17374,8 +17439,8 @@ current header, calls `mail-complete-function' and passes prefix ARG if any. | |||
| 17374 | 17439 | ||
| 17375 | ;;;*** | 17440 | ;;;*** |
| 17376 | 17441 | ||
| 17377 | ;;;### (autoloads nil "mailclient" "mail/mailclient.el" (21607 54478 | 17442 | ;;;### (autoloads nil "mailclient" "mail/mailclient.el" (21604 48550 |
| 17378 | ;;;;;; 300138 641000)) | 17443 | ;;;;;; 185934 221000)) |
| 17379 | ;;; Generated autoloads from mail/mailclient.el | 17444 | ;;; Generated autoloads from mail/mailclient.el |
| 17380 | 17445 | ||
| 17381 | (autoload 'mailclient-send-it "mailclient" "\ | 17446 | (autoload 'mailclient-send-it "mailclient" "\ |
| @@ -17387,8 +17452,8 @@ The mail client is taken to be the handler of mailto URLs. | |||
| 17387 | 17452 | ||
| 17388 | ;;;*** | 17453 | ;;;*** |
| 17389 | 17454 | ||
| 17390 | ;;;### (autoloads nil "make-mode" "progmodes/make-mode.el" (21607 | 17455 | ;;;### (autoloads nil "make-mode" "progmodes/make-mode.el" (21604 |
| 17391 | ;;;;;; 54478 800121 42000)) | 17456 | ;;;;;; 48550 349934 227000)) |
| 17392 | ;;; Generated autoloads from progmodes/make-mode.el | 17457 | ;;; Generated autoloads from progmodes/make-mode.el |
| 17393 | 17458 | ||
| 17394 | (autoload 'makefile-mode "make-mode" "\ | 17459 | (autoload 'makefile-mode "make-mode" "\ |
| @@ -17505,8 +17570,8 @@ An adapted `makefile-mode' that knows about imake. | |||
| 17505 | 17570 | ||
| 17506 | ;;;*** | 17571 | ;;;*** |
| 17507 | 17572 | ||
| 17508 | ;;;### (autoloads nil "makesum" "makesum.el" (21607 54478 300138 | 17573 | ;;;### (autoloads nil "makesum" "makesum.el" (21604 48550 189934 |
| 17509 | ;;;;;; 641000)) | 17574 | ;;;;;; 221000)) |
| 17510 | ;;; Generated autoloads from makesum.el | 17575 | ;;; Generated autoloads from makesum.el |
| 17511 | 17576 | ||
| 17512 | (autoload 'make-command-summary "makesum" "\ | 17577 | (autoload 'make-command-summary "makesum" "\ |
| @@ -17517,7 +17582,7 @@ Previous contents of that buffer are killed first. | |||
| 17517 | 17582 | ||
| 17518 | ;;;*** | 17583 | ;;;*** |
| 17519 | 17584 | ||
| 17520 | ;;;### (autoloads nil "man" "man.el" (21607 54478 300138 641000)) | 17585 | ;;;### (autoloads nil "man" "man.el" (21604 48550 189934 221000)) |
| 17521 | ;;; Generated autoloads from man.el | 17586 | ;;; Generated autoloads from man.el |
| 17522 | 17587 | ||
| 17523 | (defalias 'manual-entry 'man) | 17588 | (defalias 'manual-entry 'man) |
| @@ -17573,7 +17638,7 @@ Default bookmark handler for Man buffers. | |||
| 17573 | 17638 | ||
| 17574 | ;;;*** | 17639 | ;;;*** |
| 17575 | 17640 | ||
| 17576 | ;;;### (autoloads nil "master" "master.el" (21607 54478 300138 641000)) | 17641 | ;;;### (autoloads nil "master" "master.el" (21604 48550 193934 221000)) |
| 17577 | ;;; Generated autoloads from master.el | 17642 | ;;; Generated autoloads from master.el |
| 17578 | (push (purecopy '(master 1 0 2)) package--builtin-versions) | 17643 | (push (purecopy '(master 1 0 2)) package--builtin-versions) |
| 17579 | 17644 | ||
| @@ -17596,8 +17661,8 @@ yourself the value of `master-of' by calling `master-show-slave'. | |||
| 17596 | 17661 | ||
| 17597 | ;;;*** | 17662 | ;;;*** |
| 17598 | 17663 | ||
| 17599 | ;;;### (autoloads nil "mb-depth" "mb-depth.el" (21607 54478 300138 | 17664 | ;;;### (autoloads nil "mb-depth" "mb-depth.el" (21604 48550 193934 |
| 17600 | ;;;;;; 641000)) | 17665 | ;;;;;; 221000)) |
| 17601 | ;;; Generated autoloads from mb-depth.el | 17666 | ;;; Generated autoloads from mb-depth.el |
| 17602 | 17667 | ||
| 17603 | (defvar minibuffer-depth-indicate-mode nil "\ | 17668 | (defvar minibuffer-depth-indicate-mode nil "\ |
| @@ -17624,14 +17689,14 @@ recursion depth in the minibuffer prompt. This is only useful if | |||
| 17624 | 17689 | ||
| 17625 | ;;;*** | 17690 | ;;;*** |
| 17626 | 17691 | ||
| 17627 | ;;;### (autoloads nil "md4" "md4.el" (21607 54478 300138 641000)) | 17692 | ;;;### (autoloads nil "md4" "md4.el" (21604 48550 193934 221000)) |
| 17628 | ;;; Generated autoloads from md4.el | 17693 | ;;; Generated autoloads from md4.el |
| 17629 | (push (purecopy '(md4 1 0)) package--builtin-versions) | 17694 | (push (purecopy '(md4 1 0)) package--builtin-versions) |
| 17630 | 17695 | ||
| 17631 | ;;;*** | 17696 | ;;;*** |
| 17632 | 17697 | ||
| 17633 | ;;;### (autoloads nil "message" "gnus/message.el" (21623 2108 292281 | 17698 | ;;;### (autoloads nil "message" "gnus/message.el" (21637 50476 671217 |
| 17634 | ;;;;;; 129000)) | 17699 | ;;;;;; 121000)) |
| 17635 | ;;; Generated autoloads from gnus/message.el | 17700 | ;;; Generated autoloads from gnus/message.el |
| 17636 | 17701 | ||
| 17637 | (define-mail-user-agent 'message-user-agent 'message-mail 'message-send-and-exit 'message-kill-buffer 'message-send-hook) | 17702 | (define-mail-user-agent 'message-user-agent 'message-mail 'message-send-and-exit 'message-kill-buffer 'message-send-hook) |
| @@ -17796,8 +17861,8 @@ which specify the range to operate on. | |||
| 17796 | 17861 | ||
| 17797 | ;;;*** | 17862 | ;;;*** |
| 17798 | 17863 | ||
| 17799 | ;;;### (autoloads nil "meta-mode" "progmodes/meta-mode.el" (21607 | 17864 | ;;;### (autoloads nil "meta-mode" "progmodes/meta-mode.el" (21604 |
| 17800 | ;;;;;; 54478 800121 42000)) | 17865 | ;;;;;; 48550 349934 227000)) |
| 17801 | ;;; Generated autoloads from progmodes/meta-mode.el | 17866 | ;;; Generated autoloads from progmodes/meta-mode.el |
| 17802 | (push (purecopy '(meta-mode 1 0)) package--builtin-versions) | 17867 | (push (purecopy '(meta-mode 1 0)) package--builtin-versions) |
| 17803 | 17868 | ||
| @@ -17813,8 +17878,8 @@ Major mode for editing MetaPost sources. | |||
| 17813 | 17878 | ||
| 17814 | ;;;*** | 17879 | ;;;*** |
| 17815 | 17880 | ||
| 17816 | ;;;### (autoloads nil "metamail" "mail/metamail.el" (21607 54478 | 17881 | ;;;### (autoloads nil "metamail" "mail/metamail.el" (21604 48550 |
| 17817 | ;;;;;; 300138 641000)) | 17882 | ;;;;;; 185934 221000)) |
| 17818 | ;;; Generated autoloads from mail/metamail.el | 17883 | ;;; Generated autoloads from mail/metamail.el |
| 17819 | 17884 | ||
| 17820 | (autoload 'metamail-interpret-header "metamail" "\ | 17885 | (autoload 'metamail-interpret-header "metamail" "\ |
| @@ -17857,8 +17922,8 @@ redisplayed as output is inserted. | |||
| 17857 | 17922 | ||
| 17858 | ;;;*** | 17923 | ;;;*** |
| 17859 | 17924 | ||
| 17860 | ;;;### (autoloads nil "mh-comp" "mh-e/mh-comp.el" (21607 54478 300138 | 17925 | ;;;### (autoloads nil "mh-comp" "mh-e/mh-comp.el" (21604 48550 197934 |
| 17861 | ;;;;;; 641000)) | 17926 | ;;;;;; 221000)) |
| 17862 | ;;; Generated autoloads from mh-e/mh-comp.el | 17927 | ;;; Generated autoloads from mh-e/mh-comp.el |
| 17863 | 17928 | ||
| 17864 | (autoload 'mh-smail "mh-comp" "\ | 17929 | (autoload 'mh-smail "mh-comp" "\ |
| @@ -17948,7 +18013,7 @@ delete the draft message. | |||
| 17948 | 18013 | ||
| 17949 | ;;;*** | 18014 | ;;;*** |
| 17950 | 18015 | ||
| 17951 | ;;;### (autoloads nil "mh-e" "mh-e/mh-e.el" (21607 54478 300138 641000)) | 18016 | ;;;### (autoloads nil "mh-e" "mh-e/mh-e.el" (21604 48550 197934 221000)) |
| 17952 | ;;; Generated autoloads from mh-e/mh-e.el | 18017 | ;;; Generated autoloads from mh-e/mh-e.el |
| 17953 | (push (purecopy '(mh-e 8 6)) package--builtin-versions) | 18018 | (push (purecopy '(mh-e 8 6)) package--builtin-versions) |
| 17954 | 18019 | ||
| @@ -17965,8 +18030,8 @@ Display version information about MH-E and the MH mail handling system. | |||
| 17965 | 18030 | ||
| 17966 | ;;;*** | 18031 | ;;;*** |
| 17967 | 18032 | ||
| 17968 | ;;;### (autoloads nil "mh-folder" "mh-e/mh-folder.el" (21607 54478 | 18033 | ;;;### (autoloads nil "mh-folder" "mh-e/mh-folder.el" (21604 48550 |
| 17969 | ;;;;;; 300138 641000)) | 18034 | ;;;;;; 201934 221000)) |
| 17970 | ;;; Generated autoloads from mh-e/mh-folder.el | 18035 | ;;; Generated autoloads from mh-e/mh-folder.el |
| 17971 | 18036 | ||
| 17972 | (autoload 'mh-rmail "mh-folder" "\ | 18037 | (autoload 'mh-rmail "mh-folder" "\ |
| @@ -18047,8 +18112,8 @@ perform the operation on all messages in that region. | |||
| 18047 | 18112 | ||
| 18048 | ;;;*** | 18113 | ;;;*** |
| 18049 | 18114 | ||
| 18050 | ;;;### (autoloads nil "midnight" "midnight.el" (21607 54478 300138 | 18115 | ;;;### (autoloads nil "midnight" "midnight.el" (21604 48550 205934 |
| 18051 | ;;;;;; 641000)) | 18116 | ;;;;;; 221000)) |
| 18052 | ;;; Generated autoloads from midnight.el | 18117 | ;;; Generated autoloads from midnight.el |
| 18053 | 18118 | ||
| 18054 | (autoload 'clean-buffer-list "midnight" "\ | 18119 | (autoload 'clean-buffer-list "midnight" "\ |
| @@ -18074,8 +18139,8 @@ to its second argument TM. | |||
| 18074 | 18139 | ||
| 18075 | ;;;*** | 18140 | ;;;*** |
| 18076 | 18141 | ||
| 18077 | ;;;### (autoloads nil "minibuf-eldef" "minibuf-eldef.el" (21607 54478 | 18142 | ;;;### (autoloads nil "minibuf-eldef" "minibuf-eldef.el" (21604 48550 |
| 18078 | ;;;;;; 300138 641000)) | 18143 | ;;;;;; 205934 221000)) |
| 18079 | ;;; Generated autoloads from minibuf-eldef.el | 18144 | ;;; Generated autoloads from minibuf-eldef.el |
| 18080 | 18145 | ||
| 18081 | (defvar minibuffer-electric-default-mode nil "\ | 18146 | (defvar minibuffer-electric-default-mode nil "\ |
| @@ -18104,7 +18169,7 @@ is modified to remove the default indication. | |||
| 18104 | 18169 | ||
| 18105 | ;;;*** | 18170 | ;;;*** |
| 18106 | 18171 | ||
| 18107 | ;;;### (autoloads nil "misc" "misc.el" (21607 54478 300138 641000)) | 18172 | ;;;### (autoloads nil "misc" "misc.el" (21604 48550 209934 221000)) |
| 18108 | ;;; Generated autoloads from misc.el | 18173 | ;;; Generated autoloads from misc.el |
| 18109 | 18174 | ||
| 18110 | (autoload 'butterfly "misc" "\ | 18175 | (autoload 'butterfly "misc" "\ |
| @@ -18132,8 +18197,8 @@ The return value is always nil. | |||
| 18132 | 18197 | ||
| 18133 | ;;;*** | 18198 | ;;;*** |
| 18134 | 18199 | ||
| 18135 | ;;;### (autoloads nil "misearch" "misearch.el" (21607 54478 300138 | 18200 | ;;;### (autoloads nil "misearch" "misearch.el" (21604 48550 209934 |
| 18136 | ;;;;;; 641000)) | 18201 | ;;;;;; 221000)) |
| 18137 | ;;; Generated autoloads from misearch.el | 18202 | ;;; Generated autoloads from misearch.el |
| 18138 | (add-hook 'isearch-mode-hook 'multi-isearch-setup) | 18203 | (add-hook 'isearch-mode-hook 'multi-isearch-setup) |
| 18139 | 18204 | ||
| @@ -18218,8 +18283,8 @@ whose file names match the specified wildcard. | |||
| 18218 | 18283 | ||
| 18219 | ;;;*** | 18284 | ;;;*** |
| 18220 | 18285 | ||
| 18221 | ;;;### (autoloads nil "mixal-mode" "progmodes/mixal-mode.el" (21607 | 18286 | ;;;### (autoloads nil "mixal-mode" "progmodes/mixal-mode.el" (21604 |
| 18222 | ;;;;;; 54478 800121 42000)) | 18287 | ;;;;;; 48550 349934 227000)) |
| 18223 | ;;; Generated autoloads from progmodes/mixal-mode.el | 18288 | ;;; Generated autoloads from progmodes/mixal-mode.el |
| 18224 | (push (purecopy '(mixal-mode 0 1)) package--builtin-versions) | 18289 | (push (purecopy '(mixal-mode 0 1)) package--builtin-versions) |
| 18225 | 18290 | ||
| @@ -18230,8 +18295,8 @@ Major mode for the mixal asm language. | |||
| 18230 | 18295 | ||
| 18231 | ;;;*** | 18296 | ;;;*** |
| 18232 | 18297 | ||
| 18233 | ;;;### (autoloads nil "mm-encode" "gnus/mm-encode.el" (21607 54478 | 18298 | ;;;### (autoloads nil "mm-encode" "gnus/mm-encode.el" (21604 48550 |
| 18234 | ;;;;;; 300138 641000)) | 18299 | ;;;;;; 105934 218000)) |
| 18235 | ;;; Generated autoloads from gnus/mm-encode.el | 18300 | ;;; Generated autoloads from gnus/mm-encode.el |
| 18236 | 18301 | ||
| 18237 | (autoload 'mm-default-file-encoding "mm-encode" "\ | 18302 | (autoload 'mm-default-file-encoding "mm-encode" "\ |
| @@ -18241,8 +18306,8 @@ Return a default encoding for FILE. | |||
| 18241 | 18306 | ||
| 18242 | ;;;*** | 18307 | ;;;*** |
| 18243 | 18308 | ||
| 18244 | ;;;### (autoloads nil "mm-extern" "gnus/mm-extern.el" (21607 54478 | 18309 | ;;;### (autoloads nil "mm-extern" "gnus/mm-extern.el" (21604 48550 |
| 18245 | ;;;;;; 300138 641000)) | 18310 | ;;;;;; 105934 218000)) |
| 18246 | ;;; Generated autoloads from gnus/mm-extern.el | 18311 | ;;; Generated autoloads from gnus/mm-extern.el |
| 18247 | 18312 | ||
| 18248 | (autoload 'mm-extern-cache-contents "mm-extern" "\ | 18313 | (autoload 'mm-extern-cache-contents "mm-extern" "\ |
| @@ -18260,8 +18325,8 @@ If NO-DISPLAY is nil, display it. Otherwise, do nothing after replacing. | |||
| 18260 | 18325 | ||
| 18261 | ;;;*** | 18326 | ;;;*** |
| 18262 | 18327 | ||
| 18263 | ;;;### (autoloads nil "mm-partial" "gnus/mm-partial.el" (21607 54478 | 18328 | ;;;### (autoloads nil "mm-partial" "gnus/mm-partial.el" (21604 48550 |
| 18264 | ;;;;;; 300138 641000)) | 18329 | ;;;;;; 105934 218000)) |
| 18265 | ;;; Generated autoloads from gnus/mm-partial.el | 18330 | ;;; Generated autoloads from gnus/mm-partial.el |
| 18266 | 18331 | ||
| 18267 | (autoload 'mm-inline-partial "mm-partial" "\ | 18332 | (autoload 'mm-inline-partial "mm-partial" "\ |
| @@ -18274,8 +18339,8 @@ If NO-DISPLAY is nil, display it. Otherwise, do nothing after replacing. | |||
| 18274 | 18339 | ||
| 18275 | ;;;*** | 18340 | ;;;*** |
| 18276 | 18341 | ||
| 18277 | ;;;### (autoloads nil "mm-url" "gnus/mm-url.el" (21607 54478 300138 | 18342 | ;;;### (autoloads nil "mm-url" "gnus/mm-url.el" (21604 48550 109934 |
| 18278 | ;;;;;; 641000)) | 18343 | ;;;;;; 218000)) |
| 18279 | ;;; Generated autoloads from gnus/mm-url.el | 18344 | ;;; Generated autoloads from gnus/mm-url.el |
| 18280 | 18345 | ||
| 18281 | (autoload 'mm-url-insert-file-contents "mm-url" "\ | 18346 | (autoload 'mm-url-insert-file-contents "mm-url" "\ |
| @@ -18291,8 +18356,8 @@ Insert file contents of URL using `mm-url-program'. | |||
| 18291 | 18356 | ||
| 18292 | ;;;*** | 18357 | ;;;*** |
| 18293 | 18358 | ||
| 18294 | ;;;### (autoloads nil "mm-uu" "gnus/mm-uu.el" (21607 54478 300138 | 18359 | ;;;### (autoloads nil "mm-uu" "gnus/mm-uu.el" (21604 48550 109934 |
| 18295 | ;;;;;; 641000)) | 18360 | ;;;;;; 218000)) |
| 18296 | ;;; Generated autoloads from gnus/mm-uu.el | 18361 | ;;; Generated autoloads from gnus/mm-uu.el |
| 18297 | 18362 | ||
| 18298 | (autoload 'mm-uu-dissect "mm-uu" "\ | 18363 | (autoload 'mm-uu-dissect "mm-uu" "\ |
| @@ -18311,7 +18376,7 @@ Assume text has been decoded if DECODED is non-nil. | |||
| 18311 | 18376 | ||
| 18312 | ;;;*** | 18377 | ;;;*** |
| 18313 | 18378 | ||
| 18314 | ;;;### (autoloads nil "mml" "gnus/mml.el" (21607 54478 300138 641000)) | 18379 | ;;;### (autoloads nil "mml" "gnus/mml.el" (21604 48550 109934 218000)) |
| 18315 | ;;; Generated autoloads from gnus/mml.el | 18380 | ;;; Generated autoloads from gnus/mml.el |
| 18316 | 18381 | ||
| 18317 | (autoload 'mml-to-mime "mml" "\ | 18382 | (autoload 'mml-to-mime "mml" "\ |
| @@ -18336,8 +18401,8 @@ body) or \"attachment\" (separate from the body). | |||
| 18336 | 18401 | ||
| 18337 | ;;;*** | 18402 | ;;;*** |
| 18338 | 18403 | ||
| 18339 | ;;;### (autoloads nil "mml1991" "gnus/mml1991.el" (21607 54478 300138 | 18404 | ;;;### (autoloads nil "mml1991" "gnus/mml1991.el" (21604 48550 109934 |
| 18340 | ;;;;;; 641000)) | 18405 | ;;;;;; 218000)) |
| 18341 | ;;; Generated autoloads from gnus/mml1991.el | 18406 | ;;; Generated autoloads from gnus/mml1991.el |
| 18342 | 18407 | ||
| 18343 | (autoload 'mml1991-encrypt "mml1991" "\ | 18408 | (autoload 'mml1991-encrypt "mml1991" "\ |
| @@ -18352,8 +18417,8 @@ body) or \"attachment\" (separate from the body). | |||
| 18352 | 18417 | ||
| 18353 | ;;;*** | 18418 | ;;;*** |
| 18354 | 18419 | ||
| 18355 | ;;;### (autoloads nil "mml2015" "gnus/mml2015.el" (21607 54478 300138 | 18420 | ;;;### (autoloads nil "mml2015" "gnus/mml2015.el" (21604 48550 109934 |
| 18356 | ;;;;;; 641000)) | 18421 | ;;;;;; 218000)) |
| 18357 | ;;; Generated autoloads from gnus/mml2015.el | 18422 | ;;; Generated autoloads from gnus/mml2015.el |
| 18358 | 18423 | ||
| 18359 | (autoload 'mml2015-decrypt "mml2015" "\ | 18424 | (autoload 'mml2015-decrypt "mml2015" "\ |
| @@ -18393,16 +18458,16 @@ body) or \"attachment\" (separate from the body). | |||
| 18393 | 18458 | ||
| 18394 | ;;;*** | 18459 | ;;;*** |
| 18395 | 18460 | ||
| 18396 | ;;;### (autoloads nil "mode-local" "cedet/mode-local.el" (21607 54477 | 18461 | ;;;### (autoloads nil "mode-local" "cedet/mode-local.el" (21604 48549 |
| 18397 | ;;;;;; 800124 118000)) | 18462 | ;;;;;; 965934 212000)) |
| 18398 | ;;; Generated autoloads from cedet/mode-local.el | 18463 | ;;; Generated autoloads from cedet/mode-local.el |
| 18399 | 18464 | ||
| 18400 | (put 'define-overloadable-function 'doc-string-elt 3) | 18465 | (put 'define-overloadable-function 'doc-string-elt 3) |
| 18401 | 18466 | ||
| 18402 | ;;;*** | 18467 | ;;;*** |
| 18403 | 18468 | ||
| 18404 | ;;;### (autoloads nil "modula2" "progmodes/modula2.el" (21607 54478 | 18469 | ;;;### (autoloads nil "modula2" "progmodes/modula2.el" (21604 48550 |
| 18405 | ;;;;;; 800121 42000)) | 18470 | ;;;;;; 349934 227000)) |
| 18406 | ;;; Generated autoloads from progmodes/modula2.el | 18471 | ;;; Generated autoloads from progmodes/modula2.el |
| 18407 | 18472 | ||
| 18408 | (defalias 'modula-2-mode 'm2-mode) | 18473 | (defalias 'modula-2-mode 'm2-mode) |
| @@ -18435,8 +18500,8 @@ followed by the first character of the construct. | |||
| 18435 | 18500 | ||
| 18436 | ;;;*** | 18501 | ;;;*** |
| 18437 | 18502 | ||
| 18438 | ;;;### (autoloads nil "morse" "play/morse.el" (21616 28857 81577 | 18503 | ;;;### (autoloads nil "morse" "play/morse.el" (21631 35966 895121 |
| 18439 | ;;;;;; 239000)) | 18504 | ;;;;;; 869000)) |
| 18440 | ;;; Generated autoloads from play/morse.el | 18505 | ;;; Generated autoloads from play/morse.el |
| 18441 | 18506 | ||
| 18442 | (autoload 'morse-region "morse" "\ | 18507 | (autoload 'morse-region "morse" "\ |
| @@ -18461,8 +18526,8 @@ Convert NATO phonetic alphabet in region to ordinary ASCII text. | |||
| 18461 | 18526 | ||
| 18462 | ;;;*** | 18527 | ;;;*** |
| 18463 | 18528 | ||
| 18464 | ;;;### (autoloads nil "mouse-drag" "mouse-drag.el" (21607 54478 300138 | 18529 | ;;;### (autoloads nil "mouse-drag" "mouse-drag.el" (21604 48550 209934 |
| 18465 | ;;;;;; 641000)) | 18530 | ;;;;;; 221000)) |
| 18466 | ;;; Generated autoloads from mouse-drag.el | 18531 | ;;; Generated autoloads from mouse-drag.el |
| 18467 | 18532 | ||
| 18468 | (autoload 'mouse-drag-throw "mouse-drag" "\ | 18533 | (autoload 'mouse-drag-throw "mouse-drag" "\ |
| @@ -18509,7 +18574,7 @@ To test this function, evaluate: | |||
| 18509 | 18574 | ||
| 18510 | ;;;*** | 18575 | ;;;*** |
| 18511 | 18576 | ||
| 18512 | ;;;### (autoloads nil "mpc" "mpc.el" (21607 54478 300138 641000)) | 18577 | ;;;### (autoloads nil "mpc" "mpc.el" (21604 48550 209934 221000)) |
| 18513 | ;;; Generated autoloads from mpc.el | 18578 | ;;; Generated autoloads from mpc.el |
| 18514 | 18579 | ||
| 18515 | (autoload 'mpc "mpc" "\ | 18580 | (autoload 'mpc "mpc" "\ |
| @@ -18519,7 +18584,7 @@ Main entry point for MPC. | |||
| 18519 | 18584 | ||
| 18520 | ;;;*** | 18585 | ;;;*** |
| 18521 | 18586 | ||
| 18522 | ;;;### (autoloads nil "mpuz" "play/mpuz.el" (21607 54478 800121 42000)) | 18587 | ;;;### (autoloads nil "mpuz" "play/mpuz.el" (21604 48550 305934 225000)) |
| 18523 | ;;; Generated autoloads from play/mpuz.el | 18588 | ;;; Generated autoloads from play/mpuz.el |
| 18524 | 18589 | ||
| 18525 | (autoload 'mpuz "mpuz" "\ | 18590 | (autoload 'mpuz "mpuz" "\ |
| @@ -18529,7 +18594,7 @@ Multiplication puzzle with GNU Emacs. | |||
| 18529 | 18594 | ||
| 18530 | ;;;*** | 18595 | ;;;*** |
| 18531 | 18596 | ||
| 18532 | ;;;### (autoloads nil "msb" "msb.el" (21607 54478 300138 641000)) | 18597 | ;;;### (autoloads nil "msb" "msb.el" (21604 48550 209934 221000)) |
| 18533 | ;;; Generated autoloads from msb.el | 18598 | ;;; Generated autoloads from msb.el |
| 18534 | 18599 | ||
| 18535 | (defvar msb-mode nil "\ | 18600 | (defvar msb-mode nil "\ |
| @@ -18554,8 +18619,8 @@ different buffer menu using the function `msb'. | |||
| 18554 | 18619 | ||
| 18555 | ;;;*** | 18620 | ;;;*** |
| 18556 | 18621 | ||
| 18557 | ;;;### (autoloads nil "mule-diag" "international/mule-diag.el" (21607 | 18622 | ;;;### (autoloads nil "mule-diag" "international/mule-diag.el" (21651 |
| 18558 | ;;;;;; 54478 300138 641000)) | 18623 | ;;;;;; 20707 180225 752000)) |
| 18559 | ;;; Generated autoloads from international/mule-diag.el | 18624 | ;;; Generated autoloads from international/mule-diag.el |
| 18560 | 18625 | ||
| 18561 | (autoload 'list-character-sets "mule-diag" "\ | 18626 | (autoload 'list-character-sets "mule-diag" "\ |
| @@ -18687,8 +18752,8 @@ The default is 20. If LIMIT is negative, do not limit the listing. | |||
| 18687 | 18752 | ||
| 18688 | ;;;*** | 18753 | ;;;*** |
| 18689 | 18754 | ||
| 18690 | ;;;### (autoloads nil "mule-util" "international/mule-util.el" (21607 | 18755 | ;;;### (autoloads nil "mule-util" "international/mule-util.el" (21604 |
| 18691 | ;;;;;; 54478 300138 641000)) | 18756 | ;;;;;; 48550 141934 219000)) |
| 18692 | ;;; Generated autoloads from international/mule-util.el | 18757 | ;;; Generated autoloads from international/mule-util.el |
| 18693 | 18758 | ||
| 18694 | (defsubst string-to-list (string) "\ | 18759 | (defsubst string-to-list (string) "\ |
| @@ -18819,8 +18884,8 @@ per-character basis, this may not be accurate. | |||
| 18819 | 18884 | ||
| 18820 | ;;;*** | 18885 | ;;;*** |
| 18821 | 18886 | ||
| 18822 | ;;;### (autoloads nil "net-utils" "net/net-utils.el" (21607 54478 | 18887 | ;;;### (autoloads nil "net-utils" "net/net-utils.el" (21604 48550 |
| 18823 | ;;;;;; 300138 641000)) | 18888 | ;;;;;; 217934 222000)) |
| 18824 | ;;; Generated autoloads from net/net-utils.el | 18889 | ;;; Generated autoloads from net/net-utils.el |
| 18825 | 18890 | ||
| 18826 | (autoload 'ifconfig "net-utils" "\ | 18891 | (autoload 'ifconfig "net-utils" "\ |
| @@ -18914,8 +18979,8 @@ Open a network connection to HOST on PORT. | |||
| 18914 | 18979 | ||
| 18915 | ;;;*** | 18980 | ;;;*** |
| 18916 | 18981 | ||
| 18917 | ;;;### (autoloads nil "netrc" "net/netrc.el" (21607 54478 300138 | 18982 | ;;;### (autoloads nil "netrc" "net/netrc.el" (21604 48550 217934 |
| 18918 | ;;;;;; 641000)) | 18983 | ;;;;;; 222000)) |
| 18919 | ;;; Generated autoloads from net/netrc.el | 18984 | ;;; Generated autoloads from net/netrc.el |
| 18920 | 18985 | ||
| 18921 | (autoload 'netrc-credentials "netrc" "\ | 18986 | (autoload 'netrc-credentials "netrc" "\ |
| @@ -18927,8 +18992,8 @@ listed in the PORTS list. | |||
| 18927 | 18992 | ||
| 18928 | ;;;*** | 18993 | ;;;*** |
| 18929 | 18994 | ||
| 18930 | ;;;### (autoloads nil "network-stream" "net/network-stream.el" (21619 | 18995 | ;;;### (autoloads nil "network-stream" "net/network-stream.el" (21645 |
| 18931 | ;;;;;; 5051 260148 536000)) | 18996 | ;;;;;; 25761 793186 828000)) |
| 18932 | ;;; Generated autoloads from net/network-stream.el | 18997 | ;;; Generated autoloads from net/network-stream.el |
| 18933 | 18998 | ||
| 18934 | (autoload 'open-network-stream "network-stream" "\ | 18999 | (autoload 'open-network-stream "network-stream" "\ |
| @@ -19024,8 +19089,8 @@ asynchronously, if possible. | |||
| 19024 | 19089 | ||
| 19025 | ;;;*** | 19090 | ;;;*** |
| 19026 | 19091 | ||
| 19027 | ;;;### (autoloads nil "newst-backend" "net/newst-backend.el" (21628 | 19092 | ;;;### (autoloads nil "newst-backend" "net/newst-backend.el" (21631 |
| 19028 | ;;;;;; 45530 160140 360000)) | 19093 | ;;;;;; 35966 879121 869000)) |
| 19029 | ;;; Generated autoloads from net/newst-backend.el | 19094 | ;;; Generated autoloads from net/newst-backend.el |
| 19030 | 19095 | ||
| 19031 | (autoload 'newsticker-running-p "newst-backend" "\ | 19096 | (autoload 'newsticker-running-p "newst-backend" "\ |
| @@ -19047,7 +19112,7 @@ Run `newsticker-start-hook' if newsticker was not running already. | |||
| 19047 | ;;;*** | 19112 | ;;;*** |
| 19048 | 19113 | ||
| 19049 | ;;;### (autoloads nil "newst-plainview" "net/newst-plainview.el" | 19114 | ;;;### (autoloads nil "newst-plainview" "net/newst-plainview.el" |
| 19050 | ;;;;;; (21607 54478 300138 641000)) | 19115 | ;;;;;; (21604 48550 217934 222000)) |
| 19051 | ;;; Generated autoloads from net/newst-plainview.el | 19116 | ;;; Generated autoloads from net/newst-plainview.el |
| 19052 | 19117 | ||
| 19053 | (autoload 'newsticker-plainview "newst-plainview" "\ | 19118 | (autoload 'newsticker-plainview "newst-plainview" "\ |
| @@ -19057,8 +19122,8 @@ Start newsticker plainview. | |||
| 19057 | 19122 | ||
| 19058 | ;;;*** | 19123 | ;;;*** |
| 19059 | 19124 | ||
| 19060 | ;;;### (autoloads nil "newst-reader" "net/newst-reader.el" (21607 | 19125 | ;;;### (autoloads nil "newst-reader" "net/newst-reader.el" (21604 |
| 19061 | ;;;;;; 54478 300138 641000)) | 19126 | ;;;;;; 48550 217934 222000)) |
| 19062 | ;;; Generated autoloads from net/newst-reader.el | 19127 | ;;; Generated autoloads from net/newst-reader.el |
| 19063 | 19128 | ||
| 19064 | (autoload 'newsticker-show-news "newst-reader" "\ | 19129 | (autoload 'newsticker-show-news "newst-reader" "\ |
| @@ -19068,8 +19133,8 @@ Start reading news. You may want to bind this to a key. | |||
| 19068 | 19133 | ||
| 19069 | ;;;*** | 19134 | ;;;*** |
| 19070 | 19135 | ||
| 19071 | ;;;### (autoloads nil "newst-ticker" "net/newst-ticker.el" (21607 | 19136 | ;;;### (autoloads nil "newst-ticker" "net/newst-ticker.el" (21604 |
| 19072 | ;;;;;; 54478 300138 641000)) | 19137 | ;;;;;; 48550 221934 222000)) |
| 19073 | ;;; Generated autoloads from net/newst-ticker.el | 19138 | ;;; Generated autoloads from net/newst-ticker.el |
| 19074 | 19139 | ||
| 19075 | (autoload 'newsticker-ticker-running-p "newst-ticker" "\ | 19140 | (autoload 'newsticker-ticker-running-p "newst-ticker" "\ |
| @@ -19089,8 +19154,8 @@ running already. | |||
| 19089 | 19154 | ||
| 19090 | ;;;*** | 19155 | ;;;*** |
| 19091 | 19156 | ||
| 19092 | ;;;### (autoloads nil "newst-treeview" "net/newst-treeview.el" (21628 | 19157 | ;;;### (autoloads nil "newst-treeview" "net/newst-treeview.el" (21637 |
| 19093 | ;;;;;; 45530 160140 360000)) | 19158 | ;;;;;; 50476 675217 121000)) |
| 19094 | ;;; Generated autoloads from net/newst-treeview.el | 19159 | ;;; Generated autoloads from net/newst-treeview.el |
| 19095 | 19160 | ||
| 19096 | (autoload 'newsticker-treeview "newst-treeview" "\ | 19161 | (autoload 'newsticker-treeview "newst-treeview" "\ |
| @@ -19100,8 +19165,8 @@ Start newsticker treeview. | |||
| 19100 | 19165 | ||
| 19101 | ;;;*** | 19166 | ;;;*** |
| 19102 | 19167 | ||
| 19103 | ;;;### (autoloads nil "nndiary" "gnus/nndiary.el" (21607 54478 300138 | 19168 | ;;;### (autoloads nil "nndiary" "gnus/nndiary.el" (21604 48550 109934 |
| 19104 | ;;;;;; 641000)) | 19169 | ;;;;;; 218000)) |
| 19105 | ;;; Generated autoloads from gnus/nndiary.el | 19170 | ;;; Generated autoloads from gnus/nndiary.el |
| 19106 | 19171 | ||
| 19107 | (autoload 'nndiary-generate-nov-databases "nndiary" "\ | 19172 | (autoload 'nndiary-generate-nov-databases "nndiary" "\ |
| @@ -19111,8 +19176,8 @@ Generate NOV databases in all nndiary directories. | |||
| 19111 | 19176 | ||
| 19112 | ;;;*** | 19177 | ;;;*** |
| 19113 | 19178 | ||
| 19114 | ;;;### (autoloads nil "nndoc" "gnus/nndoc.el" (21607 54478 300138 | 19179 | ;;;### (autoloads nil "nndoc" "gnus/nndoc.el" (21604 48550 109934 |
| 19115 | ;;;;;; 641000)) | 19180 | ;;;;;; 218000)) |
| 19116 | ;;; Generated autoloads from gnus/nndoc.el | 19181 | ;;; Generated autoloads from gnus/nndoc.el |
| 19117 | 19182 | ||
| 19118 | (autoload 'nndoc-add-type "nndoc" "\ | 19183 | (autoload 'nndoc-add-type "nndoc" "\ |
| @@ -19126,8 +19191,8 @@ symbol in the alist. | |||
| 19126 | 19191 | ||
| 19127 | ;;;*** | 19192 | ;;;*** |
| 19128 | 19193 | ||
| 19129 | ;;;### (autoloads nil "nnfolder" "gnus/nnfolder.el" (21607 54478 | 19194 | ;;;### (autoloads nil "nnfolder" "gnus/nnfolder.el" (21604 48550 |
| 19130 | ;;;;;; 300138 641000)) | 19195 | ;;;;;; 113934 218000)) |
| 19131 | ;;; Generated autoloads from gnus/nnfolder.el | 19196 | ;;; Generated autoloads from gnus/nnfolder.el |
| 19132 | 19197 | ||
| 19133 | (autoload 'nnfolder-generate-active-file "nnfolder" "\ | 19198 | (autoload 'nnfolder-generate-active-file "nnfolder" "\ |
| @@ -19138,7 +19203,7 @@ This command does not work if you use short group names. | |||
| 19138 | 19203 | ||
| 19139 | ;;;*** | 19204 | ;;;*** |
| 19140 | 19205 | ||
| 19141 | ;;;### (autoloads nil "nnml" "gnus/nnml.el" (21607 54478 300138 641000)) | 19206 | ;;;### (autoloads nil "nnml" "gnus/nnml.el" (21604 48550 117934 218000)) |
| 19142 | ;;; Generated autoloads from gnus/nnml.el | 19207 | ;;; Generated autoloads from gnus/nnml.el |
| 19143 | 19208 | ||
| 19144 | (autoload 'nnml-generate-nov-databases "nnml" "\ | 19209 | (autoload 'nnml-generate-nov-databases "nnml" "\ |
| @@ -19148,7 +19213,7 @@ Generate NOV databases in all nnml directories. | |||
| 19148 | 19213 | ||
| 19149 | ;;;*** | 19214 | ;;;*** |
| 19150 | 19215 | ||
| 19151 | ;;;### (autoloads nil "novice" "novice.el" (21607 54478 300138 641000)) | 19216 | ;;;### (autoloads nil "novice" "novice.el" (21604 48550 237934 223000)) |
| 19152 | ;;; Generated autoloads from novice.el | 19217 | ;;; Generated autoloads from novice.el |
| 19153 | 19218 | ||
| 19154 | (define-obsolete-variable-alias 'disabled-command-hook 'disabled-command-function "22.1") | 19219 | (define-obsolete-variable-alias 'disabled-command-hook 'disabled-command-function "22.1") |
| @@ -19180,8 +19245,8 @@ future sessions. | |||
| 19180 | 19245 | ||
| 19181 | ;;;*** | 19246 | ;;;*** |
| 19182 | 19247 | ||
| 19183 | ;;;### (autoloads nil "nroff-mode" "textmodes/nroff-mode.el" (21607 | 19248 | ;;;### (autoloads nil "nroff-mode" "textmodes/nroff-mode.el" (21604 |
| 19184 | ;;;;;; 54478 800121 42000)) | 19249 | ;;;;;; 48550 397934 228000)) |
| 19185 | ;;; Generated autoloads from textmodes/nroff-mode.el | 19250 | ;;; Generated autoloads from textmodes/nroff-mode.el |
| 19186 | 19251 | ||
| 19187 | (autoload 'nroff-mode "nroff-mode" "\ | 19252 | (autoload 'nroff-mode "nroff-mode" "\ |
| @@ -19195,14 +19260,14 @@ closing requests for requests that are used in matched pairs. | |||
| 19195 | 19260 | ||
| 19196 | ;;;*** | 19261 | ;;;*** |
| 19197 | 19262 | ||
| 19198 | ;;;### (autoloads nil "ntlm" "net/ntlm.el" (21607 54478 300138 641000)) | 19263 | ;;;### (autoloads nil "ntlm" "net/ntlm.el" (21604 48550 221934 222000)) |
| 19199 | ;;; Generated autoloads from net/ntlm.el | 19264 | ;;; Generated autoloads from net/ntlm.el |
| 19200 | (push (purecopy '(ntlm 1 0)) package--builtin-versions) | 19265 | (push (purecopy '(ntlm 1 0)) package--builtin-versions) |
| 19201 | 19266 | ||
| 19202 | ;;;*** | 19267 | ;;;*** |
| 19203 | 19268 | ||
| 19204 | ;;;### (autoloads nil "nxml-glyph" "nxml/nxml-glyph.el" (21607 54478 | 19269 | ;;;### (autoloads nil "nxml-glyph" "nxml/nxml-glyph.el" (21604 48550 |
| 19205 | ;;;;;; 300138 641000)) | 19270 | ;;;;;; 237934 223000)) |
| 19206 | ;;; Generated autoloads from nxml/nxml-glyph.el | 19271 | ;;; Generated autoloads from nxml/nxml-glyph.el |
| 19207 | 19272 | ||
| 19208 | (autoload 'nxml-glyph-display-string "nxml-glyph" "\ | 19273 | (autoload 'nxml-glyph-display-string "nxml-glyph" "\ |
| @@ -19214,8 +19279,8 @@ Return nil if the face cannot display a glyph for N. | |||
| 19214 | 19279 | ||
| 19215 | ;;;*** | 19280 | ;;;*** |
| 19216 | 19281 | ||
| 19217 | ;;;### (autoloads nil "nxml-mode" "nxml/nxml-mode.el" (21611 10937 | 19282 | ;;;### (autoloads nil "nxml-mode" "nxml/nxml-mode.el" (21631 35966 |
| 19218 | ;;;;;; 700236 3000)) | 19283 | ;;;;;; 887121 869000)) |
| 19219 | ;;; Generated autoloads from nxml/nxml-mode.el | 19284 | ;;; Generated autoloads from nxml/nxml-mode.el |
| 19220 | 19285 | ||
| 19221 | (autoload 'nxml-mode "nxml-mode" "\ | 19286 | (autoload 'nxml-mode "nxml-mode" "\ |
| @@ -19275,8 +19340,8 @@ Many aspects this mode can be customized using | |||
| 19275 | 19340 | ||
| 19276 | ;;;*** | 19341 | ;;;*** |
| 19277 | 19342 | ||
| 19278 | ;;;### (autoloads nil "nxml-uchnm" "nxml/nxml-uchnm.el" (21607 54478 | 19343 | ;;;### (autoloads nil "nxml-uchnm" "nxml/nxml-uchnm.el" (21604 48550 |
| 19279 | ;;;;;; 300138 641000)) | 19344 | ;;;;;; 237934 223000)) |
| 19280 | ;;; Generated autoloads from nxml/nxml-uchnm.el | 19345 | ;;; Generated autoloads from nxml/nxml-uchnm.el |
| 19281 | 19346 | ||
| 19282 | (autoload 'nxml-enable-unicode-char-name-sets "nxml-uchnm" "\ | 19347 | (autoload 'nxml-enable-unicode-char-name-sets "nxml-uchnm" "\ |
| @@ -19288,8 +19353,8 @@ the variable `nxml-enabled-unicode-blocks'. | |||
| 19288 | 19353 | ||
| 19289 | ;;;*** | 19354 | ;;;*** |
| 19290 | 19355 | ||
| 19291 | ;;;### (autoloads nil "octave" "progmodes/octave.el" (21607 54478 | 19356 | ;;;### (autoloads nil "octave" "progmodes/octave.el" (21631 35966 |
| 19292 | ;;;;;; 800121 42000)) | 19357 | ;;;;;; 907121 870000)) |
| 19293 | ;;; Generated autoloads from progmodes/octave.el | 19358 | ;;; Generated autoloads from progmodes/octave.el |
| 19294 | 19359 | ||
| 19295 | (autoload 'octave-mode "octave" "\ | 19360 | (autoload 'octave-mode "octave" "\ |
| @@ -19326,8 +19391,8 @@ startup file, `~/.emacs-octave'. | |||
| 19326 | 19391 | ||
| 19327 | ;;;*** | 19392 | ;;;*** |
| 19328 | 19393 | ||
| 19329 | ;;;### (autoloads nil "opascal" "progmodes/opascal.el" (21607 54478 | 19394 | ;;;### (autoloads nil "opascal" "progmodes/opascal.el" (21604 48550 |
| 19330 | ;;;;;; 800121 42000)) | 19395 | ;;;;;; 349934 227000)) |
| 19331 | ;;; Generated autoloads from progmodes/opascal.el | 19396 | ;;; Generated autoloads from progmodes/opascal.el |
| 19332 | 19397 | ||
| 19333 | (define-obsolete-function-alias 'delphi-mode 'opascal-mode "24.4") | 19398 | (define-obsolete-function-alias 'delphi-mode 'opascal-mode "24.4") |
| @@ -19362,7 +19427,7 @@ Coloring: | |||
| 19362 | 19427 | ||
| 19363 | ;;;*** | 19428 | ;;;*** |
| 19364 | 19429 | ||
| 19365 | ;;;### (autoloads nil "org" "org/org.el" (21607 54478 800121 42000)) | 19430 | ;;;### (autoloads nil "org" "org/org.el" (21645 25761 805186 828000)) |
| 19366 | ;;; Generated autoloads from org/org.el | 19431 | ;;; Generated autoloads from org/org.el |
| 19367 | 19432 | ||
| 19368 | (autoload 'org-babel-do-load-languages "org" "\ | 19433 | (autoload 'org-babel-do-load-languages "org" "\ |
| @@ -19583,8 +19648,8 @@ Call the customize function with org as argument. | |||
| 19583 | 19648 | ||
| 19584 | ;;;*** | 19649 | ;;;*** |
| 19585 | 19650 | ||
| 19586 | ;;;### (autoloads nil "org-agenda" "org/org-agenda.el" (21607 54478 | 19651 | ;;;### (autoloads nil "org-agenda" "org/org-agenda.el" (21604 48550 |
| 19587 | ;;;;;; 800121 42000)) | 19652 | ;;;;;; 269934 224000)) |
| 19588 | ;;; Generated autoloads from org/org-agenda.el | 19653 | ;;; Generated autoloads from org/org-agenda.el |
| 19589 | 19654 | ||
| 19590 | (autoload 'org-toggle-sticky-agenda "org-agenda" "\ | 19655 | (autoload 'org-toggle-sticky-agenda "org-agenda" "\ |
| @@ -19857,8 +19922,8 @@ to override `appt-message-warning-time'. | |||
| 19857 | 19922 | ||
| 19858 | ;;;*** | 19923 | ;;;*** |
| 19859 | 19924 | ||
| 19860 | ;;;### (autoloads nil "org-capture" "org/org-capture.el" (21607 54478 | 19925 | ;;;### (autoloads nil "org-capture" "org/org-capture.el" (21604 48550 |
| 19861 | ;;;;;; 800121 42000)) | 19926 | ;;;;;; 273934 224000)) |
| 19862 | ;;; Generated autoloads from org/org-capture.el | 19927 | ;;; Generated autoloads from org/org-capture.el |
| 19863 | 19928 | ||
| 19864 | (autoload 'org-capture-string "org-capture" "\ | 19929 | (autoload 'org-capture-string "org-capture" "\ |
| @@ -19900,8 +19965,8 @@ Set `org-capture-templates' to be similar to `org-remember-templates'. | |||
| 19900 | 19965 | ||
| 19901 | ;;;*** | 19966 | ;;;*** |
| 19902 | 19967 | ||
| 19903 | ;;;### (autoloads nil "org-colview" "org/org-colview.el" (21607 54478 | 19968 | ;;;### (autoloads nil "org-colview" "org/org-colview.el" (21604 48550 |
| 19904 | ;;;;;; 800121 42000)) | 19969 | ;;;;;; 273934 224000)) |
| 19905 | ;;; Generated autoloads from org/org-colview.el | 19970 | ;;; Generated autoloads from org/org-colview.el |
| 19906 | 19971 | ||
| 19907 | (autoload 'org-columns-remove-overlays "org-colview" "\ | 19972 | (autoload 'org-columns-remove-overlays "org-colview" "\ |
| @@ -19964,8 +20029,8 @@ Turn on or update column view in the agenda. | |||
| 19964 | 20029 | ||
| 19965 | ;;;*** | 20030 | ;;;*** |
| 19966 | 20031 | ||
| 19967 | ;;;### (autoloads nil "org-compat" "org/org-compat.el" (21607 54478 | 20032 | ;;;### (autoloads nil "org-compat" "org/org-compat.el" (21604 48550 |
| 19968 | ;;;;;; 800121 42000)) | 20033 | ;;;;;; 273934 224000)) |
| 19969 | ;;; Generated autoloads from org/org-compat.el | 20034 | ;;; Generated autoloads from org/org-compat.el |
| 19970 | 20035 | ||
| 19971 | (autoload 'org-check-version "org-compat" "\ | 20036 | (autoload 'org-check-version "org-compat" "\ |
| @@ -19975,8 +20040,8 @@ Try very hard to provide sensible version strings. | |||
| 19975 | 20040 | ||
| 19976 | ;;;*** | 20041 | ;;;*** |
| 19977 | 20042 | ||
| 19978 | ;;;### (autoloads nil "org-macs" "org/org-macs.el" (21607 54478 800121 | 20043 | ;;;### (autoloads nil "org-macs" "org/org-macs.el" (21604 48550 277934 |
| 19979 | ;;;;;; 42000)) | 20044 | ;;;;;; 224000)) |
| 19980 | ;;; Generated autoloads from org/org-macs.el | 20045 | ;;; Generated autoloads from org/org-macs.el |
| 19981 | 20046 | ||
| 19982 | (autoload 'org-load-noerror-mustsuffix "org-macs" "\ | 20047 | (autoload 'org-load-noerror-mustsuffix "org-macs" "\ |
| @@ -19986,8 +20051,8 @@ Load FILE with optional arguments NOERROR and MUSTSUFFIX. Drop the MUSTSUFFIX a | |||
| 19986 | 20051 | ||
| 19987 | ;;;*** | 20052 | ;;;*** |
| 19988 | 20053 | ||
| 19989 | ;;;### (autoloads nil "org-version" "org/org-version.el" (21607 54478 | 20054 | ;;;### (autoloads nil "org-version" "org/org-version.el" (21604 48550 |
| 19990 | ;;;;;; 800121 42000)) | 20055 | ;;;;;; 281934 224000)) |
| 19991 | ;;; Generated autoloads from org/org-version.el | 20056 | ;;; Generated autoloads from org/org-version.el |
| 19992 | 20057 | ||
| 19993 | (autoload 'org-release "org-version" "\ | 20058 | (autoload 'org-release "org-version" "\ |
| @@ -20004,8 +20069,8 @@ The Git version of org-mode. | |||
| 20004 | 20069 | ||
| 20005 | ;;;*** | 20070 | ;;;*** |
| 20006 | 20071 | ||
| 20007 | ;;;### (autoloads nil "outline" "outline.el" (21626 64704 823711 | 20072 | ;;;### (autoloads nil "outline" "outline.el" (21631 35966 895121 |
| 20008 | ;;;;;; 579000)) | 20073 | ;;;;;; 869000)) |
| 20009 | ;;; Generated autoloads from outline.el | 20074 | ;;; Generated autoloads from outline.el |
| 20010 | (put 'outline-regexp 'safe-local-variable 'stringp) | 20075 | (put 'outline-regexp 'safe-local-variable 'stringp) |
| 20011 | (put 'outline-heading-end-regexp 'safe-local-variable 'stringp) | 20076 | (put 'outline-heading-end-regexp 'safe-local-variable 'stringp) |
| @@ -20066,8 +20131,8 @@ See the command `outline-mode' for more information on this mode. | |||
| 20066 | 20131 | ||
| 20067 | ;;;*** | 20132 | ;;;*** |
| 20068 | 20133 | ||
| 20069 | ;;;### (autoloads nil "package" "emacs-lisp/package.el" (21607 54477 | 20134 | ;;;### (autoloads nil "package" "emacs-lisp/package.el" (21651 20707 |
| 20070 | ;;;;;; 800124 118000)) | 20135 | ;;;;;; 168225 752000)) |
| 20071 | ;;; Generated autoloads from emacs-lisp/package.el | 20136 | ;;; Generated autoloads from emacs-lisp/package.el |
| 20072 | (push (purecopy '(package 1 0 1)) package--builtin-versions) | 20137 | (push (purecopy '(package 1 0 1)) package--builtin-versions) |
| 20073 | 20138 | ||
| @@ -20139,7 +20204,7 @@ The list is displayed in a buffer named `*Packages*'. | |||
| 20139 | 20204 | ||
| 20140 | ;;;*** | 20205 | ;;;*** |
| 20141 | 20206 | ||
| 20142 | ;;;### (autoloads nil "paren" "paren.el" (21607 54478 800121 42000)) | 20207 | ;;;### (autoloads nil "paren" "paren.el" (21604 48550 301934 225000)) |
| 20143 | ;;; Generated autoloads from paren.el | 20208 | ;;; Generated autoloads from paren.el |
| 20144 | 20209 | ||
| 20145 | (defvar show-paren-mode nil "\ | 20210 | (defvar show-paren-mode nil "\ |
| @@ -20165,8 +20230,8 @@ matching parenthesis is highlighted in `show-paren-style' after | |||
| 20165 | 20230 | ||
| 20166 | ;;;*** | 20231 | ;;;*** |
| 20167 | 20232 | ||
| 20168 | ;;;### (autoloads nil "parse-time" "calendar/parse-time.el" (21607 | 20233 | ;;;### (autoloads nil "parse-time" "calendar/parse-time.el" (21604 |
| 20169 | ;;;;;; 54477 800124 118000)) | 20234 | ;;;;;; 48549 953934 212000)) |
| 20170 | ;;; Generated autoloads from calendar/parse-time.el | 20235 | ;;; Generated autoloads from calendar/parse-time.el |
| 20171 | (put 'parse-time-rules 'risky-local-variable t) | 20236 | (put 'parse-time-rules 'risky-local-variable t) |
| 20172 | 20237 | ||
| @@ -20179,8 +20244,8 @@ unknown are returned as nil. | |||
| 20179 | 20244 | ||
| 20180 | ;;;*** | 20245 | ;;;*** |
| 20181 | 20246 | ||
| 20182 | ;;;### (autoloads nil "pascal" "progmodes/pascal.el" (21607 54478 | 20247 | ;;;### (autoloads nil "pascal" "progmodes/pascal.el" (21604 48550 |
| 20183 | ;;;;;; 800121 42000)) | 20248 | ;;;;;; 349934 227000)) |
| 20184 | ;;; Generated autoloads from progmodes/pascal.el | 20249 | ;;; Generated autoloads from progmodes/pascal.el |
| 20185 | 20250 | ||
| 20186 | (autoload 'pascal-mode "pascal" "\ | 20251 | (autoload 'pascal-mode "pascal" "\ |
| @@ -20229,8 +20294,8 @@ See also the user variables `pascal-type-keywords', `pascal-start-keywords' and | |||
| 20229 | 20294 | ||
| 20230 | ;;;*** | 20295 | ;;;*** |
| 20231 | 20296 | ||
| 20232 | ;;;### (autoloads nil "password-cache" "password-cache.el" (21607 | 20297 | ;;;### (autoloads nil "password-cache" "password-cache.el" (21604 |
| 20233 | ;;;;;; 54478 800121 42000)) | 20298 | ;;;;;; 48550 301934 225000)) |
| 20234 | ;;; Generated autoloads from password-cache.el | 20299 | ;;; Generated autoloads from password-cache.el |
| 20235 | 20300 | ||
| 20236 | (defvar password-cache t "\ | 20301 | (defvar password-cache t "\ |
| @@ -20251,8 +20316,8 @@ Check if KEY is in the cache. | |||
| 20251 | 20316 | ||
| 20252 | ;;;*** | 20317 | ;;;*** |
| 20253 | 20318 | ||
| 20254 | ;;;### (autoloads nil "pcase" "emacs-lisp/pcase.el" (21607 54477 | 20319 | ;;;### (autoloads nil "pcase" "emacs-lisp/pcase.el" (21604 48550 |
| 20255 | ;;;;;; 800124 118000)) | 20320 | ;;;;;; 21934 214000)) |
| 20256 | ;;; Generated autoloads from emacs-lisp/pcase.el | 20321 | ;;; Generated autoloads from emacs-lisp/pcase.el |
| 20257 | 20322 | ||
| 20258 | (autoload 'pcase "pcase" "\ | 20323 | (autoload 'pcase "pcase" "\ |
| @@ -20334,8 +20399,8 @@ Define a pcase UPattern macro. | |||
| 20334 | 20399 | ||
| 20335 | ;;;*** | 20400 | ;;;*** |
| 20336 | 20401 | ||
| 20337 | ;;;### (autoloads nil "pcmpl-cvs" "pcmpl-cvs.el" (21607 54478 800121 | 20402 | ;;;### (autoloads nil "pcmpl-cvs" "pcmpl-cvs.el" (21604 48550 301934 |
| 20338 | ;;;;;; 42000)) | 20403 | ;;;;;; 225000)) |
| 20339 | ;;; Generated autoloads from pcmpl-cvs.el | 20404 | ;;; Generated autoloads from pcmpl-cvs.el |
| 20340 | 20405 | ||
| 20341 | (autoload 'pcomplete/cvs "pcmpl-cvs" "\ | 20406 | (autoload 'pcomplete/cvs "pcmpl-cvs" "\ |
| @@ -20345,8 +20410,8 @@ Completion rules for the `cvs' command. | |||
| 20345 | 20410 | ||
| 20346 | ;;;*** | 20411 | ;;;*** |
| 20347 | 20412 | ||
| 20348 | ;;;### (autoloads nil "pcmpl-gnu" "pcmpl-gnu.el" (21607 54478 800121 | 20413 | ;;;### (autoloads nil "pcmpl-gnu" "pcmpl-gnu.el" (21631 35966 895121 |
| 20349 | ;;;;;; 42000)) | 20414 | ;;;;;; 869000)) |
| 20350 | ;;; Generated autoloads from pcmpl-gnu.el | 20415 | ;;; Generated autoloads from pcmpl-gnu.el |
| 20351 | 20416 | ||
| 20352 | (autoload 'pcomplete/gzip "pcmpl-gnu" "\ | 20417 | (autoload 'pcomplete/gzip "pcmpl-gnu" "\ |
| @@ -20373,8 +20438,8 @@ Completion for the GNU tar utility. | |||
| 20373 | 20438 | ||
| 20374 | ;;;*** | 20439 | ;;;*** |
| 20375 | 20440 | ||
| 20376 | ;;;### (autoloads nil "pcmpl-linux" "pcmpl-linux.el" (21607 54478 | 20441 | ;;;### (autoloads nil "pcmpl-linux" "pcmpl-linux.el" (21604 48550 |
| 20377 | ;;;;;; 800121 42000)) | 20442 | ;;;;;; 301934 225000)) |
| 20378 | ;;; Generated autoloads from pcmpl-linux.el | 20443 | ;;; Generated autoloads from pcmpl-linux.el |
| 20379 | 20444 | ||
| 20380 | (autoload 'pcomplete/kill "pcmpl-linux" "\ | 20445 | (autoload 'pcomplete/kill "pcmpl-linux" "\ |
| @@ -20394,8 +20459,8 @@ Completion for GNU/Linux `mount'. | |||
| 20394 | 20459 | ||
| 20395 | ;;;*** | 20460 | ;;;*** |
| 20396 | 20461 | ||
| 20397 | ;;;### (autoloads nil "pcmpl-rpm" "pcmpl-rpm.el" (21607 54478 800121 | 20462 | ;;;### (autoloads nil "pcmpl-rpm" "pcmpl-rpm.el" (21604 48550 301934 |
| 20398 | ;;;;;; 42000)) | 20463 | ;;;;;; 225000)) |
| 20399 | ;;; Generated autoloads from pcmpl-rpm.el | 20464 | ;;; Generated autoloads from pcmpl-rpm.el |
| 20400 | 20465 | ||
| 20401 | (autoload 'pcomplete/rpm "pcmpl-rpm" "\ | 20466 | (autoload 'pcomplete/rpm "pcmpl-rpm" "\ |
| @@ -20405,8 +20470,8 @@ Completion for the `rpm' command. | |||
| 20405 | 20470 | ||
| 20406 | ;;;*** | 20471 | ;;;*** |
| 20407 | 20472 | ||
| 20408 | ;;;### (autoloads nil "pcmpl-unix" "pcmpl-unix.el" (21607 54478 800121 | 20473 | ;;;### (autoloads nil "pcmpl-unix" "pcmpl-unix.el" (21604 48550 301934 |
| 20409 | ;;;;;; 42000)) | 20474 | ;;;;;; 225000)) |
| 20410 | ;;; Generated autoloads from pcmpl-unix.el | 20475 | ;;; Generated autoloads from pcmpl-unix.el |
| 20411 | 20476 | ||
| 20412 | (autoload 'pcomplete/cd "pcmpl-unix" "\ | 20477 | (autoload 'pcomplete/cd "pcmpl-unix" "\ |
| @@ -20461,8 +20526,8 @@ Includes files as well as host names followed by a colon. | |||
| 20461 | 20526 | ||
| 20462 | ;;;*** | 20527 | ;;;*** |
| 20463 | 20528 | ||
| 20464 | ;;;### (autoloads nil "pcmpl-x" "pcmpl-x.el" (21607 54478 800121 | 20529 | ;;;### (autoloads nil "pcmpl-x" "pcmpl-x.el" (21604 48550 301934 |
| 20465 | ;;;;;; 42000)) | 20530 | ;;;;;; 225000)) |
| 20466 | ;;; Generated autoloads from pcmpl-x.el | 20531 | ;;; Generated autoloads from pcmpl-x.el |
| 20467 | 20532 | ||
| 20468 | (autoload 'pcomplete/tlmgr "pcmpl-x" "\ | 20533 | (autoload 'pcomplete/tlmgr "pcmpl-x" "\ |
| @@ -20486,8 +20551,8 @@ Completion for the `ag' command. | |||
| 20486 | 20551 | ||
| 20487 | ;;;*** | 20552 | ;;;*** |
| 20488 | 20553 | ||
| 20489 | ;;;### (autoloads nil "pcomplete" "pcomplete.el" (21607 54478 800121 | 20554 | ;;;### (autoloads nil "pcomplete" "pcomplete.el" (21604 48550 301934 |
| 20490 | ;;;;;; 42000)) | 20555 | ;;;;;; 225000)) |
| 20491 | ;;; Generated autoloads from pcomplete.el | 20556 | ;;; Generated autoloads from pcomplete.el |
| 20492 | 20557 | ||
| 20493 | (autoload 'pcomplete "pcomplete" "\ | 20558 | (autoload 'pcomplete "pcomplete" "\ |
| @@ -20544,7 +20609,7 @@ Setup `shell-mode' to use pcomplete. | |||
| 20544 | 20609 | ||
| 20545 | ;;;*** | 20610 | ;;;*** |
| 20546 | 20611 | ||
| 20547 | ;;;### (autoloads nil "pcvs" "vc/pcvs.el" (21607 54478 800121 42000)) | 20612 | ;;;### (autoloads nil "pcvs" "vc/pcvs.el" (21604 48550 429934 230000)) |
| 20548 | ;;; Generated autoloads from vc/pcvs.el | 20613 | ;;; Generated autoloads from vc/pcvs.el |
| 20549 | 20614 | ||
| 20550 | (autoload 'cvs-checkout "pcvs" "\ | 20615 | (autoload 'cvs-checkout "pcvs" "\ |
| @@ -20619,8 +20684,8 @@ The exact behavior is determined also by `cvs-dired-use-hook'." (when (stringp d | |||
| 20619 | 20684 | ||
| 20620 | ;;;*** | 20685 | ;;;*** |
| 20621 | 20686 | ||
| 20622 | ;;;### (autoloads nil "pcvs-defs" "vc/pcvs-defs.el" (21607 54478 | 20687 | ;;;### (autoloads nil "pcvs-defs" "vc/pcvs-defs.el" (21604 48550 |
| 20623 | ;;;;;; 800121 42000)) | 20688 | ;;;;;; 429934 230000)) |
| 20624 | ;;; Generated autoloads from vc/pcvs-defs.el | 20689 | ;;; Generated autoloads from vc/pcvs-defs.el |
| 20625 | 20690 | ||
| 20626 | (defvar cvs-global-menu (let ((m (make-sparse-keymap "PCL-CVS"))) (define-key m [status] `(menu-item ,(purecopy "Directory Status") cvs-status :help ,(purecopy "A more verbose status of a workarea"))) (define-key m [checkout] `(menu-item ,(purecopy "Checkout Module") cvs-checkout :help ,(purecopy "Check out a module from the repository"))) (define-key m [update] `(menu-item ,(purecopy "Update Directory") cvs-update :help ,(purecopy "Fetch updates from the repository"))) (define-key m [examine] `(menu-item ,(purecopy "Examine Directory") cvs-examine :help ,(purecopy "Examine the current state of a workarea"))) (fset 'cvs-global-menu m)) "\ | 20691 | (defvar cvs-global-menu (let ((m (make-sparse-keymap "PCL-CVS"))) (define-key m [status] `(menu-item ,(purecopy "Directory Status") cvs-status :help ,(purecopy "A more verbose status of a workarea"))) (define-key m [checkout] `(menu-item ,(purecopy "Checkout Module") cvs-checkout :help ,(purecopy "Check out a module from the repository"))) (define-key m [update] `(menu-item ,(purecopy "Update Directory") cvs-update :help ,(purecopy "Fetch updates from the repository"))) (define-key m [examine] `(menu-item ,(purecopy "Examine Directory") cvs-examine :help ,(purecopy "Examine the current state of a workarea"))) (fset 'cvs-global-menu m)) "\ |
| @@ -20628,8 +20693,8 @@ Global menu used by PCL-CVS.") | |||
| 20628 | 20693 | ||
| 20629 | ;;;*** | 20694 | ;;;*** |
| 20630 | 20695 | ||
| 20631 | ;;;### (autoloads nil "perl-mode" "progmodes/perl-mode.el" (21607 | 20696 | ;;;### (autoloads nil "perl-mode" "progmodes/perl-mode.el" (21604 |
| 20632 | ;;;;;; 54478 800121 42000)) | 20697 | ;;;;;; 48550 353934 227000)) |
| 20633 | ;;; Generated autoloads from progmodes/perl-mode.el | 20698 | ;;; Generated autoloads from progmodes/perl-mode.el |
| 20634 | (put 'perl-indent-level 'safe-local-variable 'integerp) | 20699 | (put 'perl-indent-level 'safe-local-variable 'integerp) |
| 20635 | (put 'perl-continued-statement-offset 'safe-local-variable 'integerp) | 20700 | (put 'perl-continued-statement-offset 'safe-local-variable 'integerp) |
| @@ -20690,8 +20755,8 @@ Turning on Perl mode runs the normal hook `perl-mode-hook'. | |||
| 20690 | 20755 | ||
| 20691 | ;;;*** | 20756 | ;;;*** |
| 20692 | 20757 | ||
| 20693 | ;;;### (autoloads nil "picture" "textmodes/picture.el" (21607 54478 | 20758 | ;;;### (autoloads nil "picture" "textmodes/picture.el" (21604 48550 |
| 20694 | ;;;;;; 800121 42000)) | 20759 | ;;;;;; 397934 228000)) |
| 20695 | ;;; Generated autoloads from textmodes/picture.el | 20760 | ;;; Generated autoloads from textmodes/picture.el |
| 20696 | 20761 | ||
| 20697 | (autoload 'picture-mode "picture" "\ | 20762 | (autoload 'picture-mode "picture" "\ |
| @@ -20771,8 +20836,8 @@ they are not by default assigned to keys. | |||
| 20771 | 20836 | ||
| 20772 | ;;;*** | 20837 | ;;;*** |
| 20773 | 20838 | ||
| 20774 | ;;;### (autoloads nil "plstore" "gnus/plstore.el" (21607 54478 300138 | 20839 | ;;;### (autoloads nil "plstore" "gnus/plstore.el" (21604 48550 117934 |
| 20775 | ;;;;;; 641000)) | 20840 | ;;;;;; 218000)) |
| 20776 | ;;; Generated autoloads from gnus/plstore.el | 20841 | ;;; Generated autoloads from gnus/plstore.el |
| 20777 | 20842 | ||
| 20778 | (autoload 'plstore-open "plstore" "\ | 20843 | (autoload 'plstore-open "plstore" "\ |
| @@ -20787,8 +20852,8 @@ Major mode for editing PLSTORE files. | |||
| 20787 | 20852 | ||
| 20788 | ;;;*** | 20853 | ;;;*** |
| 20789 | 20854 | ||
| 20790 | ;;;### (autoloads nil "po" "textmodes/po.el" (21607 54478 800121 | 20855 | ;;;### (autoloads nil "po" "textmodes/po.el" (21604 48550 397934 |
| 20791 | ;;;;;; 42000)) | 20856 | ;;;;;; 228000)) |
| 20792 | ;;; Generated autoloads from textmodes/po.el | 20857 | ;;; Generated autoloads from textmodes/po.el |
| 20793 | 20858 | ||
| 20794 | (autoload 'po-find-file-coding-system "po" "\ | 20859 | (autoload 'po-find-file-coding-system "po" "\ |
| @@ -20799,7 +20864,7 @@ Called through `file-coding-system-alist', before the file is visited for real. | |||
| 20799 | 20864 | ||
| 20800 | ;;;*** | 20865 | ;;;*** |
| 20801 | 20866 | ||
| 20802 | ;;;### (autoloads nil "pong" "play/pong.el" (21607 54478 800121 42000)) | 20867 | ;;;### (autoloads nil "pong" "play/pong.el" (21604 48550 305934 225000)) |
| 20803 | ;;; Generated autoloads from play/pong.el | 20868 | ;;; Generated autoloads from play/pong.el |
| 20804 | 20869 | ||
| 20805 | (autoload 'pong "pong" "\ | 20870 | (autoload 'pong "pong" "\ |
| @@ -20815,7 +20880,7 @@ pong-mode keybindings:\\<pong-mode-map> | |||
| 20815 | 20880 | ||
| 20816 | ;;;*** | 20881 | ;;;*** |
| 20817 | 20882 | ||
| 20818 | ;;;### (autoloads nil "pop3" "gnus/pop3.el" (21619 5051 260148 536000)) | 20883 | ;;;### (autoloads nil "pop3" "gnus/pop3.el" (21631 35966 859121 868000)) |
| 20819 | ;;; Generated autoloads from gnus/pop3.el | 20884 | ;;; Generated autoloads from gnus/pop3.el |
| 20820 | 20885 | ||
| 20821 | (autoload 'pop3-movemail "pop3" "\ | 20886 | (autoload 'pop3-movemail "pop3" "\ |
| @@ -20826,8 +20891,8 @@ Use streaming commands. | |||
| 20826 | 20891 | ||
| 20827 | ;;;*** | 20892 | ;;;*** |
| 20828 | 20893 | ||
| 20829 | ;;;### (autoloads nil "pp" "emacs-lisp/pp.el" (21607 54477 800124 | 20894 | ;;;### (autoloads nil "pp" "emacs-lisp/pp.el" (21604 48550 21934 |
| 20830 | ;;;;;; 118000)) | 20895 | ;;;;;; 214000)) |
| 20831 | ;;; Generated autoloads from emacs-lisp/pp.el | 20896 | ;;; Generated autoloads from emacs-lisp/pp.el |
| 20832 | 20897 | ||
| 20833 | (autoload 'pp-to-string "pp" "\ | 20898 | (autoload 'pp-to-string "pp" "\ |
| @@ -20877,8 +20942,8 @@ Ignores leading comment characters. | |||
| 20877 | 20942 | ||
| 20878 | ;;;*** | 20943 | ;;;*** |
| 20879 | 20944 | ||
| 20880 | ;;;### (autoloads nil "printing" "printing.el" (21607 54478 800121 | 20945 | ;;;### (autoloads nil "printing" "printing.el" (21604 48550 309934 |
| 20881 | ;;;;;; 42000)) | 20946 | ;;;;;; 225000)) |
| 20882 | ;;; Generated autoloads from printing.el | 20947 | ;;; Generated autoloads from printing.el |
| 20883 | (push (purecopy '(printing 6 9 3)) package--builtin-versions) | 20948 | (push (purecopy '(printing 6 9 3)) package--builtin-versions) |
| 20884 | 20949 | ||
| @@ -21466,7 +21531,7 @@ are both set to t. | |||
| 21466 | 21531 | ||
| 21467 | ;;;*** | 21532 | ;;;*** |
| 21468 | 21533 | ||
| 21469 | ;;;### (autoloads nil "proced" "proced.el" (21609 55608 852266 580000)) | 21534 | ;;;### (autoloads nil "proced" "proced.el" (21631 35966 895121 869000)) |
| 21470 | ;;; Generated autoloads from proced.el | 21535 | ;;; Generated autoloads from proced.el |
| 21471 | 21536 | ||
| 21472 | (autoload 'proced "proced" "\ | 21537 | (autoload 'proced "proced" "\ |
| @@ -21484,8 +21549,8 @@ Proced buffers. | |||
| 21484 | 21549 | ||
| 21485 | ;;;*** | 21550 | ;;;*** |
| 21486 | 21551 | ||
| 21487 | ;;;### (autoloads nil "profiler" "profiler.el" (21607 54478 800121 | 21552 | ;;;### (autoloads nil "profiler" "profiler.el" (21604 48550 309934 |
| 21488 | ;;;;;; 42000)) | 21553 | ;;;;;; 225000)) |
| 21489 | ;;; Generated autoloads from profiler.el | 21554 | ;;; Generated autoloads from profiler.el |
| 21490 | 21555 | ||
| 21491 | (autoload 'profiler-start "profiler" "\ | 21556 | (autoload 'profiler-start "profiler" "\ |
| @@ -21513,8 +21578,8 @@ Open profile FILENAME. | |||
| 21513 | 21578 | ||
| 21514 | ;;;*** | 21579 | ;;;*** |
| 21515 | 21580 | ||
| 21516 | ;;;### (autoloads nil "prolog" "progmodes/prolog.el" (21607 54478 | 21581 | ;;;### (autoloads nil "prolog" "progmodes/prolog.el" (21604 48550 |
| 21517 | ;;;;;; 800121 42000)) | 21582 | ;;;;;; 353934 227000)) |
| 21518 | ;;; Generated autoloads from progmodes/prolog.el | 21583 | ;;; Generated autoloads from progmodes/prolog.el |
| 21519 | 21584 | ||
| 21520 | (autoload 'prolog-mode "prolog" "\ | 21585 | (autoload 'prolog-mode "prolog" "\ |
| @@ -21547,7 +21612,7 @@ With prefix argument ARG, restart the Prolog process if running before. | |||
| 21547 | 21612 | ||
| 21548 | ;;;*** | 21613 | ;;;*** |
| 21549 | 21614 | ||
| 21550 | ;;;### (autoloads nil "ps-bdf" "ps-bdf.el" (21607 54478 800121 42000)) | 21615 | ;;;### (autoloads nil "ps-bdf" "ps-bdf.el" (21604 48550 369934 227000)) |
| 21551 | ;;; Generated autoloads from ps-bdf.el | 21616 | ;;; Generated autoloads from ps-bdf.el |
| 21552 | 21617 | ||
| 21553 | (defvar bdf-directory-list (if (memq system-type '(ms-dos windows-nt)) (list (expand-file-name "fonts/bdf" installation-directory)) '("/usr/local/share/emacs/fonts/bdf")) "\ | 21618 | (defvar bdf-directory-list (if (memq system-type '(ms-dos windows-nt)) (list (expand-file-name "fonts/bdf" installation-directory)) '("/usr/local/share/emacs/fonts/bdf")) "\ |
| @@ -21558,8 +21623,8 @@ The default value is '(\"/usr/local/share/emacs/fonts/bdf\").") | |||
| 21558 | 21623 | ||
| 21559 | ;;;*** | 21624 | ;;;*** |
| 21560 | 21625 | ||
| 21561 | ;;;### (autoloads nil "ps-mode" "progmodes/ps-mode.el" (21607 54478 | 21626 | ;;;### (autoloads nil "ps-mode" "progmodes/ps-mode.el" (21604 48550 |
| 21562 | ;;;;;; 800121 42000)) | 21627 | ;;;;;; 353934 227000)) |
| 21563 | ;;; Generated autoloads from progmodes/ps-mode.el | 21628 | ;;; Generated autoloads from progmodes/ps-mode.el |
| 21564 | (push (purecopy '(ps-mode 1 1 9)) package--builtin-versions) | 21629 | (push (purecopy '(ps-mode 1 1 9)) package--builtin-versions) |
| 21565 | 21630 | ||
| @@ -21605,8 +21670,8 @@ Typing \\<ps-run-mode-map>\\[ps-run-goto-error] when the cursor is at the number | |||
| 21605 | 21670 | ||
| 21606 | ;;;*** | 21671 | ;;;*** |
| 21607 | 21672 | ||
| 21608 | ;;;### (autoloads nil "ps-print" "ps-print.el" (21607 54478 800121 | 21673 | ;;;### (autoloads nil "ps-print" "ps-print.el" (21604 48550 369934 |
| 21609 | ;;;;;; 42000)) | 21674 | ;;;;;; 227000)) |
| 21610 | ;;; Generated autoloads from ps-print.el | 21675 | ;;; Generated autoloads from ps-print.el |
| 21611 | (push (purecopy '(ps-print 7 3 5)) package--builtin-versions) | 21676 | (push (purecopy '(ps-print 7 3 5)) package--builtin-versions) |
| 21612 | 21677 | ||
| @@ -21803,15 +21868,15 @@ If EXTENSION is any other symbol, it is ignored. | |||
| 21803 | 21868 | ||
| 21804 | ;;;*** | 21869 | ;;;*** |
| 21805 | 21870 | ||
| 21806 | ;;;### (autoloads nil "pulse" "cedet/pulse.el" (21607 54477 800124 | 21871 | ;;;### (autoloads nil "pulse" "cedet/pulse.el" (21640 32530 958334 |
| 21807 | ;;;;;; 118000)) | 21872 | ;;;;;; 457000)) |
| 21808 | ;;; Generated autoloads from cedet/pulse.el | 21873 | ;;; Generated autoloads from cedet/pulse.el |
| 21809 | (push (purecopy '(pulse 1 0)) package--builtin-versions) | 21874 | (push (purecopy '(pulse 1 0)) package--builtin-versions) |
| 21810 | 21875 | ||
| 21811 | ;;;*** | 21876 | ;;;*** |
| 21812 | 21877 | ||
| 21813 | ;;;### (autoloads nil "python" "progmodes/python.el" (21625 43838 | 21878 | ;;;### (autoloads nil "python" "progmodes/python.el" (21645 25761 |
| 21814 | ;;;;;; 980113 968000)) | 21879 | ;;;;;; 809186 828000)) |
| 21815 | ;;; Generated autoloads from progmodes/python.el | 21880 | ;;; Generated autoloads from progmodes/python.el |
| 21816 | (push (purecopy '(python 0 24 4)) package--builtin-versions) | 21881 | (push (purecopy '(python 0 24 4)) package--builtin-versions) |
| 21817 | 21882 | ||
| @@ -21846,7 +21911,7 @@ Major mode for editing Python files. | |||
| 21846 | 21911 | ||
| 21847 | ;;;*** | 21912 | ;;;*** |
| 21848 | 21913 | ||
| 21849 | ;;;### (autoloads nil "qp" "gnus/qp.el" (21607 54478 300138 641000)) | 21914 | ;;;### (autoloads nil "qp" "gnus/qp.el" (21604 48550 117934 218000)) |
| 21850 | ;;; Generated autoloads from gnus/qp.el | 21915 | ;;; Generated autoloads from gnus/qp.el |
| 21851 | 21916 | ||
| 21852 | (autoload 'quoted-printable-decode-region "qp" "\ | 21917 | (autoload 'quoted-printable-decode-region "qp" "\ |
| @@ -21865,8 +21930,8 @@ them into characters should be done separately. | |||
| 21865 | 21930 | ||
| 21866 | ;;;*** | 21931 | ;;;*** |
| 21867 | 21932 | ||
| 21868 | ;;;### (autoloads nil "quail" "international/quail.el" (21607 54478 | 21933 | ;;;### (autoloads nil "quail" "international/quail.el" (21604 48550 |
| 21869 | ;;;;;; 300138 641000)) | 21934 | ;;;;;; 141934 219000)) |
| 21870 | ;;; Generated autoloads from international/quail.el | 21935 | ;;; Generated autoloads from international/quail.el |
| 21871 | 21936 | ||
| 21872 | (autoload 'quail-title "quail" "\ | 21937 | (autoload 'quail-title "quail" "\ |
| @@ -22096,8 +22161,8 @@ of each directory. | |||
| 22096 | 22161 | ||
| 22097 | ;;;*** | 22162 | ;;;*** |
| 22098 | 22163 | ||
| 22099 | ;;;### (autoloads nil "quail/hangul" "leim/quail/hangul.el" (21607 | 22164 | ;;;### (autoloads nil "quail/hangul" "leim/quail/hangul.el" (21604 |
| 22100 | ;;;;;; 54478 300138 641000)) | 22165 | ;;;;;; 48550 173934 220000)) |
| 22101 | ;;; Generated autoloads from leim/quail/hangul.el | 22166 | ;;; Generated autoloads from leim/quail/hangul.el |
| 22102 | 22167 | ||
| 22103 | (autoload 'hangul-input-method-activate "quail/hangul" "\ | 22168 | (autoload 'hangul-input-method-activate "quail/hangul" "\ |
| @@ -22110,7 +22175,7 @@ HELP-TEXT is a text set in `hangul-input-method-help-text'. | |||
| 22110 | ;;;*** | 22175 | ;;;*** |
| 22111 | 22176 | ||
| 22112 | ;;;### (autoloads nil "quail/uni-input" "leim/quail/uni-input.el" | 22177 | ;;;### (autoloads nil "quail/uni-input" "leim/quail/uni-input.el" |
| 22113 | ;;;;;; (21607 54478 300138 641000)) | 22178 | ;;;;;; (21604 48550 177934 220000)) |
| 22114 | ;;; Generated autoloads from leim/quail/uni-input.el | 22179 | ;;; Generated autoloads from leim/quail/uni-input.el |
| 22115 | 22180 | ||
| 22116 | (autoload 'ucs-input-activate "quail/uni-input" "\ | 22181 | (autoload 'ucs-input-activate "quail/uni-input" "\ |
| @@ -22124,8 +22189,8 @@ While this input method is active, the variable | |||
| 22124 | 22189 | ||
| 22125 | ;;;*** | 22190 | ;;;*** |
| 22126 | 22191 | ||
| 22127 | ;;;### (autoloads nil "quickurl" "net/quickurl.el" (21607 54478 300138 | 22192 | ;;;### (autoloads nil "quickurl" "net/quickurl.el" (21604 48550 221934 |
| 22128 | ;;;;;; 641000)) | 22193 | ;;;;;; 222000)) |
| 22129 | ;;; Generated autoloads from net/quickurl.el | 22194 | ;;; Generated autoloads from net/quickurl.el |
| 22130 | 22195 | ||
| 22131 | (defconst quickurl-reread-hook-postfix "\n;; Local Variables:\n;; eval: (progn (require 'quickurl) (add-hook 'local-write-file-hooks (lambda () (quickurl-read) nil)))\n;; End:\n" "\ | 22196 | (defconst quickurl-reread-hook-postfix "\n;; Local Variables:\n;; eval: (progn (require 'quickurl) (add-hook 'local-write-file-hooks (lambda () (quickurl-read) nil)))\n;; End:\n" "\ |
| @@ -22196,8 +22261,8 @@ Display `quickurl-list' as a formatted list using `quickurl-list-mode'. | |||
| 22196 | 22261 | ||
| 22197 | ;;;*** | 22262 | ;;;*** |
| 22198 | 22263 | ||
| 22199 | ;;;### (autoloads nil "rcirc" "net/rcirc.el" (21607 54478 300138 | 22264 | ;;;### (autoloads nil "rcirc" "net/rcirc.el" (21604 48550 221934 |
| 22200 | ;;;;;; 641000)) | 22265 | ;;;;;; 222000)) |
| 22201 | ;;; Generated autoloads from net/rcirc.el | 22266 | ;;; Generated autoloads from net/rcirc.el |
| 22202 | 22267 | ||
| 22203 | (autoload 'rcirc "rcirc" "\ | 22268 | (autoload 'rcirc "rcirc" "\ |
| @@ -22235,8 +22300,8 @@ if ARG is omitted or nil. | |||
| 22235 | 22300 | ||
| 22236 | ;;;*** | 22301 | ;;;*** |
| 22237 | 22302 | ||
| 22238 | ;;;### (autoloads nil "re-builder" "emacs-lisp/re-builder.el" (21607 | 22303 | ;;;### (autoloads nil "re-builder" "emacs-lisp/re-builder.el" (21604 |
| 22239 | ;;;;;; 54477 800124 118000)) | 22304 | ;;;;;; 48550 21934 214000)) |
| 22240 | ;;; Generated autoloads from emacs-lisp/re-builder.el | 22305 | ;;; Generated autoloads from emacs-lisp/re-builder.el |
| 22241 | 22306 | ||
| 22242 | (defalias 'regexp-builder 're-builder) | 22307 | (defalias 'regexp-builder 're-builder) |
| @@ -22254,8 +22319,8 @@ matching parts of the target buffer will be highlighted. | |||
| 22254 | 22319 | ||
| 22255 | ;;;*** | 22320 | ;;;*** |
| 22256 | 22321 | ||
| 22257 | ;;;### (autoloads nil "recentf" "recentf.el" (21607 54478 800121 | 22322 | ;;;### (autoloads nil "recentf" "recentf.el" (21604 48550 369934 |
| 22258 | ;;;;;; 42000)) | 22323 | ;;;;;; 227000)) |
| 22259 | ;;; Generated autoloads from recentf.el | 22324 | ;;; Generated autoloads from recentf.el |
| 22260 | 22325 | ||
| 22261 | (defvar recentf-mode nil "\ | 22326 | (defvar recentf-mode nil "\ |
| @@ -22281,7 +22346,7 @@ were operated on recently. | |||
| 22281 | 22346 | ||
| 22282 | ;;;*** | 22347 | ;;;*** |
| 22283 | 22348 | ||
| 22284 | ;;;### (autoloads nil "rect" "rect.el" (21607 54478 800121 42000)) | 22349 | ;;;### (autoloads nil "rect" "rect.el" (21604 48550 369934 227000)) |
| 22285 | ;;; Generated autoloads from rect.el | 22350 | ;;; Generated autoloads from rect.el |
| 22286 | 22351 | ||
| 22287 | (autoload 'delete-rectangle "rect" "\ | 22352 | (autoload 'delete-rectangle "rect" "\ |
| @@ -22421,8 +22486,8 @@ Activates the region if needed. Only lasts until the region is deactivated. | |||
| 22421 | 22486 | ||
| 22422 | ;;;*** | 22487 | ;;;*** |
| 22423 | 22488 | ||
| 22424 | ;;;### (autoloads nil "refill" "textmodes/refill.el" (21607 54478 | 22489 | ;;;### (autoloads nil "refill" "textmodes/refill.el" (21604 48550 |
| 22425 | ;;;;;; 800121 42000)) | 22490 | ;;;;;; 401934 229000)) |
| 22426 | ;;; Generated autoloads from textmodes/refill.el | 22491 | ;;; Generated autoloads from textmodes/refill.el |
| 22427 | 22492 | ||
| 22428 | (autoload 'refill-mode "refill" "\ | 22493 | (autoload 'refill-mode "refill" "\ |
| @@ -22442,8 +22507,8 @@ For true \"word wrap\" behavior, use `visual-line-mode' instead. | |||
| 22442 | 22507 | ||
| 22443 | ;;;*** | 22508 | ;;;*** |
| 22444 | 22509 | ||
| 22445 | ;;;### (autoloads nil "reftex" "textmodes/reftex.el" (21607 54478 | 22510 | ;;;### (autoloads nil "reftex" "textmodes/reftex.el" (21604 48550 |
| 22446 | ;;;;;; 800121 42000)) | 22511 | ;;;;;; 405934 229000)) |
| 22447 | ;;; Generated autoloads from textmodes/reftex.el | 22512 | ;;; Generated autoloads from textmodes/reftex.el |
| 22448 | (autoload 'reftex-citation "reftex-cite" nil t) | 22513 | (autoload 'reftex-citation "reftex-cite" nil t) |
| 22449 | (autoload 'reftex-all-document-files "reftex-parse") | 22514 | (autoload 'reftex-all-document-files "reftex-parse") |
| @@ -22496,8 +22561,8 @@ This enforces rescanning the buffer on next use. | |||
| 22496 | 22561 | ||
| 22497 | ;;;*** | 22562 | ;;;*** |
| 22498 | 22563 | ||
| 22499 | ;;;### (autoloads nil "reftex-vars" "textmodes/reftex-vars.el" (21607 | 22564 | ;;;### (autoloads nil "reftex-vars" "textmodes/reftex-vars.el" (21604 |
| 22500 | ;;;;;; 54478 800121 42000)) | 22565 | ;;;;;; 48550 401934 229000)) |
| 22501 | ;;; Generated autoloads from textmodes/reftex-vars.el | 22566 | ;;; Generated autoloads from textmodes/reftex-vars.el |
| 22502 | (put 'reftex-vref-is-default 'safe-local-variable (lambda (x) (or (stringp x) (symbolp x)))) | 22567 | (put 'reftex-vref-is-default 'safe-local-variable (lambda (x) (or (stringp x) (symbolp x)))) |
| 22503 | (put 'reftex-fref-is-default 'safe-local-variable (lambda (x) (or (stringp x) (symbolp x)))) | 22568 | (put 'reftex-fref-is-default 'safe-local-variable (lambda (x) (or (stringp x) (symbolp x)))) |
| @@ -22506,8 +22571,8 @@ This enforces rescanning the buffer on next use. | |||
| 22506 | 22571 | ||
| 22507 | ;;;*** | 22572 | ;;;*** |
| 22508 | 22573 | ||
| 22509 | ;;;### (autoloads nil "regexp-opt" "emacs-lisp/regexp-opt.el" (21607 | 22574 | ;;;### (autoloads nil "regexp-opt" "emacs-lisp/regexp-opt.el" (21604 |
| 22510 | ;;;;;; 54477 800124 118000)) | 22575 | ;;;;;; 48550 21934 214000)) |
| 22511 | ;;; Generated autoloads from emacs-lisp/regexp-opt.el | 22576 | ;;; Generated autoloads from emacs-lisp/regexp-opt.el |
| 22512 | 22577 | ||
| 22513 | (autoload 'regexp-opt "regexp-opt" "\ | 22578 | (autoload 'regexp-opt "regexp-opt" "\ |
| @@ -22536,15 +22601,15 @@ This means the number of non-shy regexp grouping constructs | |||
| 22536 | 22601 | ||
| 22537 | ;;;*** | 22602 | ;;;*** |
| 22538 | 22603 | ||
| 22539 | ;;;### (autoloads nil "regi" "emacs-lisp/regi.el" (21607 54477 800124 | 22604 | ;;;### (autoloads nil "regi" "emacs-lisp/regi.el" (21604 48550 21934 |
| 22540 | ;;;;;; 118000)) | 22605 | ;;;;;; 214000)) |
| 22541 | ;;; Generated autoloads from emacs-lisp/regi.el | 22606 | ;;; Generated autoloads from emacs-lisp/regi.el |
| 22542 | (push (purecopy '(regi 1 8)) package--builtin-versions) | 22607 | (push (purecopy '(regi 1 8)) package--builtin-versions) |
| 22543 | 22608 | ||
| 22544 | ;;;*** | 22609 | ;;;*** |
| 22545 | 22610 | ||
| 22546 | ;;;### (autoloads nil "remember" "textmodes/remember.el" (21607 54478 | 22611 | ;;;### (autoloads nil "remember" "textmodes/remember.el" (21604 48550 |
| 22547 | ;;;;;; 800121 42000)) | 22612 | ;;;;;; 405934 229000)) |
| 22548 | ;;; Generated autoloads from textmodes/remember.el | 22613 | ;;; Generated autoloads from textmodes/remember.el |
| 22549 | (push (purecopy '(remember 2 0)) package--builtin-versions) | 22614 | (push (purecopy '(remember 2 0)) package--builtin-versions) |
| 22550 | 22615 | ||
| @@ -22598,7 +22663,7 @@ to turn the *scratch* buffer into your notes buffer. | |||
| 22598 | 22663 | ||
| 22599 | ;;;*** | 22664 | ;;;*** |
| 22600 | 22665 | ||
| 22601 | ;;;### (autoloads nil "repeat" "repeat.el" (21607 54478 800121 42000)) | 22666 | ;;;### (autoloads nil "repeat" "repeat.el" (21604 48550 373934 228000)) |
| 22602 | ;;; Generated autoloads from repeat.el | 22667 | ;;; Generated autoloads from repeat.el |
| 22603 | (push (purecopy '(repeat 0 51)) package--builtin-versions) | 22668 | (push (purecopy '(repeat 0 51)) package--builtin-versions) |
| 22604 | 22669 | ||
| @@ -22621,8 +22686,8 @@ recently executed command not bound to an input event\". | |||
| 22621 | 22686 | ||
| 22622 | ;;;*** | 22687 | ;;;*** |
| 22623 | 22688 | ||
| 22624 | ;;;### (autoloads nil "reporter" "mail/reporter.el" (21607 54478 | 22689 | ;;;### (autoloads nil "reporter" "mail/reporter.el" (21604 48550 |
| 22625 | ;;;;;; 300138 641000)) | 22690 | ;;;;;; 185934 221000)) |
| 22626 | ;;; Generated autoloads from mail/reporter.el | 22691 | ;;; Generated autoloads from mail/reporter.el |
| 22627 | 22692 | ||
| 22628 | (autoload 'reporter-submit-bug-report "reporter" "\ | 22693 | (autoload 'reporter-submit-bug-report "reporter" "\ |
| @@ -22653,8 +22718,8 @@ mail-sending package is used for editing and sending the message. | |||
| 22653 | 22718 | ||
| 22654 | ;;;*** | 22719 | ;;;*** |
| 22655 | 22720 | ||
| 22656 | ;;;### (autoloads nil "reposition" "reposition.el" (21607 54478 800121 | 22721 | ;;;### (autoloads nil "reposition" "reposition.el" (21604 48550 373934 |
| 22657 | ;;;;;; 42000)) | 22722 | ;;;;;; 228000)) |
| 22658 | ;;; Generated autoloads from reposition.el | 22723 | ;;; Generated autoloads from reposition.el |
| 22659 | 22724 | ||
| 22660 | (autoload 'reposition-window "reposition" "\ | 22725 | (autoload 'reposition-window "reposition" "\ |
| @@ -22680,7 +22745,7 @@ first comment line visible (if point is in a comment). | |||
| 22680 | 22745 | ||
| 22681 | ;;;*** | 22746 | ;;;*** |
| 22682 | 22747 | ||
| 22683 | ;;;### (autoloads nil "reveal" "reveal.el" (21607 54478 800121 42000)) | 22748 | ;;;### (autoloads nil "reveal" "reveal.el" (21604 48550 373934 228000)) |
| 22684 | ;;; Generated autoloads from reveal.el | 22749 | ;;; Generated autoloads from reveal.el |
| 22685 | 22750 | ||
| 22686 | (autoload 'reveal-mode "reveal" "\ | 22751 | (autoload 'reveal-mode "reveal" "\ |
| @@ -22715,8 +22780,8 @@ the mode if ARG is omitted or nil. | |||
| 22715 | 22780 | ||
| 22716 | ;;;*** | 22781 | ;;;*** |
| 22717 | 22782 | ||
| 22718 | ;;;### (autoloads nil "ring" "emacs-lisp/ring.el" (21607 54477 800124 | 22783 | ;;;### (autoloads nil "ring" "emacs-lisp/ring.el" (21604 48550 21934 |
| 22719 | ;;;;;; 118000)) | 22784 | ;;;;;; 214000)) |
| 22720 | ;;; Generated autoloads from emacs-lisp/ring.el | 22785 | ;;; Generated autoloads from emacs-lisp/ring.el |
| 22721 | 22786 | ||
| 22722 | (autoload 'ring-p "ring" "\ | 22787 | (autoload 'ring-p "ring" "\ |
| @@ -22731,8 +22796,8 @@ Make a ring that can contain SIZE elements. | |||
| 22731 | 22796 | ||
| 22732 | ;;;*** | 22797 | ;;;*** |
| 22733 | 22798 | ||
| 22734 | ;;;### (autoloads nil "rlogin" "net/rlogin.el" (21607 54478 300138 | 22799 | ;;;### (autoloads nil "rlogin" "net/rlogin.el" (21604 48550 221934 |
| 22735 | ;;;;;; 641000)) | 22800 | ;;;;;; 222000)) |
| 22736 | ;;; Generated autoloads from net/rlogin.el | 22801 | ;;; Generated autoloads from net/rlogin.el |
| 22737 | 22802 | ||
| 22738 | (autoload 'rlogin "rlogin" "\ | 22803 | (autoload 'rlogin "rlogin" "\ |
| @@ -22776,8 +22841,8 @@ variable. | |||
| 22776 | 22841 | ||
| 22777 | ;;;*** | 22842 | ;;;*** |
| 22778 | 22843 | ||
| 22779 | ;;;### (autoloads nil "rmail" "mail/rmail.el" (21607 54478 300138 | 22844 | ;;;### (autoloads nil "rmail" "mail/rmail.el" (21604 48550 185934 |
| 22780 | ;;;;;; 641000)) | 22845 | ;;;;;; 221000)) |
| 22781 | ;;; Generated autoloads from mail/rmail.el | 22846 | ;;; Generated autoloads from mail/rmail.el |
| 22782 | 22847 | ||
| 22783 | (defvar rmail-file-name (purecopy "~/RMAIL") "\ | 22848 | (defvar rmail-file-name (purecopy "~/RMAIL") "\ |
| @@ -22974,8 +23039,8 @@ Set PASSWORD to be used for retrieving mail from a POP or IMAP server. | |||
| 22974 | 23039 | ||
| 22975 | ;;;*** | 23040 | ;;;*** |
| 22976 | 23041 | ||
| 22977 | ;;;### (autoloads nil "rmailout" "mail/rmailout.el" (21607 54478 | 23042 | ;;;### (autoloads nil "rmailout" "mail/rmailout.el" (21604 48550 |
| 22978 | ;;;;;; 300138 641000)) | 23043 | ;;;;;; 185934 221000)) |
| 22979 | ;;; Generated autoloads from mail/rmailout.el | 23044 | ;;; Generated autoloads from mail/rmailout.el |
| 22980 | (put 'rmail-output-file-alist 'risky-local-variable t) | 23045 | (put 'rmail-output-file-alist 'risky-local-variable t) |
| 22981 | 23046 | ||
| @@ -23039,8 +23104,8 @@ than appending to it. Deletes the message after writing if | |||
| 23039 | 23104 | ||
| 23040 | ;;;*** | 23105 | ;;;*** |
| 23041 | 23106 | ||
| 23042 | ;;;### (autoloads nil "rng-cmpct" "nxml/rng-cmpct.el" (21607 54478 | 23107 | ;;;### (autoloads nil "rng-cmpct" "nxml/rng-cmpct.el" (21604 48550 |
| 23043 | ;;;;;; 300138 641000)) | 23108 | ;;;;;; 237934 223000)) |
| 23044 | ;;; Generated autoloads from nxml/rng-cmpct.el | 23109 | ;;; Generated autoloads from nxml/rng-cmpct.el |
| 23045 | 23110 | ||
| 23046 | (autoload 'rng-c-load-schema "rng-cmpct" "\ | 23111 | (autoload 'rng-c-load-schema "rng-cmpct" "\ |
| @@ -23051,8 +23116,8 @@ Return a pattern. | |||
| 23051 | 23116 | ||
| 23052 | ;;;*** | 23117 | ;;;*** |
| 23053 | 23118 | ||
| 23054 | ;;;### (autoloads nil "rng-nxml" "nxml/rng-nxml.el" (21607 54478 | 23119 | ;;;### (autoloads nil "rng-nxml" "nxml/rng-nxml.el" (21604 48550 |
| 23055 | ;;;;;; 300138 641000)) | 23120 | ;;;;;; 241934 223000)) |
| 23056 | ;;; Generated autoloads from nxml/rng-nxml.el | 23121 | ;;; Generated autoloads from nxml/rng-nxml.el |
| 23057 | 23122 | ||
| 23058 | (autoload 'rng-nxml-mode-init "rng-nxml" "\ | 23123 | (autoload 'rng-nxml-mode-init "rng-nxml" "\ |
| @@ -23064,8 +23129,8 @@ Validation will be enabled if `rng-nxml-auto-validate-flag' is non-nil. | |||
| 23064 | 23129 | ||
| 23065 | ;;;*** | 23130 | ;;;*** |
| 23066 | 23131 | ||
| 23067 | ;;;### (autoloads nil "rng-valid" "nxml/rng-valid.el" (21607 54478 | 23132 | ;;;### (autoloads nil "rng-valid" "nxml/rng-valid.el" (21604 48550 |
| 23068 | ;;;;;; 300138 641000)) | 23133 | ;;;;;; 241934 223000)) |
| 23069 | ;;; Generated autoloads from nxml/rng-valid.el | 23134 | ;;; Generated autoloads from nxml/rng-valid.el |
| 23070 | 23135 | ||
| 23071 | (autoload 'rng-validate-mode "rng-valid" "\ | 23136 | (autoload 'rng-validate-mode "rng-valid" "\ |
| @@ -23095,8 +23160,8 @@ to use for finding the schema. | |||
| 23095 | 23160 | ||
| 23096 | ;;;*** | 23161 | ;;;*** |
| 23097 | 23162 | ||
| 23098 | ;;;### (autoloads nil "rng-xsd" "nxml/rng-xsd.el" (21607 54478 300138 | 23163 | ;;;### (autoloads nil "rng-xsd" "nxml/rng-xsd.el" (21604 48550 241934 |
| 23099 | ;;;;;; 641000)) | 23164 | ;;;;;; 223000)) |
| 23100 | ;;; Generated autoloads from nxml/rng-xsd.el | 23165 | ;;; Generated autoloads from nxml/rng-xsd.el |
| 23101 | 23166 | ||
| 23102 | (put 'http://www\.w3\.org/2001/XMLSchema-datatypes 'rng-dt-compile 'rng-xsd-compile) | 23167 | (put 'http://www\.w3\.org/2001/XMLSchema-datatypes 'rng-dt-compile 'rng-xsd-compile) |
| @@ -23123,8 +23188,8 @@ must be equal. | |||
| 23123 | 23188 | ||
| 23124 | ;;;*** | 23189 | ;;;*** |
| 23125 | 23190 | ||
| 23126 | ;;;### (autoloads nil "robin" "international/robin.el" (21607 54478 | 23191 | ;;;### (autoloads nil "robin" "international/robin.el" (21604 48550 |
| 23127 | ;;;;;; 300138 641000)) | 23192 | ;;;;;; 141934 219000)) |
| 23128 | ;;; Generated autoloads from international/robin.el | 23193 | ;;; Generated autoloads from international/robin.el |
| 23129 | 23194 | ||
| 23130 | (autoload 'robin-define-package "robin" "\ | 23195 | (autoload 'robin-define-package "robin" "\ |
| @@ -23156,7 +23221,7 @@ Start using robin package NAME, which is a string. | |||
| 23156 | 23221 | ||
| 23157 | ;;;*** | 23222 | ;;;*** |
| 23158 | 23223 | ||
| 23159 | ;;;### (autoloads nil "rot13" "rot13.el" (21607 54478 800121 42000)) | 23224 | ;;;### (autoloads nil "rot13" "rot13.el" (21604 48550 373934 228000)) |
| 23160 | ;;; Generated autoloads from rot13.el | 23225 | ;;; Generated autoloads from rot13.el |
| 23161 | 23226 | ||
| 23162 | (autoload 'rot13 "rot13" "\ | 23227 | (autoload 'rot13 "rot13" "\ |
| @@ -23193,8 +23258,8 @@ Toggle the use of ROT13 encoding for the current window. | |||
| 23193 | 23258 | ||
| 23194 | ;;;*** | 23259 | ;;;*** |
| 23195 | 23260 | ||
| 23196 | ;;;### (autoloads nil "rst" "textmodes/rst.el" (21607 54478 800121 | 23261 | ;;;### (autoloads nil "rst" "textmodes/rst.el" (21604 48550 405934 |
| 23197 | ;;;;;; 42000)) | 23262 | ;;;;;; 229000)) |
| 23198 | ;;; Generated autoloads from textmodes/rst.el | 23263 | ;;; Generated autoloads from textmodes/rst.el |
| 23199 | (add-to-list 'auto-mode-alist (purecopy '("\\.re?st\\'" . rst-mode))) | 23264 | (add-to-list 'auto-mode-alist (purecopy '("\\.re?st\\'" . rst-mode))) |
| 23200 | 23265 | ||
| @@ -23224,8 +23289,8 @@ for modes derived from Text mode, like Mail mode. | |||
| 23224 | 23289 | ||
| 23225 | ;;;*** | 23290 | ;;;*** |
| 23226 | 23291 | ||
| 23227 | ;;;### (autoloads nil "ruby-mode" "progmodes/ruby-mode.el" (21607 | 23292 | ;;;### (autoloads nil "ruby-mode" "progmodes/ruby-mode.el" (21659 |
| 23228 | ;;;;;; 54478 800121 42000)) | 23293 | ;;;;;; 61733 222949 164000)) |
| 23229 | ;;; Generated autoloads from progmodes/ruby-mode.el | 23294 | ;;; Generated autoloads from progmodes/ruby-mode.el |
| 23230 | (push (purecopy '(ruby-mode 1 2)) package--builtin-versions) | 23295 | (push (purecopy '(ruby-mode 1 2)) package--builtin-versions) |
| 23231 | 23296 | ||
| @@ -23236,14 +23301,14 @@ Major mode for editing Ruby code. | |||
| 23236 | 23301 | ||
| 23237 | \(fn)" t nil) | 23302 | \(fn)" t nil) |
| 23238 | 23303 | ||
| 23239 | (add-to-list 'auto-mode-alist (cons (purecopy (concat "\\(?:\\." "rb\\|ru\\|rake\\|thor" "\\|jbuilder\\|gemspec\\|podspec" "\\|/" "\\(?:Gem\\|Rake\\|Cap\\|Thor" "\\|Vagrant\\|Guard\\|Pod\\)file" "\\)\\'")) 'ruby-mode)) | 23304 | (add-to-list 'auto-mode-alist (cons (purecopy (concat "\\(?:\\." "rb\\|ru\\|rake\\|thor" "\\|jbuilder\\|rabl\\|gemspec\\|podspec" "\\|/" "\\(?:Gem\\|Rake\\|Cap\\|Thor" "\\|Puppet\\|Berks" "\\|Vagrant\\|Guard\\|Pod\\)file" "\\)\\'")) 'ruby-mode)) |
| 23240 | 23305 | ||
| 23241 | (dolist (name (list "ruby" "rbx" "jruby" "ruby1.9" "ruby1.8")) (add-to-list 'interpreter-mode-alist (cons (purecopy name) 'ruby-mode))) | 23306 | (dolist (name (list "ruby" "rbx" "jruby" "ruby1.9" "ruby1.8")) (add-to-list 'interpreter-mode-alist (cons (purecopy name) 'ruby-mode))) |
| 23242 | 23307 | ||
| 23243 | ;;;*** | 23308 | ;;;*** |
| 23244 | 23309 | ||
| 23245 | ;;;### (autoloads nil "ruler-mode" "ruler-mode.el" (21607 54478 800121 | 23310 | ;;;### (autoloads nil "ruler-mode" "ruler-mode.el" (21604 48550 373934 |
| 23246 | ;;;;;; 42000)) | 23311 | ;;;;;; 228000)) |
| 23247 | ;;; Generated autoloads from ruler-mode.el | 23312 | ;;; Generated autoloads from ruler-mode.el |
| 23248 | (push (purecopy '(ruler-mode 1 6)) package--builtin-versions) | 23313 | (push (purecopy '(ruler-mode 1 6)) package--builtin-versions) |
| 23249 | 23314 | ||
| @@ -23261,8 +23326,8 @@ if ARG is omitted or nil. | |||
| 23261 | 23326 | ||
| 23262 | ;;;*** | 23327 | ;;;*** |
| 23263 | 23328 | ||
| 23264 | ;;;### (autoloads nil "rx" "emacs-lisp/rx.el" (21607 54477 800124 | 23329 | ;;;### (autoloads nil "rx" "emacs-lisp/rx.el" (21604 48550 25934 |
| 23265 | ;;;;;; 118000)) | 23330 | ;;;;;; 215000)) |
| 23266 | ;;; Generated autoloads from emacs-lisp/rx.el | 23331 | ;;; Generated autoloads from emacs-lisp/rx.el |
| 23267 | 23332 | ||
| 23268 | (autoload 'rx-to-string "rx" "\ | 23333 | (autoload 'rx-to-string "rx" "\ |
| @@ -23573,15 +23638,15 @@ enclosed in `(and ...)'. | |||
| 23573 | 23638 | ||
| 23574 | ;;;*** | 23639 | ;;;*** |
| 23575 | 23640 | ||
| 23576 | ;;;### (autoloads nil "sasl-ntlm" "net/sasl-ntlm.el" (21607 54478 | 23641 | ;;;### (autoloads nil "sasl-ntlm" "net/sasl-ntlm.el" (21604 48550 |
| 23577 | ;;;;;; 300138 641000)) | 23642 | ;;;;;; 221934 222000)) |
| 23578 | ;;; Generated autoloads from net/sasl-ntlm.el | 23643 | ;;; Generated autoloads from net/sasl-ntlm.el |
| 23579 | (push (purecopy '(sasl 1 0)) package--builtin-versions) | 23644 | (push (purecopy '(sasl 1 0)) package--builtin-versions) |
| 23580 | 23645 | ||
| 23581 | ;;;*** | 23646 | ;;;*** |
| 23582 | 23647 | ||
| 23583 | ;;;### (autoloads nil "savehist" "savehist.el" (21607 54478 800121 | 23648 | ;;;### (autoloads nil "savehist" "savehist.el" (21604 48550 373934 |
| 23584 | ;;;;;; 42000)) | 23649 | ;;;;;; 228000)) |
| 23585 | ;;; Generated autoloads from savehist.el | 23650 | ;;; Generated autoloads from savehist.el |
| 23586 | (push (purecopy '(savehist 24)) package--builtin-versions) | 23651 | (push (purecopy '(savehist 24)) package--builtin-versions) |
| 23587 | 23652 | ||
| @@ -23613,8 +23678,8 @@ histories, which is probably undesirable. | |||
| 23613 | 23678 | ||
| 23614 | ;;;*** | 23679 | ;;;*** |
| 23615 | 23680 | ||
| 23616 | ;;;### (autoloads nil "scheme" "progmodes/scheme.el" (21607 54478 | 23681 | ;;;### (autoloads nil "scheme" "progmodes/scheme.el" (21604 48550 |
| 23617 | ;;;;;; 800121 42000)) | 23682 | ;;;;;; 353934 227000)) |
| 23618 | ;;; Generated autoloads from progmodes/scheme.el | 23683 | ;;; Generated autoloads from progmodes/scheme.el |
| 23619 | 23684 | ||
| 23620 | (autoload 'scheme-mode "scheme" "\ | 23685 | (autoload 'scheme-mode "scheme" "\ |
| @@ -23653,8 +23718,8 @@ that variable's value is a string. | |||
| 23653 | 23718 | ||
| 23654 | ;;;*** | 23719 | ;;;*** |
| 23655 | 23720 | ||
| 23656 | ;;;### (autoloads nil "score-mode" "gnus/score-mode.el" (21607 54478 | 23721 | ;;;### (autoloads nil "score-mode" "gnus/score-mode.el" (21604 48550 |
| 23657 | ;;;;;; 300138 641000)) | 23722 | ;;;;;; 121934 218000)) |
| 23658 | ;;; Generated autoloads from gnus/score-mode.el | 23723 | ;;; Generated autoloads from gnus/score-mode.el |
| 23659 | 23724 | ||
| 23660 | (autoload 'gnus-score-mode "score-mode" "\ | 23725 | (autoload 'gnus-score-mode "score-mode" "\ |
| @@ -23667,8 +23732,8 @@ This mode is an extended emacs-lisp mode. | |||
| 23667 | 23732 | ||
| 23668 | ;;;*** | 23733 | ;;;*** |
| 23669 | 23734 | ||
| 23670 | ;;;### (autoloads nil "scroll-all" "scroll-all.el" (21607 54478 800121 | 23735 | ;;;### (autoloads nil "scroll-all" "scroll-all.el" (21604 48550 373934 |
| 23671 | ;;;;;; 42000)) | 23736 | ;;;;;; 228000)) |
| 23672 | ;;; Generated autoloads from scroll-all.el | 23737 | ;;; Generated autoloads from scroll-all.el |
| 23673 | 23738 | ||
| 23674 | (defvar scroll-all-mode nil "\ | 23739 | (defvar scroll-all-mode nil "\ |
| @@ -23693,8 +23758,8 @@ one window apply to all visible windows in the same frame. | |||
| 23693 | 23758 | ||
| 23694 | ;;;*** | 23759 | ;;;*** |
| 23695 | 23760 | ||
| 23696 | ;;;### (autoloads nil "scroll-lock" "scroll-lock.el" (21607 54478 | 23761 | ;;;### (autoloads nil "scroll-lock" "scroll-lock.el" (21604 48550 |
| 23697 | ;;;;;; 800121 42000)) | 23762 | ;;;;;; 373934 228000)) |
| 23698 | ;;; Generated autoloads from scroll-lock.el | 23763 | ;;; Generated autoloads from scroll-lock.el |
| 23699 | 23764 | ||
| 23700 | (autoload 'scroll-lock-mode "scroll-lock" "\ | 23765 | (autoload 'scroll-lock-mode "scroll-lock" "\ |
| @@ -23710,16 +23775,16 @@ vertically fixed relative to window boundaries during scrolling. | |||
| 23710 | 23775 | ||
| 23711 | ;;;*** | 23776 | ;;;*** |
| 23712 | 23777 | ||
| 23713 | ;;;### (autoloads nil "secrets" "net/secrets.el" (21607 54478 300138 | 23778 | ;;;### (autoloads nil "secrets" "net/secrets.el" (21604 48550 221934 |
| 23714 | ;;;;;; 641000)) | 23779 | ;;;;;; 222000)) |
| 23715 | ;;; Generated autoloads from net/secrets.el | 23780 | ;;; Generated autoloads from net/secrets.el |
| 23716 | (when (featurep 'dbusbind) | 23781 | (when (featurep 'dbusbind) |
| 23717 | (autoload 'secrets-show-secrets "secrets" nil t)) | 23782 | (autoload 'secrets-show-secrets "secrets" nil t)) |
| 23718 | 23783 | ||
| 23719 | ;;;*** | 23784 | ;;;*** |
| 23720 | 23785 | ||
| 23721 | ;;;### (autoloads nil "semantic" "cedet/semantic.el" (21609 55608 | 23786 | ;;;### (autoloads nil "semantic" "cedet/semantic.el" (21645 25875 |
| 23722 | ;;;;;; 852266 580000)) | 23787 | ;;;;;; 821189 881000)) |
| 23723 | ;;; Generated autoloads from cedet/semantic.el | 23788 | ;;; Generated autoloads from cedet/semantic.el |
| 23724 | (push (purecopy '(semantic 2 2)) package--builtin-versions) | 23789 | (push (purecopy '(semantic 2 2)) package--builtin-versions) |
| 23725 | 23790 | ||
| @@ -23777,7 +23842,7 @@ Semantic mode. | |||
| 23777 | ;;;*** | 23842 | ;;;*** |
| 23778 | 23843 | ||
| 23779 | ;;;### (autoloads nil "semantic/bovine/grammar" "cedet/semantic/bovine/grammar.el" | 23844 | ;;;### (autoloads nil "semantic/bovine/grammar" "cedet/semantic/bovine/grammar.el" |
| 23780 | ;;;;;; (21607 54477 800124 118000)) | 23845 | ;;;;;; (21604 48549 969934 213000)) |
| 23781 | ;;; Generated autoloads from cedet/semantic/bovine/grammar.el | 23846 | ;;; Generated autoloads from cedet/semantic/bovine/grammar.el |
| 23782 | 23847 | ||
| 23783 | (autoload 'bovine-grammar-mode "semantic/bovine/grammar" "\ | 23848 | (autoload 'bovine-grammar-mode "semantic/bovine/grammar" "\ |
| @@ -23788,7 +23853,7 @@ Major mode for editing Bovine grammars. | |||
| 23788 | ;;;*** | 23853 | ;;;*** |
| 23789 | 23854 | ||
| 23790 | ;;;### (autoloads nil "semantic/wisent/grammar" "cedet/semantic/wisent/grammar.el" | 23855 | ;;;### (autoloads nil "semantic/wisent/grammar" "cedet/semantic/wisent/grammar.el" |
| 23791 | ;;;;;; (21607 54477 800124 118000)) | 23856 | ;;;;;; (21604 48549 981934 213000)) |
| 23792 | ;;; Generated autoloads from cedet/semantic/wisent/grammar.el | 23857 | ;;; Generated autoloads from cedet/semantic/wisent/grammar.el |
| 23793 | 23858 | ||
| 23794 | (autoload 'wisent-grammar-mode "semantic/wisent/grammar" "\ | 23859 | (autoload 'wisent-grammar-mode "semantic/wisent/grammar" "\ |
| @@ -23798,8 +23863,8 @@ Major mode for editing Wisent grammars. | |||
| 23798 | 23863 | ||
| 23799 | ;;;*** | 23864 | ;;;*** |
| 23800 | 23865 | ||
| 23801 | ;;;### (autoloads nil "sendmail" "mail/sendmail.el" (21607 54478 | 23866 | ;;;### (autoloads nil "sendmail" "mail/sendmail.el" (21604 48550 |
| 23802 | ;;;;;; 300138 641000)) | 23867 | ;;;;;; 189934 221000)) |
| 23803 | ;;; Generated autoloads from mail/sendmail.el | 23868 | ;;; Generated autoloads from mail/sendmail.el |
| 23804 | 23869 | ||
| 23805 | (defvar mail-from-style 'default "\ | 23870 | (defvar mail-from-style 'default "\ |
| @@ -24080,7 +24145,14 @@ Like `mail' command, but display mail buffer in another frame. | |||
| 24080 | 24145 | ||
| 24081 | ;;;*** | 24146 | ;;;*** |
| 24082 | 24147 | ||
| 24083 | ;;;### (autoloads nil "server" "server.el" (21607 54478 800121 42000)) | 24148 | ;;;### (autoloads nil "seq" "emacs-lisp/seq.el" (21648 55877 412874 |
| 24149 | ;;;;;; 916000)) | ||
| 24150 | ;;; Generated autoloads from emacs-lisp/seq.el | ||
| 24151 | (push (purecopy '(seq 1 0)) package--builtin-versions) | ||
| 24152 | |||
| 24153 | ;;;*** | ||
| 24154 | |||
| 24155 | ;;;### (autoloads nil "server" "server.el" (21604 48550 373934 228000)) | ||
| 24084 | ;;; Generated autoloads from server.el | 24156 | ;;; Generated autoloads from server.el |
| 24085 | 24157 | ||
| 24086 | (put 'server-host 'risky-local-variable t) | 24158 | (put 'server-host 'risky-local-variable t) |
| @@ -24147,7 +24219,7 @@ only these files will be asked to be saved. | |||
| 24147 | 24219 | ||
| 24148 | ;;;*** | 24220 | ;;;*** |
| 24149 | 24221 | ||
| 24150 | ;;;### (autoloads nil "ses" "ses.el" (21607 54478 800121 42000)) | 24222 | ;;;### (autoloads nil "ses" "ses.el" (21604 48550 377934 228000)) |
| 24151 | ;;; Generated autoloads from ses.el | 24223 | ;;; Generated autoloads from ses.el |
| 24152 | 24224 | ||
| 24153 | (autoload 'ses-mode "ses" "\ | 24225 | (autoload 'ses-mode "ses" "\ |
| @@ -24191,8 +24263,8 @@ formula: | |||
| 24191 | 24263 | ||
| 24192 | ;;;*** | 24264 | ;;;*** |
| 24193 | 24265 | ||
| 24194 | ;;;### (autoloads nil "sgml-mode" "textmodes/sgml-mode.el" (21623 | 24266 | ;;;### (autoloads nil "sgml-mode" "textmodes/sgml-mode.el" (21631 |
| 24195 | ;;;;;; 2108 292281 129000)) | 24267 | ;;;;;; 35966 915121 870000)) |
| 24196 | ;;; Generated autoloads from textmodes/sgml-mode.el | 24268 | ;;; Generated autoloads from textmodes/sgml-mode.el |
| 24197 | 24269 | ||
| 24198 | (autoload 'sgml-mode "sgml-mode" "\ | 24270 | (autoload 'sgml-mode "sgml-mode" "\ |
| @@ -24257,8 +24329,8 @@ To work around that, do: | |||
| 24257 | 24329 | ||
| 24258 | ;;;*** | 24330 | ;;;*** |
| 24259 | 24331 | ||
| 24260 | ;;;### (autoloads nil "sh-script" "progmodes/sh-script.el" (21607 | 24332 | ;;;### (autoloads nil "sh-script" "progmodes/sh-script.el" (21637 |
| 24261 | ;;;;;; 54478 800121 42000)) | 24333 | ;;;;;; 50476 679217 121000)) |
| 24262 | ;;; Generated autoloads from progmodes/sh-script.el | 24334 | ;;; Generated autoloads from progmodes/sh-script.el |
| 24263 | (push (purecopy '(sh-script 2 0 6)) package--builtin-versions) | 24335 | (push (purecopy '(sh-script 2 0 6)) package--builtin-versions) |
| 24264 | (put 'sh-shell 'safe-local-variable 'symbolp) | 24336 | (put 'sh-shell 'safe-local-variable 'symbolp) |
| @@ -24322,8 +24394,8 @@ with your script for an edit-interpret-debug cycle. | |||
| 24322 | 24394 | ||
| 24323 | ;;;*** | 24395 | ;;;*** |
| 24324 | 24396 | ||
| 24325 | ;;;### (autoloads nil "shadow" "emacs-lisp/shadow.el" (21607 54477 | 24397 | ;;;### (autoloads nil "shadow" "emacs-lisp/shadow.el" (21604 48550 |
| 24326 | ;;;;;; 800124 118000)) | 24398 | ;;;;;; 25934 215000)) |
| 24327 | ;;; Generated autoloads from emacs-lisp/shadow.el | 24399 | ;;; Generated autoloads from emacs-lisp/shadow.el |
| 24328 | 24400 | ||
| 24329 | (autoload 'list-load-path-shadows "shadow" "\ | 24401 | (autoload 'list-load-path-shadows "shadow" "\ |
| @@ -24372,8 +24444,8 @@ function, `load-path-shadows-find'. | |||
| 24372 | 24444 | ||
| 24373 | ;;;*** | 24445 | ;;;*** |
| 24374 | 24446 | ||
| 24375 | ;;;### (autoloads nil "shadowfile" "shadowfile.el" (21607 54478 800121 | 24447 | ;;;### (autoloads nil "shadowfile" "shadowfile.el" (21604 48550 377934 |
| 24376 | ;;;;;; 42000)) | 24448 | ;;;;;; 228000)) |
| 24377 | ;;; Generated autoloads from shadowfile.el | 24449 | ;;; Generated autoloads from shadowfile.el |
| 24378 | 24450 | ||
| 24379 | (autoload 'shadow-define-cluster "shadowfile" "\ | 24451 | (autoload 'shadow-define-cluster "shadowfile" "\ |
| @@ -24411,7 +24483,7 @@ Set up file shadowing. | |||
| 24411 | 24483 | ||
| 24412 | ;;;*** | 24484 | ;;;*** |
| 24413 | 24485 | ||
| 24414 | ;;;### (autoloads nil "shell" "shell.el" (21607 54478 800121 42000)) | 24486 | ;;;### (autoloads nil "shell" "shell.el" (21659 61733 222949 164000)) |
| 24415 | ;;; Generated autoloads from shell.el | 24487 | ;;; Generated autoloads from shell.el |
| 24416 | 24488 | ||
| 24417 | (defvar shell-dumb-shell-regexp (purecopy "cmd\\(proxy\\)?\\.exe") "\ | 24489 | (defvar shell-dumb-shell-regexp (purecopy "cmd\\(proxy\\)?\\.exe") "\ |
| @@ -24459,7 +24531,7 @@ Otherwise, one argument `-i' is passed to the shell. | |||
| 24459 | 24531 | ||
| 24460 | ;;;*** | 24532 | ;;;*** |
| 24461 | 24533 | ||
| 24462 | ;;;### (autoloads nil "shr" "net/shr.el" (21623 2108 292281 129000)) | 24534 | ;;;### (autoloads nil "shr" "net/shr.el" (21646 54881 267721 623000)) |
| 24463 | ;;; Generated autoloads from net/shr.el | 24535 | ;;; Generated autoloads from net/shr.el |
| 24464 | 24536 | ||
| 24465 | (autoload 'shr-render-region "shr" "\ | 24537 | (autoload 'shr-render-region "shr" "\ |
| @@ -24476,8 +24548,8 @@ DOM should be a parse tree as generated by | |||
| 24476 | 24548 | ||
| 24477 | ;;;*** | 24549 | ;;;*** |
| 24478 | 24550 | ||
| 24479 | ;;;### (autoloads nil "sieve" "gnus/sieve.el" (21607 54478 300138 | 24551 | ;;;### (autoloads nil "sieve" "gnus/sieve.el" (21604 48550 121934 |
| 24480 | ;;;;;; 641000)) | 24552 | ;;;;;; 218000)) |
| 24481 | ;;; Generated autoloads from gnus/sieve.el | 24553 | ;;; Generated autoloads from gnus/sieve.el |
| 24482 | 24554 | ||
| 24483 | (autoload 'sieve-manage "sieve" "\ | 24555 | (autoload 'sieve-manage "sieve" "\ |
| @@ -24502,8 +24574,8 @@ DOM should be a parse tree as generated by | |||
| 24502 | 24574 | ||
| 24503 | ;;;*** | 24575 | ;;;*** |
| 24504 | 24576 | ||
| 24505 | ;;;### (autoloads nil "sieve-mode" "gnus/sieve-mode.el" (21607 54478 | 24577 | ;;;### (autoloads nil "sieve-mode" "gnus/sieve-mode.el" (21604 48550 |
| 24506 | ;;;;;; 300138 641000)) | 24578 | ;;;;;; 121934 218000)) |
| 24507 | ;;; Generated autoloads from gnus/sieve-mode.el | 24579 | ;;; Generated autoloads from gnus/sieve-mode.el |
| 24508 | 24580 | ||
| 24509 | (autoload 'sieve-mode "sieve-mode" "\ | 24581 | (autoload 'sieve-mode "sieve-mode" "\ |
| @@ -24518,8 +24590,8 @@ Turning on Sieve mode runs `sieve-mode-hook'. | |||
| 24518 | 24590 | ||
| 24519 | ;;;*** | 24591 | ;;;*** |
| 24520 | 24592 | ||
| 24521 | ;;;### (autoloads nil "simula" "progmodes/simula.el" (21607 54478 | 24593 | ;;;### (autoloads nil "simula" "progmodes/simula.el" (21604 48550 |
| 24522 | ;;;;;; 800121 42000)) | 24594 | ;;;;;; 357934 227000)) |
| 24523 | ;;; Generated autoloads from progmodes/simula.el | 24595 | ;;; Generated autoloads from progmodes/simula.el |
| 24524 | 24596 | ||
| 24525 | (autoload 'simula-mode "simula" "\ | 24597 | (autoload 'simula-mode "simula" "\ |
| @@ -24567,8 +24639,8 @@ with no arguments, if that value is non-nil. | |||
| 24567 | 24639 | ||
| 24568 | ;;;*** | 24640 | ;;;*** |
| 24569 | 24641 | ||
| 24570 | ;;;### (autoloads nil "skeleton" "skeleton.el" (21607 54478 800121 | 24642 | ;;;### (autoloads nil "skeleton" "skeleton.el" (21604 48550 377934 |
| 24571 | ;;;;;; 42000)) | 24643 | ;;;;;; 228000)) |
| 24572 | ;;; Generated autoloads from skeleton.el | 24644 | ;;; Generated autoloads from skeleton.el |
| 24573 | 24645 | ||
| 24574 | (defvar skeleton-filter-function 'identity "\ | 24646 | (defvar skeleton-filter-function 'identity "\ |
| @@ -24686,8 +24758,8 @@ symmetrical ones, and the same character twice for the others. | |||
| 24686 | 24758 | ||
| 24687 | ;;;*** | 24759 | ;;;*** |
| 24688 | 24760 | ||
| 24689 | ;;;### (autoloads nil "smerge-mode" "vc/smerge-mode.el" (21628 45530 | 24761 | ;;;### (autoloads nil "smerge-mode" "vc/smerge-mode.el" (21631 35966 |
| 24690 | ;;;;;; 160140 360000)) | 24762 | ;;;;;; 923121 870000)) |
| 24691 | ;;; Generated autoloads from vc/smerge-mode.el | 24763 | ;;; Generated autoloads from vc/smerge-mode.el |
| 24692 | 24764 | ||
| 24693 | (autoload 'smerge-ediff "smerge-mode" "\ | 24765 | (autoload 'smerge-ediff "smerge-mode" "\ |
| @@ -24714,8 +24786,8 @@ If no conflict maker is found, turn off `smerge-mode'. | |||
| 24714 | 24786 | ||
| 24715 | ;;;*** | 24787 | ;;;*** |
| 24716 | 24788 | ||
| 24717 | ;;;### (autoloads nil "smiley" "gnus/smiley.el" (21607 54478 300138 | 24789 | ;;;### (autoloads nil "smiley" "gnus/smiley.el" (21604 48550 121934 |
| 24718 | ;;;;;; 641000)) | 24790 | ;;;;;; 218000)) |
| 24719 | ;;; Generated autoloads from gnus/smiley.el | 24791 | ;;; Generated autoloads from gnus/smiley.el |
| 24720 | 24792 | ||
| 24721 | (autoload 'smiley-region "smiley" "\ | 24793 | (autoload 'smiley-region "smiley" "\ |
| @@ -24732,8 +24804,8 @@ interactively. If there's no argument, do it at the current buffer. | |||
| 24732 | 24804 | ||
| 24733 | ;;;*** | 24805 | ;;;*** |
| 24734 | 24806 | ||
| 24735 | ;;;### (autoloads nil "smtpmail" "mail/smtpmail.el" (21619 5051 260148 | 24807 | ;;;### (autoloads nil "smtpmail" "mail/smtpmail.el" (21631 35966 |
| 24736 | ;;;;;; 536000)) | 24808 | ;;;;;; 875121 868000)) |
| 24737 | ;;; Generated autoloads from mail/smtpmail.el | 24809 | ;;; Generated autoloads from mail/smtpmail.el |
| 24738 | 24810 | ||
| 24739 | (autoload 'smtpmail-send-it "smtpmail" "\ | 24811 | (autoload 'smtpmail-send-it "smtpmail" "\ |
| @@ -24748,8 +24820,8 @@ Send mail that was queued as a result of setting `smtpmail-queue-mail'. | |||
| 24748 | 24820 | ||
| 24749 | ;;;*** | 24821 | ;;;*** |
| 24750 | 24822 | ||
| 24751 | ;;;### (autoloads nil "snake" "play/snake.el" (21607 54478 800121 | 24823 | ;;;### (autoloads nil "snake" "play/snake.el" (21604 48550 305934 |
| 24752 | ;;;;;; 42000)) | 24824 | ;;;;;; 225000)) |
| 24753 | ;;; Generated autoloads from play/snake.el | 24825 | ;;; Generated autoloads from play/snake.el |
| 24754 | 24826 | ||
| 24755 | (autoload 'snake "snake" "\ | 24827 | (autoload 'snake "snake" "\ |
| @@ -24772,8 +24844,8 @@ Snake mode keybindings: | |||
| 24772 | 24844 | ||
| 24773 | ;;;*** | 24845 | ;;;*** |
| 24774 | 24846 | ||
| 24775 | ;;;### (autoloads nil "snmp-mode" "net/snmp-mode.el" (21607 54478 | 24847 | ;;;### (autoloads nil "snmp-mode" "net/snmp-mode.el" (21604 48550 |
| 24776 | ;;;;;; 300138 641000)) | 24848 | ;;;;;; 225934 222000)) |
| 24777 | ;;; Generated autoloads from net/snmp-mode.el | 24849 | ;;; Generated autoloads from net/snmp-mode.el |
| 24778 | 24850 | ||
| 24779 | (autoload 'snmp-mode "snmp-mode" "\ | 24851 | (autoload 'snmp-mode "snmp-mode" "\ |
| @@ -24802,8 +24874,8 @@ then `snmpv2-mode-hook'. | |||
| 24802 | 24874 | ||
| 24803 | ;;;*** | 24875 | ;;;*** |
| 24804 | 24876 | ||
| 24805 | ;;;### (autoloads nil "solar" "calendar/solar.el" (21607 54477 800124 | 24877 | ;;;### (autoloads nil "solar" "calendar/solar.el" (21604 48549 953934 |
| 24806 | ;;;;;; 118000)) | 24878 | ;;;;;; 212000)) |
| 24807 | ;;; Generated autoloads from calendar/solar.el | 24879 | ;;; Generated autoloads from calendar/solar.el |
| 24808 | 24880 | ||
| 24809 | (autoload 'sunrise-sunset "solar" "\ | 24881 | (autoload 'sunrise-sunset "solar" "\ |
| @@ -24818,8 +24890,8 @@ This function is suitable for execution in an init file. | |||
| 24818 | 24890 | ||
| 24819 | ;;;*** | 24891 | ;;;*** |
| 24820 | 24892 | ||
| 24821 | ;;;### (autoloads nil "solitaire" "play/solitaire.el" (21607 54478 | 24893 | ;;;### (autoloads nil "solitaire" "play/solitaire.el" (21604 48550 |
| 24822 | ;;;;;; 800121 42000)) | 24894 | ;;;;;; 305934 225000)) |
| 24823 | ;;; Generated autoloads from play/solitaire.el | 24895 | ;;; Generated autoloads from play/solitaire.el |
| 24824 | 24896 | ||
| 24825 | (autoload 'solitaire "solitaire" "\ | 24897 | (autoload 'solitaire "solitaire" "\ |
| @@ -24894,7 +24966,7 @@ Pick your favorite shortcuts: | |||
| 24894 | 24966 | ||
| 24895 | ;;;*** | 24967 | ;;;*** |
| 24896 | 24968 | ||
| 24897 | ;;;### (autoloads nil "sort" "sort.el" (21607 54478 800121 42000)) | 24969 | ;;;### (autoloads nil "sort" "sort.el" (21604 48550 377934 228000)) |
| 24898 | ;;; Generated autoloads from sort.el | 24970 | ;;; Generated autoloads from sort.el |
| 24899 | (put 'sort-fold-case 'safe-local-variable 'booleanp) | 24971 | (put 'sort-fold-case 'safe-local-variable 'booleanp) |
| 24900 | 24972 | ||
| @@ -25069,7 +25141,7 @@ is non-nil, it also prints a message describing the number of deletions. | |||
| 25069 | 25141 | ||
| 25070 | ;;;*** | 25142 | ;;;*** |
| 25071 | 25143 | ||
| 25072 | ;;;### (autoloads nil "spam" "gnus/spam.el" (21607 54478 300138 641000)) | 25144 | ;;;### (autoloads nil "spam" "gnus/spam.el" (21604 48550 121934 218000)) |
| 25073 | ;;; Generated autoloads from gnus/spam.el | 25145 | ;;; Generated autoloads from gnus/spam.el |
| 25074 | 25146 | ||
| 25075 | (autoload 'spam-initialize "spam" "\ | 25147 | (autoload 'spam-initialize "spam" "\ |
| @@ -25083,8 +25155,8 @@ installed through `spam-necessary-extra-headers'. | |||
| 25083 | 25155 | ||
| 25084 | ;;;*** | 25156 | ;;;*** |
| 25085 | 25157 | ||
| 25086 | ;;;### (autoloads nil "spam-report" "gnus/spam-report.el" (21607 | 25158 | ;;;### (autoloads nil "spam-report" "gnus/spam-report.el" (21604 |
| 25087 | ;;;;;; 54478 300138 641000)) | 25159 | ;;;;;; 48550 121934 218000)) |
| 25088 | ;;; Generated autoloads from gnus/spam-report.el | 25160 | ;;; Generated autoloads from gnus/spam-report.el |
| 25089 | 25161 | ||
| 25090 | (autoload 'spam-report-process-queue "spam-report" "\ | 25162 | (autoload 'spam-report-process-queue "spam-report" "\ |
| @@ -25126,8 +25198,8 @@ Spam reports will be queued with the method used when | |||
| 25126 | 25198 | ||
| 25127 | ;;;*** | 25199 | ;;;*** |
| 25128 | 25200 | ||
| 25129 | ;;;### (autoloads nil "speedbar" "speedbar.el" (21607 54478 800121 | 25201 | ;;;### (autoloads nil "speedbar" "speedbar.el" (21604 48550 381934 |
| 25130 | ;;;;;; 42000)) | 25202 | ;;;;;; 228000)) |
| 25131 | ;;; Generated autoloads from speedbar.el | 25203 | ;;; Generated autoloads from speedbar.el |
| 25132 | 25204 | ||
| 25133 | (defalias 'speedbar 'speedbar-frame-mode) | 25205 | (defalias 'speedbar 'speedbar-frame-mode) |
| @@ -25151,8 +25223,8 @@ selected. If the speedbar frame is active, then select the attached frame. | |||
| 25151 | 25223 | ||
| 25152 | ;;;*** | 25224 | ;;;*** |
| 25153 | 25225 | ||
| 25154 | ;;;### (autoloads nil "spook" "play/spook.el" (21607 54478 800121 | 25226 | ;;;### (autoloads nil "spook" "play/spook.el" (21604 48550 305934 |
| 25155 | ;;;;;; 42000)) | 25227 | ;;;;;; 225000)) |
| 25156 | ;;; Generated autoloads from play/spook.el | 25228 | ;;; Generated autoloads from play/spook.el |
| 25157 | 25229 | ||
| 25158 | (autoload 'spook "spook" "\ | 25230 | (autoload 'spook "spook" "\ |
| @@ -25167,8 +25239,8 @@ Return a vector containing the lines from `spook-phrases-file'. | |||
| 25167 | 25239 | ||
| 25168 | ;;;*** | 25240 | ;;;*** |
| 25169 | 25241 | ||
| 25170 | ;;;### (autoloads nil "sql" "progmodes/sql.el" (21607 54478 800121 | 25242 | ;;;### (autoloads nil "sql" "progmodes/sql.el" (21604 48550 357934 |
| 25171 | ;;;;;; 42000)) | 25243 | ;;;;;; 227000)) |
| 25172 | ;;; Generated autoloads from progmodes/sql.el | 25244 | ;;; Generated autoloads from progmodes/sql.el |
| 25173 | (push (purecopy '(sql 3 4)) package--builtin-versions) | 25245 | (push (purecopy '(sql 3 4)) package--builtin-versions) |
| 25174 | 25246 | ||
| @@ -25634,15 +25706,15 @@ Run vsql as an inferior process. | |||
| 25634 | 25706 | ||
| 25635 | ;;;*** | 25707 | ;;;*** |
| 25636 | 25708 | ||
| 25637 | ;;;### (autoloads nil "srecode" "cedet/srecode.el" (21607 54477 800124 | 25709 | ;;;### (autoloads nil "srecode" "cedet/srecode.el" (21604 48549 981934 |
| 25638 | ;;;;;; 118000)) | 25710 | ;;;;;; 213000)) |
| 25639 | ;;; Generated autoloads from cedet/srecode.el | 25711 | ;;; Generated autoloads from cedet/srecode.el |
| 25640 | (push (purecopy '(srecode 1 2)) package--builtin-versions) | 25712 | (push (purecopy '(srecode 1 2)) package--builtin-versions) |
| 25641 | 25713 | ||
| 25642 | ;;;*** | 25714 | ;;;*** |
| 25643 | 25715 | ||
| 25644 | ;;;### (autoloads nil "srecode/srt-mode" "cedet/srecode/srt-mode.el" | 25716 | ;;;### (autoloads nil "srecode/srt-mode" "cedet/srecode/srt-mode.el" |
| 25645 | ;;;;;; (21607 54477 800124 118000)) | 25717 | ;;;;;; (21659 61733 202949 164000)) |
| 25646 | ;;; Generated autoloads from cedet/srecode/srt-mode.el | 25718 | ;;; Generated autoloads from cedet/srecode/srt-mode.el |
| 25647 | 25719 | ||
| 25648 | (autoload 'srecode-template-mode "srecode/srt-mode" "\ | 25720 | (autoload 'srecode-template-mode "srecode/srt-mode" "\ |
| @@ -25654,8 +25726,8 @@ Major-mode for writing SRecode macros. | |||
| 25654 | 25726 | ||
| 25655 | ;;;*** | 25727 | ;;;*** |
| 25656 | 25728 | ||
| 25657 | ;;;### (autoloads nil "starttls" "gnus/starttls.el" (21607 54478 | 25729 | ;;;### (autoloads nil "starttls" "gnus/starttls.el" (21604 48550 |
| 25658 | ;;;;;; 300138 641000)) | 25730 | ;;;;;; 121934 218000)) |
| 25659 | ;;; Generated autoloads from gnus/starttls.el | 25731 | ;;; Generated autoloads from gnus/starttls.el |
| 25660 | 25732 | ||
| 25661 | (autoload 'starttls-open-stream "starttls" "\ | 25733 | (autoload 'starttls-open-stream "starttls" "\ |
| @@ -25678,8 +25750,8 @@ GnuTLS requires a port number. | |||
| 25678 | 25750 | ||
| 25679 | ;;;*** | 25751 | ;;;*** |
| 25680 | 25752 | ||
| 25681 | ;;;### (autoloads nil "strokes" "strokes.el" (21607 54478 800121 | 25753 | ;;;### (autoloads nil "strokes" "strokes.el" (21604 48550 381934 |
| 25682 | ;;;;;; 42000)) | 25754 | ;;;;;; 228000)) |
| 25683 | ;;; Generated autoloads from strokes.el | 25755 | ;;; Generated autoloads from strokes.el |
| 25684 | 25756 | ||
| 25685 | (autoload 'strokes-global-set-stroke "strokes" "\ | 25757 | (autoload 'strokes-global-set-stroke "strokes" "\ |
| @@ -25792,8 +25864,8 @@ Read a complex stroke and insert its glyph into the current buffer. | |||
| 25792 | 25864 | ||
| 25793 | ;;;*** | 25865 | ;;;*** |
| 25794 | 25866 | ||
| 25795 | ;;;### (autoloads nil "studly" "play/studly.el" (21607 54478 800121 | 25867 | ;;;### (autoloads nil "studly" "play/studly.el" (21604 48550 305934 |
| 25796 | ;;;;;; 42000)) | 25868 | ;;;;;; 225000)) |
| 25797 | ;;; Generated autoloads from play/studly.el | 25869 | ;;; Generated autoloads from play/studly.el |
| 25798 | 25870 | ||
| 25799 | (autoload 'studlify-region "studly" "\ | 25871 | (autoload 'studlify-region "studly" "\ |
| @@ -25813,8 +25885,8 @@ Studlify-case the current buffer. | |||
| 25813 | 25885 | ||
| 25814 | ;;;*** | 25886 | ;;;*** |
| 25815 | 25887 | ||
| 25816 | ;;;### (autoloads nil "subword" "progmodes/subword.el" (21607 54478 | 25888 | ;;;### (autoloads nil "subword" "progmodes/subword.el" (21604 48550 |
| 25817 | ;;;;;; 800121 42000)) | 25889 | ;;;;;; 357934 227000)) |
| 25818 | ;;; Generated autoloads from progmodes/subword.el | 25890 | ;;; Generated autoloads from progmodes/subword.el |
| 25819 | 25891 | ||
| 25820 | (define-obsolete-function-alias 'capitalized-words-mode 'subword-mode "25.1") | 25892 | (define-obsolete-function-alias 'capitalized-words-mode 'subword-mode "25.1") |
| @@ -25906,8 +25978,8 @@ See `superword-mode' for more information on Superword mode. | |||
| 25906 | 25978 | ||
| 25907 | ;;;*** | 25979 | ;;;*** |
| 25908 | 25980 | ||
| 25909 | ;;;### (autoloads nil "supercite" "mail/supercite.el" (21607 54478 | 25981 | ;;;### (autoloads nil "supercite" "mail/supercite.el" (21604 48550 |
| 25910 | ;;;;;; 300138 641000)) | 25982 | ;;;;;; 189934 221000)) |
| 25911 | ;;; Generated autoloads from mail/supercite.el | 25983 | ;;; Generated autoloads from mail/supercite.el |
| 25912 | 25984 | ||
| 25913 | (autoload 'sc-cite-original "supercite" "\ | 25985 | (autoload 'sc-cite-original "supercite" "\ |
| @@ -25939,8 +26011,8 @@ and `sc-post-hook' is run after the guts of this function. | |||
| 25939 | 26011 | ||
| 25940 | ;;;*** | 26012 | ;;;*** |
| 25941 | 26013 | ||
| 25942 | ;;;### (autoloads nil "t-mouse" "t-mouse.el" (21607 54478 800121 | 26014 | ;;;### (autoloads nil "t-mouse" "t-mouse.el" (21604 48550 385934 |
| 25943 | ;;;;;; 42000)) | 26015 | ;;;;;; 228000)) |
| 25944 | ;;; Generated autoloads from t-mouse.el | 26016 | ;;; Generated autoloads from t-mouse.el |
| 25945 | 26017 | ||
| 25946 | (define-obsolete-function-alias 't-mouse-mode 'gpm-mouse-mode "23.1") | 26018 | (define-obsolete-function-alias 't-mouse-mode 'gpm-mouse-mode "23.1") |
| @@ -25968,7 +26040,7 @@ It relies on the `gpm' daemon being activated. | |||
| 25968 | 26040 | ||
| 25969 | ;;;*** | 26041 | ;;;*** |
| 25970 | 26042 | ||
| 25971 | ;;;### (autoloads nil "tabify" "tabify.el" (21607 54478 800121 42000)) | 26043 | ;;;### (autoloads nil "tabify" "tabify.el" (21604 48550 385934 228000)) |
| 25972 | ;;; Generated autoloads from tabify.el | 26044 | ;;; Generated autoloads from tabify.el |
| 25973 | 26045 | ||
| 25974 | (autoload 'untabify "tabify" "\ | 26046 | (autoload 'untabify "tabify" "\ |
| @@ -25997,8 +26069,8 @@ The variable `tab-width' controls the spacing of tab stops. | |||
| 25997 | 26069 | ||
| 25998 | ;;;*** | 26070 | ;;;*** |
| 25999 | 26071 | ||
| 26000 | ;;;### (autoloads nil "table" "textmodes/table.el" (21607 54478 800121 | 26072 | ;;;### (autoloads nil "table" "textmodes/table.el" (21604 48550 409934 |
| 26001 | ;;;;;; 42000)) | 26073 | ;;;;;; 229000)) |
| 26002 | ;;; Generated autoloads from textmodes/table.el | 26074 | ;;; Generated autoloads from textmodes/table.el |
| 26003 | 26075 | ||
| 26004 | (defvar table-cell-map-hook nil "\ | 26076 | (defvar table-cell-map-hook nil "\ |
| @@ -26590,7 +26662,7 @@ converts a table into plain text without frames. It is a companion to | |||
| 26590 | 26662 | ||
| 26591 | ;;;*** | 26663 | ;;;*** |
| 26592 | 26664 | ||
| 26593 | ;;;### (autoloads nil "talk" "talk.el" (21607 54478 800121 42000)) | 26665 | ;;;### (autoloads nil "talk" "talk.el" (21604 48550 385934 228000)) |
| 26594 | ;;; Generated autoloads from talk.el | 26666 | ;;; Generated autoloads from talk.el |
| 26595 | 26667 | ||
| 26596 | (autoload 'talk-connect "talk" "\ | 26668 | (autoload 'talk-connect "talk" "\ |
| @@ -26605,8 +26677,8 @@ Connect to the Emacs talk group from the current X display or tty frame. | |||
| 26605 | 26677 | ||
| 26606 | ;;;*** | 26678 | ;;;*** |
| 26607 | 26679 | ||
| 26608 | ;;;### (autoloads nil "tar-mode" "tar-mode.el" (21607 54478 800121 | 26680 | ;;;### (autoloads nil "tar-mode" "tar-mode.el" (21604 48550 385934 |
| 26609 | ;;;;;; 42000)) | 26681 | ;;;;;; 228000)) |
| 26610 | ;;; Generated autoloads from tar-mode.el | 26682 | ;;; Generated autoloads from tar-mode.el |
| 26611 | 26683 | ||
| 26612 | (autoload 'tar-mode "tar-mode" "\ | 26684 | (autoload 'tar-mode "tar-mode" "\ |
| @@ -26629,8 +26701,8 @@ See also: variables `tar-update-datestamp' and `tar-anal-blocksize'. | |||
| 26629 | 26701 | ||
| 26630 | ;;;*** | 26702 | ;;;*** |
| 26631 | 26703 | ||
| 26632 | ;;;### (autoloads nil "tcl" "progmodes/tcl.el" (21607 54478 800121 | 26704 | ;;;### (autoloads nil "tcl" "progmodes/tcl.el" (21604 48550 357934 |
| 26633 | ;;;;;; 42000)) | 26705 | ;;;;;; 227000)) |
| 26634 | ;;; Generated autoloads from progmodes/tcl.el | 26706 | ;;; Generated autoloads from progmodes/tcl.el |
| 26635 | 26707 | ||
| 26636 | (autoload 'tcl-mode "tcl" "\ | 26708 | (autoload 'tcl-mode "tcl" "\ |
| @@ -26678,8 +26750,8 @@ Prefix argument means invert sense of `tcl-use-smart-word-finder'. | |||
| 26678 | 26750 | ||
| 26679 | ;;;*** | 26751 | ;;;*** |
| 26680 | 26752 | ||
| 26681 | ;;;### (autoloads nil "telnet" "net/telnet.el" (21607 54478 300138 | 26753 | ;;;### (autoloads nil "telnet" "net/telnet.el" (21604 48550 225934 |
| 26682 | ;;;;;; 641000)) | 26754 | ;;;;;; 222000)) |
| 26683 | ;;; Generated autoloads from net/telnet.el | 26755 | ;;; Generated autoloads from net/telnet.el |
| 26684 | 26756 | ||
| 26685 | (autoload 'telnet "telnet" "\ | 26757 | (autoload 'telnet "telnet" "\ |
| @@ -26704,7 +26776,7 @@ Normally input is edited in Emacs and sent a line at a time. | |||
| 26704 | 26776 | ||
| 26705 | ;;;*** | 26777 | ;;;*** |
| 26706 | 26778 | ||
| 26707 | ;;;### (autoloads nil "term" "term.el" (21607 54478 800121 42000)) | 26779 | ;;;### (autoloads nil "term" "term.el" (21604 48550 385934 228000)) |
| 26708 | ;;; Generated autoloads from term.el | 26780 | ;;; Generated autoloads from term.el |
| 26709 | 26781 | ||
| 26710 | (autoload 'make-term "term" "\ | 26782 | (autoload 'make-term "term" "\ |
| @@ -26746,8 +26818,8 @@ use in that buffer. | |||
| 26746 | 26818 | ||
| 26747 | ;;;*** | 26819 | ;;;*** |
| 26748 | 26820 | ||
| 26749 | ;;;### (autoloads nil "testcover" "emacs-lisp/testcover.el" (21607 | 26821 | ;;;### (autoloads nil "testcover" "emacs-lisp/testcover.el" (21604 |
| 26750 | ;;;;;; 54477 800124 118000)) | 26822 | ;;;;;; 48550 25934 215000)) |
| 26751 | ;;; Generated autoloads from emacs-lisp/testcover.el | 26823 | ;;; Generated autoloads from emacs-lisp/testcover.el |
| 26752 | 26824 | ||
| 26753 | (autoload 'testcover-this-defun "testcover" "\ | 26825 | (autoload 'testcover-this-defun "testcover" "\ |
| @@ -26757,8 +26829,8 @@ Start coverage on function under point. | |||
| 26757 | 26829 | ||
| 26758 | ;;;*** | 26830 | ;;;*** |
| 26759 | 26831 | ||
| 26760 | ;;;### (autoloads nil "tetris" "play/tetris.el" (21607 54478 800121 | 26832 | ;;;### (autoloads nil "tetris" "play/tetris.el" (21604 48550 305934 |
| 26761 | ;;;;;; 42000)) | 26833 | ;;;;;; 225000)) |
| 26762 | ;;; Generated autoloads from play/tetris.el | 26834 | ;;; Generated autoloads from play/tetris.el |
| 26763 | (push (purecopy '(tetris 2 1)) package--builtin-versions) | 26835 | (push (purecopy '(tetris 2 1)) package--builtin-versions) |
| 26764 | 26836 | ||
| @@ -26783,8 +26855,8 @@ tetris-mode keybindings: | |||
| 26783 | 26855 | ||
| 26784 | ;;;*** | 26856 | ;;;*** |
| 26785 | 26857 | ||
| 26786 | ;;;### (autoloads nil "tex-mode" "textmodes/tex-mode.el" (21611 10938 | 26858 | ;;;### (autoloads nil "tex-mode" "textmodes/tex-mode.el" (21647 39327 |
| 26787 | ;;;;;; 204397 226000)) | 26859 | ;;;;;; 896553 751000)) |
| 26788 | ;;; Generated autoloads from textmodes/tex-mode.el | 26860 | ;;; Generated autoloads from textmodes/tex-mode.el |
| 26789 | 26861 | ||
| 26790 | (defvar tex-shell-file-name nil "\ | 26862 | (defvar tex-shell-file-name nil "\ |
| @@ -27085,8 +27157,8 @@ Major mode to edit DocTeX files. | |||
| 27085 | 27157 | ||
| 27086 | ;;;*** | 27158 | ;;;*** |
| 27087 | 27159 | ||
| 27088 | ;;;### (autoloads nil "texinfmt" "textmodes/texinfmt.el" (21607 54478 | 27160 | ;;;### (autoloads nil "texinfmt" "textmodes/texinfmt.el" (21604 48550 |
| 27089 | ;;;;;; 800121 42000)) | 27161 | ;;;;;; 409934 229000)) |
| 27090 | ;;; Generated autoloads from textmodes/texinfmt.el | 27162 | ;;; Generated autoloads from textmodes/texinfmt.el |
| 27091 | 27163 | ||
| 27092 | (autoload 'texinfo-format-buffer "texinfmt" "\ | 27164 | (autoload 'texinfo-format-buffer "texinfmt" "\ |
| @@ -27125,8 +27197,8 @@ if large. You can use `Info-split' to do this manually. | |||
| 27125 | 27197 | ||
| 27126 | ;;;*** | 27198 | ;;;*** |
| 27127 | 27199 | ||
| 27128 | ;;;### (autoloads nil "texinfo" "textmodes/texinfo.el" (21607 54478 | 27200 | ;;;### (autoloads nil "texinfo" "textmodes/texinfo.el" (21604 48550 |
| 27129 | ;;;;;; 800121 42000)) | 27201 | ;;;;;; 409934 229000)) |
| 27130 | ;;; Generated autoloads from textmodes/texinfo.el | 27202 | ;;; Generated autoloads from textmodes/texinfo.el |
| 27131 | 27203 | ||
| 27132 | (defvar texinfo-open-quote (purecopy "``") "\ | 27204 | (defvar texinfo-open-quote (purecopy "``") "\ |
| @@ -27210,8 +27282,8 @@ value of `texinfo-mode-hook'. | |||
| 27210 | 27282 | ||
| 27211 | ;;;*** | 27283 | ;;;*** |
| 27212 | 27284 | ||
| 27213 | ;;;### (autoloads nil "thai-util" "language/thai-util.el" (21607 | 27285 | ;;;### (autoloads nil "thai-util" "language/thai-util.el" (21604 |
| 27214 | ;;;;;; 54478 300138 641000)) | 27286 | ;;;;;; 48550 153934 219000)) |
| 27215 | ;;; Generated autoloads from language/thai-util.el | 27287 | ;;; Generated autoloads from language/thai-util.el |
| 27216 | 27288 | ||
| 27217 | (autoload 'thai-compose-region "thai-util" "\ | 27289 | (autoload 'thai-compose-region "thai-util" "\ |
| @@ -27238,8 +27310,8 @@ Compose Thai characters in the current buffer. | |||
| 27238 | 27310 | ||
| 27239 | ;;;*** | 27311 | ;;;*** |
| 27240 | 27312 | ||
| 27241 | ;;;### (autoloads nil "thingatpt" "thingatpt.el" (21607 54478 800121 | 27313 | ;;;### (autoloads nil "thingatpt" "thingatpt.el" (21604 48550 413934 |
| 27242 | ;;;;;; 42000)) | 27314 | ;;;;;; 229000)) |
| 27243 | ;;; Generated autoloads from thingatpt.el | 27315 | ;;; Generated autoloads from thingatpt.el |
| 27244 | 27316 | ||
| 27245 | (autoload 'forward-thing "thingatpt" "\ | 27317 | (autoload 'forward-thing "thingatpt" "\ |
| @@ -27303,7 +27375,7 @@ Return the Lisp list at point, or nil if none is found. | |||
| 27303 | 27375 | ||
| 27304 | ;;;*** | 27376 | ;;;*** |
| 27305 | 27377 | ||
| 27306 | ;;;### (autoloads nil "thumbs" "thumbs.el" (21607 54478 800121 42000)) | 27378 | ;;;### (autoloads nil "thumbs" "thumbs.el" (21604 48550 413934 229000)) |
| 27307 | ;;; Generated autoloads from thumbs.el | 27379 | ;;; Generated autoloads from thumbs.el |
| 27308 | 27380 | ||
| 27309 | (autoload 'thumbs-find-thumb "thumbs" "\ | 27381 | (autoload 'thumbs-find-thumb "thumbs" "\ |
| @@ -27337,8 +27409,8 @@ In dired, call the setroot program on the image at point. | |||
| 27337 | 27409 | ||
| 27338 | ;;;*** | 27410 | ;;;*** |
| 27339 | 27411 | ||
| 27340 | ;;;### (autoloads nil "tibet-util" "language/tibet-util.el" (21607 | 27412 | ;;;### (autoloads nil "tibet-util" "language/tibet-util.el" (21604 |
| 27341 | ;;;;;; 54478 300138 641000)) | 27413 | ;;;;;; 48550 157934 220000)) |
| 27342 | ;;; Generated autoloads from language/tibet-util.el | 27414 | ;;; Generated autoloads from language/tibet-util.el |
| 27343 | 27415 | ||
| 27344 | (autoload 'tibetan-char-p "tibet-util" "\ | 27416 | (autoload 'tibetan-char-p "tibet-util" "\ |
| @@ -27411,8 +27483,8 @@ See also docstring of the function tibetan-compose-region. | |||
| 27411 | 27483 | ||
| 27412 | ;;;*** | 27484 | ;;;*** |
| 27413 | 27485 | ||
| 27414 | ;;;### (autoloads nil "tildify" "textmodes/tildify.el" (21611 10938 | 27486 | ;;;### (autoloads nil "tildify" "textmodes/tildify.el" (21631 35966 |
| 27415 | ;;;;;; 204397 226000)) | 27487 | ;;;;;; 919121 870000)) |
| 27416 | ;;; Generated autoloads from textmodes/tildify.el | 27488 | ;;; Generated autoloads from textmodes/tildify.el |
| 27417 | (push (purecopy '(tildify 4 5 7)) package--builtin-versions) | 27489 | (push (purecopy '(tildify 4 5 7)) package--builtin-versions) |
| 27418 | 27490 | ||
| @@ -27440,7 +27512,7 @@ won't be prompted for confirmation of each substitution. | |||
| 27440 | 27512 | ||
| 27441 | ;;;*** | 27513 | ;;;*** |
| 27442 | 27514 | ||
| 27443 | ;;;### (autoloads nil "time" "time.el" (21607 54478 800121 42000)) | 27515 | ;;;### (autoloads nil "time" "time.el" (21604 48550 413934 229000)) |
| 27444 | ;;; Generated autoloads from time.el | 27516 | ;;; Generated autoloads from time.el |
| 27445 | 27517 | ||
| 27446 | (defvar display-time-day-and-date nil "\ | 27518 | (defvar display-time-day-and-date nil "\ |
| @@ -27502,8 +27574,8 @@ Return a string giving the duration of the Emacs initialization. | |||
| 27502 | 27574 | ||
| 27503 | ;;;*** | 27575 | ;;;*** |
| 27504 | 27576 | ||
| 27505 | ;;;### (autoloads nil "time-date" "calendar/time-date.el" (21611 | 27577 | ;;;### (autoloads nil "time-date" "calendar/time-date.el" (21631 |
| 27506 | ;;;;;; 10937 700236 3000)) | 27578 | ;;;;;; 35966 803121 866000)) |
| 27507 | ;;; Generated autoloads from calendar/time-date.el | 27579 | ;;; Generated autoloads from calendar/time-date.el |
| 27508 | 27580 | ||
| 27509 | (autoload 'date-to-time "time-date" "\ | 27581 | (autoload 'date-to-time "time-date" "\ |
| @@ -27606,8 +27678,8 @@ Convert the time interval in seconds to a short string. | |||
| 27606 | 27678 | ||
| 27607 | ;;;*** | 27679 | ;;;*** |
| 27608 | 27680 | ||
| 27609 | ;;;### (autoloads nil "time-stamp" "time-stamp.el" (21607 54478 800121 | 27681 | ;;;### (autoloads nil "time-stamp" "time-stamp.el" (21604 48550 413934 |
| 27610 | ;;;;;; 42000)) | 27682 | ;;;;;; 229000)) |
| 27611 | ;;; Generated autoloads from time-stamp.el | 27683 | ;;; Generated autoloads from time-stamp.el |
| 27612 | (put 'time-stamp-format 'safe-local-variable 'stringp) | 27684 | (put 'time-stamp-format 'safe-local-variable 'stringp) |
| 27613 | (put 'time-stamp-time-zone 'safe-local-variable 'string-or-null-p) | 27685 | (put 'time-stamp-time-zone 'safe-local-variable 'string-or-null-p) |
| @@ -27647,8 +27719,8 @@ With ARG, turn time stamping on if and only if arg is positive. | |||
| 27647 | 27719 | ||
| 27648 | ;;;*** | 27720 | ;;;*** |
| 27649 | 27721 | ||
| 27650 | ;;;### (autoloads nil "timeclock" "calendar/timeclock.el" (21607 | 27722 | ;;;### (autoloads nil "timeclock" "calendar/timeclock.el" (21604 |
| 27651 | ;;;;;; 54477 800124 118000)) | 27723 | ;;;;;; 48549 957934 212000)) |
| 27652 | ;;; Generated autoloads from calendar/timeclock.el | 27724 | ;;; Generated autoloads from calendar/timeclock.el |
| 27653 | (push (purecopy '(timeclock 2 6 1)) package--builtin-versions) | 27725 | (push (purecopy '(timeclock 2 6 1)) package--builtin-versions) |
| 27654 | 27726 | ||
| @@ -27758,7 +27830,7 @@ relative only to the time worked today, and not to past time. | |||
| 27758 | ;;;*** | 27830 | ;;;*** |
| 27759 | 27831 | ||
| 27760 | ;;;### (autoloads nil "titdic-cnv" "international/titdic-cnv.el" | 27832 | ;;;### (autoloads nil "titdic-cnv" "international/titdic-cnv.el" |
| 27761 | ;;;;;; (21607 54478 300138 641000)) | 27833 | ;;;;;; (21604 48550 141934 219000)) |
| 27762 | ;;; Generated autoloads from international/titdic-cnv.el | 27834 | ;;; Generated autoloads from international/titdic-cnv.el |
| 27763 | 27835 | ||
| 27764 | (autoload 'titdic-convert "titdic-cnv" "\ | 27836 | (autoload 'titdic-convert "titdic-cnv" "\ |
| @@ -27780,7 +27852,7 @@ To get complete usage, invoke \"emacs -batch -f batch-titdic-convert -h\". | |||
| 27780 | 27852 | ||
| 27781 | ;;;*** | 27853 | ;;;*** |
| 27782 | 27854 | ||
| 27783 | ;;;### (autoloads nil "tmm" "tmm.el" (21607 54478 800121 42000)) | 27855 | ;;;### (autoloads nil "tmm" "tmm.el" (21651 20707 188225 752000)) |
| 27784 | ;;; Generated autoloads from tmm.el | 27856 | ;;; Generated autoloads from tmm.el |
| 27785 | (define-key global-map "\M-`" 'tmm-menubar) | 27857 | (define-key global-map "\M-`" 'tmm-menubar) |
| 27786 | (define-key global-map [menu-bar mouse-1] 'tmm-menubar-mouse) | 27858 | (define-key global-map [menu-bar mouse-1] 'tmm-menubar-mouse) |
| @@ -27822,8 +27894,8 @@ Its value should be an event that has a binding in MENU. | |||
| 27822 | 27894 | ||
| 27823 | ;;;*** | 27895 | ;;;*** |
| 27824 | 27896 | ||
| 27825 | ;;;### (autoloads nil "todo-mode" "calendar/todo-mode.el" (21625 | 27897 | ;;;### (autoloads nil "todo-mode" "calendar/todo-mode.el" (21631 |
| 27826 | ;;;;;; 43838 483701 627000)) | 27898 | ;;;;;; 35966 807121 866000)) |
| 27827 | ;;; Generated autoloads from calendar/todo-mode.el | 27899 | ;;; Generated autoloads from calendar/todo-mode.el |
| 27828 | 27900 | ||
| 27829 | (autoload 'todo-show "todo-mode" "\ | 27901 | (autoload 'todo-show "todo-mode" "\ |
| @@ -27890,8 +27962,8 @@ Mode for displaying and reprioritizing top priority Todo. | |||
| 27890 | 27962 | ||
| 27891 | ;;;*** | 27963 | ;;;*** |
| 27892 | 27964 | ||
| 27893 | ;;;### (autoloads nil "tool-bar" "tool-bar.el" (21607 54478 800121 | 27965 | ;;;### (autoloads nil "tool-bar" "tool-bar.el" (21604 48550 413934 |
| 27894 | ;;;;;; 42000)) | 27966 | ;;;;;; 229000)) |
| 27895 | ;;; Generated autoloads from tool-bar.el | 27967 | ;;; Generated autoloads from tool-bar.el |
| 27896 | 27968 | ||
| 27897 | (autoload 'toggle-tool-bar-mode-from-frame "tool-bar" "\ | 27969 | (autoload 'toggle-tool-bar-mode-from-frame "tool-bar" "\ |
| @@ -27961,8 +28033,8 @@ holds a keymap. | |||
| 27961 | 28033 | ||
| 27962 | ;;;*** | 28034 | ;;;*** |
| 27963 | 28035 | ||
| 27964 | ;;;### (autoloads nil "tq" "emacs-lisp/tq.el" (21607 54477 800124 | 28036 | ;;;### (autoloads nil "tq" "emacs-lisp/tq.el" (21604 48550 25934 |
| 27965 | ;;;;;; 118000)) | 28037 | ;;;;;; 215000)) |
| 27966 | ;;; Generated autoloads from emacs-lisp/tq.el | 28038 | ;;; Generated autoloads from emacs-lisp/tq.el |
| 27967 | 28039 | ||
| 27968 | (autoload 'tq-create "tq" "\ | 28040 | (autoload 'tq-create "tq" "\ |
| @@ -27975,8 +28047,8 @@ to a tcp server on another machine. | |||
| 27975 | 28047 | ||
| 27976 | ;;;*** | 28048 | ;;;*** |
| 27977 | 28049 | ||
| 27978 | ;;;### (autoloads nil "trace" "emacs-lisp/trace.el" (21607 54477 | 28050 | ;;;### (autoloads nil "trace" "emacs-lisp/trace.el" (21604 48550 |
| 27979 | ;;;;;; 800124 118000)) | 28051 | ;;;;;; 25934 215000)) |
| 27980 | ;;; Generated autoloads from emacs-lisp/trace.el | 28052 | ;;; Generated autoloads from emacs-lisp/trace.el |
| 27981 | 28053 | ||
| 27982 | (defvar trace-buffer "*trace-output*" "\ | 28054 | (defvar trace-buffer "*trace-output*" "\ |
| @@ -28021,8 +28093,8 @@ the output buffer or changing the window configuration. | |||
| 28021 | 28093 | ||
| 28022 | ;;;*** | 28094 | ;;;*** |
| 28023 | 28095 | ||
| 28024 | ;;;### (autoloads nil "tramp" "net/tramp.el" (21625 43838 483701 | 28096 | ;;;### (autoloads nil "tramp" "net/tramp.el" (21640 32530 974334 |
| 28025 | ;;;;;; 627000)) | 28097 | ;;;;;; 457000)) |
| 28026 | ;;; Generated autoloads from net/tramp.el | 28098 | ;;; Generated autoloads from net/tramp.el |
| 28027 | 28099 | ||
| 28028 | (defvar tramp-mode t "\ | 28100 | (defvar tramp-mode t "\ |
| @@ -28137,8 +28209,8 @@ Discard Tramp from loading remote files. | |||
| 28137 | 28209 | ||
| 28138 | ;;;*** | 28210 | ;;;*** |
| 28139 | 28211 | ||
| 28140 | ;;;### (autoloads nil "tramp-ftp" "net/tramp-ftp.el" (21607 54478 | 28212 | ;;;### (autoloads nil "tramp-ftp" "net/tramp-ftp.el" (21604 48550 |
| 28141 | ;;;;;; 300138 641000)) | 28213 | ;;;;;; 225934 222000)) |
| 28142 | ;;; Generated autoloads from net/tramp-ftp.el | 28214 | ;;; Generated autoloads from net/tramp-ftp.el |
| 28143 | 28215 | ||
| 28144 | (autoload 'tramp-ftp-enable-ange-ftp "tramp-ftp" "\ | 28216 | (autoload 'tramp-ftp-enable-ange-ftp "tramp-ftp" "\ |
| @@ -28148,8 +28220,8 @@ Discard Tramp from loading remote files. | |||
| 28148 | 28220 | ||
| 28149 | ;;;*** | 28221 | ;;;*** |
| 28150 | 28222 | ||
| 28151 | ;;;### (autoloads nil "tutorial" "tutorial.el" (21607 54478 800121 | 28223 | ;;;### (autoloads nil "tutorial" "tutorial.el" (21604 48550 417934 |
| 28152 | ;;;;;; 42000)) | 28224 | ;;;;;; 229000)) |
| 28153 | ;;; Generated autoloads from tutorial.el | 28225 | ;;; Generated autoloads from tutorial.el |
| 28154 | 28226 | ||
| 28155 | (autoload 'help-with-tutorial "tutorial" "\ | 28227 | (autoload 'help-with-tutorial "tutorial" "\ |
| @@ -28173,8 +28245,8 @@ resumed later. | |||
| 28173 | 28245 | ||
| 28174 | ;;;*** | 28246 | ;;;*** |
| 28175 | 28247 | ||
| 28176 | ;;;### (autoloads nil "tv-util" "language/tv-util.el" (21607 54478 | 28248 | ;;;### (autoloads nil "tv-util" "language/tv-util.el" (21604 48550 |
| 28177 | ;;;;;; 300138 641000)) | 28249 | ;;;;;; 157934 220000)) |
| 28178 | ;;; Generated autoloads from language/tv-util.el | 28250 | ;;; Generated autoloads from language/tv-util.el |
| 28179 | 28251 | ||
| 28180 | (autoload 'tai-viet-composition-function "tv-util" "\ | 28252 | (autoload 'tai-viet-composition-function "tv-util" "\ |
| @@ -28184,8 +28256,8 @@ resumed later. | |||
| 28184 | 28256 | ||
| 28185 | ;;;*** | 28257 | ;;;*** |
| 28186 | 28258 | ||
| 28187 | ;;;### (autoloads nil "two-column" "textmodes/two-column.el" (21607 | 28259 | ;;;### (autoloads nil "two-column" "textmodes/two-column.el" (21604 |
| 28188 | ;;;;;; 54478 800121 42000)) | 28260 | ;;;;;; 48550 413934 229000)) |
| 28189 | ;;; Generated autoloads from textmodes/two-column.el | 28261 | ;;; Generated autoloads from textmodes/two-column.el |
| 28190 | (autoload '2C-command "two-column" () t 'keymap) | 28262 | (autoload '2C-command "two-column" () t 'keymap) |
| 28191 | (global-set-key "\C-x6" '2C-command) | 28263 | (global-set-key "\C-x6" '2C-command) |
| @@ -28232,8 +28304,8 @@ First column's text sSs Second column's text | |||
| 28232 | 28304 | ||
| 28233 | ;;;*** | 28305 | ;;;*** |
| 28234 | 28306 | ||
| 28235 | ;;;### (autoloads nil "type-break" "type-break.el" (21609 55608 852266 | 28307 | ;;;### (autoloads nil "type-break" "type-break.el" (21631 35966 919121 |
| 28236 | ;;;;;; 580000)) | 28308 | ;;;;;; 870000)) |
| 28237 | ;;; Generated autoloads from type-break.el | 28309 | ;;; Generated autoloads from type-break.el |
| 28238 | 28310 | ||
| 28239 | (defvar type-break-mode nil "\ | 28311 | (defvar type-break-mode nil "\ |
| @@ -28365,7 +28437,7 @@ FRAC should be the inverse of the fractional value; for example, a value of | |||
| 28365 | 28437 | ||
| 28366 | ;;;*** | 28438 | ;;;*** |
| 28367 | 28439 | ||
| 28368 | ;;;### (autoloads nil "uce" "mail/uce.el" (21607 54478 300138 641000)) | 28440 | ;;;### (autoloads nil "uce" "mail/uce.el" (21604 48550 189934 221000)) |
| 28369 | ;;; Generated autoloads from mail/uce.el | 28441 | ;;; Generated autoloads from mail/uce.el |
| 28370 | 28442 | ||
| 28371 | (autoload 'uce-reply-to-uce "uce" "\ | 28443 | (autoload 'uce-reply-to-uce "uce" "\ |
| @@ -28379,7 +28451,7 @@ You might need to set `uce-mail-reader' before using this. | |||
| 28379 | ;;;*** | 28451 | ;;;*** |
| 28380 | 28452 | ||
| 28381 | ;;;### (autoloads nil "ucs-normalize" "international/ucs-normalize.el" | 28453 | ;;;### (autoloads nil "ucs-normalize" "international/ucs-normalize.el" |
| 28382 | ;;;;;; (21607 54478 300138 641000)) | 28454 | ;;;;;; (21604 48550 141934 219000)) |
| 28383 | ;;; Generated autoloads from international/ucs-normalize.el | 28455 | ;;; Generated autoloads from international/ucs-normalize.el |
| 28384 | 28456 | ||
| 28385 | (autoload 'ucs-normalize-NFD-region "ucs-normalize" "\ | 28457 | (autoload 'ucs-normalize-NFD-region "ucs-normalize" "\ |
| @@ -28444,8 +28516,8 @@ Normalize the string STR by the Unicode NFC and Mac OS's HFS Plus. | |||
| 28444 | 28516 | ||
| 28445 | ;;;*** | 28517 | ;;;*** |
| 28446 | 28518 | ||
| 28447 | ;;;### (autoloads nil "underline" "textmodes/underline.el" (21607 | 28519 | ;;;### (autoloads nil "underline" "textmodes/underline.el" (21604 |
| 28448 | ;;;;;; 54478 800121 42000)) | 28520 | ;;;;;; 48550 413934 229000)) |
| 28449 | ;;; Generated autoloads from textmodes/underline.el | 28521 | ;;; Generated autoloads from textmodes/underline.el |
| 28450 | 28522 | ||
| 28451 | (autoload 'underline-region "underline" "\ | 28523 | (autoload 'underline-region "underline" "\ |
| @@ -28465,8 +28537,8 @@ which specify the range to operate on. | |||
| 28465 | 28537 | ||
| 28466 | ;;;*** | 28538 | ;;;*** |
| 28467 | 28539 | ||
| 28468 | ;;;### (autoloads nil "unrmail" "mail/unrmail.el" (21607 54478 300138 | 28540 | ;;;### (autoloads nil "unrmail" "mail/unrmail.el" (21604 48550 189934 |
| 28469 | ;;;;;; 641000)) | 28541 | ;;;;;; 221000)) |
| 28470 | ;;; Generated autoloads from mail/unrmail.el | 28542 | ;;; Generated autoloads from mail/unrmail.el |
| 28471 | 28543 | ||
| 28472 | (autoload 'batch-unrmail "unrmail" "\ | 28544 | (autoload 'batch-unrmail "unrmail" "\ |
| @@ -28486,8 +28558,8 @@ The variable `unrmail-mbox-format' controls which mbox format to use. | |||
| 28486 | 28558 | ||
| 28487 | ;;;*** | 28559 | ;;;*** |
| 28488 | 28560 | ||
| 28489 | ;;;### (autoloads nil "unsafep" "emacs-lisp/unsafep.el" (21607 54477 | 28561 | ;;;### (autoloads nil "unsafep" "emacs-lisp/unsafep.el" (21604 48550 |
| 28490 | ;;;;;; 800124 118000)) | 28562 | ;;;;;; 25934 215000)) |
| 28491 | ;;; Generated autoloads from emacs-lisp/unsafep.el | 28563 | ;;; Generated autoloads from emacs-lisp/unsafep.el |
| 28492 | 28564 | ||
| 28493 | (autoload 'unsafep "unsafep" "\ | 28565 | (autoload 'unsafep "unsafep" "\ |
| @@ -28499,7 +28571,7 @@ UNSAFEP-VARS is a list of symbols with local bindings. | |||
| 28499 | 28571 | ||
| 28500 | ;;;*** | 28572 | ;;;*** |
| 28501 | 28573 | ||
| 28502 | ;;;### (autoloads nil "url" "url/url.el" (21607 54478 800121 42000)) | 28574 | ;;;### (autoloads nil "url" "url/url.el" (21604 48550 421934 229000)) |
| 28503 | ;;; Generated autoloads from url/url.el | 28575 | ;;; Generated autoloads from url/url.el |
| 28504 | 28576 | ||
| 28505 | (autoload 'url-retrieve "url" "\ | 28577 | (autoload 'url-retrieve "url" "\ |
| @@ -28546,8 +28618,8 @@ no further processing). URL is either a string or a parsed URL. | |||
| 28546 | 28618 | ||
| 28547 | ;;;*** | 28619 | ;;;*** |
| 28548 | 28620 | ||
| 28549 | ;;;### (autoloads nil "url-auth" "url/url-auth.el" (21607 54478 800121 | 28621 | ;;;### (autoloads nil "url-auth" "url/url-auth.el" (21604 48550 417934 |
| 28550 | ;;;;;; 42000)) | 28622 | ;;;;;; 229000)) |
| 28551 | ;;; Generated autoloads from url/url-auth.el | 28623 | ;;; Generated autoloads from url/url-auth.el |
| 28552 | 28624 | ||
| 28553 | (autoload 'url-get-authentication "url-auth" "\ | 28625 | (autoload 'url-get-authentication "url-auth" "\ |
| @@ -28588,8 +28660,8 @@ RATING a rating between 1 and 10 of the strength of the authentication. | |||
| 28588 | 28660 | ||
| 28589 | ;;;*** | 28661 | ;;;*** |
| 28590 | 28662 | ||
| 28591 | ;;;### (autoloads nil "url-cache" "url/url-cache.el" (21607 54478 | 28663 | ;;;### (autoloads nil "url-cache" "url/url-cache.el" (21604 48550 |
| 28592 | ;;;;;; 800121 42000)) | 28664 | ;;;;;; 417934 229000)) |
| 28593 | ;;; Generated autoloads from url/url-cache.el | 28665 | ;;; Generated autoloads from url/url-cache.el |
| 28594 | 28666 | ||
| 28595 | (autoload 'url-store-in-cache "url-cache" "\ | 28667 | (autoload 'url-store-in-cache "url-cache" "\ |
| @@ -28610,8 +28682,8 @@ Extract FNAM from the local disk cache. | |||
| 28610 | 28682 | ||
| 28611 | ;;;*** | 28683 | ;;;*** |
| 28612 | 28684 | ||
| 28613 | ;;;### (autoloads nil "url-cid" "url/url-cid.el" (21607 54478 800121 | 28685 | ;;;### (autoloads nil "url-cid" "url/url-cid.el" (21604 48550 417934 |
| 28614 | ;;;;;; 42000)) | 28686 | ;;;;;; 229000)) |
| 28615 | ;;; Generated autoloads from url/url-cid.el | 28687 | ;;; Generated autoloads from url/url-cid.el |
| 28616 | 28688 | ||
| 28617 | (autoload 'url-cid "url-cid" "\ | 28689 | (autoload 'url-cid "url-cid" "\ |
| @@ -28621,8 +28693,8 @@ Extract FNAM from the local disk cache. | |||
| 28621 | 28693 | ||
| 28622 | ;;;*** | 28694 | ;;;*** |
| 28623 | 28695 | ||
| 28624 | ;;;### (autoloads nil "url-dav" "url/url-dav.el" (21607 54478 800121 | 28696 | ;;;### (autoloads nil "url-dav" "url/url-dav.el" (21637 50476 683217 |
| 28625 | ;;;;;; 42000)) | 28697 | ;;;;;; 122000)) |
| 28626 | ;;; Generated autoloads from url/url-dav.el | 28698 | ;;; Generated autoloads from url/url-dav.el |
| 28627 | 28699 | ||
| 28628 | (autoload 'url-dav-supported-p "url-dav" "\ | 28700 | (autoload 'url-dav-supported-p "url-dav" "\ |
| @@ -28656,8 +28728,8 @@ added to this list, so most requests can just pass in nil. | |||
| 28656 | 28728 | ||
| 28657 | ;;;*** | 28729 | ;;;*** |
| 28658 | 28730 | ||
| 28659 | ;;;### (autoloads nil "url-file" "url/url-file.el" (21607 54478 800121 | 28731 | ;;;### (autoloads nil "url-file" "url/url-file.el" (21604 48550 417934 |
| 28660 | ;;;;;; 42000)) | 28732 | ;;;;;; 229000)) |
| 28661 | ;;; Generated autoloads from url/url-file.el | 28733 | ;;; Generated autoloads from url/url-file.el |
| 28662 | 28734 | ||
| 28663 | (autoload 'url-file "url-file" "\ | 28735 | (autoload 'url-file "url-file" "\ |
| @@ -28667,8 +28739,8 @@ Handle file: and ftp: URLs. | |||
| 28667 | 28739 | ||
| 28668 | ;;;*** | 28740 | ;;;*** |
| 28669 | 28741 | ||
| 28670 | ;;;### (autoloads nil "url-gw" "url/url-gw.el" (21607 54478 800121 | 28742 | ;;;### (autoloads nil "url-gw" "url/url-gw.el" (21604 48550 417934 |
| 28671 | ;;;;;; 42000)) | 28743 | ;;;;;; 229000)) |
| 28672 | ;;; Generated autoloads from url/url-gw.el | 28744 | ;;; Generated autoloads from url/url-gw.el |
| 28673 | 28745 | ||
| 28674 | (autoload 'url-gateway-nslookup-host "url-gw" "\ | 28746 | (autoload 'url-gateway-nslookup-host "url-gw" "\ |
| @@ -28689,8 +28761,8 @@ overriding the value of `url-gateway-method'. | |||
| 28689 | 28761 | ||
| 28690 | ;;;*** | 28762 | ;;;*** |
| 28691 | 28763 | ||
| 28692 | ;;;### (autoloads nil "url-handlers" "url/url-handlers.el" (21607 | 28764 | ;;;### (autoloads nil "url-handlers" "url/url-handlers.el" (21604 |
| 28693 | ;;;;;; 54478 800121 42000)) | 28765 | ;;;;;; 48550 417934 229000)) |
| 28694 | ;;; Generated autoloads from url/url-handlers.el | 28766 | ;;; Generated autoloads from url/url-handlers.el |
| 28695 | 28767 | ||
| 28696 | (defvar url-handler-mode nil "\ | 28768 | (defvar url-handler-mode nil "\ |
| @@ -28744,8 +28816,8 @@ accessible. | |||
| 28744 | 28816 | ||
| 28745 | ;;;*** | 28817 | ;;;*** |
| 28746 | 28818 | ||
| 28747 | ;;;### (autoloads nil "url-http" "url/url-http.el" (21619 5051 260148 | 28819 | ;;;### (autoloads nil "url-http" "url/url-http.el" (21640 32530 998334 |
| 28748 | ;;;;;; 536000)) | 28820 | ;;;;;; 458000)) |
| 28749 | ;;; Generated autoloads from url/url-http.el | 28821 | ;;; Generated autoloads from url/url-http.el |
| 28750 | (autoload 'url-default-expander "url-expand") | 28822 | (autoload 'url-default-expander "url-expand") |
| 28751 | 28823 | ||
| @@ -28757,8 +28829,8 @@ accessible. | |||
| 28757 | 28829 | ||
| 28758 | ;;;*** | 28830 | ;;;*** |
| 28759 | 28831 | ||
| 28760 | ;;;### (autoloads nil "url-irc" "url/url-irc.el" (21607 54478 800121 | 28832 | ;;;### (autoloads nil "url-irc" "url/url-irc.el" (21604 48550 421934 |
| 28761 | ;;;;;; 42000)) | 28833 | ;;;;;; 229000)) |
| 28762 | ;;; Generated autoloads from url/url-irc.el | 28834 | ;;; Generated autoloads from url/url-irc.el |
| 28763 | 28835 | ||
| 28764 | (autoload 'url-irc "url-irc" "\ | 28836 | (autoload 'url-irc "url-irc" "\ |
| @@ -28768,8 +28840,8 @@ accessible. | |||
| 28768 | 28840 | ||
| 28769 | ;;;*** | 28841 | ;;;*** |
| 28770 | 28842 | ||
| 28771 | ;;;### (autoloads nil "url-ldap" "url/url-ldap.el" (21607 54478 800121 | 28843 | ;;;### (autoloads nil "url-ldap" "url/url-ldap.el" (21604 48550 421934 |
| 28772 | ;;;;;; 42000)) | 28844 | ;;;;;; 229000)) |
| 28773 | ;;; Generated autoloads from url/url-ldap.el | 28845 | ;;; Generated autoloads from url/url-ldap.el |
| 28774 | 28846 | ||
| 28775 | (autoload 'url-ldap "url-ldap" "\ | 28847 | (autoload 'url-ldap "url-ldap" "\ |
| @@ -28782,8 +28854,8 @@ URL can be a URL string, or a URL vector of the type returned by | |||
| 28782 | 28854 | ||
| 28783 | ;;;*** | 28855 | ;;;*** |
| 28784 | 28856 | ||
| 28785 | ;;;### (autoloads nil "url-mailto" "url/url-mailto.el" (21607 54478 | 28857 | ;;;### (autoloads nil "url-mailto" "url/url-mailto.el" (21604 48550 |
| 28786 | ;;;;;; 800121 42000)) | 28858 | ;;;;;; 421934 229000)) |
| 28787 | ;;; Generated autoloads from url/url-mailto.el | 28859 | ;;; Generated autoloads from url/url-mailto.el |
| 28788 | 28860 | ||
| 28789 | (autoload 'url-mail "url-mailto" "\ | 28861 | (autoload 'url-mail "url-mailto" "\ |
| @@ -28798,8 +28870,8 @@ Handle the mailto: URL syntax. | |||
| 28798 | 28870 | ||
| 28799 | ;;;*** | 28871 | ;;;*** |
| 28800 | 28872 | ||
| 28801 | ;;;### (autoloads nil "url-misc" "url/url-misc.el" (21607 54478 800121 | 28873 | ;;;### (autoloads nil "url-misc" "url/url-misc.el" (21604 48550 421934 |
| 28802 | ;;;;;; 42000)) | 28874 | ;;;;;; 229000)) |
| 28803 | ;;; Generated autoloads from url/url-misc.el | 28875 | ;;; Generated autoloads from url/url-misc.el |
| 28804 | 28876 | ||
| 28805 | (autoload 'url-man "url-misc" "\ | 28877 | (autoload 'url-man "url-misc" "\ |
| @@ -28830,8 +28902,8 @@ Fetch a data URL (RFC 2397). | |||
| 28830 | 28902 | ||
| 28831 | ;;;*** | 28903 | ;;;*** |
| 28832 | 28904 | ||
| 28833 | ;;;### (autoloads nil "url-news" "url/url-news.el" (21607 54478 800121 | 28905 | ;;;### (autoloads nil "url-news" "url/url-news.el" (21604 48550 421934 |
| 28834 | ;;;;;; 42000)) | 28906 | ;;;;;; 229000)) |
| 28835 | ;;; Generated autoloads from url/url-news.el | 28907 | ;;; Generated autoloads from url/url-news.el |
| 28836 | 28908 | ||
| 28837 | (autoload 'url-news "url-news" "\ | 28909 | (autoload 'url-news "url-news" "\ |
| @@ -28846,8 +28918,8 @@ Fetch a data URL (RFC 2397). | |||
| 28846 | 28918 | ||
| 28847 | ;;;*** | 28919 | ;;;*** |
| 28848 | 28920 | ||
| 28849 | ;;;### (autoloads nil "url-ns" "url/url-ns.el" (21607 54478 800121 | 28921 | ;;;### (autoloads nil "url-ns" "url/url-ns.el" (21604 48550 421934 |
| 28850 | ;;;;;; 42000)) | 28922 | ;;;;;; 229000)) |
| 28851 | ;;; Generated autoloads from url/url-ns.el | 28923 | ;;; Generated autoloads from url/url-ns.el |
| 28852 | 28924 | ||
| 28853 | (autoload 'isPlainHostName "url-ns" "\ | 28925 | (autoload 'isPlainHostName "url-ns" "\ |
| @@ -28887,8 +28959,8 @@ Fetch a data URL (RFC 2397). | |||
| 28887 | 28959 | ||
| 28888 | ;;;*** | 28960 | ;;;*** |
| 28889 | 28961 | ||
| 28890 | ;;;### (autoloads nil "url-parse" "url/url-parse.el" (21607 54478 | 28962 | ;;;### (autoloads nil "url-parse" "url/url-parse.el" (21604 48550 |
| 28891 | ;;;;;; 800121 42000)) | 28963 | ;;;;;; 421934 229000)) |
| 28892 | ;;; Generated autoloads from url/url-parse.el | 28964 | ;;; Generated autoloads from url/url-parse.el |
| 28893 | 28965 | ||
| 28894 | (autoload 'url-recreate-url "url-parse" "\ | 28966 | (autoload 'url-recreate-url "url-parse" "\ |
| @@ -28939,8 +29011,8 @@ parses to | |||
| 28939 | 29011 | ||
| 28940 | ;;;*** | 29012 | ;;;*** |
| 28941 | 29013 | ||
| 28942 | ;;;### (autoloads nil "url-privacy" "url/url-privacy.el" (21607 54478 | 29014 | ;;;### (autoloads nil "url-privacy" "url/url-privacy.el" (21604 48550 |
| 28943 | ;;;;;; 800121 42000)) | 29015 | ;;;;;; 421934 229000)) |
| 28944 | ;;; Generated autoloads from url/url-privacy.el | 29016 | ;;; Generated autoloads from url/url-privacy.el |
| 28945 | 29017 | ||
| 28946 | (autoload 'url-setup-privacy-info "url-privacy" "\ | 29018 | (autoload 'url-setup-privacy-info "url-privacy" "\ |
| @@ -28950,8 +29022,8 @@ Setup variables that expose info about you and your system. | |||
| 28950 | 29022 | ||
| 28951 | ;;;*** | 29023 | ;;;*** |
| 28952 | 29024 | ||
| 28953 | ;;;### (autoloads nil "url-queue" "url/url-queue.el" (21619 5051 | 29025 | ;;;### (autoloads nil "url-queue" "url/url-queue.el" (21631 35966 |
| 28954 | ;;;;;; 260148 536000)) | 29026 | ;;;;;; 919121 870000)) |
| 28955 | ;;; Generated autoloads from url/url-queue.el | 29027 | ;;; Generated autoloads from url/url-queue.el |
| 28956 | 29028 | ||
| 28957 | (autoload 'url-queue-retrieve "url-queue" "\ | 29029 | (autoload 'url-queue-retrieve "url-queue" "\ |
| @@ -28965,8 +29037,8 @@ The variable `url-queue-timeout' sets a timeout. | |||
| 28965 | 29037 | ||
| 28966 | ;;;*** | 29038 | ;;;*** |
| 28967 | 29039 | ||
| 28968 | ;;;### (autoloads nil "url-tramp" "url/url-tramp.el" (21607 54478 | 29040 | ;;;### (autoloads nil "url-tramp" "url/url-tramp.el" (21604 48550 |
| 28969 | ;;;;;; 800121 42000)) | 29041 | ;;;;;; 421934 229000)) |
| 28970 | ;;; Generated autoloads from url/url-tramp.el | 29042 | ;;; Generated autoloads from url/url-tramp.el |
| 28971 | 29043 | ||
| 28972 | (defvar url-tramp-protocols '("ftp" "ssh" "scp" "rsync" "telnet") "\ | 29044 | (defvar url-tramp-protocols '("ftp" "ssh" "scp" "rsync" "telnet") "\ |
| @@ -28984,8 +29056,8 @@ would have been passed to OPERATION. | |||
| 28984 | 29056 | ||
| 28985 | ;;;*** | 29057 | ;;;*** |
| 28986 | 29058 | ||
| 28987 | ;;;### (autoloads nil "url-util" "url/url-util.el" (21607 54478 800121 | 29059 | ;;;### (autoloads nil "url-util" "url/url-util.el" (21604 48550 421934 |
| 28988 | ;;;;;; 42000)) | 29060 | ;;;;;; 229000)) |
| 28989 | ;;; Generated autoloads from url/url-util.el | 29061 | ;;; Generated autoloads from url/url-util.el |
| 28990 | 29062 | ||
| 28991 | (defvar url-debug nil "\ | 29063 | (defvar url-debug nil "\ |
| @@ -29153,8 +29225,8 @@ This uses `url-current-object', set locally to the buffer. | |||
| 29153 | 29225 | ||
| 29154 | ;;;*** | 29226 | ;;;*** |
| 29155 | 29227 | ||
| 29156 | ;;;### (autoloads nil "userlock" "userlock.el" (21607 54478 800121 | 29228 | ;;;### (autoloads nil "userlock" "userlock.el" (21604 48550 421934 |
| 29157 | ;;;;;; 42000)) | 29229 | ;;;;;; 229000)) |
| 29158 | ;;; Generated autoloads from userlock.el | 29230 | ;;; Generated autoloads from userlock.el |
| 29159 | 29231 | ||
| 29160 | (autoload 'ask-user-about-lock "userlock" "\ | 29232 | (autoload 'ask-user-about-lock "userlock" "\ |
| @@ -29182,8 +29254,8 @@ The buffer in question is current when this function is called. | |||
| 29182 | 29254 | ||
| 29183 | ;;;*** | 29255 | ;;;*** |
| 29184 | 29256 | ||
| 29185 | ;;;### (autoloads nil "utf-7" "international/utf-7.el" (21607 54478 | 29257 | ;;;### (autoloads nil "utf-7" "international/utf-7.el" (21604 48550 |
| 29186 | ;;;;;; 300138 641000)) | 29258 | ;;;;;; 141934 219000)) |
| 29187 | ;;; Generated autoloads from international/utf-7.el | 29259 | ;;; Generated autoloads from international/utf-7.el |
| 29188 | 29260 | ||
| 29189 | (autoload 'utf-7-post-read-conversion "utf-7" "\ | 29261 | (autoload 'utf-7-post-read-conversion "utf-7" "\ |
| @@ -29208,7 +29280,7 @@ The buffer in question is current when this function is called. | |||
| 29208 | 29280 | ||
| 29209 | ;;;*** | 29281 | ;;;*** |
| 29210 | 29282 | ||
| 29211 | ;;;### (autoloads nil "utf7" "gnus/utf7.el" (21607 54478 300138 641000)) | 29283 | ;;;### (autoloads nil "utf7" "gnus/utf7.el" (21604 48550 121934 218000)) |
| 29212 | ;;; Generated autoloads from gnus/utf7.el | 29284 | ;;; Generated autoloads from gnus/utf7.el |
| 29213 | 29285 | ||
| 29214 | (autoload 'utf7-encode "utf7" "\ | 29286 | (autoload 'utf7-encode "utf7" "\ |
| @@ -29218,8 +29290,8 @@ Encode UTF-7 STRING. Use IMAP modification if FOR-IMAP is non-nil. | |||
| 29218 | 29290 | ||
| 29219 | ;;;*** | 29291 | ;;;*** |
| 29220 | 29292 | ||
| 29221 | ;;;### (autoloads nil "uudecode" "mail/uudecode.el" (21607 54478 | 29293 | ;;;### (autoloads nil "uudecode" "mail/uudecode.el" (21604 48550 |
| 29222 | ;;;;;; 300138 641000)) | 29294 | ;;;;;; 189934 221000)) |
| 29223 | ;;; Generated autoloads from mail/uudecode.el | 29295 | ;;; Generated autoloads from mail/uudecode.el |
| 29224 | 29296 | ||
| 29225 | (autoload 'uudecode-decode-region-external "uudecode" "\ | 29297 | (autoload 'uudecode-decode-region-external "uudecode" "\ |
| @@ -29243,7 +29315,7 @@ If FILE-NAME is non-nil, save the result to FILE-NAME. | |||
| 29243 | 29315 | ||
| 29244 | ;;;*** | 29316 | ;;;*** |
| 29245 | 29317 | ||
| 29246 | ;;;### (autoloads nil "vc" "vc/vc.el" (21628 45530 160140 360000)) | 29318 | ;;;### (autoloads nil "vc" "vc/vc.el" (21649 1806 157181 933000)) |
| 29247 | ;;; Generated autoloads from vc/vc.el | 29319 | ;;; Generated autoloads from vc/vc.el |
| 29248 | 29320 | ||
| 29249 | (defvar vc-checkout-hook nil "\ | 29321 | (defvar vc-checkout-hook nil "\ |
| @@ -29282,8 +29354,7 @@ For old-style locking-based version control systems, like RCS: | |||
| 29282 | If every file is registered and unlocked, check out (lock) | 29354 | If every file is registered and unlocked, check out (lock) |
| 29283 | the file(s) for editing. | 29355 | the file(s) for editing. |
| 29284 | If every file is locked by you and has changes, pop up a | 29356 | If every file is locked by you and has changes, pop up a |
| 29285 | *vc-log* buffer to check in the changes. If the variable | 29357 | *vc-log* buffer to check in the changes. Leave a |
| 29286 | `vc-keep-workfiles' is non-nil (the default), leave a | ||
| 29287 | read-only copy of each changed file after checking in. | 29358 | read-only copy of each changed file after checking in. |
| 29288 | If every file is locked by you and unchanged, unlock them. | 29359 | If every file is locked by you and unchanged, unlock them. |
| 29289 | If every file is locked by someone else, offer to steal the lock. | 29360 | If every file is locked by someone else, offer to steal the lock. |
| @@ -29453,13 +29524,6 @@ to the working revision (except for keyword expansion). | |||
| 29453 | 29524 | ||
| 29454 | \(fn)" t nil) | 29525 | \(fn)" t nil) |
| 29455 | 29526 | ||
| 29456 | (autoload 'vc-rollback "vc" "\ | ||
| 29457 | Roll back (remove) the most recent changeset committed to the repository. | ||
| 29458 | This may be either a file-level or a repository-level operation, | ||
| 29459 | depending on the underlying version-control system. | ||
| 29460 | |||
| 29461 | \(fn)" t nil) | ||
| 29462 | |||
| 29463 | (define-obsolete-function-alias 'vc-revert-buffer 'vc-revert "23.1") | 29527 | (define-obsolete-function-alias 'vc-revert-buffer 'vc-revert "23.1") |
| 29464 | 29528 | ||
| 29465 | (autoload 'vc-pull "vc" "\ | 29529 | (autoload 'vc-pull "vc" "\ |
| @@ -29538,8 +29602,8 @@ Return the branch part of a revision number REV. | |||
| 29538 | 29602 | ||
| 29539 | ;;;*** | 29603 | ;;;*** |
| 29540 | 29604 | ||
| 29541 | ;;;### (autoloads nil "vc-annotate" "vc/vc-annotate.el" (21607 54478 | 29605 | ;;;### (autoloads nil "vc-annotate" "vc/vc-annotate.el" (21604 48550 |
| 29542 | ;;;;;; 800121 42000)) | 29606 | ;;;;;; 433934 230000)) |
| 29543 | ;;; Generated autoloads from vc/vc-annotate.el | 29607 | ;;; Generated autoloads from vc/vc-annotate.el |
| 29544 | 29608 | ||
| 29545 | (autoload 'vc-annotate "vc-annotate" "\ | 29609 | (autoload 'vc-annotate "vc-annotate" "\ |
| @@ -29578,19 +29642,8 @@ should be applied to the background or to the foreground. | |||
| 29578 | 29642 | ||
| 29579 | ;;;*** | 29643 | ;;;*** |
| 29580 | 29644 | ||
| 29581 | ;;;### (autoloads nil "vc-arch" "vc/vc-arch.el" (21628 43483 380149 | 29645 | ;;;### (autoloads nil "vc-bzr" "vc/vc-bzr.el" (21645 25875 825189 |
| 29582 | ;;;;;; 771000)) | 29646 | ;;;;;; 881000)) |
| 29583 | ;;; Generated autoloads from vc/vc-arch.el | ||
| 29584 | (defun vc-arch-registered (file) | ||
| 29585 | (if (vc-find-root file "{arch}/=tagging-method") | ||
| 29586 | (progn | ||
| 29587 | (load "vc-arch" nil t) | ||
| 29588 | (vc-arch-registered file)))) | ||
| 29589 | |||
| 29590 | ;;;*** | ||
| 29591 | |||
| 29592 | ;;;### (autoloads nil "vc-bzr" "vc/vc-bzr.el" (21628 43483 380149 | ||
| 29593 | ;;;;;; 771000)) | ||
| 29594 | ;;; Generated autoloads from vc/vc-bzr.el | 29647 | ;;; Generated autoloads from vc/vc-bzr.el |
| 29595 | 29648 | ||
| 29596 | (defconst vc-bzr-admin-dirname ".bzr" "\ | 29649 | (defconst vc-bzr-admin-dirname ".bzr" "\ |
| @@ -29606,8 +29659,8 @@ Name of the format file in a .bzr directory.") | |||
| 29606 | 29659 | ||
| 29607 | ;;;*** | 29660 | ;;;*** |
| 29608 | 29661 | ||
| 29609 | ;;;### (autoloads nil "vc-cvs" "vc/vc-cvs.el" (21628 43483 380149 | 29662 | ;;;### (autoloads nil "vc-cvs" "vc/vc-cvs.el" (21645 25875 825189 |
| 29610 | ;;;;;; 771000)) | 29663 | ;;;;;; 881000)) |
| 29611 | ;;; Generated autoloads from vc/vc-cvs.el | 29664 | ;;; Generated autoloads from vc/vc-cvs.el |
| 29612 | (defun vc-cvs-registered (f) | 29665 | (defun vc-cvs-registered (f) |
| 29613 | "Return non-nil if file F is registered with CVS." | 29666 | "Return non-nil if file F is registered with CVS." |
| @@ -29618,8 +29671,8 @@ Name of the format file in a .bzr directory.") | |||
| 29618 | 29671 | ||
| 29619 | ;;;*** | 29672 | ;;;*** |
| 29620 | 29673 | ||
| 29621 | ;;;### (autoloads nil "vc-dir" "vc/vc-dir.el" (21607 54478 800121 | 29674 | ;;;### (autoloads nil "vc-dir" "vc/vc-dir.el" (21645 25761 817186 |
| 29622 | ;;;;;; 42000)) | 29675 | ;;;;;; 828000)) |
| 29623 | ;;; Generated autoloads from vc/vc-dir.el | 29676 | ;;; Generated autoloads from vc/vc-dir.el |
| 29624 | 29677 | ||
| 29625 | (autoload 'vc-dir "vc-dir" "\ | 29678 | (autoload 'vc-dir "vc-dir" "\ |
| @@ -29643,8 +29696,8 @@ These are the commands available for use in the file status buffer: | |||
| 29643 | 29696 | ||
| 29644 | ;;;*** | 29697 | ;;;*** |
| 29645 | 29698 | ||
| 29646 | ;;;### (autoloads nil "vc-dispatcher" "vc/vc-dispatcher.el" (21607 | 29699 | ;;;### (autoloads nil "vc-dispatcher" "vc/vc-dispatcher.el" (21645 |
| 29647 | ;;;;;; 54478 800121 42000)) | 29700 | ;;;;;; 25761 817186 828000)) |
| 29648 | ;;; Generated autoloads from vc/vc-dispatcher.el | 29701 | ;;; Generated autoloads from vc/vc-dispatcher.el |
| 29649 | 29702 | ||
| 29650 | (autoload 'vc-do-command "vc-dispatcher" "\ | 29703 | (autoload 'vc-do-command "vc-dispatcher" "\ |
| @@ -29667,8 +29720,7 @@ case, and the process object in the asynchronous case. | |||
| 29667 | 29720 | ||
| 29668 | ;;;*** | 29721 | ;;;*** |
| 29669 | 29722 | ||
| 29670 | ;;;### (autoloads nil "vc-git" "vc/vc-git.el" (21628 45530 160140 | 29723 | ;;;### (autoloads nil "vc-git" "vc/vc-git.el" (21649 1521 25174 297000)) |
| 29671 | ;;;;;; 360000)) | ||
| 29672 | ;;; Generated autoloads from vc/vc-git.el | 29724 | ;;; Generated autoloads from vc/vc-git.el |
| 29673 | (defun vc-git-registered (file) | 29725 | (defun vc-git-registered (file) |
| 29674 | "Return non-nil if FILE is registered with git." | 29726 | "Return non-nil if FILE is registered with git." |
| @@ -29679,7 +29731,7 @@ case, and the process object in the asynchronous case. | |||
| 29679 | 29731 | ||
| 29680 | ;;;*** | 29732 | ;;;*** |
| 29681 | 29733 | ||
| 29682 | ;;;### (autoloads nil "vc-hg" "vc/vc-hg.el" (21628 43483 380149 771000)) | 29734 | ;;;### (autoloads nil "vc-hg" "vc/vc-hg.el" (21645 25875 841189 882000)) |
| 29683 | ;;; Generated autoloads from vc/vc-hg.el | 29735 | ;;; Generated autoloads from vc/vc-hg.el |
| 29684 | (defun vc-hg-registered (file) | 29736 | (defun vc-hg-registered (file) |
| 29685 | "Return non-nil if FILE is registered with hg." | 29737 | "Return non-nil if FILE is registered with hg." |
| @@ -29690,8 +29742,8 @@ case, and the process object in the asynchronous case. | |||
| 29690 | 29742 | ||
| 29691 | ;;;*** | 29743 | ;;;*** |
| 29692 | 29744 | ||
| 29693 | ;;;### (autoloads nil "vc-mtn" "vc/vc-mtn.el" (21628 43483 380149 | 29745 | ;;;### (autoloads nil "vc-mtn" "vc/vc-mtn.el" (21645 25875 841189 |
| 29694 | ;;;;;; 771000)) | 29746 | ;;;;;; 882000)) |
| 29695 | ;;; Generated autoloads from vc/vc-mtn.el | 29747 | ;;; Generated autoloads from vc/vc-mtn.el |
| 29696 | 29748 | ||
| 29697 | (defconst vc-mtn-admin-dir "_MTN" "\ | 29749 | (defconst vc-mtn-admin-dir "_MTN" "\ |
| @@ -29707,8 +29759,8 @@ Name of the monotone directory's format file.") | |||
| 29707 | 29759 | ||
| 29708 | ;;;*** | 29760 | ;;;*** |
| 29709 | 29761 | ||
| 29710 | ;;;### (autoloads nil "vc-rcs" "vc/vc-rcs.el" (21628 43483 380149 | 29762 | ;;;### (autoloads nil "vc-rcs" "vc/vc-rcs.el" (21645 25875 841189 |
| 29711 | ;;;;;; 771000)) | 29763 | ;;;;;; 882000)) |
| 29712 | ;;; Generated autoloads from vc/vc-rcs.el | 29764 | ;;; Generated autoloads from vc/vc-rcs.el |
| 29713 | 29765 | ||
| 29714 | (defvar vc-rcs-master-templates (purecopy '("%sRCS/%s,v" "%s%s,v" "%sRCS/%s")) "\ | 29766 | (defvar vc-rcs-master-templates (purecopy '("%sRCS/%s,v" "%s%s,v" "%sRCS/%s")) "\ |
| @@ -29721,8 +29773,8 @@ For a description of possible values, see `vc-check-master-templates'.") | |||
| 29721 | 29773 | ||
| 29722 | ;;;*** | 29774 | ;;;*** |
| 29723 | 29775 | ||
| 29724 | ;;;### (autoloads nil "vc-sccs" "vc/vc-sccs.el" (21628 43483 380149 | 29776 | ;;;### (autoloads nil "vc-sccs" "vc/vc-sccs.el" (21645 25875 837189 |
| 29725 | ;;;;;; 771000)) | 29777 | ;;;;;; 882000)) |
| 29726 | ;;; Generated autoloads from vc/vc-sccs.el | 29778 | ;;; Generated autoloads from vc/vc-sccs.el |
| 29727 | 29779 | ||
| 29728 | (defvar vc-sccs-master-templates (purecopy '("%sSCCS/s.%s" "%ss.%s" vc-sccs-search-project-dir)) "\ | 29780 | (defvar vc-sccs-master-templates (purecopy '("%sSCCS/s.%s" "%ss.%s" vc-sccs-search-project-dir)) "\ |
| @@ -29740,8 +29792,8 @@ find any project directory." (let ((project-dir (getenv "PROJECTDIR")) dirs dir) | |||
| 29740 | 29792 | ||
| 29741 | ;;;*** | 29793 | ;;;*** |
| 29742 | 29794 | ||
| 29743 | ;;;### (autoloads nil "vc-src" "vc/vc-src.el" (21628 43483 380149 | 29795 | ;;;### (autoloads nil "vc-src" "vc/vc-src.el" (21645 25875 837189 |
| 29744 | ;;;;;; 771000)) | 29796 | ;;;;;; 882000)) |
| 29745 | ;;; Generated autoloads from vc/vc-src.el | 29797 | ;;; Generated autoloads from vc/vc-src.el |
| 29746 | 29798 | ||
| 29747 | (defvar vc-src-master-templates (purecopy '("%s.src/%s,v")) "\ | 29799 | (defvar vc-src-master-templates (purecopy '("%s.src/%s,v")) "\ |
| @@ -29754,8 +29806,8 @@ For a description of possible values, see `vc-check-master-templates'.") | |||
| 29754 | 29806 | ||
| 29755 | ;;;*** | 29807 | ;;;*** |
| 29756 | 29808 | ||
| 29757 | ;;;### (autoloads nil "vc-svn" "vc/vc-svn.el" (21628 43483 380149 | 29809 | ;;;### (autoloads nil "vc-svn" "vc/vc-svn.el" (21650 56624 523745 |
| 29758 | ;;;;;; 771000)) | 29810 | ;;;;;; 975000)) |
| 29759 | ;;; Generated autoloads from vc/vc-svn.el | 29811 | ;;; Generated autoloads from vc/vc-svn.el |
| 29760 | (defun vc-svn-registered (f) | 29812 | (defun vc-svn-registered (f) |
| 29761 | (let ((admin-dir (cond ((and (eq system-type 'windows-nt) | 29813 | (let ((admin-dir (cond ((and (eq system-type 'windows-nt) |
| @@ -29768,8 +29820,8 @@ For a description of possible values, see `vc-check-master-templates'.") | |||
| 29768 | 29820 | ||
| 29769 | ;;;*** | 29821 | ;;;*** |
| 29770 | 29822 | ||
| 29771 | ;;;### (autoloads nil "vera-mode" "progmodes/vera-mode.el" (21607 | 29823 | ;;;### (autoloads nil "vera-mode" "progmodes/vera-mode.el" (21604 |
| 29772 | ;;;;;; 54478 800121 42000)) | 29824 | ;;;;;; 48550 361934 227000)) |
| 29773 | ;;; Generated autoloads from progmodes/vera-mode.el | 29825 | ;;; Generated autoloads from progmodes/vera-mode.el |
| 29774 | (push (purecopy '(vera-mode 2 28)) package--builtin-versions) | 29826 | (push (purecopy '(vera-mode 2 28)) package--builtin-versions) |
| 29775 | (add-to-list 'auto-mode-alist (cons (purecopy "\\.vr[hi]?\\'") 'vera-mode)) | 29827 | (add-to-list 'auto-mode-alist (cons (purecopy "\\.vr[hi]?\\'") 'vera-mode)) |
| @@ -29828,7 +29880,7 @@ Key bindings: | |||
| 29828 | ;;;*** | 29880 | ;;;*** |
| 29829 | 29881 | ||
| 29830 | ;;;### (autoloads nil "verilog-mode" "progmodes/verilog-mode.el" | 29882 | ;;;### (autoloads nil "verilog-mode" "progmodes/verilog-mode.el" |
| 29831 | ;;;;;; (21607 54478 800121 42000)) | 29883 | ;;;;;; (21645 25761 813186 828000)) |
| 29832 | ;;; Generated autoloads from progmodes/verilog-mode.el | 29884 | ;;; Generated autoloads from progmodes/verilog-mode.el |
| 29833 | 29885 | ||
| 29834 | (autoload 'verilog-mode "verilog-mode" "\ | 29886 | (autoload 'verilog-mode "verilog-mode" "\ |
| @@ -29967,8 +30019,8 @@ Key bindings specific to `verilog-mode-map' are: | |||
| 29967 | 30019 | ||
| 29968 | ;;;*** | 30020 | ;;;*** |
| 29969 | 30021 | ||
| 29970 | ;;;### (autoloads nil "vhdl-mode" "progmodes/vhdl-mode.el" (21607 | 30022 | ;;;### (autoloads nil "vhdl-mode" "progmodes/vhdl-mode.el" (21640 |
| 29971 | ;;;;;; 54478 800121 42000)) | 30023 | ;;;;;; 32530 994334 458000)) |
| 29972 | ;;; Generated autoloads from progmodes/vhdl-mode.el | 30024 | ;;; Generated autoloads from progmodes/vhdl-mode.el |
| 29973 | 30025 | ||
| 29974 | (autoload 'vhdl-mode "vhdl-mode" "\ | 30026 | (autoload 'vhdl-mode "vhdl-mode" "\ |
| @@ -30522,8 +30574,8 @@ Key bindings: | |||
| 30522 | 30574 | ||
| 30523 | ;;;*** | 30575 | ;;;*** |
| 30524 | 30576 | ||
| 30525 | ;;;### (autoloads nil "viet-util" "language/viet-util.el" (21607 | 30577 | ;;;### (autoloads nil "viet-util" "language/viet-util.el" (21604 |
| 30526 | ;;;;;; 54478 300138 641000)) | 30578 | ;;;;;; 48550 157934 220000)) |
| 30527 | ;;; Generated autoloads from language/viet-util.el | 30579 | ;;; Generated autoloads from language/viet-util.el |
| 30528 | 30580 | ||
| 30529 | (autoload 'viet-encode-viscii-char "viet-util" "\ | 30581 | (autoload 'viet-encode-viscii-char "viet-util" "\ |
| @@ -30567,7 +30619,7 @@ Convert Vietnamese characters of the current buffer to `VIQR' mnemonics. | |||
| 30567 | 30619 | ||
| 30568 | ;;;*** | 30620 | ;;;*** |
| 30569 | 30621 | ||
| 30570 | ;;;### (autoloads nil "view" "view.el" (21607 54478 800121 42000)) | 30622 | ;;;### (autoloads nil "view" "view.el" (21604 48550 437934 230000)) |
| 30571 | ;;; Generated autoloads from view.el | 30623 | ;;; Generated autoloads from view.el |
| 30572 | 30624 | ||
| 30573 | (defvar view-remove-frame-by-deleting t "\ | 30625 | (defvar view-remove-frame-by-deleting t "\ |
| @@ -30823,8 +30875,8 @@ Exit View mode and make the current buffer editable. | |||
| 30823 | 30875 | ||
| 30824 | ;;;*** | 30876 | ;;;*** |
| 30825 | 30877 | ||
| 30826 | ;;;### (autoloads nil "viper" "emulation/viper.el" (21607 54478 300138 | 30878 | ;;;### (autoloads nil "viper" "emulation/viper.el" (21604 48550 33934 |
| 30827 | ;;;;;; 641000)) | 30879 | ;;;;;; 215000)) |
| 30828 | ;;; Generated autoloads from emulation/viper.el | 30880 | ;;; Generated autoloads from emulation/viper.el |
| 30829 | (push (purecopy '(viper 3 14 1)) package--builtin-versions) | 30881 | (push (purecopy '(viper 3 14 1)) package--builtin-versions) |
| 30830 | 30882 | ||
| @@ -30841,8 +30893,8 @@ Turn on Viper emulation of Vi in Emacs. See Info node `(viper)Top'. | |||
| 30841 | 30893 | ||
| 30842 | ;;;*** | 30894 | ;;;*** |
| 30843 | 30895 | ||
| 30844 | ;;;### (autoloads nil "warnings" "emacs-lisp/warnings.el" (21607 | 30896 | ;;;### (autoloads nil "warnings" "emacs-lisp/warnings.el" (21604 |
| 30845 | ;;;;;; 54477 800124 118000)) | 30897 | ;;;;;; 48550 25934 215000)) |
| 30846 | ;;; Generated autoloads from emacs-lisp/warnings.el | 30898 | ;;; Generated autoloads from emacs-lisp/warnings.el |
| 30847 | 30899 | ||
| 30848 | (defvar warning-prefix-function nil "\ | 30900 | (defvar warning-prefix-function nil "\ |
| @@ -30932,7 +30984,7 @@ this is equivalent to `display-warning', using | |||
| 30932 | 30984 | ||
| 30933 | ;;;*** | 30985 | ;;;*** |
| 30934 | 30986 | ||
| 30935 | ;;;### (autoloads nil "wdired" "wdired.el" (21607 54478 800121 42000)) | 30987 | ;;;### (autoloads nil "wdired" "wdired.el" (21604 48550 441934 230000)) |
| 30936 | ;;; Generated autoloads from wdired.el | 30988 | ;;; Generated autoloads from wdired.el |
| 30937 | (push (purecopy '(wdired 2 0)) package--builtin-versions) | 30989 | (push (purecopy '(wdired 2 0)) package--builtin-versions) |
| 30938 | 30990 | ||
| @@ -30950,8 +31002,8 @@ See `wdired-mode'. | |||
| 30950 | 31002 | ||
| 30951 | ;;;*** | 31003 | ;;;*** |
| 30952 | 31004 | ||
| 30953 | ;;;### (autoloads nil "webjump" "net/webjump.el" (21607 54478 300138 | 31005 | ;;;### (autoloads nil "webjump" "net/webjump.el" (21604 48550 233934 |
| 30954 | ;;;;;; 641000)) | 31006 | ;;;;;; 222000)) |
| 30955 | ;;; Generated autoloads from net/webjump.el | 31007 | ;;; Generated autoloads from net/webjump.el |
| 30956 | 31008 | ||
| 30957 | (autoload 'webjump "webjump" "\ | 31009 | (autoload 'webjump "webjump" "\ |
| @@ -30967,8 +31019,8 @@ Please submit bug reports and other feedback to the author, Neil W. Van Dyke | |||
| 30967 | 31019 | ||
| 30968 | ;;;*** | 31020 | ;;;*** |
| 30969 | 31021 | ||
| 30970 | ;;;### (autoloads nil "which-func" "progmodes/which-func.el" (21607 | 31022 | ;;;### (autoloads nil "which-func" "progmodes/which-func.el" (21604 |
| 30971 | ;;;;;; 54478 800121 42000)) | 31023 | ;;;;;; 48550 365934 227000)) |
| 30972 | ;;; Generated autoloads from progmodes/which-func.el | 31024 | ;;; Generated autoloads from progmodes/which-func.el |
| 30973 | (put 'which-func-format 'risky-local-variable t) | 31025 | (put 'which-func-format 'risky-local-variable t) |
| 30974 | (put 'which-func-current 'risky-local-variable t) | 31026 | (put 'which-func-current 'risky-local-variable t) |
| @@ -30998,8 +31050,8 @@ in certain major modes. | |||
| 30998 | 31050 | ||
| 30999 | ;;;*** | 31051 | ;;;*** |
| 31000 | 31052 | ||
| 31001 | ;;;### (autoloads nil "whitespace" "whitespace.el" (21607 54478 800121 | 31053 | ;;;### (autoloads nil "whitespace" "whitespace.el" (21631 35966 927121 |
| 31002 | ;;;;;; 42000)) | 31054 | ;;;;;; 870000)) |
| 31003 | ;;; Generated autoloads from whitespace.el | 31055 | ;;; Generated autoloads from whitespace.el |
| 31004 | (push (purecopy '(whitespace 13 2 2)) package--builtin-versions) | 31056 | (push (purecopy '(whitespace 13 2 2)) package--builtin-versions) |
| 31005 | 31057 | ||
| @@ -31367,8 +31419,8 @@ cleaning up these problems. | |||
| 31367 | 31419 | ||
| 31368 | ;;;*** | 31420 | ;;;*** |
| 31369 | 31421 | ||
| 31370 | ;;;### (autoloads nil "wid-browse" "wid-browse.el" (21607 54478 800121 | 31422 | ;;;### (autoloads nil "wid-browse" "wid-browse.el" (21604 48550 441934 |
| 31371 | ;;;;;; 42000)) | 31423 | ;;;;;; 230000)) |
| 31372 | ;;; Generated autoloads from wid-browse.el | 31424 | ;;; Generated autoloads from wid-browse.el |
| 31373 | 31425 | ||
| 31374 | (autoload 'widget-browse-at "wid-browse" "\ | 31426 | (autoload 'widget-browse-at "wid-browse" "\ |
| @@ -31396,8 +31448,8 @@ if ARG is omitted or nil. | |||
| 31396 | 31448 | ||
| 31397 | ;;;*** | 31449 | ;;;*** |
| 31398 | 31450 | ||
| 31399 | ;;;### (autoloads nil "wid-edit" "wid-edit.el" (21607 54478 800121 | 31451 | ;;;### (autoloads nil "wid-edit" "wid-edit.el" (21637 50476 687217 |
| 31400 | ;;;;;; 42000)) | 31452 | ;;;;;; 122000)) |
| 31401 | ;;; Generated autoloads from wid-edit.el | 31453 | ;;; Generated autoloads from wid-edit.el |
| 31402 | 31454 | ||
| 31403 | (autoload 'widgetp "wid-edit" "\ | 31455 | (autoload 'widgetp "wid-edit" "\ |
| @@ -31439,8 +31491,8 @@ Setup current buffer so editing string widgets works. | |||
| 31439 | 31491 | ||
| 31440 | ;;;*** | 31492 | ;;;*** |
| 31441 | 31493 | ||
| 31442 | ;;;### (autoloads nil "windmove" "windmove.el" (21607 54478 800121 | 31494 | ;;;### (autoloads nil "windmove" "windmove.el" (21604 48550 441934 |
| 31443 | ;;;;;; 42000)) | 31495 | ;;;;;; 230000)) |
| 31444 | ;;; Generated autoloads from windmove.el | 31496 | ;;; Generated autoloads from windmove.el |
| 31445 | 31497 | ||
| 31446 | (autoload 'windmove-left "windmove" "\ | 31498 | (autoload 'windmove-left "windmove" "\ |
| @@ -31492,7 +31544,7 @@ Default MODIFIER is 'shift. | |||
| 31492 | 31544 | ||
| 31493 | ;;;*** | 31545 | ;;;*** |
| 31494 | 31546 | ||
| 31495 | ;;;### (autoloads nil "winner" "winner.el" (21607 54478 800121 42000)) | 31547 | ;;;### (autoloads nil "winner" "winner.el" (21604 48550 445934 230000)) |
| 31496 | ;;; Generated autoloads from winner.el | 31548 | ;;; Generated autoloads from winner.el |
| 31497 | 31549 | ||
| 31498 | (defvar winner-mode nil "\ | 31550 | (defvar winner-mode nil "\ |
| @@ -31515,7 +31567,7 @@ the mode if ARG is omitted or nil, and toggle it if ARG is `toggle'. | |||
| 31515 | 31567 | ||
| 31516 | ;;;*** | 31568 | ;;;*** |
| 31517 | 31569 | ||
| 31518 | ;;;### (autoloads nil "woman" "woman.el" (21607 54478 800121 42000)) | 31570 | ;;;### (autoloads nil "woman" "woman.el" (21604 48550 445934 230000)) |
| 31519 | ;;; Generated autoloads from woman.el | 31571 | ;;; Generated autoloads from woman.el |
| 31520 | (push (purecopy '(woman 0 551)) package--builtin-versions) | 31572 | (push (purecopy '(woman 0 551)) package--builtin-versions) |
| 31521 | 31573 | ||
| @@ -31564,7 +31616,7 @@ Default bookmark handler for Woman buffers. | |||
| 31564 | 31616 | ||
| 31565 | ;;;*** | 31617 | ;;;*** |
| 31566 | 31618 | ||
| 31567 | ;;;### (autoloads nil "xml" "xml.el" (21607 54478 800121 42000)) | 31619 | ;;;### (autoloads nil "xml" "xml.el" (21604 48550 445934 230000)) |
| 31568 | ;;; Generated autoloads from xml.el | 31620 | ;;; Generated autoloads from xml.el |
| 31569 | 31621 | ||
| 31570 | (autoload 'xml-parse-file "xml" "\ | 31622 | (autoload 'xml-parse-file "xml" "\ |
| @@ -31620,8 +31672,8 @@ Both features can be combined by providing a cons cell | |||
| 31620 | 31672 | ||
| 31621 | ;;;*** | 31673 | ;;;*** |
| 31622 | 31674 | ||
| 31623 | ;;;### (autoloads nil "xmltok" "nxml/xmltok.el" (21607 54478 300138 | 31675 | ;;;### (autoloads nil "xmltok" "nxml/xmltok.el" (21604 48550 241934 |
| 31624 | ;;;;;; 641000)) | 31676 | ;;;;;; 223000)) |
| 31625 | ;;; Generated autoloads from nxml/xmltok.el | 31677 | ;;; Generated autoloads from nxml/xmltok.el |
| 31626 | 31678 | ||
| 31627 | (autoload 'xmltok-get-declared-encoding-position "xmltok" "\ | 31679 | (autoload 'xmltok-get-declared-encoding-position "xmltok" "\ |
| @@ -31639,8 +31691,52 @@ If LIMIT is non-nil, then do not consider characters beyond LIMIT. | |||
| 31639 | 31691 | ||
| 31640 | ;;;*** | 31692 | ;;;*** |
| 31641 | 31693 | ||
| 31642 | ;;;### (autoloads nil "xt-mouse" "xt-mouse.el" (21607 54478 800121 | 31694 | ;;;### (autoloads nil "xref" "progmodes/xref.el" (21660 28432 372929 |
| 31643 | ;;;;;; 42000)) | 31695 | ;;;;;; 801000)) |
| 31696 | ;;; Generated autoloads from progmodes/xref.el | ||
| 31697 | |||
| 31698 | (autoload 'xref-pop-marker-stack "xref" "\ | ||
| 31699 | Pop back to where \\[xref-find-definitions] was last invoked. | ||
| 31700 | |||
| 31701 | \(fn)" t nil) | ||
| 31702 | |||
| 31703 | (autoload 'xref-find-definitions "xref" "\ | ||
| 31704 | Find the definition of the identifier at point. | ||
| 31705 | With prefix argument, prompt for the identifier. | ||
| 31706 | |||
| 31707 | \(fn IDENTIFIER)" t nil) | ||
| 31708 | |||
| 31709 | (autoload 'xref-find-definitions-other-window "xref" "\ | ||
| 31710 | Like `xref-find-definitions' but switch to the other window. | ||
| 31711 | |||
| 31712 | \(fn IDENTIFIER)" t nil) | ||
| 31713 | |||
| 31714 | (autoload 'xref-find-definitions-other-frame "xref" "\ | ||
| 31715 | Like `xref-find-definitions' but switch to the other frame. | ||
| 31716 | |||
| 31717 | \(fn IDENTIFIER)" t nil) | ||
| 31718 | |||
| 31719 | (autoload 'xref-find-references "xref" "\ | ||
| 31720 | Find references to the identifier at point. | ||
| 31721 | With prefix argument, prompt for the identifier. | ||
| 31722 | |||
| 31723 | \(fn IDENTIFIER)" t nil) | ||
| 31724 | |||
| 31725 | (autoload 'xref-find-apropos "xref" "\ | ||
| 31726 | Find all meaningful symbols that match PATTERN. | ||
| 31727 | The argument has the same meaning as in `apropos'. | ||
| 31728 | |||
| 31729 | \(fn PATTERN)" t nil) | ||
| 31730 | (define-key esc-map "." #'xref-find-definitions) | ||
| 31731 | (define-key esc-map "," #'xref-pop-marker-stack) | ||
| 31732 | (define-key esc-map [?\C-.] #'xref-find-apropos) | ||
| 31733 | (define-key ctl-x-4-map "." #'xref-find-definitions-other-window) | ||
| 31734 | (define-key ctl-x-5-map "." #'xref-find-definitions-other-frame) | ||
| 31735 | |||
| 31736 | ;;;*** | ||
| 31737 | |||
| 31738 | ;;;### (autoloads nil "xt-mouse" "xt-mouse.el" (21604 48550 445934 | ||
| 31739 | ;;;;;; 230000)) | ||
| 31644 | ;;; Generated autoloads from xt-mouse.el | 31740 | ;;; Generated autoloads from xt-mouse.el |
| 31645 | 31741 | ||
| 31646 | (defvar xterm-mouse-mode nil "\ | 31742 | (defvar xterm-mouse-mode nil "\ |
| @@ -31669,7 +31765,7 @@ down the SHIFT key while pressing the mouse button. | |||
| 31669 | 31765 | ||
| 31670 | ;;;*** | 31766 | ;;;*** |
| 31671 | 31767 | ||
| 31672 | ;;;### (autoloads nil "yenc" "gnus/yenc.el" (21607 54478 300138 641000)) | 31768 | ;;;### (autoloads nil "yenc" "gnus/yenc.el" (21604 48550 121934 218000)) |
| 31673 | ;;; Generated autoloads from gnus/yenc.el | 31769 | ;;; Generated autoloads from gnus/yenc.el |
| 31674 | 31770 | ||
| 31675 | (autoload 'yenc-decode-region "yenc" "\ | 31771 | (autoload 'yenc-decode-region "yenc" "\ |
| @@ -31684,7 +31780,7 @@ Extract file name from an yenc header. | |||
| 31684 | 31780 | ||
| 31685 | ;;;*** | 31781 | ;;;*** |
| 31686 | 31782 | ||
| 31687 | ;;;### (autoloads nil "zone" "play/zone.el" (21607 54478 800121 42000)) | 31783 | ;;;### (autoloads nil "zone" "play/zone.el" (21604 48550 309934 225000)) |
| 31688 | ;;; Generated autoloads from play/zone.el | 31784 | ;;; Generated autoloads from play/zone.el |
| 31689 | 31785 | ||
| 31690 | (autoload 'zone "zone" "\ | 31786 | (autoload 'zone "zone" "\ |
| @@ -31730,9 +31826,11 @@ Zone out, completely. | |||
| 31730 | ;;;;;; "cedet/ede/system.el" "cedet/ede/util.el" "cedet/semantic/analyze.el" | 31826 | ;;;;;; "cedet/ede/system.el" "cedet/ede/util.el" "cedet/semantic/analyze.el" |
| 31731 | ;;;;;; "cedet/semantic/analyze/complete.el" "cedet/semantic/analyze/debug.el" | 31827 | ;;;;;; "cedet/semantic/analyze/complete.el" "cedet/semantic/analyze/debug.el" |
| 31732 | ;;;;;; "cedet/semantic/analyze/fcn.el" "cedet/semantic/analyze/refs.el" | 31828 | ;;;;;; "cedet/semantic/analyze/fcn.el" "cedet/semantic/analyze/refs.el" |
| 31733 | ;;;;;; "cedet/semantic/bovine.el" "cedet/semantic/bovine/c.el" "cedet/semantic/bovine/debug.el" | 31829 | ;;;;;; "cedet/semantic/bovine.el" "cedet/semantic/bovine/c-by.el" |
| 31830 | ;;;;;; "cedet/semantic/bovine/c.el" "cedet/semantic/bovine/debug.el" | ||
| 31734 | ;;;;;; "cedet/semantic/bovine/el.el" "cedet/semantic/bovine/gcc.el" | 31831 | ;;;;;; "cedet/semantic/bovine/el.el" "cedet/semantic/bovine/gcc.el" |
| 31735 | ;;;;;; "cedet/semantic/bovine/make.el" "cedet/semantic/bovine/scm.el" | 31832 | ;;;;;; "cedet/semantic/bovine/make-by.el" "cedet/semantic/bovine/make.el" |
| 31833 | ;;;;;; "cedet/semantic/bovine/scm-by.el" "cedet/semantic/bovine/scm.el" | ||
| 31736 | ;;;;;; "cedet/semantic/chart.el" "cedet/semantic/complete.el" "cedet/semantic/ctxt.el" | 31834 | ;;;;;; "cedet/semantic/chart.el" "cedet/semantic/complete.el" "cedet/semantic/ctxt.el" |
| 31737 | ;;;;;; "cedet/semantic/db-debug.el" "cedet/semantic/db-ebrowse.el" | 31835 | ;;;;;; "cedet/semantic/db-debug.el" "cedet/semantic/db-ebrowse.el" |
| 31738 | ;;;;;; "cedet/semantic/db-el.el" "cedet/semantic/db-file.el" "cedet/semantic/db-find.el" | 31836 | ;;;;;; "cedet/semantic/db-el.el" "cedet/semantic/db-file.el" "cedet/semantic/db-find.el" |
| @@ -31755,38 +31853,41 @@ Zone out, completely. | |||
| 31755 | ;;;;;; "cedet/semantic/tag.el" "cedet/semantic/texi.el" "cedet/semantic/util-modes.el" | 31853 | ;;;;;; "cedet/semantic/tag.el" "cedet/semantic/texi.el" "cedet/semantic/util-modes.el" |
| 31756 | ;;;;;; "cedet/semantic/util.el" "cedet/semantic/wisent.el" "cedet/semantic/wisent/comp.el" | 31854 | ;;;;;; "cedet/semantic/util.el" "cedet/semantic/wisent.el" "cedet/semantic/wisent/comp.el" |
| 31757 | ;;;;;; "cedet/semantic/wisent/java-tags.el" "cedet/semantic/wisent/javascript.el" | 31855 | ;;;;;; "cedet/semantic/wisent/java-tags.el" "cedet/semantic/wisent/javascript.el" |
| 31758 | ;;;;;; "cedet/semantic/wisent/python.el" "cedet/semantic/wisent/wisent.el" | 31856 | ;;;;;; "cedet/semantic/wisent/javat-wy.el" "cedet/semantic/wisent/js-wy.el" |
| 31759 | ;;;;;; "cedet/srecode/args.el" "cedet/srecode/compile.el" "cedet/srecode/cpp.el" | 31857 | ;;;;;; "cedet/semantic/wisent/python-wy.el" "cedet/semantic/wisent/python.el" |
| 31760 | ;;;;;; "cedet/srecode/ctxt.el" "cedet/srecode/dictionary.el" "cedet/srecode/document.el" | 31858 | ;;;;;; "cedet/semantic/wisent/wisent.el" "cedet/srecode/args.el" |
| 31859 | ;;;;;; "cedet/srecode/compile.el" "cedet/srecode/cpp.el" "cedet/srecode/ctxt.el" | ||
| 31860 | ;;;;;; "cedet/srecode/dictionary.el" "cedet/srecode/document.el" | ||
| 31761 | ;;;;;; "cedet/srecode/el.el" "cedet/srecode/expandproto.el" "cedet/srecode/extract.el" | 31861 | ;;;;;; "cedet/srecode/el.el" "cedet/srecode/expandproto.el" "cedet/srecode/extract.el" |
| 31762 | ;;;;;; "cedet/srecode/fields.el" "cedet/srecode/filters.el" "cedet/srecode/find.el" | 31862 | ;;;;;; "cedet/srecode/fields.el" "cedet/srecode/filters.el" "cedet/srecode/find.el" |
| 31763 | ;;;;;; "cedet/srecode/getset.el" "cedet/srecode/insert.el" "cedet/srecode/java.el" | 31863 | ;;;;;; "cedet/srecode/getset.el" "cedet/srecode/insert.el" "cedet/srecode/java.el" |
| 31764 | ;;;;;; "cedet/srecode/loaddefs.el" "cedet/srecode/map.el" "cedet/srecode/mode.el" | 31864 | ;;;;;; "cedet/srecode/loaddefs.el" "cedet/srecode/map.el" "cedet/srecode/mode.el" |
| 31765 | ;;;;;; "cedet/srecode/semantic.el" "cedet/srecode/srt.el" "cedet/srecode/table.el" | 31865 | ;;;;;; "cedet/srecode/semantic.el" "cedet/srecode/srt-wy.el" "cedet/srecode/srt.el" |
| 31766 | ;;;;;; "cedet/srecode/template.el" "cedet/srecode/texi.el" "cus-dep.el" | 31866 | ;;;;;; "cedet/srecode/table.el" "cedet/srecode/template.el" "cedet/srecode/texi.el" |
| 31767 | ;;;;;; "dframe.el" "dired-aux.el" "dired-x.el" "dom.el" "dos-fns.el" | 31867 | ;;;;;; "cus-dep.el" "cus-load.el" "dframe.el" "dired-aux.el" "dired-x.el" |
| 31768 | ;;;;;; "dos-vars.el" "dos-w32.el" "dynamic-setting.el" "emacs-lisp/avl-tree.el" | 31868 | ;;;;;; "dom.el" "dos-fns.el" "dos-vars.el" "dos-w32.el" "dynamic-setting.el" |
| 31769 | ;;;;;; "emacs-lisp/bindat.el" "emacs-lisp/byte-opt.el" "emacs-lisp/cl-extra.el" | 31869 | ;;;;;; "emacs-lisp/avl-tree.el" "emacs-lisp/bindat.el" "emacs-lisp/byte-opt.el" |
| 31770 | ;;;;;; "emacs-lisp/cl-loaddefs.el" "emacs-lisp/cl-macs.el" "emacs-lisp/cl-seq.el" | 31870 | ;;;;;; "emacs-lisp/cl-extra.el" "emacs-lisp/cl-loaddefs.el" "emacs-lisp/cl-macs.el" |
| 31771 | ;;;;;; "emacs-lisp/cl.el" "emacs-lisp/eieio-base.el" "emacs-lisp/eieio-custom.el" | 31871 | ;;;;;; "emacs-lisp/cl-seq.el" "emacs-lisp/cl.el" "emacs-lisp/eieio-base.el" |
| 31772 | ;;;;;; "emacs-lisp/eieio-datadebug.el" "emacs-lisp/eieio-opt.el" | 31872 | ;;;;;; "emacs-lisp/eieio-custom.el" "emacs-lisp/eieio-datadebug.el" |
| 31773 | ;;;;;; "emacs-lisp/eieio-speedbar.el" "emacs-lisp/lisp-mnt.el" "emacs-lisp/package-x.el" | 31873 | ;;;;;; "emacs-lisp/eieio-opt.el" "emacs-lisp/eieio-speedbar.el" |
| 31774 | ;;;;;; "emacs-lisp/smie.el" "emacs-lisp/subr-x.el" "emacs-lisp/tcover-ses.el" | 31874 | ;;;;;; "emacs-lisp/lisp-mnt.el" "emacs-lisp/package-x.el" "emacs-lisp/smie.el" |
| 31775 | ;;;;;; "emacs-lisp/tcover-unsafep.el" "emulation/cua-gmrk.el" "emulation/edt-lk201.el" | 31875 | ;;;;;; "emacs-lisp/subr-x.el" "emacs-lisp/tcover-ses.el" "emacs-lisp/tcover-unsafep.el" |
| 31776 | ;;;;;; "emulation/edt-mapper.el" "emulation/edt-pc.el" "emulation/edt-vt100.el" | 31876 | ;;;;;; "emulation/cua-gmrk.el" "emulation/edt-lk201.el" "emulation/edt-mapper.el" |
| 31777 | ;;;;;; "emulation/viper-cmd.el" "emulation/viper-ex.el" "emulation/viper-init.el" | 31877 | ;;;;;; "emulation/edt-pc.el" "emulation/edt-vt100.el" "emulation/viper-cmd.el" |
| 31778 | ;;;;;; "emulation/viper-keym.el" "emulation/viper-macs.el" "emulation/viper-mous.el" | 31878 | ;;;;;; "emulation/viper-ex.el" "emulation/viper-init.el" "emulation/viper-keym.el" |
| 31779 | ;;;;;; "emulation/viper-util.el" "erc/erc-backend.el" "erc/erc-goodies.el" | 31879 | ;;;;;; "emulation/viper-macs.el" "emulation/viper-mous.el" "emulation/viper-util.el" |
| 31780 | ;;;;;; "erc/erc-ibuffer.el" "erc/erc-lang.el" "eshell/em-alias.el" | 31880 | ;;;;;; "erc/erc-backend.el" "erc/erc-goodies.el" "erc/erc-ibuffer.el" |
| 31781 | ;;;;;; "eshell/em-banner.el" "eshell/em-basic.el" "eshell/em-cmpl.el" | 31881 | ;;;;;; "erc/erc-lang.el" "eshell/em-alias.el" "eshell/em-banner.el" |
| 31782 | ;;;;;; "eshell/em-dirs.el" "eshell/em-glob.el" "eshell/em-hist.el" | 31882 | ;;;;;; "eshell/em-basic.el" "eshell/em-cmpl.el" "eshell/em-dirs.el" |
| 31783 | ;;;;;; "eshell/em-ls.el" "eshell/em-pred.el" "eshell/em-prompt.el" | 31883 | ;;;;;; "eshell/em-glob.el" "eshell/em-hist.el" "eshell/em-ls.el" |
| 31784 | ;;;;;; "eshell/em-rebind.el" "eshell/em-script.el" "eshell/em-smart.el" | 31884 | ;;;;;; "eshell/em-pred.el" "eshell/em-prompt.el" "eshell/em-rebind.el" |
| 31785 | ;;;;;; "eshell/em-term.el" "eshell/em-tramp.el" "eshell/em-unix.el" | 31885 | ;;;;;; "eshell/em-script.el" "eshell/em-smart.el" "eshell/em-term.el" |
| 31786 | ;;;;;; "eshell/em-xtra.el" "eshell/esh-arg.el" "eshell/esh-cmd.el" | 31886 | ;;;;;; "eshell/em-tramp.el" "eshell/em-unix.el" "eshell/em-xtra.el" |
| 31787 | ;;;;;; "eshell/esh-ext.el" "eshell/esh-groups.el" "eshell/esh-io.el" | 31887 | ;;;;;; "eshell/esh-arg.el" "eshell/esh-cmd.el" "eshell/esh-ext.el" |
| 31788 | ;;;;;; "eshell/esh-module.el" "eshell/esh-opt.el" "eshell/esh-proc.el" | 31888 | ;;;;;; "eshell/esh-groups.el" "eshell/esh-io.el" "eshell/esh-module.el" |
| 31789 | ;;;;;; "eshell/esh-util.el" "eshell/esh-var.el" "ezimage.el" "format-spec.el" | 31889 | ;;;;;; "eshell/esh-opt.el" "eshell/esh-proc.el" "eshell/esh-util.el" |
| 31890 | ;;;;;; "eshell/esh-var.el" "ezimage.el" "finder-inf.el" "format-spec.el" | ||
| 31790 | ;;;;;; "fringe.el" "generic-x.el" "gnus/compface.el" "gnus/gnus-async.el" | 31891 | ;;;;;; "fringe.el" "generic-x.el" "gnus/compface.el" "gnus/gnus-async.el" |
| 31791 | ;;;;;; "gnus/gnus-bcklg.el" "gnus/gnus-cite.el" "gnus/gnus-cloud.el" | 31892 | ;;;;;; "gnus/gnus-bcklg.el" "gnus/gnus-cite.el" "gnus/gnus-cloud.el" |
| 31792 | ;;;;;; "gnus/gnus-cus.el" "gnus/gnus-demon.el" "gnus/gnus-dup.el" | 31893 | ;;;;;; "gnus/gnus-cus.el" "gnus/gnus-demon.el" "gnus/gnus-dup.el" |
| @@ -31810,28 +31911,42 @@ Zone out, completely. | |||
| 31810 | ;;;;;; "gnus/smime.el" "gnus/spam-stat.el" "gnus/spam-wash.el" "hex-util.el" | 31911 | ;;;;;; "gnus/smime.el" "gnus/spam-stat.el" "gnus/spam-wash.el" "hex-util.el" |
| 31811 | ;;;;;; "hfy-cmap.el" "ibuf-ext.el" "international/cp51932.el" "international/eucjp-ms.el" | 31912 | ;;;;;; "hfy-cmap.el" "ibuf-ext.el" "international/cp51932.el" "international/eucjp-ms.el" |
| 31812 | ;;;;;; "international/fontset.el" "international/iso-ascii.el" "international/ja-dic-cnv.el" | 31913 | ;;;;;; "international/fontset.el" "international/iso-ascii.el" "international/ja-dic-cnv.el" |
| 31813 | ;;;;;; "international/ja-dic-utl.el" "international/ogonek.el" "kermit.el" | 31914 | ;;;;;; "international/ja-dic-utl.el" "international/ogonek.el" "international/uni-bidi.el" |
| 31814 | ;;;;;; "language/hanja-util.el" "language/thai-word.el" "ldefs-boot.el" | 31915 | ;;;;;; "international/uni-brackets.el" "international/uni-category.el" |
| 31815 | ;;;;;; "leim/quail/arabic.el" "leim/quail/croatian.el" "leim/quail/cyril-jis.el" | 31916 | ;;;;;; "international/uni-combining.el" "international/uni-comment.el" |
| 31816 | ;;;;;; "leim/quail/cyrillic.el" "leim/quail/czech.el" "leim/quail/ethiopic.el" | 31917 | ;;;;;; "international/uni-decimal.el" "international/uni-decomposition.el" |
| 31817 | ;;;;;; "leim/quail/georgian.el" "leim/quail/greek.el" "leim/quail/hanja-jis.el" | 31918 | ;;;;;; "international/uni-digit.el" "international/uni-lowercase.el" |
| 31818 | ;;;;;; "leim/quail/hanja.el" "leim/quail/hanja3.el" "leim/quail/hebrew.el" | 31919 | ;;;;;; "international/uni-mirrored.el" "international/uni-name.el" |
| 31819 | ;;;;;; "leim/quail/indian.el" "leim/quail/ipa-praat.el" "leim/quail/ipa.el" | 31920 | ;;;;;; "international/uni-numeric.el" "international/uni-old-name.el" |
| 31820 | ;;;;;; "leim/quail/japanese.el" "leim/quail/lao.el" "leim/quail/latin-alt.el" | 31921 | ;;;;;; "international/uni-titlecase.el" "international/uni-uppercase.el" |
| 31821 | ;;;;;; "leim/quail/latin-ltx.el" "leim/quail/latin-post.el" "leim/quail/latin-pre.el" | 31922 | ;;;;;; "kermit.el" "language/hanja-util.el" "language/thai-word.el" |
| 31822 | ;;;;;; "leim/quail/lrt.el" "leim/quail/persian.el" "leim/quail/py-punct.el" | 31923 | ;;;;;; "ldefs-boot.el" "leim/ja-dic/ja-dic.el" "leim/quail/4Corner.el" |
| 31823 | ;;;;;; "leim/quail/pypunct-b5.el" "leim/quail/rfc1345.el" "leim/quail/sgml-input.el" | 31924 | ;;;;;; "leim/quail/ARRAY30.el" "leim/quail/CCDOSPY.el" "leim/quail/CTLau-b5.el" |
| 31925 | ;;;;;; "leim/quail/CTLau.el" "leim/quail/ECDICT.el" "leim/quail/ETZY.el" | ||
| 31926 | ;;;;;; "leim/quail/PY-b5.el" "leim/quail/PY.el" "leim/quail/Punct-b5.el" | ||
| 31927 | ;;;;;; "leim/quail/Punct.el" "leim/quail/QJ-b5.el" "leim/quail/QJ.el" | ||
| 31928 | ;;;;;; "leim/quail/SW.el" "leim/quail/TONEPY.el" "leim/quail/ZIRANMA.el" | ||
| 31929 | ;;;;;; "leim/quail/ZOZY.el" "leim/quail/arabic.el" "leim/quail/croatian.el" | ||
| 31930 | ;;;;;; "leim/quail/cyril-jis.el" "leim/quail/cyrillic.el" "leim/quail/czech.el" | ||
| 31931 | ;;;;;; "leim/quail/ethiopic.el" "leim/quail/georgian.el" "leim/quail/greek.el" | ||
| 31932 | ;;;;;; "leim/quail/hanja-jis.el" "leim/quail/hanja.el" "leim/quail/hanja3.el" | ||
| 31933 | ;;;;;; "leim/quail/hebrew.el" "leim/quail/indian.el" "leim/quail/ipa-praat.el" | ||
| 31934 | ;;;;;; "leim/quail/ipa.el" "leim/quail/japanese.el" "leim/quail/lao.el" | ||
| 31935 | ;;;;;; "leim/quail/latin-alt.el" "leim/quail/latin-ltx.el" "leim/quail/latin-post.el" | ||
| 31936 | ;;;;;; "leim/quail/latin-pre.el" "leim/quail/lrt.el" "leim/quail/persian.el" | ||
| 31937 | ;;;;;; "leim/quail/py-punct.el" "leim/quail/pypunct-b5.el" "leim/quail/quick-b5.el" | ||
| 31938 | ;;;;;; "leim/quail/quick-cns.el" "leim/quail/rfc1345.el" "leim/quail/sgml-input.el" | ||
| 31824 | ;;;;;; "leim/quail/sisheng.el" "leim/quail/slovak.el" "leim/quail/symbol-ksc.el" | 31939 | ;;;;;; "leim/quail/sisheng.el" "leim/quail/slovak.el" "leim/quail/symbol-ksc.el" |
| 31825 | ;;;;;; "leim/quail/thai.el" "leim/quail/tibetan.el" "leim/quail/viqr.el" | 31940 | ;;;;;; "leim/quail/thai.el" "leim/quail/tibetan.el" "leim/quail/tsang-b5.el" |
| 31826 | ;;;;;; "leim/quail/vntelex.el" "leim/quail/vnvni.el" "leim/quail/welsh.el" | 31941 | ;;;;;; "leim/quail/tsang-cns.el" "leim/quail/viqr.el" "leim/quail/vntelex.el" |
| 31827 | ;;;;;; "loadup.el" "mail/blessmail.el" "mail/mailheader.el" "mail/mspools.el" | 31942 | ;;;;;; "leim/quail/vnvni.el" "leim/quail/welsh.el" "loadup.el" "mail/blessmail.el" |
| 31828 | ;;;;;; "mail/rfc2368.el" "mail/rfc822.el" "mail/rmail-spam-filter.el" | 31943 | ;;;;;; "mail/mailheader.el" "mail/mspools.el" "mail/rfc2368.el" |
| 31829 | ;;;;;; "mail/rmailedit.el" "mail/rmailkwd.el" "mail/rmailmm.el" | 31944 | ;;;;;; "mail/rfc822.el" "mail/rmail-spam-filter.el" "mail/rmailedit.el" |
| 31830 | ;;;;;; "mail/rmailmsc.el" "mail/rmailsort.el" "mail/rmailsum.el" | 31945 | ;;;;;; "mail/rmailkwd.el" "mail/rmailmm.el" "mail/rmailmsc.el" "mail/rmailsort.el" |
| 31831 | ;;;;;; "mail/undigest.el" "mh-e/mh-acros.el" "mh-e/mh-alias.el" | 31946 | ;;;;;; "mail/rmailsum.el" "mail/undigest.el" "mh-e/mh-acros.el" |
| 31832 | ;;;;;; "mh-e/mh-buffers.el" "mh-e/mh-compat.el" "mh-e/mh-funcs.el" | 31947 | ;;;;;; "mh-e/mh-alias.el" "mh-e/mh-buffers.el" "mh-e/mh-compat.el" |
| 31833 | ;;;;;; "mh-e/mh-gnus.el" "mh-e/mh-identity.el" "mh-e/mh-inc.el" | 31948 | ;;;;;; "mh-e/mh-funcs.el" "mh-e/mh-gnus.el" "mh-e/mh-identity.el" |
| 31834 | ;;;;;; "mh-e/mh-junk.el" "mh-e/mh-letter.el" "mh-e/mh-limit.el" | 31949 | ;;;;;; "mh-e/mh-inc.el" "mh-e/mh-junk.el" "mh-e/mh-letter.el" "mh-e/mh-limit.el" |
| 31835 | ;;;;;; "mh-e/mh-loaddefs.el" "mh-e/mh-mime.el" "mh-e/mh-print.el" | 31950 | ;;;;;; "mh-e/mh-loaddefs.el" "mh-e/mh-mime.el" "mh-e/mh-print.el" |
| 31836 | ;;;;;; "mh-e/mh-scan.el" "mh-e/mh-search.el" "mh-e/mh-seq.el" "mh-e/mh-show.el" | 31951 | ;;;;;; "mh-e/mh-scan.el" "mh-e/mh-search.el" "mh-e/mh-seq.el" "mh-e/mh-show.el" |
| 31837 | ;;;;;; "mh-e/mh-speed.el" "mh-e/mh-thread.el" "mh-e/mh-tool-bar.el" | 31952 | ;;;;;; "mh-e/mh-speed.el" "mh-e/mh-thread.el" "mh-e/mh-tool-bar.el" |
| @@ -31900,8 +32015,8 @@ Zone out, completely. | |||
| 31900 | ;;;;;; "vc/ediff-ptch.el" "vc/ediff-vers.el" "vc/ediff-wind.el" | 32015 | ;;;;;; "vc/ediff-ptch.el" "vc/ediff-vers.el" "vc/ediff-wind.el" |
| 31901 | ;;;;;; "vc/pcvs-info.el" "vc/pcvs-parse.el" "vc/pcvs-util.el" "vc/vc-dav.el" | 32016 | ;;;;;; "vc/pcvs-info.el" "vc/pcvs-parse.el" "vc/pcvs-util.el" "vc/vc-dav.el" |
| 31902 | ;;;;;; "vc/vc-filewise.el" "vcursor.el" "vt-control.el" "vt100-led.el" | 32017 | ;;;;;; "vc/vc-filewise.el" "vcursor.el" "vt-control.el" "vt100-led.el" |
| 31903 | ;;;;;; "w32-fns.el" "w32-vars.el" "x-dnd.el") (21628 46363 926675 | 32018 | ;;;;;; "w32-fns.el" "w32-vars.el" "x-dnd.el") (21660 28703 181624 |
| 31904 | ;;;;;; 999000)) | 32019 | ;;;;;; 391000)) |
| 31905 | 32020 | ||
| 31906 | ;;;*** | 32021 | ;;;*** |
| 31907 | 32022 | ||
diff --git a/lisp/let-alist.el b/lisp/let-alist.el index 7271e391f47..d2145287c85 100644 --- a/lisp/let-alist.el +++ b/lisp/let-alist.el | |||
| @@ -77,7 +77,7 @@ symbol, and each cdr is the same symbol without the `.'." | |||
| 77 | (mapcar #'let-alist--deep-dot-search data))))) | 77 | (mapcar #'let-alist--deep-dot-search data))))) |
| 78 | 78 | ||
| 79 | (defun let-alist--access-sexp (symbol variable) | 79 | (defun let-alist--access-sexp (symbol variable) |
| 80 | "Return a sexp used to acess SYMBOL inside VARIABLE." | 80 | "Return a sexp used to access SYMBOL inside VARIABLE." |
| 81 | (let* ((clean (let-alist--remove-dot symbol)) | 81 | (let* ((clean (let-alist--remove-dot symbol)) |
| 82 | (name (symbol-name clean))) | 82 | (name (symbol-name clean))) |
| 83 | (if (string-match "\\`\\." name) | 83 | (if (string-match "\\`\\." name) |
diff --git a/lisp/progmodes/elisp-mode.el b/lisp/progmodes/elisp-mode.el index ba70f903b4b..ef619f0899a 100644 --- a/lisp/progmodes/elisp-mode.el +++ b/lisp/progmodes/elisp-mode.el | |||
| @@ -227,10 +227,15 @@ Blank lines separate paragraphs. Semicolons start comments. | |||
| 227 | 227 | ||
| 228 | \\{emacs-lisp-mode-map}" | 228 | \\{emacs-lisp-mode-map}" |
| 229 | :group 'lisp | 229 | :group 'lisp |
| 230 | (defvar xref-find-function) | ||
| 231 | (defvar xref-identifier-completion-table-function) | ||
| 230 | (lisp-mode-variables nil nil 'elisp) | 232 | (lisp-mode-variables nil nil 'elisp) |
| 231 | (setq imenu-case-fold-search nil) | 233 | (setq imenu-case-fold-search nil) |
| 232 | (setq-local eldoc-documentation-function | 234 | (setq-local eldoc-documentation-function |
| 233 | #'elisp-eldoc-documentation-function) | 235 | #'elisp-eldoc-documentation-function) |
| 236 | (setq-local xref-find-function #'elisp-xref-find) | ||
| 237 | (setq-local xref-identifier-completion-table-function | ||
| 238 | #'elisp--xref-identifier-completion-table) | ||
| 234 | (add-hook 'completion-at-point-functions | 239 | (add-hook 'completion-at-point-functions |
| 235 | #'elisp-completion-at-point nil 'local)) | 240 | #'elisp-completion-at-point nil 'local)) |
| 236 | 241 | ||
| @@ -414,17 +419,39 @@ It can be quoted, or be inside a quoted form." | |||
| 414 | 419 | ||
| 415 | (declare-function find-library-name "find-func" (library)) | 420 | (declare-function find-library-name "find-func" (library)) |
| 416 | 421 | ||
| 422 | (defvar elisp--identifier-types '(defun defvar feature defface)) | ||
| 423 | |||
| 424 | (defun elisp--identifier-location (type sym) | ||
| 425 | (pcase (cons type sym) | ||
| 426 | (`(defun . ,(pred fboundp)) | ||
| 427 | (find-definition-noselect sym nil)) | ||
| 428 | (`(defvar . ,(pred boundp)) | ||
| 429 | (find-definition-noselect sym 'defvar)) | ||
| 430 | (`(defface . ,(pred facep)) | ||
| 431 | (find-definition-noselect sym 'defface)) | ||
| 432 | (`(feature . ,(pred featurep)) | ||
| 433 | (require 'find-func) | ||
| 434 | (cons (find-file-noselect (find-library-name | ||
| 435 | (symbol-name sym))) | ||
| 436 | 1)))) | ||
| 437 | |||
| 417 | (defun elisp--company-location (str) | 438 | (defun elisp--company-location (str) |
| 418 | (let ((sym (intern-soft str))) | 439 | (catch 'res |
| 419 | (cond | 440 | (let ((sym (intern-soft str))) |
| 420 | ((fboundp sym) (find-definition-noselect sym nil)) | 441 | (when sym |
| 421 | ((boundp sym) (find-definition-noselect sym 'defvar)) | 442 | (dolist (type elisp--identifier-types) |
| 422 | ((featurep sym) | 443 | (let ((loc (elisp--identifier-location type sym))) |
| 423 | (require 'find-func) | 444 | (and loc (throw 'res loc)))))))) |
| 424 | (cons (find-file-noselect (find-library-name | 445 | |
| 425 | (symbol-name sym))) | 446 | (defvar elisp--identifier-completion-table |
| 426 | 0)) | 447 | (apply-partially #'completion-table-with-predicate |
| 427 | ((facep sym) (find-definition-noselect sym 'defface))))) | 448 | obarray |
| 449 | (lambda (sym) | ||
| 450 | (or (boundp sym) | ||
| 451 | (fboundp sym) | ||
| 452 | (featurep sym) | ||
| 453 | (symbol-plist sym))) | ||
| 454 | 'strict)) | ||
| 428 | 455 | ||
| 429 | (defun elisp-completion-at-point () | 456 | (defun elisp-completion-at-point () |
| 430 | "Function used for `completion-at-point-functions' in `emacs-lisp-mode'." | 457 | "Function used for `completion-at-point-functions' in `emacs-lisp-mode'." |
| @@ -466,13 +493,8 @@ It can be quoted, or be inside a quoted form." | |||
| 466 | :company-docsig #'elisp--company-doc-string | 493 | :company-docsig #'elisp--company-doc-string |
| 467 | :company-location #'elisp--company-location)) | 494 | :company-location #'elisp--company-location)) |
| 468 | ((elisp--form-quoted-p beg) | 495 | ((elisp--form-quoted-p beg) |
| 469 | (list nil obarray | 496 | ;; Don't include all symbols (bug#16646). |
| 470 | ;; Don't include all symbols | 497 | (list nil elisp--identifier-completion-table |
| 471 | ;; (bug#16646). | ||
| 472 | :predicate (lambda (sym) | ||
| 473 | (or (boundp sym) | ||
| 474 | (fboundp sym) | ||
| 475 | (symbol-plist sym))) | ||
| 476 | :annotation-function | 498 | :annotation-function |
| 477 | (lambda (str) (if (fboundp (intern-soft str)) " <f>")) | 499 | (lambda (str) (if (fboundp (intern-soft str)) " <f>")) |
| 478 | :company-doc-buffer #'elisp--company-doc-buffer | 500 | :company-doc-buffer #'elisp--company-doc-buffer |
| @@ -548,6 +570,50 @@ It can be quoted, or be inside a quoted form." | |||
| 548 | (define-obsolete-function-alias | 570 | (define-obsolete-function-alias |
| 549 | 'lisp-completion-at-point 'elisp-completion-at-point "25.1") | 571 | 'lisp-completion-at-point 'elisp-completion-at-point "25.1") |
| 550 | 572 | ||
| 573 | ;;; Xref backend | ||
| 574 | |||
| 575 | (declare-function xref-make-buffer-location "xref" (buffer position)) | ||
| 576 | (declare-function xref-make-bogus-location "xref" (message)) | ||
| 577 | (declare-function xref-make "xref" (description location)) | ||
| 578 | |||
| 579 | (defun elisp-xref-find (action id) | ||
| 580 | (pcase action | ||
| 581 | (`definitions | ||
| 582 | (let ((sym (intern-soft id))) | ||
| 583 | (when sym | ||
| 584 | (elisp--xref-find-definitions sym)))) | ||
| 585 | (`apropos | ||
| 586 | (elisp--xref-find-apropos id)))) | ||
| 587 | |||
| 588 | (defun elisp--xref-find-definitions (symbol) | ||
| 589 | (save-excursion | ||
| 590 | (let (lst) | ||
| 591 | (dolist (type elisp--identifier-types) | ||
| 592 | (let ((loc | ||
| 593 | (condition-case err | ||
| 594 | (let ((buf-pos (elisp--identifier-location type symbol))) | ||
| 595 | (when buf-pos | ||
| 596 | (xref-make-buffer-location (car buf-pos) | ||
| 597 | (or (cdr buf-pos) 1)))) | ||
| 598 | (error | ||
| 599 | (xref-make-bogus-location (error-message-string err)))))) | ||
| 600 | (when loc | ||
| 601 | (push | ||
| 602 | (xref-make (format "(%s %s)" type symbol) | ||
| 603 | loc) | ||
| 604 | lst)))) | ||
| 605 | lst))) | ||
| 606 | |||
| 607 | (defun elisp--xref-find-apropos (regexp) | ||
| 608 | (apply #'nconc | ||
| 609 | (let (lst) | ||
| 610 | (dolist (sym (apropos-internal regexp)) | ||
| 611 | (push (elisp--xref-find-definitions sym) lst)) | ||
| 612 | (nreverse lst)))) | ||
| 613 | |||
| 614 | (defun elisp--xref-identifier-completion-table () | ||
| 615 | elisp--identifier-completion-table) | ||
| 616 | |||
| 551 | ;;; Elisp Interaction mode | 617 | ;;; Elisp Interaction mode |
| 552 | 618 | ||
| 553 | (defvar lisp-interaction-mode-map | 619 | (defvar lisp-interaction-mode-map |
diff --git a/lisp/progmodes/etags.el b/lisp/progmodes/etags.el index b89b4cf0fe5..0be99794356 100644 --- a/lisp/progmodes/etags.el +++ b/lisp/progmodes/etags.el | |||
| @@ -28,6 +28,7 @@ | |||
| 28 | 28 | ||
| 29 | (require 'ring) | 29 | (require 'ring) |
| 30 | (require 'button) | 30 | (require 'button) |
| 31 | (require 'xref) | ||
| 31 | 32 | ||
| 32 | ;;;###autoload | 33 | ;;;###autoload |
| 33 | (defvar tags-file-name nil | 34 | (defvar tags-file-name nil |
| @@ -141,11 +142,8 @@ Otherwise, `find-tag-default' is used." | |||
| 141 | :group 'etags | 142 | :group 'etags |
| 142 | :type '(choice (const nil) function)) | 143 | :type '(choice (const nil) function)) |
| 143 | 144 | ||
| 144 | (defcustom find-tag-marker-ring-length 16 | 145 | (define-obsolete-variable-alias 'find-tag-marker-ring-length |
| 145 | "Length of marker rings `find-tag-marker-ring' and `tags-location-ring'." | 146 | 'xref-marker-ring-length "25.1") |
| 146 | :group 'etags | ||
| 147 | :type 'integer | ||
| 148 | :version "20.3") | ||
| 149 | 147 | ||
| 150 | (defcustom tags-tag-face 'default | 148 | (defcustom tags-tag-face 'default |
| 151 | "Face for tags in the output of `tags-apropos'." | 149 | "Face for tags in the output of `tags-apropos'." |
| @@ -182,15 +180,18 @@ Example value: | |||
| 182 | (sexp :tag "Tags to search"))) | 180 | (sexp :tag "Tags to search"))) |
| 183 | :version "21.1") | 181 | :version "21.1") |
| 184 | 182 | ||
| 185 | (defvar find-tag-marker-ring (make-ring find-tag-marker-ring-length) | 183 | (defvaralias 'find-tag-marker-ring 'xref--marker-ring) |
| 186 | "Ring of markers which are locations from which \\[find-tag] was invoked.") | 184 | (make-obsolete-variable |
| 185 | 'find-tag-marker-ring | ||
| 186 | "use `xref-push-marker-stack' or `xref-pop-marker-stack' instead." | ||
| 187 | "25.1") | ||
| 187 | 188 | ||
| 188 | (defvar default-tags-table-function nil | 189 | (defvar default-tags-table-function nil |
| 189 | "If non-nil, a function to choose a default tags file for a buffer. | 190 | "If non-nil, a function to choose a default tags file for a buffer. |
| 190 | This function receives no arguments and should return the default | 191 | This function receives no arguments and should return the default |
| 191 | tags table file to use for the current buffer.") | 192 | tags table file to use for the current buffer.") |
| 192 | 193 | ||
| 193 | (defvar tags-location-ring (make-ring find-tag-marker-ring-length) | 194 | (defvar tags-location-ring (make-ring xref-marker-ring-length) |
| 194 | "Ring of markers which are locations visited by \\[find-tag]. | 195 | "Ring of markers which are locations visited by \\[find-tag]. |
| 195 | Pop back to the last location with \\[negative-argument] \\[find-tag].") | 196 | Pop back to the last location with \\[negative-argument] \\[find-tag].") |
| 196 | 197 | ||
| @@ -713,15 +714,13 @@ Returns t if it visits a tags table, or nil if there are no more in the list." | |||
| 713 | (interactive) | 714 | (interactive) |
| 714 | ;; Clear out the markers we are throwing away. | 715 | ;; Clear out the markers we are throwing away. |
| 715 | (let ((i 0)) | 716 | (let ((i 0)) |
| 716 | (while (< i find-tag-marker-ring-length) | 717 | (while (< i xref-marker-ring-length) |
| 717 | (if (aref (cddr tags-location-ring) i) | 718 | (if (aref (cddr tags-location-ring) i) |
| 718 | (set-marker (aref (cddr tags-location-ring) i) nil)) | 719 | (set-marker (aref (cddr tags-location-ring) i) nil)) |
| 719 | (if (aref (cddr find-tag-marker-ring) i) | ||
| 720 | (set-marker (aref (cddr find-tag-marker-ring) i) nil)) | ||
| 721 | (setq i (1+ i)))) | 720 | (setq i (1+ i)))) |
| 721 | (xref-clear-marker-stack) | ||
| 722 | (setq tags-file-name nil | 722 | (setq tags-file-name nil |
| 723 | tags-location-ring (make-ring find-tag-marker-ring-length) | 723 | tags-location-ring (make-ring xref-marker-ring-length) |
| 724 | find-tag-marker-ring (make-ring find-tag-marker-ring-length) | ||
| 725 | tags-table-list nil | 724 | tags-table-list nil |
| 726 | tags-table-computed-list nil | 725 | tags-table-computed-list nil |
| 727 | tags-table-computed-list-for nil | 726 | tags-table-computed-list-for nil |
| @@ -780,6 +779,7 @@ tags table and its (recursively) included tags tables." | |||
| 780 | (quit (message "Tags completion table construction aborted.") | 779 | (quit (message "Tags completion table construction aborted.") |
| 781 | (setq tags-completion-table nil))))) | 780 | (setq tags-completion-table nil))))) |
| 782 | 781 | ||
| 782 | ;;;###autoload | ||
| 783 | (defun tags-lazy-completion-table () | 783 | (defun tags-lazy-completion-table () |
| 784 | (let ((buf (current-buffer))) | 784 | (let ((buf (current-buffer))) |
| 785 | (lambda (string pred action) | 785 | (lambda (string pred action) |
| @@ -898,7 +898,7 @@ See documentation of variable `tags-file-name'." | |||
| 898 | ;; Run the user's hook. Do we really want to do this for pop? | 898 | ;; Run the user's hook. Do we really want to do this for pop? |
| 899 | (run-hooks 'local-find-tag-hook)))) | 899 | (run-hooks 'local-find-tag-hook)))) |
| 900 | ;; Record whence we came. | 900 | ;; Record whence we came. |
| 901 | (ring-insert find-tag-marker-ring (point-marker)) | 901 | (xref-push-marker-stack) |
| 902 | (if (and next-p last-tag) | 902 | (if (and next-p last-tag) |
| 903 | ;; Find the same table we last used. | 903 | ;; Find the same table we last used. |
| 904 | (visit-tags-table-buffer 'same) | 904 | (visit-tags-table-buffer 'same) |
| @@ -954,7 +954,6 @@ See documentation of variable `tags-file-name'." | |||
| 954 | (switch-to-buffer buf) | 954 | (switch-to-buffer buf) |
| 955 | (error (pop-to-buffer buf))) | 955 | (error (pop-to-buffer buf))) |
| 956 | (goto-char pos))) | 956 | (goto-char pos))) |
| 957 | ;;;###autoload (define-key esc-map "." 'find-tag) | ||
| 958 | 957 | ||
| 959 | ;;;###autoload | 958 | ;;;###autoload |
| 960 | (defun find-tag-other-window (tagname &optional next-p regexp-p) | 959 | (defun find-tag-other-window (tagname &optional next-p regexp-p) |
| @@ -995,7 +994,6 @@ See documentation of variable `tags-file-name'." | |||
| 995 | ;; the window's point from the buffer. | 994 | ;; the window's point from the buffer. |
| 996 | (set-window-point (selected-window) tagpoint)) | 995 | (set-window-point (selected-window) tagpoint)) |
| 997 | window-point))) | 996 | window-point))) |
| 998 | ;;;###autoload (define-key ctl-x-4-map "." 'find-tag-other-window) | ||
| 999 | 997 | ||
| 1000 | ;;;###autoload | 998 | ;;;###autoload |
| 1001 | (defun find-tag-other-frame (tagname &optional next-p) | 999 | (defun find-tag-other-frame (tagname &optional next-p) |
| @@ -1020,7 +1018,6 @@ See documentation of variable `tags-file-name'." | |||
| 1020 | (interactive (find-tag-interactive "Find tag other frame: ")) | 1018 | (interactive (find-tag-interactive "Find tag other frame: ")) |
| 1021 | (let ((pop-up-frames t)) | 1019 | (let ((pop-up-frames t)) |
| 1022 | (find-tag-other-window tagname next-p))) | 1020 | (find-tag-other-window tagname next-p))) |
| 1023 | ;;;###autoload (define-key ctl-x-5-map "." 'find-tag-other-frame) | ||
| 1024 | 1021 | ||
| 1025 | ;;;###autoload | 1022 | ;;;###autoload |
| 1026 | (defun find-tag-regexp (regexp &optional next-p other-window) | 1023 | (defun find-tag-regexp (regexp &optional next-p other-window) |
| @@ -1044,25 +1041,10 @@ See documentation of variable `tags-file-name'." | |||
| 1044 | ;; We go through find-tag-other-window to do all the display hair there. | 1041 | ;; We go through find-tag-other-window to do all the display hair there. |
| 1045 | (funcall (if other-window 'find-tag-other-window 'find-tag) | 1042 | (funcall (if other-window 'find-tag-other-window 'find-tag) |
| 1046 | regexp next-p t)) | 1043 | regexp next-p t)) |
| 1047 | ;;;###autoload (define-key esc-map [?\C-.] 'find-tag-regexp) | ||
| 1048 | |||
| 1049 | ;;;###autoload (define-key esc-map "*" 'pop-tag-mark) | ||
| 1050 | 1044 | ||
| 1051 | ;;;###autoload | 1045 | ;;;###autoload |
| 1052 | (defun pop-tag-mark () | 1046 | (defalias 'pop-tag-mark 'xref-pop-marker-stack) |
| 1053 | "Pop back to where \\[find-tag] was last invoked. | ||
| 1054 | 1047 | ||
| 1055 | This is distinct from invoking \\[find-tag] with a negative argument | ||
| 1056 | since that pops a stack of markers at which tags were found, not from | ||
| 1057 | where they were found." | ||
| 1058 | (interactive) | ||
| 1059 | (if (ring-empty-p find-tag-marker-ring) | ||
| 1060 | (error "No previous locations for find-tag invocation")) | ||
| 1061 | (let ((marker (ring-remove find-tag-marker-ring 0))) | ||
| 1062 | (switch-to-buffer (or (marker-buffer marker) | ||
| 1063 | (error "The marked buffer has been deleted"))) | ||
| 1064 | (goto-char (marker-position marker)) | ||
| 1065 | (set-marker marker nil nil))) | ||
| 1066 | 1048 | ||
| 1067 | (defvar tag-lines-already-matched nil | 1049 | (defvar tag-lines-already-matched nil |
| 1068 | "Matches remembered between calls.") ; Doc string: calls to what? | 1050 | "Matches remembered between calls.") ; Doc string: calls to what? |
| @@ -1859,7 +1841,6 @@ nil, we exit; otherwise we scan the next file." | |||
| 1859 | (and messaged | 1841 | (and messaged |
| 1860 | (null tags-loop-operate) | 1842 | (null tags-loop-operate) |
| 1861 | (message "Scanning file %s...found" buffer-file-name)))) | 1843 | (message "Scanning file %s...found" buffer-file-name)))) |
| 1862 | ;;;###autoload (define-key esc-map "," 'tags-loop-continue) | ||
| 1863 | 1844 | ||
| 1864 | ;;;###autoload | 1845 | ;;;###autoload |
| 1865 | (defun tags-search (regexp &optional file-list-form) | 1846 | (defun tags-search (regexp &optional file-list-form) |
| @@ -2077,6 +2058,54 @@ for \\[find-tag] (which see)." | |||
| 2077 | (completion-in-region (car comp-data) (cadr comp-data) | 2058 | (completion-in-region (car comp-data) (cadr comp-data) |
| 2078 | (nth 2 comp-data) | 2059 | (nth 2 comp-data) |
| 2079 | (plist-get (nthcdr 3 comp-data) :predicate))))) | 2060 | (plist-get (nthcdr 3 comp-data) :predicate))))) |
| 2061 | |||
| 2062 | |||
| 2063 | ;;; Xref backend | ||
| 2064 | |||
| 2065 | ;; Stop searching if we find more than xref-limit matches, as the xref | ||
| 2066 | ;; infrastructure is not designed to handle very long lists. | ||
| 2067 | ;; Switching to some kind of lazy list might be better, but hopefully | ||
| 2068 | ;; we hit the limit rarely. | ||
| 2069 | (defconst etags--xref-limit 1000) | ||
| 2070 | |||
| 2071 | ;;;###autoload | ||
| 2072 | (defun etags-xref-find (action id) | ||
| 2073 | (pcase action | ||
| 2074 | (`definitions (etags--xref-find-definitions id)) | ||
| 2075 | (`apropos (etags--xref-find-definitions id t)))) | ||
| 2076 | |||
| 2077 | (defun etags--xref-find-definitions (pattern &optional regexp?) | ||
| 2078 | ;; This emulates the behaviour of `find-tag-in-order' but instead of | ||
| 2079 | ;; returning one match at a time all matches are returned as list. | ||
| 2080 | ;; NOTE: find-tag-tag-order is typically a buffer-local variable. | ||
| 2081 | (let* ((xrefs '()) | ||
| 2082 | (first-time t) | ||
| 2083 | (search-fun (if regexp? #'re-search-forward #'search-forward)) | ||
| 2084 | (marks (make-hash-table :test 'equal)) | ||
| 2085 | (case-fold-search (if (memq tags-case-fold-search '(nil t)) | ||
| 2086 | tags-case-fold-search | ||
| 2087 | case-fold-search))) | ||
| 2088 | (save-excursion | ||
| 2089 | (while (visit-tags-table-buffer (not first-time)) | ||
| 2090 | (setq first-time nil) | ||
| 2091 | (dolist (order-fun (cond (regexp? find-tag-regexp-tag-order) | ||
| 2092 | (t find-tag-tag-order))) | ||
| 2093 | (goto-char (point-min)) | ||
| 2094 | (while (and (funcall search-fun pattern nil t) | ||
| 2095 | (< (hash-table-count marks) etags--xref-limit)) | ||
| 2096 | (when (funcall order-fun pattern) | ||
| 2097 | (beginning-of-line) | ||
| 2098 | (cl-destructuring-bind (hint line &rest pos) (etags-snarf-tag) | ||
| 2099 | (unless (eq hint t) ; hint==t if we are in a filename line | ||
| 2100 | (let* ((file (file-of-tag)) | ||
| 2101 | (mark-key (cons file line))) | ||
| 2102 | (unless (gethash mark-key marks) | ||
| 2103 | (let ((loc (xref-make-file-location | ||
| 2104 | (expand-file-name file) line 0))) | ||
| 2105 | (push (xref-make hint loc) xrefs) | ||
| 2106 | (puthash mark-key t marks))))))))))) | ||
| 2107 | (nreverse xrefs))) | ||
| 2108 | |||
| 2080 | 2109 | ||
| 2081 | (provide 'etags) | 2110 | (provide 'etags) |
| 2082 | 2111 | ||
diff --git a/lisp/progmodes/js.el b/lisp/progmodes/js.el index c2c45aa4ef8..45074d338d3 100644 --- a/lisp/progmodes/js.el +++ b/lisp/progmodes/js.el | |||
| @@ -1637,12 +1637,29 @@ This performs fontification according to `js--class-styles'." | |||
| 1637 | js--font-lock-keywords-3) | 1637 | js--font-lock-keywords-3) |
| 1638 | "Font lock keywords for `js-mode'. See `font-lock-keywords'.") | 1638 | "Font lock keywords for `js-mode'. See `font-lock-keywords'.") |
| 1639 | 1639 | ||
| 1640 | (defconst js--syntax-propertize-regexp-syntax-table | ||
| 1641 | (let ((st (make-char-table 'syntax-table (string-to-syntax ".")))) | ||
| 1642 | (modify-syntax-entry ?\[ "(]" st) | ||
| 1643 | (modify-syntax-entry ?\] ")[" st) | ||
| 1644 | (modify-syntax-entry ?\\ "\\" st) | ||
| 1645 | st)) | ||
| 1646 | |||
| 1640 | (defun js-syntax-propertize-regexp (end) | 1647 | (defun js-syntax-propertize-regexp (end) |
| 1641 | (when (eq (nth 3 (syntax-ppss)) ?/) | 1648 | (let ((ppss (syntax-ppss))) |
| 1642 | ;; A /.../ regexp. | 1649 | (when (eq (nth 3 ppss) ?/) |
| 1643 | (when (re-search-forward "\\(?:\\=\\|[^\\]\\)\\(?:\\\\\\\\\\)*/" end 'move) | 1650 | ;; A /.../ regexp. |
| 1644 | (put-text-property (1- (point)) (point) | 1651 | (while |
| 1645 | 'syntax-table (string-to-syntax "\"/"))))) | 1652 | (when (re-search-forward "\\(?:\\=\\|[^\\]\\)\\(?:\\\\\\\\\\)*/" |
| 1653 | end 'move) | ||
| 1654 | (if (nth 1 (with-syntax-table | ||
| 1655 | js--syntax-propertize-regexp-syntax-table | ||
| 1656 | (let ((parse-sexp-lookup-properties nil)) | ||
| 1657 | (parse-partial-sexp (nth 8 ppss) (point))))) | ||
| 1658 | ;; A / within a character class is not the end of a regexp. | ||
| 1659 | t | ||
| 1660 | (put-text-property (1- (point)) (point) | ||
| 1661 | 'syntax-table (string-to-syntax "\"/")) | ||
| 1662 | nil)))))) | ||
| 1646 | 1663 | ||
| 1647 | (defun js-syntax-propertize (start end) | 1664 | (defun js-syntax-propertize (start end) |
| 1648 | ;; Javascript allows immediate regular expression objects, written /.../. | 1665 | ;; Javascript allows immediate regular expression objects, written /.../. |
diff --git a/lisp/progmodes/xref.el b/lisp/progmodes/xref.el new file mode 100644 index 00000000000..21c0d6aa6a4 --- /dev/null +++ b/lisp/progmodes/xref.el | |||
| @@ -0,0 +1,499 @@ | |||
| 1 | ;; xref.el --- Cross-referencing commands -*-lexical-binding:t-*- | ||
| 2 | |||
| 3 | ;; Copyright (C) 2014 Free Software Foundation, Inc. | ||
| 4 | |||
| 5 | ;; This file is part of GNU Emacs. | ||
| 6 | |||
| 7 | ;; GNU Emacs is free software: you can redistribute it and/or modify | ||
| 8 | ;; it under the terms of the GNU General Public License as published by | ||
| 9 | ;; the Free Software Foundation, either version 3 of the License, or | ||
| 10 | ;; (at your option) any later version. | ||
| 11 | |||
| 12 | ;; GNU Emacs is distributed in the hope that it will be useful, | ||
| 13 | ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 14 | ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 15 | ;; GNU General Public License for more details. | ||
| 16 | |||
| 17 | ;; You should have received a copy of the GNU General Public License | ||
| 18 | ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. | ||
| 19 | |||
| 20 | ;;; Commentary: | ||
| 21 | |||
| 22 | ;; This file provides a somewhat generic infrastructure for cross | ||
| 23 | ;; referencing commands, in particular "find-definition". | ||
| 24 | ;; | ||
| 25 | ;; Some part of the functionality must be implemented in a language | ||
| 26 | ;; dependent way and that's done by defining `xref-find-function', | ||
| 27 | ;; `xref-identifier-at-point-function' and | ||
| 28 | ;; `xref-identifier-completion-table-function', which see. | ||
| 29 | ;; | ||
| 30 | ;; A major mode should make these variables buffer-local first. | ||
| 31 | ;; | ||
| 32 | ;; `xref-find-function' can be called in several ways, see its | ||
| 33 | ;; description. It has to operate with "xref" and "location" values. | ||
| 34 | ;; | ||
| 35 | ;; One would usually call `make-xref' and `xref-make-file-location', | ||
| 36 | ;; `xref-make-buffer-location' or `xref-make-bogus-location' to create | ||
| 37 | ;; them. | ||
| 38 | ;; | ||
| 39 | ;; Each identifier must be represented as a string. Implementers can | ||
| 40 | ;; use string properties to store additional information about the | ||
| 41 | ;; identifier, but they should keep in mind that values returned from | ||
| 42 | ;; `xref-identifier-completion-table-function' should still be | ||
| 43 | ;; distinct, because the user can't see the properties when making the | ||
| 44 | ;; choice. | ||
| 45 | ;; | ||
| 46 | ;; See the functions `etags-xref-find' and `elisp-xref-find' for full | ||
| 47 | ;; examples. | ||
| 48 | |||
| 49 | ;;; Code: | ||
| 50 | |||
| 51 | (require 'cl-lib) | ||
| 52 | (require 'eieio) | ||
| 53 | (require 'ring) | ||
| 54 | |||
| 55 | (defgroup xref nil "Cross-referencing commands" | ||
| 56 | :group 'tools) | ||
| 57 | |||
| 58 | |||
| 59 | ;;; Locations | ||
| 60 | |||
| 61 | (defclass xref-location () () | ||
| 62 | :documentation "A location represents a position in a file or buffer.") | ||
| 63 | |||
| 64 | ;; If a backend decides to subclass xref-location it can provide | ||
| 65 | ;; methods for some of the following functions: | ||
| 66 | (defgeneric xref-location-marker (location) | ||
| 67 | "Return the marker for LOCATION.") | ||
| 68 | |||
| 69 | (defgeneric xref-location-group (location) | ||
| 70 | "Return a string used to group a set of locations. | ||
| 71 | This is typically the filename.") | ||
| 72 | |||
| 73 | ;;;; Commonly needed location classes are defined here: | ||
| 74 | |||
| 75 | ;; FIXME: might be useful to have an optional "hint" i.e. a string to | ||
| 76 | ;; search for in case the line number is sightly out of date. | ||
| 77 | (defclass xref-file-location (xref-location) | ||
| 78 | ((file :type string :initarg :file) | ||
| 79 | (line :type fixnum :initarg :line) | ||
| 80 | (column :type fixnum :initarg :column)) | ||
| 81 | :documentation "A file location is a file/line/column triple. | ||
| 82 | Line numbers start from 1 and columns from 0.") | ||
| 83 | |||
| 84 | (defun xref-make-file-location (file line column) | ||
| 85 | "Create and return a new xref-file-location." | ||
| 86 | (make-instance 'xref-file-location :file file :line line :column column)) | ||
| 87 | |||
| 88 | (defmethod xref-location-marker ((l xref-file-location)) | ||
| 89 | (with-slots (file line column) l | ||
| 90 | (with-current-buffer | ||
| 91 | (or (get-file-buffer file) | ||
| 92 | (let ((find-file-suppress-same-file-warnings t)) | ||
| 93 | (find-file-noselect file))) | ||
| 94 | (save-restriction | ||
| 95 | (widen) | ||
| 96 | (save-excursion | ||
| 97 | (goto-char (point-min)) | ||
| 98 | (beginning-of-line line) | ||
| 99 | (move-to-column column) | ||
| 100 | (point-marker)))))) | ||
| 101 | |||
| 102 | (defmethod xref-location-group ((l xref-file-location)) | ||
| 103 | (oref l :file)) | ||
| 104 | |||
| 105 | (defclass xref-buffer-location (xref-location) | ||
| 106 | ((buffer :type buffer :initarg :buffer) | ||
| 107 | (position :type fixnum :initarg :position))) | ||
| 108 | |||
| 109 | (defun xref-make-buffer-location (buffer position) | ||
| 110 | "Create and return a new xref-buffer-location." | ||
| 111 | (make-instance 'xref-buffer-location :buffer buffer :position position)) | ||
| 112 | |||
| 113 | (defmethod xref-location-marker ((l xref-buffer-location)) | ||
| 114 | (with-slots (buffer position) l | ||
| 115 | (let ((m (make-marker))) | ||
| 116 | (move-marker m position buffer)))) | ||
| 117 | |||
| 118 | (defmethod xref-location-group ((l xref-buffer-location)) | ||
| 119 | (with-slots (buffer) l | ||
| 120 | (or (buffer-file-name buffer) | ||
| 121 | (format "(buffer %s)" (buffer-name buffer))))) | ||
| 122 | |||
| 123 | (defclass xref-bogus-location (xref-location) | ||
| 124 | ((message :type string :initarg :message | ||
| 125 | :reader xref-bogus-location-message)) | ||
| 126 | :documentation "Bogus locations are sometimes useful to | ||
| 127 | indicate errors, e.g. when we know that a function exists but the | ||
| 128 | actual location is not known.") | ||
| 129 | |||
| 130 | (defun xref-make-bogus-location (message) | ||
| 131 | "Create and return a new xref-bogus-location." | ||
| 132 | (make-instance 'xref-bogus-location :message message)) | ||
| 133 | |||
| 134 | (defmethod xref-location-marker ((l xref-bogus-location)) | ||
| 135 | (user-error "%s" (oref l :message))) | ||
| 136 | |||
| 137 | (defmethod xref-location-group ((_ xref-bogus-location)) "(No location)") | ||
| 138 | |||
| 139 | |||
| 140 | ;;; Cross-reference | ||
| 141 | |||
| 142 | (defclass xref--xref () | ||
| 143 | ((description :type string :initarg :description | ||
| 144 | :reader xref--xref-description) | ||
| 145 | (location :type xref-location :initarg :location | ||
| 146 | :reader xref--xref-location)) | ||
| 147 | :comment "An xref is used to display and locate constructs like | ||
| 148 | variables or functions.") | ||
| 149 | |||
| 150 | (defun xref-make (description location) | ||
| 151 | "Create and return a new xref. | ||
| 152 | DESCRIPTION is a short string to describe the xref. | ||
| 153 | LOCATION is an `xref-location'." | ||
| 154 | (make-instance 'xref--xref :description description :location location)) | ||
| 155 | |||
| 156 | |||
| 157 | ;;; API | ||
| 158 | |||
| 159 | (declare-function etags-xref-find "etags" (action id)) | ||
| 160 | (declare-function tags-lazy-completion-table "etags" ()) | ||
| 161 | |||
| 162 | ;; For now, make the etags backend the default. | ||
| 163 | (defvar xref-find-function #'etags-xref-find | ||
| 164 | "Function to look for cross-references. | ||
| 165 | It can be called in several ways: | ||
| 166 | |||
| 167 | (definitions IDENTIFIER): Find definitions of IDENTIFIER. The | ||
| 168 | result must be a list of xref objects. If no definitions can be | ||
| 169 | found, return nil. | ||
| 170 | |||
| 171 | (references IDENTIFIER): Find references of IDENTIFIER. The | ||
| 172 | result must be a list of xref objects. If no references can be | ||
| 173 | found, return nil. | ||
| 174 | |||
| 175 | (apropos PATTERN): Find all symbols that match PATTERN. PATTERN | ||
| 176 | is a regexp. | ||
| 177 | |||
| 178 | IDENTIFIER can be any string returned by | ||
| 179 | `xref-identifier-at-point-function', or from the table returned | ||
| 180 | by `xref-identifier-completion-table-function'. | ||
| 181 | |||
| 182 | To create an xref object, call `xref-make'.") | ||
| 183 | |||
| 184 | (defvar xref-identifier-at-point-function #'xref-default-identifier-at-point | ||
| 185 | "Function to get the relevant identifier at point. | ||
| 186 | |||
| 187 | The return value must be a string or nil. nil means no | ||
| 188 | identifier at point found. | ||
| 189 | |||
| 190 | If it's hard to determine the identifier precisely (e.g., because | ||
| 191 | it's a method call on unknown type), the implementation can | ||
| 192 | return a simple string (such as symbol at point) marked with a | ||
| 193 | special text property which `xref-find-function' would recognize | ||
| 194 | and then delegate the work to an external process.") | ||
| 195 | |||
| 196 | (defvar xref-identifier-completion-table-function #'tags-lazy-completion-table | ||
| 197 | "Function that returns the completion table for identifiers.") | ||
| 198 | |||
| 199 | (defun xref-default-identifier-at-point () | ||
| 200 | (let ((thing (thing-at-point 'symbol))) | ||
| 201 | (and thing (substring-no-properties thing)))) | ||
| 202 | |||
| 203 | |||
| 204 | ;;; misc utilities | ||
| 205 | (defun xref--alistify (list key test) | ||
| 206 | "Partition the elements of LIST into an alist. | ||
| 207 | KEY extracts the key from an element and TEST is used to compare | ||
| 208 | keys." | ||
| 209 | (let ((alist '())) | ||
| 210 | (dolist (e list) | ||
| 211 | (let* ((k (funcall key e)) | ||
| 212 | (probe (cl-assoc k alist :test test))) | ||
| 213 | (if probe | ||
| 214 | (setcdr probe (cons e (cdr probe))) | ||
| 215 | (push (cons k (list e)) alist)))) | ||
| 216 | ;; Put them back in order. | ||
| 217 | (cl-loop for (key . value) in (reverse alist) | ||
| 218 | collect (cons key (reverse value))))) | ||
| 219 | |||
| 220 | (defun xref--insert-propertized (props &rest strings) | ||
| 221 | "Insert STRINGS with text properties PROPS." | ||
| 222 | (let ((start (point))) | ||
| 223 | (apply #'insert strings) | ||
| 224 | (add-text-properties start (point) props))) | ||
| 225 | |||
| 226 | (defun xref--search-property (property &optional backward) | ||
| 227 | "Search the next text range where text property PROPERTY is non-nil. | ||
| 228 | Return the value of PROPERTY. If BACKWARD is non-nil, search | ||
| 229 | backward." | ||
| 230 | (let ((next (if backward | ||
| 231 | #'previous-single-char-property-change | ||
| 232 | #'next-single-char-property-change)) | ||
| 233 | (start (point)) | ||
| 234 | (value nil)) | ||
| 235 | (while (progn | ||
| 236 | (goto-char (funcall next (point) property)) | ||
| 237 | (not (or (setq value (get-text-property (point) property)) | ||
| 238 | (eobp) | ||
| 239 | (bobp))))) | ||
| 240 | (cond (value) | ||
| 241 | (t (goto-char start) nil)))) | ||
| 242 | |||
| 243 | |||
| 244 | ;;; Marker stack (M-. pushes, M-, pops) | ||
| 245 | |||
| 246 | (defcustom xref-marker-ring-length 16 | ||
| 247 | "Length of the xref marker ring." | ||
| 248 | :type 'integer | ||
| 249 | :version "25.1") | ||
| 250 | |||
| 251 | (defvar xref--marker-ring (make-ring xref-marker-ring-length) | ||
| 252 | "Ring of markers to implement the marker stack.") | ||
| 253 | |||
| 254 | (defun xref-push-marker-stack () | ||
| 255 | "Add point to the marker stack." | ||
| 256 | (ring-insert xref--marker-ring (point-marker))) | ||
| 257 | |||
| 258 | ;;;###autoload | ||
| 259 | (defun xref-pop-marker-stack () | ||
| 260 | "Pop back to where \\[xref-find-definitions] was last invoked." | ||
| 261 | (interactive) | ||
| 262 | (let ((ring xref--marker-ring)) | ||
| 263 | (when (ring-empty-p ring) | ||
| 264 | (error "Marker stack is empty")) | ||
| 265 | (let ((marker (ring-remove ring 0))) | ||
| 266 | (switch-to-buffer (or (marker-buffer marker) | ||
| 267 | (error "The marked buffer has been deleted"))) | ||
| 268 | (goto-char (marker-position marker)) | ||
| 269 | (set-marker marker nil nil)))) | ||
| 270 | |||
| 271 | ;; etags.el needs this | ||
| 272 | (defun xref-clear-marker-stack () | ||
| 273 | "Discard all markers from the marker stack." | ||
| 274 | (let ((ring xref--marker-ring)) | ||
| 275 | (while (not (ring-empty-p ring)) | ||
| 276 | (let ((marker (ring-remove ring))) | ||
| 277 | (set-marker marker nil nil))))) | ||
| 278 | |||
| 279 | |||
| 280 | (defun xref--goto-location (location) | ||
| 281 | "Set buffer and point according to xref-location LOCATION." | ||
| 282 | (let ((marker (xref-location-marker location))) | ||
| 283 | (set-buffer (marker-buffer marker)) | ||
| 284 | (cond ((and (<= (point-min) marker) (<= marker (point-max)))) | ||
| 285 | (widen-automatically (widen)) | ||
| 286 | (t (error "Location is outside accessible part of buffer"))) | ||
| 287 | (goto-char marker))) | ||
| 288 | |||
| 289 | (defun xref--pop-to-location (location &optional window) | ||
| 290 | "Goto xref-location LOCATION and display the buffer. | ||
| 291 | WINDOW controls how the buffer is displayed: | ||
| 292 | nil -- switch-to-buffer | ||
| 293 | 'window -- pop-to-buffer (other window) | ||
| 294 | 'frame -- pop-to-buffer (other frame)" | ||
| 295 | (xref--goto-location location) | ||
| 296 | (cl-ecase window | ||
| 297 | ((nil) (switch-to-buffer (current-buffer))) | ||
| 298 | (window (pop-to-buffer (current-buffer) t)) | ||
| 299 | (frame (let ((pop-up-frames t)) (pop-to-buffer (current-buffer) t))))) | ||
| 300 | |||
| 301 | |||
| 302 | ;;; XREF buffer (part of the UI) | ||
| 303 | |||
| 304 | ;; The xref buffer is used to display a set of xrefs. | ||
| 305 | |||
| 306 | (defun xref--display-position (pos other-window recenter-arg) | ||
| 307 | ;; show the location, but don't hijack focus. | ||
| 308 | (with-selected-window (display-buffer (current-buffer) other-window) | ||
| 309 | (goto-char pos) | ||
| 310 | (recenter recenter-arg))) | ||
| 311 | |||
| 312 | (defun xref--show-location (location) | ||
| 313 | (condition-case err | ||
| 314 | (progn | ||
| 315 | (xref--goto-location location) | ||
| 316 | (xref--display-position (point) t 1)) | ||
| 317 | (user-error (message (error-message-string err))))) | ||
| 318 | |||
| 319 | (defun xref--next-line (backward) | ||
| 320 | (let ((loc (xref--search-property 'xref-location backward))) | ||
| 321 | (when loc | ||
| 322 | (save-window-excursion | ||
| 323 | (xref--show-location loc) | ||
| 324 | (sit-for most-positive-fixnum))))) | ||
| 325 | |||
| 326 | (defun xref-next-line () | ||
| 327 | "Move to the next xref and display its source in the other window." | ||
| 328 | (interactive) | ||
| 329 | (xref--next-line nil)) | ||
| 330 | |||
| 331 | (defun xref-prev-line () | ||
| 332 | "Move to the previous xref and display its source in the other window." | ||
| 333 | (interactive) | ||
| 334 | (xref--next-line t)) | ||
| 335 | |||
| 336 | (defun xref--location-at-point () | ||
| 337 | (or (get-text-property (point) 'xref-location) | ||
| 338 | (error "No reference at point"))) | ||
| 339 | |||
| 340 | (defvar-local xref--window nil) | ||
| 341 | |||
| 342 | (defun xref-goto-xref () | ||
| 343 | "Jump to the xref at point and bury the xref buffer." | ||
| 344 | (interactive) | ||
| 345 | (let ((loc (xref--location-at-point)) | ||
| 346 | (window xref--window)) | ||
| 347 | (quit-window) | ||
| 348 | (xref--pop-to-location loc window))) | ||
| 349 | |||
| 350 | (define-derived-mode xref--xref-buffer-mode fundamental-mode "XREF" | ||
| 351 | "Mode for displaying cross-references." | ||
| 352 | (setq buffer-read-only t)) | ||
| 353 | |||
| 354 | (let ((map xref--xref-buffer-mode-map)) | ||
| 355 | (define-key map (kbd "q") #'quit-window) | ||
| 356 | (define-key map [remap next-line] #'xref-next-line) | ||
| 357 | (define-key map [remap previous-line] #'xref-prev-line) | ||
| 358 | (define-key map (kbd "RET") #'xref-goto-xref) | ||
| 359 | |||
| 360 | ;; suggested by Johan Claesson "to further reduce finger movement": | ||
| 361 | (define-key map (kbd ".") #'xref-next-line) | ||
| 362 | (define-key map (kbd ",") #'xref-prev-line)) | ||
| 363 | |||
| 364 | (defconst xref-buffer-name "*xref*" | ||
| 365 | "The name of the buffer to show xrefs.") | ||
| 366 | |||
| 367 | (defun xref--insert-xrefs (xref-alist) | ||
| 368 | "Insert XREF-ALIST in the current-buffer. | ||
| 369 | XREF-ALIST is of the form ((GROUP . (XREF ...)) ...). Where | ||
| 370 | GROUP is a string for decoration purposes and XREF is an | ||
| 371 | `xref--xref' object." | ||
| 372 | (cl-loop for ((group . xrefs) . more1) on xref-alist do | ||
| 373 | (xref--insert-propertized '(face bold) group "\n") | ||
| 374 | (cl-loop for (xref . more2) on xrefs do | ||
| 375 | (insert " ") | ||
| 376 | (with-slots (description location) xref | ||
| 377 | (xref--insert-propertized | ||
| 378 | (list 'xref-location location | ||
| 379 | 'face 'font-lock-keyword-face) | ||
| 380 | description)) | ||
| 381 | (when (or more1 more2) | ||
| 382 | (insert "\n"))))) | ||
| 383 | |||
| 384 | (defun xref--analyze (xrefs) | ||
| 385 | "Find common filenames in XREFS. | ||
| 386 | Return an alist of the form ((FILENAME . (XREF ...)) ...)." | ||
| 387 | (xref--alistify xrefs | ||
| 388 | (lambda (x) | ||
| 389 | (xref-location-group (xref--xref-location x))) | ||
| 390 | #'equal)) | ||
| 391 | |||
| 392 | (defun xref--show-xref-buffer (xrefs window) | ||
| 393 | (let ((xref-alist (xref--analyze xrefs))) | ||
| 394 | (with-current-buffer (get-buffer-create xref-buffer-name) | ||
| 395 | (let ((inhibit-read-only t)) | ||
| 396 | (erase-buffer) | ||
| 397 | (xref--insert-xrefs xref-alist) | ||
| 398 | (xref--xref-buffer-mode) | ||
| 399 | (pop-to-buffer (current-buffer)) | ||
| 400 | (goto-char (point-min)) | ||
| 401 | (setq xref--window window) | ||
| 402 | (current-buffer))))) | ||
| 403 | |||
| 404 | |||
| 405 | ;; This part of the UI seems fairly uncontroversial: it reads the | ||
| 406 | ;; identifier and deals with the single definition case. | ||
| 407 | ;; | ||
| 408 | ;; The controversial multiple definitions case is handed off to | ||
| 409 | ;; xref-show-xrefs-function. | ||
| 410 | |||
| 411 | (defvar xref-show-xrefs-function 'xref--show-xref-buffer | ||
| 412 | "Function to display a list of xrefs.") | ||
| 413 | |||
| 414 | (defun xref--show-xrefs (id kind xrefs window) | ||
| 415 | (cond | ||
| 416 | ((null xrefs) | ||
| 417 | (user-error "No known %s for: %s" kind id)) | ||
| 418 | ((not (cdr xrefs)) | ||
| 419 | (xref-push-marker-stack) | ||
| 420 | (xref--pop-to-location (xref--xref-location (car xrefs)) window)) | ||
| 421 | (t | ||
| 422 | (xref-push-marker-stack) | ||
| 423 | (funcall xref-show-xrefs-function xrefs window)))) | ||
| 424 | |||
| 425 | (defun xref--read-identifier (prompt) | ||
| 426 | "Return the identifier at point or read it from the minibuffer." | ||
| 427 | (let ((id (funcall xref-identifier-at-point-function))) | ||
| 428 | (cond ((or current-prefix-arg (not id)) | ||
| 429 | (completing-read prompt | ||
| 430 | (funcall xref-identifier-completion-table-function) | ||
| 431 | nil t id)) | ||
| 432 | (t id)))) | ||
| 433 | |||
| 434 | |||
| 435 | ;;; Commands | ||
| 436 | |||
| 437 | (defun xref--find-definitions (id window) | ||
| 438 | (xref--show-xrefs id "definitions" | ||
| 439 | (funcall xref-find-function 'definitions id) | ||
| 440 | window)) | ||
| 441 | |||
| 442 | ;;;###autoload | ||
| 443 | (defun xref-find-definitions (identifier) | ||
| 444 | "Find the definition of the identifier at point. | ||
| 445 | With prefix argument, prompt for the identifier." | ||
| 446 | (interactive (list (xref--read-identifier "Find definitions of: "))) | ||
| 447 | (xref--find-definitions identifier nil)) | ||
| 448 | |||
| 449 | ;;;###autoload | ||
| 450 | (defun xref-find-definitions-other-window (identifier) | ||
| 451 | "Like `xref-find-definitions' but switch to the other window." | ||
| 452 | (interactive (list (xref--read-identifier "Find definitions of: "))) | ||
| 453 | (xref--find-definitions identifier 'window)) | ||
| 454 | |||
| 455 | ;;;###autoload | ||
| 456 | (defun xref-find-definitions-other-frame (identifier) | ||
| 457 | "Like `xref-find-definitions' but switch to the other frame." | ||
| 458 | (interactive (list (xref--read-identifier "Find definitions of: "))) | ||
| 459 | (xref--find-definitions identifier 'frame)) | ||
| 460 | |||
| 461 | ;;;###autoload | ||
| 462 | (defun xref-find-references (identifier) | ||
| 463 | "Find references to the identifier at point. | ||
| 464 | With prefix argument, prompt for the identifier." | ||
| 465 | (interactive (list (xref--read-identifier "Find references of: "))) | ||
| 466 | (xref--show-xrefs identifier "references" | ||
| 467 | (funcall xref-find-function 'references identifier) | ||
| 468 | nil)) | ||
| 469 | |||
| 470 | ;;;###autoload | ||
| 471 | (defun xref-find-apropos (pattern) | ||
| 472 | "Find all meaningful symbols that match PATTERN. | ||
| 473 | The argument has the same meaning as in `apropos'." | ||
| 474 | (interactive (list (read-from-minibuffer | ||
| 475 | "Search for pattern (word list or regexp): "))) | ||
| 476 | (require 'apropos) | ||
| 477 | (xref--show-xrefs pattern "apropos" | ||
| 478 | (funcall xref-find-function 'apropos | ||
| 479 | (apropos-parse-pattern | ||
| 480 | (if (string-equal (regexp-quote pattern) pattern) | ||
| 481 | ;; Split into words | ||
| 482 | (or (split-string pattern "[ \t]+" t) | ||
| 483 | (user-error "No word list given")) | ||
| 484 | pattern))) | ||
| 485 | nil)) | ||
| 486 | |||
| 487 | |||
| 488 | ;;; Key bindings | ||
| 489 | |||
| 490 | ;;;###autoload (define-key esc-map "." #'xref-find-definitions) | ||
| 491 | ;;;###autoload (define-key esc-map "," #'xref-pop-marker-stack) | ||
| 492 | ;;;###autoload (define-key esc-map [?\C-.] #'xref-find-apropos) | ||
| 493 | ;;;###autoload (define-key ctl-x-4-map "." #'xref-find-definitions-other-window) | ||
| 494 | ;;;###autoload (define-key ctl-x-5-map "." #'xref-find-definitions-other-frame) | ||
| 495 | |||
| 496 | |||
| 497 | (provide 'xref) | ||
| 498 | |||
| 499 | ;;; xref.el ends here | ||
diff --git a/lisp/shell.el b/lisp/shell.el index 506f944094b..480d04a03eb 100644 --- a/lisp/shell.el +++ b/lisp/shell.el | |||
| @@ -308,6 +308,13 @@ for Shell mode only." | |||
| 308 | (const :tag "on" t)) | 308 | (const :tag "on" t)) |
| 309 | :group 'shell) | 309 | :group 'shell) |
| 310 | 310 | ||
| 311 | (defcustom shell-display-buffer-actions display-buffer-base-action | ||
| 312 | "The `display-buffer' actions for the `*shell*' buffer." | ||
| 313 | :type display-buffer--action-custom-type | ||
| 314 | :risky t | ||
| 315 | :version "25.1" | ||
| 316 | :group 'shell) | ||
| 317 | |||
| 311 | (defvar shell-dirstack nil | 318 | (defvar shell-dirstack nil |
| 312 | "List of directories saved by pushd in this buffer's shell. | 319 | "List of directories saved by pushd in this buffer's shell. |
| 313 | Thus, this does not include the shell's current directory.") | 320 | Thus, this does not include the shell's current directory.") |
| @@ -718,7 +725,7 @@ Otherwise, one argument `-i' is passed to the shell. | |||
| 718 | 725 | ||
| 719 | ;; The buffer's window must be correctly set when we call comint (so | 726 | ;; The buffer's window must be correctly set when we call comint (so |
| 720 | ;; that comint sets the COLUMNS env var properly). | 727 | ;; that comint sets the COLUMNS env var properly). |
| 721 | (pop-to-buffer-same-window buffer) | 728 | (pop-to-buffer buffer shell-display-buffer-actions) |
| 722 | (unless (comint-check-proc buffer) | 729 | (unless (comint-check-proc buffer) |
| 723 | (let* ((prog (or explicit-shell-file-name | 730 | (let* ((prog (or explicit-shell-file-name |
| 724 | (getenv "ESHELL") shell-file-name)) | 731 | (getenv "ESHELL") shell-file-name)) |
diff --git a/lisp/startup.el b/lisp/startup.el index c04b16c43c4..8e981bbc64a 100644 --- a/lisp/startup.el +++ b/lisp/startup.el | |||
| @@ -1463,9 +1463,7 @@ Each element in the list should be a list of strings or pairs | |||
| 1463 | (goto-char (point-min)))) | 1463 | (goto-char (point-min)))) |
| 1464 | "\tMany people have contributed code included in GNU Emacs\n" | 1464 | "\tMany people have contributed code included in GNU Emacs\n" |
| 1465 | :link ("Contributing" | 1465 | :link ("Contributing" |
| 1466 | ,(lambda (_button) | 1466 | ,(lambda (_button) (info "(emacs)Contributing"))) |
| 1467 | (view-file (expand-file-name "CONTRIBUTE" data-directory)) | ||
| 1468 | (goto-char (point-min)))) | ||
| 1469 | "\tHow to contribute improvements to Emacs\n" | 1467 | "\tHow to contribute improvements to Emacs\n" |
| 1470 | "\n" | 1468 | "\n" |
| 1471 | :link ("GNU and Freedom" ,(lambda (_button) (describe-gnu-project))) | 1469 | :link ("GNU and Freedom" ,(lambda (_button) (describe-gnu-project))) |
| @@ -2039,9 +2037,7 @@ Type \\[describe-distribution] for information on ")) | |||
| 2039 | 2037 | ||
| 2040 | (insert-button "Contributing" | 2038 | (insert-button "Contributing" |
| 2041 | 'action | 2039 | 'action |
| 2042 | (lambda (_button) | 2040 | (lambda (_button) (info "(emacs)Contributing")) |
| 2043 | (view-file (expand-file-name "CONTRIBUTE" data-directory)) | ||
| 2044 | (goto-char (point-min))) | ||
| 2045 | 'follow-link t) | 2041 | 'follow-link t) |
| 2046 | (insert "\tHow to contribute improvements to Emacs\n\n") | 2042 | (insert "\tHow to contribute improvements to Emacs\n\n") |
| 2047 | 2043 | ||
diff --git a/lisp/window.el b/lisp/window.el index c95b0d6d418..2b593c35a54 100644 --- a/lisp/window.el +++ b/lisp/window.el | |||
| @@ -7798,6 +7798,9 @@ With arg N, put point N/10 of the way from the true end." | |||
| 7798 | (defvar mouse-autoselect-window-timer nil | 7798 | (defvar mouse-autoselect-window-timer nil |
| 7799 | "Timer used by delayed window autoselection.") | 7799 | "Timer used by delayed window autoselection.") |
| 7800 | 7800 | ||
| 7801 | (defvar mouse-autoselect-window-position-1 nil | ||
| 7802 | "First mouse position recorded by delayed window autoselection.") | ||
| 7803 | |||
| 7801 | (defvar mouse-autoselect-window-position nil | 7804 | (defvar mouse-autoselect-window-position nil |
| 7802 | "Last mouse position recorded by delayed window autoselection.") | 7805 | "Last mouse position recorded by delayed window autoselection.") |
| 7803 | 7806 | ||
| @@ -7822,6 +7825,7 @@ Optional argument FORCE means cancel unconditionally." | |||
| 7822 | (memq (nth 4 (event-end last-input-event)) | 7825 | (memq (nth 4 (event-end last-input-event)) |
| 7823 | '(handle end-scroll))))) | 7826 | '(handle end-scroll))))) |
| 7824 | (setq mouse-autoselect-window-state nil) | 7827 | (setq mouse-autoselect-window-state nil) |
| 7828 | (setq mouse-autoselect-window-position-1 nil) | ||
| 7825 | (when (timerp mouse-autoselect-window-timer) | 7829 | (when (timerp mouse-autoselect-window-timer) |
| 7826 | (cancel-timer mouse-autoselect-window-timer)) | 7830 | (cancel-timer mouse-autoselect-window-timer)) |
| 7827 | (remove-hook 'pre-command-hook 'mouse-autoselect-window-cancel))) | 7831 | (remove-hook 'pre-command-hook 'mouse-autoselect-window-cancel))) |
| @@ -7863,21 +7867,32 @@ is active. This function is run by `mouse-autoselect-window-timer'." | |||
| 7863 | ;; A menu / popup dialog is active or the mouse is not on the | 7867 | ;; A menu / popup dialog is active or the mouse is not on the |
| 7864 | ;; text region of WINDOW: Suspend autoselection temporarily. | 7868 | ;; text region of WINDOW: Suspend autoselection temporarily. |
| 7865 | (mouse-autoselect-window-start mouse-position nil t)) | 7869 | (mouse-autoselect-window-start mouse-position nil t)) |
| 7866 | ((eq mouse-autoselect-window-state 'suspend) | 7870 | ((or (eq mouse-autoselect-window-state 'suspend) |
| 7871 | ;; When the mouse is at its first recorded position, restart | ||
| 7872 | ;; delayed autoselection. This works around a scenario with | ||
| 7873 | ;; two two-window frames with identical dimensions: select the | ||
| 7874 | ;; first window of the first frame, switch to the second | ||
| 7875 | ;; frame, move the mouse to its second window, minimize the | ||
| 7876 | ;; second frame. Now the second window of the first frame | ||
| 7877 | ;; gets selected although the mouse never really "moved" into | ||
| 7878 | ;; that window. | ||
| 7879 | (and (numberp mouse-autoselect-window) | ||
| 7880 | (equal (mouse-position) mouse-autoselect-window-position-1))) | ||
| 7867 | ;; Delayed autoselection was temporarily suspended, reenable it. | 7881 | ;; Delayed autoselection was temporarily suspended, reenable it. |
| 7868 | (mouse-autoselect-window-start mouse-position)) | 7882 | (mouse-autoselect-window-start mouse-position)) |
| 7869 | ((and window (not (eq window (selected-window))) | 7883 | ((and window (not (eq window (selected-window))) |
| 7870 | (or (not (numberp mouse-autoselect-window)) | 7884 | (or (not (numberp mouse-autoselect-window)) |
| 7871 | (and (> mouse-autoselect-window 0) | 7885 | (and (>= mouse-autoselect-window 0) |
| 7872 | ;; If `mouse-autoselect-window' is positive, select | 7886 | ;; If `mouse-autoselect-window' is non-negative, |
| 7873 | ;; window if the window is the same as before. | 7887 | ;; select window if it's the same as before. |
| 7874 | (eq window mouse-autoselect-window-window)) | 7888 | (eq window mouse-autoselect-window-window)) |
| 7875 | ;; Otherwise select window if the mouse is at the same | 7889 | ;; Otherwise select window iff the mouse is at the same |
| 7876 | ;; position as before. Observe that the first test after | 7890 | ;; position as before. Observe that the first test |
| 7877 | ;; starting autoselection usually fails since the value of | 7891 | ;; after starting autoselection usually fails since the |
| 7878 | ;; `mouse-autoselect-window-position' recorded there is the | 7892 | ;; value of `mouse-autoselect-window-position' recorded |
| 7879 | ;; position where the mouse has entered the new window and | 7893 | ;; there is the position where the mouse has entered the |
| 7880 | ;; not necessarily where the mouse has stopped moving. | 7894 | ;; new window and not necessarily where the mouse has |
| 7895 | ;; stopped moving. | ||
| 7881 | (equal mouse-position mouse-autoselect-window-position)) | 7896 | (equal mouse-position mouse-autoselect-window-position)) |
| 7882 | ;; The minibuffer is a candidate window if it's active. | 7897 | ;; The minibuffer is a candidate window if it's active. |
| 7883 | (or (not (window-minibuffer-p window)) | 7898 | (or (not (window-minibuffer-p window)) |
| @@ -7921,14 +7936,14 @@ is active. This function is run by `mouse-autoselect-window-timer'." | |||
| 7921 | (not (minibuffer-window-active-p window))) | 7936 | (not (minibuffer-window-active-p window))) |
| 7922 | ;; Don't switch when autoselection shall be delayed. | 7937 | ;; Don't switch when autoselection shall be delayed. |
| 7923 | (and (numberp mouse-autoselect-window) | 7938 | (and (numberp mouse-autoselect-window) |
| 7924 | (not (zerop mouse-autoselect-window)) | ||
| 7925 | (not (eq mouse-autoselect-window-state 'select)) | 7939 | (not (eq mouse-autoselect-window-state 'select)) |
| 7926 | (progn | 7940 | (let ((position (mouse-position))) |
| 7927 | ;; Cancel any delayed autoselection. | 7941 | ;; Cancel any delayed autoselection. |
| 7928 | (mouse-autoselect-window-cancel t) | 7942 | (mouse-autoselect-window-cancel t) |
| 7929 | ;; Start delayed autoselection from current mouse | 7943 | ;; Start delayed autoselection from current mouse |
| 7930 | ;; position and window. | 7944 | ;; position and window. |
| 7931 | (mouse-autoselect-window-start (mouse-position) window) | 7945 | (setq mouse-autoselect-window-position-1 position) |
| 7946 | (mouse-autoselect-window-start position window) | ||
| 7932 | ;; Executing a command cancels delayed autoselection. | 7947 | ;; Executing a command cancels delayed autoselection. |
| 7933 | (add-hook | 7948 | (add-hook |
| 7934 | 'pre-command-hook 'mouse-autoselect-window-cancel)))) | 7949 | 'pre-command-hook 'mouse-autoselect-window-cancel)))) |