aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2012-12-01 06:20:45 -0500
committerGlenn Morris2012-12-01 06:20:45 -0500
commitae067123d3f24430711973c24a8d2a8cfd33c1ef (patch)
treeef315edfa28ad4381a493b6c9b01321bb271ec8a
parent45d4966ba62438c81ecdc80487a13abd08277542 (diff)
downloademacs-ae067123d3f24430711973c24a8d2a8cfd33c1ef.tar.gz
emacs-ae067123d3f24430711973c24a8d2a8cfd33c1ef.zip
Auto-commit of loaddefs files.
-rw-r--r--lisp/ldefs-boot.el532
1 files changed, 311 insertions, 221 deletions
diff --git a/lisp/ldefs-boot.el b/lisp/ldefs-boot.el
index 876402f6fff..2ca5182e063 100644
--- a/lisp/ldefs-boot.el
+++ b/lisp/ldefs-boot.el
@@ -114,15 +114,16 @@ Completion is available.
114;;;;;; add-change-log-entry-other-window add-change-log-entry find-change-log 114;;;;;; add-change-log-entry-other-window add-change-log-entry find-change-log
115;;;;;; prompt-for-change-log-name add-log-mailing-address add-log-full-name 115;;;;;; prompt-for-change-log-name add-log-mailing-address add-log-full-name
116;;;;;; add-log-current-defun-function) "add-log" "vc/add-log.el" 116;;;;;; add-log-current-defun-function) "add-log" "vc/add-log.el"
117;;;;;; (20586 48936 135199 0)) 117;;;;;; (20665 59189 799105 0))
118;;; Generated autoloads from vc/add-log.el 118;;; Generated autoloads from vc/add-log.el
119 119
120(put 'change-log-default-name 'safe-local-variable 'string-or-null-p) 120(put 'change-log-default-name 'safe-local-variable 'string-or-null-p)
121 121
122(defvar add-log-current-defun-function nil "\ 122(defvar add-log-current-defun-function nil "\
123If non-nil, function to guess name of surrounding function. 123If non-nil, function to guess name of surrounding function.
124It is used by `add-log-current-defun' in preference to built-in rules. 124It is called by `add-log-current-defun' with no argument, and
125Returns function's name as a string, or nil if outside a function.") 125should return the function's name as a string, or nil if point is
126outside a function.")
126 127
127(custom-autoload 'add-log-current-defun-function "add-log" t) 128(custom-autoload 'add-log-current-defun-function "add-log" t)
128 129
@@ -213,15 +214,6 @@ Runs `change-log-mode-hook'.
213 214
214\(fn)" t nil) 215\(fn)" t nil)
215 216
216(defvar add-log-lisp-like-modes '(emacs-lisp-mode lisp-mode scheme-mode dsssl-mode lisp-interaction-mode) "\
217Modes that look like Lisp to `add-log-current-defun'.")
218
219(defvar add-log-c-like-modes '(c-mode c++-mode c++-c-mode objc-mode) "\
220Modes that look like C to `add-log-current-defun'.")
221
222(defvar add-log-tex-like-modes '(TeX-mode plain-TeX-mode LaTeX-mode tex-mode) "\
223Modes that look like TeX to `add-log-current-defun'.")
224
225(autoload 'add-log-current-defun "add-log" "\ 217(autoload 'add-log-current-defun "add-log" "\
226Return name of function definition point is in, or nil. 218Return name of function definition point is in, or nil.
227 219
@@ -253,7 +245,7 @@ old-style time formats for entries are supported.
253 245
254;;;### (autoloads (defadvice ad-activate ad-add-advice ad-disable-advice 246;;;### (autoloads (defadvice ad-activate ad-add-advice ad-disable-advice
255;;;;;; ad-enable-advice ad-default-compilation-action ad-redefinition-action) 247;;;;;; ad-enable-advice ad-default-compilation-action ad-redefinition-action)
256;;;;;; "advice" "emacs-lisp/advice.el" (20618 55210 422086 0)) 248;;;;;; "advice" "emacs-lisp/advice.el" (20660 41272 835092 0))
257;;; Generated autoloads from emacs-lisp/advice.el 249;;; Generated autoloads from emacs-lisp/advice.el
258 250
259(defvar ad-redefinition-action 'warn "\ 251(defvar ad-redefinition-action 'warn "\
@@ -352,7 +344,7 @@ POSITION ::= `first' | `last' | NUMBER. Optional, defaults to `first',
352ARGLIST ::= An optional argument list to be used for the advised function 344ARGLIST ::= An optional argument list to be used for the advised function
353 instead of the argument list of the original. The first one found in 345 instead of the argument list of the original. The first one found in
354 before/around/after-advices will be used. 346 before/around/after-advices will be used.
355FLAG ::= `protect'|`disable'|`activate'|`compile'|`preactivate'|`freeze'. 347FLAG ::= `protect'|`disable'|`activate'|`compile'|`preactivate'.
356 All flags can be specified with unambiguous initial substrings. 348 All flags can be specified with unambiguous initial substrings.
357DOCSTRING ::= Optional documentation for this piece of advice. 349DOCSTRING ::= Optional documentation for this piece of advice.
358INTERACTIVE-FORM ::= Optional interactive form to be used for the advised 350INTERACTIVE-FORM ::= Optional interactive form to be used for the advised
@@ -378,13 +370,6 @@ time. This generates a compiled advised definition according to the current
378advice state that will be used during activation if appropriate. Only use 370advice state that will be used during activation if appropriate. Only use
379this if the `defadvice' gets actually compiled. 371this if the `defadvice' gets actually compiled.
380 372
381`freeze': Expands the `defadvice' into a redefining `defun/defmacro' according
382to this particular single advice. No other advice information will be saved.
383Frozen advices cannot be undone, they behave like a hard redefinition of
384the advised function. `freeze' implies `activate' and `preactivate'. The
385documentation of the advised function can be dumped onto the `DOC' file
386during preloading.
387
388See Info node `(elisp)Advising Functions' for comprehensive documentation. 373See Info node `(elisp)Advising Functions' for comprehensive documentation.
389usage: (defadvice FUNCTION (CLASS NAME [POSITION] [ARGLIST] FLAG...) 374usage: (defadvice FUNCTION (CLASS NAME [POSITION] [ARGLIST] FLAG...)
390 [DOCSTRING] [INTERACTIVE-FORM] 375 [DOCSTRING] [INTERACTIVE-FORM]
@@ -489,7 +474,7 @@ A replacement function for `newline-and-indent', aligning as it goes.
489 474
490;;;### (autoloads (outlineify-sticky allout-mode allout-mode-p allout-auto-activation 475;;;### (autoloads (outlineify-sticky allout-mode allout-mode-p allout-auto-activation
491;;;;;; allout-setup allout-auto-activation-helper) "allout" "allout.el" 476;;;;;; allout-setup allout-auto-activation-helper) "allout" "allout.el"
492;;;;;; (20577 33959 40183 0)) 477;;;;;; (20651 26294 774003 0))
493;;; Generated autoloads from allout.el 478;;; Generated autoloads from allout.el
494 479
495(autoload 'allout-auto-activation-helper "allout" "\ 480(autoload 'allout-auto-activation-helper "allout" "\
@@ -965,7 +950,7 @@ the buffer *Birthday-Present-for-Name*.
965;;;*** 950;;;***
966 951
967;;;### (autoloads (ansi-color-process-output ansi-color-for-comint-mode-on) 952;;;### (autoloads (ansi-color-process-output ansi-color-for-comint-mode-on)
968;;;;;; "ansi-color" "ansi-color.el" (20577 33959 40183 0)) 953;;;;;; "ansi-color" "ansi-color.el" (20642 11326 759953 0))
969;;; Generated autoloads from ansi-color.el 954;;; Generated autoloads from ansi-color.el
970 955
971(autoload 'ansi-color-for-comint-mode-on "ansi-color" "\ 956(autoload 'ansi-color-for-comint-mode-on "ansi-color" "\
@@ -1160,8 +1145,8 @@ Returns list of symbols and documentation found.
1160 1145
1161;;;*** 1146;;;***
1162 1147
1163;;;### (autoloads (archive-mode) "arc-mode" "arc-mode.el" (20614 1148;;;### (autoloads (archive-mode) "arc-mode" "arc-mode.el" (20647
1164;;;;;; 54428 654267 0)) 1149;;;;;; 29243 972198 0))
1165;;; Generated autoloads from arc-mode.el 1150;;; Generated autoloads from arc-mode.el
1166 1151
1167(autoload 'archive-mode "arc-mode" "\ 1152(autoload 'archive-mode "arc-mode" "\
@@ -1562,7 +1547,7 @@ This is similar to `autoarg-mode' but rebinds the keypad keys
1562;;;*** 1547;;;***
1563 1548
1564;;;### (autoloads (autoconf-mode) "autoconf" "progmodes/autoconf.el" 1549;;;### (autoloads (autoconf-mode) "autoconf" "progmodes/autoconf.el"
1565;;;;;; (20513 18948 537867 0)) 1550;;;;;; (20665 59189 799105 0))
1566;;; Generated autoloads from progmodes/autoconf.el 1551;;; Generated autoloads from progmodes/autoconf.el
1567 1552
1568(autoload 'autoconf-mode "autoconf" "\ 1553(autoload 'autoconf-mode "autoconf" "\
@@ -2117,7 +2102,7 @@ a reflection.
2117;;;;;; bookmark-save bookmark-write bookmark-delete bookmark-insert 2102;;;;;; bookmark-save bookmark-write bookmark-delete bookmark-insert
2118;;;;;; bookmark-rename bookmark-insert-location bookmark-relocate 2103;;;;;; bookmark-rename bookmark-insert-location bookmark-relocate
2119;;;;;; bookmark-jump-other-window bookmark-jump bookmark-set) "bookmark" 2104;;;;;; bookmark-jump-other-window bookmark-jump bookmark-set) "bookmark"
2120;;;;;; "bookmark.el" (20618 55210 422086 0)) 2105;;;;;; "bookmark.el" (20630 20152 156327 0))
2121;;; Generated autoloads from bookmark.el 2106;;; Generated autoloads from bookmark.el
2122 (define-key ctl-x-r-map "b" 'bookmark-jump) 2107 (define-key ctl-x-r-map "b" 'bookmark-jump)
2123 (define-key ctl-x-r-map "m" 'bookmark-set) 2108 (define-key ctl-x-r-map "m" 'bookmark-set)
@@ -2721,7 +2706,7 @@ Like `bug-reference-mode', but only buttonize in comments and strings.
2721;;;;;; batch-byte-compile-if-not-done display-call-tree byte-compile 2706;;;;;; batch-byte-compile-if-not-done display-call-tree byte-compile
2722;;;;;; compile-defun byte-compile-file byte-recompile-directory 2707;;;;;; compile-defun byte-compile-file byte-recompile-directory
2723;;;;;; byte-force-recompile byte-compile-enable-warning byte-compile-disable-warning) 2708;;;;;; byte-force-recompile byte-compile-enable-warning byte-compile-disable-warning)
2724;;;;;; "bytecomp" "emacs-lisp/bytecomp.el" (20599 27513 576550 0)) 2709;;;;;; "bytecomp" "emacs-lisp/bytecomp.el" (20656 44218 805102 0))
2725;;; Generated autoloads from emacs-lisp/bytecomp.el 2710;;; Generated autoloads from emacs-lisp/bytecomp.el
2726(put 'byte-compile-dynamic 'safe-local-variable 'booleanp) 2711(put 'byte-compile-dynamic 'safe-local-variable 'booleanp)
2727(put 'byte-compile-disable-print-circle 'safe-local-variable 'booleanp) 2712(put 'byte-compile-disable-print-circle 'safe-local-variable 'booleanp)
@@ -2880,8 +2865,8 @@ from the cursor position.
2880 2865
2881;;;### (autoloads (defmath calc-embedded-activate calc-embedded calc-grab-rectangle 2866;;;### (autoloads (defmath calc-embedded-activate calc-embedded calc-grab-rectangle
2882;;;;;; calc-grab-region full-calc-keypad calc-keypad calc-eval quick-calc 2867;;;;;; calc-grab-region full-calc-keypad calc-keypad calc-eval quick-calc
2883;;;;;; full-calc calc calc-dispatch) "calc" "calc/calc.el" (20593 2868;;;;;; full-calc calc calc-dispatch) "calc" "calc/calc.el" (20654
2884;;;;;; 22184 581574 0)) 2869;;;;;; 2487 96777 0))
2885;;; Generated autoloads from calc/calc.el 2870;;; Generated autoloads from calc/calc.el
2886 (define-key ctl-x-map "*" 'calc-dispatch) 2871 (define-key ctl-x-map "*" 'calc-dispatch)
2887 2872
@@ -3098,7 +3083,7 @@ Obsoletes `c-forward-into-nomenclature'.
3098;;;*** 3083;;;***
3099 3084
3100;;;### (autoloads (c-guess-basic-syntax) "cc-engine" "progmodes/cc-engine.el" 3085;;;### (autoloads (c-guess-basic-syntax) "cc-engine" "progmodes/cc-engine.el"
3101;;;;;; (20557 48712 315579 0)) 3086;;;;;; (20656 44218 805102 0))
3102;;; Generated autoloads from progmodes/cc-engine.el 3087;;; Generated autoloads from progmodes/cc-engine.el
3103 3088
3104(autoload 'c-guess-basic-syntax "cc-engine" "\ 3089(autoload 'c-guess-basic-syntax "cc-engine" "\
@@ -3211,7 +3196,7 @@ the absolute file name of the file if STYLE-NAME is nil.
3211 3196
3212;;;### (autoloads (awk-mode pike-mode idl-mode java-mode objc-mode 3197;;;### (autoloads (awk-mode pike-mode idl-mode java-mode objc-mode
3213;;;;;; c++-mode c-mode c-initialize-cc-mode) "cc-mode" "progmodes/cc-mode.el" 3198;;;;;; c++-mode c-mode c-initialize-cc-mode) "cc-mode" "progmodes/cc-mode.el"
3214;;;;;; (20614 54428 654267 0)) 3199;;;;;; (20665 59189 799105 0))
3215;;; Generated autoloads from progmodes/cc-mode.el 3200;;; Generated autoloads from progmodes/cc-mode.el
3216 3201
3217(autoload 'c-initialize-cc-mode "cc-mode" "\ 3202(autoload 'c-initialize-cc-mode "cc-mode" "\
@@ -3781,7 +3766,7 @@ Returns non-nil if any false statements are found.
3781;;;;;; checkdoc-comments checkdoc-continue checkdoc-start checkdoc-current-buffer 3766;;;;;; checkdoc-comments checkdoc-continue checkdoc-start checkdoc-current-buffer
3782;;;;;; checkdoc-eval-current-buffer checkdoc-message-interactive 3767;;;;;; checkdoc-eval-current-buffer checkdoc-message-interactive
3783;;;;;; checkdoc-interactive checkdoc checkdoc-list-of-strings-p) 3768;;;;;; checkdoc-interactive checkdoc checkdoc-list-of-strings-p)
3784;;;;;; "checkdoc" "emacs-lisp/checkdoc.el" (20614 54428 654267 0)) 3769;;;;;; "checkdoc" "emacs-lisp/checkdoc.el" (20647 29243 972198 0))
3785;;; Generated autoloads from emacs-lisp/checkdoc.el 3770;;; Generated autoloads from emacs-lisp/checkdoc.el
3786(put 'checkdoc-force-docstrings-flag 'safe-local-variable 'booleanp) 3771(put 'checkdoc-force-docstrings-flag 'safe-local-variable 'booleanp)
3787(put 'checkdoc-force-history-flag 'safe-local-variable 'booleanp) 3772(put 'checkdoc-force-history-flag 'safe-local-variable 'booleanp)
@@ -4133,8 +4118,8 @@ For example, the function `case' has an indent property
4133 4118
4134;;;*** 4119;;;***
4135 4120
4136;;;### (autoloads nil "cl-lib" "emacs-lisp/cl-lib.el" (20599 27513 4121;;;### (autoloads nil "cl-lib" "emacs-lisp/cl-lib.el" (20648 50109
4137;;;;;; 576550 0)) 4122;;;;;; 802321 0))
4138;;; Generated autoloads from emacs-lisp/cl-lib.el 4123;;; Generated autoloads from emacs-lisp/cl-lib.el
4139 4124
4140(define-obsolete-variable-alias 'custom-print-functions 'cl-custom-print-functions "24.3") 4125(define-obsolete-variable-alias 'custom-print-functions 'cl-custom-print-functions "24.3")
@@ -4203,8 +4188,8 @@ is run).
4203 4188
4204;;;*** 4189;;;***
4205 4190
4206;;;### (autoloads (color-name-to-rgb) "color" "color.el" (20592 1317 4191;;;### (autoloads (color-name-to-rgb) "color" "color.el" (20650 54512
4207;;;;;; 691761 0)) 4192;;;;;; 564403 0))
4208;;; Generated autoloads from color.el 4193;;; Generated autoloads from color.el
4209 4194
4210(autoload 'color-name-to-rgb "color" "\ 4195(autoload 'color-name-to-rgb "color" "\
@@ -4799,7 +4784,7 @@ If FIX is non-nil, run `copyright-fix-years' instead.
4799;;;*** 4784;;;***
4800 4785
4801;;;### (autoloads (cperl-perldoc-at-point cperl-perldoc cperl-mode) 4786;;;### (autoloads (cperl-perldoc-at-point cperl-perldoc cperl-mode)
4802;;;;;; "cperl-mode" "progmodes/cperl-mode.el" (20512 60198 306109 4787;;;;;; "cperl-mode" "progmodes/cperl-mode.el" (20665 59189 799105
4803;;;;;; 0)) 4788;;;;;; 0))
4804;;; Generated autoloads from progmodes/cperl-mode.el 4789;;; Generated autoloads from progmodes/cperl-mode.el
4805(put 'cperl-indent-level 'safe-local-variable 'integerp) 4790(put 'cperl-indent-level 'safe-local-variable 'integerp)
@@ -5079,8 +5064,8 @@ INHERIT-INPUT-METHOD.
5079 5064
5080;;;*** 5065;;;***
5081 5066
5082;;;### (autoloads (css-mode) "css-mode" "textmodes/css-mode.el" (20478 5067;;;### (autoloads (css-mode) "css-mode" "textmodes/css-mode.el" (20665
5083;;;;;; 3673 653810 0)) 5068;;;;;; 59189 799105 0))
5084;;; Generated autoloads from textmodes/css-mode.el 5069;;; Generated autoloads from textmodes/css-mode.el
5085 5070
5086(autoload 'css-mode "css-mode" "\ 5071(autoload 'css-mode "css-mode" "\
@@ -5151,7 +5136,7 @@ Enable CUA selection mode without the C-z/C-x/C-c/C-v bindings.
5151;;;;;; customize-mode customize customize-push-and-save customize-save-variable 5136;;;;;; customize-mode customize customize-push-and-save customize-save-variable
5152;;;;;; customize-set-variable customize-set-value custom-menu-sort-alphabetically 5137;;;;;; customize-set-variable customize-set-value custom-menu-sort-alphabetically
5153;;;;;; custom-buffer-sort-alphabetically custom-browse-sort-alphabetically) 5138;;;;;; custom-buffer-sort-alphabetically custom-browse-sort-alphabetically)
5154;;;;;; "cus-edit" "cus-edit.el" (20577 33959 40183 0)) 5139;;;;;; "cus-edit" "cus-edit.el" (20657 65077 880084 0))
5155;;; Generated autoloads from cus-edit.el 5140;;; Generated autoloads from cus-edit.el
5156 5141
5157(defvar custom-browse-sort-alphabetically nil "\ 5142(defvar custom-browse-sort-alphabetically nil "\
@@ -5782,7 +5767,7 @@ There is some minimal font-lock support (see vars
5782;;;*** 5767;;;***
5783 5768
5784;;;### (autoloads (cancel-debug-on-entry debug-on-entry debug) "debug" 5769;;;### (autoloads (cancel-debug-on-entry debug-on-entry debug) "debug"
5785;;;;;; "emacs-lisp/debug.el" (20609 10405 476026 0)) 5770;;;;;; "emacs-lisp/debug.el" (20642 11326 759953 0))
5786;;; Generated autoloads from emacs-lisp/debug.el 5771;;; Generated autoloads from emacs-lisp/debug.el
5787 5772
5788(setq debugger 'debug) 5773(setq debugger 'debug)
@@ -5796,7 +5781,7 @@ You may call with no args, or you may pass nil as the first arg and
5796any other args you like. In that case, the list of args after the 5781any other args you like. In that case, the list of args after the
5797first will be printed into the backtrace buffer. 5782first will be printed into the backtrace buffer.
5798 5783
5799\(fn &rest DEBUGGER-ARGS)" t nil) 5784\(fn &rest ARGS)" t nil)
5800 5785
5801(autoload 'debug-on-entry "debug" "\ 5786(autoload 'debug-on-entry "debug" "\
5802Request FUNCTION to invoke debugger each time it is called. 5787Request FUNCTION to invoke debugger each time it is called.
@@ -5963,7 +5948,7 @@ any selection.
5963;;;*** 5948;;;***
5964 5949
5965;;;### (autoloads (derived-mode-init-mode-variables define-derived-mode) 5950;;;### (autoloads (derived-mode-init-mode-variables define-derived-mode)
5966;;;;;; "derived" "emacs-lisp/derived.el" (20577 33959 40183 0)) 5951;;;;;; "derived" "emacs-lisp/derived.el" (20660 60553 594737 612000))
5967;;; Generated autoloads from emacs-lisp/derived.el 5952;;; Generated autoloads from emacs-lisp/derived.el
5968 5953
5969(autoload 'define-derived-mode "derived" "\ 5954(autoload 'define-derived-mode "derived" "\
@@ -6030,7 +6015,7 @@ the first time the mode is used.
6030;;;*** 6015;;;***
6031 6016
6032;;;### (autoloads (describe-char describe-text-properties) "descr-text" 6017;;;### (autoloads (describe-char describe-text-properties) "descr-text"
6033;;;;;; "descr-text.el" (20530 32114 546307 0)) 6018;;;;;; "descr-text.el" (20660 41272 835092 0))
6034;;; Generated autoloads from descr-text.el 6019;;; Generated autoloads from descr-text.el
6035 6020
6036(autoload 'describe-text-properties "descr-text" "\ 6021(autoload 'describe-text-properties "descr-text" "\
@@ -6067,7 +6052,7 @@ relevant to POS.
6067;;;### (autoloads (desktop-revert desktop-save-in-desktop-dir desktop-change-dir 6052;;;### (autoloads (desktop-revert desktop-save-in-desktop-dir desktop-change-dir
6068;;;;;; desktop-load-default desktop-read desktop-remove desktop-save 6053;;;;;; desktop-load-default desktop-read desktop-remove desktop-save
6069;;;;;; desktop-clear desktop-locals-to-save desktop-save-mode) "desktop" 6054;;;;;; desktop-clear desktop-locals-to-save desktop-save-mode) "desktop"
6070;;;;;; "desktop.el" (20577 33959 40183 0)) 6055;;;;;; "desktop.el" (20662 46799 344737 276000))
6071;;; Generated autoloads from desktop.el 6056;;; Generated autoloads from desktop.el
6072 6057
6073(defvar desktop-save-mode nil "\ 6058(defvar desktop-save-mode nil "\
@@ -6382,7 +6367,7 @@ This requires the external program `diff' to be in your `exec-path'.
6382;;;*** 6367;;;***
6383 6368
6384;;;### (autoloads (diff-minor-mode diff-mode) "diff-mode" "vc/diff-mode.el" 6369;;;### (autoloads (diff-minor-mode diff-mode) "diff-mode" "vc/diff-mode.el"
6385;;;;;; (20623 43301 870757 0)) 6370;;;;;; (20650 54512 564403 0))
6386;;; Generated autoloads from vc/diff-mode.el 6371;;; Generated autoloads from vc/diff-mode.el
6387 6372
6388(autoload 'diff-mode "diff-mode" "\ 6373(autoload 'diff-mode "diff-mode" "\
@@ -6426,8 +6411,8 @@ Optional arguments are passed to `dig-invoke'.
6426;;;*** 6411;;;***
6427 6412
6428;;;### (autoloads (dired-mode dired-noselect dired-other-frame dired-other-window 6413;;;### (autoloads (dired-mode dired-noselect dired-other-frame dired-other-window
6429;;;;;; dired dired-listing-switches) "dired" "dired.el" (20619 46245 6414;;;;;; dired dired-listing-switches) "dired" "dired.el" (20656 44218
6430;;;;;; 806932 0)) 6415;;;;;; 805102 0))
6431;;; Generated autoloads from dired.el 6416;;; Generated autoloads from dired.el
6432 6417
6433(defvar dired-listing-switches (purecopy "-al") "\ 6418(defvar dired-listing-switches (purecopy "-al") "\
@@ -6548,7 +6533,7 @@ Keybindings:
6548;;;*** 6533;;;***
6549 6534
6550;;;### (autoloads (dirtrack dirtrack-mode) "dirtrack" "dirtrack.el" 6535;;;### (autoloads (dirtrack dirtrack-mode) "dirtrack" "dirtrack.el"
6551;;;;;; (20399 35365 4050 0)) 6536;;;;;; (20648 50109 802321 0))
6552;;; Generated autoloads from dirtrack.el 6537;;; Generated autoloads from dirtrack.el
6553 6538
6554(autoload 'dirtrack-mode "dirtrack" "\ 6539(autoload 'dirtrack-mode "dirtrack" "\
@@ -7658,7 +7643,7 @@ an EDE controlled project.
7658 7643
7659;;;### (autoloads (edebug-all-forms edebug-all-defs edebug-eval-top-level-form 7644;;;### (autoloads (edebug-all-forms edebug-all-defs edebug-eval-top-level-form
7660;;;;;; edebug-basic-spec edebug-all-forms edebug-all-defs) "edebug" 7645;;;;;; edebug-basic-spec edebug-all-forms edebug-all-defs) "edebug"
7661;;;;;; "emacs-lisp/edebug.el" (20594 43050 277913 0)) 7646;;;;;; "emacs-lisp/edebug.el" (20651 26294 774003 0))
7662;;; Generated autoloads from emacs-lisp/edebug.el 7647;;; Generated autoloads from emacs-lisp/edebug.el
7663 7648
7664(defvar edebug-all-defs nil "\ 7649(defvar edebug-all-defs nil "\
@@ -8331,8 +8316,8 @@ optional prefix argument REINIT is non-nil.
8331;;;*** 8316;;;***
8332 8317
8333;;;### (autoloads (elp-results elp-instrument-package elp-instrument-list 8318;;;### (autoloads (elp-results elp-instrument-package elp-instrument-list
8334;;;;;; elp-instrument-function) "elp" "emacs-lisp/elp.el" (20497 8319;;;;;; elp-instrument-function) "elp" "emacs-lisp/elp.el" (20642
8335;;;;;; 6436 957082 0)) 8320;;;;;; 11326 759953 0))
8336;;; Generated autoloads from emacs-lisp/elp.el 8321;;; Generated autoloads from emacs-lisp/elp.el
8337 8322
8338(autoload 'elp-instrument-function "elp" "\ 8323(autoload 'elp-instrument-function "elp" "\
@@ -8394,8 +8379,8 @@ Other values are interpreted as usual.
8394 8379
8395;;;*** 8380;;;***
8396 8381
8397;;;### (autoloads (report-emacs-bug-query-existing-bugs report-emacs-bug) 8382;;;### (autoloads (report-emacs-bug) "emacsbug" "mail/emacsbug.el"
8398;;;;;; "emacsbug" "mail/emacsbug.el" (20576 13095 881042 0)) 8383;;;;;; (20639 35129 235843 0))
8399;;; Generated autoloads from mail/emacsbug.el 8384;;; Generated autoloads from mail/emacsbug.el
8400 8385
8401(autoload 'report-emacs-bug "emacsbug" "\ 8386(autoload 'report-emacs-bug "emacsbug" "\
@@ -8404,12 +8389,6 @@ Prompts for bug subject. Leaves you in a mail buffer.
8404 8389
8405\(fn TOPIC &optional RECENT-KEYS)" t nil) 8390\(fn TOPIC &optional RECENT-KEYS)" t nil)
8406 8391
8407(autoload 'report-emacs-bug-query-existing-bugs "emacsbug" "\
8408Query for KEYWORDS at `report-emacs-bug-tracker-url', and return the result.
8409The result is an alist with items of the form (URL SUBJECT NO).
8410
8411\(fn KEYWORDS)" t nil)
8412
8413;;;*** 8392;;;***
8414 8393
8415;;;### (autoloads (emerge-merge-directories emerge-revisions-with-ancestor 8394;;;### (autoloads (emerge-merge-directories emerge-revisions-with-ancestor
@@ -8848,7 +8827,7 @@ Look at CONFIG and try to expand GROUP.
8848;;;*** 8827;;;***
8849 8828
8850;;;### (autoloads (erc-handle-irc-url erc-tls erc erc-select-read-args) 8829;;;### (autoloads (erc-handle-irc-url erc-tls erc erc-select-read-args)
8851;;;;;; "erc" "erc/erc.el" (20604 29767 397763 0)) 8830;;;;;; "erc" "erc/erc.el" (20665 23726 628150 0))
8852;;; Generated autoloads from erc/erc.el 8831;;; Generated autoloads from erc/erc.el
8853 8832
8854(autoload 'erc-select-read-args "erc" "\ 8833(autoload 'erc-select-read-args "erc" "\
@@ -8910,8 +8889,8 @@ Otherwise, connect to HOST:PORT as USER and /join CHANNEL.
8910 8889
8911;;;*** 8890;;;***
8912 8891
8913;;;### (autoloads nil "erc-capab" "erc/erc-capab.el" (20591 33616 8892;;;### (autoloads nil "erc-capab" "erc/erc-capab.el" (20650 54512
8914;;;;;; 706147 283000)) 8893;;;;;; 564403 0))
8915;;; Generated autoloads from erc/erc-capab.el 8894;;; Generated autoloads from erc/erc-capab.el
8916 (autoload 'erc-capab-identify-mode "erc-capab" nil t) 8895 (autoload 'erc-capab-identify-mode "erc-capab" nil t)
8917 8896
@@ -8925,7 +8904,7 @@ Otherwise, connect to HOST:PORT as USER and /join CHANNEL.
8925;;;*** 8904;;;***
8926 8905
8927;;;### (autoloads (erc-ctcp-query-DCC pcomplete/erc-mode/DCC erc-cmd-DCC) 8906;;;### (autoloads (erc-ctcp-query-DCC pcomplete/erc-mode/DCC erc-cmd-DCC)
8928;;;;;; "erc-dcc" "erc/erc-dcc.el" (20591 33616 756180 926000)) 8907;;;;;; "erc-dcc" "erc/erc-dcc.el" (20650 54512 564403 0))
8929;;; Generated autoloads from erc/erc-dcc.el 8908;;; Generated autoloads from erc/erc-dcc.el
8930 (autoload 'erc-dcc-mode "erc-dcc") 8909 (autoload 'erc-dcc-mode "erc-dcc")
8931 8910
@@ -8965,7 +8944,7 @@ that subcommand.
8965;;;;;; erc-ezb-add-session erc-ezb-end-of-session-list erc-ezb-init-session-list 8944;;;;;; erc-ezb-add-session erc-ezb-end-of-session-list erc-ezb-init-session-list
8966;;;;;; erc-ezb-identify erc-ezb-notice-autodetect erc-ezb-lookup-action 8945;;;;;; erc-ezb-identify erc-ezb-notice-autodetect erc-ezb-lookup-action
8967;;;;;; erc-ezb-get-login erc-cmd-ezb) "erc-ezbounce" "erc/erc-ezbounce.el" 8946;;;;;; erc-ezb-get-login erc-cmd-ezb) "erc-ezbounce" "erc/erc-ezbounce.el"
8968;;;;;; (20591 33616 766161 665000)) 8947;;;;;; (20650 54512 564403 0))
8969;;; Generated autoloads from erc/erc-ezbounce.el 8948;;; Generated autoloads from erc/erc-ezbounce.el
8970 8949
8971(autoload 'erc-cmd-ezb "erc-ezbounce" "\ 8950(autoload 'erc-cmd-ezb "erc-ezbounce" "\
@@ -9073,8 +9052,8 @@ system.
9073 9052
9074;;;*** 9053;;;***
9075 9054
9076;;;### (autoloads nil "erc-join" "erc/erc-join.el" (20591 33616 804732 9055;;;### (autoloads nil "erc-join" "erc/erc-join.el" (20650 54512 564403
9077;;;;;; 878000)) 9056;;;;;; 0))
9078;;; Generated autoloads from erc/erc-join.el 9057;;; Generated autoloads from erc/erc-join.el
9079 (autoload 'erc-autojoin-mode "erc-join" nil t) 9058 (autoload 'erc-autojoin-mode "erc-join" nil t)
9080 9059
@@ -9088,7 +9067,7 @@ system.
9088;;;*** 9067;;;***
9089 9068
9090;;;### (autoloads (erc-save-buffer-in-logs erc-logging-enabled) "erc-log" 9069;;;### (autoloads (erc-save-buffer-in-logs erc-logging-enabled) "erc-log"
9091;;;;;; "erc/erc-log.el" (20593 22184 581574 0)) 9070;;;;;; "erc/erc-log.el" (20650 54512 564403 0))
9092;;; Generated autoloads from erc/erc-log.el 9071;;; Generated autoloads from erc/erc-log.el
9093 (autoload 'erc-log-mode "erc-log" nil t) 9072 (autoload 'erc-log-mode "erc-log" nil t)
9094 9073
@@ -9120,7 +9099,7 @@ You can save every individual message by putting this function on
9120;;;### (autoloads (erc-delete-dangerous-host erc-add-dangerous-host 9099;;;### (autoloads (erc-delete-dangerous-host erc-add-dangerous-host
9121;;;;;; erc-delete-keyword erc-add-keyword erc-delete-fool erc-add-fool 9100;;;;;; erc-delete-keyword erc-add-keyword erc-delete-fool erc-add-fool
9122;;;;;; erc-delete-pal erc-add-pal) "erc-match" "erc/erc-match.el" 9101;;;;;; erc-delete-pal erc-add-pal) "erc-match" "erc/erc-match.el"
9123;;;;;; (20591 33616 834740 676000)) 9102;;;;;; (20650 54512 564403 0))
9124;;; Generated autoloads from erc/erc-match.el 9103;;; Generated autoloads from erc/erc-match.el
9125 (autoload 'erc-match-mode "erc-match") 9104 (autoload 'erc-match-mode "erc-match")
9126 9105
@@ -9174,7 +9153,7 @@ Delete dangerous-host interactively to `erc-dangerous-hosts'.
9174;;;*** 9153;;;***
9175 9154
9176;;;### (autoloads (erc-cmd-WHOLEFT) "erc-netsplit" "erc/erc-netsplit.el" 9155;;;### (autoloads (erc-cmd-WHOLEFT) "erc-netsplit" "erc/erc-netsplit.el"
9177;;;;;; (20591 33616 854733 799000)) 9156;;;;;; (20650 54512 564403 0))
9178;;; Generated autoloads from erc/erc-netsplit.el 9157;;; Generated autoloads from erc/erc-netsplit.el
9179 (autoload 'erc-netsplit-mode "erc-netsplit") 9158 (autoload 'erc-netsplit-mode "erc-netsplit")
9180 9159
@@ -9186,7 +9165,7 @@ Show who's gone.
9186;;;*** 9165;;;***
9187 9166
9188;;;### (autoloads (erc-server-select erc-determine-network) "erc-networks" 9167;;;### (autoloads (erc-server-select erc-determine-network) "erc-networks"
9189;;;;;; "erc/erc-networks.el" (20591 33616 854733 799000)) 9168;;;;;; "erc/erc-networks.el" (20650 54512 564403 0))
9190;;; Generated autoloads from erc/erc-networks.el 9169;;; Generated autoloads from erc/erc-networks.el
9191 9170
9192(autoload 'erc-determine-network "erc-networks" "\ 9171(autoload 'erc-determine-network "erc-networks" "\
@@ -9204,7 +9183,7 @@ Interactively select a server to connect to using `erc-server-alist'.
9204;;;*** 9183;;;***
9205 9184
9206;;;### (autoloads (pcomplete/erc-mode/NOTIFY erc-cmd-NOTIFY) "erc-notify" 9185;;;### (autoloads (pcomplete/erc-mode/NOTIFY erc-cmd-NOTIFY) "erc-notify"
9207;;;;;; "erc/erc-notify.el" (20591 33616 864734 46000)) 9186;;;;;; "erc/erc-notify.el" (20650 54512 564403 0))
9208;;; Generated autoloads from erc/erc-notify.el 9187;;; Generated autoloads from erc/erc-notify.el
9209 (autoload 'erc-notify-mode "erc-notify" nil t) 9188 (autoload 'erc-notify-mode "erc-notify" nil t)
9210 9189
@@ -9229,8 +9208,8 @@ with args, toggle notify status of people.
9229 9208
9230;;;*** 9209;;;***
9231 9210
9232;;;### (autoloads nil "erc-pcomplete" "erc/erc-pcomplete.el" (20591 9211;;;### (autoloads nil "erc-pcomplete" "erc/erc-pcomplete.el" (20650
9233;;;;;; 33616 874723 983000)) 9212;;;;;; 54512 564403 0))
9234;;; Generated autoloads from erc/erc-pcomplete.el 9213;;; Generated autoloads from erc/erc-pcomplete.el
9235 (autoload 'erc-completion-mode "erc-pcomplete" nil t) 9214 (autoload 'erc-completion-mode "erc-pcomplete" nil t)
9236 9215
@@ -9251,8 +9230,8 @@ with args, toggle notify status of people.
9251;;;*** 9230;;;***
9252 9231
9253;;;### (autoloads (erc-nickserv-identify erc-nickserv-identify-mode) 9232;;;### (autoloads (erc-nickserv-identify erc-nickserv-identify-mode)
9254;;;;;; "erc-services" "erc/erc-services.el" (20591 33616 894723 9233;;;;;; "erc-services" "erc/erc-services.el" (20650 54512 564403
9255;;;;;; 303000)) 9234;;;;;; 0))
9256;;; Generated autoloads from erc/erc-services.el 9235;;; Generated autoloads from erc/erc-services.el
9257 (autoload 'erc-services-mode "erc-services" nil t) 9236 (autoload 'erc-services-mode "erc-services" nil t)
9258 9237
@@ -9277,7 +9256,7 @@ When called interactively, read the password using `read-passwd'.
9277;;;*** 9256;;;***
9278 9257
9279;;;### (autoloads (erc-speedbar-browser) "erc-speedbar" "erc/erc-speedbar.el" 9258;;;### (autoloads (erc-speedbar-browser) "erc-speedbar" "erc/erc-speedbar.el"
9280;;;;;; (20591 33616 894723 303000)) 9259;;;;;; (20650 54512 564403 0))
9281;;; Generated autoloads from erc/erc-speedbar.el 9260;;; Generated autoloads from erc/erc-speedbar.el
9282 9261
9283(autoload 'erc-speedbar-browser "erc-speedbar" "\ 9262(autoload 'erc-speedbar-browser "erc-speedbar" "\
@@ -9303,7 +9282,7 @@ This will add a speedbar major display mode.
9303;;;*** 9282;;;***
9304 9283
9305;;;### (autoloads (erc-track-minor-mode) "erc-track" "erc/erc-track.el" 9284;;;### (autoloads (erc-track-minor-mode) "erc-track" "erc/erc-track.el"
9306;;;;;; (20591 33616 924730 373000)) 9285;;;;;; (20650 54512 564403 0))
9307;;; Generated autoloads from erc/erc-track.el 9286;;; Generated autoloads from erc/erc-track.el
9308 9287
9309(defvar erc-track-minor-mode nil "\ 9288(defvar erc-track-minor-mode nil "\
@@ -9363,7 +9342,7 @@ Add a file to `erc-xdcc-files'.
9363 9342
9364;;;### (autoloads (ert-describe-test ert-run-tests-interactively 9343;;;### (autoloads (ert-describe-test ert-run-tests-interactively
9365;;;;;; ert-run-tests-batch-and-exit ert-run-tests-batch ert-deftest) 9344;;;;;; ert-run-tests-batch-and-exit ert-run-tests-batch ert-deftest)
9366;;;;;; "ert" "emacs-lisp/ert.el" (20576 42138 697312 0)) 9345;;;;;; "ert" "emacs-lisp/ert.el" (20655 23358 697173 0))
9367;;; Generated autoloads from emacs-lisp/ert.el 9346;;; Generated autoloads from emacs-lisp/ert.el
9368 9347
9369(autoload 'ert-deftest "ert" "\ 9348(autoload 'ert-deftest "ert" "\
@@ -9429,7 +9408,7 @@ Display the documentation for TEST-OR-TEST-NAME (a symbol or ert-test).
9429;;;*** 9408;;;***
9430 9409
9431;;;### (autoloads (ert-kill-all-test-buffers) "ert-x" "emacs-lisp/ert-x.el" 9410;;;### (autoloads (ert-kill-all-test-buffers) "ert-x" "emacs-lisp/ert-x.el"
9432;;;;;; (20576 42138 697312 0)) 9411;;;;;; (20655 23358 697173 0))
9433;;; Generated autoloads from emacs-lisp/ert-x.el 9412;;; Generated autoloads from emacs-lisp/ert-x.el
9434 9413
9435(put 'ert-with-test-buffer 'lisp-indent-function 1) 9414(put 'ert-with-test-buffer 'lisp-indent-function 1)
@@ -9496,7 +9475,7 @@ corresponding to a successful execution.
9496;;;;;; visit-tags-table tags-table-mode find-tag-default-function 9475;;;;;; visit-tags-table tags-table-mode find-tag-default-function
9497;;;;;; find-tag-hook tags-add-tables tags-compression-info-list 9476;;;;;; find-tag-hook tags-add-tables tags-compression-info-list
9498;;;;;; tags-table-list tags-case-fold-search) "etags" "progmodes/etags.el" 9477;;;;;; tags-table-list tags-case-fold-search) "etags" "progmodes/etags.el"
9499;;;;;; (20478 3673 653810 0)) 9478;;;;;; (20664 38325 385623 0))
9500;;; Generated autoloads from progmodes/etags.el 9479;;; Generated autoloads from progmodes/etags.el
9501 9480
9502(defvar tags-file-name nil "\ 9481(defvar tags-file-name nil "\
@@ -10582,23 +10561,24 @@ Evaluate the forms in variable `ffap-bindings'.
10582;;;### (autoloads (file-cache-minibuffer-complete file-cache-add-directory-recursively 10561;;;### (autoloads (file-cache-minibuffer-complete file-cache-add-directory-recursively
10583;;;;;; file-cache-add-directory-using-locate file-cache-add-directory-using-find 10562;;;;;; file-cache-add-directory-using-locate file-cache-add-directory-using-find
10584;;;;;; file-cache-add-file file-cache-add-directory-list file-cache-add-directory) 10563;;;;;; file-cache-add-file file-cache-add-directory-list file-cache-add-directory)
10585;;;;;; "filecache" "filecache.el" (20355 10021 546955 0)) 10564;;;;;; "filecache" "filecache.el" (20648 50109 802321 0))
10586;;; Generated autoloads from filecache.el 10565;;; Generated autoloads from filecache.el
10587 10566
10588(autoload 'file-cache-add-directory "filecache" "\ 10567(autoload 'file-cache-add-directory "filecache" "\
10589Add DIRECTORY to the file cache. 10568Add all files in DIRECTORY to the file cache.
10590If the optional REGEXP argument is non-nil, only files which match it will 10569If called from Lisp with a non-nil REGEXP argument is non-nil,
10591be added to the cache. 10570only add files whose names match REGEXP.
10592 10571
10593\(fn DIRECTORY &optional REGEXP)" t nil) 10572\(fn DIRECTORY &optional REGEXP)" t nil)
10594 10573
10595(autoload 'file-cache-add-directory-list "filecache" "\ 10574(autoload 'file-cache-add-directory-list "filecache" "\
10596Add DIRECTORY-LIST (a list of directory names) to the file cache. 10575Add DIRECTORIES (a list of directory names) to the file cache.
10576If called interactively, read the directory names one by one.
10597If the optional REGEXP argument is non-nil, only files which match it 10577If the optional REGEXP argument is non-nil, only files which match it
10598will be added to the cache. Note that the REGEXP is applied to the 10578will be added to the cache. Note that the REGEXP is applied to the
10599files in each directory, not to the directory list itself. 10579files in each directory, not to the directory list itself.
10600 10580
10601\(fn DIRECTORY-LIST &optional REGEXP)" t nil) 10581\(fn DIRECTORIES &optional REGEXP)" t nil)
10602 10582
10603(autoload 'file-cache-add-file "filecache" "\ 10583(autoload 'file-cache-add-file "filecache" "\
10604Add FILE to the file cache. 10584Add FILE to the file cache.
@@ -10720,8 +10700,8 @@ Set up hooks, load the cache file -- if existing -- and build the menu.
10720 10700
10721;;;*** 10701;;;***
10722 10702
10723;;;### (autoloads (find-cmd) "find-cmd" "find-cmd.el" (20355 10021 10703;;;### (autoloads (find-cmd) "find-cmd" "find-cmd.el" (20655 23358
10724;;;;;; 546955 0)) 10704;;;;;; 697173 0))
10725;;; Generated autoloads from find-cmd.el 10705;;; Generated autoloads from find-cmd.el
10726 10706
10727(autoload 'find-cmd "find-cmd" "\ 10707(autoload 'find-cmd "find-cmd" "\
@@ -11118,8 +11098,8 @@ to get the effect of a C-q.
11118;;;*** 11098;;;***
11119 11099
11120;;;### (autoloads (flymake-find-file-hook flymake-mode-off flymake-mode-on 11100;;;### (autoloads (flymake-find-file-hook flymake-mode-off flymake-mode-on
11121;;;;;; flymake-mode) "flymake" "progmodes/flymake.el" (20611 52135 11101;;;;;; flymake-mode) "flymake" "progmodes/flymake.el" (20642 11326
11122;;;;;; 109136 0)) 11102;;;;;; 759953 0))
11123;;; Generated autoloads from progmodes/flymake.el 11103;;; Generated autoloads from progmodes/flymake.el
11124 11104
11125(autoload 'flymake-mode "flymake" "\ 11105(autoload 'flymake-mode "flymake" "\
@@ -11848,7 +11828,7 @@ If CLEAN, obsolete (ignore).
11848;;;*** 11828;;;***
11849 11829
11850;;;### (autoloads (gnus-article-prepare-display) "gnus-art" "gnus/gnus-art.el" 11830;;;### (autoloads (gnus-article-prepare-display) "gnus-art" "gnus/gnus-art.el"
11851;;;;;; (20578 54821 719276 0)) 11831;;;;;; (20636 58934 667126 0))
11852;;; Generated autoloads from gnus/gnus-art.el 11832;;; Generated autoloads from gnus/gnus-art.el
11853 11833
11854(autoload 'gnus-article-prepare-display "gnus-art" "\ 11834(autoload 'gnus-article-prepare-display "gnus-art" "\
@@ -11964,7 +11944,7 @@ Checking delayed messages is skipped if optional arg NO-CHECK is non-nil.
11964;;;*** 11944;;;***
11965 11945
11966;;;### (autoloads (gnus-user-format-function-D gnus-user-format-function-d) 11946;;;### (autoloads (gnus-user-format-function-D gnus-user-format-function-d)
11967;;;;;; "gnus-diary" "gnus/gnus-diary.el" (20355 10021 546955 0)) 11947;;;;;; "gnus-diary" "gnus/gnus-diary.el" (20647 29243 972198 0))
11968;;; Generated autoloads from gnus/gnus-diary.el 11948;;; Generated autoloads from gnus/gnus-diary.el
11969 11949
11970(autoload 'gnus-user-format-function-d "gnus-diary" "\ 11950(autoload 'gnus-user-format-function-d "gnus-diary" "\
@@ -11980,7 +11960,7 @@ Checking delayed messages is skipped if optional arg NO-CHECK is non-nil.
11980;;;*** 11960;;;***
11981 11961
11982;;;### (autoloads (turn-on-gnus-dired-mode) "gnus-dired" "gnus/gnus-dired.el" 11962;;;### (autoloads (turn-on-gnus-dired-mode) "gnus-dired" "gnus/gnus-dired.el"
11983;;;;;; (20355 10021 546955 0)) 11963;;;;;; (20628 29298 719852 0))
11984;;; Generated autoloads from gnus/gnus-dired.el 11964;;; Generated autoloads from gnus/gnus-dired.el
11985 11965
11986(autoload 'turn-on-gnus-dired-mode "gnus-dired" "\ 11966(autoload 'turn-on-gnus-dired-mode "gnus-dired" "\
@@ -12595,8 +12575,8 @@ Retrieve MAIL-ADDRESS gravatar and returns it.
12595 12575
12596;;;### (autoloads (zrgrep rgrep lgrep grep-find grep grep-mode grep-compute-defaults 12576;;;### (autoloads (zrgrep rgrep lgrep grep-find grep grep-mode grep-compute-defaults
12597;;;;;; grep-process-setup grep-setup-hook grep-find-command grep-command 12577;;;;;; grep-process-setup grep-setup-hook grep-find-command grep-command
12598;;;;;; grep-window-height) "grep" "progmodes/grep.el" (20572 16038 12578;;;;;; grep-window-height) "grep" "progmodes/grep.el" (20664 38325
12599;;;;;; 402143 0)) 12579;;;;;; 385623 0))
12600;;; Generated autoloads from progmodes/grep.el 12580;;; Generated autoloads from progmodes/grep.el
12601 12581
12602(defvar grep-window-height nil "\ 12582(defvar grep-window-height nil "\
@@ -12863,9 +12843,9 @@ it if ARG is omitted or nil.
12863 12843
12864;;;*** 12844;;;***
12865 12845
12866;;;### (autoloads (setf gv-define-simple-setter gv-define-setter 12846;;;### (autoloads (gv-ref setf gv-define-simple-setter gv-define-setter
12867;;;;;; gv--defun-declaration gv-define-expander gv-letplace gv-get) 12847;;;;;; gv--defun-declaration gv-define-expander gv-letplace gv-get)
12868;;;;;; "gv" "emacs-lisp/gv.el" (20608 20265 413008 0)) 12848;;;;;; "gv" "emacs-lisp/gv.el" (20643 32183 554981 0))
12869;;; Generated autoloads from emacs-lisp/gv.el 12849;;; Generated autoloads from emacs-lisp/gv.el
12870 12850
12871(autoload 'gv-get "gv" "\ 12851(autoload 'gv-get "gv" "\
@@ -12885,7 +12865,7 @@ Build the code manipulating the generalized variable PLACE.
12885GETTER will be bound to a copyable expression that returns the value 12865GETTER will be bound to a copyable expression that returns the value
12886of PLACE. 12866of PLACE.
12887SETTER will be bound to a function that takes an expression V and returns 12867SETTER will be bound to a function that takes an expression V and returns
12888and new expression that sets PLACE to V. 12868a new expression that sets PLACE to V.
12889BODY should return some Elisp expression E manipulating PLACE via GETTER 12869BODY should return some Elisp expression E manipulating PLACE via GETTER
12890and SETTER. 12870and SETTER.
12891The returned value will then be an Elisp expression that first evaluates 12871The returned value will then be an Elisp expression that first evaluates
@@ -12921,7 +12901,7 @@ well for simple place forms.
12921Assignments of VAL to (NAME ARGS...) are expanded by binding the argument 12901Assignments of VAL to (NAME ARGS...) are expanded by binding the argument
12922forms (VAL ARGS...) according to ARGLIST, then executing BODY, which must 12902forms (VAL ARGS...) according to ARGLIST, then executing BODY, which must
12923return a Lisp form that does the assignment. 12903return a Lisp form that does the assignment.
12924The first arg in ARLIST (the one that receives VAL) receives an expression 12904The first arg in ARGLIST (the one that receives VAL) receives an expression
12925which can do arbitrary things, whereas the other arguments are all guaranteed 12905which can do arbitrary things, whereas the other arguments are all guaranteed
12926to be pure and copyable. Example use: 12906to be pure and copyable. Example use:
12927 (gv-define-setter aref (v a i) `(aset ,a ,i ,v)) 12907 (gv-define-setter aref (v a i) `(aset ,a ,i ,v))
@@ -12935,8 +12915,12 @@ Define a simple setter method for generalized variable NAME.
12935This macro is an easy-to-use substitute for `gv-define-expander' that works 12915This macro is an easy-to-use substitute for `gv-define-expander' that works
12936well for simple place forms. Assignments of VAL to (NAME ARGS...) are 12916well for simple place forms. Assignments of VAL to (NAME ARGS...) are
12937turned into calls of the form (SETTER ARGS... VAL). 12917turned into calls of the form (SETTER ARGS... VAL).
12918
12938If FIX-RETURN is non-nil, then SETTER is not assumed to return VAL and 12919If FIX-RETURN is non-nil, then SETTER is not assumed to return VAL and
12939instead the assignment is turned into (prog1 VAL (SETTER ARGS... VAL)) 12920instead the assignment is turned into something equivalent to
12921 (let ((temp VAL))
12922 (SETTER ARGS... temp)
12923 temp)
12940so as to preserve the semantics of `setf'. 12924so as to preserve the semantics of `setf'.
12941 12925
12942\(fn NAME SETTER &optional FIX-RETURN)" nil t) 12926\(fn NAME SETTER &optional FIX-RETURN)" nil t)
@@ -12952,6 +12936,12 @@ The return value is the last VAL in the list.
12952 12936
12953(put 'gv-place 'edebug-form-spec 'edebug-match-form) 12937(put 'gv-place 'edebug-form-spec 'edebug-match-form)
12954 12938
12939(autoload 'gv-ref "gv" "\
12940Return a reference to PLACE.
12941This is like the `&' operator of the C language.
12942
12943\(fn PLACE)" nil t)
12944
12955;;;*** 12945;;;***
12956 12946
12957;;;### (autoloads (handwrite) "handwrite" "play/handwrite.el" (20566 12947;;;### (autoloads (handwrite) "handwrite" "play/handwrite.el" (20566
@@ -13275,7 +13265,7 @@ gives the window that lists the options.")
13275;;;### (autoloads (help-bookmark-jump help-xref-on-pp help-insert-xref-button 13265;;;### (autoloads (help-bookmark-jump help-xref-on-pp help-insert-xref-button
13276;;;;;; help-xref-button help-make-xrefs help-buffer help-setup-xref 13266;;;;;; help-xref-button help-make-xrefs help-buffer help-setup-xref
13277;;;;;; help-mode-finish help-mode-setup help-mode) "help-mode" "help-mode.el" 13267;;;;;; help-mode-finish help-mode-setup help-mode) "help-mode" "help-mode.el"
13278;;;;;; (20601 16294 451653 0)) 13268;;;;;; (20647 29243 972198 0))
13279;;; Generated autoloads from help-mode.el 13269;;; Generated autoloads from help-mode.el
13280 13270
13281(autoload 'help-mode "help-mode" "\ 13271(autoload 'help-mode "help-mode" "\
@@ -13878,10 +13868,17 @@ See `highlight-changes-mode' for more information on Highlight-Changes mode.
13878 13868
13879;;;*** 13869;;;***
13880 13870
13881;;;### (autoloads (make-hippie-expand-function hippie-expand) "hippie-exp" 13871;;;### (autoloads (make-hippie-expand-function hippie-expand hippie-expand-try-functions-list)
13882;;;;;; "hippie-exp.el" (20584 7212 455152 0)) 13872;;;;;; "hippie-exp" "hippie-exp.el" (20660 41272 835092 0))
13883;;; Generated autoloads from hippie-exp.el 13873;;; Generated autoloads from hippie-exp.el
13884 13874
13875(defvar hippie-expand-try-functions-list '(try-complete-file-name-partially try-complete-file-name try-expand-all-abbrevs try-expand-list try-expand-line try-expand-dabbrev try-expand-dabbrev-all-buffers try-expand-dabbrev-from-kill try-complete-lisp-symbol-partially try-complete-lisp-symbol) "\
13876The list of expansion functions tried in order by `hippie-expand'.
13877To change the behavior of `hippie-expand', remove, change the order of,
13878or insert functions in this list.")
13879
13880(custom-autoload 'hippie-expand-try-functions-list "hippie-exp" t)
13881
13885(autoload 'hippie-expand "hippie-exp" "\ 13882(autoload 'hippie-expand "hippie-exp" "\
13886Try to expand text before point, using multiple methods. 13883Try to expand text before point, using multiple methods.
13887The expansion functions in `hippie-expand-try-functions-list' are 13884The expansion functions in `hippie-expand-try-functions-list' are
@@ -14240,7 +14237,7 @@ bound to the current value of the filter.
14240;;;*** 14237;;;***
14241 14238
14242;;;### (autoloads (ibuffer ibuffer-other-window ibuffer-list-buffers) 14239;;;### (autoloads (ibuffer ibuffer-other-window ibuffer-list-buffers)
14243;;;;;; "ibuffer" "ibuffer.el" (20576 13312 649004 817000)) 14240;;;;;; "ibuffer" "ibuffer.el" (20647 29243 972198 0))
14244;;; Generated autoloads from ibuffer.el 14241;;; Generated autoloads from ibuffer.el
14245 14242
14246(autoload 'ibuffer-list-buffers "ibuffer" "\ 14243(autoload 'ibuffer-list-buffers "ibuffer" "\
@@ -14333,8 +14330,8 @@ buffer `*icalendar-errors*'.
14333 14330
14334;;;*** 14331;;;***
14335 14332
14336;;;### (autoloads (icomplete-mode) "icomplete" "icomplete.el" (20453 14333;;;### (autoloads (icomplete-mode) "icomplete" "icomplete.el" (20665
14337;;;;;; 5437 764254 0)) 14334;;;;;; 23726 628150 0))
14338;;; Generated autoloads from icomplete.el 14335;;; Generated autoloads from icomplete.el
14339 14336
14340(defvar icomplete-mode nil "\ 14337(defvar icomplete-mode nil "\
@@ -14558,8 +14555,8 @@ The main features of this mode are
14558;;;;;; ido-find-alternate-file ido-find-file-other-window ido-find-file 14555;;;;;; ido-find-alternate-file ido-find-file-other-window ido-find-file
14559;;;;;; ido-find-file-in-dir ido-switch-buffer-other-frame ido-insert-buffer 14556;;;;;; ido-find-file-in-dir ido-switch-buffer-other-frame ido-insert-buffer
14560;;;;;; ido-kill-buffer ido-display-buffer ido-switch-buffer-other-window 14557;;;;;; ido-kill-buffer ido-display-buffer ido-switch-buffer-other-window
14561;;;;;; ido-switch-buffer ido-mode ido-mode) "ido" "ido.el" (20590 14558;;;;;; ido-switch-buffer ido-mode ido-mode) "ido" "ido.el" (20665
14562;;;;;; 45996 129575 0)) 14559;;;;;; 23733 615437 420000))
14563;;; Generated autoloads from ido.el 14560;;; Generated autoloads from ido.el
14564 14561
14565(defvar ido-mode nil "\ 14562(defvar ido-mode nil "\
@@ -14851,7 +14848,7 @@ the mode if ARG is omitted or nil, and toggle it if ARG is `toggle'.
14851;;;;;; create-image image-type-auto-detected-p image-type-available-p 14848;;;;;; create-image image-type-auto-detected-p image-type-available-p
14852;;;;;; image-type image-type-from-file-name image-type-from-file-header 14849;;;;;; image-type image-type-from-file-name image-type-from-file-header
14853;;;;;; image-type-from-buffer image-type-from-data) "image" "image.el" 14850;;;;;; image-type-from-buffer image-type-from-data) "image" "image.el"
14854;;;;;; (20613 59417 195100 163000)) 14851;;;;;; (20648 50109 802321 0))
14855;;; Generated autoloads from image.el 14852;;; Generated autoloads from image.el
14856 14853
14857(autoload 'image-type-from-data "image" "\ 14854(autoload 'image-type-from-data "image" "\
@@ -14950,7 +14947,7 @@ means display it in the right marginal area.
14950Insert IMAGE into current buffer at point. 14947Insert IMAGE into current buffer at point.
14951IMAGE is displayed by inserting STRING into the current buffer 14948IMAGE is displayed by inserting STRING into the current buffer
14952with a `display' property whose value is the image. STRING 14949with a `display' property whose value is the image. STRING
14953defaults to the empty string if you omit it. 14950defaults to a single space if you omit it.
14954AREA is where to display the image. AREA nil or omitted means 14951AREA is where to display the image. AREA nil or omitted means
14955display it in the text area, a value of `left-margin' means 14952display it in the text area, a value of `left-margin' means
14956display it in the left marginal area, a value of `right-margin' 14953display it in the left marginal area, a value of `right-margin'
@@ -14966,8 +14963,8 @@ height of the image; integer values are taken as pixel values.
14966(autoload 'insert-sliced-image "image" "\ 14963(autoload 'insert-sliced-image "image" "\
14967Insert IMAGE into current buffer at point. 14964Insert IMAGE into current buffer at point.
14968IMAGE is displayed by inserting STRING into the current buffer 14965IMAGE is displayed by inserting STRING into the current buffer
14969with a `display' property whose value is the image. STRING is 14966with a `display' property whose value is the image. The default
14970defaulted if you omit it. 14967STRING is a single space.
14971AREA is where to display the image. AREA nil or omitted means 14968AREA is where to display the image. AREA nil or omitted means
14972display it in the text area, a value of `left-margin' means 14969display it in the text area, a value of `left-margin' means
14973display it in the left marginal area, a value of `right-margin' 14970display it in the left marginal area, a value of `right-margin'
@@ -15051,7 +15048,7 @@ If Emacs is compiled without ImageMagick support, this does nothing.
15051;;;;;; image-dired-jump-thumbnail-buffer image-dired-delete-tag 15048;;;;;; image-dired-jump-thumbnail-buffer image-dired-delete-tag
15052;;;;;; image-dired-tag-files image-dired-show-all-from-dir image-dired-display-thumbs 15049;;;;;; image-dired-tag-files image-dired-show-all-from-dir image-dired-display-thumbs
15053;;;;;; image-dired-dired-with-window-configuration image-dired-dired-toggle-marked-thumbs) 15050;;;;;; image-dired-dired-with-window-configuration image-dired-dired-toggle-marked-thumbs)
15054;;;;;; "image-dired" "image-dired.el" (20478 3673 653810 0)) 15051;;;;;; "image-dired" "image-dired.el" (20648 50109 802321 0))
15055;;; Generated autoloads from image-dired.el 15052;;; Generated autoloads from image-dired.el
15056 15053
15057(autoload 'image-dired-dired-toggle-marked-thumbs "image-dired" "\ 15054(autoload 'image-dired-dired-toggle-marked-thumbs "image-dired" "\
@@ -15252,7 +15249,7 @@ An image file is one whose name has an extension in
15252;;;*** 15249;;;***
15253 15250
15254;;;### (autoloads (image-bookmark-jump image-mode-as-text image-minor-mode 15251;;;### (autoloads (image-bookmark-jump image-mode-as-text image-minor-mode
15255;;;;;; image-mode) "image-mode" "image-mode.el" (20580 10161 446444 15252;;;;;; image-mode) "image-mode" "image-mode.el" (20656 44218 805102
15256;;;;;; 0)) 15253;;;;;; 0))
15257;;; Generated autoloads from image-mode.el 15254;;; Generated autoloads from image-mode.el
15258 15255
@@ -15298,7 +15295,7 @@ on these modes.
15298;;;*** 15295;;;***
15299 15296
15300;;;### (autoloads (imenu imenu-add-menubar-index imenu-add-to-menubar 15297;;;### (autoloads (imenu imenu-add-menubar-index imenu-add-to-menubar
15301;;;;;; imenu-sort-function) "imenu" "imenu.el" (20622 22438 32851 15298;;;;;; imenu-sort-function) "imenu" "imenu.el" (20644 53049 326201
15302;;;;;; 0)) 15299;;;;;; 0))
15303;;; Generated autoloads from imenu.el 15300;;; Generated autoloads from imenu.el
15304 15301
@@ -15492,7 +15489,7 @@ of `inferior-lisp-program'). Runs the hooks from
15492;;;;;; Info-goto-emacs-key-command-node Info-goto-emacs-command-node 15489;;;;;; Info-goto-emacs-key-command-node Info-goto-emacs-command-node
15493;;;;;; Info-mode info-finder info-apropos Info-index Info-directory 15490;;;;;; Info-mode info-finder info-apropos Info-index Info-directory
15494;;;;;; Info-on-current-buffer info-standalone info-emacs-bug info-emacs-manual 15491;;;;;; Info-on-current-buffer info-standalone info-emacs-bug info-emacs-manual
15495;;;;;; info info-other-window) "info" "info.el" (20623 43301 870757 15492;;;;;; info info-other-window) "info" "info.el" (20648 50109 802321
15496;;;;;; 0)) 15493;;;;;; 0))
15497;;; Generated autoloads from info.el 15494;;; Generated autoloads from info.el
15498 15495
@@ -16031,10 +16028,11 @@ Add submenus to the File menu, to convert to and from various formats.
16031;;;*** 16028;;;***
16032 16029
16033;;;### (autoloads (ispell-message ispell-minor-mode ispell ispell-complete-word-interior-frag 16030;;;### (autoloads (ispell-message ispell-minor-mode ispell ispell-complete-word-interior-frag
16034;;;;;; ispell-complete-word ispell-continue ispell-buffer ispell-comments-and-strings 16031;;;;;; ispell-complete-word ispell-continue ispell-buffer-with-debug
16035;;;;;; ispell-region ispell-change-dictionary ispell-kill-ispell 16032;;;;;; ispell-buffer ispell-comments-and-strings ispell-region ispell-change-dictionary
16036;;;;;; ispell-help ispell-pdict-save ispell-word ispell-personal-dictionary) 16033;;;;;; ispell-kill-ispell ispell-help ispell-pdict-save ispell-word
16037;;;;;; "ispell" "textmodes/ispell.el" (20601 16294 451653 0)) 16034;;;;;; ispell-personal-dictionary) "ispell" "textmodes/ispell.el"
16035;;;;;; (20634 17206 740185 0))
16038;;; Generated autoloads from textmodes/ispell.el 16036;;; Generated autoloads from textmodes/ispell.el
16039 16037
16040(put 'ispell-check-comments 'safe-local-variable (lambda (a) (memq a '(nil t exclusive)))) 16038(put 'ispell-check-comments 'safe-local-variable (lambda (a) (memq a '(nil t exclusive))))
@@ -16187,6 +16185,12 @@ Check the current buffer for spelling errors interactively.
16187 16185
16188\(fn)" t nil) 16186\(fn)" t nil)
16189 16187
16188(autoload 'ispell-buffer-with-debug "ispell" "\
16189`ispell-buffer' with some output sent to `ispell-debug-buffer' buffer.
16190Use APPEND to append the info to previous buffer if exists.
16191
16192\(fn &optional APPEND)" t nil)
16193
16190(autoload 'ispell-continue "ispell" "\ 16194(autoload 'ispell-continue "ispell" "\
16191Continue a halted spelling session beginning with the current word. 16195Continue a halted spelling session beginning with the current word.
16192 16196
@@ -16392,7 +16396,7 @@ by `jka-compr-installed'.
16392 16396
16393;;;*** 16397;;;***
16394 16398
16395;;;### (autoloads (js-mode) "js" "progmodes/js.el" (20532 45476 981297 16399;;;### (autoloads (js-mode) "js" "progmodes/js.el" (20665 59189 799105
16396;;;;;; 0)) 16400;;;;;; 0))
16397;;; Generated autoloads from progmodes/js.el 16401;;; Generated autoloads from progmodes/js.el
16398 16402
@@ -16972,8 +16976,8 @@ Major mode for browsing CVS log output.
16972 16976
16973;;;*** 16977;;;***
16974 16978
16975;;;### (autoloads (longlines-mode) "longlines" "longlines.el" (20355 16979;;;### (autoloads (longlines-mode) "longlines" "longlines.el" (20664
16976;;;;;; 10021 546955 0)) 16980;;;;;; 38325 385623 0))
16977;;; Generated autoloads from longlines.el 16981;;; Generated autoloads from longlines.el
16978 16982
16979(autoload 'longlines-mode "longlines" "\ 16983(autoload 'longlines-mode "longlines" "\
@@ -17122,8 +17126,8 @@ This function is suitable for execution in an init file.
17122 17126
17123;;;*** 17127;;;***
17124 17128
17125;;;### (autoloads (m4-mode) "m4-mode" "progmodes/m4-mode.el" (20355 17129;;;### (autoloads (m4-mode) "m4-mode" "progmodes/m4-mode.el" (20665
17126;;;;;; 10021 546955 0)) 17130;;;;;; 59189 799105 0))
17127;;; Generated autoloads from progmodes/m4-mode.el 17131;;; Generated autoloads from progmodes/m4-mode.el
17128 17132
17129(autoload 'm4-mode "m4-mode" "\ 17133(autoload 'm4-mode "m4-mode" "\
@@ -17483,8 +17487,8 @@ The mail client is taken to be the handler of mailto URLs.
17483 17487
17484;;;### (autoloads (makefile-imake-mode makefile-bsdmake-mode makefile-makepp-mode 17488;;;### (autoloads (makefile-imake-mode makefile-bsdmake-mode makefile-makepp-mode
17485;;;;;; makefile-gmake-mode makefile-automake-mode makefile-mode) 17489;;;;;; makefile-gmake-mode makefile-automake-mode makefile-mode)
17486;;;;;; "make-mode" "progmodes/make-mode.el" (20392 30149 675975 17490;;;;;; "make-mode" "progmodes/make-mode.el" (20665 59189 799105
17487;;;;;; 59000)) 17491;;;;;; 0))
17488;;; Generated autoloads from progmodes/make-mode.el 17492;;; Generated autoloads from progmodes/make-mode.el
17489 17493
17490(autoload 'makefile-mode "make-mode" "\ 17494(autoload 'makefile-mode "make-mode" "\
@@ -17725,7 +17729,7 @@ recursion depth in the minibuffer prompt. This is only useful if
17725;;;;;; message-forward-make-body message-forward message-recover 17729;;;;;; message-forward-make-body message-forward message-recover
17726;;;;;; message-supersede message-cancel-news message-followup message-wide-reply 17730;;;;;; message-supersede message-cancel-news message-followup message-wide-reply
17727;;;;;; message-reply message-news message-mail message-mode) "message" 17731;;;;;; message-reply message-news message-mail message-mode) "message"
17728;;;;;; "gnus/message.el" (20567 23165 75548 0)) 17732;;;;;; "gnus/message.el" (20650 54512 564403 0))
17729;;; Generated autoloads from gnus/message.el 17733;;; Generated autoloads from gnus/message.el
17730 17734
17731(define-mail-user-agent 'message-user-agent 'message-mail 'message-send-and-exit 'message-kill-buffer 'message-send-hook) 17735(define-mail-user-agent 'message-user-agent 'message-mail 'message-send-and-exit 'message-kill-buffer 'message-send-hook)
@@ -17953,7 +17957,7 @@ redisplayed as output is inserted.
17953 17957
17954;;;### (autoloads (mh-fully-kill-draft mh-send-letter mh-user-agent-compose 17958;;;### (autoloads (mh-fully-kill-draft mh-send-letter mh-user-agent-compose
17955;;;;;; mh-smail-batch mh-smail-other-window mh-smail) "mh-comp" 17959;;;;;; mh-smail-batch mh-smail-other-window mh-smail) "mh-comp"
17956;;;;;; "mh-e/mh-comp.el" (20355 10021 546955 0)) 17960;;;;;; "mh-e/mh-comp.el" (20659 20411 59719 0))
17957;;; Generated autoloads from mh-e/mh-comp.el 17961;;; Generated autoloads from mh-e/mh-comp.el
17958 17962
17959(autoload 'mh-smail "mh-comp" "\ 17963(autoload 'mh-smail "mh-comp" "\
@@ -18043,8 +18047,8 @@ delete the draft message.
18043 18047
18044;;;*** 18048;;;***
18045 18049
18046;;;### (autoloads (mh-version) "mh-e" "mh-e/mh-e.el" (20614 54428 18050;;;### (autoloads (mh-version) "mh-e" "mh-e/mh-e.el" (20659 20411
18047;;;;;; 654267 0)) 18051;;;;;; 59719 0))
18048;;; Generated autoloads from mh-e/mh-e.el 18052;;; Generated autoloads from mh-e/mh-e.el
18049 18053
18050(put 'mh-progs 'risky-local-variable t) 18054(put 'mh-progs 'risky-local-variable t)
@@ -18061,7 +18065,7 @@ Display version information about MH-E and the MH mail handling system.
18061;;;*** 18065;;;***
18062 18066
18063;;;### (autoloads (mh-folder-mode mh-nmail mh-rmail) "mh-folder" 18067;;;### (autoloads (mh-folder-mode mh-nmail mh-rmail) "mh-folder"
18064;;;;;; "mh-e/mh-folder.el" (20371 55972 331861 0)) 18068;;;;;; "mh-e/mh-folder.el" (20659 20411 59719 0))
18065;;; Generated autoloads from mh-e/mh-folder.el 18069;;; Generated autoloads from mh-e/mh-folder.el
18066 18070
18067(autoload 'mh-rmail "mh-folder" "\ 18071(autoload 'mh-rmail "mh-folder" "\
@@ -18170,7 +18174,7 @@ to its second argument TM.
18170;;;*** 18174;;;***
18171 18175
18172;;;### (autoloads (minibuffer-electric-default-mode) "minibuf-eldef" 18176;;;### (autoloads (minibuffer-electric-default-mode) "minibuf-eldef"
18173;;;;;; "minibuf-eldef.el" (20580 10161 446444 0)) 18177;;;;;; "minibuf-eldef.el" (20639 35129 235843 0))
18174;;; Generated autoloads from minibuf-eldef.el 18178;;; Generated autoloads from minibuf-eldef.el
18175 18179
18176(defvar minibuffer-electric-default-mode nil "\ 18180(defvar minibuffer-electric-default-mode nil "\
@@ -18922,6 +18926,83 @@ per-character basis, this may not be accurate.
18922 18926
18923;;;*** 18927;;;***
18924 18928
18929;;;### (autoloads (advice-member-p advice-remove advice-add advice--add-function
18930;;;;;; add-function advice--buffer-local advice--remove-function)
18931;;;;;; "nadvice" "emacs-lisp/nadvice.el" (20651 26294 774003 0))
18932;;; Generated autoloads from emacs-lisp/nadvice.el
18933
18934(autoload 'advice--remove-function "nadvice" "\
18935
18936
18937\(fn FLIST FUNCTION)" nil nil)
18938
18939(autoload 'advice--buffer-local "nadvice" "\
18940Buffer-local value of VAR, presumed to contain a function.
18941
18942\(fn VAR)" nil nil)
18943
18944(autoload 'add-function "nadvice" "\
18945Add a piece of advice on the function stored at PLACE.
18946FUNCTION describes the code to add. WHERE describes where to add it.
18947WHERE can be explained by showing the resulting new function, as the
18948result of combining FUNCTION and the previous value of PLACE, which we
18949call OLDFUN here:
18950`:before' (lambda (&rest r) (apply FUNCTION r) (apply OLDFUN r))
18951`:after' (lambda (&rest r) (prog1 (apply OLDFUN r) (apply FUNCTION r)))
18952`:around' (lambda (&rest r) (apply FUNCTION OLDFUN r))
18953`:before-while' (lambda (&rest r) (and (apply FUNCTION r) (apply OLDFUN r)))
18954`:before-until' (lambda (&rest r) (or (apply FUNCTION r) (apply OLDFUN r)))
18955`:after-while' (lambda (&rest r) (and (apply OLDFUN r) (apply FUNCTION r)))
18956`:after-until' (lambda (&rest r) (or (apply OLDFUN r) (apply FUNCTION r)))
18957If FUNCTION was already added, do nothing.
18958PROPS is an alist of additional properties, among which the following have
18959a special meaning:
18960- `name': a string or symbol. It can be used to refer to this piece of advice.
18961
18962PLACE cannot be a simple variable. Instead it should either be
18963\(default-value 'VAR) or (local 'VAR) depending on whether FUNCTION
18964should be applied to VAR buffer-locally or globally.
18965
18966If one of FUNCTION or OLDFUN is interactive, then the resulting function
18967is also interactive. There are 3 cases:
18968- FUNCTION is not interactive: the interactive spec of OLDFUN is used.
18969- The interactive spec of FUNCTION is itself a function: it should take one
18970 argument (the interactive spec of OLDFUN, which it can pass to
18971 `advice-eval-interactive-spec') and return the list of arguments to use.
18972- Else, use the interactive spec of FUNCTION and ignore the one of OLDFUN.
18973
18974\(fn WHERE PLACE FUNCTION &optional PROPS)" nil t)
18975
18976(autoload 'advice--add-function "nadvice" "\
18977
18978
18979\(fn WHERE REF FUNCTION PROPS)" nil nil)
18980
18981(autoload 'advice-add "nadvice" "\
18982Like `add-function' but for the function named SYMBOL.
18983Contrary to `add-function', this will properly handle the cases where SYMBOL
18984is defined as a macro, alias, command, ...
18985
18986\(fn SYMBOL WHERE FUNCTION &optional PROPS)" nil nil)
18987
18988(autoload 'advice-remove "nadvice" "\
18989Like `remove-function' but for the function named SYMBOL.
18990Contrary to `remove-function', this will work also when SYMBOL is a macro
18991and it will not signal an error if SYMBOL is not `fboundp'.
18992Instead of the actual function to remove, FUNCTION can also be the `name'
18993of the piece of advice.
18994
18995\(fn SYMBOL FUNCTION)" nil nil)
18996
18997(autoload 'advice-member-p "nadvice" "\
18998Return non-nil if ADVICE has been added to FUNCTION-NAME.
18999Instead of ADVICE being the actual function, it can also be the `name'
19000of the piece of advice.
19001
19002\(fn ADVICE FUNCTION-NAME)" nil nil)
19003
19004;;;***
19005
18925;;;### (autoloads (network-connection network-connection-to-service 19006;;;### (autoloads (network-connection network-connection-to-service
18926;;;;;; whois-reverse-lookup whois finger ftp run-dig dns-lookup-host 19007;;;;;; whois-reverse-lookup whois finger ftp run-dig dns-lookup-host
18927;;;;;; nslookup nslookup-host ping traceroute route arp netstat 19008;;;;;; nslookup nslookup-host ping traceroute route arp netstat
@@ -20565,8 +20646,8 @@ Includes files as well as host names followed by a colon.
20565 20646
20566;;;### (autoloads (pcomplete-shell-setup pcomplete-comint-setup pcomplete-list 20647;;;### (autoloads (pcomplete-shell-setup pcomplete-comint-setup pcomplete-list
20567;;;;;; pcomplete-help pcomplete-expand pcomplete-continue pcomplete-expand-and-complete 20648;;;;;; pcomplete-help pcomplete-expand pcomplete-continue pcomplete-expand-and-complete
20568;;;;;; pcomplete-reverse pcomplete) "pcomplete" "pcomplete.el" (20582 20649;;;;;; pcomplete-reverse pcomplete) "pcomplete" "pcomplete.el" (20652
20569;;;;;; 12914 894781 0)) 20650;;;;;; 47164 970964 0))
20570;;; Generated autoloads from pcomplete.el 20651;;; Generated autoloads from pcomplete.el
20571 20652
20572(autoload 'pcomplete "pcomplete" "\ 20653(autoload 'pcomplete "pcomplete" "\
@@ -20710,7 +20791,7 @@ Global menu used by PCL-CVS.")
20710;;;*** 20791;;;***
20711 20792
20712;;;### (autoloads (perl-mode) "perl-mode" "progmodes/perl-mode.el" 20793;;;### (autoloads (perl-mode) "perl-mode" "progmodes/perl-mode.el"
20713;;;;;; (20566 63671 243798 0)) 20794;;;;;; (20665 59189 799105 0))
20714;;; Generated autoloads from progmodes/perl-mode.el 20795;;; Generated autoloads from progmodes/perl-mode.el
20715(put 'perl-indent-level 'safe-local-variable 'integerp) 20796(put 'perl-indent-level 'safe-local-variable 'integerp)
20716(put 'perl-continued-statement-offset 'safe-local-variable 'integerp) 20797(put 'perl-continued-statement-offset 'safe-local-variable 'integerp)
@@ -20897,8 +20978,8 @@ pong-mode keybindings:\\<pong-mode-map>
20897 20978
20898;;;*** 20979;;;***
20899 20980
20900;;;### (autoloads (pop3-movemail) "pop3" "gnus/pop3.el" (20458 56750 20981;;;### (autoloads (pop3-movemail) "pop3" "gnus/pop3.el" (20643 32183
20901;;;;;; 651721 0)) 20982;;;;;; 554981 0))
20902;;; Generated autoloads from gnus/pop3.el 20983;;; Generated autoloads from gnus/pop3.el
20903 20984
20904(autoload 'pop3-movemail "pop3" "\ 20985(autoload 'pop3-movemail "pop3" "\
@@ -20979,7 +21060,7 @@ Ignores leading comment characters.
20979;;;;;; pr-ps-buffer-print pr-ps-buffer-using-ghostscript pr-ps-buffer-preview 21060;;;;;; pr-ps-buffer-print pr-ps-buffer-using-ghostscript pr-ps-buffer-preview
20980;;;;;; pr-ps-directory-ps-print pr-ps-directory-print pr-ps-directory-using-ghostscript 21061;;;;;; pr-ps-directory-ps-print pr-ps-directory-print pr-ps-directory-using-ghostscript
20981;;;;;; pr-ps-directory-preview pr-interface) "printing" "printing.el" 21062;;;;;; pr-ps-directory-preview pr-interface) "printing" "printing.el"
20982;;;;;; (20566 63671 243798 0)) 21063;;;;;; (20648 50109 802321 0))
20983;;; Generated autoloads from printing.el 21064;;; Generated autoloads from printing.el
20984 21065
20985(autoload 'pr-interface "printing" "\ 21066(autoload 'pr-interface "printing" "\
@@ -21587,7 +21668,7 @@ Proced buffers.
21587 21668
21588;;;### (autoloads (profiler-find-profile-other-frame profiler-find-profile-other-window 21669;;;### (autoloads (profiler-find-profile-other-frame profiler-find-profile-other-window
21589;;;;;; profiler-find-profile profiler-start) "profiler" "profiler.el" 21670;;;;;; profiler-find-profile profiler-start) "profiler" "profiler.el"
21590;;;;;; (20619 46245 806932 0)) 21671;;;;;; (20650 54468 205452 950000))
21591;;; Generated autoloads from profiler.el 21672;;; Generated autoloads from profiler.el
21592 21673
21593(autoload 'profiler-start "profiler" "\ 21674(autoload 'profiler-start "profiler" "\
@@ -21651,8 +21732,8 @@ With prefix argument ARG, restart the Prolog process if running before.
21651 21732
21652;;;*** 21733;;;***
21653 21734
21654;;;### (autoloads (bdf-directory-list) "ps-bdf" "ps-bdf.el" (20355 21735;;;### (autoloads (bdf-directory-list) "ps-bdf" "ps-bdf.el" (20652
21655;;;;;; 10021 546955 0)) 21736;;;;;; 47164 970964 0))
21656;;; Generated autoloads from ps-bdf.el 21737;;; Generated autoloads from ps-bdf.el
21657 21738
21658(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")) "\ 21739(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")) "\
@@ -21913,7 +21994,7 @@ If EXTENSION is any other symbol, it is ignored.
21913;;;*** 21994;;;***
21914 21995
21915;;;### (autoloads (python-mode run-python) "python" "progmodes/python.el" 21996;;;### (autoloads (python-mode run-python) "python" "progmodes/python.el"
21916;;;;;; (20599 27513 576550 0)) 21997;;;;;; (20660 41272 835092 0))
21917;;; Generated autoloads from progmodes/python.el 21998;;; Generated autoloads from progmodes/python.el
21918 21999
21919(add-to-list 'auto-mode-alist (cons (purecopy "\\.py\\'") 'python-mode)) 22000(add-to-list 'auto-mode-alist (cons (purecopy "\\.py\\'") 'python-mode))
@@ -22532,8 +22613,8 @@ For true \"word wrap\" behavior, use `visual-line-mode' instead.
22532;;;*** 22613;;;***
22533 22614
22534;;;### (autoloads (reftex-reset-scanning-information reftex-mode 22615;;;### (autoloads (reftex-reset-scanning-information reftex-mode
22535;;;;;; turn-on-reftex) "reftex" "textmodes/reftex.el" (20590 45996 22616;;;;;; turn-on-reftex) "reftex" "textmodes/reftex.el" (20657 65077
22536;;;;;; 129575 0)) 22617;;;;;; 880084 0))
22537;;; Generated autoloads from textmodes/reftex.el 22618;;; Generated autoloads from textmodes/reftex.el
22538 22619
22539(autoload 'turn-on-reftex "reftex" "\ 22620(autoload 'turn-on-reftex "reftex" "\
@@ -22663,7 +22744,7 @@ Here are all local bindings.
22663;;;*** 22744;;;***
22664 22745
22665;;;### (autoloads (reftex-all-document-files) "reftex-parse" "textmodes/reftex-parse.el" 22746;;;### (autoloads (reftex-all-document-files) "reftex-parse" "textmodes/reftex-parse.el"
22666;;;;;; (20585 28088 480237 0)) 22747;;;;;; (20657 65077 880084 0))
22667;;; Generated autoloads from textmodes/reftex-parse.el 22748;;; Generated autoloads from textmodes/reftex-parse.el
22668 22749
22669(autoload 'reftex-all-document-files "reftex-parse" "\ 22750(autoload 'reftex-all-document-files "reftex-parse" "\
@@ -23384,7 +23465,7 @@ for modes derived from Text mode, like Mail mode.
23384;;;*** 23465;;;***
23385 23466
23386;;;### (autoloads (ruby-mode) "ruby-mode" "progmodes/ruby-mode.el" 23467;;;### (autoloads (ruby-mode) "ruby-mode" "progmodes/ruby-mode.el"
23387;;;;;; (20576 42138 697312 0)) 23468;;;;;; (20644 53049 326201 0))
23388;;; Generated autoloads from progmodes/ruby-mode.el 23469;;; Generated autoloads from progmodes/ruby-mode.el
23389 23470
23390(autoload 'ruby-mode "ruby-mode" "\ 23471(autoload 'ruby-mode "ruby-mode" "\
@@ -23401,6 +23482,8 @@ The variable `ruby-indent-level' controls the amount of indentation.
23401 23482
23402(add-to-list 'auto-mode-alist (cons (purecopy "\\.rb\\'") 'ruby-mode)) 23483(add-to-list 'auto-mode-alist (cons (purecopy "\\.rb\\'") 'ruby-mode))
23403 23484
23485(add-to-list 'auto-mode-alist '("Rakefile\\'" . ruby-mode))
23486
23404(dolist (name (list "ruby" "rbx" "jruby" "ruby1.9" "ruby1.8")) (add-to-list 'interpreter-mode-alist (cons (purecopy name) 'ruby-mode))) 23487(dolist (name (list "ruby" "rbx" "jruby" "ruby1.9" "ruby1.8")) (add-to-list 'interpreter-mode-alist (cons (purecopy name) 'ruby-mode)))
23405 23488
23406;;;*** 23489;;;***
@@ -23768,7 +23851,7 @@ histories, which is probably undesirable.
23768;;;*** 23851;;;***
23769 23852
23770;;;### (autoloads (dsssl-mode scheme-mode) "scheme" "progmodes/scheme.el" 23853;;;### (autoloads (dsssl-mode scheme-mode) "scheme" "progmodes/scheme.el"
23771;;;;;; (20427 14766 970343 0)) 23854;;;;;; (20665 59189 799105 0))
23772;;; Generated autoloads from progmodes/scheme.el 23855;;; Generated autoloads from progmodes/scheme.el
23773 23856
23774(autoload 'scheme-mode "scheme" "\ 23857(autoload 'scheme-mode "scheme" "\
@@ -24243,8 +24326,8 @@ Like `mail' command, but display mail buffer in another frame.
24243;;;*** 24326;;;***
24244 24327
24245;;;### (autoloads (server-save-buffers-kill-terminal server-mode 24328;;;### (autoloads (server-save-buffers-kill-terminal server-mode
24246;;;;;; server-force-delete server-start) "server" "server.el" (20594 24329;;;;;; server-force-delete server-start) "server" "server.el" (20639
24247;;;;;; 43050 277913 0)) 24330;;;;;; 35129 235843 0))
24248;;; Generated autoloads from server.el 24331;;; Generated autoloads from server.el
24249 24332
24250(put 'server-host 'risky-local-variable t) 24333(put 'server-host 'risky-local-variable t)
@@ -24311,7 +24394,7 @@ only these files will be asked to be saved.
24311 24394
24312;;;*** 24395;;;***
24313 24396
24314;;;### (autoloads (ses-mode) "ses" "ses.el" (20553 51627 169867 0)) 24397;;;### (autoloads (ses-mode) "ses" "ses.el" (20657 65077 880084 0))
24315;;; Generated autoloads from ses.el 24398;;; Generated autoloads from ses.el
24316 24399
24317(autoload 'ses-mode "ses" "\ 24400(autoload 'ses-mode "ses" "\
@@ -24330,7 +24413,7 @@ These are active only in the minibuffer, when entering or editing a formula:
24330;;;*** 24413;;;***
24331 24414
24332;;;### (autoloads (html-mode sgml-mode) "sgml-mode" "textmodes/sgml-mode.el" 24415;;;### (autoloads (html-mode sgml-mode) "sgml-mode" "textmodes/sgml-mode.el"
24333;;;;;; (20580 10161 446444 0)) 24416;;;;;; (20665 59189 799105 0))
24334;;; Generated autoloads from textmodes/sgml-mode.el 24417;;; Generated autoloads from textmodes/sgml-mode.el
24335 24418
24336(autoload 'sgml-mode "sgml-mode" "\ 24419(autoload 'sgml-mode "sgml-mode" "\
@@ -24396,7 +24479,7 @@ To work around that, do:
24396;;;*** 24479;;;***
24397 24480
24398;;;### (autoloads (sh-mode) "sh-script" "progmodes/sh-script.el" 24481;;;### (autoloads (sh-mode) "sh-script" "progmodes/sh-script.el"
24399;;;;;; (20624 64165 102958 0)) 24482;;;;;; (20665 59189 799105 0))
24400;;; Generated autoloads from progmodes/sh-script.el 24483;;; Generated autoloads from progmodes/sh-script.el
24401(put 'sh-shell 'safe-local-variable 'symbolp) 24484(put 'sh-shell 'safe-local-variable 'symbolp)
24402 24485
@@ -24550,7 +24633,7 @@ Set up file shadowing.
24550;;;*** 24633;;;***
24551 24634
24552;;;### (autoloads (shell shell-dumb-shell-regexp) "shell" "shell.el" 24635;;;### (autoloads (shell shell-dumb-shell-regexp) "shell" "shell.el"
24553;;;;;; (20566 63671 243798 0)) 24636;;;;;; (20664 38325 385623 0))
24554;;; Generated autoloads from shell.el 24637;;; Generated autoloads from shell.el
24555 24638
24556(defvar shell-dumb-shell-regexp (purecopy "cmd\\(proxy\\)?\\.exe") "\ 24639(defvar shell-dumb-shell-regexp (purecopy "cmd\\(proxy\\)?\\.exe") "\
@@ -25236,7 +25319,7 @@ Spam reports will be queued with the method used when
25236;;;*** 25319;;;***
25237 25320
25238;;;### (autoloads (speedbar-get-focus speedbar-frame-mode) "speedbar" 25321;;;### (autoloads (speedbar-get-focus speedbar-frame-mode) "speedbar"
25239;;;;;; "speedbar.el" (20566 63671 243798 0)) 25322;;;;;; "speedbar.el" (20648 50109 802321 0))
25240;;; Generated autoloads from speedbar.el 25323;;; Generated autoloads from speedbar.el
25241 25324
25242(defalias 'speedbar 'speedbar-frame-mode) 25325(defalias 'speedbar 'speedbar-frame-mode)
@@ -25279,8 +25362,8 @@ Return a vector containing the lines from `spook-phrases-file'.
25279;;;### (autoloads (sql-linter sql-db2 sql-interbase sql-postgres 25362;;;### (autoloads (sql-linter sql-db2 sql-interbase sql-postgres
25280;;;;;; sql-ms sql-ingres sql-solid sql-mysql sql-sqlite sql-informix 25363;;;;;; sql-ms sql-ingres sql-solid sql-mysql sql-sqlite sql-informix
25281;;;;;; sql-sybase sql-oracle sql-product-interactive sql-connect 25364;;;;;; sql-sybase sql-oracle sql-product-interactive sql-connect
25282;;;;;; sql-mode sql-help sql-add-product-keywords) "sql" "progmodes/sql.el" 25365;;;;;; sql-mode sql-add-product-keywords) "sql" "progmodes/sql.el"
25283;;;;;; (20566 63671 243798 0)) 25366;;;;;; (20654 2487 96777 0))
25284;;; Generated autoloads from progmodes/sql.el 25367;;; Generated autoloads from progmodes/sql.el
25285 25368
25286(autoload 'sql-add-product-keywords "sql" "\ 25369(autoload 'sql-add-product-keywords "sql" "\
@@ -25304,40 +25387,7 @@ adds a fontification pattern to fontify identifiers ending in
25304 25387
25305\(fn PRODUCT KEYWORDS &optional APPEND)" nil nil) 25388\(fn PRODUCT KEYWORDS &optional APPEND)" nil nil)
25306 25389
25307(autoload 'sql-help "sql" "\ 25390(eval '(defun sql-help nil #("Show short help for the SQL modes.\n\nUse an entry function to open an interactive SQL buffer. This buffer is\nusually named `*SQL*'. The name of the major mode is SQLi.\n\nUse the following commands to start a specific SQL interpreter:\n\n \\\\FREE\n\nOther non-free SQL implementations are also supported:\n\n \\\\NONFREE\n\nBut we urge you to choose a free implementation instead of these.\n\nYou can also use \\[sql-product-interactive] to invoke the\ninterpreter for the current `sql-product'.\n\nOnce you have the SQLi buffer, you can enter SQL statements in the\nbuffer. The output generated is appended to the buffer and a new prompt\nis generated. See the In/Out menu in the SQLi buffer for some functions\nthat help you navigate through the buffer, the input history, etc.\n\nIf you have a really complex SQL statement or if you are writing a\nprocedure, you can do this in a separate buffer. Put the new buffer in\n`sql-mode' by calling \\[sql-mode]. The name of this buffer can be\nanything. The name of the major mode is SQL.\n\nIn this SQL buffer (SQL mode), you can send the region or the entire\nbuffer to the interactive SQL buffer (SQLi mode). The results are\nappended to the SQLi buffer without disturbing your SQL buffer." 0 1 (dynamic-docstring-function sql--make-help-docstring)) (interactive) (describe-function 'sql-help)))
25308Show short help for the SQL modes.
25309
25310Use an entry function to open an interactive SQL buffer. This buffer is
25311usually named `*SQL*'. The name of the major mode is SQLi.
25312
25313Use the following commands to start a specific SQL interpreter:
25314
25315 \\\\FREE
25316
25317Other non-free SQL implementations are also supported:
25318
25319 \\\\NONFREE
25320
25321But we urge you to choose a free implementation instead of these.
25322
25323You can also use \\[sql-product-interactive] to invoke the
25324interpreter for the current `sql-product'.
25325
25326Once you have the SQLi buffer, you can enter SQL statements in the
25327buffer. The output generated is appended to the buffer and a new prompt
25328is generated. See the In/Out menu in the SQLi buffer for some functions
25329that help you navigate through the buffer, the input history, etc.
25330
25331If you have a really complex SQL statement or if you are writing a
25332procedure, you can do this in a separate buffer. Put the new buffer in
25333`sql-mode' by calling \\[sql-mode]. The name of this buffer can be
25334anything. The name of the major mode is SQL.
25335
25336In this SQL buffer (SQL mode), you can send the region or the entire
25337buffer to the interactive SQL buffer (SQLi mode). The results are
25338appended to the SQLi buffer without disturbing your SQL buffer.
25339
25340\(fn)" t nil)
25341 25391
25342(autoload 'sql-mode "sql" "\ 25392(autoload 'sql-mode "sql" "\
25343Major mode to edit SQL. 25393Major mode to edit SQL.
@@ -25776,7 +25826,7 @@ buffer.
25776;;;*** 25826;;;***
25777 25827
25778;;;### (autoloads (srecode-template-mode) "srecode/srt-mode" "cedet/srecode/srt-mode.el" 25828;;;### (autoloads (srecode-template-mode) "srecode/srt-mode" "cedet/srecode/srt-mode.el"
25779;;;;;; (20586 48936 135199 0)) 25829;;;;;; (20642 11326 759953 0))
25780;;; Generated autoloads from cedet/srecode/srt-mode.el 25830;;; Generated autoloads from cedet/srecode/srt-mode.el
25781 25831
25782(autoload 'srecode-template-mode "srecode/srt-mode" "\ 25832(autoload 'srecode-template-mode "srecode/srt-mode" "\
@@ -26105,7 +26155,7 @@ The variable `tab-width' controls the spacing of tab stops.
26105;;;;;; table-recognize table-insert-row-column table-insert-column 26155;;;;;; table-recognize table-insert-row-column table-insert-column
26106;;;;;; table-insert-row table-insert table-point-left-cell-hook 26156;;;;;; table-insert-row table-insert table-point-left-cell-hook
26107;;;;;; table-point-entered-cell-hook table-load-hook table-cell-map-hook) 26157;;;;;; table-point-entered-cell-hook table-load-hook table-cell-map-hook)
26108;;;;;; "table" "textmodes/table.el" (20586 48936 135199 0)) 26158;;;;;; "table" "textmodes/table.el" (20660 41272 835092 0))
26109;;; Generated autoloads from textmodes/table.el 26159;;; Generated autoloads from textmodes/table.el
26110 26160
26111(defvar table-cell-map-hook nil "\ 26161(defvar table-cell-map-hook nil "\
@@ -26813,7 +26863,7 @@ Normally input is edited in Emacs and sent a line at a time.
26813;;;*** 26863;;;***
26814 26864
26815;;;### (autoloads (serial-term ansi-term term make-term) "term" "term.el" 26865;;;### (autoloads (serial-term ansi-term term make-term) "term" "term.el"
26816;;;;;; (20580 10161 446444 0)) 26866;;;;;; (20648 50109 802321 0))
26817;;; Generated autoloads from term.el 26867;;; Generated autoloads from term.el
26818 26868
26819(autoload 'make-term "term" "\ 26869(autoload 'make-term "term" "\
@@ -26935,7 +26985,7 @@ tetris-mode keybindings:
26935;;;;;; tex-start-commands tex-start-options slitex-run-command latex-run-command 26985;;;;;; tex-start-commands tex-start-options slitex-run-command latex-run-command
26936;;;;;; tex-run-command tex-offer-save tex-main-file tex-first-line-header-regexp 26986;;;;;; tex-run-command tex-offer-save tex-main-file tex-first-line-header-regexp
26937;;;;;; tex-directory tex-shell-file-name) "tex-mode" "textmodes/tex-mode.el" 26987;;;;;; tex-directory tex-shell-file-name) "tex-mode" "textmodes/tex-mode.el"
26938;;;;;; (20594 43050 277913 0)) 26988;;;;;; (20665 59189 799105 0))
26939;;; Generated autoloads from textmodes/tex-mode.el 26989;;; Generated autoloads from textmodes/tex-mode.el
26940 26990
26941(defvar tex-shell-file-name nil "\ 26991(defvar tex-shell-file-name nil "\
@@ -27277,7 +27327,7 @@ if large. You can use `Info-split' to do this manually.
27277;;;*** 27327;;;***
27278 27328
27279;;;### (autoloads (texinfo-mode texinfo-close-quote texinfo-open-quote) 27329;;;### (autoloads (texinfo-mode texinfo-close-quote texinfo-open-quote)
27280;;;;;; "texinfo" "textmodes/texinfo.el" (20478 3673 653810 0)) 27330;;;;;; "texinfo" "textmodes/texinfo.el" (20665 59189 799105 0))
27281;;; Generated autoloads from textmodes/texinfo.el 27331;;; Generated autoloads from textmodes/texinfo.el
27282 27332
27283(defvar texinfo-open-quote (purecopy "``") "\ 27333(defvar texinfo-open-quote (purecopy "``") "\
@@ -27659,7 +27709,7 @@ Return a string giving the duration of the Emacs initialization.
27659;;;;;; time-to-day-in-year date-leap-year-p days-between date-to-day 27709;;;;;; time-to-day-in-year date-leap-year-p days-between date-to-day
27660;;;;;; time-add time-subtract time-since days-to-time time-less-p 27710;;;;;; time-add time-subtract time-since days-to-time time-less-p
27661;;;;;; seconds-to-time date-to-time) "time-date" "calendar/time-date.el" 27711;;;;;; seconds-to-time date-to-time) "time-date" "calendar/time-date.el"
27662;;;;;; (20453 5437 764254 0)) 27712;;;;;; (20652 47164 970964 0))
27663;;; Generated autoloads from calendar/time-date.el 27713;;; Generated autoloads from calendar/time-date.el
27664 27714
27665(autoload 'date-to-time "time-date" "\ 27715(autoload 'date-to-time "time-date" "\
@@ -27670,9 +27720,7 @@ If DATE lacks timezone information, GMT is assumed.
27670(if (or (featurep 'emacs) 27720(if (or (featurep 'emacs)
27671 (and (fboundp 'float-time) 27721 (and (fboundp 'float-time)
27672 (subrp (symbol-function 'float-time)))) 27722 (subrp (symbol-function 'float-time))))
27673 (progn 27723 (defalias 'time-to-seconds 'float-time)
27674 (defalias 'time-to-seconds 'float-time)
27675 (make-obsolete 'time-to-seconds 'float-time "21.1"))
27676 (autoload 'time-to-seconds "time-date")) 27724 (autoload 'time-to-seconds "time-date"))
27677 27725
27678(autoload 'seconds-to-time "time-date" "\ 27726(autoload 'seconds-to-time "time-date" "\
@@ -28189,16 +28237,17 @@ to a tcp server on another machine.
28189 28237
28190;;;*** 28238;;;***
28191 28239
28192;;;### (autoloads (trace-function-background trace-function trace-buffer) 28240;;;### (autoloads (trace-function-background trace-function-foreground
28193;;;;;; "trace" "emacs-lisp/trace.el" (20485 15269 390836 0)) 28241;;;;;; trace-buffer) "trace" "emacs-lisp/trace.el" (20652 47164
28242;;;;;; 970964 0))
28194;;; Generated autoloads from emacs-lisp/trace.el 28243;;; Generated autoloads from emacs-lisp/trace.el
28195 28244
28196(defvar trace-buffer (purecopy "*trace-output*") "\ 28245(defvar trace-buffer "*trace-output*" "\
28197Trace output will by default go to that buffer.") 28246Trace output will by default go to that buffer.")
28198 28247
28199(custom-autoload 'trace-buffer "trace" t) 28248(custom-autoload 'trace-buffer "trace" t)
28200 28249
28201(autoload 'trace-function "trace" "\ 28250(autoload 'trace-function-foreground "trace" "\
28202Traces FUNCTION with trace output going to BUFFER. 28251Traces FUNCTION with trace output going to BUFFER.
28203For every call of FUNCTION Lisp-style trace messages that display argument 28252For every call of FUNCTION Lisp-style trace messages that display argument
28204and return values will be inserted into BUFFER. This function generates the 28253and return values will be inserted into BUFFER. This function generates the
@@ -28207,7 +28256,7 @@ there might be!! The trace BUFFER will popup whenever FUNCTION is called.
28207Do not use this to trace functions that switch buffers or do any other 28256Do not use this to trace functions that switch buffers or do any other
28208display oriented stuff, use `trace-function-background' instead. 28257display oriented stuff, use `trace-function-background' instead.
28209 28258
28210\(fn FUNCTION &optional BUFFER)" t nil) 28259\(fn FUNCTION &optional BUFFER CONTEXT)" t nil)
28211 28260
28212(autoload 'trace-function-background "trace" "\ 28261(autoload 'trace-function-background "trace" "\
28213Traces FUNCTION with trace output going quietly to BUFFER. 28262Traces FUNCTION with trace output going quietly to BUFFER.
@@ -28220,14 +28269,16 @@ the window or buffer configuration.
28220 28269
28221BUFFER defaults to `trace-buffer'. 28270BUFFER defaults to `trace-buffer'.
28222 28271
28223\(fn FUNCTION &optional BUFFER)" t nil) 28272\(fn FUNCTION &optional BUFFER CONTEXT)" t nil)
28273
28274(defalias 'trace-function 'trace-function-foreground)
28224 28275
28225;;;*** 28276;;;***
28226 28277
28227;;;### (autoloads (tramp-unload-tramp tramp-completion-handle-file-name-completion 28278;;;### (autoloads (tramp-unload-tramp tramp-completion-handle-file-name-completion
28228;;;;;; tramp-completion-handle-file-name-all-completions tramp-unload-file-name-handlers 28279;;;;;; tramp-completion-handle-file-name-all-completions tramp-unload-file-name-handlers
28229;;;;;; tramp-file-name-handler tramp-syntax tramp-mode) "tramp" 28280;;;;;; tramp-file-name-handler tramp-syntax tramp-mode) "tramp"
28230;;;;;; "net/tramp.el" (20597 19239 817699 0)) 28281;;;;;; "net/tramp.el" (20652 47164 970964 0))
28231;;; Generated autoloads from net/tramp.el 28282;;; Generated autoloads from net/tramp.el
28232 28283
28233(defvar tramp-mode t "\ 28284(defvar tramp-mode t "\
@@ -29116,7 +29167,7 @@ Fetch a data URL (RFC 2397).
29116;;;*** 29167;;;***
29117 29168
29118;;;### (autoloads (url-generic-parse-url url-recreate-url) "url-parse" 29169;;;### (autoloads (url-generic-parse-url url-recreate-url) "url-parse"
29119;;;;;; "url/url-parse.el" (20577 33959 40183 0)) 29170;;;;;; "url/url-parse.el" (20648 50109 802321 0))
29120;;; Generated autoloads from url/url-parse.el 29171;;; Generated autoloads from url/url-parse.el
29121 29172
29122(autoload 'url-recreate-url "url-parse" "\ 29173(autoload 'url-recreate-url "url-parse" "\
@@ -29472,8 +29523,8 @@ If FILE-NAME is non-nil, save the result to FILE-NAME.
29472;;;;;; vc-print-log vc-retrieve-tag vc-create-tag vc-merge vc-insert-headers 29523;;;;;; vc-print-log vc-retrieve-tag vc-create-tag vc-merge vc-insert-headers
29473;;;;;; vc-revision-other-window vc-root-diff vc-ediff vc-version-ediff 29524;;;;;; vc-revision-other-window vc-root-diff vc-ediff vc-version-ediff
29474;;;;;; vc-diff vc-version-diff vc-register vc-next-action vc-before-checkin-hook 29525;;;;;; vc-diff vc-version-diff vc-register vc-next-action vc-before-checkin-hook
29475;;;;;; vc-checkin-hook vc-checkout-hook) "vc" "vc/vc.el" (20611 29526;;;;;; vc-checkin-hook vc-checkout-hook) "vc" "vc/vc.el" (20664
29476;;;;;; 52135 109136 0)) 29527;;;;;; 38325 385623 0))
29477;;; Generated autoloads from vc/vc.el 29528;;; Generated autoloads from vc/vc.el
29478 29529
29479(defvar vc-checkout-hook nil "\ 29530(defvar vc-checkout-hook nil "\
@@ -29828,10 +29879,49 @@ Name of the format file in a .bzr directory.")
29828 29879
29829;;;*** 29880;;;***
29830 29881
29831;;;### (autoloads (vc-dir) "vc-dir" "vc/vc-dir.el" (20522 9637 465791 29882;;;### (autoloads (vc-dir vc-dir-mode) "vc-dir" "vc/vc-dir.el" (20662
29832;;;;;; 0)) 29883;;;;;; 46799 394737 457000))
29833;;; Generated autoloads from vc/vc-dir.el 29884;;; Generated autoloads from vc/vc-dir.el
29834 29885
29886(autoload 'vc-dir-mode "vc-dir" "\
29887Major mode for VC directory buffers.
29888Marking/Unmarking key bindings and actions:
29889m - mark a file/directory
29890 - if the region is active, mark all the files in region.
29891 Restrictions: - a file cannot be marked if any parent directory is marked
29892 - a directory cannot be marked if any child file or
29893 directory is marked
29894u - unmark a file/directory
29895 - if the region is active, unmark all the files in region.
29896M - if the cursor is on a file: mark all the files with the same state as
29897 the current file
29898 - if the cursor is on a directory: mark all child files
29899 - with a prefix argument: mark all files
29900U - if the cursor is on a file: unmark all the files with the same state
29901 as the current file
29902 - if the cursor is on a directory: unmark all child files
29903 - with a prefix argument: unmark all files
29904mouse-2 - toggles the mark state
29905
29906VC commands
29907VC commands in the `C-x v' prefix can be used.
29908VC commands act on the marked entries. If nothing is marked, VC
29909commands act on the current entry.
29910
29911Search & Replace
29912S - searches the marked files
29913Q - does a query replace on the marked files
29914M-s a C-s - does an isearch on the marked files
29915M-s a C-M-s - does a regexp isearch on the marked files
29916If nothing is marked, these commands act on the current entry.
29917When a directory is current or marked, the Search & Replace
29918commands act on the child files of that directory that are displayed in
29919the *vc-dir* buffer.
29920
29921\\{vc-dir-mode-map}
29922
29923\(fn)" t nil)
29924
29835(autoload 'vc-dir "vc-dir" "\ 29925(autoload 'vc-dir "vc-dir" "\
29836Show the VC status for \"interesting\" files in and below DIR. 29926Show the VC status for \"interesting\" files in and below DIR.
29837This allows you to mark files and perform VC operations on them. 29927This allows you to mark files and perform VC operations on them.
@@ -29877,7 +29967,7 @@ case, and the process object in the asynchronous case.
29877 29967
29878;;;*** 29968;;;***
29879 29969
29880;;;### (autoloads nil "vc-git" "vc/vc-git.el" (20586 48936 135199 29970;;;### (autoloads nil "vc-git" "vc/vc-git.el" (20664 38325 385623
29881;;;;;; 0)) 29971;;;;;; 0))
29882;;; Generated autoloads from vc/vc-git.el 29972;;; Generated autoloads from vc/vc-git.el
29883 (defun vc-git-registered (file) 29973 (defun vc-git-registered (file)
@@ -29889,7 +29979,7 @@ case, and the process object in the asynchronous case.
29889 29979
29890;;;*** 29980;;;***
29891 29981
29892;;;### (autoloads nil "vc-hg" "vc/vc-hg.el" (20489 12324 656827 0)) 29982;;;### (autoloads nil "vc-hg" "vc/vc-hg.el" (20665 26237 235433 272000))
29893;;; Generated autoloads from vc/vc-hg.el 29983;;; Generated autoloads from vc/vc-hg.el
29894 (defun vc-hg-registered (file) 29984 (defun vc-hg-registered (file)
29895 "Return non-nil if FILE is registered with hg." 29985 "Return non-nil if FILE is registered with hg."
@@ -29949,7 +30039,7 @@ find any project directory." (let ((project-dir (getenv "PROJECTDIR")) dirs dir)
29949 30039
29950;;;*** 30040;;;***
29951 30041
29952;;;### (autoloads nil "vc-svn" "vc/vc-svn.el" (20355 10021 546955 30042;;;### (autoloads nil "vc-svn" "vc/vc-svn.el" (20648 50109 802321
29953;;;;;; 0)) 30043;;;;;; 0))
29954;;; Generated autoloads from vc/vc-svn.el 30044;;; Generated autoloads from vc/vc-svn.el
29955 (defun vc-svn-registered (f) 30045 (defun vc-svn-registered (f)
@@ -31199,7 +31289,7 @@ this is equivalent to `display-warning', using
31199;;;*** 31289;;;***
31200 31290
31201;;;### (autoloads (wdired-change-to-wdired-mode) "wdired" "wdired.el" 31291;;;### (autoloads (wdired-change-to-wdired-mode) "wdired" "wdired.el"
31202;;;;;; (20619 46245 806932 0)) 31292;;;;;; (20656 44218 805102 0))
31203;;; Generated autoloads from wdired.el 31293;;; Generated autoloads from wdired.el
31204 31294
31205(autoload 'wdired-change-to-wdired-mode "wdired" "\ 31295(autoload 'wdired-change-to-wdired-mode "wdired" "\
@@ -31819,7 +31909,7 @@ the mode if ARG is omitted or nil, and toggle it if ARG is `toggle'.
31819;;;*** 31909;;;***
31820 31910
31821;;;### (autoloads (woman-bookmark-jump woman-find-file woman-dired-find-file 31911;;;### (autoloads (woman-bookmark-jump woman-find-file woman-dired-find-file
31822;;;;;; woman woman-locale) "woman" "woman.el" (20623 43301 870757 31912;;;;;; woman woman-locale) "woman" "woman.el" (20657 65077 880084
31823;;;;;; 0)) 31913;;;;;; 0))
31824;;; Generated autoloads from woman.el 31914;;; Generated autoloads from woman.el
31825 31915
@@ -32370,8 +32460,8 @@ Zone out, completely.
32370;;;;;; "vc/ediff-ptch.el" "vc/ediff-vers.el" "vc/ediff-wind.el" 32460;;;;;; "vc/ediff-ptch.el" "vc/ediff-vers.el" "vc/ediff-wind.el"
32371;;;;;; "vc/pcvs-info.el" "vc/pcvs-parse.el" "vc/pcvs-util.el" "vc/vc-dav.el" 32461;;;;;; "vc/pcvs-info.el" "vc/pcvs-parse.el" "vc/pcvs-util.el" "vc/vc-dav.el"
32372;;;;;; "vcursor.el" "vt-control.el" "vt100-led.el" "w32-common-fns.el" 32462;;;;;; "vcursor.el" "vt-control.el" "vt100-led.el" "w32-common-fns.el"
32373;;;;;; "w32-fns.el" "w32-vars.el" "x-dnd.el") (20626 19627 425848 32463;;;;;; "w32-fns.el" "w32-vars.el" "x-dnd.el") (20665 59400 557912
32374;;;;;; 6000)) 32464;;;;;; 519000))
32375 32465
32376;;;*** 32466;;;***
32377 32467