diff options
| author | Karoly Lorentey | 2005-07-12 10:55:24 +0000 |
|---|---|---|
| committer | Karoly Lorentey | 2005-07-12 10:55:24 +0000 |
| commit | ac09dc1ec3f67a1a7a26411106480fea4e4d90b2 (patch) | |
| tree | e7cdbb75b89ab72dd49caeab6f30a7c4d315a8f3 | |
| parent | a9d63618b0fea2f1740d50736cbd37cc587aecb1 (diff) | |
| download | emacs-ac09dc1ec3f67a1a7a26411106480fea4e4d90b2.tar.gz emacs-ac09dc1ec3f67a1a7a26411106480fea4e4d90b2.zip | |
Rename function-key-map to local-function-key-map, and global-function-key-map to function-key-map. Same for key-translation-map.
* src/keyboard.h (struct kboard): Rename member 'Vfunction_key_map' to
'Vlocal_function_key_map', and 'Vkey_translation_map' to
'Vlocal_key_translation_map'.
(Vfunction_key_map, Vkey_translation_map): New declarations.
* src/keyboard.c (Vfunction_key_map): New variable.
(Vglobal_key_translation_map): Rename to Vglobal_key_translation_map.
(read_key_sequence, init_kboard, syms_of_keyboard, mark_kboards): Update.
* src/keymap.c (Fdescribe_buffer_bindings): Update.
* src/term.c (term_get_fkeys_1): Update.
* lisp/double.el (double-setup): Replace global-key-translation-map with key-translation-map.
* lisp/international/encoded-kb.el (encoded-kbd-setup-display): Ditto.
* lisp/international/iso-transl.el: Ditto.
* lisp/obsolete/iso-acc.el (iso-accents-customize): Ditto.
* lisp/edmacro.el (edmacro-format-keys): Use terminal-local binding of
local-function-key-map instead of function-key-map.
* lisp/emulation/cua-base.el (cua--pre-command-handler): Ditto.
* lisp/isearch.el (isearch-other-meta-char): Ditto.
* lisp/subr.el (read-quoted-char): Ditto.
* lisp/term/vt200.el: Ditto.
* lisp/term/vt201.el: Ditto.
* lisp/term/vt220.el: Ditto.
* lisp/term/vt240.el: Ditto.
* lisp/term/vt300.el: Ditto.
* lisp/term/vt320.el: Ditto.
* lisp/term/vt400.el: Ditto.
* lisp/term/vt420.el: Ditto.
* lisp/simple.el (normal-erase-is-backspace-mode): Add todo note.
* lisp/xt-mouse.el: Ditto.
* lisp/term/AT386.el: Adapt for renaming of function-key-map to local-function-key-map.
* lisp/term/internal.el: Ditto.
* lisp/term/iris-ansi.el: Ditto.
* lisp/term/lk201.el: Ditto.
* lisp/term/mac-win.el: Ditto.
* lisp/term/news.el: Ditto.
* lisp/term/rxvt.el: Ditto.
* lisp/term/sun.el: Ditto.
* lisp/term/tvi970.el: Ditto.
* lisp/term/wyse50.el: Ditto.
* lisp/term/x-win.el (x-setup-function-keys): Ditto.
* lisp/term/xterm.el: Ditto.
git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-386
35 files changed, 853 insertions, 750 deletions
diff --git a/lisp/double.el b/lisp/double.el index f340c70a11a..01b004ed158 100644 --- a/lisp/double.el +++ b/lisp/double.el | |||
| @@ -144,18 +144,18 @@ but not `C-u X' or `ESC X' since the X is not the prefix key." | |||
| 144 | (if enable-flag | 144 | (if enable-flag |
| 145 | (progn | 145 | (progn |
| 146 | ;; Set up key-translation-map as indicated by `double-map'. | 146 | ;; Set up key-translation-map as indicated by `double-map'. |
| 147 | ;; XXX I don't think global-key-translation-map should be made local here. -- Lorentey | 147 | ;; XXX I don't think key-translation-map should be made local here. -- Lorentey |
| 148 | (kill-local-variable 'global-key-translation-map) | 148 | (kill-local-variable 'key-translation-map) |
| 149 | (make-local-variable 'global-key-translation-map) | 149 | (make-local-variable 'key-translation-map) |
| 150 | (setq global-key-translation-map (if (keymapp global-key-translation-map) | 150 | (setq key-translation-map (if (keymapp key-translation-map) |
| 151 | (copy-keymap global-key-translation-map) | 151 | (copy-keymap key-translation-map) |
| 152 | (make-sparse-keymap))) | 152 | (make-sparse-keymap))) |
| 153 | (mapcar (function (lambda (entry) | 153 | (mapcar (function (lambda (entry) |
| 154 | (define-key global-key-translation-map | 154 | (define-key key-translation-map |
| 155 | (vector (nth 0 entry)) | 155 | (vector (nth 0 entry)) |
| 156 | 'double-translate-key))) | 156 | 'double-translate-key))) |
| 157 | (append double-map '((magic-start) (magic-end))))) | 157 | (append double-map '((magic-start) (magic-end))))) |
| 158 | (kill-local-variable 'global-key-translation-map))) | 158 | (kill-local-variable 'key-translation-map))) |
| 159 | 159 | ||
| 160 | ;;; Mode | 160 | ;;; Mode |
| 161 | 161 | ||
diff --git a/lisp/edmacro.el b/lisp/edmacro.el index 4ab7c7b1029..4384a0288e1 100644 --- a/lisp/edmacro.el +++ b/lisp/edmacro.el | |||
| @@ -443,7 +443,8 @@ doubt, use whitespace." | |||
| 443 | (rest-mac (vconcat macro [end-macro])) | 443 | (rest-mac (vconcat macro [end-macro])) |
| 444 | (res "") | 444 | (res "") |
| 445 | (len 0) | 445 | (len 0) |
| 446 | (one-line (eq verbose 1))) | 446 | (one-line (eq verbose 1)) |
| 447 | (fkm (terminal-local-value 'local-function-key-map nil))) | ||
| 447 | (if one-line (setq verbose nil)) | 448 | (if one-line (setq verbose nil)) |
| 448 | (when (stringp macro) | 449 | (when (stringp macro) |
| 449 | (loop for i below (length macro) do | 450 | (loop for i below (length macro) do |
| @@ -488,9 +489,9 @@ doubt, use whitespace." | |||
| 488 | (fkey nil) tlen tkey | 489 | (fkey nil) tlen tkey |
| 489 | (bind (or (loop for map in maps for b = (lookup-key map key) | 490 | (bind (or (loop for map in maps for b = (lookup-key map key) |
| 490 | thereis (and (not (integerp b)) b)) | 491 | thereis (and (not (integerp b)) b)) |
| 491 | (and (setq fkey (lookup-key function-key-map rest-mac)) | 492 | (and (setq fkey (lookup-key fkm rest-mac)) |
| 492 | (setq tlen fkey tkey (edmacro-subseq rest-mac 0 tlen) | 493 | (setq tlen fkey tkey (edmacro-subseq rest-mac 0 tlen) |
| 493 | fkey (lookup-key function-key-map tkey)) | 494 | fkey (lookup-key fkm tkey)) |
| 494 | (loop for map in maps | 495 | (loop for map in maps |
| 495 | for b = (lookup-key map fkey) | 496 | for b = (lookup-key map fkey) |
| 496 | when (and (not (integerp b)) b) | 497 | when (and (not (integerp b)) b) |
diff --git a/lisp/emulation/cua-base.el b/lisp/emulation/cua-base.el index 008a3c3ba49..551408cb34b 100644 --- a/lisp/emulation/cua-base.el +++ b/lisp/emulation/cua-base.el | |||
| @@ -1083,9 +1083,9 @@ If ARG is the atom `-', scroll upward by nearly full screen." | |||
| 1083 | (memq 'shift (event-modifiers | 1083 | (memq 'shift (event-modifiers |
| 1084 | (aref (this-single-command-keys) 0))) | 1084 | (aref (this-single-command-keys) 0))) |
| 1085 | ;; See if raw escape sequence maps to a shifted event, e.g. S-up or C-S-home. | 1085 | ;; See if raw escape sequence maps to a shifted event, e.g. S-up or C-S-home. |
| 1086 | (and (boundp 'function-key-map) | 1086 | (and (boundp 'local-function-key-map) |
| 1087 | function-key-map | 1087 | (terminal-local-value 'local-function-key-map nil) |
| 1088 | (let ((ev (lookup-key function-key-map | 1088 | (let ((ev (lookup-key (terminal-local-value 'local-function-key-map nil) |
| 1089 | (this-single-command-raw-keys)))) | 1089 | (this-single-command-raw-keys)))) |
| 1090 | (and (vector ev) | 1090 | (and (vector ev) |
| 1091 | (symbolp (setq ev (aref ev 0))) | 1091 | (symbolp (setq ev (aref ev 0))) |
diff --git a/lisp/international/encoded-kb.el b/lisp/international/encoded-kb.el index 9840645e655..b5394435e80 100644 --- a/lisp/international/encoded-kb.el +++ b/lisp/international/encoded-kb.el | |||
| @@ -260,9 +260,9 @@ DISPLAY may be a display id, a frame, or nil for the selected frame's display." | |||
| 260 | (when frame | 260 | (when frame |
| 261 | (with-selected-frame frame | 261 | (with-selected-frame frame |
| 262 | ;; Remove any previous encoded-kb keymap from key-translation-map. | 262 | ;; Remove any previous encoded-kb keymap from key-translation-map. |
| 263 | (let ((m (terminal-local-value 'key-translation-map frame))) | 263 | (let ((m (terminal-local-value 'local-key-translation-map frame))) |
| 264 | (if (equal (keymap-prompt m) "encoded-kb") | 264 | (if (equal (keymap-prompt m) "encoded-kb") |
| 265 | (set-terminal-local-value 'key-translation-map frame (keymap-parent m)) | 265 | (set-terminal-local-value 'local-key-translation-map frame (keymap-parent m)) |
| 266 | (while (keymap-parent m) | 266 | (while (keymap-parent m) |
| 267 | (if (equal (keymap-prompt (keymap-parent m)) "encoded-kb") | 267 | (if (equal (keymap-prompt (keymap-parent m)) "encoded-kb") |
| 268 | (set-keymap-parent m (keymap-parent (keymap-parent m)))) | 268 | (set-keymap-parent m (keymap-parent (keymap-parent m)))) |
| @@ -274,8 +274,8 @@ DISPLAY may be a display id, a frame, or nil for the selected frame's display." | |||
| 274 | (keymap (make-sparse-keymap "encoded-kb")) | 274 | (keymap (make-sparse-keymap "encoded-kb")) |
| 275 | (cim (current-input-mode)) | 275 | (cim (current-input-mode)) |
| 276 | result) | 276 | result) |
| 277 | (set-keymap-parent keymap (terminal-local-value 'key-translation-map frame)) | 277 | (set-keymap-parent keymap (terminal-local-value 'local-key-translation-map frame)) |
| 278 | (set-terminal-local-value 'key-translation-map frame keymap) | 278 | (set-terminal-local-value 'local-key-translation-map frame keymap) |
| 279 | (or (terminal-parameter nil 'encoded-kbd-saved-input-mode) | 279 | (or (terminal-parameter nil 'encoded-kbd-saved-input-mode) |
| 280 | (set-terminal-parameter nil 'encoded-kbd-saved-input-mode cim)) | 280 | (set-terminal-parameter nil 'encoded-kbd-saved-input-mode cim)) |
| 281 | (setq result (and coding (encoded-kbd-setup-keymap keymap coding))) | 281 | (setq result (and coding (encoded-kbd-setup-keymap keymap coding))) |
diff --git a/lisp/international/iso-transl.el b/lisp/international/iso-transl.el index 60ad205085a..b5fcd750d27 100644 --- a/lisp/international/iso-transl.el +++ b/lisp/international/iso-transl.el | |||
| @@ -41,8 +41,8 @@ | |||
| 41 | ;;; Code: | 41 | ;;; Code: |
| 42 | 42 | ||
| 43 | ;;; Provide some binding for startup: | 43 | ;;; Provide some binding for startup: |
| 44 | ;;;###autoload (or global-key-translation-map (setq global-key-translation-map (make-sparse-keymap))) | 44 | ;;;###autoload (or key-translation-map (setq key-translation-map (make-sparse-keymap))) |
| 45 | ;;;###autoload (define-key global-key-translation-map "\C-x8" 'iso-transl-ctl-x-8-map) | 45 | ;;;###autoload (define-key key-translation-map "\C-x8" 'iso-transl-ctl-x-8-map) |
| 46 | ;;;###autoload (autoload 'iso-transl-ctl-x-8-map "iso-transl" "Keymap for C-x 8 prefix." t 'keymap) | 46 | ;;;###autoload (autoload 'iso-transl-ctl-x-8-map "iso-transl" "Keymap for C-x 8 prefix." t 'keymap) |
| 47 | 47 | ||
| 48 | (defvar iso-transl-dead-key-alist | 48 | (defvar iso-transl-dead-key-alist |
| @@ -245,9 +245,9 @@ sequence VECTOR. (VECTOR is normally one character long.)") | |||
| 245 | (or iso-transl-ctl-x-8-map | 245 | (or iso-transl-ctl-x-8-map |
| 246 | (fset 'iso-transl-ctl-x-8-map | 246 | (fset 'iso-transl-ctl-x-8-map |
| 247 | (setq iso-transl-ctl-x-8-map (make-sparse-keymap)))) | 247 | (setq iso-transl-ctl-x-8-map (make-sparse-keymap)))) |
| 248 | (or global-key-translation-map | 248 | (or key-translation-map |
| 249 | (setq global-key-translation-map (make-sparse-keymap))) | 249 | (setq key-translation-map (make-sparse-keymap))) |
| 250 | (define-key global-key-translation-map "\C-x8" iso-transl-ctl-x-8-map) | 250 | (define-key key-translation-map "\C-x8" iso-transl-ctl-x-8-map) |
| 251 | 251 | ||
| 252 | ;; For each entry in the alist, we'll make up to three ways to generate | 252 | ;; For each entry in the alist, we'll make up to three ways to generate |
| 253 | ;; the character in question: the prefix `C-x 8'; the ALT modifier on | 253 | ;; the character in question: the prefix `C-x 8'; the ALT modifier on |
| @@ -263,7 +263,7 @@ sequence VECTOR. (VECTOR is normally one character long.)") | |||
| 263 | (vec (vconcat (car (car alist)))) | 263 | (vec (vconcat (car (car alist)))) |
| 264 | (tail iso-transl-dead-key-alist)) | 264 | (tail iso-transl-dead-key-alist)) |
| 265 | (aset vec 0 (logior (aref vec 0) ?\A-\^@)) | 265 | (aset vec 0 (logior (aref vec 0) ?\A-\^@)) |
| 266 | (define-key global-key-translation-map vec translated-vec) | 266 | (define-key key-translation-map vec translated-vec) |
| 267 | (define-key isearch-mode-map (vector (aref vec 0)) nil) | 267 | (define-key isearch-mode-map (vector (aref vec 0)) nil) |
| 268 | (while tail | 268 | (while tail |
| 269 | (if (eq (car (car tail)) inchar) | 269 | (if (eq (car (car tail)) inchar) |
| @@ -271,7 +271,7 @@ sequence VECTOR. (VECTOR is normally one character long.)") | |||
| 271 | (deadkey (cdr (car tail)))) | 271 | (deadkey (cdr (car tail)))) |
| 272 | (aset deadvec 0 deadkey) | 272 | (aset deadvec 0 deadkey) |
| 273 | (define-key isearch-mode-map (vector deadkey) nil) | 273 | (define-key isearch-mode-map (vector deadkey) nil) |
| 274 | (define-key global-key-translation-map deadvec translated-vec))) | 274 | (define-key key-translation-map deadvec translated-vec))) |
| 275 | (setq tail (cdr tail))))) | 275 | (setq tail (cdr tail))))) |
| 276 | (setq alist (cdr alist)))) | 276 | (setq alist (cdr alist)))) |
| 277 | 277 | ||
diff --git a/lisp/isearch.el b/lisp/isearch.el index 58c8fd5829a..e0c02f3ebab 100644 --- a/lisp/isearch.el +++ b/lisp/isearch.el | |||
| @@ -1648,9 +1648,10 @@ Isearch mode." | |||
| 1648 | (this-command-keys))) | 1648 | (this-command-keys))) |
| 1649 | (main-event (aref key 0)) | 1649 | (main-event (aref key 0)) |
| 1650 | (keylist (listify-key-sequence key)) | 1650 | (keylist (listify-key-sequence key)) |
| 1651 | (fkm (terminal-local-value 'local-function-key-map nil)) | ||
| 1651 | scroll-command isearch-point) | 1652 | scroll-command isearch-point) |
| 1652 | (cond ((and (= (length key) 1) | 1653 | (cond ((and (= (length key) 1) |
| 1653 | (let ((lookup (lookup-key function-key-map key))) | 1654 | (let ((lookup (lookup-key fkm key))) |
| 1654 | (not (or (null lookup) (integerp lookup) | 1655 | (not (or (null lookup) (integerp lookup) |
| 1655 | (keymapp lookup))))) | 1656 | (keymapp lookup))))) |
| 1656 | ;; Handle a function key that translates into something else. | 1657 | ;; Handle a function key that translates into something else. |
| @@ -1664,7 +1665,7 @@ Isearch mode." | |||
| 1664 | (isearch-done) | 1665 | (isearch-done) |
| 1665 | (apply 'isearch-unread keylist)) | 1666 | (apply 'isearch-unread keylist)) |
| 1666 | (setq keylist | 1667 | (setq keylist |
| 1667 | (listify-key-sequence (lookup-key function-key-map key))) | 1668 | (listify-key-sequence (lookup-key fkm key))) |
| 1668 | (while keylist | 1669 | (while keylist |
| 1669 | (setq key (car keylist)) | 1670 | (setq key (car keylist)) |
| 1670 | ;; If KEY is a printing char, we handle it here | 1671 | ;; If KEY is a printing char, we handle it here |
diff --git a/lisp/ldefs-boot.el b/lisp/ldefs-boot.el index 9e38efe10b4..5c58dc001d0 100644 --- a/lisp/ldefs-boot.el +++ b/lisp/ldefs-boot.el | |||
| @@ -4,7 +4,7 @@ | |||
| 4 | 4 | ||
| 5 | ;;;### (autoloads (5x5-crack 5x5-crack-xor-mutate 5x5-crack-mutating-best | 5 | ;;;### (autoloads (5x5-crack 5x5-crack-xor-mutate 5x5-crack-mutating-best |
| 6 | ;;;;;; 5x5-crack-mutating-current 5x5-crack-randomly 5x5) "5x5" | 6 | ;;;;;; 5x5-crack-mutating-current 5x5-crack-randomly 5x5) "5x5" |
| 7 | ;;;;;; "play/5x5.el" (17087 12566)) | 7 | ;;;;;; "play/5x5.el" (17107 37380)) |
| 8 | ;;; Generated autoloads from play/5x5.el | 8 | ;;; Generated autoloads from play/5x5.el |
| 9 | 9 | ||
| 10 | (autoload (quote 5x5) "5x5" "\ | 10 | (autoload (quote 5x5) "5x5" "\ |
| @@ -64,7 +64,7 @@ should return a grid vector array that is the new solution. | |||
| 64 | ;;;*** | 64 | ;;;*** |
| 65 | 65 | ||
| 66 | ;;;### (autoloads (ada-mode ada-add-extensions) "ada-mode" "progmodes/ada-mode.el" | 66 | ;;;### (autoloads (ada-mode ada-add-extensions) "ada-mode" "progmodes/ada-mode.el" |
| 67 | ;;;;;; (17087 12575)) | 67 | ;;;;;; (17107 37381)) |
| 68 | ;;; Generated autoloads from progmodes/ada-mode.el | 68 | ;;; Generated autoloads from progmodes/ada-mode.el |
| 69 | 69 | ||
| 70 | (autoload (quote ada-add-extensions) "ada-mode" "\ | 70 | (autoload (quote ada-add-extensions) "ada-mode" "\ |
| @@ -125,7 +125,7 @@ If you use ada-xref.el: | |||
| 125 | ;;;*** | 125 | ;;;*** |
| 126 | 126 | ||
| 127 | ;;;### (autoloads (ada-header) "ada-stmt" "progmodes/ada-stmt.el" | 127 | ;;;### (autoloads (ada-header) "ada-stmt" "progmodes/ada-stmt.el" |
| 128 | ;;;;;; (17087 12558)) | 128 | ;;;;;; (17107 37381)) |
| 129 | ;;; Generated autoloads from progmodes/ada-stmt.el | 129 | ;;; Generated autoloads from progmodes/ada-stmt.el |
| 130 | 130 | ||
| 131 | (autoload (quote ada-header) "ada-stmt" "\ | 131 | (autoload (quote ada-header) "ada-stmt" "\ |
| @@ -136,7 +136,7 @@ Insert a descriptive header at the top of the file. | |||
| 136 | ;;;*** | 136 | ;;;*** |
| 137 | 137 | ||
| 138 | ;;;### (autoloads (ada-find-file) "ada-xref" "progmodes/ada-xref.el" | 138 | ;;;### (autoloads (ada-find-file) "ada-xref" "progmodes/ada-xref.el" |
| 139 | ;;;;;; (17087 12564)) | 139 | ;;;;;; (17107 37382)) |
| 140 | ;;; Generated autoloads from progmodes/ada-xref.el | 140 | ;;; Generated autoloads from progmodes/ada-xref.el |
| 141 | 141 | ||
| 142 | (autoload (quote ada-find-file) "ada-xref" "\ | 142 | (autoload (quote ada-find-file) "ada-xref" "\ |
| @@ -151,7 +151,7 @@ Completion is available. | |||
| 151 | ;;;;;; change-log-mode add-change-log-entry-other-window add-change-log-entry | 151 | ;;;;;; change-log-mode add-change-log-entry-other-window add-change-log-entry |
| 152 | ;;;;;; find-change-log prompt-for-change-log-name add-log-mailing-address | 152 | ;;;;;; find-change-log prompt-for-change-log-name add-log-mailing-address |
| 153 | ;;;;;; add-log-full-name add-log-current-defun-function) "add-log" | 153 | ;;;;;; add-log-full-name add-log-current-defun-function) "add-log" |
| 154 | ;;;;;; "add-log.el" (17087 12581)) | 154 | ;;;;;; "add-log.el" (17107 37380)) |
| 155 | ;;; Generated autoloads from add-log.el | 155 | ;;; Generated autoloads from add-log.el |
| 156 | 156 | ||
| 157 | (defvar add-log-current-defun-function nil "\ | 157 | (defvar add-log-current-defun-function nil "\ |
| @@ -288,8 +288,8 @@ Fix any old-style date entries in the current log file to default format. | |||
| 288 | ;;;*** | 288 | ;;;*** |
| 289 | 289 | ||
| 290 | ;;;### (autoloads (defadvice ad-add-advice ad-default-compilation-action | 290 | ;;;### (autoloads (defadvice ad-add-advice ad-default-compilation-action |
| 291 | ;;;;;; ad-redefinition-action) "advice" "emacs-lisp/advice.el" (17087 | 291 | ;;;;;; ad-redefinition-action) "advice" "emacs-lisp/advice.el" (17107 |
| 292 | ;;;;;; 12524)) | 292 | ;;;;;; 37381)) |
| 293 | ;;; Generated autoloads from emacs-lisp/advice.el | 293 | ;;; Generated autoloads from emacs-lisp/advice.el |
| 294 | 294 | ||
| 295 | (defvar ad-redefinition-action (quote warn) "\ | 295 | (defvar ad-redefinition-action (quote warn) "\ |
| @@ -388,7 +388,7 @@ See Info node `(elisp)Advising Functions' for comprehensive documentation. | |||
| 388 | 388 | ||
| 389 | ;;;### (autoloads (align-newline-and-indent align-unhighlight-rule | 389 | ;;;### (autoloads (align-newline-and-indent align-unhighlight-rule |
| 390 | ;;;;;; align-highlight-rule align-current align-entire align-regexp | 390 | ;;;;;; align-highlight-rule align-current align-entire align-regexp |
| 391 | ;;;;;; align) "align" "align.el" (17087 12564)) | 391 | ;;;;;; align) "align" "align.el" (17107 37382)) |
| 392 | ;;; Generated autoloads from align.el | 392 | ;;; Generated autoloads from align.el |
| 393 | 393 | ||
| 394 | (autoload (quote align) "align" "\ | 394 | (autoload (quote align) "align" "\ |
| @@ -477,7 +477,7 @@ A replacement function for `newline-and-indent', aligning as it goes. | |||
| 477 | 477 | ||
| 478 | ;;;*** | 478 | ;;;*** |
| 479 | 479 | ||
| 480 | ;;;### (autoloads (allout-init) "allout" "allout.el" (17087 12552)) | 480 | ;;;### (autoloads (allout-init) "allout" "allout.el" (17107 37380)) |
| 481 | ;;; Generated autoloads from allout.el | 481 | ;;; Generated autoloads from allout.el |
| 482 | 482 | ||
| 483 | (autoload (quote allout-init) "allout" "\ | 483 | (autoload (quote allout-init) "allout" "\ |
| @@ -513,7 +513,7 @@ the following two lines in your Emacs init file: | |||
| 513 | ;;;*** | 513 | ;;;*** |
| 514 | 514 | ||
| 515 | ;;;### (autoloads (ange-ftp-hook-function ange-ftp-reread-dir) "ange-ftp" | 515 | ;;;### (autoloads (ange-ftp-hook-function ange-ftp-reread-dir) "ange-ftp" |
| 516 | ;;;;;; "net/ange-ftp.el" (17087 12570)) | 516 | ;;;;;; "net/ange-ftp.el" (17107 37379)) |
| 517 | ;;; Generated autoloads from net/ange-ftp.el | 517 | ;;; Generated autoloads from net/ange-ftp.el |
| 518 | 518 | ||
| 519 | (defalias (quote ange-ftp-re-read-dir) (quote ange-ftp-reread-dir)) | 519 | (defalias (quote ange-ftp-re-read-dir) (quote ange-ftp-reread-dir)) |
| @@ -535,7 +535,7 @@ Not documented | |||
| 535 | ;;;*** | 535 | ;;;*** |
| 536 | 536 | ||
| 537 | ;;;### (autoloads (animate-birthday-present animate-sequence animate-string) | 537 | ;;;### (autoloads (animate-birthday-present animate-sequence animate-string) |
| 538 | ;;;;;; "animate" "play/animate.el" (17087 12558)) | 538 | ;;;;;; "animate" "play/animate.el" (17107 37380)) |
| 539 | ;;; Generated autoloads from play/animate.el | 539 | ;;; Generated autoloads from play/animate.el |
| 540 | 540 | ||
| 541 | (autoload (quote animate-string) "animate" "\ | 541 | (autoload (quote animate-string) "animate" "\ |
| @@ -563,7 +563,7 @@ You can specify the one's name by NAME; the default value is \"Sarah\". | |||
| 563 | ;;;*** | 563 | ;;;*** |
| 564 | 564 | ||
| 565 | ;;;### (autoloads (ansi-color-process-output ansi-color-for-comint-mode-on) | 565 | ;;;### (autoloads (ansi-color-process-output ansi-color-for-comint-mode-on) |
| 566 | ;;;;;; "ansi-color" "ansi-color.el" (17087 12564)) | 566 | ;;;;;; "ansi-color" "ansi-color.el" (17107 37380)) |
| 567 | ;;; Generated autoloads from ansi-color.el | 567 | ;;; Generated autoloads from ansi-color.el |
| 568 | 568 | ||
| 569 | (autoload (quote ansi-color-for-comint-mode-on) "ansi-color" "\ | 569 | (autoload (quote ansi-color-for-comint-mode-on) "ansi-color" "\ |
| @@ -589,7 +589,7 @@ This is a good function to put in `comint-output-filter-functions'. | |||
| 589 | ;;;*** | 589 | ;;;*** |
| 590 | 590 | ||
| 591 | ;;;### (autoloads (antlr-set-tabs antlr-mode antlr-show-makefile-rules) | 591 | ;;;### (autoloads (antlr-set-tabs antlr-mode antlr-show-makefile-rules) |
| 592 | ;;;;;; "antlr-mode" "progmodes/antlr-mode.el" (17087 12570)) | 592 | ;;;;;; "antlr-mode" "progmodes/antlr-mode.el" (17107 37381)) |
| 593 | ;;; Generated autoloads from progmodes/antlr-mode.el | 593 | ;;; Generated autoloads from progmodes/antlr-mode.el |
| 594 | 594 | ||
| 595 | (autoload (quote antlr-show-makefile-rules) "antlr-mode" "\ | 595 | (autoload (quote antlr-show-makefile-rules) "antlr-mode" "\ |
| @@ -628,7 +628,7 @@ Used in `antlr-mode'. Also a useful function in `java-mode-hook'. | |||
| 628 | ;;;### (autoloads (appt-activate appt-make-list appt-delete appt-add | 628 | ;;;### (autoloads (appt-activate appt-make-list appt-delete appt-add |
| 629 | ;;;;;; appt-display-diary appt-display-duration appt-display-mode-line | 629 | ;;;;;; appt-display-diary appt-display-duration appt-display-mode-line |
| 630 | ;;;;;; appt-msg-window appt-visible appt-audible appt-message-warning-time | 630 | ;;;;;; appt-msg-window appt-visible appt-audible appt-message-warning-time |
| 631 | ;;;;;; appt-issue-message) "appt" "calendar/appt.el" (17087 12578)) | 631 | ;;;;;; appt-issue-message) "appt" "calendar/appt.el" (17107 37380)) |
| 632 | ;;; Generated autoloads from calendar/appt.el | 632 | ;;; Generated autoloads from calendar/appt.el |
| 633 | 633 | ||
| 634 | (defvar appt-issue-message t "\ | 634 | (defvar appt-issue-message t "\ |
| @@ -716,7 +716,7 @@ ARG is positive, otherwise off. | |||
| 716 | 716 | ||
| 717 | ;;;### (autoloads (apropos-documentation apropos-value apropos apropos-documentation-property | 717 | ;;;### (autoloads (apropos-documentation apropos-value apropos apropos-documentation-property |
| 718 | ;;;;;; apropos-command apropos-variable) "apropos" "apropos.el" | 718 | ;;;;;; apropos-command apropos-variable) "apropos" "apropos.el" |
| 719 | ;;;;;; (17087 12500)) | 719 | ;;;;;; (17107 37380)) |
| 720 | ;;; Generated autoloads from apropos.el | 720 | ;;; Generated autoloads from apropos.el |
| 721 | 721 | ||
| 722 | (autoload (quote apropos-variable) "apropos" "\ | 722 | (autoload (quote apropos-variable) "apropos" "\ |
| @@ -770,8 +770,8 @@ Returns list of symbols and documentation found. | |||
| 770 | 770 | ||
| 771 | ;;;*** | 771 | ;;;*** |
| 772 | 772 | ||
| 773 | ;;;### (autoloads (archive-mode) "arc-mode" "arc-mode.el" (17087 | 773 | ;;;### (autoloads (archive-mode) "arc-mode" "arc-mode.el" (17107 |
| 774 | ;;;;;; 12566)) | 774 | ;;;;;; 37383)) |
| 775 | ;;; Generated autoloads from arc-mode.el | 775 | ;;; Generated autoloads from arc-mode.el |
| 776 | 776 | ||
| 777 | (autoload (quote archive-mode) "arc-mode" "\ | 777 | (autoload (quote archive-mode) "arc-mode" "\ |
| @@ -791,7 +791,7 @@ archive. | |||
| 791 | 791 | ||
| 792 | ;;;*** | 792 | ;;;*** |
| 793 | 793 | ||
| 794 | ;;;### (autoloads (array-mode) "array" "array.el" (17087 12566)) | 794 | ;;;### (autoloads (array-mode) "array" "array.el" (17107 37382)) |
| 795 | ;;; Generated autoloads from array.el | 795 | ;;; Generated autoloads from array.el |
| 796 | 796 | ||
| 797 | (autoload (quote array-mode) "array" "\ | 797 | (autoload (quote array-mode) "array" "\ |
| @@ -862,8 +862,8 @@ Entering array mode calls the function `array-mode-hook'. | |||
| 862 | 862 | ||
| 863 | ;;;*** | 863 | ;;;*** |
| 864 | 864 | ||
| 865 | ;;;### (autoloads (artist-mode) "artist" "textmodes/artist.el" (17087 | 865 | ;;;### (autoloads (artist-mode) "artist" "textmodes/artist.el" (17107 |
| 866 | ;;;;;; 12451)) | 866 | ;;;;;; 37381)) |
| 867 | ;;; Generated autoloads from textmodes/artist.el | 867 | ;;; Generated autoloads from textmodes/artist.el |
| 868 | 868 | ||
| 869 | (autoload (quote artist-mode) "artist" "\ | 869 | (autoload (quote artist-mode) "artist" "\ |
| @@ -1068,8 +1068,8 @@ Keymap summary | |||
| 1068 | 1068 | ||
| 1069 | ;;;*** | 1069 | ;;;*** |
| 1070 | 1070 | ||
| 1071 | ;;;### (autoloads (asm-mode) "asm-mode" "progmodes/asm-mode.el" (17087 | 1071 | ;;;### (autoloads (asm-mode) "asm-mode" "progmodes/asm-mode.el" (17107 |
| 1072 | ;;;;;; 12466)) | 1072 | ;;;;;; 37382)) |
| 1073 | ;;; Generated autoloads from progmodes/asm-mode.el | 1073 | ;;; Generated autoloads from progmodes/asm-mode.el |
| 1074 | 1074 | ||
| 1075 | (autoload (quote asm-mode) "asm-mode" "\ | 1075 | (autoload (quote asm-mode) "asm-mode" "\ |
| @@ -1097,7 +1097,7 @@ Special commands: | |||
| 1097 | ;;;*** | 1097 | ;;;*** |
| 1098 | 1098 | ||
| 1099 | ;;;### (autoloads (auto-show-mode auto-show-mode) "auto-show" "obsolete/auto-show.el" | 1099 | ;;;### (autoloads (auto-show-mode auto-show-mode) "auto-show" "obsolete/auto-show.el" |
| 1100 | ;;;;;; (17087 12380)) | 1100 | ;;;;;; (17107 37382)) |
| 1101 | ;;; Generated autoloads from obsolete/auto-show.el | 1101 | ;;; Generated autoloads from obsolete/auto-show.el |
| 1102 | 1102 | ||
| 1103 | (defvar auto-show-mode nil "\ | 1103 | (defvar auto-show-mode nil "\ |
| @@ -1113,7 +1113,7 @@ This command is obsolete. | |||
| 1113 | ;;;*** | 1113 | ;;;*** |
| 1114 | 1114 | ||
| 1115 | ;;;### (autoloads (autoarg-kp-mode autoarg-mode) "autoarg" "autoarg.el" | 1115 | ;;;### (autoloads (autoarg-kp-mode autoarg-mode) "autoarg" "autoarg.el" |
| 1116 | ;;;;;; (17087 12379)) | 1116 | ;;;;;; (17107 37380)) |
| 1117 | ;;; Generated autoloads from autoarg.el | 1117 | ;;; Generated autoloads from autoarg.el |
| 1118 | 1118 | ||
| 1119 | (defvar autoarg-mode nil "\ | 1119 | (defvar autoarg-mode nil "\ |
| @@ -1122,6 +1122,8 @@ See the command `autoarg-mode' for a description of this minor-mode.") | |||
| 1122 | 1122 | ||
| 1123 | (custom-autoload (quote autoarg-mode) "autoarg") | 1123 | (custom-autoload (quote autoarg-mode) "autoarg") |
| 1124 | 1124 | ||
| 1125 | (put (quote autoarg-mode) (quote custom-set) (quote custom-set-minor-mode)) | ||
| 1126 | |||
| 1125 | (autoload (quote autoarg-mode) "autoarg" "\ | 1127 | (autoload (quote autoarg-mode) "autoarg" "\ |
| 1126 | Toggle Autoarg minor mode globally. | 1128 | Toggle Autoarg minor mode globally. |
| 1127 | With ARG, turn Autoarg mode on if ARG is positive, off otherwise. | 1129 | With ARG, turn Autoarg mode on if ARG is positive, off otherwise. |
| @@ -1152,6 +1154,8 @@ use either \\[customize] or the function `autoarg-kp-mode'.") | |||
| 1152 | 1154 | ||
| 1153 | (custom-autoload (quote autoarg-kp-mode) "autoarg") | 1155 | (custom-autoload (quote autoarg-kp-mode) "autoarg") |
| 1154 | 1156 | ||
| 1157 | (put (quote autoarg-kp-mode) (quote custom-set) (quote custom-set-minor-mode)) | ||
| 1158 | |||
| 1155 | (autoload (quote autoarg-kp-mode) "autoarg" "\ | 1159 | (autoload (quote autoarg-kp-mode) "autoarg" "\ |
| 1156 | Toggle Autoarg-KP minor mode globally. | 1160 | Toggle Autoarg-KP minor mode globally. |
| 1157 | With ARG, turn Autoarg mode on if ARG is positive, off otherwise. | 1161 | With ARG, turn Autoarg mode on if ARG is positive, off otherwise. |
| @@ -1166,7 +1170,7 @@ This is similar to \\[autoarg-mode] but rebinds the keypad keys `kp-1' | |||
| 1166 | ;;;*** | 1170 | ;;;*** |
| 1167 | 1171 | ||
| 1168 | ;;;### (autoloads (autoconf-mode) "autoconf" "progmodes/autoconf.el" | 1172 | ;;;### (autoloads (autoconf-mode) "autoconf" "progmodes/autoconf.el" |
| 1169 | ;;;;;; (17087 12566)) | 1173 | ;;;;;; (17107 37382)) |
| 1170 | ;;; Generated autoloads from progmodes/autoconf.el | 1174 | ;;; Generated autoloads from progmodes/autoconf.el |
| 1171 | 1175 | ||
| 1172 | (autoload (quote autoconf-mode) "autoconf" "\ | 1176 | (autoload (quote autoconf-mode) "autoconf" "\ |
| @@ -1177,7 +1181,7 @@ Major mode for editing Autoconf configure.in files. | |||
| 1177 | ;;;*** | 1181 | ;;;*** |
| 1178 | 1182 | ||
| 1179 | ;;;### (autoloads (auto-insert-mode define-auto-insert auto-insert) | 1183 | ;;;### (autoloads (auto-insert-mode define-auto-insert auto-insert) |
| 1180 | ;;;;;; "autoinsert" "autoinsert.el" (17087 12578)) | 1184 | ;;;;;; "autoinsert" "autoinsert.el" (17107 37380)) |
| 1181 | ;;; Generated autoloads from autoinsert.el | 1185 | ;;; Generated autoloads from autoinsert.el |
| 1182 | 1186 | ||
| 1183 | (autoload (quote auto-insert) "autoinsert" "\ | 1187 | (autoload (quote auto-insert) "autoinsert" "\ |
| @@ -1201,6 +1205,8 @@ use either \\[customize] or the function `auto-insert-mode'.") | |||
| 1201 | 1205 | ||
| 1202 | (custom-autoload (quote auto-insert-mode) "autoinsert") | 1206 | (custom-autoload (quote auto-insert-mode) "autoinsert") |
| 1203 | 1207 | ||
| 1208 | (put (quote auto-insert-mode) (quote custom-set) (quote custom-set-minor-mode)) | ||
| 1209 | |||
| 1204 | (autoload (quote auto-insert-mode) "autoinsert" "\ | 1210 | (autoload (quote auto-insert-mode) "autoinsert" "\ |
| 1205 | Toggle Auto-insert mode. | 1211 | Toggle Auto-insert mode. |
| 1206 | With prefix ARG, turn Auto-insert mode on if and only if ARG is positive. | 1212 | With prefix ARG, turn Auto-insert mode on if and only if ARG is positive. |
| @@ -1215,7 +1221,7 @@ insert a template for the file depending on the mode of the buffer. | |||
| 1215 | 1221 | ||
| 1216 | ;;;### (autoloads (batch-update-autoloads update-directory-autoloads | 1222 | ;;;### (autoloads (batch-update-autoloads update-directory-autoloads |
| 1217 | ;;;;;; update-file-autoloads) "autoload" "emacs-lisp/autoload.el" | 1223 | ;;;;;; update-file-autoloads) "autoload" "emacs-lisp/autoload.el" |
| 1218 | ;;;;;; (17087 12528)) | 1224 | ;;;;;; (17107 37381)) |
| 1219 | ;;; Generated autoloads from emacs-lisp/autoload.el | 1225 | ;;; Generated autoloads from emacs-lisp/autoload.el |
| 1220 | 1226 | ||
| 1221 | (autoload (quote update-file-autoloads) "autoload" "\ | 1227 | (autoload (quote update-file-autoloads) "autoload" "\ |
| @@ -1250,7 +1256,7 @@ Calls `update-directory-autoloads' on the command line arguments. | |||
| 1250 | 1256 | ||
| 1251 | ;;;### (autoloads (global-auto-revert-mode turn-on-auto-revert-tail-mode | 1257 | ;;;### (autoloads (global-auto-revert-mode turn-on-auto-revert-tail-mode |
| 1252 | ;;;;;; auto-revert-tail-mode turn-on-auto-revert-mode auto-revert-mode) | 1258 | ;;;;;; auto-revert-tail-mode turn-on-auto-revert-mode auto-revert-mode) |
| 1253 | ;;;;;; "autorevert" "autorevert.el" (17087 12567)) | 1259 | ;;;;;; "autorevert" "autorevert.el" (17107 37380)) |
| 1254 | ;;; Generated autoloads from autorevert.el | 1260 | ;;; Generated autoloads from autorevert.el |
| 1255 | 1261 | ||
| 1256 | (autoload (quote auto-revert-mode) "autorevert" "\ | 1262 | (autoload (quote auto-revert-mode) "autorevert" "\ |
| @@ -1306,6 +1312,8 @@ use either \\[customize] or the function `global-auto-revert-mode'.") | |||
| 1306 | 1312 | ||
| 1307 | (custom-autoload (quote global-auto-revert-mode) "autorevert") | 1313 | (custom-autoload (quote global-auto-revert-mode) "autorevert") |
| 1308 | 1314 | ||
| 1315 | (put (quote global-auto-revert-mode) (quote custom-set) (quote custom-set-minor-mode)) | ||
| 1316 | |||
| 1309 | (autoload (quote global-auto-revert-mode) "autorevert" "\ | 1317 | (autoload (quote global-auto-revert-mode) "autorevert" "\ |
| 1310 | Revert any buffer when file on disk changes. | 1318 | Revert any buffer when file on disk changes. |
| 1311 | 1319 | ||
| @@ -1318,7 +1326,7 @@ Use `auto-revert-mode' to revert a particular buffer. | |||
| 1318 | ;;;*** | 1326 | ;;;*** |
| 1319 | 1327 | ||
| 1320 | ;;;### (autoloads (mouse-avoidance-mode mouse-avoidance-mode) "avoid" | 1328 | ;;;### (autoloads (mouse-avoidance-mode mouse-avoidance-mode) "avoid" |
| 1321 | ;;;;;; "avoid.el" (17087 12411)) | 1329 | ;;;;;; "avoid.el" (17107 37380)) |
| 1322 | ;;; Generated autoloads from avoid.el | 1330 | ;;; Generated autoloads from avoid.el |
| 1323 | 1331 | ||
| 1324 | (defvar mouse-avoidance-mode nil "\ | 1332 | (defvar mouse-avoidance-mode nil "\ |
| @@ -1359,7 +1367,7 @@ definition of \"random distance\".) | |||
| 1359 | ;;;*** | 1367 | ;;;*** |
| 1360 | 1368 | ||
| 1361 | ;;;### (autoloads (backquote) "backquote" "emacs-lisp/backquote.el" | 1369 | ;;;### (autoloads (backquote) "backquote" "emacs-lisp/backquote.el" |
| 1362 | ;;;;;; (17087 12379)) | 1370 | ;;;;;; (17107 37381)) |
| 1363 | ;;; Generated autoloads from emacs-lisp/backquote.el | 1371 | ;;; Generated autoloads from emacs-lisp/backquote.el |
| 1364 | 1372 | ||
| 1365 | (autoload (quote backquote) "backquote" "\ | 1373 | (autoload (quote backquote) "backquote" "\ |
| @@ -1384,7 +1392,7 @@ Vectors work just like lists. Nested backquotes are permitted. | |||
| 1384 | ;;;*** | 1392 | ;;;*** |
| 1385 | 1393 | ||
| 1386 | ;;;### (autoloads (display-battery-mode battery) "battery" "battery.el" | 1394 | ;;;### (autoloads (display-battery-mode battery) "battery" "battery.el" |
| 1387 | ;;;;;; (17087 12528)) | 1395 | ;;;;;; (17107 37398)) |
| 1388 | ;;; Generated autoloads from battery.el | 1396 | ;;; Generated autoloads from battery.el |
| 1389 | (put 'battery-mode-line-string 'risky-local-variable t) | 1397 | (put 'battery-mode-line-string 'risky-local-variable t) |
| 1390 | 1398 | ||
| @@ -1403,6 +1411,8 @@ use either \\[customize] or the function `display-battery-mode'.") | |||
| 1403 | 1411 | ||
| 1404 | (custom-autoload (quote display-battery-mode) "battery") | 1412 | (custom-autoload (quote display-battery-mode) "battery") |
| 1405 | 1413 | ||
| 1414 | (put (quote display-battery-mode) (quote custom-set) (quote custom-set-minor-mode)) | ||
| 1415 | |||
| 1406 | (autoload (quote display-battery-mode) "battery" "\ | 1416 | (autoload (quote display-battery-mode) "battery" "\ |
| 1407 | Display battery status information in the mode line. | 1417 | Display battery status information in the mode line. |
| 1408 | The text being displayed in the mode line is controlled by the variables | 1418 | The text being displayed in the mode line is controlled by the variables |
| @@ -1415,7 +1425,7 @@ seconds. | |||
| 1415 | ;;;*** | 1425 | ;;;*** |
| 1416 | 1426 | ||
| 1417 | ;;;### (autoloads (benchmark benchmark-run-compiled benchmark-run) | 1427 | ;;;### (autoloads (benchmark benchmark-run-compiled benchmark-run) |
| 1418 | ;;;;;; "benchmark" "emacs-lisp/benchmark.el" (17087 12379)) | 1428 | ;;;;;; "benchmark" "emacs-lisp/benchmark.el" (17107 37381)) |
| 1419 | ;;; Generated autoloads from emacs-lisp/benchmark.el | 1429 | ;;; Generated autoloads from emacs-lisp/benchmark.el |
| 1420 | 1430 | ||
| 1421 | (autoload (quote benchmark-run) "benchmark" "\ | 1431 | (autoload (quote benchmark-run) "benchmark" "\ |
| @@ -1447,8 +1457,8 @@ non-interactive use see also `benchmark-run' and | |||
| 1447 | 1457 | ||
| 1448 | ;;;*** | 1458 | ;;;*** |
| 1449 | 1459 | ||
| 1450 | ;;;### (autoloads (bibtex-mode) "bibtex" "textmodes/bibtex.el" (17087 | 1460 | ;;;### (autoloads (bibtex-mode) "bibtex" "textmodes/bibtex.el" (17107 |
| 1451 | ;;;;;; 12575)) | 1461 | ;;;;;; 37381)) |
| 1452 | ;;; Generated autoloads from textmodes/bibtex.el | 1462 | ;;; Generated autoloads from textmodes/bibtex.el |
| 1453 | 1463 | ||
| 1454 | (autoload (quote bibtex-mode) "bibtex" "\ | 1464 | (autoload (quote bibtex-mode) "bibtex" "\ |
| @@ -1510,7 +1520,7 @@ if that value is non-nil. | |||
| 1510 | 1520 | ||
| 1511 | ;;;### (autoloads (binhex-decode-region binhex-decode-region-external | 1521 | ;;;### (autoloads (binhex-decode-region binhex-decode-region-external |
| 1512 | ;;;;;; binhex-decode-region-internal) "binhex" "gnus/binhex.el" | 1522 | ;;;;;; binhex-decode-region-internal) "binhex" "gnus/binhex.el" |
| 1513 | ;;;;;; (17087 12466)) | 1523 | ;;;;;; (17107 37379)) |
| 1514 | ;;; Generated autoloads from gnus/binhex.el | 1524 | ;;; Generated autoloads from gnus/binhex.el |
| 1515 | 1525 | ||
| 1516 | (defconst binhex-begin-line "^:...............................................................$") | 1526 | (defconst binhex-begin-line "^:...............................................................$") |
| @@ -1533,8 +1543,8 @@ Binhex decode region between START and END. | |||
| 1533 | 1543 | ||
| 1534 | ;;;*** | 1544 | ;;;*** |
| 1535 | 1545 | ||
| 1536 | ;;;### (autoloads (blackbox) "blackbox" "play/blackbox.el" (17087 | 1546 | ;;;### (autoloads (blackbox) "blackbox" "play/blackbox.el" (17107 |
| 1537 | ;;;;;; 12570)) | 1547 | ;;;;;; 37380)) |
| 1538 | ;;; Generated autoloads from play/blackbox.el | 1548 | ;;; Generated autoloads from play/blackbox.el |
| 1539 | 1549 | ||
| 1540 | (autoload (quote blackbox) "blackbox" "\ | 1550 | (autoload (quote blackbox) "blackbox" "\ |
| @@ -1656,7 +1666,7 @@ a reflection. | |||
| 1656 | ;;;### (autoloads (bookmark-bmenu-list bookmark-load bookmark-save | 1666 | ;;;### (autoloads (bookmark-bmenu-list bookmark-load bookmark-save |
| 1657 | ;;;;;; bookmark-write bookmark-delete bookmark-insert bookmark-rename | 1667 | ;;;;;; bookmark-write bookmark-delete bookmark-insert bookmark-rename |
| 1658 | ;;;;;; bookmark-insert-location bookmark-relocate bookmark-jump | 1668 | ;;;;;; bookmark-insert-location bookmark-relocate bookmark-jump |
| 1659 | ;;;;;; bookmark-set) "bookmark" "bookmark.el" (17087 12566)) | 1669 | ;;;;;; bookmark-set) "bookmark" "bookmark.el" (17107 37383)) |
| 1660 | ;;; Generated autoloads from bookmark.el | 1670 | ;;; Generated autoloads from bookmark.el |
| 1661 | (define-key ctl-x-map "rb" 'bookmark-jump) | 1671 | (define-key ctl-x-map "rb" 'bookmark-jump) |
| 1662 | (define-key ctl-x-map "rm" 'bookmark-set) | 1672 | (define-key ctl-x-map "rm" 'bookmark-set) |
| @@ -1846,7 +1856,7 @@ deletion, or > if it is flagged for displaying. | |||
| 1846 | ;;;;;; browse-url browse-url-of-region browse-url-of-dired-file | 1856 | ;;;;;; browse-url browse-url-of-region browse-url-of-dired-file |
| 1847 | ;;;;;; browse-url-of-buffer browse-url-of-file browse-url-url-at-point | 1857 | ;;;;;; browse-url-of-buffer browse-url-of-file browse-url-url-at-point |
| 1848 | ;;;;;; browse-url-galeon-program browse-url-firefox-program browse-url-browser-function) | 1858 | ;;;;;; browse-url-galeon-program browse-url-firefox-program browse-url-browser-function) |
| 1849 | ;;;;;; "browse-url" "net/browse-url.el" (17087 12578)) | 1859 | ;;;;;; "browse-url" "net/browse-url.el" (17107 37379)) |
| 1850 | ;;; Generated autoloads from net/browse-url.el | 1860 | ;;; Generated autoloads from net/browse-url.el |
| 1851 | 1861 | ||
| 1852 | (defvar browse-url-browser-function (cond ((memq system-type (quote (windows-nt ms-dos cygwin))) (quote browse-url-default-windows-browser)) ((memq system-type (quote (darwin))) (quote browse-url-default-macosx-browser)) (t (quote browse-url-default-browser))) "\ | 1862 | (defvar browse-url-browser-function (cond ((memq system-type (quote (windows-nt ms-dos cygwin))) (quote browse-url-default-windows-browser)) ((memq system-type (quote (darwin))) (quote browse-url-default-macosx-browser)) (t (quote browse-url-default-browser))) "\ |
| @@ -2177,8 +2187,8 @@ Default to the URL around or before point. | |||
| 2177 | 2187 | ||
| 2178 | ;;;*** | 2188 | ;;;*** |
| 2179 | 2189 | ||
| 2180 | ;;;### (autoloads (snarf-bruces bruce) "bruce" "play/bruce.el" (17087 | 2190 | ;;;### (autoloads (snarf-bruces bruce) "bruce" "play/bruce.el" (17107 |
| 2181 | ;;;;;; 12380)) | 2191 | ;;;;;; 37380)) |
| 2182 | ;;; Generated autoloads from play/bruce.el | 2192 | ;;; Generated autoloads from play/bruce.el |
| 2183 | 2193 | ||
| 2184 | (autoload (quote bruce) "bruce" "\ | 2194 | (autoload (quote bruce) "bruce" "\ |
| @@ -2194,7 +2204,7 @@ Return a vector containing the lines from `bruce-phrases-file'. | |||
| 2194 | ;;;*** | 2204 | ;;;*** |
| 2195 | 2205 | ||
| 2196 | ;;;### (autoloads (bs-show bs-customize bs-cycle-previous bs-cycle-next) | 2206 | ;;;### (autoloads (bs-show bs-customize bs-cycle-previous bs-cycle-next) |
| 2197 | ;;;;;; "bs" "bs.el" (17087 12566)) | 2207 | ;;;;;; "bs" "bs.el" (17107 37380)) |
| 2198 | ;;; Generated autoloads from bs.el | 2208 | ;;; Generated autoloads from bs.el |
| 2199 | 2209 | ||
| 2200 | (autoload (quote bs-cycle-next) "bs" "\ | 2210 | (autoload (quote bs-cycle-next) "bs" "\ |
| @@ -2235,8 +2245,8 @@ name of buffer configuration. | |||
| 2235 | ;;;*** | 2245 | ;;;*** |
| 2236 | 2246 | ||
| 2237 | ;;;### (autoloads (insert-text-button make-text-button insert-button | 2247 | ;;;### (autoloads (insert-text-button make-text-button insert-button |
| 2238 | ;;;;;; make-button define-button-type) "button" "button.el" (17087 | 2248 | ;;;;;; make-button define-button-type) "button" "button.el" (17107 |
| 2239 | ;;;;;; 12478)) | 2249 | ;;;;;; 37380)) |
| 2240 | ;;; Generated autoloads from button.el | 2250 | ;;; Generated autoloads from button.el |
| 2241 | 2251 | ||
| 2242 | (defvar button-map (let ((map (make-sparse-keymap))) (define-key map " " (quote push-button)) (define-key map [mouse-2] (quote push-button)) map) "\ | 2252 | (defvar button-map (let ((map (make-sparse-keymap))) (define-key map " " (quote push-button)) (define-key map [mouse-2] (quote push-button)) map) "\ |
| @@ -2324,7 +2334,7 @@ Also see `make-text-button'. | |||
| 2324 | ;;;;;; batch-byte-compile-if-not-done display-call-tree byte-compile | 2334 | ;;;;;; batch-byte-compile-if-not-done display-call-tree byte-compile |
| 2325 | ;;;;;; compile-defun byte-compile-file byte-recompile-directory | 2335 | ;;;;;; compile-defun byte-compile-file byte-recompile-directory |
| 2326 | ;;;;;; byte-force-recompile) "bytecomp" "emacs-lisp/bytecomp.el" | 2336 | ;;;;;; byte-force-recompile) "bytecomp" "emacs-lisp/bytecomp.el" |
| 2327 | ;;;;;; (17087 12567)) | 2337 | ;;;;;; (17107 37381)) |
| 2328 | ;;; Generated autoloads from emacs-lisp/bytecomp.el | 2338 | ;;; Generated autoloads from emacs-lisp/bytecomp.el |
| 2329 | 2339 | ||
| 2330 | (autoload (quote byte-force-recompile) "bytecomp" "\ | 2340 | (autoload (quote byte-force-recompile) "bytecomp" "\ |
| @@ -2416,7 +2426,7 @@ For example, invoke `emacs -batch -f batch-byte-recompile-directory .'. | |||
| 2416 | 2426 | ||
| 2417 | ;;;*** | 2427 | ;;;*** |
| 2418 | 2428 | ||
| 2419 | ;;;### (autoloads nil "cal-dst" "calendar/cal-dst.el" (17087 12400)) | 2429 | ;;;### (autoloads nil "cal-dst" "calendar/cal-dst.el" (17107 37380)) |
| 2420 | ;;; Generated autoloads from calendar/cal-dst.el | 2430 | ;;; Generated autoloads from calendar/cal-dst.el |
| 2421 | 2431 | ||
| 2422 | (put (quote calendar-daylight-savings-starts) (quote risky-local-variable) t) | 2432 | (put (quote calendar-daylight-savings-starts) (quote risky-local-variable) t) |
| @@ -2426,7 +2436,7 @@ For example, invoke `emacs -batch -f batch-byte-recompile-directory .'. | |||
| 2426 | ;;;*** | 2436 | ;;;*** |
| 2427 | 2437 | ||
| 2428 | ;;;### (autoloads (list-yahrzeit-dates) "cal-hebrew" "calendar/cal-hebrew.el" | 2438 | ;;;### (autoloads (list-yahrzeit-dates) "cal-hebrew" "calendar/cal-hebrew.el" |
| 2429 | ;;;;;; (17087 12564)) | 2439 | ;;;;;; (17107 37380)) |
| 2430 | ;;; Generated autoloads from calendar/cal-hebrew.el | 2440 | ;;; Generated autoloads from calendar/cal-hebrew.el |
| 2431 | 2441 | ||
| 2432 | (autoload (quote list-yahrzeit-dates) "cal-hebrew" "\ | 2442 | (autoload (quote list-yahrzeit-dates) "cal-hebrew" "\ |
| @@ -2441,7 +2451,7 @@ from the cursor position. | |||
| 2441 | ;;;### (autoloads (defmath calc-embedded-activate calc-embedded calc-grab-rectangle | 2451 | ;;;### (autoloads (defmath calc-embedded-activate calc-embedded calc-grab-rectangle |
| 2442 | ;;;;;; calc-grab-region full-calc-keypad calc-keypad calc-eval quick-calc | 2452 | ;;;;;; calc-grab-region full-calc-keypad calc-keypad calc-eval quick-calc |
| 2443 | ;;;;;; full-calc calc calc-dispatch calc-settings-file) "calc" "calc/calc.el" | 2453 | ;;;;;; full-calc calc calc-dispatch calc-settings-file) "calc" "calc/calc.el" |
| 2444 | ;;;;;; (17087 12567)) | 2454 | ;;;;;; (17107 37379)) |
| 2445 | ;;; Generated autoloads from calc/calc.el | 2455 | ;;; Generated autoloads from calc/calc.el |
| 2446 | 2456 | ||
| 2447 | (defvar calc-settings-file (convert-standard-filename "~/.calc.el") "\ | 2457 | (defvar calc-settings-file (convert-standard-filename "~/.calc.el") "\ |
| @@ -2519,8 +2529,8 @@ Not documented | |||
| 2519 | 2529 | ||
| 2520 | ;;;*** | 2530 | ;;;*** |
| 2521 | 2531 | ||
| 2522 | ;;;### (autoloads (calculator) "calculator" "calculator.el" (17087 | 2532 | ;;;### (autoloads (calculator) "calculator" "calculator.el" (17107 |
| 2523 | ;;;;;; 12566)) | 2533 | ;;;;;; 37381)) |
| 2524 | ;;; Generated autoloads from calculator.el | 2534 | ;;; Generated autoloads from calculator.el |
| 2525 | 2535 | ||
| 2526 | (autoload (quote calculator) "calculator" "\ | 2536 | (autoload (quote calculator) "calculator" "\ |
| @@ -2548,7 +2558,7 @@ See the documentation for `calculator-mode' for more information. | |||
| 2548 | ;;;;;; mark-holidays-in-calendar view-calendar-holidays-initially | 2558 | ;;;;;; mark-holidays-in-calendar view-calendar-holidays-initially |
| 2549 | ;;;;;; calendar-remove-frame-by-deleting mark-diary-entries-in-calendar | 2559 | ;;;;;; calendar-remove-frame-by-deleting mark-diary-entries-in-calendar |
| 2550 | ;;;;;; number-of-diary-entries view-diary-entries-initially calendar-offset) | 2560 | ;;;;;; number-of-diary-entries view-diary-entries-initially calendar-offset) |
| 2551 | ;;;;;; "calendar" "calendar/calendar.el" (17087 12569)) | 2561 | ;;;;;; "calendar" "calendar/calendar.el" (17107 37380)) |
| 2552 | ;;; Generated autoloads from calendar/calendar.el | 2562 | ;;; Generated autoloads from calendar/calendar.el |
| 2553 | 2563 | ||
| 2554 | (defvar calendar-offset 0 "\ | 2564 | (defvar calendar-offset 0 "\ |
| @@ -3139,7 +3149,7 @@ movement commands will not work correctly.") | |||
| 3139 | ;;;*** | 3149 | ;;;*** |
| 3140 | 3150 | ||
| 3141 | ;;;### (autoloads (canlock-verify canlock-insert-header) "canlock" | 3151 | ;;;### (autoloads (canlock-verify canlock-insert-header) "canlock" |
| 3142 | ;;;;;; "gnus/canlock.el" (17087 12566)) | 3152 | ;;;;;; "gnus/canlock.el" (17107 37379)) |
| 3143 | ;;; Generated autoloads from gnus/canlock.el | 3153 | ;;; Generated autoloads from gnus/canlock.el |
| 3144 | 3154 | ||
| 3145 | (autoload (quote canlock-insert-header) "canlock" "\ | 3155 | (autoload (quote canlock-insert-header) "canlock" "\ |
| @@ -3158,7 +3168,7 @@ it fails. | |||
| 3158 | 3168 | ||
| 3159 | ;;;### (autoloads (pike-mode idl-mode java-mode objc-mode c++-mode | 3169 | ;;;### (autoloads (pike-mode idl-mode java-mode objc-mode c++-mode |
| 3160 | ;;;;;; c-mode c-initialize-cc-mode) "cc-mode" "progmodes/cc-mode.el" | 3170 | ;;;;;; c-mode c-initialize-cc-mode) "cc-mode" "progmodes/cc-mode.el" |
| 3161 | ;;;;;; (17087 12566)) | 3171 | ;;;;;; (17107 37381)) |
| 3162 | ;;; Generated autoloads from progmodes/cc-mode.el | 3172 | ;;; Generated autoloads from progmodes/cc-mode.el |
| 3163 | 3173 | ||
| 3164 | (autoload (quote c-initialize-cc-mode) "cc-mode" "\ | 3174 | (autoload (quote c-initialize-cc-mode) "cc-mode" "\ |
| @@ -3316,7 +3326,7 @@ Key bindings: | |||
| 3316 | ;;;*** | 3326 | ;;;*** |
| 3317 | 3327 | ||
| 3318 | ;;;### (autoloads (c-set-offset c-add-style c-set-style) "cc-styles" | 3328 | ;;;### (autoloads (c-set-offset c-add-style c-set-style) "cc-styles" |
| 3319 | ;;;;;; "progmodes/cc-styles.el" (17087 12566)) | 3329 | ;;;;;; "progmodes/cc-styles.el" (17107 37381)) |
| 3320 | ;;; Generated autoloads from progmodes/cc-styles.el | 3330 | ;;; Generated autoloads from progmodes/cc-styles.el |
| 3321 | 3331 | ||
| 3322 | (autoload (quote c-set-style) "cc-styles" "\ | 3332 | (autoload (quote c-set-style) "cc-styles" "\ |
| @@ -3373,7 +3383,7 @@ and exists only for compatibility reasons. | |||
| 3373 | 3383 | ||
| 3374 | ;;;### (autoloads (ccl-execute-with-args check-ccl-program define-ccl-program | 3384 | ;;;### (autoloads (ccl-execute-with-args check-ccl-program define-ccl-program |
| 3375 | ;;;;;; declare-ccl-program ccl-dump ccl-compile) "ccl" "international/ccl.el" | 3385 | ;;;;;; declare-ccl-program ccl-dump ccl-compile) "ccl" "international/ccl.el" |
| 3376 | ;;;;;; (17087 12558)) | 3386 | ;;;;;; (17107 37380)) |
| 3377 | ;;; Generated autoloads from international/ccl.el | 3387 | ;;; Generated autoloads from international/ccl.el |
| 3378 | 3388 | ||
| 3379 | (autoload (quote ccl-compile) "ccl" "\ | 3389 | (autoload (quote ccl-compile) "ccl" "\ |
| @@ -3632,7 +3642,7 @@ See the documentation of `define-ccl-program' for the detail of CCL program. | |||
| 3632 | ;;;*** | 3642 | ;;;*** |
| 3633 | 3643 | ||
| 3634 | ;;;### (autoloads (cfengine-mode) "cfengine" "progmodes/cfengine.el" | 3644 | ;;;### (autoloads (cfengine-mode) "cfengine" "progmodes/cfengine.el" |
| 3635 | ;;;;;; (17087 12466)) | 3645 | ;;;;;; (17107 37381)) |
| 3636 | ;;; Generated autoloads from progmodes/cfengine.el | 3646 | ;;; Generated autoloads from progmodes/cfengine.el |
| 3637 | 3647 | ||
| 3638 | (autoload (quote cfengine-mode) "cfengine" "\ | 3648 | (autoload (quote cfengine-mode) "cfengine" "\ |
| @@ -3654,7 +3664,7 @@ to the action header. | |||
| 3654 | ;;;;;; checkdoc-comments checkdoc-continue checkdoc-start checkdoc-current-buffer | 3664 | ;;;;;; checkdoc-comments checkdoc-continue checkdoc-start checkdoc-current-buffer |
| 3655 | ;;;;;; checkdoc-eval-current-buffer checkdoc-message-interactive | 3665 | ;;;;;; checkdoc-eval-current-buffer checkdoc-message-interactive |
| 3656 | ;;;;;; checkdoc-interactive checkdoc) "checkdoc" "emacs-lisp/checkdoc.el" | 3666 | ;;;;;; checkdoc-interactive checkdoc) "checkdoc" "emacs-lisp/checkdoc.el" |
| 3657 | ;;;;;; (17087 12449)) | 3667 | ;;;;;; (17107 37381)) |
| 3658 | ;;; Generated autoloads from emacs-lisp/checkdoc.el | 3668 | ;;; Generated autoloads from emacs-lisp/checkdoc.el |
| 3659 | 3669 | ||
| 3660 | (autoload (quote checkdoc) "checkdoc" "\ | 3670 | (autoload (quote checkdoc) "checkdoc" "\ |
| @@ -3837,8 +3847,8 @@ checking of documentation strings. | |||
| 3837 | ;;;*** | 3847 | ;;;*** |
| 3838 | 3848 | ||
| 3839 | ;;;### (autoloads (encode-hz-buffer encode-hz-region decode-hz-buffer | 3849 | ;;;### (autoloads (encode-hz-buffer encode-hz-region decode-hz-buffer |
| 3840 | ;;;;;; decode-hz-region) "china-util" "language/china-util.el" (17087 | 3850 | ;;;;;; decode-hz-region) "china-util" "language/china-util.el" (17107 |
| 3841 | ;;;;;; 12562)) | 3851 | ;;;;;; 37382)) |
| 3842 | ;;; Generated autoloads from language/china-util.el | 3852 | ;;; Generated autoloads from language/china-util.el |
| 3843 | 3853 | ||
| 3844 | (autoload (quote decode-hz-region) "china-util" "\ | 3854 | (autoload (quote decode-hz-region) "china-util" "\ |
| @@ -3866,7 +3876,7 @@ Encode the text in the current buffer to HZ. | |||
| 3866 | ;;;*** | 3876 | ;;;*** |
| 3867 | 3877 | ||
| 3868 | ;;;### (autoloads (command-history list-command-history repeat-matching-complex-command) | 3878 | ;;;### (autoloads (command-history list-command-history repeat-matching-complex-command) |
| 3869 | ;;;;;; "chistory" "chistory.el" (17087 12566)) | 3879 | ;;;;;; "chistory" "chistory.el" (17107 37381)) |
| 3870 | ;;; Generated autoloads from chistory.el | 3880 | ;;; Generated autoloads from chistory.el |
| 3871 | 3881 | ||
| 3872 | (autoload (quote repeat-matching-complex-command) "chistory" "\ | 3882 | (autoload (quote repeat-matching-complex-command) "chistory" "\ |
| @@ -3905,7 +3915,7 @@ and runs the normal hook `command-history-hook'. | |||
| 3905 | 3915 | ||
| 3906 | ;;;*** | 3916 | ;;;*** |
| 3907 | 3917 | ||
| 3908 | ;;;### (autoloads nil "cl" "emacs-lisp/cl.el" (17087 12566)) | 3918 | ;;;### (autoloads nil "cl" "emacs-lisp/cl.el" (17107 37381)) |
| 3909 | ;;; Generated autoloads from emacs-lisp/cl.el | 3919 | ;;; Generated autoloads from emacs-lisp/cl.el |
| 3910 | 3920 | ||
| 3911 | (defvar custom-print-functions nil "\ | 3921 | (defvar custom-print-functions nil "\ |
| @@ -3921,7 +3931,7 @@ a future Emacs interpreter will be able to use it.") | |||
| 3921 | ;;;*** | 3931 | ;;;*** |
| 3922 | 3932 | ||
| 3923 | ;;;### (autoloads (common-lisp-indent-function) "cl-indent" "emacs-lisp/cl-indent.el" | 3933 | ;;;### (autoloads (common-lisp-indent-function) "cl-indent" "emacs-lisp/cl-indent.el" |
| 3924 | ;;;;;; (17087 12411)) | 3934 | ;;;;;; (17107 37381)) |
| 3925 | ;;; Generated autoloads from emacs-lisp/cl-indent.el | 3935 | ;;; Generated autoloads from emacs-lisp/cl-indent.el |
| 3926 | 3936 | ||
| 3927 | (autoload (quote common-lisp-indent-function) "cl-indent" "\ | 3937 | (autoload (quote common-lisp-indent-function) "cl-indent" "\ |
| @@ -3932,7 +3942,7 @@ Not documented | |||
| 3932 | ;;;*** | 3942 | ;;;*** |
| 3933 | 3943 | ||
| 3934 | ;;;### (autoloads (c-macro-expand) "cmacexp" "progmodes/cmacexp.el" | 3944 | ;;;### (autoloads (c-macro-expand) "cmacexp" "progmodes/cmacexp.el" |
| 3935 | ;;;;;; (17087 12554)) | 3945 | ;;;;;; (17107 37381)) |
| 3936 | ;;; Generated autoloads from progmodes/cmacexp.el | 3946 | ;;; Generated autoloads from progmodes/cmacexp.el |
| 3937 | 3947 | ||
| 3938 | (autoload (quote c-macro-expand) "cmacexp" "\ | 3948 | (autoload (quote c-macro-expand) "cmacexp" "\ |
| @@ -3951,8 +3961,8 @@ For use inside Lisp programs, see also `c-macro-expansion'. | |||
| 3951 | 3961 | ||
| 3952 | ;;;*** | 3962 | ;;;*** |
| 3953 | 3963 | ||
| 3954 | ;;;### (autoloads (run-scheme) "cmuscheme" "cmuscheme.el" (17087 | 3964 | ;;;### (autoloads (run-scheme) "cmuscheme" "cmuscheme.el" (17107 |
| 3955 | ;;;;;; 12424)) | 3965 | ;;;;;; 37380)) |
| 3956 | ;;; Generated autoloads from cmuscheme.el | 3966 | ;;; Generated autoloads from cmuscheme.el |
| 3957 | 3967 | ||
| 3958 | (autoload (quote run-scheme) "cmuscheme" "\ | 3968 | (autoload (quote run-scheme) "cmuscheme" "\ |
| @@ -3969,7 +3979,7 @@ of `scheme-program-name'). Runs the hooks `inferior-scheme-mode-hook' | |||
| 3969 | ;;;*** | 3979 | ;;;*** |
| 3970 | 3980 | ||
| 3971 | ;;;### (autoloads (cp-make-coding-system) "code-pages" "international/code-pages.el" | 3981 | ;;;### (autoloads (cp-make-coding-system) "code-pages" "international/code-pages.el" |
| 3972 | ;;;;;; (17087 12566)) | 3982 | ;;;;;; (17107 37380)) |
| 3973 | ;;; Generated autoloads from international/code-pages.el | 3983 | ;;; Generated autoloads from international/code-pages.el |
| 3974 | 3984 | ||
| 3975 | (autoload (quote cp-make-coding-system) "code-pages" "\ | 3985 | (autoload (quote cp-make-coding-system) "code-pages" "\ |
| @@ -3999,7 +4009,7 @@ Return an updated `non-iso-charset-alist'. | |||
| 3999 | 4009 | ||
| 4000 | ;;;### (autoloads (codepage-setup cp-supported-codepages cp-offset-for-codepage | 4010 | ;;;### (autoloads (codepage-setup cp-supported-codepages cp-offset-for-codepage |
| 4001 | ;;;;;; cp-language-for-codepage cp-charset-for-codepage cp-make-coding-systems-for-codepage) | 4011 | ;;;;;; cp-language-for-codepage cp-charset-for-codepage cp-make-coding-systems-for-codepage) |
| 4002 | ;;;;;; "codepage" "international/codepage.el" (17087 12558)) | 4012 | ;;;;;; "codepage" "international/codepage.el" (17107 37380)) |
| 4003 | ;;; Generated autoloads from international/codepage.el | 4013 | ;;; Generated autoloads from international/codepage.el |
| 4004 | 4014 | ||
| 4005 | (autoload (quote cp-make-coding-systems-for-codepage) "codepage" "\ | 4015 | (autoload (quote cp-make-coding-systems-for-codepage) "codepage" "\ |
| @@ -4058,7 +4068,7 @@ read/written by MS-DOS software, or for display on the MS-DOS terminal. | |||
| 4058 | ;;;### (autoloads (comint-redirect-results-list-from-process comint-redirect-results-list | 4068 | ;;;### (autoloads (comint-redirect-results-list-from-process comint-redirect-results-list |
| 4059 | ;;;;;; comint-redirect-send-command-to-process comint-redirect-send-command | 4069 | ;;;;;; comint-redirect-send-command-to-process comint-redirect-send-command |
| 4060 | ;;;;;; comint-run make-comint make-comint-in-buffer) "comint" "comint.el" | 4070 | ;;;;;; comint-run make-comint make-comint-in-buffer) "comint" "comint.el" |
| 4061 | ;;;;;; (17087 12574)) | 4071 | ;;;;;; (17107 37380)) |
| 4062 | ;;; Generated autoloads from comint.el | 4072 | ;;; Generated autoloads from comint.el |
| 4063 | 4073 | ||
| 4064 | (defvar comint-output-filter-functions (quote (comint-postoutput-scroll-to-bottom comint-watch-for-password-prompt)) "\ | 4074 | (defvar comint-output-filter-functions (quote (comint-postoutput-scroll-to-bottom comint-watch-for-password-prompt)) "\ |
| @@ -4143,8 +4153,8 @@ REGEXP-GROUP is the regular expression group in REGEXP to use. | |||
| 4143 | 4153 | ||
| 4144 | ;;;*** | 4154 | ;;;*** |
| 4145 | 4155 | ||
| 4146 | ;;;### (autoloads (compare-windows) "compare-w" "compare-w.el" (17087 | 4156 | ;;;### (autoloads (compare-windows) "compare-w" "compare-w.el" (17107 |
| 4147 | ;;;;;; 12569)) | 4157 | ;;;;;; 37380)) |
| 4148 | ;;; Generated autoloads from compare-w.el | 4158 | ;;; Generated autoloads from compare-w.el |
| 4149 | 4159 | ||
| 4150 | (autoload (quote compare-windows) "compare-w" "\ | 4160 | (autoload (quote compare-windows) "compare-w" "\ |
| @@ -4180,7 +4190,7 @@ on third call it again advances points to the next difference and so on. | |||
| 4180 | ;;;### (autoloads (compilation-next-error-function compilation-minor-mode | 4190 | ;;;### (autoloads (compilation-next-error-function compilation-minor-mode |
| 4181 | ;;;;;; compilation-shell-minor-mode compilation-mode compile compilation-search-path | 4191 | ;;;;;; compilation-shell-minor-mode compilation-mode compile compilation-search-path |
| 4182 | ;;;;;; compilation-ask-about-save compilation-window-height compilation-mode-hook) | 4192 | ;;;;;; compilation-ask-about-save compilation-window-height compilation-mode-hook) |
| 4183 | ;;;;;; "compile" "progmodes/compile.el" (17087 12570)) | 4193 | ;;;;;; "compile" "progmodes/compile.el" (17107 37381)) |
| 4184 | ;;; Generated autoloads from progmodes/compile.el | 4194 | ;;; Generated autoloads from progmodes/compile.el |
| 4185 | 4195 | ||
| 4186 | (defvar compilation-mode-hook nil "\ | 4196 | (defvar compilation-mode-hook nil "\ |
| @@ -4290,7 +4300,8 @@ Turning the mode on runs the normal hook `compilation-minor-mode-hook'. | |||
| 4290 | \(fn &optional ARG)" t nil) | 4300 | \(fn &optional ARG)" t nil) |
| 4291 | 4301 | ||
| 4292 | (autoload (quote compilation-next-error-function) "compile" "\ | 4302 | (autoload (quote compilation-next-error-function) "compile" "\ |
| 4293 | Not documented | 4303 | Advance to the next error message and visit the file where the error was. |
| 4304 | This is the value of `next-error-function' in Compilation buffers. | ||
| 4294 | 4305 | ||
| 4295 | \(fn N &optional RESET)" t nil) | 4306 | \(fn N &optional RESET)" t nil) |
| 4296 | 4307 | ||
| @@ -4299,7 +4310,7 @@ Not documented | |||
| 4299 | ;;;*** | 4310 | ;;;*** |
| 4300 | 4311 | ||
| 4301 | ;;;### (autoloads (partial-completion-mode) "complete" "complete.el" | 4312 | ;;;### (autoloads (partial-completion-mode) "complete" "complete.el" |
| 4302 | ;;;;;; (17087 12528)) | 4313 | ;;;;;; (17107 37380)) |
| 4303 | ;;; Generated autoloads from complete.el | 4314 | ;;; Generated autoloads from complete.el |
| 4304 | 4315 | ||
| 4305 | (defvar partial-completion-mode nil "\ | 4316 | (defvar partial-completion-mode nil "\ |
| @@ -4310,6 +4321,8 @@ use either \\[customize] or the function `partial-completion-mode'.") | |||
| 4310 | 4321 | ||
| 4311 | (custom-autoload (quote partial-completion-mode) "complete") | 4322 | (custom-autoload (quote partial-completion-mode) "complete") |
| 4312 | 4323 | ||
| 4324 | (put (quote partial-completion-mode) (quote custom-set) (quote custom-set-minor-mode)) | ||
| 4325 | |||
| 4313 | (autoload (quote partial-completion-mode) "complete" "\ | 4326 | (autoload (quote partial-completion-mode) "complete" "\ |
| 4314 | Toggle Partial Completion mode. | 4327 | Toggle Partial Completion mode. |
| 4315 | With prefix ARG, turn Partial Completion mode on if ARG is positive. | 4328 | With prefix ARG, turn Partial Completion mode on if ARG is positive. |
| @@ -4334,7 +4347,7 @@ See also the variable `PC-include-file-path'. | |||
| 4334 | ;;;*** | 4347 | ;;;*** |
| 4335 | 4348 | ||
| 4336 | ;;;### (autoloads (dynamic-completion-mode) "completion" "completion.el" | 4349 | ;;;### (autoloads (dynamic-completion-mode) "completion" "completion.el" |
| 4337 | ;;;;;; (17087 12379)) | 4350 | ;;;;;; (17107 37380)) |
| 4338 | ;;; Generated autoloads from completion.el | 4351 | ;;; Generated autoloads from completion.el |
| 4339 | 4352 | ||
| 4340 | (autoload (quote dynamic-completion-mode) "completion" "\ | 4353 | (autoload (quote dynamic-completion-mode) "completion" "\ |
| @@ -4347,7 +4360,7 @@ Enable dynamic word-completion. | |||
| 4347 | ;;;### (autoloads (decompose-composite-char compose-last-chars compose-chars-after | 4360 | ;;;### (autoloads (decompose-composite-char compose-last-chars compose-chars-after |
| 4348 | ;;;;;; find-composition compose-chars decompose-string compose-string | 4361 | ;;;;;; find-composition compose-chars decompose-string compose-string |
| 4349 | ;;;;;; decompose-region compose-region encode-composition-rule) | 4362 | ;;;;;; decompose-region compose-region encode-composition-rule) |
| 4350 | ;;;;;; "composite" "composite.el" (17087 12416)) | 4363 | ;;;;;; "composite" "composite.el" (17107 37380)) |
| 4351 | ;;; Generated autoloads from composite.el | 4364 | ;;; Generated autoloads from composite.el |
| 4352 | 4365 | ||
| 4353 | (defconst reference-point-alist (quote ((tl . 0) (tc . 1) (tr . 2) (Bl . 3) (Bc . 4) (Br . 5) (bl . 6) (bc . 7) (br . 8) (cl . 9) (cc . 10) (cr . 11) (top-left . 0) (top-center . 1) (top-right . 2) (base-left . 3) (base-center . 4) (base-right . 5) (bottom-left . 6) (bottom-center . 7) (bottom-right . 8) (center-left . 9) (center-center . 10) (center-right . 11) (ml . 3) (mc . 10) (mr . 5) (mid-left . 3) (mid-center . 10) (mid-right . 5))) "\ | 4366 | (defconst reference-point-alist (quote ((tl . 0) (tc . 1) (tr . 2) (Bl . 3) (Bc . 4) (Br . 5) (bl . 6) (bc . 7) (br . 8) (cl . 9) (cc . 10) (cr . 11) (top-left . 0) (top-center . 1) (top-right . 2) (base-left . 3) (base-center . 4) (base-right . 5) (bottom-left . 6) (bottom-center . 7) (bottom-right . 8) (center-left . 9) (center-center . 10) (center-right . 11) (ml . 3) (mc . 10) (mr . 5) (mid-left . 3) (mid-center . 10) (mid-right . 5))) "\ |
| @@ -4568,7 +4581,7 @@ Optional 3rd arg WITH-COMPOSITION-RULE is ignored. | |||
| 4568 | 4581 | ||
| 4569 | ;;;### (autoloads (conf-xdefaults-mode conf-ppd-mode conf-colon-mode | 4582 | ;;;### (autoloads (conf-xdefaults-mode conf-ppd-mode conf-colon-mode |
| 4570 | ;;;;;; conf-space-mode conf-javaprop-mode conf-windows-mode conf-unix-mode | 4583 | ;;;;;; conf-space-mode conf-javaprop-mode conf-windows-mode conf-unix-mode |
| 4571 | ;;;;;; conf-mode) "conf-mode" "textmodes/conf-mode.el" (17087 12466)) | 4584 | ;;;;;; conf-mode) "conf-mode" "textmodes/conf-mode.el" (17107 37381)) |
| 4572 | ;;; Generated autoloads from textmodes/conf-mode.el | 4585 | ;;; Generated autoloads from textmodes/conf-mode.el |
| 4573 | 4586 | ||
| 4574 | (autoload (quote conf-mode) "conf-mode" "\ | 4587 | (autoload (quote conf-mode) "conf-mode" "\ |
| @@ -4718,7 +4731,7 @@ For details see `conf-mode'. Example: | |||
| 4718 | ;;;*** | 4731 | ;;;*** |
| 4719 | 4732 | ||
| 4720 | ;;;### (autoloads (shuffle-vector cookie-snarf cookie-insert cookie) | 4733 | ;;;### (autoloads (shuffle-vector cookie-snarf cookie-insert cookie) |
| 4721 | ;;;;;; "cookie1" "play/cookie1.el" (17087 12380)) | 4734 | ;;;;;; "cookie1" "play/cookie1.el" (17107 37380)) |
| 4722 | ;;; Generated autoloads from play/cookie1.el | 4735 | ;;; Generated autoloads from play/cookie1.el |
| 4723 | 4736 | ||
| 4724 | (autoload (quote cookie) "cookie1" "\ | 4737 | (autoload (quote cookie) "cookie1" "\ |
| @@ -4750,7 +4763,7 @@ Randomly permute the elements of VECTOR (all permutations equally likely). | |||
| 4750 | ;;;*** | 4763 | ;;;*** |
| 4751 | 4764 | ||
| 4752 | ;;;### (autoloads (copyright copyright-fix-years copyright-update) | 4765 | ;;;### (autoloads (copyright copyright-fix-years copyright-update) |
| 4753 | ;;;;;; "copyright" "emacs-lisp/copyright.el" (17087 12564)) | 4766 | ;;;;;; "copyright" "emacs-lisp/copyright.el" (17107 37381)) |
| 4754 | ;;; Generated autoloads from emacs-lisp/copyright.el | 4767 | ;;; Generated autoloads from emacs-lisp/copyright.el |
| 4755 | 4768 | ||
| 4756 | (autoload (quote copyright-update) "copyright" "\ | 4769 | (autoload (quote copyright-update) "copyright" "\ |
| @@ -4778,7 +4791,7 @@ Insert a copyright by $ORGANIZATION notice at cursor. | |||
| 4778 | ;;;*** | 4791 | ;;;*** |
| 4779 | 4792 | ||
| 4780 | ;;;### (autoloads (cperl-mode) "cperl-mode" "progmodes/cperl-mode.el" | 4793 | ;;;### (autoloads (cperl-mode) "cperl-mode" "progmodes/cperl-mode.el" |
| 4781 | ;;;;;; (17087 12575)) | 4794 | ;;;;;; (17107 37382)) |
| 4782 | ;;; Generated autoloads from progmodes/cperl-mode.el | 4795 | ;;; Generated autoloads from progmodes/cperl-mode.el |
| 4783 | 4796 | ||
| 4784 | (autoload (quote cperl-mode) "cperl-mode" "\ | 4797 | (autoload (quote cperl-mode) "cperl-mode" "\ |
| @@ -4951,7 +4964,7 @@ or as help on variables `cperl-tips', `cperl-problems', | |||
| 4951 | ;;;*** | 4964 | ;;;*** |
| 4952 | 4965 | ||
| 4953 | ;;;### (autoloads (cpp-parse-edit cpp-highlight-buffer) "cpp" "progmodes/cpp.el" | 4966 | ;;;### (autoloads (cpp-parse-edit cpp-highlight-buffer) "cpp" "progmodes/cpp.el" |
| 4954 | ;;;;;; (17087 12570)) | 4967 | ;;;;;; (17107 37381)) |
| 4955 | ;;; Generated autoloads from progmodes/cpp.el | 4968 | ;;; Generated autoloads from progmodes/cpp.el |
| 4956 | 4969 | ||
| 4957 | (autoload (quote cpp-highlight-buffer) "cpp" "\ | 4970 | (autoload (quote cpp-highlight-buffer) "cpp" "\ |
| @@ -4970,7 +4983,7 @@ Edit display information for cpp conditionals. | |||
| 4970 | ;;;*** | 4983 | ;;;*** |
| 4971 | 4984 | ||
| 4972 | ;;;### (autoloads (crisp-mode crisp-mode) "crisp" "emulation/crisp.el" | 4985 | ;;;### (autoloads (crisp-mode crisp-mode) "crisp" "emulation/crisp.el" |
| 4973 | ;;;;;; (17087 12564)) | 4986 | ;;;;;; (17107 37380)) |
| 4974 | ;;; Generated autoloads from emulation/crisp.el | 4987 | ;;; Generated autoloads from emulation/crisp.el |
| 4975 | 4988 | ||
| 4976 | (defvar crisp-mode nil "\ | 4989 | (defvar crisp-mode nil "\ |
| @@ -4994,7 +5007,7 @@ With ARG, turn CRiSP mode on if ARG is positive, off otherwise. | |||
| 4994 | ;;;*** | 5007 | ;;;*** |
| 4995 | 5008 | ||
| 4996 | ;;;### (autoloads (completing-read-multiple) "crm" "emacs-lisp/crm.el" | 5009 | ;;;### (autoloads (completing-read-multiple) "crm" "emacs-lisp/crm.el" |
| 4997 | ;;;;;; (17087 12380)) | 5010 | ;;;;;; (17107 37381)) |
| 4998 | ;;; Generated autoloads from emacs-lisp/crm.el | 5011 | ;;; Generated autoloads from emacs-lisp/crm.el |
| 4999 | 5012 | ||
| 5000 | (autoload (quote completing-read-multiple) "crm" "\ | 5013 | (autoload (quote completing-read-multiple) "crm" "\ |
| @@ -5029,8 +5042,8 @@ INHERIT-INPUT-METHOD. | |||
| 5029 | 5042 | ||
| 5030 | ;;;*** | 5043 | ;;;*** |
| 5031 | 5044 | ||
| 5032 | ;;;### (autoloads (cua-mode) "cua-base" "emulation/cua-base.el" (17087 | 5045 | ;;;### (autoloads (cua-mode) "cua-base" "emulation/cua-base.el" (17107 |
| 5033 | ;;;;;; 12569)) | 5046 | ;;;;;; 36868)) |
| 5034 | ;;; Generated autoloads from emulation/cua-base.el | 5047 | ;;; Generated autoloads from emulation/cua-base.el |
| 5035 | 5048 | ||
| 5036 | (defvar cua-mode nil "\ | 5049 | (defvar cua-mode nil "\ |
| @@ -5041,12 +5054,14 @@ use either \\[customize] or the function `cua-mode'.") | |||
| 5041 | 5054 | ||
| 5042 | (custom-autoload (quote cua-mode) "cua-base") | 5055 | (custom-autoload (quote cua-mode) "cua-base") |
| 5043 | 5056 | ||
| 5057 | (put (quote cua-mode) (quote custom-set) (quote custom-set-minor-mode)) | ||
| 5058 | |||
| 5044 | (autoload (quote cua-mode) "cua-base" "\ | 5059 | (autoload (quote cua-mode) "cua-base" "\ |
| 5045 | Toggle CUA key-binding mode. | 5060 | Toggle CUA key-binding mode. |
| 5046 | When enabled, using shifted movement keys will activate the region (and | 5061 | When enabled, using shifted movement keys will activate the region (and |
| 5047 | highlight the region using `transient-mark-mode'), and typed text replaces | 5062 | highlight the region using `transient-mark-mode'), and typed text replaces |
| 5048 | the active selection. C-z, C-x, C-c, and C-v will undo, cut, copy, and | 5063 | the active selection. C-z, C-x, C-c, and C-v will undo, cut, copy, and |
| 5049 | paste (in addition to the normal emacs bindings). | 5064 | paste (in addition to the normal Emacs bindings). |
| 5050 | 5065 | ||
| 5051 | \(fn &optional ARG)" t nil) | 5066 | \(fn &optional ARG)" t nil) |
| 5052 | (eval-after-load 'CUA-mode | 5067 | (eval-after-load 'CUA-mode |
| @@ -5069,7 +5084,7 @@ paste (in addition to the normal emacs bindings). | |||
| 5069 | ;;;;;; customize-face customize-changed-options customize-option-other-window | 5084 | ;;;;;; customize-face customize-changed-options customize-option-other-window |
| 5070 | ;;;;;; customize-option customize-group-other-window customize-group | 5085 | ;;;;;; customize-option customize-group-other-window customize-group |
| 5071 | ;;;;;; customize-mode customize customize-save-variable customize-set-variable | 5086 | ;;;;;; customize-mode customize customize-save-variable customize-set-variable |
| 5072 | ;;;;;; customize-set-value) "cus-edit" "cus-edit.el" (17087 12581)) | 5087 | ;;;;;; customize-set-value) "cus-edit" "cus-edit.el" (17107 37380)) |
| 5073 | ;;; Generated autoloads from cus-edit.el | 5088 | ;;; Generated autoloads from cus-edit.el |
| 5074 | (add-hook 'same-window-regexps "\\`\\*Customiz.*\\*\\'") | 5089 | (add-hook 'same-window-regexps "\\`\\*Customiz.*\\*\\'") |
| 5075 | 5090 | ||
| @@ -5325,7 +5340,7 @@ The format is suitable for use with `easy-menu-define'. | |||
| 5325 | 5340 | ||
| 5326 | ;;;### (autoloads (custom-reset-faces custom-theme-reset-faces custom-theme-face-value | 5341 | ;;;### (autoloads (custom-reset-faces custom-theme-reset-faces custom-theme-face-value |
| 5327 | ;;;;;; custom-set-faces custom-declare-face) "cus-face" "cus-face.el" | 5342 | ;;;;;; custom-set-faces custom-declare-face) "cus-face" "cus-face.el" |
| 5328 | ;;;;;; (17087 12589)) | 5343 | ;;;;;; (17107 37380)) |
| 5329 | ;;; Generated autoloads from cus-face.el | 5344 | ;;; Generated autoloads from cus-face.el |
| 5330 | 5345 | ||
| 5331 | (autoload (quote custom-declare-face) "cus-face" "\ | 5346 | (autoload (quote custom-declare-face) "cus-face" "\ |
| @@ -5401,7 +5416,7 @@ ARGS is defined as for `custom-theme-reset-faces' | |||
| 5401 | ;;;*** | 5416 | ;;;*** |
| 5402 | 5417 | ||
| 5403 | ;;;### (autoloads (customize-create-theme) "cus-theme" "cus-theme.el" | 5418 | ;;;### (autoloads (customize-create-theme) "cus-theme" "cus-theme.el" |
| 5404 | ;;;;;; (17087 12532)) | 5419 | ;;;;;; (17107 37381)) |
| 5405 | ;;; Generated autoloads from cus-theme.el | 5420 | ;;; Generated autoloads from cus-theme.el |
| 5406 | 5421 | ||
| 5407 | (autoload (quote customize-create-theme) "cus-theme" "\ | 5422 | (autoload (quote customize-create-theme) "cus-theme" "\ |
| @@ -5412,7 +5427,7 @@ Create a custom theme. | |||
| 5412 | ;;;*** | 5427 | ;;;*** |
| 5413 | 5428 | ||
| 5414 | ;;;### (autoloads (cvs-status-mode) "cvs-status" "cvs-status.el" | 5429 | ;;;### (autoloads (cvs-status-mode) "cvs-status" "cvs-status.el" |
| 5415 | ;;;;;; (17087 12569)) | 5430 | ;;;;;; (17107 37380)) |
| 5416 | ;;; Generated autoloads from cvs-status.el | 5431 | ;;; Generated autoloads from cvs-status.el |
| 5417 | 5432 | ||
| 5418 | (autoload (quote cvs-status-mode) "cvs-status" "\ | 5433 | (autoload (quote cvs-status-mode) "cvs-status" "\ |
| @@ -5423,7 +5438,7 @@ Mode used for cvs status output. | |||
| 5423 | ;;;*** | 5438 | ;;;*** |
| 5424 | 5439 | ||
| 5425 | ;;;### (autoloads (global-cwarn-mode turn-on-cwarn-mode cwarn-mode) | 5440 | ;;;### (autoloads (global-cwarn-mode turn-on-cwarn-mode cwarn-mode) |
| 5426 | ;;;;;; "cwarn" "progmodes/cwarn.el" (17087 12528)) | 5441 | ;;;;;; "cwarn" "progmodes/cwarn.el" (17107 37381)) |
| 5427 | ;;; Generated autoloads from progmodes/cwarn.el | 5442 | ;;; Generated autoloads from progmodes/cwarn.el |
| 5428 | 5443 | ||
| 5429 | (autoload (quote cwarn-mode) "cwarn" "\ | 5444 | (autoload (quote cwarn-mode) "cwarn" "\ |
| @@ -5453,6 +5468,8 @@ use either \\[customize] or the function `global-cwarn-mode'.") | |||
| 5453 | 5468 | ||
| 5454 | (custom-autoload (quote global-cwarn-mode) "cwarn") | 5469 | (custom-autoload (quote global-cwarn-mode) "cwarn") |
| 5455 | 5470 | ||
| 5471 | (put (quote global-cwarn-mode) (quote custom-set) (quote custom-set-minor-mode)) | ||
| 5472 | |||
| 5456 | (autoload (quote global-cwarn-mode) "cwarn" "\ | 5473 | (autoload (quote global-cwarn-mode) "cwarn" "\ |
| 5457 | Toggle Cwarn mode in every buffer. | 5474 | Toggle Cwarn mode in every buffer. |
| 5458 | With prefix ARG, turn Global-Cwarn mode on if and only if ARG is positive. | 5475 | With prefix ARG, turn Global-Cwarn mode on if and only if ARG is positive. |
| @@ -5465,7 +5482,7 @@ in which `turn-on-cwarn-mode-if-enabled' turns it on. | |||
| 5465 | 5482 | ||
| 5466 | ;;;### (autoloads (standard-display-cyrillic-translit cyrillic-encode-alternativnyj-char | 5483 | ;;;### (autoloads (standard-display-cyrillic-translit cyrillic-encode-alternativnyj-char |
| 5467 | ;;;;;; cyrillic-encode-koi8-r-char) "cyril-util" "language/cyril-util.el" | 5484 | ;;;;;; cyrillic-encode-koi8-r-char) "cyril-util" "language/cyril-util.el" |
| 5468 | ;;;;;; (17087 12562)) | 5485 | ;;;;;; (17107 37382)) |
| 5469 | ;;; Generated autoloads from language/cyril-util.el | 5486 | ;;; Generated autoloads from language/cyril-util.el |
| 5470 | 5487 | ||
| 5471 | (autoload (quote cyrillic-encode-koi8-r-char) "cyril-util" "\ | 5488 | (autoload (quote cyrillic-encode-koi8-r-char) "cyril-util" "\ |
| @@ -5494,7 +5511,7 @@ If the argument is nil, we return the display table to its standard state. | |||
| 5494 | ;;;*** | 5511 | ;;;*** |
| 5495 | 5512 | ||
| 5496 | ;;;### (autoloads (dabbrev-expand dabbrev-completion) "dabbrev" "dabbrev.el" | 5513 | ;;;### (autoloads (dabbrev-expand dabbrev-completion) "dabbrev" "dabbrev.el" |
| 5497 | ;;;;;; (17087 12564)) | 5514 | ;;;;;; (17107 37380)) |
| 5498 | ;;; Generated autoloads from dabbrev.el | 5515 | ;;; Generated autoloads from dabbrev.el |
| 5499 | (define-key esc-map "/" 'dabbrev-expand) | 5516 | (define-key esc-map "/" 'dabbrev-expand) |
| 5500 | (define-key esc-map [?\C-/] 'dabbrev-completion) | 5517 | (define-key esc-map [?\C-/] 'dabbrev-completion) |
| @@ -5541,8 +5558,8 @@ See also `dabbrev-abbrev-char-regexp' and \\[dabbrev-completion]. | |||
| 5541 | 5558 | ||
| 5542 | ;;;*** | 5559 | ;;;*** |
| 5543 | 5560 | ||
| 5544 | ;;;### (autoloads (dcl-mode) "dcl-mode" "progmodes/dcl-mode.el" (17087 | 5561 | ;;;### (autoloads (dcl-mode) "dcl-mode" "progmodes/dcl-mode.el" (17107 |
| 5545 | ;;;;;; 12566)) | 5562 | ;;;;;; 37381)) |
| 5546 | ;;; Generated autoloads from progmodes/dcl-mode.el | 5563 | ;;; Generated autoloads from progmodes/dcl-mode.el |
| 5547 | 5564 | ||
| 5548 | (autoload (quote dcl-mode) "dcl-mode" "\ | 5565 | (autoload (quote dcl-mode) "dcl-mode" "\ |
| @@ -5669,7 +5686,7 @@ There is some minimal font-lock support (see vars | |||
| 5669 | ;;;*** | 5686 | ;;;*** |
| 5670 | 5687 | ||
| 5671 | ;;;### (autoloads (cancel-debug-on-entry debug-on-entry debug) "debug" | 5688 | ;;;### (autoloads (cancel-debug-on-entry debug-on-entry debug) "debug" |
| 5672 | ;;;;;; "emacs-lisp/debug.el" (17087 12581)) | 5689 | ;;;;;; "emacs-lisp/debug.el" (17107 37381)) |
| 5673 | ;;; Generated autoloads from emacs-lisp/debug.el | 5690 | ;;; Generated autoloads from emacs-lisp/debug.el |
| 5674 | 5691 | ||
| 5675 | (setq debugger (quote debug)) | 5692 | (setq debugger (quote debug)) |
| @@ -5713,7 +5730,7 @@ To specify a nil argument interactively, exit with an empty minibuffer. | |||
| 5713 | ;;;*** | 5730 | ;;;*** |
| 5714 | 5731 | ||
| 5715 | ;;;### (autoloads (decipher-mode decipher) "decipher" "play/decipher.el" | 5732 | ;;;### (autoloads (decipher-mode decipher) "decipher" "play/decipher.el" |
| 5716 | ;;;;;; (17087 12566)) | 5733 | ;;;;;; (17107 37380)) |
| 5717 | ;;; Generated autoloads from play/decipher.el | 5734 | ;;; Generated autoloads from play/decipher.el |
| 5718 | 5735 | ||
| 5719 | (autoload (quote decipher) "decipher" "\ | 5736 | (autoload (quote decipher) "decipher" "\ |
| @@ -5742,8 +5759,8 @@ The most useful commands are: | |||
| 5742 | ;;;*** | 5759 | ;;;*** |
| 5743 | 5760 | ||
| 5744 | ;;;### (autoloads (delimit-columns-rectangle delimit-columns-region | 5761 | ;;;### (autoloads (delimit-columns-rectangle delimit-columns-region |
| 5745 | ;;;;;; delimit-columns-customize) "delim-col" "delim-col.el" (17087 | 5762 | ;;;;;; delimit-columns-customize) "delim-col" "delim-col.el" (17107 |
| 5746 | ;;;;;; 12379)) | 5763 | ;;;;;; 37383)) |
| 5747 | ;;; Generated autoloads from delim-col.el | 5764 | ;;; Generated autoloads from delim-col.el |
| 5748 | 5765 | ||
| 5749 | (autoload (quote delimit-columns-customize) "delim-col" "\ | 5766 | (autoload (quote delimit-columns-customize) "delim-col" "\ |
| @@ -5767,8 +5784,8 @@ START and END delimits the corners of text rectangle. | |||
| 5767 | 5784 | ||
| 5768 | ;;;*** | 5785 | ;;;*** |
| 5769 | 5786 | ||
| 5770 | ;;;### (autoloads (delphi-mode) "delphi" "progmodes/delphi.el" (17087 | 5787 | ;;;### (autoloads (delphi-mode) "delphi" "progmodes/delphi.el" (17107 |
| 5771 | ;;;;;; 12570)) | 5788 | ;;;;;; 37381)) |
| 5772 | ;;; Generated autoloads from progmodes/delphi.el | 5789 | ;;; Generated autoloads from progmodes/delphi.el |
| 5773 | 5790 | ||
| 5774 | (autoload (quote delphi-mode) "delphi" "\ | 5791 | (autoload (quote delphi-mode) "delphi" "\ |
| @@ -5818,8 +5835,8 @@ no args, if that value is non-nil. | |||
| 5818 | 5835 | ||
| 5819 | ;;;*** | 5836 | ;;;*** |
| 5820 | 5837 | ||
| 5821 | ;;;### (autoloads (delete-selection-mode) "delsel" "delsel.el" (17087 | 5838 | ;;;### (autoloads (delete-selection-mode) "delsel" "delsel.el" (17107 |
| 5822 | ;;;;;; 12435)) | 5839 | ;;;;;; 37381)) |
| 5823 | ;;; Generated autoloads from delsel.el | 5840 | ;;; Generated autoloads from delsel.el |
| 5824 | 5841 | ||
| 5825 | (defalias (quote pending-delete-mode) (quote delete-selection-mode)) | 5842 | (defalias (quote pending-delete-mode) (quote delete-selection-mode)) |
| @@ -5832,6 +5849,8 @@ use either \\[customize] or the function `delete-selection-mode'.") | |||
| 5832 | 5849 | ||
| 5833 | (custom-autoload (quote delete-selection-mode) "delsel") | 5850 | (custom-autoload (quote delete-selection-mode) "delsel") |
| 5834 | 5851 | ||
| 5852 | (put (quote delete-selection-mode) (quote custom-set) (quote custom-set-minor-mode)) | ||
| 5853 | |||
| 5835 | (autoload (quote delete-selection-mode) "delsel" "\ | 5854 | (autoload (quote delete-selection-mode) "delsel" "\ |
| 5836 | Toggle Delete Selection mode. | 5855 | Toggle Delete Selection mode. |
| 5837 | With prefix ARG, turn Delete Selection mode on if and only if ARG is | 5856 | With prefix ARG, turn Delete Selection mode on if and only if ARG is |
| @@ -5847,7 +5866,7 @@ any selection. | |||
| 5847 | ;;;*** | 5866 | ;;;*** |
| 5848 | 5867 | ||
| 5849 | ;;;### (autoloads (derived-mode-init-mode-variables define-derived-mode) | 5868 | ;;;### (autoloads (derived-mode-init-mode-variables define-derived-mode) |
| 5850 | ;;;;;; "derived" "emacs-lisp/derived.el" (17087 12574)) | 5869 | ;;;;;; "derived" "emacs-lisp/derived.el" (17107 37381)) |
| 5851 | ;;; Generated autoloads from emacs-lisp/derived.el | 5870 | ;;; Generated autoloads from emacs-lisp/derived.el |
| 5852 | 5871 | ||
| 5853 | (autoload (quote define-derived-mode) "derived" "\ | 5872 | (autoload (quote define-derived-mode) "derived" "\ |
| @@ -5912,7 +5931,7 @@ the first time the mode is used. | |||
| 5912 | ;;;*** | 5931 | ;;;*** |
| 5913 | 5932 | ||
| 5914 | ;;;### (autoloads (describe-char describe-text-properties) "descr-text" | 5933 | ;;;### (autoloads (describe-char describe-text-properties) "descr-text" |
| 5915 | ;;;;;; "descr-text.el" (17087 12566)) | 5934 | ;;;;;; "descr-text.el" (17107 37380)) |
| 5916 | ;;; Generated autoloads from descr-text.el | 5935 | ;;; Generated autoloads from descr-text.el |
| 5917 | 5936 | ||
| 5918 | (autoload (quote describe-text-properties) "descr-text" "\ | 5937 | (autoload (quote describe-text-properties) "descr-text" "\ |
| @@ -5937,7 +5956,7 @@ as well as widgets, buttons, overlays, and text properties. | |||
| 5937 | 5956 | ||
| 5938 | ;;;### (autoloads (desktop-revert desktop-save-in-desktop-dir desktop-change-dir | 5957 | ;;;### (autoloads (desktop-revert desktop-save-in-desktop-dir desktop-change-dir |
| 5939 | ;;;;;; desktop-load-default desktop-read desktop-save-mode) "desktop" | 5958 | ;;;;;; desktop-load-default desktop-read desktop-save-mode) "desktop" |
| 5940 | ;;;;;; "desktop.el" (17087 12534)) | 5959 | ;;;;;; "desktop.el" (17107 37383)) |
| 5941 | ;;; Generated autoloads from desktop.el | 5960 | ;;; Generated autoloads from desktop.el |
| 5942 | 5961 | ||
| 5943 | (defvar desktop-save-mode nil "\ | 5962 | (defvar desktop-save-mode nil "\ |
| @@ -5946,6 +5965,8 @@ See the command `desktop-save-mode' for a description of this minor-mode.") | |||
| 5946 | 5965 | ||
| 5947 | (custom-autoload (quote desktop-save-mode) "desktop") | 5966 | (custom-autoload (quote desktop-save-mode) "desktop") |
| 5948 | 5967 | ||
| 5968 | (put (quote desktop-save-mode) (quote custom-set) (quote custom-set-minor-mode)) | ||
| 5969 | |||
| 5949 | (autoload (quote desktop-save-mode) "desktop" "\ | 5970 | (autoload (quote desktop-save-mode) "desktop" "\ |
| 5950 | Toggle desktop saving mode. | 5971 | Toggle desktop saving mode. |
| 5951 | With numeric ARG, turn desktop saving on if ARG is positive, off | 5972 | With numeric ARG, turn desktop saving on if ARG is positive, off |
| @@ -6010,7 +6031,7 @@ Revert to the last loaded desktop. | |||
| 6010 | ;;;;;; gnus-article-outlook-repair-attribution gnus-article-outlook-unwrap-lines | 6031 | ;;;;;; gnus-article-outlook-repair-attribution gnus-article-outlook-unwrap-lines |
| 6011 | ;;;;;; gnus-outlook-display-hook gnus-outlook-deuglify-unwrap-max | 6032 | ;;;;;; gnus-outlook-display-hook gnus-outlook-deuglify-unwrap-max |
| 6012 | ;;;;;; gnus-outlook-deuglify-unwrap-min) "deuglify" "gnus/deuglify.el" | 6033 | ;;;;;; gnus-outlook-deuglify-unwrap-min) "deuglify" "gnus/deuglify.el" |
| 6013 | ;;;;;; (17087 12566)) | 6034 | ;;;;;; (17107 37379)) |
| 6014 | ;;; Generated autoloads from gnus/deuglify.el | 6035 | ;;; Generated autoloads from gnus/deuglify.el |
| 6015 | 6036 | ||
| 6016 | (defvar gnus-outlook-deuglify-unwrap-min 45 "\ | 6037 | (defvar gnus-outlook-deuglify-unwrap-min 45 "\ |
| @@ -6059,7 +6080,7 @@ Deuglify broken Outlook (Express) articles and redisplay. | |||
| 6059 | ;;;*** | 6080 | ;;;*** |
| 6060 | 6081 | ||
| 6061 | ;;;### (autoloads (devanagari-post-read-conversion devanagari-compose-region) | 6082 | ;;;### (autoloads (devanagari-post-read-conversion devanagari-compose-region) |
| 6062 | ;;;;;; "devan-util" "language/devan-util.el" (17087 12562)) | 6083 | ;;;;;; "devan-util" "language/devan-util.el" (17107 37382)) |
| 6063 | ;;; Generated autoloads from language/devan-util.el | 6084 | ;;; Generated autoloads from language/devan-util.el |
| 6064 | 6085 | ||
| 6065 | (defconst devanagari-consonant "[\x51ad5-\x51af9\x51b38-\x51b3f]") | 6086 | (defconst devanagari-consonant "[\x51ad5-\x51af9\x51b38-\x51b3f]") |
| @@ -6077,7 +6098,7 @@ Not documented | |||
| 6077 | ;;;*** | 6098 | ;;;*** |
| 6078 | 6099 | ||
| 6079 | ;;;### (autoloads (diary-mode diary-mail-entries diary) "diary-lib" | 6100 | ;;;### (autoloads (diary-mode diary-mail-entries diary) "diary-lib" |
| 6080 | ;;;;;; "calendar/diary-lib.el" (17087 12569)) | 6101 | ;;;;;; "calendar/diary-lib.el" (17107 37380)) |
| 6081 | ;;; Generated autoloads from calendar/diary-lib.el | 6102 | ;;; Generated autoloads from calendar/diary-lib.el |
| 6082 | 6103 | ||
| 6083 | (autoload (quote diary) "diary-lib" "\ | 6104 | (autoload (quote diary) "diary-lib" "\ |
| @@ -6123,7 +6144,7 @@ Major mode for editing the diary file. | |||
| 6123 | ;;;*** | 6144 | ;;;*** |
| 6124 | 6145 | ||
| 6125 | ;;;### (autoloads (diff-backup diff diff-command diff-switches) "diff" | 6146 | ;;;### (autoloads (diff-backup diff diff-command diff-switches) "diff" |
| 6126 | ;;;;;; "diff.el" (17087 12379)) | 6147 | ;;;;;; "diff.el" (17107 37380)) |
| 6127 | ;;; Generated autoloads from diff.el | 6148 | ;;; Generated autoloads from diff.el |
| 6128 | 6149 | ||
| 6129 | (defvar diff-switches "-c" "\ | 6150 | (defvar diff-switches "-c" "\ |
| @@ -6157,7 +6178,7 @@ With prefix arg, prompt for diff switches. | |||
| 6157 | ;;;*** | 6178 | ;;;*** |
| 6158 | 6179 | ||
| 6159 | ;;;### (autoloads (diff-minor-mode diff-mode) "diff-mode" "diff-mode.el" | 6180 | ;;;### (autoloads (diff-minor-mode diff-mode) "diff-mode" "diff-mode.el" |
| 6160 | ;;;;;; (17087 12569)) | 6181 | ;;;;;; (17107 37380)) |
| 6161 | ;;; Generated autoloads from diff-mode.el | 6182 | ;;; Generated autoloads from diff-mode.el |
| 6162 | 6183 | ||
| 6163 | (autoload (quote diff-mode) "diff-mode" "\ | 6184 | (autoload (quote diff-mode) "diff-mode" "\ |
| @@ -6186,7 +6207,7 @@ Minor mode for viewing/editing context diffs. | |||
| 6186 | ;;;;;; dired-other-window dired dired-copy-preserve-time dired-dwim-target | 6207 | ;;;;;; dired-other-window dired dired-copy-preserve-time dired-dwim-target |
| 6187 | ;;;;;; dired-keep-marker-symlink dired-keep-marker-hardlink dired-keep-marker-copy | 6208 | ;;;;;; dired-keep-marker-symlink dired-keep-marker-hardlink dired-keep-marker-copy |
| 6188 | ;;;;;; dired-keep-marker-rename dired-trivial-filenames dired-ls-F-marks-symlinks | 6209 | ;;;;;; dired-keep-marker-rename dired-trivial-filenames dired-ls-F-marks-symlinks |
| 6189 | ;;;;;; dired-listing-switches) "dired" "dired.el" (17087 12569)) | 6210 | ;;;;;; dired-listing-switches) "dired" "dired.el" (17107 37380)) |
| 6190 | ;;; Generated autoloads from dired.el | 6211 | ;;; Generated autoloads from dired.el |
| 6191 | 6212 | ||
| 6192 | (defvar dired-listing-switches "-al" "\ | 6213 | (defvar dired-listing-switches "-al" "\ |
| @@ -6332,7 +6353,7 @@ Restore a dired buffer specified in a desktop file. | |||
| 6332 | ;;;;;; dired-run-shell-command dired-do-shell-command dired-clean-directory | 6353 | ;;;;;; dired-run-shell-command dired-do-shell-command dired-clean-directory |
| 6333 | ;;;;;; dired-do-print dired-do-touch dired-do-chown dired-do-chgrp | 6354 | ;;;;;; dired-do-print dired-do-touch dired-do-chown dired-do-chgrp |
| 6334 | ;;;;;; dired-do-chmod dired-compare-directories dired-backup-diff | 6355 | ;;;;;; dired-do-chmod dired-compare-directories dired-backup-diff |
| 6335 | ;;;;;; dired-diff) "dired-aux" "dired-aux.el" (17087 12581)) | 6356 | ;;;;;; dired-diff) "dired-aux" "dired-aux.el" (17107 37382)) |
| 6336 | ;;; Generated autoloads from dired-aux.el | 6357 | ;;; Generated autoloads from dired-aux.el |
| 6337 | 6358 | ||
| 6338 | (autoload (quote dired-diff) "dired-aux" "\ | 6359 | (autoload (quote dired-diff) "dired-aux" "\ |
| @@ -6740,7 +6761,7 @@ true then the type of the file linked to by FILE is printed instead. | |||
| 6740 | 6761 | ||
| 6741 | ;;;*** | 6762 | ;;;*** |
| 6742 | 6763 | ||
| 6743 | ;;;### (autoloads (dired-jump) "dired-x" "dired-x.el" (17087 12564)) | 6764 | ;;;### (autoloads (dired-jump) "dired-x" "dired-x.el" (17107 37380)) |
| 6744 | ;;; Generated autoloads from dired-x.el | 6765 | ;;; Generated autoloads from dired-x.el |
| 6745 | 6766 | ||
| 6746 | (autoload (quote dired-jump) "dired-x" "\ | 6767 | (autoload (quote dired-jump) "dired-x" "\ |
| @@ -6754,7 +6775,7 @@ buffer and try again. | |||
| 6754 | 6775 | ||
| 6755 | ;;;*** | 6776 | ;;;*** |
| 6756 | 6777 | ||
| 6757 | ;;;### (autoloads (dirtrack) "dirtrack" "dirtrack.el" (17087 12379)) | 6778 | ;;;### (autoloads (dirtrack) "dirtrack" "dirtrack.el" (17107 37383)) |
| 6758 | ;;; Generated autoloads from dirtrack.el | 6779 | ;;; Generated autoloads from dirtrack.el |
| 6759 | 6780 | ||
| 6760 | (autoload (quote dirtrack) "dirtrack" "\ | 6781 | (autoload (quote dirtrack) "dirtrack" "\ |
| @@ -6773,8 +6794,8 @@ You can enable directory tracking by adding this function to | |||
| 6773 | 6794 | ||
| 6774 | ;;;*** | 6795 | ;;;*** |
| 6775 | 6796 | ||
| 6776 | ;;;### (autoloads (disassemble) "disass" "emacs-lisp/disass.el" (17087 | 6797 | ;;;### (autoloads (disassemble) "disass" "emacs-lisp/disass.el" (17107 |
| 6777 | ;;;;;; 12380)) | 6798 | ;;;;;; 37381)) |
| 6778 | ;;; Generated autoloads from emacs-lisp/disass.el | 6799 | ;;; Generated autoloads from emacs-lisp/disass.el |
| 6779 | 6800 | ||
| 6780 | (autoload (quote disassemble) "disass" "\ | 6801 | (autoload (quote disassemble) "disass" "\ |
| @@ -6792,7 +6813,7 @@ redefine OBJECT if it is a symbol. | |||
| 6792 | ;;;;;; standard-display-graphic standard-display-g1 standard-display-ascii | 6813 | ;;;;;; standard-display-graphic standard-display-g1 standard-display-ascii |
| 6793 | ;;;;;; standard-display-default standard-display-8bit describe-current-display-table | 6814 | ;;;;;; standard-display-default standard-display-8bit describe-current-display-table |
| 6794 | ;;;;;; describe-display-table set-display-table-slot display-table-slot | 6815 | ;;;;;; describe-display-table set-display-table-slot display-table-slot |
| 6795 | ;;;;;; make-display-table) "disp-table" "disp-table.el" (17087 12379)) | 6816 | ;;;;;; make-display-table) "disp-table" "disp-table.el" (17107 37380)) |
| 6796 | ;;; Generated autoloads from disp-table.el | 6817 | ;;; Generated autoloads from disp-table.el |
| 6797 | 6818 | ||
| 6798 | (autoload (quote make-display-table) "disp-table" "\ | 6819 | (autoload (quote make-display-table) "disp-table" "\ |
| @@ -6893,7 +6914,7 @@ for users who call this function in `.emacs'. | |||
| 6893 | ;;;*** | 6914 | ;;;*** |
| 6894 | 6915 | ||
| 6895 | ;;;### (autoloads (dissociated-press) "dissociate" "play/dissociate.el" | 6916 | ;;;### (autoloads (dissociated-press) "dissociate" "play/dissociate.el" |
| 6896 | ;;;;;; (17087 12380)) | 6917 | ;;;;;; (17107 37380)) |
| 6897 | ;;; Generated autoloads from play/dissociate.el | 6918 | ;;; Generated autoloads from play/dissociate.el |
| 6898 | 6919 | ||
| 6899 | (autoload (quote dissociated-press) "dissociate" "\ | 6920 | (autoload (quote dissociated-press) "dissociate" "\ |
| @@ -6909,7 +6930,7 @@ Default is 2. | |||
| 6909 | 6930 | ||
| 6910 | ;;;*** | 6931 | ;;;*** |
| 6911 | 6932 | ||
| 6912 | ;;;### (autoloads (dnd-protocol-alist) "dnd" "dnd.el" (17087 12562)) | 6933 | ;;;### (autoloads (dnd-protocol-alist) "dnd" "dnd.el" (17107 37380)) |
| 6913 | ;;; Generated autoloads from dnd.el | 6934 | ;;; Generated autoloads from dnd.el |
| 6914 | 6935 | ||
| 6915 | (defvar dnd-protocol-alist (quote (("^file:///" . dnd-open-local-file) ("^file://" . dnd-open-file) ("^file:" . dnd-open-local-file))) "\ | 6936 | (defvar dnd-protocol-alist (quote (("^file:///" . dnd-open-local-file) ("^file://" . dnd-open-file) ("^file:" . dnd-open-local-file))) "\ |
| @@ -6930,7 +6951,7 @@ if some action was made, or nil if the URL is ignored.") | |||
| 6930 | ;;;*** | 6951 | ;;;*** |
| 6931 | 6952 | ||
| 6932 | ;;;### (autoloads (dns-mode-soa-increment-serial dns-mode) "dns-mode" | 6953 | ;;;### (autoloads (dns-mode-soa-increment-serial dns-mode) "dns-mode" |
| 6933 | ;;;;;; "textmodes/dns-mode.el" (17087 12566)) | 6954 | ;;;;;; "textmodes/dns-mode.el" (17107 37381)) |
| 6934 | ;;; Generated autoloads from textmodes/dns-mode.el | 6955 | ;;; Generated autoloads from textmodes/dns-mode.el |
| 6935 | 6956 | ||
| 6936 | (autoload (quote dns-mode) "dns-mode" "\ | 6957 | (autoload (quote dns-mode) "dns-mode" "\ |
| @@ -6953,7 +6974,7 @@ Locate SOA record and increment the serial field. | |||
| 6953 | 6974 | ||
| 6954 | ;;;*** | 6975 | ;;;*** |
| 6955 | 6976 | ||
| 6956 | ;;;### (autoloads (doctor) "doctor" "play/doctor.el" (17087 12570)) | 6977 | ;;;### (autoloads (doctor) "doctor" "play/doctor.el" (17107 37380)) |
| 6957 | ;;; Generated autoloads from play/doctor.el | 6978 | ;;; Generated autoloads from play/doctor.el |
| 6958 | 6979 | ||
| 6959 | (autoload (quote doctor) "doctor" "\ | 6980 | (autoload (quote doctor) "doctor" "\ |
| @@ -6964,7 +6985,7 @@ Switch to *doctor* buffer and start giving psychotherapy. | |||
| 6964 | ;;;*** | 6985 | ;;;*** |
| 6965 | 6986 | ||
| 6966 | ;;;### (autoloads (double-mode double-mode) "double" "double.el" | 6987 | ;;;### (autoloads (double-mode double-mode) "double" "double.el" |
| 6967 | ;;;;;; (17087 12588)) | 6988 | ;;;;;; (17107 37229)) |
| 6968 | ;;; Generated autoloads from double.el | 6989 | ;;; Generated autoloads from double.el |
| 6969 | 6990 | ||
| 6970 | (defvar double-mode nil "\ | 6991 | (defvar double-mode nil "\ |
| @@ -6985,7 +7006,7 @@ when pressed twice. See variable `double-map' for details. | |||
| 6985 | 7006 | ||
| 6986 | ;;;*** | 7007 | ;;;*** |
| 6987 | 7008 | ||
| 6988 | ;;;### (autoloads (dunnet) "dunnet" "play/dunnet.el" (17087 12570)) | 7009 | ;;;### (autoloads (dunnet) "dunnet" "play/dunnet.el" (17107 37380)) |
| 6989 | ;;; Generated autoloads from play/dunnet.el | 7010 | ;;; Generated autoloads from play/dunnet.el |
| 6990 | 7011 | ||
| 6991 | (autoload (quote dunnet) "dunnet" "\ | 7012 | (autoload (quote dunnet) "dunnet" "\ |
| @@ -6996,7 +7017,7 @@ Switch to *dungeon* buffer and start game. | |||
| 6996 | ;;;*** | 7017 | ;;;*** |
| 6997 | 7018 | ||
| 6998 | ;;;### (autoloads (gnus-earcon-display) "earcon" "gnus/earcon.el" | 7019 | ;;;### (autoloads (gnus-earcon-display) "earcon" "gnus/earcon.el" |
| 6999 | ;;;;;; (17087 12415)) | 7020 | ;;;;;; (17107 37379)) |
| 7000 | ;;; Generated autoloads from gnus/earcon.el | 7021 | ;;; Generated autoloads from gnus/earcon.el |
| 7001 | 7022 | ||
| 7002 | (autoload (quote gnus-earcon-display) "earcon" "\ | 7023 | (autoload (quote gnus-earcon-display) "earcon" "\ |
| @@ -7008,7 +7029,7 @@ Play sounds in message buffers. | |||
| 7008 | 7029 | ||
| 7009 | ;;;### (autoloads (easy-mmode-defsyntax easy-mmode-defmap easy-mmode-define-keymap | 7030 | ;;;### (autoloads (easy-mmode-defsyntax easy-mmode-defmap easy-mmode-define-keymap |
| 7010 | ;;;;;; define-global-minor-mode define-minor-mode) "easy-mmode" | 7031 | ;;;;;; define-global-minor-mode define-minor-mode) "easy-mmode" |
| 7011 | ;;;;;; "emacs-lisp/easy-mmode.el" (17087 12569)) | 7032 | ;;;;;; "emacs-lisp/easy-mmode.el" (17107 37381)) |
| 7012 | ;;; Generated autoloads from emacs-lisp/easy-mmode.el | 7033 | ;;; Generated autoloads from emacs-lisp/easy-mmode.el |
| 7013 | 7034 | ||
| 7014 | (defalias (quote easy-mmode-define-minor-mode) (quote define-minor-mode)) | 7035 | (defalias (quote easy-mmode-define-minor-mode) (quote define-minor-mode)) |
| @@ -7094,8 +7115,8 @@ CSS contains a list of syntax specifications of the form (CHAR . SYNTAX). | |||
| 7094 | ;;;*** | 7115 | ;;;*** |
| 7095 | 7116 | ||
| 7096 | ;;;### (autoloads (easy-menu-change easy-menu-create-menu easy-menu-do-define | 7117 | ;;;### (autoloads (easy-menu-change easy-menu-create-menu easy-menu-do-define |
| 7097 | ;;;;;; easy-menu-define) "easymenu" "emacs-lisp/easymenu.el" (17087 | 7118 | ;;;;;; easy-menu-define) "easymenu" "emacs-lisp/easymenu.el" (17107 |
| 7098 | ;;;;;; 12567)) | 7119 | ;;;;;; 37381)) |
| 7099 | ;;; Generated autoloads from emacs-lisp/easymenu.el | 7120 | ;;; Generated autoloads from emacs-lisp/easymenu.el |
| 7100 | 7121 | ||
| 7101 | (put (quote easy-menu-define) (quote lisp-indent-function) (quote defun)) | 7122 | (put (quote easy-menu-define) (quote lisp-indent-function) (quote defun)) |
| @@ -7240,7 +7261,7 @@ to implement dynamic menus. | |||
| 7240 | ;;;;;; ebnf-eps-directory ebnf-spool-region ebnf-spool-buffer ebnf-spool-file | 7261 | ;;;;;; ebnf-eps-directory ebnf-spool-region ebnf-spool-buffer ebnf-spool-file |
| 7241 | ;;;;;; ebnf-spool-directory ebnf-print-region ebnf-print-buffer | 7262 | ;;;;;; ebnf-spool-directory ebnf-print-region ebnf-print-buffer |
| 7242 | ;;;;;; ebnf-print-file ebnf-print-directory ebnf-customize) "ebnf2ps" | 7263 | ;;;;;; ebnf-print-file ebnf-print-directory ebnf-customize) "ebnf2ps" |
| 7243 | ;;;;;; "progmodes/ebnf2ps.el" (17087 12524)) | 7264 | ;;;;;; "progmodes/ebnf2ps.el" (17107 37381)) |
| 7244 | ;;; Generated autoloads from progmodes/ebnf2ps.el | 7265 | ;;; Generated autoloads from progmodes/ebnf2ps.el |
| 7245 | 7266 | ||
| 7246 | (autoload (quote ebnf-customize) "ebnf2ps" "\ | 7267 | (autoload (quote ebnf-customize) "ebnf2ps" "\ |
| @@ -7499,8 +7520,8 @@ See `ebnf-style-database' documentation. | |||
| 7499 | ;;;;;; ebrowse-tags-find-declaration-other-window ebrowse-tags-find-definition | 7520 | ;;;;;; ebrowse-tags-find-declaration-other-window ebrowse-tags-find-definition |
| 7500 | ;;;;;; ebrowse-tags-view-definition ebrowse-tags-find-declaration | 7521 | ;;;;;; ebrowse-tags-view-definition ebrowse-tags-find-declaration |
| 7501 | ;;;;;; ebrowse-tags-view-declaration ebrowse-member-mode ebrowse-electric-choose-tree | 7522 | ;;;;;; ebrowse-tags-view-declaration ebrowse-member-mode ebrowse-electric-choose-tree |
| 7502 | ;;;;;; ebrowse-tree-mode) "ebrowse" "progmodes/ebrowse.el" (17087 | 7523 | ;;;;;; ebrowse-tree-mode) "ebrowse" "progmodes/ebrowse.el" (17107 |
| 7503 | ;;;;;; 12570)) | 7524 | ;;;;;; 37381)) |
| 7504 | ;;; Generated autoloads from progmodes/ebrowse.el | 7525 | ;;; Generated autoloads from progmodes/ebrowse.el |
| 7505 | 7526 | ||
| 7506 | (autoload (quote ebrowse-tree-mode) "ebrowse" "\ | 7527 | (autoload (quote ebrowse-tree-mode) "ebrowse" "\ |
| @@ -7651,7 +7672,7 @@ Display statistics for a class tree. | |||
| 7651 | ;;;*** | 7672 | ;;;*** |
| 7652 | 7673 | ||
| 7653 | ;;;### (autoloads (electric-buffer-list) "ebuff-menu" "ebuff-menu.el" | 7674 | ;;;### (autoloads (electric-buffer-list) "ebuff-menu" "ebuff-menu.el" |
| 7654 | ;;;;;; (17087 12566)) | 7675 | ;;;;;; (17107 37380)) |
| 7655 | ;;; Generated autoloads from ebuff-menu.el | 7676 | ;;; Generated autoloads from ebuff-menu.el |
| 7656 | 7677 | ||
| 7657 | (autoload (quote electric-buffer-list) "ebuff-menu" "\ | 7678 | (autoload (quote electric-buffer-list) "ebuff-menu" "\ |
| @@ -7676,7 +7697,7 @@ Run hooks in `electric-buffer-menu-mode-hook' on entry. | |||
| 7676 | ;;;*** | 7697 | ;;;*** |
| 7677 | 7698 | ||
| 7678 | ;;;### (autoloads (Electric-command-history-redo-expression) "echistory" | 7699 | ;;;### (autoloads (Electric-command-history-redo-expression) "echistory" |
| 7679 | ;;;;;; "echistory.el" (17087 12379)) | 7700 | ;;;;;; "echistory.el" (17107 37382)) |
| 7680 | ;;; Generated autoloads from echistory.el | 7701 | ;;; Generated autoloads from echistory.el |
| 7681 | 7702 | ||
| 7682 | (autoload (quote Electric-command-history-redo-expression) "echistory" "\ | 7703 | (autoload (quote Electric-command-history-redo-expression) "echistory" "\ |
| @@ -7688,7 +7709,7 @@ With prefix arg NOCONFIRM, execute current line as-is without editing. | |||
| 7688 | ;;;*** | 7709 | ;;;*** |
| 7689 | 7710 | ||
| 7690 | ;;;### (autoloads (edebug-eval-top-level-form def-edebug-spec edebug-all-forms | 7711 | ;;;### (autoloads (edebug-eval-top-level-form def-edebug-spec edebug-all-forms |
| 7691 | ;;;;;; edebug-all-defs) "edebug" "emacs-lisp/edebug.el" (17087 12578)) | 7712 | ;;;;;; edebug-all-defs) "edebug" "emacs-lisp/edebug.el" (17107 37381)) |
| 7692 | ;;; Generated autoloads from emacs-lisp/edebug.el | 7713 | ;;; Generated autoloads from emacs-lisp/edebug.el |
| 7693 | 7714 | ||
| 7694 | (defvar edebug-all-defs nil "\ | 7715 | (defvar edebug-all-defs nil "\ |
| @@ -7751,7 +7772,7 @@ already is one.) | |||
| 7751 | ;;;;;; ediff-merge-directory-revisions ediff-merge-directories-with-ancestor | 7772 | ;;;;;; ediff-merge-directory-revisions ediff-merge-directories-with-ancestor |
| 7752 | ;;;;;; ediff-merge-directories ediff-directories3 ediff-directory-revisions | 7773 | ;;;;;; ediff-merge-directories ediff-directories3 ediff-directory-revisions |
| 7753 | ;;;;;; ediff-directories ediff-buffers3 ediff-buffers ediff-backup | 7774 | ;;;;;; ediff-directories ediff-buffers3 ediff-buffers ediff-backup |
| 7754 | ;;;;;; ediff-files3 ediff-files) "ediff" "ediff.el" (17087 12569)) | 7775 | ;;;;;; ediff-files3 ediff-files) "ediff" "ediff.el" (17107 37379)) |
| 7755 | ;;; Generated autoloads from ediff.el | 7776 | ;;; Generated autoloads from ediff.el |
| 7756 | 7777 | ||
| 7757 | (autoload (quote ediff-files) "ediff" "\ | 7778 | (autoload (quote ediff-files) "ediff" "\ |
| @@ -7987,7 +8008,7 @@ With optional NODE, goes to that node. | |||
| 7987 | ;;;*** | 8008 | ;;;*** |
| 7988 | 8009 | ||
| 7989 | ;;;### (autoloads (ediff-customize) "ediff-help" "ediff-help.el" | 8010 | ;;;### (autoloads (ediff-customize) "ediff-help" "ediff-help.el" |
| 7990 | ;;;;;; (17087 12569)) | 8011 | ;;;;;; (17107 37380)) |
| 7991 | ;;; Generated autoloads from ediff-help.el | 8012 | ;;; Generated autoloads from ediff-help.el |
| 7992 | 8013 | ||
| 7993 | (autoload (quote ediff-customize) "ediff-help" "\ | 8014 | (autoload (quote ediff-customize) "ediff-help" "\ |
| @@ -7997,7 +8018,7 @@ Not documented | |||
| 7997 | 8018 | ||
| 7998 | ;;;*** | 8019 | ;;;*** |
| 7999 | 8020 | ||
| 8000 | ;;;### (autoloads nil "ediff-hook" "ediff-hook.el" (17087 12528)) | 8021 | ;;;### (autoloads nil "ediff-hook" "ediff-hook.el" (17107 37380)) |
| 8001 | ;;; Generated autoloads from ediff-hook.el | 8022 | ;;; Generated autoloads from ediff-hook.el |
| 8002 | 8023 | ||
| 8003 | (defvar ediff-window-setup-function) | 8024 | (defvar ediff-window-setup-function) |
| @@ -8010,7 +8031,7 @@ Not documented | |||
| 8010 | ;;;*** | 8031 | ;;;*** |
| 8011 | 8032 | ||
| 8012 | ;;;### (autoloads (ediff-show-registry) "ediff-mult" "ediff-mult.el" | 8033 | ;;;### (autoloads (ediff-show-registry) "ediff-mult" "ediff-mult.el" |
| 8013 | ;;;;;; (17087 12569)) | 8034 | ;;;;;; (17107 37380)) |
| 8014 | ;;; Generated autoloads from ediff-mult.el | 8035 | ;;; Generated autoloads from ediff-mult.el |
| 8015 | 8036 | ||
| 8016 | (autoload (quote ediff-show-registry) "ediff-mult" "\ | 8037 | (autoload (quote ediff-show-registry) "ediff-mult" "\ |
| @@ -8023,7 +8044,7 @@ Display Ediff's registry. | |||
| 8023 | ;;;*** | 8044 | ;;;*** |
| 8024 | 8045 | ||
| 8025 | ;;;### (autoloads (ediff-toggle-use-toolbar ediff-toggle-multiframe) | 8046 | ;;;### (autoloads (ediff-toggle-use-toolbar ediff-toggle-multiframe) |
| 8026 | ;;;;;; "ediff-util" "ediff-util.el" (17087 12566)) | 8047 | ;;;;;; "ediff-util" "ediff-util.el" (17107 37380)) |
| 8027 | ;;; Generated autoloads from ediff-util.el | 8048 | ;;; Generated autoloads from ediff-util.el |
| 8028 | 8049 | ||
| 8029 | (autoload (quote ediff-toggle-multiframe) "ediff-util" "\ | 8050 | (autoload (quote ediff-toggle-multiframe) "ediff-util" "\ |
| @@ -8044,7 +8065,7 @@ To change the default, set the variable `ediff-use-toolbar-p', which see. | |||
| 8044 | 8065 | ||
| 8045 | ;;;### (autoloads (format-kbd-macro read-kbd-macro edit-named-kbd-macro | 8066 | ;;;### (autoloads (format-kbd-macro read-kbd-macro edit-named-kbd-macro |
| 8046 | ;;;;;; edit-last-kbd-macro edit-kbd-macro) "edmacro" "edmacro.el" | 8067 | ;;;;;; edit-last-kbd-macro edit-kbd-macro) "edmacro" "edmacro.el" |
| 8047 | ;;;;;; (17087 12564)) | 8068 | ;;;;;; (17107 37227)) |
| 8048 | ;;; Generated autoloads from edmacro.el | 8069 | ;;; Generated autoloads from edmacro.el |
| 8049 | 8070 | ||
| 8050 | (defvar edmacro-eight-bits nil "\ | 8071 | (defvar edmacro-eight-bits nil "\ |
| @@ -8097,7 +8118,7 @@ or nil, use a compact 80-column format. | |||
| 8097 | ;;;*** | 8118 | ;;;*** |
| 8098 | 8119 | ||
| 8099 | ;;;### (autoloads (edt-emulation-on edt-set-scroll-margins) "edt" | 8120 | ;;;### (autoloads (edt-emulation-on edt-set-scroll-margins) "edt" |
| 8100 | ;;;;;; "emulation/edt.el" (17087 12564)) | 8121 | ;;;;;; "emulation/edt.el" (17107 37380)) |
| 8101 | ;;; Generated autoloads from emulation/edt.el | 8122 | ;;; Generated autoloads from emulation/edt.el |
| 8102 | 8123 | ||
| 8103 | (autoload (quote edt-set-scroll-margins) "edt" "\ | 8124 | (autoload (quote edt-set-scroll-margins) "edt" "\ |
| @@ -8115,7 +8136,7 @@ Turn on EDT Emulation. | |||
| 8115 | ;;;*** | 8136 | ;;;*** |
| 8116 | 8137 | ||
| 8117 | ;;;### (autoloads (electric-helpify with-electric-help) "ehelp" "ehelp.el" | 8138 | ;;;### (autoloads (electric-helpify with-electric-help) "ehelp" "ehelp.el" |
| 8118 | ;;;;;; (17087 12438)) | 8139 | ;;;;;; (17107 37380)) |
| 8119 | ;;; Generated autoloads from ehelp.el | 8140 | ;;; Generated autoloads from ehelp.el |
| 8120 | 8141 | ||
| 8121 | (autoload (quote with-electric-help) "ehelp" "\ | 8142 | (autoload (quote with-electric-help) "ehelp" "\ |
| @@ -8153,7 +8174,7 @@ Not documented | |||
| 8153 | ;;;*** | 8174 | ;;;*** |
| 8154 | 8175 | ||
| 8155 | ;;;### (autoloads (turn-on-eldoc-mode eldoc-mode eldoc-minor-mode-string) | 8176 | ;;;### (autoloads (turn-on-eldoc-mode eldoc-mode eldoc-minor-mode-string) |
| 8156 | ;;;;;; "eldoc" "emacs-lisp/eldoc.el" (17087 12564)) | 8177 | ;;;;;; "eldoc" "emacs-lisp/eldoc.el" (17107 37381)) |
| 8157 | ;;; Generated autoloads from emacs-lisp/eldoc.el | 8178 | ;;; Generated autoloads from emacs-lisp/eldoc.el |
| 8158 | 8179 | ||
| 8159 | (defvar eldoc-minor-mode-string " ElDoc" "\ | 8180 | (defvar eldoc-minor-mode-string " ElDoc" "\ |
| @@ -8191,8 +8212,8 @@ Emacs Lisp mode) that support Eldoc.") | |||
| 8191 | 8212 | ||
| 8192 | ;;;*** | 8213 | ;;;*** |
| 8193 | 8214 | ||
| 8194 | ;;;### (autoloads (elide-head) "elide-head" "elide-head.el" (17087 | 8215 | ;;;### (autoloads (elide-head) "elide-head" "elide-head.el" (17107 |
| 8195 | ;;;;;; 12436)) | 8216 | ;;;;;; 37400)) |
| 8196 | ;;; Generated autoloads from elide-head.el | 8217 | ;;; Generated autoloads from elide-head.el |
| 8197 | 8218 | ||
| 8198 | (autoload (quote elide-head) "elide-head" "\ | 8219 | (autoload (quote elide-head) "elide-head" "\ |
| @@ -8208,7 +8229,7 @@ This is suitable as an entry on `find-file-hook' or appropriate mode hooks. | |||
| 8208 | ;;;*** | 8229 | ;;;*** |
| 8209 | 8230 | ||
| 8210 | ;;;### (autoloads (elint-initialize) "elint" "emacs-lisp/elint.el" | 8231 | ;;;### (autoloads (elint-initialize) "elint" "emacs-lisp/elint.el" |
| 8211 | ;;;;;; (17087 12574)) | 8232 | ;;;;;; (17107 37381)) |
| 8212 | ;;; Generated autoloads from emacs-lisp/elint.el | 8233 | ;;; Generated autoloads from emacs-lisp/elint.el |
| 8213 | 8234 | ||
| 8214 | (autoload (quote elint-initialize) "elint" "\ | 8235 | (autoload (quote elint-initialize) "elint" "\ |
| @@ -8219,8 +8240,8 @@ Initialize elint. | |||
| 8219 | ;;;*** | 8240 | ;;;*** |
| 8220 | 8241 | ||
| 8221 | ;;;### (autoloads (elp-results elp-instrument-package elp-instrument-list | 8242 | ;;;### (autoloads (elp-results elp-instrument-package elp-instrument-list |
| 8222 | ;;;;;; elp-instrument-function) "elp" "emacs-lisp/elp.el" (17087 | 8243 | ;;;;;; elp-instrument-function) "elp" "emacs-lisp/elp.el" (17107 |
| 8223 | ;;;;;; 12440)) | 8244 | ;;;;;; 37381)) |
| 8224 | ;;; Generated autoloads from emacs-lisp/elp.el | 8245 | ;;; Generated autoloads from emacs-lisp/elp.el |
| 8225 | 8246 | ||
| 8226 | (autoload (quote elp-instrument-function) "elp" "\ | 8247 | (autoload (quote elp-instrument-function) "elp" "\ |
| @@ -8254,7 +8275,7 @@ displayed. | |||
| 8254 | ;;;*** | 8275 | ;;;*** |
| 8255 | 8276 | ||
| 8256 | ;;;### (autoloads (report-emacs-bug) "emacsbug" "mail/emacsbug.el" | 8277 | ;;;### (autoloads (report-emacs-bug) "emacsbug" "mail/emacsbug.el" |
| 8257 | ;;;;;; (17087 12582)) | 8278 | ;;;;;; (17107 37380)) |
| 8258 | ;;; Generated autoloads from mail/emacsbug.el | 8279 | ;;; Generated autoloads from mail/emacsbug.el |
| 8259 | 8280 | ||
| 8260 | (autoload (quote report-emacs-bug) "emacsbug" "\ | 8281 | (autoload (quote report-emacs-bug) "emacsbug" "\ |
| @@ -8269,7 +8290,7 @@ Prompts for bug subject. Leaves you in a mail buffer. | |||
| 8269 | ;;;;;; emerge-revisions emerge-files-with-ancestor-remote emerge-files-remote | 8290 | ;;;;;; emerge-revisions emerge-files-with-ancestor-remote emerge-files-remote |
| 8270 | ;;;;;; emerge-files-with-ancestor-command emerge-files-command emerge-buffers-with-ancestor | 8291 | ;;;;;; emerge-files-with-ancestor-command emerge-files-command emerge-buffers-with-ancestor |
| 8271 | ;;;;;; emerge-buffers emerge-files-with-ancestor emerge-files) "emerge" | 8292 | ;;;;;; emerge-buffers emerge-files-with-ancestor emerge-files) "emerge" |
| 8272 | ;;;;;; "emerge.el" (17087 12564)) | 8293 | ;;;;;; "emerge.el" (17107 37379)) |
| 8273 | ;;; Generated autoloads from emerge.el | 8294 | ;;; Generated autoloads from emerge.el |
| 8274 | 8295 | ||
| 8275 | (defvar menu-bar-emerge-menu (make-sparse-keymap "Emerge")) | 8296 | (defvar menu-bar-emerge-menu (make-sparse-keymap "Emerge")) |
| @@ -8347,7 +8368,7 @@ Not documented | |||
| 8347 | ;;;*** | 8368 | ;;;*** |
| 8348 | 8369 | ||
| 8349 | ;;;### (autoloads (encoded-kbd-setup-display) "encoded-kb" "international/encoded-kb.el" | 8370 | ;;;### (autoloads (encoded-kbd-setup-display) "encoded-kb" "international/encoded-kb.el" |
| 8350 | ;;;;;; (17087 11580)) | 8371 | ;;;;;; (17107 37229)) |
| 8351 | ;;; Generated autoloads from international/encoded-kb.el | 8372 | ;;; Generated autoloads from international/encoded-kb.el |
| 8352 | 8373 | ||
| 8353 | (autoload (quote encoded-kbd-setup-display) "encoded-kb" "\ | 8374 | (autoload (quote encoded-kbd-setup-display) "encoded-kb" "\ |
| @@ -8360,7 +8381,7 @@ DISPLAY may be a display id, a frame, or nil for the selected frame's display. | |||
| 8360 | ;;;*** | 8381 | ;;;*** |
| 8361 | 8382 | ||
| 8362 | ;;;### (autoloads (enriched-decode enriched-encode enriched-mode) | 8383 | ;;;### (autoloads (enriched-decode enriched-encode enriched-mode) |
| 8363 | ;;;;;; "enriched" "textmodes/enriched.el" (17087 12528)) | 8384 | ;;;;;; "enriched" "textmodes/enriched.el" (17107 37381)) |
| 8364 | ;;; Generated autoloads from textmodes/enriched.el | 8385 | ;;; Generated autoloads from textmodes/enriched.el |
| 8365 | 8386 | ||
| 8366 | (autoload (quote enriched-mode) "enriched" "\ | 8387 | (autoload (quote enriched-mode) "enriched" "\ |
| @@ -8390,8 +8411,8 @@ Not documented | |||
| 8390 | 8411 | ||
| 8391 | ;;;*** | 8412 | ;;;*** |
| 8392 | 8413 | ||
| 8393 | ;;;### (autoloads (eshell-mode) "esh-mode" "eshell/esh-mode.el" (17087 | 8414 | ;;;### (autoloads (eshell-mode) "esh-mode" "eshell/esh-mode.el" (17107 |
| 8394 | ;;;;;; 12574)) | 8415 | ;;;;;; 37380)) |
| 8395 | ;;; Generated autoloads from eshell/esh-mode.el | 8416 | ;;; Generated autoloads from eshell/esh-mode.el |
| 8396 | 8417 | ||
| 8397 | (autoload (quote eshell-mode) "esh-mode" "\ | 8418 | (autoload (quote eshell-mode) "esh-mode" "\ |
| @@ -8403,8 +8424,8 @@ Emacs shell interactive mode. | |||
| 8403 | 8424 | ||
| 8404 | ;;;*** | 8425 | ;;;*** |
| 8405 | 8426 | ||
| 8406 | ;;;### (autoloads (eshell-test) "esh-test" "eshell/esh-test.el" (17087 | 8427 | ;;;### (autoloads (eshell-test) "esh-test" "eshell/esh-test.el" (17107 |
| 8407 | ;;;;;; 12574)) | 8428 | ;;;;;; 37380)) |
| 8408 | ;;; Generated autoloads from eshell/esh-test.el | 8429 | ;;; Generated autoloads from eshell/esh-test.el |
| 8409 | 8430 | ||
| 8410 | (autoload (quote eshell-test) "esh-test" "\ | 8431 | (autoload (quote eshell-test) "esh-test" "\ |
| @@ -8415,7 +8436,7 @@ Test Eshell to verify that it works as expected. | |||
| 8415 | ;;;*** | 8436 | ;;;*** |
| 8416 | 8437 | ||
| 8417 | ;;;### (autoloads (eshell-report-bug eshell-command-result eshell-command | 8438 | ;;;### (autoloads (eshell-report-bug eshell-command-result eshell-command |
| 8418 | ;;;;;; eshell) "eshell" "eshell/eshell.el" (17087 12380)) | 8439 | ;;;;;; eshell) "eshell" "eshell/eshell.el" (17107 37380)) |
| 8419 | ;;; Generated autoloads from eshell/eshell.el | 8440 | ;;; Generated autoloads from eshell/eshell.el |
| 8420 | 8441 | ||
| 8421 | (autoload (quote eshell) "eshell" "\ | 8442 | (autoload (quote eshell) "eshell" "\ |
| @@ -8460,8 +8481,8 @@ Please include any configuration details that might be involved. | |||
| 8460 | ;;;;;; find-tag find-tag-noselect tags-table-files visit-tags-table-buffer | 8481 | ;;;;;; find-tag find-tag-noselect tags-table-files visit-tags-table-buffer |
| 8461 | ;;;;;; visit-tags-table find-tag-default-function find-tag-hook | 8482 | ;;;;;; visit-tags-table find-tag-default-function find-tag-hook |
| 8462 | ;;;;;; tags-add-tables tags-compression-info-list tags-table-list | 8483 | ;;;;;; tags-add-tables tags-compression-info-list tags-table-list |
| 8463 | ;;;;;; tags-case-fold-search) "etags" "progmodes/etags.el" (17087 | 8484 | ;;;;;; tags-case-fold-search) "etags" "progmodes/etags.el" (17107 |
| 8464 | ;;;;;; 12566)) | 8485 | ;;;;;; 37381)) |
| 8465 | ;;; Generated autoloads from progmodes/etags.el | 8486 | ;;; Generated autoloads from progmodes/etags.el |
| 8466 | 8487 | ||
| 8467 | (defvar tags-file-name nil "\ | 8488 | (defvar tags-file-name nil "\ |
| @@ -8758,7 +8779,7 @@ for \\[find-tag] (which see). | |||
| 8758 | ;;;;;; ethio-fidel-to-sera-buffer ethio-fidel-to-sera-region ethio-sera-to-fidel-marker | 8779 | ;;;;;; ethio-fidel-to-sera-buffer ethio-fidel-to-sera-region ethio-sera-to-fidel-marker |
| 8759 | ;;;;;; ethio-sera-to-fidel-mail ethio-sera-to-fidel-mail-or-marker | 8780 | ;;;;;; ethio-sera-to-fidel-mail ethio-sera-to-fidel-mail-or-marker |
| 8760 | ;;;;;; ethio-sera-to-fidel-buffer ethio-sera-to-fidel-region setup-ethiopic-environment-internal) | 8781 | ;;;;;; ethio-sera-to-fidel-buffer ethio-sera-to-fidel-region setup-ethiopic-environment-internal) |
| 8761 | ;;;;;; "ethio-util" "language/ethio-util.el" (17087 12575)) | 8782 | ;;;;;; "ethio-util" "language/ethio-util.el" (17107 37382)) |
| 8762 | ;;; Generated autoloads from language/ethio-util.el | 8783 | ;;; Generated autoloads from language/ethio-util.el |
| 8763 | 8784 | ||
| 8764 | (autoload (quote setup-ethiopic-environment-internal) "ethio-util" "\ | 8785 | (autoload (quote setup-ethiopic-environment-internal) "ethio-util" "\ |
| @@ -8953,7 +8974,7 @@ Transcribe Ethiopic characters in ASCII depending on the file extension. | |||
| 8953 | 8974 | ||
| 8954 | ;;;### (autoloads (eudc-load-eudc eudc-query-form eudc-expand-inline | 8975 | ;;;### (autoloads (eudc-load-eudc eudc-query-form eudc-expand-inline |
| 8955 | ;;;;;; eudc-get-phone eudc-get-email eudc-set-server) "eudc" "net/eudc.el" | 8976 | ;;;;;; eudc-get-phone eudc-get-email eudc-set-server) "eudc" "net/eudc.el" |
| 8956 | ;;;;;; (17087 12566)) | 8977 | ;;;;;; (17107 37379)) |
| 8957 | ;;; Generated autoloads from net/eudc.el | 8978 | ;;; Generated autoloads from net/eudc.el |
| 8958 | 8979 | ||
| 8959 | (autoload (quote eudc-set-server) "eudc" "\ | 8980 | (autoload (quote eudc-set-server) "eudc" "\ |
| @@ -9009,7 +9030,7 @@ This does nothing except loading eudc by autoload side-effect. | |||
| 9009 | 9030 | ||
| 9010 | ;;;### (autoloads (eudc-display-jpeg-as-button eudc-display-jpeg-inline | 9031 | ;;;### (autoloads (eudc-display-jpeg-as-button eudc-display-jpeg-inline |
| 9011 | ;;;;;; eudc-display-sound eudc-display-mail eudc-display-url eudc-display-generic-binary) | 9032 | ;;;;;; eudc-display-sound eudc-display-mail eudc-display-url eudc-display-generic-binary) |
| 9012 | ;;;;;; "eudc-bob" "net/eudc-bob.el" (17087 12380)) | 9033 | ;;;;;; "eudc-bob" "net/eudc-bob.el" (17107 37379)) |
| 9013 | ;;; Generated autoloads from net/eudc-bob.el | 9034 | ;;; Generated autoloads from net/eudc-bob.el |
| 9014 | 9035 | ||
| 9015 | (autoload (quote eudc-display-generic-binary) "eudc-bob" "\ | 9036 | (autoload (quote eudc-display-generic-binary) "eudc-bob" "\ |
| @@ -9045,7 +9066,7 @@ Display a button for the JPEG DATA. | |||
| 9045 | ;;;*** | 9066 | ;;;*** |
| 9046 | 9067 | ||
| 9047 | ;;;### (autoloads (eudc-try-bbdb-insert eudc-insert-record-at-point-into-bbdb) | 9068 | ;;;### (autoloads (eudc-try-bbdb-insert eudc-insert-record-at-point-into-bbdb) |
| 9048 | ;;;;;; "eudc-export" "net/eudc-export.el" (17087 12380)) | 9069 | ;;;;;; "eudc-export" "net/eudc-export.el" (17107 37379)) |
| 9049 | ;;; Generated autoloads from net/eudc-export.el | 9070 | ;;; Generated autoloads from net/eudc-export.el |
| 9050 | 9071 | ||
| 9051 | (autoload (quote eudc-insert-record-at-point-into-bbdb) "eudc-export" "\ | 9072 | (autoload (quote eudc-insert-record-at-point-into-bbdb) "eudc-export" "\ |
| @@ -9062,7 +9083,7 @@ Call `eudc-insert-record-at-point-into-bbdb' if on a record. | |||
| 9062 | ;;;*** | 9083 | ;;;*** |
| 9063 | 9084 | ||
| 9064 | ;;;### (autoloads (eudc-edit-hotlist) "eudc-hotlist" "net/eudc-hotlist.el" | 9085 | ;;;### (autoloads (eudc-edit-hotlist) "eudc-hotlist" "net/eudc-hotlist.el" |
| 9065 | ;;;;;; (17087 12570)) | 9086 | ;;;;;; (17107 37379)) |
| 9066 | ;;; Generated autoloads from net/eudc-hotlist.el | 9087 | ;;; Generated autoloads from net/eudc-hotlist.el |
| 9067 | 9088 | ||
| 9068 | (autoload (quote eudc-edit-hotlist) "eudc-hotlist" "\ | 9089 | (autoload (quote eudc-edit-hotlist) "eudc-hotlist" "\ |
| @@ -9075,7 +9096,7 @@ Edit the hotlist of directory servers in a specialized buffer. | |||
| 9075 | ;;;### (autoloads (executable-make-buffer-file-executable-if-script-p | 9096 | ;;;### (autoloads (executable-make-buffer-file-executable-if-script-p |
| 9076 | ;;;;;; executable-self-display executable-set-magic executable-interpret | 9097 | ;;;;;; executable-self-display executable-set-magic executable-interpret |
| 9077 | ;;;;;; executable-command-find-posix-p) "executable" "progmodes/executable.el" | 9098 | ;;;;;; executable-command-find-posix-p) "executable" "progmodes/executable.el" |
| 9078 | ;;;;;; (17087 12558)) | 9099 | ;;;;;; (17107 37381)) |
| 9079 | ;;; Generated autoloads from progmodes/executable.el | 9100 | ;;; Generated autoloads from progmodes/executable.el |
| 9080 | 9101 | ||
| 9081 | (autoload (quote executable-command-find-posix-p) "executable" "\ | 9102 | (autoload (quote executable-command-find-posix-p) "executable" "\ |
| @@ -9117,7 +9138,7 @@ file modes. | |||
| 9117 | ;;;*** | 9138 | ;;;*** |
| 9118 | 9139 | ||
| 9119 | ;;;### (autoloads (expand-jump-to-next-slot expand-jump-to-previous-slot | 9140 | ;;;### (autoloads (expand-jump-to-next-slot expand-jump-to-previous-slot |
| 9120 | ;;;;;; expand-add-abbrevs) "expand" "expand.el" (17087 12380)) | 9141 | ;;;;;; expand-add-abbrevs) "expand" "expand.el" (17107 37380)) |
| 9121 | ;;; Generated autoloads from expand.el | 9142 | ;;; Generated autoloads from expand.el |
| 9122 | 9143 | ||
| 9123 | (autoload (quote expand-add-abbrevs) "expand" "\ | 9144 | (autoload (quote expand-add-abbrevs) "expand" "\ |
| @@ -9160,7 +9181,7 @@ This is used only in conjunction with `expand-add-abbrevs'. | |||
| 9160 | 9181 | ||
| 9161 | ;;;*** | 9182 | ;;;*** |
| 9162 | 9183 | ||
| 9163 | ;;;### (autoloads (f90-mode) "f90" "progmodes/f90.el" (17087 12566)) | 9184 | ;;;### (autoloads (f90-mode) "f90" "progmodes/f90.el" (17107 37381)) |
| 9164 | ;;; Generated autoloads from progmodes/f90.el | 9185 | ;;; Generated autoloads from progmodes/f90.el |
| 9165 | 9186 | ||
| 9166 | (autoload (quote f90-mode) "f90" "\ | 9187 | (autoload (quote f90-mode) "f90" "\ |
| @@ -9229,7 +9250,7 @@ with no args, if that value is non-nil. | |||
| 9229 | ;;;;;; facemenu-remove-all facemenu-remove-face-props facemenu-set-read-only | 9250 | ;;;;;; facemenu-remove-all facemenu-remove-face-props facemenu-set-read-only |
| 9230 | ;;;;;; facemenu-set-intangible facemenu-set-invisible facemenu-set-face-from-menu | 9251 | ;;;;;; facemenu-set-intangible facemenu-set-invisible facemenu-set-face-from-menu |
| 9231 | ;;;;;; facemenu-set-background facemenu-set-foreground facemenu-set-face) | 9252 | ;;;;;; facemenu-set-background facemenu-set-foreground facemenu-set-face) |
| 9232 | ;;;;;; "facemenu" "facemenu.el" (17087 12589)) | 9253 | ;;;;;; "facemenu" "facemenu.el" (17107 37380)) |
| 9233 | ;;; Generated autoloads from facemenu.el | 9254 | ;;; Generated autoloads from facemenu.el |
| 9234 | (define-key global-map "\M-o" 'facemenu-keymap) | 9255 | (define-key global-map "\M-o" 'facemenu-keymap) |
| 9235 | (autoload 'facemenu-keymap "facemenu" "Keymap for face-changing commands." t 'keymap) | 9256 | (autoload 'facemenu-keymap "facemenu" "Keymap for face-changing commands." t 'keymap) |
| @@ -9322,16 +9343,19 @@ typing a character to insert cancels the specification. | |||
| 9322 | 9343 | ||
| 9323 | (autoload (quote facemenu-set-face-from-menu) "facemenu" "\ | 9344 | (autoload (quote facemenu-set-face-from-menu) "facemenu" "\ |
| 9324 | Set the FACE of the region or next character typed. | 9345 | Set the FACE of the region or next character typed. |
| 9325 | This function is designed to be called from a menu; the face to use | 9346 | This function is designed to be called from a menu; FACE is determined |
| 9326 | is the menu item's name. | 9347 | using the event type of the menu entry. If FACE is a symbol whose |
| 9348 | name starts with \"fg:\" or \"bg:\", then this functions sets the | ||
| 9349 | foreground or background to the color specified by the rest of the | ||
| 9350 | symbol's name. Any other symbol is considered the name of a face. | ||
| 9327 | 9351 | ||
| 9328 | If the region is active (normally true except in Transient Mark mode) | 9352 | If the region is active (normally true except in Transient Mark mode) |
| 9329 | and there is no prefix argument, this command sets the region to the | 9353 | and there is no prefix argument, this command sets the region to the |
| 9330 | requested face. | 9354 | requested face. |
| 9331 | 9355 | ||
| 9332 | Otherwise, this command specifies the face for the next character | 9356 | Otherwise, this command specifies the face for the next character |
| 9333 | inserted. Moving point or switching buffers before | 9357 | inserted. Moving point or switching buffers before typing a character |
| 9334 | typing a character to insert cancels the specification. | 9358 | to insert cancels the specification. |
| 9335 | 9359 | ||
| 9336 | \(fn FACE START END)" t nil) | 9360 | \(fn FACE START END)" t nil) |
| 9337 | 9361 | ||
| @@ -9389,7 +9413,7 @@ argument BUFFER-NAME is nil, it defaults to *Colors*. | |||
| 9389 | ;;;*** | 9413 | ;;;*** |
| 9390 | 9414 | ||
| 9391 | ;;;### (autoloads (turn-on-fast-lock fast-lock-mode) "fast-lock" | 9415 | ;;;### (autoloads (turn-on-fast-lock fast-lock-mode) "fast-lock" |
| 9392 | ;;;;;; "obsolete/fast-lock.el" (17087 12438)) | 9416 | ;;;;;; "obsolete/fast-lock.el" (17107 37382)) |
| 9393 | ;;; Generated autoloads from obsolete/fast-lock.el | 9417 | ;;; Generated autoloads from obsolete/fast-lock.el |
| 9394 | 9418 | ||
| 9395 | (autoload (quote fast-lock-mode) "fast-lock" "\ | 9419 | (autoload (quote fast-lock-mode) "fast-lock" "\ |
| @@ -9430,7 +9454,7 @@ Unconditionally turn on Fast Lock mode. | |||
| 9430 | 9454 | ||
| 9431 | ;;;### (autoloads (feedmail-queue-reminder feedmail-run-the-queue | 9455 | ;;;### (autoloads (feedmail-queue-reminder feedmail-run-the-queue |
| 9432 | ;;;;;; feedmail-run-the-queue-global-prompt feedmail-run-the-queue-no-prompts | 9456 | ;;;;;; feedmail-run-the-queue-global-prompt feedmail-run-the-queue-no-prompts |
| 9433 | ;;;;;; feedmail-send-it) "feedmail" "mail/feedmail.el" (17087 12564)) | 9457 | ;;;;;; feedmail-send-it) "feedmail" "mail/feedmail.el" (17107 37380)) |
| 9434 | ;;; Generated autoloads from mail/feedmail.el | 9458 | ;;; Generated autoloads from mail/feedmail.el |
| 9435 | 9459 | ||
| 9436 | (autoload (quote feedmail-send-it) "feedmail" "\ | 9460 | (autoload (quote feedmail-send-it) "feedmail" "\ |
| @@ -9484,7 +9508,7 @@ you can set feedmail-queue-reminder-alist to nil. | |||
| 9484 | ;;;*** | 9508 | ;;;*** |
| 9485 | 9509 | ||
| 9486 | ;;;### (autoloads (ffap-bindings dired-at-point ffap-at-mouse ffap-menu | 9510 | ;;;### (autoloads (ffap-bindings dired-at-point ffap-at-mouse ffap-menu |
| 9487 | ;;;;;; find-file-at-point ffap-next) "ffap" "ffap.el" (17087 12530)) | 9511 | ;;;;;; find-file-at-point ffap-next) "ffap" "ffap.el" (17107 37380)) |
| 9488 | ;;; Generated autoloads from ffap.el | 9512 | ;;; Generated autoloads from ffap.el |
| 9489 | 9513 | ||
| 9490 | (autoload (quote ffap-next) "ffap" "\ | 9514 | (autoload (quote ffap-next) "ffap" "\ |
| @@ -9543,7 +9567,7 @@ Evaluate the forms in variable `ffap-bindings'. | |||
| 9543 | ;;;*** | 9567 | ;;;*** |
| 9544 | 9568 | ||
| 9545 | ;;;### (autoloads (file-cache-minibuffer-complete) "filecache" "filecache.el" | 9569 | ;;;### (autoloads (file-cache-minibuffer-complete) "filecache" "filecache.el" |
| 9546 | ;;;;;; (17087 12449)) | 9570 | ;;;;;; (17107 37380)) |
| 9547 | ;;; Generated autoloads from filecache.el | 9571 | ;;; Generated autoloads from filecache.el |
| 9548 | 9572 | ||
| 9549 | (autoload (quote file-cache-minibuffer-complete) "filecache" "\ | 9573 | (autoload (quote file-cache-minibuffer-complete) "filecache" "\ |
| @@ -9561,8 +9585,8 @@ the name is considered already unique; only the second substitution | |||
| 9561 | 9585 | ||
| 9562 | ;;;*** | 9586 | ;;;*** |
| 9563 | 9587 | ||
| 9564 | ;;;### (autoloads (filesets-init) "filesets" "filesets.el" (17087 | 9588 | ;;;### (autoloads (filesets-init) "filesets" "filesets.el" (17107 |
| 9565 | ;;;;;; 12569)) | 9589 | ;;;;;; 37380)) |
| 9566 | ;;; Generated autoloads from filesets.el | 9590 | ;;; Generated autoloads from filesets.el |
| 9567 | 9591 | ||
| 9568 | (autoload (quote filesets-init) "filesets" "\ | 9592 | (autoload (quote filesets-init) "filesets" "\ |
| @@ -9575,7 +9599,7 @@ Set up hooks, load the cache file -- if existing -- and build the menu. | |||
| 9575 | 9599 | ||
| 9576 | ;;;### (autoloads (find-grep-dired find-name-dired find-dired find-grep-options | 9600 | ;;;### (autoloads (find-grep-dired find-name-dired find-dired find-grep-options |
| 9577 | ;;;;;; find-ls-subdir-switches find-ls-option) "find-dired" "find-dired.el" | 9601 | ;;;;;; find-ls-subdir-switches find-ls-option) "find-dired" "find-dired.el" |
| 9578 | ;;;;;; (17087 12466)) | 9602 | ;;;;;; (17107 37380)) |
| 9579 | ;;; Generated autoloads from find-dired.el | 9603 | ;;; Generated autoloads from find-dired.el |
| 9580 | 9604 | ||
| 9581 | (defvar find-ls-option (if (eq system-type (quote berkeley-unix)) (quote ("-ls" . "-gilsb")) (quote ("-exec ls -ld {} \\;" . "-ld"))) "\ | 9605 | (defvar find-ls-option (if (eq system-type (quote berkeley-unix)) (quote ("-ls" . "-gilsb")) (quote ("-exec ls -ld {} \\;" . "-ld"))) "\ |
| @@ -9636,7 +9660,7 @@ Thus ARG can also contain additional grep options. | |||
| 9636 | 9660 | ||
| 9637 | ;;;### (autoloads (ff-mouse-find-other-file-other-window ff-mouse-find-other-file | 9661 | ;;;### (autoloads (ff-mouse-find-other-file-other-window ff-mouse-find-other-file |
| 9638 | ;;;;;; ff-find-other-file ff-get-other-file) "find-file" "find-file.el" | 9662 | ;;;;;; ff-find-other-file ff-get-other-file) "find-file" "find-file.el" |
| 9639 | ;;;;;; (17087 12574)) | 9663 | ;;;;;; (17107 37380)) |
| 9640 | ;;; Generated autoloads from find-file.el | 9664 | ;;; Generated autoloads from find-file.el |
| 9641 | 9665 | ||
| 9642 | (defvar ff-special-constructs (quote (("^#\\s *\\(include\\|import\\)\\s +[<\"]\\(.*\\)[>\"]" lambda nil (setq fname (buffer-substring (match-beginning 2) (match-end 2)))))) "\ | 9666 | (defvar ff-special-constructs (quote (("^#\\s *\\(include\\|import\\)\\s +[<\"]\\(.*\\)[>\"]" lambda nil (setq fname (buffer-substring (match-beginning 2) (match-end 2)))))) "\ |
| @@ -9728,7 +9752,7 @@ Visit the file you click on in another window. | |||
| 9728 | ;;;;;; find-variable find-variable-noselect find-function-other-frame | 9752 | ;;;;;; find-variable find-variable-noselect find-function-other-frame |
| 9729 | ;;;;;; find-function-other-window find-function find-function-noselect | 9753 | ;;;;;; find-function-other-window find-function find-function-noselect |
| 9730 | ;;;;;; find-function-search-for-symbol find-library) "find-func" | 9754 | ;;;;;; find-function-search-for-symbol find-library) "find-func" |
| 9731 | ;;;;;; "emacs-lisp/find-func.el" (17087 12567)) | 9755 | ;;;;;; "emacs-lisp/find-func.el" (17107 37381)) |
| 9732 | ;;; Generated autoloads from emacs-lisp/find-func.el | 9756 | ;;; Generated autoloads from emacs-lisp/find-func.el |
| 9733 | 9757 | ||
| 9734 | (autoload (quote find-library) "find-func" "\ | 9758 | (autoload (quote find-library) "find-func" "\ |
| @@ -9877,7 +9901,7 @@ Define some key bindings for the find-function family of functions. | |||
| 9877 | ;;;*** | 9901 | ;;;*** |
| 9878 | 9902 | ||
| 9879 | ;;;### (autoloads (find-lisp-find-dired-filter find-lisp-find-dired-subdirectories | 9903 | ;;;### (autoloads (find-lisp-find-dired-filter find-lisp-find-dired-subdirectories |
| 9880 | ;;;;;; find-lisp-find-dired) "find-lisp" "find-lisp.el" (17087 12380)) | 9904 | ;;;;;; find-lisp-find-dired) "find-lisp" "find-lisp.el" (17107 37380)) |
| 9881 | ;;; Generated autoloads from find-lisp.el | 9905 | ;;; Generated autoloads from find-lisp.el |
| 9882 | 9906 | ||
| 9883 | (autoload (quote find-lisp-find-dired) "find-lisp" "\ | 9907 | (autoload (quote find-lisp-find-dired) "find-lisp" "\ |
| @@ -9898,7 +9922,7 @@ Change the filter on a find-lisp-find-dired buffer to REGEXP. | |||
| 9898 | ;;;*** | 9922 | ;;;*** |
| 9899 | 9923 | ||
| 9900 | ;;;### (autoloads (finder-by-keyword finder-commentary finder-list-keywords) | 9924 | ;;;### (autoloads (finder-by-keyword finder-commentary finder-list-keywords) |
| 9901 | ;;;;;; "finder" "finder.el" (17087 12564)) | 9925 | ;;;;;; "finder" "finder.el" (17107 37380)) |
| 9902 | ;;; Generated autoloads from finder.el | 9926 | ;;; Generated autoloads from finder.el |
| 9903 | 9927 | ||
| 9904 | (autoload (quote finder-list-keywords) "finder" "\ | 9928 | (autoload (quote finder-list-keywords) "finder" "\ |
| @@ -9920,7 +9944,7 @@ Find packages matching a given keyword. | |||
| 9920 | ;;;*** | 9944 | ;;;*** |
| 9921 | 9945 | ||
| 9922 | ;;;### (autoloads (enable-flow-control-on enable-flow-control) "flow-ctrl" | 9946 | ;;;### (autoloads (enable-flow-control-on enable-flow-control) "flow-ctrl" |
| 9923 | ;;;;;; "flow-ctrl.el" (17087 12380)) | 9947 | ;;;;;; "flow-ctrl.el" (17107 37381)) |
| 9924 | ;;; Generated autoloads from flow-ctrl.el | 9948 | ;;; Generated autoloads from flow-ctrl.el |
| 9925 | 9949 | ||
| 9926 | (autoload (quote enable-flow-control) "flow-ctrl" "\ | 9950 | (autoload (quote enable-flow-control) "flow-ctrl" "\ |
| @@ -9942,7 +9966,7 @@ to get the effect of a C-q. | |||
| 9942 | ;;;*** | 9966 | ;;;*** |
| 9943 | 9967 | ||
| 9944 | ;;;### (autoloads (fill-flowed fill-flowed-encode) "flow-fill" "gnus/flow-fill.el" | 9968 | ;;;### (autoloads (fill-flowed fill-flowed-encode) "flow-fill" "gnus/flow-fill.el" |
| 9945 | ;;;;;; (17087 12466)) | 9969 | ;;;;;; (17107 37379)) |
| 9946 | ;;; Generated autoloads from gnus/flow-fill.el | 9970 | ;;; Generated autoloads from gnus/flow-fill.el |
| 9947 | 9971 | ||
| 9948 | (autoload (quote fill-flowed-encode) "flow-fill" "\ | 9972 | (autoload (quote fill-flowed-encode) "flow-fill" "\ |
| @@ -9958,7 +9982,7 @@ Not documented | |||
| 9958 | ;;;*** | 9982 | ;;;*** |
| 9959 | 9983 | ||
| 9960 | ;;;### (autoloads (flymake-mode-off flymake-mode-on flymake-mode) | 9984 | ;;;### (autoloads (flymake-mode-off flymake-mode-on flymake-mode) |
| 9961 | ;;;;;; "flymake" "progmodes/flymake.el" (17087 12570)) | 9985 | ;;;;;; "flymake" "progmodes/flymake.el" (17107 37398)) |
| 9962 | ;;; Generated autoloads from progmodes/flymake.el | 9986 | ;;; Generated autoloads from progmodes/flymake.el |
| 9963 | 9987 | ||
| 9964 | (autoload (quote flymake-mode) "flymake" "\ | 9988 | (autoload (quote flymake-mode) "flymake" "\ |
| @@ -9982,7 +10006,7 @@ Turn flymake mode off. | |||
| 9982 | 10006 | ||
| 9983 | ;;;### (autoloads (flyspell-buffer flyspell-region flyspell-mode-off | 10007 | ;;;### (autoloads (flyspell-buffer flyspell-region flyspell-mode-off |
| 9984 | ;;;;;; flyspell-mode flyspell-prog-mode) "flyspell" "textmodes/flyspell.el" | 10008 | ;;;;;; flyspell-mode flyspell-prog-mode) "flyspell" "textmodes/flyspell.el" |
| 9985 | ;;;;;; (17087 12570)) | 10009 | ;;;;;; (17107 37381)) |
| 9986 | ;;; Generated autoloads from textmodes/flyspell.el | 10010 | ;;; Generated autoloads from textmodes/flyspell.el |
| 9987 | 10011 | ||
| 9988 | (autoload (quote flyspell-prog-mode) "flyspell" "\ | 10012 | (autoload (quote flyspell-prog-mode) "flyspell" "\ |
| @@ -10040,7 +10064,7 @@ Flyspell whole buffer. | |||
| 10040 | 10064 | ||
| 10041 | ;;;### (autoloads (follow-delete-other-windows-and-split follow-mode | 10065 | ;;;### (autoloads (follow-delete-other-windows-and-split follow-mode |
| 10042 | ;;;;;; turn-off-follow-mode turn-on-follow-mode) "follow" "follow.el" | 10066 | ;;;;;; turn-off-follow-mode turn-on-follow-mode) "follow" "follow.el" |
| 10043 | ;;;;;; (17087 12564)) | 10067 | ;;;;;; (17107 37381)) |
| 10044 | ;;; Generated autoloads from follow.el | 10068 | ;;; Generated autoloads from follow.el |
| 10045 | 10069 | ||
| 10046 | (autoload (quote turn-on-follow-mode) "follow" "\ | 10070 | (autoload (quote turn-on-follow-mode) "follow" "\ |
| @@ -10116,7 +10140,7 @@ in your `~/.emacs' file, replacing [f7] by your favourite key: | |||
| 10116 | 10140 | ||
| 10117 | ;;;### (autoloads (font-lock-fontify-buffer font-lock-remove-keywords | 10141 | ;;;### (autoloads (font-lock-fontify-buffer font-lock-remove-keywords |
| 10118 | ;;;;;; font-lock-add-keywords font-lock-mode-internal) "font-lock" | 10142 | ;;;;;; font-lock-add-keywords font-lock-mode-internal) "font-lock" |
| 10119 | ;;;;;; "font-lock.el" (17087 12574)) | 10143 | ;;;;;; "font-lock.el" (17107 37380)) |
| 10120 | ;;; Generated autoloads from font-lock.el | 10144 | ;;; Generated autoloads from font-lock.el |
| 10121 | 10145 | ||
| 10122 | (autoload (quote font-lock-mode-internal) "font-lock" "\ | 10146 | (autoload (quote font-lock-mode-internal) "font-lock" "\ |
| @@ -10188,8 +10212,8 @@ Fontify the current buffer the way the function `font-lock-mode' would. | |||
| 10188 | 10212 | ||
| 10189 | ;;;*** | 10213 | ;;;*** |
| 10190 | 10214 | ||
| 10191 | ;;;### (autoloads (footnote-mode) "footnote" "mail/footnote.el" (17087 | 10215 | ;;;### (autoloads (footnote-mode) "footnote" "mail/footnote.el" (17107 |
| 10192 | ;;;;;; 12466)) | 10216 | ;;;;;; 37380)) |
| 10193 | ;;; Generated autoloads from mail/footnote.el | 10217 | ;;; Generated autoloads from mail/footnote.el |
| 10194 | 10218 | ||
| 10195 | (autoload (quote footnote-mode) "footnote" "\ | 10219 | (autoload (quote footnote-mode) "footnote" "\ |
| @@ -10210,7 +10234,7 @@ key binding | |||
| 10210 | ;;;*** | 10234 | ;;;*** |
| 10211 | 10235 | ||
| 10212 | ;;;### (autoloads (forms-find-file-other-window forms-find-file forms-mode) | 10236 | ;;;### (autoloads (forms-find-file-other-window forms-find-file forms-mode) |
| 10213 | ;;;;;; "forms" "forms.el" (17087 12569)) | 10237 | ;;;;;; "forms" "forms.el" (17107 37380)) |
| 10214 | ;;; Generated autoloads from forms.el | 10238 | ;;; Generated autoloads from forms.el |
| 10215 | 10239 | ||
| 10216 | (autoload (quote forms-mode) "forms" "\ | 10240 | (autoload (quote forms-mode) "forms" "\ |
| @@ -10247,7 +10271,7 @@ Visit a file in Forms mode in other window. | |||
| 10247 | ;;;*** | 10271 | ;;;*** |
| 10248 | 10272 | ||
| 10249 | ;;;### (autoloads (fortran-mode fortran-tab-mode-default) "fortran" | 10273 | ;;;### (autoloads (fortran-mode fortran-tab-mode-default) "fortran" |
| 10250 | ;;;;;; "progmodes/fortran.el" (17087 12566)) | 10274 | ;;;;;; "progmodes/fortran.el" (17107 37381)) |
| 10251 | ;;; Generated autoloads from progmodes/fortran.el | 10275 | ;;; Generated autoloads from progmodes/fortran.el |
| 10252 | 10276 | ||
| 10253 | (defvar fortran-tab-mode-default nil "\ | 10277 | (defvar fortran-tab-mode-default nil "\ |
| @@ -10333,7 +10357,7 @@ with no args, if that value is non-nil. | |||
| 10333 | ;;;*** | 10357 | ;;;*** |
| 10334 | 10358 | ||
| 10335 | ;;;### (autoloads (fortune fortune-to-signature fortune-compile fortune-from-region | 10359 | ;;;### (autoloads (fortune fortune-to-signature fortune-compile fortune-from-region |
| 10336 | ;;;;;; fortune-add-fortune) "fortune" "play/fortune.el" (17087 12558)) | 10360 | ;;;;;; fortune-add-fortune) "fortune" "play/fortune.el" (17107 37380)) |
| 10337 | ;;; Generated autoloads from play/fortune.el | 10361 | ;;; Generated autoloads from play/fortune.el |
| 10338 | 10362 | ||
| 10339 | (autoload (quote fortune-add-fortune) "fortune" "\ | 10363 | (autoload (quote fortune-add-fortune) "fortune" "\ |
| @@ -10383,7 +10407,7 @@ and choose the directory as the fortune-file. | |||
| 10383 | ;;;*** | 10407 | ;;;*** |
| 10384 | 10408 | ||
| 10385 | ;;;### (autoloads (fringe-indicators set-fringe-style fringe-mode | 10409 | ;;;### (autoloads (fringe-indicators set-fringe-style fringe-mode |
| 10386 | ;;;;;; fringe-mode) "fringe" "fringe.el" (17087 12466)) | 10410 | ;;;;;; fringe-mode) "fringe" "fringe.el" (17107 37380)) |
| 10387 | ;;; Generated autoloads from fringe.el | 10411 | ;;; Generated autoloads from fringe.el |
| 10388 | 10412 | ||
| 10389 | (defvar fringe-mode nil "\ | 10413 | (defvar fringe-mode nil "\ |
| @@ -10459,7 +10483,7 @@ Setting this variable, changes `default-indicate-buffer-boundaries'.") | |||
| 10459 | 10483 | ||
| 10460 | ;;;*** | 10484 | ;;;*** |
| 10461 | 10485 | ||
| 10462 | ;;;### (autoloads (gdba) "gdb-ui" "progmodes/gdb-ui.el" (17087 12582)) | 10486 | ;;;### (autoloads (gdba) "gdb-ui" "progmodes/gdb-ui.el" (17107 37381)) |
| 10463 | ;;; Generated autoloads from progmodes/gdb-ui.el | 10487 | ;;; Generated autoloads from progmodes/gdb-ui.el |
| 10464 | 10488 | ||
| 10465 | (autoload (quote gdba) "gdb-ui" "\ | 10489 | (autoload (quote gdba) "gdb-ui" "\ |
| @@ -10517,8 +10541,8 @@ detailed description of this mode. | |||
| 10517 | ;;;*** | 10541 | ;;;*** |
| 10518 | 10542 | ||
| 10519 | ;;;### (autoloads (generic-make-keywords-list generic-mode generic-mode-internal | 10543 | ;;;### (autoloads (generic-make-keywords-list generic-mode generic-mode-internal |
| 10520 | ;;;;;; define-generic-mode) "generic" "emacs-lisp/generic.el" (17087 | 10544 | ;;;;;; define-generic-mode) "generic" "emacs-lisp/generic.el" (17107 |
| 10521 | ;;;;;; 12558)) | 10545 | ;;;;;; 37381)) |
| 10522 | ;;; Generated autoloads from emacs-lisp/generic.el | 10546 | ;;; Generated autoloads from emacs-lisp/generic.el |
| 10523 | 10547 | ||
| 10524 | (defvar generic-mode-list nil "\ | 10548 | (defvar generic-mode-list nil "\ |
| @@ -10593,7 +10617,7 @@ regular expression that can be used as an element of | |||
| 10593 | ;;;*** | 10617 | ;;;*** |
| 10594 | 10618 | ||
| 10595 | ;;;### (autoloads (glasses-mode) "glasses" "progmodes/glasses.el" | 10619 | ;;;### (autoloads (glasses-mode) "glasses" "progmodes/glasses.el" |
| 10596 | ;;;;;; (17087 12528)) | 10620 | ;;;;;; (17107 37382)) |
| 10597 | ;;; Generated autoloads from progmodes/glasses.el | 10621 | ;;; Generated autoloads from progmodes/glasses.el |
| 10598 | 10622 | ||
| 10599 | (autoload (quote glasses-mode) "glasses" "\ | 10623 | (autoload (quote glasses-mode) "glasses" "\ |
| @@ -10606,7 +10630,7 @@ at places they belong to. | |||
| 10606 | ;;;*** | 10630 | ;;;*** |
| 10607 | 10631 | ||
| 10608 | ;;;### (autoloads (gnus gnus-other-frame gnus-slave gnus-no-server | 10632 | ;;;### (autoloads (gnus gnus-other-frame gnus-slave gnus-no-server |
| 10609 | ;;;;;; gnus-slave-no-server) "gnus" "gnus/gnus.el" (17087 12574)) | 10633 | ;;;;;; gnus-slave-no-server) "gnus" "gnus/gnus.el" (17107 37379)) |
| 10610 | ;;; Generated autoloads from gnus/gnus.el | 10634 | ;;; Generated autoloads from gnus/gnus.el |
| 10611 | 10635 | ||
| 10612 | (autoload (quote gnus-slave-no-server) "gnus" "\ | 10636 | (autoload (quote gnus-slave-no-server) "gnus" "\ |
| @@ -10657,7 +10681,7 @@ prompt the user for the name of an NNTP server to use. | |||
| 10657 | ;;;;;; gnus-agent-get-undownloaded-list gnus-agent-delete-group | 10681 | ;;;;;; gnus-agent-get-undownloaded-list gnus-agent-delete-group |
| 10658 | ;;;;;; gnus-agent-rename-group gnus-agent-possibly-save-gcc gnus-agentize | 10682 | ;;;;;; gnus-agent-rename-group gnus-agent-possibly-save-gcc gnus-agentize |
| 10659 | ;;;;;; gnus-slave-unplugged gnus-plugged gnus-unplugged) "gnus-agent" | 10683 | ;;;;;; gnus-slave-unplugged gnus-plugged gnus-unplugged) "gnus-agent" |
| 10660 | ;;;;;; "gnus/gnus-agent.el" (17087 12567)) | 10684 | ;;;;;; "gnus/gnus-agent.el" (17107 37379)) |
| 10661 | ;;; Generated autoloads from gnus/gnus-agent.el | 10685 | ;;; Generated autoloads from gnus/gnus-agent.el |
| 10662 | 10686 | ||
| 10663 | (autoload (quote gnus-unplugged) "gnus-agent" "\ | 10687 | (autoload (quote gnus-unplugged) "gnus-agent" "\ |
| @@ -10744,7 +10768,7 @@ If CLEAN, obsolete (ignore). | |||
| 10744 | ;;;*** | 10768 | ;;;*** |
| 10745 | 10769 | ||
| 10746 | ;;;### (autoloads (gnus-article-prepare-display) "gnus-art" "gnus/gnus-art.el" | 10770 | ;;;### (autoloads (gnus-article-prepare-display) "gnus-art" "gnus/gnus-art.el" |
| 10747 | ;;;;;; (17087 12589)) | 10771 | ;;;;;; (17107 37379)) |
| 10748 | ;;; Generated autoloads from gnus/gnus-art.el | 10772 | ;;; Generated autoloads from gnus/gnus-art.el |
| 10749 | 10773 | ||
| 10750 | (autoload (quote gnus-article-prepare-display) "gnus-art" "\ | 10774 | (autoload (quote gnus-article-prepare-display) "gnus-art" "\ |
| @@ -10755,7 +10779,7 @@ Make the current buffer look like a nice article. | |||
| 10755 | ;;;*** | 10779 | ;;;*** |
| 10756 | 10780 | ||
| 10757 | ;;;### (autoloads (gnus-audio-play) "gnus-audio" "gnus/gnus-audio.el" | 10781 | ;;;### (autoloads (gnus-audio-play) "gnus-audio" "gnus/gnus-audio.el" |
| 10758 | ;;;;;; (17087 12415)) | 10782 | ;;;;;; (17107 37379)) |
| 10759 | ;;; Generated autoloads from gnus/gnus-audio.el | 10783 | ;;; Generated autoloads from gnus/gnus-audio.el |
| 10760 | 10784 | ||
| 10761 | (autoload (quote gnus-audio-play) "gnus-audio" "\ | 10785 | (autoload (quote gnus-audio-play) "gnus-audio" "\ |
| @@ -10767,8 +10791,8 @@ Play a sound FILE through the speaker. | |||
| 10767 | 10791 | ||
| 10768 | ;;;### (autoloads (gnus-cache-delete-group gnus-cache-rename-group | 10792 | ;;;### (autoloads (gnus-cache-delete-group gnus-cache-rename-group |
| 10769 | ;;;;;; gnus-cache-generate-nov-databases gnus-cache-generate-active | 10793 | ;;;;;; gnus-cache-generate-nov-databases gnus-cache-generate-active |
| 10770 | ;;;;;; gnus-jog-cache) "gnus-cache" "gnus/gnus-cache.el" (17087 | 10794 | ;;;;;; gnus-jog-cache) "gnus-cache" "gnus/gnus-cache.el" (17107 |
| 10771 | ;;;;;; 12567)) | 10795 | ;;;;;; 37379)) |
| 10772 | ;;; Generated autoloads from gnus/gnus-cache.el | 10796 | ;;; Generated autoloads from gnus/gnus-cache.el |
| 10773 | 10797 | ||
| 10774 | (autoload (quote gnus-jog-cache) "gnus-cache" "\ | 10798 | (autoload (quote gnus-jog-cache) "gnus-cache" "\ |
| @@ -10806,7 +10830,7 @@ next enabled. Depends upon the caller to determine whether group deletion is sup | |||
| 10806 | ;;;*** | 10830 | ;;;*** |
| 10807 | 10831 | ||
| 10808 | ;;;### (autoloads (gnus-delay-initialize gnus-delay-send-queue gnus-delay-article) | 10832 | ;;;### (autoloads (gnus-delay-initialize gnus-delay-send-queue gnus-delay-article) |
| 10809 | ;;;;;; "gnus-delay" "gnus/gnus-delay.el" (17087 12530)) | 10833 | ;;;;;; "gnus-delay" "gnus/gnus-delay.el" (17107 37379)) |
| 10810 | ;;; Generated autoloads from gnus/gnus-delay.el | 10834 | ;;; Generated autoloads from gnus/gnus-delay.el |
| 10811 | 10835 | ||
| 10812 | (defgroup gnus-delay nil "Arrange for sending postings later." :version "22.1" :group (quote gnus)) | 10836 | (defgroup gnus-delay nil "Arrange for sending postings later." :version "22.1" :group (quote gnus)) |
| @@ -10844,7 +10868,7 @@ Checking delayed messages is skipped if optional arg NO-CHECK is non-nil. | |||
| 10844 | ;;;*** | 10868 | ;;;*** |
| 10845 | 10869 | ||
| 10846 | ;;;### (autoloads (turn-on-gnus-dired-mode) "gnus-dired" "gnus/gnus-dired.el" | 10870 | ;;;### (autoloads (turn-on-gnus-dired-mode) "gnus-dired" "gnus/gnus-dired.el" |
| 10847 | ;;;;;; (17087 12415)) | 10871 | ;;;;;; (17107 37379)) |
| 10848 | ;;; Generated autoloads from gnus/gnus-dired.el | 10872 | ;;; Generated autoloads from gnus/gnus-dired.el |
| 10849 | 10873 | ||
| 10850 | (autoload (quote turn-on-gnus-dired-mode) "gnus-dired" "\ | 10874 | (autoload (quote turn-on-gnus-dired-mode) "gnus-dired" "\ |
| @@ -10855,7 +10879,7 @@ Convenience method to turn on gnus-dired-mode. | |||
| 10855 | ;;;*** | 10879 | ;;;*** |
| 10856 | 10880 | ||
| 10857 | ;;;### (autoloads (gnus-draft-reminder) "gnus-draft" "gnus/gnus-draft.el" | 10881 | ;;;### (autoloads (gnus-draft-reminder) "gnus-draft" "gnus/gnus-draft.el" |
| 10858 | ;;;;;; (17087 12435)) | 10882 | ;;;;;; (17107 37379)) |
| 10859 | ;;; Generated autoloads from gnus/gnus-draft.el | 10883 | ;;; Generated autoloads from gnus/gnus-draft.el |
| 10860 | 10884 | ||
| 10861 | (autoload (quote gnus-draft-reminder) "gnus-draft" "\ | 10885 | (autoload (quote gnus-draft-reminder) "gnus-draft" "\ |
| @@ -10867,8 +10891,8 @@ Reminder user if there are unsent drafts. | |||
| 10867 | 10891 | ||
| 10868 | ;;;### (autoloads (gnus-convert-png-to-face gnus-convert-face-to-png | 10892 | ;;;### (autoloads (gnus-convert-png-to-face gnus-convert-face-to-png |
| 10869 | ;;;;;; gnus-face-from-file gnus-x-face-from-file gnus-insert-random-x-face-header | 10893 | ;;;;;; gnus-face-from-file gnus-x-face-from-file gnus-insert-random-x-face-header |
| 10870 | ;;;;;; gnus-random-x-face) "gnus-fun" "gnus/gnus-fun.el" (17087 | 10894 | ;;;;;; gnus-random-x-face) "gnus-fun" "gnus/gnus-fun.el" (17107 |
| 10871 | ;;;;;; 12466)) | 10895 | ;;;;;; 37379)) |
| 10872 | ;;; Generated autoloads from gnus/gnus-fun.el | 10896 | ;;; Generated autoloads from gnus/gnus-fun.el |
| 10873 | 10897 | ||
| 10874 | (autoload (quote gnus-random-x-face) "gnus-fun" "\ | 10898 | (autoload (quote gnus-random-x-face) "gnus-fun" "\ |
| @@ -10907,7 +10931,7 @@ FILE should be a PNG file that's 48x48 and smaller than or equal to | |||
| 10907 | ;;;*** | 10931 | ;;;*** |
| 10908 | 10932 | ||
| 10909 | ;;;### (autoloads (gnus-fetch-group-other-frame gnus-fetch-group) | 10933 | ;;;### (autoloads (gnus-fetch-group-other-frame gnus-fetch-group) |
| 10910 | ;;;;;; "gnus-group" "gnus/gnus-group.el" (17087 12574)) | 10934 | ;;;;;; "gnus-group" "gnus/gnus-group.el" (17107 37379)) |
| 10911 | ;;; Generated autoloads from gnus/gnus-group.el | 10935 | ;;; Generated autoloads from gnus/gnus-group.el |
| 10912 | 10936 | ||
| 10913 | (autoload (quote gnus-fetch-group) "gnus-group" "\ | 10937 | (autoload (quote gnus-fetch-group) "gnus-group" "\ |
| @@ -10924,7 +10948,7 @@ Pop up a frame and enter GROUP. | |||
| 10924 | ;;;*** | 10948 | ;;;*** |
| 10925 | 10949 | ||
| 10926 | ;;;### (autoloads (gnus-batch-score) "gnus-kill" "gnus/gnus-kill.el" | 10950 | ;;;### (autoloads (gnus-batch-score) "gnus-kill" "gnus/gnus-kill.el" |
| 10927 | ;;;;;; (17087 12567)) | 10951 | ;;;;;; (17107 37379)) |
| 10928 | ;;; Generated autoloads from gnus/gnus-kill.el | 10952 | ;;; Generated autoloads from gnus/gnus-kill.el |
| 10929 | 10953 | ||
| 10930 | (defalias (quote gnus-batch-kill) (quote gnus-batch-score)) | 10954 | (defalias (quote gnus-batch-kill) (quote gnus-batch-score)) |
| @@ -10939,7 +10963,7 @@ Usage: emacs -batch -l ~/.emacs -l gnus -f gnus-batch-score | |||
| 10939 | 10963 | ||
| 10940 | ;;;### (autoloads (gnus-mailing-list-mode gnus-mailing-list-insinuate | 10964 | ;;;### (autoloads (gnus-mailing-list-mode gnus-mailing-list-insinuate |
| 10941 | ;;;;;; turn-on-gnus-mailing-list-mode) "gnus-ml" "gnus/gnus-ml.el" | 10965 | ;;;;;; turn-on-gnus-mailing-list-mode) "gnus-ml" "gnus/gnus-ml.el" |
| 10942 | ;;;;;; (17087 12415)) | 10966 | ;;;;;; (17107 37379)) |
| 10943 | ;;; Generated autoloads from gnus/gnus-ml.el | 10967 | ;;; Generated autoloads from gnus/gnus-ml.el |
| 10944 | 10968 | ||
| 10945 | (autoload (quote turn-on-gnus-mailing-list-mode) "gnus-ml" "\ | 10969 | (autoload (quote turn-on-gnus-mailing-list-mode) "gnus-ml" "\ |
| @@ -10964,7 +10988,7 @@ Minor mode for providing mailing-list commands. | |||
| 10964 | 10988 | ||
| 10965 | ;;;### (autoloads (gnus-group-split-fancy gnus-group-split gnus-group-split-update | 10989 | ;;;### (autoloads (gnus-group-split-fancy gnus-group-split gnus-group-split-update |
| 10966 | ;;;;;; gnus-group-split-setup) "gnus-mlspl" "gnus/gnus-mlspl.el" | 10990 | ;;;;;; gnus-group-split-setup) "gnus-mlspl" "gnus/gnus-mlspl.el" |
| 10967 | ;;;;;; (17087 12415)) | 10991 | ;;;;;; (17107 37379)) |
| 10968 | ;;; Generated autoloads from gnus/gnus-mlspl.el | 10992 | ;;; Generated autoloads from gnus/gnus-mlspl.el |
| 10969 | 10993 | ||
| 10970 | (autoload (quote gnus-group-split-setup) "gnus-mlspl" "\ | 10994 | (autoload (quote gnus-group-split-setup) "gnus-mlspl" "\ |
| @@ -11065,7 +11089,7 @@ Calling (gnus-group-split-fancy nil nil \"mail.others\") returns: | |||
| 11065 | ;;;*** | 11089 | ;;;*** |
| 11066 | 11090 | ||
| 11067 | ;;;### (autoloads (gnus-change-server) "gnus-move" "gnus/gnus-move.el" | 11091 | ;;;### (autoloads (gnus-change-server) "gnus-move" "gnus/gnus-move.el" |
| 11068 | ;;;;;; (17087 12380)) | 11092 | ;;;;;; (17107 37379)) |
| 11069 | ;;; Generated autoloads from gnus/gnus-move.el | 11093 | ;;; Generated autoloads from gnus/gnus-move.el |
| 11070 | 11094 | ||
| 11071 | (autoload (quote gnus-change-server) "gnus-move" "\ | 11095 | (autoload (quote gnus-change-server) "gnus-move" "\ |
| @@ -11077,7 +11101,7 @@ Update the .newsrc.eld file to reflect the change of nntp server. | |||
| 11077 | ;;;*** | 11101 | ;;;*** |
| 11078 | 11102 | ||
| 11079 | ;;;### (autoloads (gnus-button-reply gnus-button-mailto gnus-msg-mail) | 11103 | ;;;### (autoloads (gnus-button-reply gnus-button-mailto gnus-msg-mail) |
| 11080 | ;;;;;; "gnus-msg" "gnus/gnus-msg.el" (17087 12471)) | 11104 | ;;;;;; "gnus-msg" "gnus/gnus-msg.el" (17107 37379)) |
| 11081 | ;;; Generated autoloads from gnus/gnus-msg.el | 11105 | ;;; Generated autoloads from gnus/gnus-msg.el |
| 11082 | 11106 | ||
| 11083 | (autoload (quote gnus-msg-mail) "gnus-msg" "\ | 11107 | (autoload (quote gnus-msg-mail) "gnus-msg" "\ |
| @@ -11103,7 +11127,7 @@ Like `message-reply'. | |||
| 11103 | 11127 | ||
| 11104 | ;;;### (autoloads (gnus-treat-newsgroups-picon gnus-treat-mail-picon | 11128 | ;;;### (autoloads (gnus-treat-newsgroups-picon gnus-treat-mail-picon |
| 11105 | ;;;;;; gnus-treat-from-picon) "gnus-picon" "gnus/gnus-picon.el" | 11129 | ;;;;;; gnus-treat-from-picon) "gnus-picon" "gnus/gnus-picon.el" |
| 11106 | ;;;;;; (17087 12574)) | 11130 | ;;;;;; (17107 37379)) |
| 11107 | ;;; Generated autoloads from gnus/gnus-picon.el | 11131 | ;;; Generated autoloads from gnus/gnus-picon.el |
| 11108 | 11132 | ||
| 11109 | (autoload (quote gnus-treat-from-picon) "gnus-picon" "\ | 11133 | (autoload (quote gnus-treat-from-picon) "gnus-picon" "\ |
| @@ -11130,7 +11154,7 @@ If picons are already displayed, remove them. | |||
| 11130 | ;;;;;; gnus-sorted-nintersection gnus-sorted-range-intersection | 11154 | ;;;;;; gnus-sorted-nintersection gnus-sorted-range-intersection |
| 11131 | ;;;;;; gnus-sorted-intersection gnus-intersection gnus-sorted-complement | 11155 | ;;;;;; gnus-sorted-intersection gnus-intersection gnus-sorted-complement |
| 11132 | ;;;;;; gnus-sorted-ndifference gnus-sorted-difference) "gnus-range" | 11156 | ;;;;;; gnus-sorted-ndifference gnus-sorted-difference) "gnus-range" |
| 11133 | ;;;;;; "gnus/gnus-range.el" (17087 12435)) | 11157 | ;;;;;; "gnus/gnus-range.el" (17107 37379)) |
| 11134 | ;;; Generated autoloads from gnus/gnus-range.el | 11158 | ;;; Generated autoloads from gnus/gnus-range.el |
| 11135 | 11159 | ||
| 11136 | (autoload (quote gnus-sorted-difference) "gnus-range" "\ | 11160 | (autoload (quote gnus-sorted-difference) "gnus-range" "\ |
| @@ -11198,7 +11222,7 @@ Add NUM into sorted LIST by side effect. | |||
| 11198 | ;;;*** | 11222 | ;;;*** |
| 11199 | 11223 | ||
| 11200 | ;;;### (autoloads (gnus-registry-install-hooks gnus-registry-initialize) | 11224 | ;;;### (autoloads (gnus-registry-install-hooks gnus-registry-initialize) |
| 11201 | ;;;;;; "gnus-registry" "gnus/gnus-registry.el" (17087 12471)) | 11225 | ;;;;;; "gnus-registry" "gnus/gnus-registry.el" (17107 37379)) |
| 11202 | ;;; Generated autoloads from gnus/gnus-registry.el | 11226 | ;;; Generated autoloads from gnus/gnus-registry.el |
| 11203 | 11227 | ||
| 11204 | (autoload (quote gnus-registry-initialize) "gnus-registry" "\ | 11228 | (autoload (quote gnus-registry-initialize) "gnus-registry" "\ |
| @@ -11214,8 +11238,8 @@ Install the registry hooks. | |||
| 11214 | ;;;*** | 11238 | ;;;*** |
| 11215 | 11239 | ||
| 11216 | ;;;### (autoloads (gnus-sieve-article-add-rule gnus-sieve-generate | 11240 | ;;;### (autoloads (gnus-sieve-article-add-rule gnus-sieve-generate |
| 11217 | ;;;;;; gnus-sieve-update) "gnus-sieve" "gnus/gnus-sieve.el" (17087 | 11241 | ;;;;;; gnus-sieve-update) "gnus-sieve" "gnus/gnus-sieve.el" (17107 |
| 11218 | ;;;;;; 12570)) | 11242 | ;;;;;; 37379)) |
| 11219 | ;;; Generated autoloads from gnus/gnus-sieve.el | 11243 | ;;; Generated autoloads from gnus/gnus-sieve.el |
| 11220 | 11244 | ||
| 11221 | (autoload (quote gnus-sieve-update) "gnus-sieve" "\ | 11245 | (autoload (quote gnus-sieve-update) "gnus-sieve" "\ |
| @@ -11243,7 +11267,7 @@ Not documented | |||
| 11243 | ;;;*** | 11267 | ;;;*** |
| 11244 | 11268 | ||
| 11245 | ;;;### (autoloads (gnus-batch-brew-soup) "gnus-soup" "gnus/gnus-soup.el" | 11269 | ;;;### (autoloads (gnus-batch-brew-soup) "gnus-soup" "gnus/gnus-soup.el" |
| 11246 | ;;;;;; (17087 12567)) | 11270 | ;;;;;; (17107 37379)) |
| 11247 | ;;; Generated autoloads from gnus/gnus-soup.el | 11271 | ;;; Generated autoloads from gnus/gnus-soup.el |
| 11248 | 11272 | ||
| 11249 | (autoload (quote gnus-batch-brew-soup) "gnus-soup" "\ | 11273 | (autoload (quote gnus-batch-brew-soup) "gnus-soup" "\ |
| @@ -11263,7 +11287,7 @@ Note -- this function hasn't been implemented yet. | |||
| 11263 | ;;;*** | 11287 | ;;;*** |
| 11264 | 11288 | ||
| 11265 | ;;;### (autoloads (gnus-update-format) "gnus-spec" "gnus/gnus-spec.el" | 11289 | ;;;### (autoloads (gnus-update-format) "gnus-spec" "gnus/gnus-spec.el" |
| 11266 | ;;;;;; (17087 12567)) | 11290 | ;;;;;; (17107 37379)) |
| 11267 | ;;; Generated autoloads from gnus/gnus-spec.el | 11291 | ;;; Generated autoloads from gnus/gnus-spec.el |
| 11268 | 11292 | ||
| 11269 | (autoload (quote gnus-update-format) "gnus-spec" "\ | 11293 | (autoload (quote gnus-update-format) "gnus-spec" "\ |
| @@ -11274,8 +11298,8 @@ Update the format specification near point. | |||
| 11274 | ;;;*** | 11298 | ;;;*** |
| 11275 | 11299 | ||
| 11276 | ;;;### (autoloads (gnus-fixup-nnimap-unread-after-getting-new-news | 11300 | ;;;### (autoloads (gnus-fixup-nnimap-unread-after-getting-new-news |
| 11277 | ;;;;;; gnus-declare-backend) "gnus-start" "gnus/gnus-start.el" (17087 | 11301 | ;;;;;; gnus-declare-backend) "gnus-start" "gnus/gnus-start.el" (17107 |
| 11278 | ;;;;;; 12567)) | 11302 | ;;;;;; 37379)) |
| 11279 | ;;; Generated autoloads from gnus/gnus-start.el | 11303 | ;;; Generated autoloads from gnus/gnus-start.el |
| 11280 | 11304 | ||
| 11281 | (autoload (quote gnus-declare-backend) "gnus-start" "\ | 11305 | (autoload (quote gnus-declare-backend) "gnus-start" "\ |
| @@ -11291,7 +11315,7 @@ Not documented | |||
| 11291 | ;;;*** | 11315 | ;;;*** |
| 11292 | 11316 | ||
| 11293 | ;;;### (autoloads (gnus-add-configuration) "gnus-win" "gnus/gnus-win.el" | 11317 | ;;;### (autoloads (gnus-add-configuration) "gnus-win" "gnus/gnus-win.el" |
| 11294 | ;;;;;; (17087 12466)) | 11318 | ;;;;;; (17107 37379)) |
| 11295 | ;;; Generated autoloads from gnus/gnus-win.el | 11319 | ;;; Generated autoloads from gnus/gnus-win.el |
| 11296 | 11320 | ||
| 11297 | (autoload (quote gnus-add-configuration) "gnus-win" "\ | 11321 | (autoload (quote gnus-add-configuration) "gnus-win" "\ |
| @@ -11301,7 +11325,7 @@ Add the window configuration CONF to `gnus-buffer-configuration'. | |||
| 11301 | 11325 | ||
| 11302 | ;;;*** | 11326 | ;;;*** |
| 11303 | 11327 | ||
| 11304 | ;;;### (autoloads (gomoku) "gomoku" "play/gomoku.el" (17087 12570)) | 11328 | ;;;### (autoloads (gomoku) "gomoku" "play/gomoku.el" (17107 37380)) |
| 11305 | ;;; Generated autoloads from play/gomoku.el | 11329 | ;;; Generated autoloads from play/gomoku.el |
| 11306 | 11330 | ||
| 11307 | (autoload (quote gomoku) "gomoku" "\ | 11331 | (autoload (quote gomoku) "gomoku" "\ |
| @@ -11328,7 +11352,7 @@ Use \\[describe-mode] for more info. | |||
| 11328 | ;;;*** | 11352 | ;;;*** |
| 11329 | 11353 | ||
| 11330 | ;;;### (autoloads (goto-address goto-address-at-point) "goto-addr" | 11354 | ;;;### (autoloads (goto-address goto-address-at-point) "goto-addr" |
| 11331 | ;;;;;; "net/goto-addr.el" (17087 12554)) | 11355 | ;;;;;; "net/goto-addr.el" (17107 37379)) |
| 11332 | ;;; Generated autoloads from net/goto-addr.el | 11356 | ;;; Generated autoloads from net/goto-addr.el |
| 11333 | 11357 | ||
| 11334 | (define-obsolete-function-alias (quote goto-address-at-mouse) (quote goto-address-at-point) "22.1") | 11358 | (define-obsolete-function-alias (quote goto-address-at-mouse) (quote goto-address-at-point) "22.1") |
| @@ -11356,7 +11380,7 @@ Also fontifies the buffer appropriately (see `goto-address-fontify-p' and | |||
| 11356 | 11380 | ||
| 11357 | ;;;### (autoloads (grep-tree grep-find grep grep-compute-defaults | 11381 | ;;;### (autoloads (grep-tree grep-find grep grep-compute-defaults |
| 11358 | ;;;;;; grep-process-setup grep-setup-hook grep-find-command grep-command | 11382 | ;;;;;; grep-process-setup grep-setup-hook grep-find-command grep-command |
| 11359 | ;;;;;; grep-window-height) "grep" "progmodes/grep.el" (17087 12575)) | 11383 | ;;;;;; grep-window-height) "grep" "progmodes/grep.el" (17107 37381)) |
| 11360 | ;;; Generated autoloads from progmodes/grep.el | 11384 | ;;; Generated autoloads from progmodes/grep.el |
| 11361 | 11385 | ||
| 11362 | (defvar grep-window-height nil "\ | 11386 | (defvar grep-window-height nil "\ |
| @@ -11475,7 +11499,7 @@ those sub directories of DIR. | |||
| 11475 | 11499 | ||
| 11476 | ;;;*** | 11500 | ;;;*** |
| 11477 | 11501 | ||
| 11478 | ;;;### (autoloads (gs-load-image) "gs" "gs.el" (17087 12380)) | 11502 | ;;;### (autoloads (gs-load-image) "gs" "gs.el" (17107 37380)) |
| 11479 | ;;; Generated autoloads from gs.el | 11503 | ;;; Generated autoloads from gs.el |
| 11480 | 11504 | ||
| 11481 | (autoload (quote gs-load-image) "gs" "\ | 11505 | (autoload (quote gs-load-image) "gs" "\ |
| @@ -11489,7 +11513,7 @@ the form \"WINDOW-ID PIXMAP-ID\". Value is non-nil if successful. | |||
| 11489 | ;;;*** | 11513 | ;;;*** |
| 11490 | 11514 | ||
| 11491 | ;;;### (autoloads (gdb-script-mode bashdb jdb pdb perldb xdb dbx | 11515 | ;;;### (autoloads (gdb-script-mode bashdb jdb pdb perldb xdb dbx |
| 11492 | ;;;;;; sdb gdb) "gud" "progmodes/gud.el" (17087 12589)) | 11516 | ;;;;;; sdb gdb) "gud" "progmodes/gud.el" (17107 37398)) |
| 11493 | ;;; Generated autoloads from progmodes/gud.el | 11517 | ;;; Generated autoloads from progmodes/gud.el |
| 11494 | 11518 | ||
| 11495 | (autoload (quote gdb) "gud" "\ | 11519 | (autoload (quote gdb) "gud" "\ |
| @@ -11570,8 +11594,8 @@ Major mode for editing GDB scripts | |||
| 11570 | 11594 | ||
| 11571 | ;;;*** | 11595 | ;;;*** |
| 11572 | 11596 | ||
| 11573 | ;;;### (autoloads (handwrite) "handwrite" "play/handwrite.el" (17087 | 11597 | ;;;### (autoloads (handwrite) "handwrite" "play/handwrite.el" (17107 |
| 11574 | ;;;;;; 12558)) | 11598 | ;;;;;; 37380)) |
| 11575 | ;;; Generated autoloads from play/handwrite.el | 11599 | ;;; Generated autoloads from play/handwrite.el |
| 11576 | 11600 | ||
| 11577 | (autoload (quote handwrite) "handwrite" "\ | 11601 | (autoload (quote handwrite) "handwrite" "\ |
| @@ -11589,7 +11613,7 @@ Variables: handwrite-linespace (default 12) | |||
| 11589 | ;;;*** | 11613 | ;;;*** |
| 11590 | 11614 | ||
| 11591 | ;;;### (autoloads (hanoi-unix-64 hanoi-unix hanoi) "hanoi" "play/hanoi.el" | 11615 | ;;;### (autoloads (hanoi-unix-64 hanoi-unix hanoi) "hanoi" "play/hanoi.el" |
| 11592 | ;;;;;; (17087 12380)) | 11616 | ;;;;;; (17107 37380)) |
| 11593 | ;;; Generated autoloads from play/hanoi.el | 11617 | ;;; Generated autoloads from play/hanoi.el |
| 11594 | 11618 | ||
| 11595 | (autoload (quote hanoi) "hanoi" "\ | 11619 | (autoload (quote hanoi) "hanoi" "\ |
| @@ -11619,7 +11643,7 @@ to be updated. | |||
| 11619 | ;;;### (autoloads (scan-buf-previous-region scan-buf-next-region | 11643 | ;;;### (autoloads (scan-buf-previous-region scan-buf-next-region |
| 11620 | ;;;;;; scan-buf-move-to-region help-at-pt-display-when-idle help-at-pt-set-timer | 11644 | ;;;;;; scan-buf-move-to-region help-at-pt-display-when-idle help-at-pt-set-timer |
| 11621 | ;;;;;; help-at-pt-cancel-timer display-local-help help-at-pt-kbd-string | 11645 | ;;;;;; help-at-pt-cancel-timer display-local-help help-at-pt-kbd-string |
| 11622 | ;;;;;; help-at-pt-string) "help-at-pt" "help-at-pt.el" (17087 12466)) | 11646 | ;;;;;; help-at-pt-string) "help-at-pt" "help-at-pt.el" (17107 37380)) |
| 11623 | ;;; Generated autoloads from help-at-pt.el | 11647 | ;;; Generated autoloads from help-at-pt.el |
| 11624 | 11648 | ||
| 11625 | (autoload (quote help-at-pt-string) "help-at-pt" "\ | 11649 | (autoload (quote help-at-pt-string) "help-at-pt" "\ |
| @@ -11749,7 +11773,7 @@ different regions. With numeric argument ARG, behaves like | |||
| 11749 | ;;;### (autoloads (describe-categories describe-syntax describe-variable | 11773 | ;;;### (autoloads (describe-categories describe-syntax describe-variable |
| 11750 | ;;;;;; variable-at-point describe-function-1 help-C-file-name describe-function | 11774 | ;;;;;; variable-at-point describe-function-1 help-C-file-name describe-function |
| 11751 | ;;;;;; locate-library help-with-tutorial) "help-fns" "help-fns.el" | 11775 | ;;;;;; locate-library help-with-tutorial) "help-fns" "help-fns.el" |
| 11752 | ;;;;;; (17087 12567)) | 11776 | ;;;;;; (17107 37380)) |
| 11753 | ;;; Generated autoloads from help-fns.el | 11777 | ;;; Generated autoloads from help-fns.el |
| 11754 | 11778 | ||
| 11755 | (autoload (quote help-with-tutorial) "help-fns" "\ | 11779 | (autoload (quote help-with-tutorial) "help-fns" "\ |
| @@ -11829,7 +11853,7 @@ BUFFER should be a buffer or a buffer name. | |||
| 11829 | ;;;*** | 11853 | ;;;*** |
| 11830 | 11854 | ||
| 11831 | ;;;### (autoloads (three-step-help) "help-macro" "help-macro.el" | 11855 | ;;;### (autoloads (three-step-help) "help-macro" "help-macro.el" |
| 11832 | ;;;;;; (17087 12453)) | 11856 | ;;;;;; (17107 37381)) |
| 11833 | ;;; Generated autoloads from help-macro.el | 11857 | ;;; Generated autoloads from help-macro.el |
| 11834 | 11858 | ||
| 11835 | (defvar three-step-help nil "\ | 11859 | (defvar three-step-help nil "\ |
| @@ -11845,7 +11869,7 @@ A value of nil means skip the middle step, so that | |||
| 11845 | 11869 | ||
| 11846 | ;;;### (autoloads (help-xref-on-pp help-insert-xref-button help-xref-button | 11870 | ;;;### (autoloads (help-xref-on-pp help-insert-xref-button help-xref-button |
| 11847 | ;;;;;; help-make-xrefs help-setup-xref help-mode-finish help-mode-setup | 11871 | ;;;;;; help-make-xrefs help-setup-xref help-mode-finish help-mode-setup |
| 11848 | ;;;;;; help-mode) "help-mode" "help-mode.el" (17087 12582)) | 11872 | ;;;;;; help-mode) "help-mode" "help-mode.el" (17107 37380)) |
| 11849 | ;;; Generated autoloads from help-mode.el | 11873 | ;;; Generated autoloads from help-mode.el |
| 11850 | 11874 | ||
| 11851 | (autoload (quote help-mode) "help-mode" "\ | 11875 | (autoload (quote help-mode) "help-mode" "\ |
| @@ -11928,7 +11952,7 @@ Add xrefs for symbols in `pp's output between FROM and TO. | |||
| 11928 | ;;;*** | 11952 | ;;;*** |
| 11929 | 11953 | ||
| 11930 | ;;;### (autoloads (Helper-help Helper-describe-bindings) "helper" | 11954 | ;;;### (autoloads (Helper-help Helper-describe-bindings) "helper" |
| 11931 | ;;;;;; "emacs-lisp/helper.el" (17087 12380)) | 11955 | ;;;;;; "emacs-lisp/helper.el" (17107 37381)) |
| 11932 | ;;; Generated autoloads from emacs-lisp/helper.el | 11956 | ;;; Generated autoloads from emacs-lisp/helper.el |
| 11933 | 11957 | ||
| 11934 | (autoload (quote Helper-describe-bindings) "helper" "\ | 11958 | (autoload (quote Helper-describe-bindings) "helper" "\ |
| @@ -11944,7 +11968,7 @@ Provide help for current mode. | |||
| 11944 | ;;;*** | 11968 | ;;;*** |
| 11945 | 11969 | ||
| 11946 | ;;;### (autoloads (hexlify-buffer hexl-find-file hexl-mode) "hexl" | 11970 | ;;;### (autoloads (hexlify-buffer hexl-find-file hexl-mode) "hexl" |
| 11947 | ;;;;;; "hexl.el" (17087 12570)) | 11971 | ;;;;;; "hexl.el" (17107 37381)) |
| 11948 | ;;; Generated autoloads from hexl.el | 11972 | ;;; Generated autoloads from hexl.el |
| 11949 | 11973 | ||
| 11950 | (autoload (quote hexl-mode) "hexl" "\ | 11974 | (autoload (quote hexl-mode) "hexl" "\ |
| @@ -12039,8 +12063,8 @@ This discards the buffer's undo information. | |||
| 12039 | 12063 | ||
| 12040 | ;;;### (autoloads (hi-lock-write-interactive-patterns hi-lock-unface-buffer | 12064 | ;;;### (autoloads (hi-lock-write-interactive-patterns hi-lock-unface-buffer |
| 12041 | ;;;;;; hi-lock-face-phrase-buffer hi-lock-face-buffer hi-lock-line-face-buffer | 12065 | ;;;;;; hi-lock-face-phrase-buffer hi-lock-face-buffer hi-lock-line-face-buffer |
| 12042 | ;;;;;; hi-lock-mode hi-lock-mode) "hi-lock" "hi-lock.el" (17087 | 12066 | ;;;;;; hi-lock-mode hi-lock-mode) "hi-lock" "hi-lock.el" (17107 |
| 12043 | ;;;;;; 12531)) | 12067 | ;;;;;; 37398)) |
| 12044 | ;;; Generated autoloads from hi-lock.el | 12068 | ;;; Generated autoloads from hi-lock.el |
| 12045 | 12069 | ||
| 12046 | (defvar hi-lock-mode nil "\ | 12070 | (defvar hi-lock-mode nil "\ |
| @@ -12151,7 +12175,7 @@ be found in variable `hi-lock-interactive-patterns'. | |||
| 12151 | ;;;*** | 12175 | ;;;*** |
| 12152 | 12176 | ||
| 12153 | ;;;### (autoloads (hide-ifdef-lines hide-ifdef-read-only hide-ifdef-initially | 12177 | ;;;### (autoloads (hide-ifdef-lines hide-ifdef-read-only hide-ifdef-initially |
| 12154 | ;;;;;; hide-ifdef-mode) "hideif" "progmodes/hideif.el" (17087 12528)) | 12178 | ;;;;;; hide-ifdef-mode) "hideif" "progmodes/hideif.el" (17107 37398)) |
| 12155 | ;;; Generated autoloads from progmodes/hideif.el | 12179 | ;;; Generated autoloads from progmodes/hideif.el |
| 12156 | 12180 | ||
| 12157 | (autoload (quote hide-ifdef-mode) "hideif" "\ | 12181 | (autoload (quote hide-ifdef-mode) "hideif" "\ |
| @@ -12206,7 +12230,7 @@ how the hiding is done: | |||
| 12206 | ;;;*** | 12230 | ;;;*** |
| 12207 | 12231 | ||
| 12208 | ;;;### (autoloads (hs-minor-mode hs-hide-comments-when-hiding-all) | 12232 | ;;;### (autoloads (hs-minor-mode hs-hide-comments-when-hiding-all) |
| 12209 | ;;;;;; "hideshow" "progmodes/hideshow.el" (17087 12453)) | 12233 | ;;;;;; "hideshow" "progmodes/hideshow.el" (17107 37381)) |
| 12210 | ;;; Generated autoloads from progmodes/hideshow.el | 12234 | ;;; Generated autoloads from progmodes/hideshow.el |
| 12211 | 12235 | ||
| 12212 | (defvar hs-hide-comments-when-hiding-all t "\ | 12236 | (defvar hs-hide-comments-when-hiding-all t "\ |
| @@ -12269,7 +12293,7 @@ Key bindings: | |||
| 12269 | ;;;;;; highlight-compare-buffers highlight-changes-rotate-faces | 12293 | ;;;;;; highlight-compare-buffers highlight-changes-rotate-faces |
| 12270 | ;;;;;; highlight-changes-previous-change highlight-changes-next-change | 12294 | ;;;;;; highlight-changes-previous-change highlight-changes-next-change |
| 12271 | ;;;;;; highlight-changes-mode highlight-changes-remove-highlight) | 12295 | ;;;;;; highlight-changes-mode highlight-changes-remove-highlight) |
| 12272 | ;;;;;; "hilit-chg" "hilit-chg.el" (17087 12570)) | 12296 | ;;;;;; "hilit-chg" "hilit-chg.el" (17107 37380)) |
| 12273 | ;;; Generated autoloads from hilit-chg.el | 12297 | ;;; Generated autoloads from hilit-chg.el |
| 12274 | 12298 | ||
| 12275 | (autoload (quote highlight-changes-remove-highlight) "hilit-chg" "\ | 12299 | (autoload (quote highlight-changes-remove-highlight) "hilit-chg" "\ |
| @@ -12399,7 +12423,7 @@ variable `highlight-changes-global-changes-existing-buffers' is non-nil). | |||
| 12399 | ;;;;;; hippie-expand-ignore-buffers hippie-expand-max-buffers hippie-expand-no-restriction | 12423 | ;;;;;; hippie-expand-ignore-buffers hippie-expand-max-buffers hippie-expand-no-restriction |
| 12400 | ;;;;;; hippie-expand-dabbrev-as-symbol hippie-expand-dabbrev-skip-space | 12424 | ;;;;;; hippie-expand-dabbrev-as-symbol hippie-expand-dabbrev-skip-space |
| 12401 | ;;;;;; hippie-expand-verbose hippie-expand-try-functions-list) "hippie-exp" | 12425 | ;;;;;; hippie-expand-verbose hippie-expand-try-functions-list) "hippie-exp" |
| 12402 | ;;;;;; "hippie-exp.el" (17087 12542)) | 12426 | ;;;;;; "hippie-exp.el" (17107 37380)) |
| 12403 | ;;; Generated autoloads from hippie-exp.el | 12427 | ;;; Generated autoloads from hippie-exp.el |
| 12404 | 12428 | ||
| 12405 | (defvar hippie-expand-try-functions-list (quote (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)) "\ | 12429 | (defvar hippie-expand-try-functions-list (quote (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)) "\ |
| @@ -12472,7 +12496,7 @@ argument VERBOSE non-nil makes the function verbose. | |||
| 12472 | ;;;*** | 12496 | ;;;*** |
| 12473 | 12497 | ||
| 12474 | ;;;### (autoloads (global-hl-line-mode hl-line-mode) "hl-line" "hl-line.el" | 12498 | ;;;### (autoloads (global-hl-line-mode hl-line-mode) "hl-line" "hl-line.el" |
| 12475 | ;;;;;; (17087 12528)) | 12499 | ;;;;;; (17107 37381)) |
| 12476 | ;;; Generated autoloads from hl-line.el | 12500 | ;;; Generated autoloads from hl-line.el |
| 12477 | 12501 | ||
| 12478 | (autoload (quote hl-line-mode) "hl-line" "\ | 12502 | (autoload (quote hl-line-mode) "hl-line" "\ |
| @@ -12500,6 +12524,8 @@ use either \\[customize] or the function `global-hl-line-mode'.") | |||
| 12500 | 12524 | ||
| 12501 | (custom-autoload (quote global-hl-line-mode) "hl-line") | 12525 | (custom-autoload (quote global-hl-line-mode) "hl-line") |
| 12502 | 12526 | ||
| 12527 | (put (quote global-hl-line-mode) (quote custom-set) (quote custom-set-minor-mode)) | ||
| 12528 | |||
| 12503 | (autoload (quote global-hl-line-mode) "hl-line" "\ | 12529 | (autoload (quote global-hl-line-mode) "hl-line" "\ |
| 12504 | Global minor mode to highlight the line about point in the current window. | 12530 | Global minor mode to highlight the line about point in the current window. |
| 12505 | With ARG, turn Global-Hl-Line mode on if ARG is positive, off otherwise. | 12531 | With ARG, turn Global-Hl-Line mode on if ARG is positive, off otherwise. |
| @@ -12512,7 +12538,7 @@ Global-Hl-Line mode uses the functions `global-hl-line-unhighlight' and | |||
| 12512 | ;;;*** | 12538 | ;;;*** |
| 12513 | 12539 | ||
| 12514 | ;;;### (autoloads (list-holidays holidays) "holidays" "calendar/holidays.el" | 12540 | ;;;### (autoloads (list-holidays holidays) "holidays" "calendar/holidays.el" |
| 12515 | ;;;;;; (17087 12528)) | 12541 | ;;;;;; (17107 37380)) |
| 12516 | ;;; Generated autoloads from calendar/holidays.el | 12542 | ;;; Generated autoloads from calendar/holidays.el |
| 12517 | 12543 | ||
| 12518 | (autoload (quote holidays) "holidays" "\ | 12544 | (autoload (quote holidays) "holidays" "\ |
| @@ -12536,7 +12562,7 @@ The optional LABEL is used to label the buffer created. | |||
| 12536 | ;;;*** | 12562 | ;;;*** |
| 12537 | 12563 | ||
| 12538 | ;;;### (autoloads (hscroll-global-mode hscroll-mode turn-on-hscroll) | 12564 | ;;;### (autoloads (hscroll-global-mode hscroll-mode turn-on-hscroll) |
| 12539 | ;;;;;; "hscroll" "obsolete/hscroll.el" (17087 12380)) | 12565 | ;;;;;; "hscroll" "obsolete/hscroll.el" (17107 37382)) |
| 12540 | ;;; Generated autoloads from obsolete/hscroll.el | 12566 | ;;; Generated autoloads from obsolete/hscroll.el |
| 12541 | 12567 | ||
| 12542 | (autoload (quote turn-on-hscroll) "hscroll" "\ | 12568 | (autoload (quote turn-on-hscroll) "hscroll" "\ |
| @@ -12562,8 +12588,8 @@ Also see `automatic-hscrolling'. | |||
| 12562 | 12588 | ||
| 12563 | ;;;*** | 12589 | ;;;*** |
| 12564 | 12590 | ||
| 12565 | ;;;### (autoloads (html2text) "html2text" "gnus/html2text.el" (17087 | 12591 | ;;;### (autoloads (html2text) "html2text" "gnus/html2text.el" (17107 |
| 12566 | ;;;;;; 12567)) | 12592 | ;;;;;; 37379)) |
| 12567 | ;;; Generated autoloads from gnus/html2text.el | 12593 | ;;; Generated autoloads from gnus/html2text.el |
| 12568 | 12594 | ||
| 12569 | (autoload (quote html2text) "html2text" "\ | 12595 | (autoload (quote html2text) "html2text" "\ |
| @@ -12594,7 +12620,7 @@ Convert HTML to plain text in the current buffer. | |||
| 12594 | ;;;;;; ibuffer-backward-filter-group ibuffer-forward-filter-group | 12620 | ;;;;;; ibuffer-backward-filter-group ibuffer-forward-filter-group |
| 12595 | ;;;;;; ibuffer-toggle-filter-group ibuffer-mouse-toggle-filter-group | 12621 | ;;;;;; ibuffer-toggle-filter-group ibuffer-mouse-toggle-filter-group |
| 12596 | ;;;;;; ibuffer-interactive-filter-by-mode ibuffer-mouse-filter-by-mode | 12622 | ;;;;;; ibuffer-interactive-filter-by-mode ibuffer-mouse-filter-by-mode |
| 12597 | ;;;;;; ibuffer-auto-mode) "ibuf-ext" "ibuf-ext.el" (17087 12562)) | 12623 | ;;;;;; ibuffer-auto-mode) "ibuf-ext" "ibuf-ext.el" (17107 37380)) |
| 12598 | ;;; Generated autoloads from ibuf-ext.el | 12624 | ;;; Generated autoloads from ibuf-ext.el |
| 12599 | 12625 | ||
| 12600 | (autoload (quote ibuffer-auto-mode) "ibuf-ext" "\ | 12626 | (autoload (quote ibuffer-auto-mode) "ibuf-ext" "\ |
| @@ -12955,8 +12981,8 @@ defaults to one. | |||
| 12955 | ;;;*** | 12981 | ;;;*** |
| 12956 | 12982 | ||
| 12957 | ;;;### (autoloads (define-ibuffer-filter define-ibuffer-op define-ibuffer-sorter | 12983 | ;;;### (autoloads (define-ibuffer-filter define-ibuffer-op define-ibuffer-sorter |
| 12958 | ;;;;;; define-ibuffer-column) "ibuf-macs" "ibuf-macs.el" (17087 | 12984 | ;;;;;; define-ibuffer-column) "ibuf-macs" "ibuf-macs.el" (17107 |
| 12959 | ;;;;;; 12380)) | 12985 | ;;;;;; 37380)) |
| 12960 | ;;; Generated autoloads from ibuf-macs.el | 12986 | ;;; Generated autoloads from ibuf-macs.el |
| 12961 | 12987 | ||
| 12962 | (autoload (quote define-ibuffer-column) "ibuf-macs" "\ | 12988 | (autoload (quote define-ibuffer-column) "ibuf-macs" "\ |
| @@ -13042,7 +13068,7 @@ bound to the current value of the filter. | |||
| 13042 | ;;;*** | 13068 | ;;;*** |
| 13043 | 13069 | ||
| 13044 | ;;;### (autoloads (ibuffer ibuffer-other-window ibuffer-list-buffers) | 13070 | ;;;### (autoloads (ibuffer ibuffer-other-window ibuffer-list-buffers) |
| 13045 | ;;;;;; "ibuffer" "ibuffer.el" (17087 12566)) | 13071 | ;;;;;; "ibuffer" "ibuffer.el" (17107 37382)) |
| 13046 | ;;; Generated autoloads from ibuffer.el | 13072 | ;;; Generated autoloads from ibuffer.el |
| 13047 | 13073 | ||
| 13048 | (autoload (quote ibuffer-list-buffers) "ibuffer" "\ | 13074 | (autoload (quote ibuffer-list-buffers) "ibuffer" "\ |
| @@ -13083,7 +13109,7 @@ locally in this buffer. | |||
| 13083 | 13109 | ||
| 13084 | ;;;### (autoloads (icalendar-import-buffer icalendar-import-file | 13110 | ;;;### (autoloads (icalendar-import-buffer icalendar-import-file |
| 13085 | ;;;;;; icalendar-export-region icalendar-export-file) "icalendar" | 13111 | ;;;;;; icalendar-export-region icalendar-export-file) "icalendar" |
| 13086 | ;;;;;; "calendar/icalendar.el" (17087 12567)) | 13112 | ;;;;;; "calendar/icalendar.el" (17107 37380)) |
| 13087 | ;;; Generated autoloads from calendar/icalendar.el | 13113 | ;;; Generated autoloads from calendar/icalendar.el |
| 13088 | 13114 | ||
| 13089 | (autoload (quote icalendar-export-file) "icalendar" "\ | 13115 | (autoload (quote icalendar-export-file) "icalendar" "\ |
| @@ -13135,8 +13161,8 @@ buffer `*icalendar-errors*'. | |||
| 13135 | 13161 | ||
| 13136 | ;;;*** | 13162 | ;;;*** |
| 13137 | 13163 | ||
| 13138 | ;;;### (autoloads (icomplete-mode) "icomplete" "icomplete.el" (17087 | 13164 | ;;;### (autoloads (icomplete-mode) "icomplete" "icomplete.el" (17107 |
| 13139 | ;;;;;; 12524)) | 13165 | ;;;;;; 37380)) |
| 13140 | ;;; Generated autoloads from icomplete.el | 13166 | ;;; Generated autoloads from icomplete.el |
| 13141 | 13167 | ||
| 13142 | (defvar icomplete-mode nil "\ | 13168 | (defvar icomplete-mode nil "\ |
| @@ -13147,6 +13173,8 @@ use either \\[customize] or the function `icomplete-mode'.") | |||
| 13147 | 13173 | ||
| 13148 | (custom-autoload (quote icomplete-mode) "icomplete") | 13174 | (custom-autoload (quote icomplete-mode) "icomplete") |
| 13149 | 13175 | ||
| 13176 | (put (quote icomplete-mode) (quote custom-set) (quote custom-set-minor-mode)) | ||
| 13177 | |||
| 13150 | (autoload (quote icomplete-mode) "icomplete" "\ | 13178 | (autoload (quote icomplete-mode) "icomplete" "\ |
| 13151 | Toggle incremental minibuffer completion for this Emacs session. | 13179 | Toggle incremental minibuffer completion for this Emacs session. |
| 13152 | With a numeric argument, turn Icomplete mode on iff ARG is positive. | 13180 | With a numeric argument, turn Icomplete mode on iff ARG is positive. |
| @@ -13155,7 +13183,7 @@ With a numeric argument, turn Icomplete mode on iff ARG is positive. | |||
| 13155 | 13183 | ||
| 13156 | ;;;*** | 13184 | ;;;*** |
| 13157 | 13185 | ||
| 13158 | ;;;### (autoloads (icon-mode) "icon" "progmodes/icon.el" (17087 12566)) | 13186 | ;;;### (autoloads (icon-mode) "icon" "progmodes/icon.el" (17107 37381)) |
| 13159 | ;;; Generated autoloads from progmodes/icon.el | 13187 | ;;; Generated autoloads from progmodes/icon.el |
| 13160 | 13188 | ||
| 13161 | (autoload (quote icon-mode) "icon" "\ | 13189 | (autoload (quote icon-mode) "icon" "\ |
| @@ -13196,7 +13224,7 @@ with no args, if that value is non-nil. | |||
| 13196 | ;;;*** | 13224 | ;;;*** |
| 13197 | 13225 | ||
| 13198 | ;;;### (autoloads (idlwave-shell) "idlw-shell" "progmodes/idlw-shell.el" | 13226 | ;;;### (autoloads (idlwave-shell) "idlw-shell" "progmodes/idlw-shell.el" |
| 13199 | ;;;;;; (17087 12570)) | 13227 | ;;;;;; (17107 37381)) |
| 13200 | ;;; Generated autoloads from progmodes/idlw-shell.el | 13228 | ;;; Generated autoloads from progmodes/idlw-shell.el |
| 13201 | 13229 | ||
| 13202 | (autoload (quote idlwave-shell) "idlw-shell" "\ | 13230 | (autoload (quote idlwave-shell) "idlw-shell" "\ |
| @@ -13222,11 +13250,11 @@ See also the variable `idlwave-shell-prompt-pattern'. | |||
| 13222 | ;;;*** | 13250 | ;;;*** |
| 13223 | 13251 | ||
| 13224 | ;;;### (autoloads (idlwave-mode) "idlwave" "progmodes/idlwave.el" | 13252 | ;;;### (autoloads (idlwave-mode) "idlwave" "progmodes/idlwave.el" |
| 13225 | ;;;;;; (17087 12575)) | 13253 | ;;;;;; (17107 37382)) |
| 13226 | ;;; Generated autoloads from progmodes/idlwave.el | 13254 | ;;; Generated autoloads from progmodes/idlwave.el |
| 13227 | 13255 | ||
| 13228 | (autoload (quote idlwave-mode) "idlwave" "\ | 13256 | (autoload (quote idlwave-mode) "idlwave" "\ |
| 13229 | Major mode for editing IDL source files (version 5.5). | 13257 | Major mode for editing IDL source files (version 5.7_22). |
| 13230 | 13258 | ||
| 13231 | The main features of this mode are | 13259 | The main features of this mode are |
| 13232 | 13260 | ||
| @@ -13358,8 +13386,8 @@ The main features of this mode are | |||
| 13358 | ;;;;;; ido-find-alternate-file ido-find-file-other-window ido-find-file | 13386 | ;;;;;; ido-find-alternate-file ido-find-file-other-window ido-find-file |
| 13359 | ;;;;;; ido-find-file-in-dir ido-switch-buffer-other-frame ido-insert-buffer | 13387 | ;;;;;; ido-find-file-in-dir ido-switch-buffer-other-frame ido-insert-buffer |
| 13360 | ;;;;;; ido-kill-buffer ido-display-buffer ido-switch-buffer-other-window | 13388 | ;;;;;; ido-kill-buffer ido-display-buffer ido-switch-buffer-other-window |
| 13361 | ;;;;;; ido-switch-buffer ido-mode ido-mode) "ido" "ido.el" (17087 | 13389 | ;;;;;; ido-switch-buffer ido-mode ido-mode) "ido" "ido.el" (17107 |
| 13362 | ;;;;;; 12574)) | 13390 | ;;;;;; 37380)) |
| 13363 | ;;; Generated autoloads from ido.el | 13391 | ;;; Generated autoloads from ido.el |
| 13364 | 13392 | ||
| 13365 | (defvar ido-mode nil "\ | 13393 | (defvar ido-mode nil "\ |
| @@ -13620,7 +13648,7 @@ DEF, if non-nil, is the default value. | |||
| 13620 | 13648 | ||
| 13621 | ;;;*** | 13649 | ;;;*** |
| 13622 | 13650 | ||
| 13623 | ;;;### (autoloads (ielm) "ielm" "ielm.el" (17087 12570)) | 13651 | ;;;### (autoloads (ielm) "ielm" "ielm.el" (17107 37382)) |
| 13624 | ;;; Generated autoloads from ielm.el | 13652 | ;;; Generated autoloads from ielm.el |
| 13625 | (add-hook 'same-window-buffer-names "*ielm*") | 13653 | (add-hook 'same-window-buffer-names "*ielm*") |
| 13626 | 13654 | ||
| @@ -13633,7 +13661,7 @@ Switches to the buffer `*ielm*', or creates it if it does not exist. | |||
| 13633 | ;;;*** | 13661 | ;;;*** |
| 13634 | 13662 | ||
| 13635 | ;;;### (autoloads (iimage-mode turn-on-iimage-mode) "iimage" "iimage.el" | 13663 | ;;;### (autoloads (iimage-mode turn-on-iimage-mode) "iimage" "iimage.el" |
| 13636 | ;;;;;; (17087 12528)) | 13664 | ;;;;;; (17107 37382)) |
| 13637 | ;;; Generated autoloads from iimage.el | 13665 | ;;; Generated autoloads from iimage.el |
| 13638 | 13666 | ||
| 13639 | (autoload (quote turn-on-iimage-mode) "iimage" "\ | 13667 | (autoload (quote turn-on-iimage-mode) "iimage" "\ |
| @@ -13651,7 +13679,7 @@ Toggle inline image minor mode. | |||
| 13651 | ;;;### (autoloads (defimage find-image remove-images insert-sliced-image | 13679 | ;;;### (autoloads (defimage find-image remove-images insert-sliced-image |
| 13652 | ;;;;;; insert-image put-image create-image image-type-available-p | 13680 | ;;;;;; insert-image put-image create-image image-type-available-p |
| 13653 | ;;;;;; image-type-from-file-header image-type-from-data) "image" | 13681 | ;;;;;; image-type-from-file-header image-type-from-data) "image" |
| 13654 | ;;;;;; "image.el" (17087 12566)) | 13682 | ;;;;;; "image.el" (17107 37380)) |
| 13655 | ;;; Generated autoloads from image.el | 13683 | ;;; Generated autoloads from image.el |
| 13656 | 13684 | ||
| 13657 | (autoload (quote image-type-from-data) "image" "\ | 13685 | (autoload (quote image-type-from-data) "image" "\ |
| @@ -13784,7 +13812,7 @@ Example: | |||
| 13784 | 13812 | ||
| 13785 | ;;;### (autoloads (auto-image-file-mode insert-image-file image-file-name-regexp | 13813 | ;;;### (autoloads (auto-image-file-mode insert-image-file image-file-name-regexp |
| 13786 | ;;;;;; image-file-name-regexps image-file-name-extensions) "image-file" | 13814 | ;;;;;; image-file-name-regexps image-file-name-extensions) "image-file" |
| 13787 | ;;;;;; "image-file.el" (17087 12504)) | 13815 | ;;;;;; "image-file.el" (17107 37382)) |
| 13788 | ;;; Generated autoloads from image-file.el | 13816 | ;;; Generated autoloads from image-file.el |
| 13789 | 13817 | ||
| 13790 | (defvar image-file-name-extensions (quote ("png" "jpeg" "jpg" "gif" "tiff" "tif" "xbm" "xpm" "pbm" "pgm" "ppm" "pnm")) "\ | 13818 | (defvar image-file-name-extensions (quote ("png" "jpeg" "jpg" "gif" "tiff" "tif" "xbm" "xpm" "pbm" "pgm" "ppm" "pnm")) "\ |
| @@ -13831,6 +13859,8 @@ use either \\[customize] or the function `auto-image-file-mode'.") | |||
| 13831 | 13859 | ||
| 13832 | (custom-autoload (quote auto-image-file-mode) "image-file") | 13860 | (custom-autoload (quote auto-image-file-mode) "image-file") |
| 13833 | 13861 | ||
| 13862 | (put (quote auto-image-file-mode) (quote custom-set) (quote custom-set-minor-mode)) | ||
| 13863 | |||
| 13834 | (autoload (quote auto-image-file-mode) "image-file" "\ | 13864 | (autoload (quote auto-image-file-mode) "image-file" "\ |
| 13835 | Toggle visiting of image files as images. | 13865 | Toggle visiting of image files as images. |
| 13836 | With prefix argument ARG, turn on if positive, otherwise off. | 13866 | With prefix argument ARG, turn on if positive, otherwise off. |
| @@ -13845,7 +13875,7 @@ Image files are those whose name has an extension in | |||
| 13845 | ;;;*** | 13875 | ;;;*** |
| 13846 | 13876 | ||
| 13847 | ;;;### (autoloads (image-mode-maybe image-minor-mode image-mode) | 13877 | ;;;### (autoloads (image-mode-maybe image-minor-mode image-mode) |
| 13848 | ;;;;;; "image-mode" "image-mode.el" (17087 12524)) | 13878 | ;;;;;; "image-mode" "image-mode.el" (17107 37382)) |
| 13849 | ;;; Generated autoloads from image-mode.el | 13879 | ;;; Generated autoloads from image-mode.el |
| 13850 | (push '("\\.jpe?g\\'" . image-mode) auto-mode-alist) | 13880 | (push '("\\.jpe?g\\'" . image-mode) auto-mode-alist) |
| 13851 | (push '("\\.png\\'" . image-mode) auto-mode-alist) | 13881 | (push '("\\.png\\'" . image-mode) auto-mode-alist) |
| @@ -13883,7 +13913,7 @@ information on these modes. | |||
| 13883 | ;;;*** | 13913 | ;;;*** |
| 13884 | 13914 | ||
| 13885 | ;;;### (autoloads (imenu imenu-add-menubar-index imenu-add-to-menubar | 13915 | ;;;### (autoloads (imenu imenu-add-menubar-index imenu-add-to-menubar |
| 13886 | ;;;;;; imenu-sort-function) "imenu" "imenu.el" (17087 12566)) | 13916 | ;;;;;; imenu-sort-function) "imenu" "imenu.el" (17107 37381)) |
| 13887 | ;;; Generated autoloads from imenu.el | 13917 | ;;; Generated autoloads from imenu.el |
| 13888 | 13918 | ||
| 13889 | (defvar imenu-sort-function nil "\ | 13919 | (defvar imenu-sort-function nil "\ |
| @@ -14003,7 +14033,7 @@ for more information. | |||
| 14003 | 14033 | ||
| 14004 | ;;;### (autoloads (indian-char-glyph indian-glyph-char in-is13194-pre-write-conversion | 14034 | ;;;### (autoloads (indian-char-glyph indian-glyph-char in-is13194-pre-write-conversion |
| 14005 | ;;;;;; in-is13194-post-read-conversion indian-compose-string indian-compose-region) | 14035 | ;;;;;; in-is13194-post-read-conversion indian-compose-string indian-compose-region) |
| 14006 | ;;;;;; "ind-util" "language/ind-util.el" (17087 12380)) | 14036 | ;;;;;; "ind-util" "language/ind-util.el" (17107 37382)) |
| 14007 | ;;; Generated autoloads from language/ind-util.el | 14037 | ;;; Generated autoloads from language/ind-util.el |
| 14008 | 14038 | ||
| 14009 | (autoload (quote indian-compose-region) "ind-util" "\ | 14039 | (autoload (quote indian-compose-region) "ind-util" "\ |
| @@ -14046,7 +14076,7 @@ See also the function `indian-glyph-char'. | |||
| 14046 | 14076 | ||
| 14047 | ;;;### (autoloads (inferior-lisp inferior-lisp-prompt inferior-lisp-load-command | 14077 | ;;;### (autoloads (inferior-lisp inferior-lisp-prompt inferior-lisp-load-command |
| 14048 | ;;;;;; inferior-lisp-program inferior-lisp-filter-regexp) "inf-lisp" | 14078 | ;;;;;; inferior-lisp-program inferior-lisp-filter-regexp) "inf-lisp" |
| 14049 | ;;;;;; "progmodes/inf-lisp.el" (17087 12575)) | 14079 | ;;;;;; "progmodes/inf-lisp.el" (17107 37381)) |
| 14050 | ;;; Generated autoloads from progmodes/inf-lisp.el | 14080 | ;;; Generated autoloads from progmodes/inf-lisp.el |
| 14051 | 14081 | ||
| 14052 | (defvar inferior-lisp-filter-regexp "\\`\\s *\\(:\\(\\w\\|\\s_\\)\\)?\\s *\\'" "\ | 14082 | (defvar inferior-lisp-filter-regexp "\\`\\s *\\(:\\(\\w\\|\\s_\\)\\)?\\s *\\'" "\ |
| @@ -14113,7 +14143,7 @@ of `inferior-lisp-program'). Runs the hooks from | |||
| 14113 | ;;;### (autoloads (Info-restore-desktop-buffer Info-speedbar-browser | 14143 | ;;;### (autoloads (Info-restore-desktop-buffer Info-speedbar-browser |
| 14114 | ;;;;;; Info-goto-emacs-key-command-node Info-goto-emacs-command-node | 14144 | ;;;;;; Info-goto-emacs-key-command-node Info-goto-emacs-command-node |
| 14115 | ;;;;;; info-apropos Info-index Info-directory info-standalone info-emacs-manual | 14145 | ;;;;;; info-apropos Info-index Info-directory info-standalone info-emacs-manual |
| 14116 | ;;;;;; info info-other-window) "info" "info.el" (17087 12574)) | 14146 | ;;;;;; info info-other-window) "info" "info.el" (17107 37382)) |
| 14117 | ;;; Generated autoloads from info.el | 14147 | ;;; Generated autoloads from info.el |
| 14118 | 14148 | ||
| 14119 | (autoload (quote info-other-window) "info" "\ | 14149 | (autoload (quote info-other-window) "info" "\ |
| @@ -14213,7 +14243,7 @@ Restore an info buffer specified in a desktop file. | |||
| 14213 | 14243 | ||
| 14214 | ;;;### (autoloads (info-complete-file info-complete-symbol info-lookup-file | 14244 | ;;;### (autoloads (info-complete-file info-complete-symbol info-lookup-file |
| 14215 | ;;;;;; info-lookup-symbol info-lookup-reset) "info-look" "info-look.el" | 14245 | ;;;;;; info-lookup-symbol info-lookup-reset) "info-look" "info-look.el" |
| 14216 | ;;;;;; (17087 12453)) | 14246 | ;;;;;; (17107 37382)) |
| 14217 | ;;; Generated autoloads from info-look.el | 14247 | ;;; Generated autoloads from info-look.el |
| 14218 | 14248 | ||
| 14219 | (autoload (quote info-lookup-reset) "info-look" "\ | 14249 | (autoload (quote info-lookup-reset) "info-look" "\ |
| @@ -14261,7 +14291,7 @@ Perform completion on file preceding point. | |||
| 14261 | ;;;*** | 14291 | ;;;*** |
| 14262 | 14292 | ||
| 14263 | ;;;### (autoloads (info-xref-check-all-custom info-xref-check-all | 14293 | ;;;### (autoloads (info-xref-check-all-custom info-xref-check-all |
| 14264 | ;;;;;; info-xref-check) "info-xref" "info-xref.el" (17087 12380)) | 14294 | ;;;;;; info-xref-check) "info-xref" "info-xref.el" (17107 37380)) |
| 14265 | ;;; Generated autoloads from info-xref.el | 14295 | ;;; Generated autoloads from info-xref.el |
| 14266 | 14296 | ||
| 14267 | (autoload (quote info-xref-check) "info-xref" "\ | 14297 | (autoload (quote info-xref-check) "info-xref" "\ |
| @@ -14288,7 +14318,7 @@ quite a while. | |||
| 14288 | ;;;*** | 14318 | ;;;*** |
| 14289 | 14319 | ||
| 14290 | ;;;### (autoloads (batch-info-validate Info-validate Info-split Info-tagify) | 14320 | ;;;### (autoloads (batch-info-validate Info-validate Info-split Info-tagify) |
| 14291 | ;;;;;; "informat" "informat.el" (17087 12380)) | 14321 | ;;;;;; "informat" "informat.el" (17107 37380)) |
| 14292 | ;;; Generated autoloads from informat.el | 14322 | ;;; Generated autoloads from informat.el |
| 14293 | 14323 | ||
| 14294 | (autoload (quote Info-tagify) "informat" "\ | 14324 | (autoload (quote Info-tagify) "informat" "\ |
| @@ -14329,7 +14359,7 @@ For example, invoke \"emacs -batch -f batch-info-validate $info/ ~/*.info\" | |||
| 14329 | 14359 | ||
| 14330 | ;;;### (autoloads (isearch-process-search-multibyte-characters isearch-toggle-input-method | 14360 | ;;;### (autoloads (isearch-process-search-multibyte-characters isearch-toggle-input-method |
| 14331 | ;;;;;; isearch-toggle-specified-input-method) "isearch-x" "international/isearch-x.el" | 14361 | ;;;;;; isearch-toggle-specified-input-method) "isearch-x" "international/isearch-x.el" |
| 14332 | ;;;;;; (17087 12558)) | 14362 | ;;;;;; (17107 37380)) |
| 14333 | ;;; Generated autoloads from international/isearch-x.el | 14363 | ;;; Generated autoloads from international/isearch-x.el |
| 14334 | 14364 | ||
| 14335 | (autoload (quote isearch-toggle-specified-input-method) "isearch-x" "\ | 14365 | (autoload (quote isearch-toggle-specified-input-method) "isearch-x" "\ |
| @@ -14349,8 +14379,8 @@ Not documented | |||
| 14349 | 14379 | ||
| 14350 | ;;;*** | 14380 | ;;;*** |
| 14351 | 14381 | ||
| 14352 | ;;;### (autoloads (isearchb-activate) "isearchb" "isearchb.el" (17087 | 14382 | ;;;### (autoloads (isearchb-activate) "isearchb" "isearchb.el" (17107 |
| 14353 | ;;;;;; 12570)) | 14383 | ;;;;;; 37380)) |
| 14354 | ;;; Generated autoloads from isearchb.el | 14384 | ;;; Generated autoloads from isearchb.el |
| 14355 | 14385 | ||
| 14356 | (autoload (quote isearchb-activate) "isearchb" "\ | 14386 | (autoload (quote isearchb-activate) "isearchb" "\ |
| @@ -14364,7 +14394,7 @@ accessed via isearchb. | |||
| 14364 | ;;;*** | 14394 | ;;;*** |
| 14365 | 14395 | ||
| 14366 | ;;;### (autoloads (iso-accents-mode) "iso-acc" "obsolete/iso-acc.el" | 14396 | ;;;### (autoloads (iso-accents-mode) "iso-acc" "obsolete/iso-acc.el" |
| 14367 | ;;;;;; (17087 12588)) | 14397 | ;;;;;; (17107 37228)) |
| 14368 | ;;; Generated autoloads from obsolete/iso-acc.el | 14398 | ;;; Generated autoloads from obsolete/iso-acc.el |
| 14369 | 14399 | ||
| 14370 | (autoload (quote iso-accents-mode) "iso-acc" "\ | 14400 | (autoload (quote iso-accents-mode) "iso-acc" "\ |
| @@ -14397,7 +14427,7 @@ and a negative argument disables it. | |||
| 14397 | ;;;### (autoloads (iso-cvt-define-menu iso-cvt-write-only iso-cvt-read-only | 14427 | ;;;### (autoloads (iso-cvt-define-menu iso-cvt-write-only iso-cvt-read-only |
| 14398 | ;;;;;; iso-sgml2iso iso-iso2sgml iso-iso2duden iso-iso2gtex iso-gtex2iso | 14428 | ;;;;;; iso-sgml2iso iso-iso2sgml iso-iso2duden iso-iso2gtex iso-gtex2iso |
| 14399 | ;;;;;; iso-tex2iso iso-iso2tex iso-german iso-spanish) "iso-cvt" | 14429 | ;;;;;; iso-tex2iso iso-iso2tex iso-german iso-spanish) "iso-cvt" |
| 14400 | ;;;;;; "international/iso-cvt.el" (17087 12570)) | 14430 | ;;;;;; "international/iso-cvt.el" (17107 37380)) |
| 14401 | ;;; Generated autoloads from international/iso-cvt.el | 14431 | ;;; Generated autoloads from international/iso-cvt.el |
| 14402 | 14432 | ||
| 14403 | (autoload (quote iso-spanish) "iso-cvt" "\ | 14433 | (autoload (quote iso-spanish) "iso-cvt" "\ |
| @@ -14481,10 +14511,10 @@ Add submenus to the File menu, to convert to and from various formats. | |||
| 14481 | ;;;*** | 14511 | ;;;*** |
| 14482 | 14512 | ||
| 14483 | ;;;### (autoloads nil "iso-transl" "international/iso-transl.el" | 14513 | ;;;### (autoloads nil "iso-transl" "international/iso-transl.el" |
| 14484 | ;;;;;; (17087 12588)) | 14514 | ;;;;;; (17107 37228)) |
| 14485 | ;;; Generated autoloads from international/iso-transl.el | 14515 | ;;; Generated autoloads from international/iso-transl.el |
| 14486 | (or global-key-translation-map (setq global-key-translation-map (make-sparse-keymap))) | 14516 | (or key-translation-map (setq key-translation-map (make-sparse-keymap))) |
| 14487 | (define-key global-key-translation-map "\C-x8" 'iso-transl-ctl-x-8-map) | 14517 | (define-key key-translation-map "\C-x8" 'iso-transl-ctl-x-8-map) |
| 14488 | (autoload 'iso-transl-ctl-x-8-map "iso-transl" "Keymap for C-x 8 prefix." t 'keymap) | 14518 | (autoload 'iso-transl-ctl-x-8-map "iso-transl" "Keymap for C-x 8 prefix." t 'keymap) |
| 14489 | 14519 | ||
| 14490 | ;;;*** | 14520 | ;;;*** |
| @@ -14494,7 +14524,7 @@ Add submenus to the File menu, to convert to and from various formats. | |||
| 14494 | ;;;;;; ispell-region ispell-change-dictionary ispell-kill-ispell | 14524 | ;;;;;; ispell-region ispell-change-dictionary ispell-kill-ispell |
| 14495 | ;;;;;; ispell-help ispell-pdict-save ispell-word ispell-local-dictionary-alist | 14525 | ;;;;;; ispell-help ispell-pdict-save ispell-word ispell-local-dictionary-alist |
| 14496 | ;;;;;; ispell-personal-dictionary) "ispell" "textmodes/ispell.el" | 14526 | ;;;;;; ispell-personal-dictionary) "ispell" "textmodes/ispell.el" |
| 14497 | ;;;;;; (17087 12570)) | 14527 | ;;;;;; (17107 37381)) |
| 14498 | ;;; Generated autoloads from textmodes/ispell.el | 14528 | ;;; Generated autoloads from textmodes/ispell.el |
| 14499 | 14529 | ||
| 14500 | (defvar ispell-personal-dictionary nil "\ | 14530 | (defvar ispell-personal-dictionary nil "\ |
| @@ -14782,8 +14812,8 @@ You can bind this to the key C-c i in GNUS or mail by adding to | |||
| 14782 | 14812 | ||
| 14783 | ;;;*** | 14813 | ;;;*** |
| 14784 | 14814 | ||
| 14785 | ;;;### (autoloads (iswitchb-mode) "iswitchb" "iswitchb.el" (17087 | 14815 | ;;;### (autoloads (iswitchb-mode) "iswitchb" "iswitchb.el" (17107 |
| 14786 | ;;;;;; 12570)) | 14816 | ;;;;;; 37381)) |
| 14787 | ;;; Generated autoloads from iswitchb.el | 14817 | ;;; Generated autoloads from iswitchb.el |
| 14788 | 14818 | ||
| 14789 | (defvar iswitchb-mode nil "\ | 14819 | (defvar iswitchb-mode nil "\ |
| @@ -14794,6 +14824,8 @@ use either \\[customize] or the function `iswitchb-mode'.") | |||
| 14794 | 14824 | ||
| 14795 | (custom-autoload (quote iswitchb-mode) "iswitchb") | 14825 | (custom-autoload (quote iswitchb-mode) "iswitchb") |
| 14796 | 14826 | ||
| 14827 | (put (quote iswitchb-mode) (quote custom-set) (quote custom-set-minor-mode)) | ||
| 14828 | |||
| 14797 | (autoload (quote iswitchb-mode) "iswitchb" "\ | 14829 | (autoload (quote iswitchb-mode) "iswitchb" "\ |
| 14798 | Toggle Iswitchb global minor mode. | 14830 | Toggle Iswitchb global minor mode. |
| 14799 | With arg, turn Iswitchb mode on if and only iff ARG is positive. | 14831 | With arg, turn Iswitchb mode on if and only iff ARG is positive. |
| @@ -14807,7 +14839,7 @@ This mode enables switching between buffers using substrings. See | |||
| 14807 | ;;;### (autoloads (read-hiragana-string japanese-zenkaku-region japanese-hankaku-region | 14839 | ;;;### (autoloads (read-hiragana-string japanese-zenkaku-region japanese-hankaku-region |
| 14808 | ;;;;;; japanese-hiragana-region japanese-katakana-region japanese-zenkaku | 14840 | ;;;;;; japanese-hiragana-region japanese-katakana-region japanese-zenkaku |
| 14809 | ;;;;;; japanese-hankaku japanese-hiragana japanese-katakana setup-japanese-environment-internal) | 14841 | ;;;;;; japanese-hankaku japanese-hiragana japanese-katakana setup-japanese-environment-internal) |
| 14810 | ;;;;;; "japan-util" "language/japan-util.el" (17087 12562)) | 14842 | ;;;;;; "japan-util" "language/japan-util.el" (17107 37382)) |
| 14811 | ;;; Generated autoloads from language/japan-util.el | 14843 | ;;; Generated autoloads from language/japan-util.el |
| 14812 | 14844 | ||
| 14813 | (autoload (quote setup-japanese-environment-internal) "japan-util" "\ | 14845 | (autoload (quote setup-japanese-environment-internal) "japan-util" "\ |
| @@ -14884,8 +14916,8 @@ If non-nil, second arg INITIAL-INPUT is a string to insert before reading. | |||
| 14884 | 14916 | ||
| 14885 | ;;;*** | 14917 | ;;;*** |
| 14886 | 14918 | ||
| 14887 | ;;;### (autoloads (jit-lock-register) "jit-lock" "jit-lock.el" (17087 | 14919 | ;;;### (autoloads (jit-lock-register) "jit-lock" "jit-lock.el" (17107 |
| 14888 | ;;;;;; 12567)) | 14920 | ;;;;;; 37383)) |
| 14889 | ;;; Generated autoloads from jit-lock.el | 14921 | ;;; Generated autoloads from jit-lock.el |
| 14890 | 14922 | ||
| 14891 | (autoload (quote jit-lock-register) "jit-lock" "\ | 14923 | (autoload (quote jit-lock-register) "jit-lock" "\ |
| @@ -14899,7 +14931,7 @@ If non-nil, CONTEXTUAL means that a contextual fontification would be useful. | |||
| 14899 | ;;;*** | 14931 | ;;;*** |
| 14900 | 14932 | ||
| 14901 | ;;;### (autoloads (jka-compr-uninstall jka-compr-handler) "jka-compr" | 14933 | ;;;### (autoloads (jka-compr-uninstall jka-compr-handler) "jka-compr" |
| 14902 | ;;;;;; "jka-compr.el" (17087 12589)) | 14934 | ;;;;;; "jka-compr.el" (17107 37380)) |
| 14903 | ;;; Generated autoloads from jka-compr.el | 14935 | ;;; Generated autoloads from jka-compr.el |
| 14904 | 14936 | ||
| 14905 | (defvar jka-compr-inhibit nil "\ | 14937 | (defvar jka-compr-inhibit nil "\ |
| @@ -14924,7 +14956,7 @@ by `jka-compr-installed'. | |||
| 14924 | 14956 | ||
| 14925 | ;;;### (autoloads (keypad-setup keypad-numlock-shifted-setup keypad-shifted-setup | 14957 | ;;;### (autoloads (keypad-setup keypad-numlock-shifted-setup keypad-shifted-setup |
| 14926 | ;;;;;; keypad-numlock-setup keypad-setup) "keypad" "emulation/keypad.el" | 14958 | ;;;;;; keypad-numlock-setup keypad-setup) "keypad" "emulation/keypad.el" |
| 14927 | ;;;;;; (17087 12466)) | 14959 | ;;;;;; (17107 37380)) |
| 14928 | ;;; Generated autoloads from emulation/keypad.el | 14960 | ;;; Generated autoloads from emulation/keypad.el |
| 14929 | 14961 | ||
| 14930 | (defvar keypad-setup nil "\ | 14962 | (defvar keypad-setup nil "\ |
| @@ -14980,7 +15012,7 @@ the decimal key on the keypad is mapped to DECIMAL instead of `.' | |||
| 14980 | ;;;*** | 15012 | ;;;*** |
| 14981 | 15013 | ||
| 14982 | ;;;### (autoloads (kinsoku) "kinsoku" "international/kinsoku.el" | 15014 | ;;;### (autoloads (kinsoku) "kinsoku" "international/kinsoku.el" |
| 14983 | ;;;;;; (17087 12558)) | 15015 | ;;;;;; (17107 37380)) |
| 14984 | ;;; Generated autoloads from international/kinsoku.el | 15016 | ;;; Generated autoloads from international/kinsoku.el |
| 14985 | 15017 | ||
| 14986 | (autoload (quote kinsoku) "kinsoku" "\ | 15018 | (autoload (quote kinsoku) "kinsoku" "\ |
| @@ -15001,8 +15033,8 @@ the context of text formatting. | |||
| 15001 | 15033 | ||
| 15002 | ;;;*** | 15034 | ;;;*** |
| 15003 | 15035 | ||
| 15004 | ;;;### (autoloads (kkc-region) "kkc" "international/kkc.el" (17087 | 15036 | ;;;### (autoloads (kkc-region) "kkc" "international/kkc.el" (17107 |
| 15005 | ;;;;;; 12558)) | 15037 | ;;;;;; 37380)) |
| 15006 | ;;; Generated autoloads from international/kkc.el | 15038 | ;;; Generated autoloads from international/kkc.el |
| 15007 | 15039 | ||
| 15008 | (defvar kkc-after-update-conversion-functions nil "\ | 15040 | (defvar kkc-after-update-conversion-functions nil "\ |
| @@ -15027,7 +15059,7 @@ and the return value is the length of the conversion. | |||
| 15027 | ;;;### (autoloads (kmacro-end-call-mouse kmacro-end-and-call-macro | 15059 | ;;;### (autoloads (kmacro-end-call-mouse kmacro-end-and-call-macro |
| 15028 | ;;;;;; kmacro-end-or-call-macro kmacro-start-macro-or-insert-counter | 15060 | ;;;;;; kmacro-end-or-call-macro kmacro-start-macro-or-insert-counter |
| 15029 | ;;;;;; kmacro-call-macro kmacro-end-macro kmacro-start-macro) "kmacro" | 15061 | ;;;;;; kmacro-call-macro kmacro-end-macro kmacro-start-macro) "kmacro" |
| 15030 | ;;;;;; "kmacro.el" (17087 12570)) | 15062 | ;;;;;; "kmacro.el" (17107 37381)) |
| 15031 | ;;; Generated autoloads from kmacro.el | 15063 | ;;; Generated autoloads from kmacro.el |
| 15032 | (global-set-key "\C-x(" 'kmacro-start-macro) | 15064 | (global-set-key "\C-x(" 'kmacro-start-macro) |
| 15033 | (global-set-key "\C-x)" 'kmacro-end-macro) | 15065 | (global-set-key "\C-x)" 'kmacro-end-macro) |
| @@ -15134,7 +15166,7 @@ If kbd macro currently being defined end it before activating it. | |||
| 15134 | 15166 | ||
| 15135 | ;;;### (autoloads (kannada-post-read-conversion kannada-compose-string | 15167 | ;;;### (autoloads (kannada-post-read-conversion kannada-compose-string |
| 15136 | ;;;;;; kannada-compose-region) "knd-util" "language/knd-util.el" | 15168 | ;;;;;; kannada-compose-region) "knd-util" "language/knd-util.el" |
| 15137 | ;;;;;; (17087 12380)) | 15169 | ;;;;;; (17107 37382)) |
| 15138 | ;;; Generated autoloads from language/knd-util.el | 15170 | ;;; Generated autoloads from language/knd-util.el |
| 15139 | 15171 | ||
| 15140 | (defconst kannada-consonant "[\x51f75-\x51fb9]") | 15172 | (defconst kannada-consonant "[\x51f75-\x51fb9]") |
| @@ -15157,7 +15189,7 @@ Not documented | |||
| 15157 | ;;;*** | 15189 | ;;;*** |
| 15158 | 15190 | ||
| 15159 | ;;;### (autoloads (setup-korean-environment-internal) "korea-util" | 15191 | ;;;### (autoloads (setup-korean-environment-internal) "korea-util" |
| 15160 | ;;;;;; "language/korea-util.el" (17087 12562)) | 15192 | ;;;;;; "language/korea-util.el" (17107 37382)) |
| 15161 | ;;; Generated autoloads from language/korea-util.el | 15193 | ;;; Generated autoloads from language/korea-util.el |
| 15162 | 15194 | ||
| 15163 | (defvar default-korean-keyboard (if (string-match "3" (or (getenv "HANGUL_KEYBOARD_TYPE") "")) "3" "") "\ | 15195 | (defvar default-korean-keyboard (if (string-match "3" (or (getenv "HANGUL_KEYBOARD_TYPE") "")) "3" "") "\ |
| @@ -15172,7 +15204,7 @@ Not documented | |||
| 15172 | ;;;*** | 15204 | ;;;*** |
| 15173 | 15205 | ||
| 15174 | ;;;### (autoloads (lm lm-test-run) "landmark" "play/landmark.el" | 15206 | ;;;### (autoloads (lm lm-test-run) "landmark" "play/landmark.el" |
| 15175 | ;;;;;; (17087 12566)) | 15207 | ;;;;;; (17107 37380)) |
| 15176 | ;;; Generated autoloads from play/landmark.el | 15208 | ;;; Generated autoloads from play/landmark.el |
| 15177 | 15209 | ||
| 15178 | (defalias (quote landmark-repeat) (quote lm-test-run)) | 15210 | (defalias (quote landmark-repeat) (quote lm-test-run)) |
| @@ -15206,8 +15238,8 @@ Use \\[describe-mode] for more info. | |||
| 15206 | 15238 | ||
| 15207 | ;;;### (autoloads (lao-compose-region lao-composition-function lao-post-read-conversion | 15239 | ;;;### (autoloads (lao-compose-region lao-composition-function lao-post-read-conversion |
| 15208 | ;;;;;; lao-transcribe-roman-to-lao-string lao-transcribe-single-roman-syllable-to-lao | 15240 | ;;;;;; lao-transcribe-roman-to-lao-string lao-transcribe-single-roman-syllable-to-lao |
| 15209 | ;;;;;; lao-compose-string) "lao-util" "language/lao-util.el" (17087 | 15241 | ;;;;;; lao-compose-string) "lao-util" "language/lao-util.el" (17107 |
| 15210 | ;;;;;; 12562)) | 15242 | ;;;;;; 37382)) |
| 15211 | ;;; Generated autoloads from language/lao-util.el | 15243 | ;;; Generated autoloads from language/lao-util.el |
| 15212 | 15244 | ||
| 15213 | (autoload (quote lao-compose-string) "lao-util" "\ | 15245 | (autoload (quote lao-compose-string) "lao-util" "\ |
| @@ -15256,7 +15288,7 @@ Not documented | |||
| 15256 | 15288 | ||
| 15257 | ;;;### (autoloads (latexenc-find-file-coding-system latexenc-coding-system-to-inputenc | 15289 | ;;;### (autoloads (latexenc-find-file-coding-system latexenc-coding-system-to-inputenc |
| 15258 | ;;;;;; latexenc-inputenc-to-coding-system latex-inputenc-coding-alist) | 15290 | ;;;;;; latexenc-inputenc-to-coding-system latex-inputenc-coding-alist) |
| 15259 | ;;;;;; "latexenc" "international/latexenc.el" (17087 12570)) | 15291 | ;;;;;; "latexenc" "international/latexenc.el" (17107 37380)) |
| 15260 | ;;; Generated autoloads from international/latexenc.el | 15292 | ;;; Generated autoloads from international/latexenc.el |
| 15261 | 15293 | ||
| 15262 | (defvar latex-inputenc-coding-alist (quote (("ansinew" . windows-1252) ("applemac" . mac-roman) ("ascii" . us-ascii) ("cp1250" . windows-1250) ("cp1252" . windows-1252) ("cp1257" . cp1257) ("cp437de" . cp437) ("cp437" . cp437) ("cp850" . cp850) ("cp852" . cp852) ("cp865" . cp865) ("latin1" . iso-8859-1) ("latin2" . iso-8859-2) ("latin3" . iso-8859-3) ("latin4" . iso-8859-4) ("latin5" . iso-8859-5) ("latin9" . iso-8859-15) ("next" . next) ("utf8" . utf-8) ("utf8x" . utf-8))) "\ | 15294 | (defvar latex-inputenc-coding-alist (quote (("ansinew" . windows-1252) ("applemac" . mac-roman) ("ascii" . us-ascii) ("cp1250" . windows-1250) ("cp1252" . windows-1252) ("cp1257" . cp1257) ("cp437de" . cp437) ("cp437" . cp437) ("cp850" . cp850) ("cp852" . cp852) ("cp865" . cp865) ("latin1" . iso-8859-1) ("latin2" . iso-8859-2) ("latin3" . iso-8859-3) ("latin4" . iso-8859-4) ("latin5" . iso-8859-5) ("latin9" . iso-8859-15) ("next" . next) ("utf8" . utf-8) ("utf8x" . utf-8))) "\ |
| @@ -15287,7 +15319,7 @@ coding system names is determined from `latex-inputenc-coding-alist'. | |||
| 15287 | ;;;*** | 15319 | ;;;*** |
| 15288 | 15320 | ||
| 15289 | ;;;### (autoloads (latin1-display-ucs-per-lynx latin1-display latin1-display) | 15321 | ;;;### (autoloads (latin1-display-ucs-per-lynx latin1-display latin1-display) |
| 15290 | ;;;;;; "latin1-disp" "international/latin1-disp.el" (17087 12558)) | 15322 | ;;;;;; "latin1-disp" "international/latin1-disp.el" (17107 37380)) |
| 15291 | ;;; Generated autoloads from international/latin1-disp.el | 15323 | ;;; Generated autoloads from international/latin1-disp.el |
| 15292 | 15324 | ||
| 15293 | (defvar latin1-display nil "\ | 15325 | (defvar latin1-display nil "\ |
| @@ -15331,7 +15363,7 @@ use either \\[customize] or the function `latin1-display'.") | |||
| 15331 | ;;;*** | 15363 | ;;;*** |
| 15332 | 15364 | ||
| 15333 | ;;;### (autoloads (turn-on-lazy-lock lazy-lock-mode) "lazy-lock" | 15365 | ;;;### (autoloads (turn-on-lazy-lock lazy-lock-mode) "lazy-lock" |
| 15334 | ;;;;;; "obsolete/lazy-lock.el" (17087 12570)) | 15366 | ;;;;;; "obsolete/lazy-lock.el" (17107 37382)) |
| 15335 | ;;; Generated autoloads from obsolete/lazy-lock.el | 15367 | ;;; Generated autoloads from obsolete/lazy-lock.el |
| 15336 | 15368 | ||
| 15337 | (autoload (quote lazy-lock-mode) "lazy-lock" "\ | 15369 | (autoload (quote lazy-lock-mode) "lazy-lock" "\ |
| @@ -15399,7 +15431,7 @@ Unconditionally turn on Lazy Lock mode. | |||
| 15399 | ;;;*** | 15431 | ;;;*** |
| 15400 | 15432 | ||
| 15401 | ;;;### (autoloads (ld-script-mode) "ld-script" "progmodes/ld-script.el" | 15433 | ;;;### (autoloads (ld-script-mode) "ld-script" "progmodes/ld-script.el" |
| 15402 | ;;;;;; (17087 12570)) | 15434 | ;;;;;; (17107 37381)) |
| 15403 | ;;; Generated autoloads from progmodes/ld-script.el | 15435 | ;;; Generated autoloads from progmodes/ld-script.el |
| 15404 | 15436 | ||
| 15405 | (add-to-list (quote auto-mode-alist) (quote ("\\.lds" . ld-script-mode))) | 15437 | (add-to-list (quote auto-mode-alist) (quote ("\\.lds" . ld-script-mode))) |
| @@ -15412,7 +15444,7 @@ A major mode to edit GNU ld script files | |||
| 15412 | ;;;*** | 15444 | ;;;*** |
| 15413 | 15445 | ||
| 15414 | ;;;### (autoloads (ledit-from-lisp-mode ledit-mode) "ledit" "ledit.el" | 15446 | ;;;### (autoloads (ledit-from-lisp-mode ledit-mode) "ledit" "ledit.el" |
| 15415 | ;;;;;; (17087 12570)) | 15447 | ;;;;;; (17107 37380)) |
| 15416 | ;;; Generated autoloads from ledit.el | 15448 | ;;; Generated autoloads from ledit.el |
| 15417 | 15449 | ||
| 15418 | (defconst ledit-save-files t "\ | 15450 | (defconst ledit-save-files t "\ |
| @@ -15446,7 +15478,7 @@ Not documented | |||
| 15446 | 15478 | ||
| 15447 | ;;;*** | 15479 | ;;;*** |
| 15448 | 15480 | ||
| 15449 | ;;;### (autoloads (life) "life" "play/life.el" (17087 12558)) | 15481 | ;;;### (autoloads (life) "life" "play/life.el" (17107 37380)) |
| 15450 | ;;; Generated autoloads from play/life.el | 15482 | ;;; Generated autoloads from play/life.el |
| 15451 | 15483 | ||
| 15452 | (autoload (quote life) "life" "\ | 15484 | (autoload (quote life) "life" "\ |
| @@ -15459,8 +15491,8 @@ generations (this defaults to 1). | |||
| 15459 | 15491 | ||
| 15460 | ;;;*** | 15492 | ;;;*** |
| 15461 | 15493 | ||
| 15462 | ;;;### (autoloads (unload-feature) "loadhist" "loadhist.el" (17087 | 15494 | ;;;### (autoloads (unload-feature) "loadhist" "loadhist.el" (17107 |
| 15463 | ;;;;;; 12537)) | 15495 | ;;;;;; 37380)) |
| 15464 | ;;; Generated autoloads from loadhist.el | 15496 | ;;; Generated autoloads from loadhist.el |
| 15465 | 15497 | ||
| 15466 | (autoload (quote unload-feature) "loadhist" "\ | 15498 | (autoload (quote unload-feature) "loadhist" "\ |
| @@ -15483,7 +15515,7 @@ such as redefining an Emacs function. | |||
| 15483 | ;;;*** | 15515 | ;;;*** |
| 15484 | 15516 | ||
| 15485 | ;;;### (autoloads (locate-with-filter locate locate-ls-subdir-switches) | 15517 | ;;;### (autoloads (locate-with-filter locate locate-ls-subdir-switches) |
| 15486 | ;;;;;; "locate" "locate.el" (17087 12566)) | 15518 | ;;;;;; "locate" "locate.el" (17107 37381)) |
| 15487 | ;;; Generated autoloads from locate.el | 15519 | ;;; Generated autoloads from locate.el |
| 15488 | 15520 | ||
| 15489 | (defvar locate-ls-subdir-switches "-al" "\ | 15521 | (defvar locate-ls-subdir-switches "-al" "\ |
| @@ -15508,7 +15540,7 @@ shown; this is often useful to constrain a big search. | |||
| 15508 | 15540 | ||
| 15509 | ;;;*** | 15541 | ;;;*** |
| 15510 | 15542 | ||
| 15511 | ;;;### (autoloads (log-edit) "log-edit" "log-edit.el" (17087 12570)) | 15543 | ;;;### (autoloads (log-edit) "log-edit" "log-edit.el" (17107 37380)) |
| 15512 | ;;; Generated autoloads from log-edit.el | 15544 | ;;; Generated autoloads from log-edit.el |
| 15513 | 15545 | ||
| 15514 | (autoload (quote log-edit) "log-edit" "\ | 15546 | (autoload (quote log-edit) "log-edit" "\ |
| @@ -15529,8 +15561,8 @@ If BUFFER is non-nil `log-edit' will jump to that buffer, use it to edit the | |||
| 15529 | 15561 | ||
| 15530 | ;;;*** | 15562 | ;;;*** |
| 15531 | 15563 | ||
| 15532 | ;;;### (autoloads (log-view-mode) "log-view" "log-view.el" (17087 | 15564 | ;;;### (autoloads (log-view-mode) "log-view" "log-view.el" (17107 |
| 15533 | ;;;;;; 12570)) | 15565 | ;;;;;; 37382)) |
| 15534 | ;;; Generated autoloads from log-view.el | 15566 | ;;; Generated autoloads from log-view.el |
| 15535 | 15567 | ||
| 15536 | (autoload (quote log-view-mode) "log-view" "\ | 15568 | (autoload (quote log-view-mode) "log-view" "\ |
| @@ -15540,8 +15572,8 @@ Major mode for browsing CVS log output. | |||
| 15540 | 15572 | ||
| 15541 | ;;;*** | 15573 | ;;;*** |
| 15542 | 15574 | ||
| 15543 | ;;;### (autoloads (longlines-mode) "longlines" "longlines.el" (17087 | 15575 | ;;;### (autoloads (longlines-mode) "longlines" "longlines.el" (17107 |
| 15544 | ;;;;;; 12575)) | 15576 | ;;;;;; 37382)) |
| 15545 | ;;; Generated autoloads from longlines.el | 15577 | ;;; Generated autoloads from longlines.el |
| 15546 | 15578 | ||
| 15547 | (autoload (quote longlines-mode) "longlines" "\ | 15579 | (autoload (quote longlines-mode) "longlines" "\ |
| @@ -15562,8 +15594,8 @@ are indicated with a symbol. | |||
| 15562 | ;;;*** | 15594 | ;;;*** |
| 15563 | 15595 | ||
| 15564 | ;;;### (autoloads (print-region lpr-region print-buffer lpr-buffer | 15596 | ;;;### (autoloads (print-region lpr-region print-buffer lpr-buffer |
| 15565 | ;;;;;; lpr-command lpr-switches printer-name) "lpr" "lpr.el" (17087 | 15597 | ;;;;;; lpr-command lpr-switches printer-name) "lpr" "lpr.el" (17107 |
| 15566 | ;;;;;; 12380)) | 15598 | ;;;;;; 37380)) |
| 15567 | ;;; Generated autoloads from lpr.el | 15599 | ;;; Generated autoloads from lpr.el |
| 15568 | 15600 | ||
| 15569 | (defvar lpr-windows-system (memq system-type (quote (emx win32 w32 mswindows ms-dos windows-nt)))) | 15601 | (defvar lpr-windows-system (memq system-type (quote (emx win32 w32 mswindows ms-dos windows-nt)))) |
| @@ -15657,7 +15689,7 @@ for further customization of the printer command. | |||
| 15657 | ;;;*** | 15689 | ;;;*** |
| 15658 | 15690 | ||
| 15659 | ;;;### (autoloads (ls-lisp-support-shell-wildcards) "ls-lisp" "ls-lisp.el" | 15691 | ;;;### (autoloads (ls-lisp-support-shell-wildcards) "ls-lisp" "ls-lisp.el" |
| 15660 | ;;;;;; (17087 12575)) | 15692 | ;;;;;; (17107 37381)) |
| 15661 | ;;; Generated autoloads from ls-lisp.el | 15693 | ;;; Generated autoloads from ls-lisp.el |
| 15662 | 15694 | ||
| 15663 | (defvar ls-lisp-support-shell-wildcards t "\ | 15695 | (defvar ls-lisp-support-shell-wildcards t "\ |
| @@ -15668,8 +15700,8 @@ Otherwise they are treated as Emacs regexps (for backward compatibility).") | |||
| 15668 | 15700 | ||
| 15669 | ;;;*** | 15701 | ;;;*** |
| 15670 | 15702 | ||
| 15671 | ;;;### (autoloads (phases-of-moon) "lunar" "calendar/lunar.el" (17087 | 15703 | ;;;### (autoloads (phases-of-moon) "lunar" "calendar/lunar.el" (17107 |
| 15672 | ;;;;;; 12528)) | 15704 | ;;;;;; 37380)) |
| 15673 | ;;; Generated autoloads from calendar/lunar.el | 15705 | ;;; Generated autoloads from calendar/lunar.el |
| 15674 | 15706 | ||
| 15675 | (autoload (quote phases-of-moon) "lunar" "\ | 15707 | (autoload (quote phases-of-moon) "lunar" "\ |
| @@ -15682,8 +15714,8 @@ This function is suitable for execution in a .emacs file. | |||
| 15682 | 15714 | ||
| 15683 | ;;;*** | 15715 | ;;;*** |
| 15684 | 15716 | ||
| 15685 | ;;;### (autoloads (m4-mode) "m4-mode" "progmodes/m4-mode.el" (17087 | 15717 | ;;;### (autoloads (m4-mode) "m4-mode" "progmodes/m4-mode.el" (17107 |
| 15686 | ;;;;;; 12566)) | 15718 | ;;;;;; 37382)) |
| 15687 | ;;; Generated autoloads from progmodes/m4-mode.el | 15719 | ;;; Generated autoloads from progmodes/m4-mode.el |
| 15688 | 15720 | ||
| 15689 | (autoload (quote m4-mode) "m4-mode" "\ | 15721 | (autoload (quote m4-mode) "m4-mode" "\ |
| @@ -15695,7 +15727,7 @@ A major mode to edit m4 macro files. | |||
| 15695 | ;;;*** | 15727 | ;;;*** |
| 15696 | 15728 | ||
| 15697 | ;;;### (autoloads (macroexpand-all) "macroexp" "emacs-lisp/macroexp.el" | 15729 | ;;;### (autoloads (macroexpand-all) "macroexp" "emacs-lisp/macroexp.el" |
| 15698 | ;;;;;; (17087 12380)) | 15730 | ;;;;;; (17107 37381)) |
| 15699 | ;;; Generated autoloads from emacs-lisp/macroexp.el | 15731 | ;;; Generated autoloads from emacs-lisp/macroexp.el |
| 15700 | 15732 | ||
| 15701 | (autoload (quote macroexpand-all) "macroexp" "\ | 15733 | (autoload (quote macroexpand-all) "macroexp" "\ |
| @@ -15709,7 +15741,7 @@ definitions to shadow the loaded ones for use in file byte-compilation. | |||
| 15709 | ;;;*** | 15741 | ;;;*** |
| 15710 | 15742 | ||
| 15711 | ;;;### (autoloads (apply-macro-to-region-lines kbd-macro-query insert-kbd-macro | 15743 | ;;;### (autoloads (apply-macro-to-region-lines kbd-macro-query insert-kbd-macro |
| 15712 | ;;;;;; name-last-kbd-macro) "macros" "macros.el" (17087 12444)) | 15744 | ;;;;;; name-last-kbd-macro) "macros" "macros.el" (17107 37380)) |
| 15713 | ;;; Generated autoloads from macros.el | 15745 | ;;; Generated autoloads from macros.el |
| 15714 | 15746 | ||
| 15715 | (autoload (quote name-last-kbd-macro) "macros" "\ | 15747 | (autoload (quote name-last-kbd-macro) "macros" "\ |
| @@ -15798,7 +15830,7 @@ and then select the region of un-tablified names and use | |||
| 15798 | ;;;*** | 15830 | ;;;*** |
| 15799 | 15831 | ||
| 15800 | ;;;### (autoloads (what-domain mail-extract-address-components) "mail-extr" | 15832 | ;;;### (autoloads (what-domain mail-extract-address-components) "mail-extr" |
| 15801 | ;;;;;; "mail/mail-extr.el" (17087 12466)) | 15833 | ;;;;;; "mail/mail-extr.el" (17107 37380)) |
| 15802 | ;;; Generated autoloads from mail/mail-extr.el | 15834 | ;;; Generated autoloads from mail/mail-extr.el |
| 15803 | 15835 | ||
| 15804 | (autoload (quote mail-extract-address-components) "mail-extr" "\ | 15836 | (autoload (quote mail-extract-address-components) "mail-extr" "\ |
| @@ -15829,7 +15861,7 @@ Convert mail domain DOMAIN to the country it corresponds to. | |||
| 15829 | 15861 | ||
| 15830 | ;;;### (autoloads (mail-hist-put-headers-into-history mail-hist-keep-history | 15862 | ;;;### (autoloads (mail-hist-put-headers-into-history mail-hist-keep-history |
| 15831 | ;;;;;; mail-hist-enable mail-hist-define-keys) "mail-hist" "mail/mail-hist.el" | 15863 | ;;;;;; mail-hist-enable mail-hist-define-keys) "mail-hist" "mail/mail-hist.el" |
| 15832 | ;;;;;; (17087 12380)) | 15864 | ;;;;;; (17107 37379)) |
| 15833 | ;;; Generated autoloads from mail/mail-hist.el | 15865 | ;;; Generated autoloads from mail/mail-hist.el |
| 15834 | 15866 | ||
| 15835 | (autoload (quote mail-hist-define-keys) "mail-hist" "\ | 15867 | (autoload (quote mail-hist-define-keys) "mail-hist" "\ |
| @@ -15860,8 +15892,8 @@ This function normally would be called when the message is sent. | |||
| 15860 | 15892 | ||
| 15861 | ;;;### (autoloads (mail-fetch-field mail-unquote-printable-region | 15893 | ;;;### (autoloads (mail-fetch-field mail-unquote-printable-region |
| 15862 | ;;;;;; mail-unquote-printable mail-quote-printable mail-file-babyl-p | 15894 | ;;;;;; mail-unquote-printable mail-quote-printable mail-file-babyl-p |
| 15863 | ;;;;;; mail-use-rfc822) "mail-utils" "mail/mail-utils.el" (17087 | 15895 | ;;;;;; mail-use-rfc822) "mail-utils" "mail/mail-utils.el" (17107 |
| 15864 | ;;;;;; 12380)) | 15896 | ;;;;;; 37380)) |
| 15865 | ;;; Generated autoloads from mail/mail-utils.el | 15897 | ;;; Generated autoloads from mail/mail-utils.el |
| 15866 | 15898 | ||
| 15867 | (defvar mail-use-rfc822 nil "\ | 15899 | (defvar mail-use-rfc822 nil "\ |
| @@ -15913,7 +15945,7 @@ If 4th arg LIST is non-nil, return a list of all such fields. | |||
| 15913 | ;;;*** | 15945 | ;;;*** |
| 15914 | 15946 | ||
| 15915 | ;;;### (autoloads (define-mail-abbrev build-mail-abbrevs mail-abbrevs-setup) | 15947 | ;;;### (autoloads (define-mail-abbrev build-mail-abbrevs mail-abbrevs-setup) |
| 15916 | ;;;;;; "mailabbrev" "mail/mailabbrev.el" (17087 12453)) | 15948 | ;;;;;; "mailabbrev" "mail/mailabbrev.el" (17107 37380)) |
| 15917 | ;;; Generated autoloads from mail/mailabbrev.el | 15949 | ;;; Generated autoloads from mail/mailabbrev.el |
| 15918 | 15950 | ||
| 15919 | (autoload (quote mail-abbrevs-setup) "mailabbrev" "\ | 15951 | (autoload (quote mail-abbrevs-setup) "mailabbrev" "\ |
| @@ -15936,8 +15968,8 @@ If DEFINITION contains multiple addresses, separate them with commas. | |||
| 15936 | ;;;*** | 15968 | ;;;*** |
| 15937 | 15969 | ||
| 15938 | ;;;### (autoloads (mail-complete define-mail-alias expand-mail-aliases | 15970 | ;;;### (autoloads (mail-complete define-mail-alias expand-mail-aliases |
| 15939 | ;;;;;; mail-complete-style) "mailalias" "mail/mailalias.el" (17087 | 15971 | ;;;;;; mail-complete-style) "mailalias" "mail/mailalias.el" (17107 |
| 15940 | ;;;;;; 12566)) | 15972 | ;;;;;; 37379)) |
| 15941 | ;;; Generated autoloads from mail/mailalias.el | 15973 | ;;; Generated autoloads from mail/mailalias.el |
| 15942 | 15974 | ||
| 15943 | (defvar mail-complete-style (quote angles) "\ | 15975 | (defvar mail-complete-style (quote angles) "\ |
| @@ -15984,7 +16016,7 @@ current header, calls `mail-complete-function' and passes prefix arg if any. | |||
| 15984 | 16016 | ||
| 15985 | ;;;### (autoloads (makefile-bsdmake-mode makefile-makepp-mode makefile-gmake-mode | 16017 | ;;;### (autoloads (makefile-bsdmake-mode makefile-makepp-mode makefile-gmake-mode |
| 15986 | ;;;;;; makefile-automake-mode makefile-mode) "make-mode" "progmodes/make-mode.el" | 16018 | ;;;;;; makefile-automake-mode makefile-mode) "make-mode" "progmodes/make-mode.el" |
| 15987 | ;;;;;; (17087 12575)) | 16019 | ;;;;;; (17107 37381)) |
| 15988 | ;;; Generated autoloads from progmodes/make-mode.el | 16020 | ;;; Generated autoloads from progmodes/make-mode.el |
| 15989 | 16021 | ||
| 15990 | (autoload (quote makefile-mode) "make-mode" "\ | 16022 | (autoload (quote makefile-mode) "make-mode" "\ |
| @@ -16096,8 +16128,8 @@ An adapted `makefile-mode' that knows about BSD make. | |||
| 16096 | 16128 | ||
| 16097 | ;;;*** | 16129 | ;;;*** |
| 16098 | 16130 | ||
| 16099 | ;;;### (autoloads (make-command-summary) "makesum" "makesum.el" (17087 | 16131 | ;;;### (autoloads (make-command-summary) "makesum" "makesum.el" (17107 |
| 16100 | ;;;;;; 12380)) | 16132 | ;;;;;; 37380)) |
| 16101 | ;;; Generated autoloads from makesum.el | 16133 | ;;; Generated autoloads from makesum.el |
| 16102 | 16134 | ||
| 16103 | (autoload (quote make-command-summary) "makesum" "\ | 16135 | (autoload (quote make-command-summary) "makesum" "\ |
| @@ -16108,7 +16140,7 @@ Previous contents of that buffer are killed first. | |||
| 16108 | 16140 | ||
| 16109 | ;;;*** | 16141 | ;;;*** |
| 16110 | 16142 | ||
| 16111 | ;;;### (autoloads (man-follow man) "man" "man.el" (17087 12570)) | 16143 | ;;;### (autoloads (man-follow man) "man" "man.el" (17107 37380)) |
| 16112 | ;;; Generated autoloads from man.el | 16144 | ;;; Generated autoloads from man.el |
| 16113 | 16145 | ||
| 16114 | (defalias (quote manual-entry) (quote man)) | 16146 | (defalias (quote manual-entry) (quote man)) |
| @@ -16135,7 +16167,7 @@ Get a Un*x manual page of the item under point and put it in a buffer. | |||
| 16135 | 16167 | ||
| 16136 | ;;;*** | 16168 | ;;;*** |
| 16137 | 16169 | ||
| 16138 | ;;;### (autoloads (master-mode) "master" "master.el" (17087 12528)) | 16170 | ;;;### (autoloads (master-mode) "master" "master.el" (17107 37380)) |
| 16139 | ;;; Generated autoloads from master.el | 16171 | ;;; Generated autoloads from master.el |
| 16140 | 16172 | ||
| 16141 | (autoload (quote master-mode) "master" "\ | 16173 | (autoload (quote master-mode) "master" "\ |
| @@ -16157,8 +16189,8 @@ yourself the value of `master-of' by calling `master-show-slave'. | |||
| 16157 | 16189 | ||
| 16158 | ;;;*** | 16190 | ;;;*** |
| 16159 | 16191 | ||
| 16160 | ;;;### (autoloads (menu-bar-mode) "menu-bar" "menu-bar.el" (17087 | 16192 | ;;;### (autoloads (menu-bar-mode) "menu-bar" "menu-bar.el" (17107 |
| 16161 | ;;;;;; 12575)) | 16193 | ;;;;;; 37382)) |
| 16162 | ;;; Generated autoloads from menu-bar.el | 16194 | ;;; Generated autoloads from menu-bar.el |
| 16163 | 16195 | ||
| 16164 | (put (quote menu-bar-mode) (quote standard-value) (quote (t))) | 16196 | (put (quote menu-bar-mode) (quote standard-value) (quote (t))) |
| @@ -16171,6 +16203,8 @@ use either \\[customize] or the function `menu-bar-mode'.") | |||
| 16171 | 16203 | ||
| 16172 | (custom-autoload (quote menu-bar-mode) "menu-bar") | 16204 | (custom-autoload (quote menu-bar-mode) "menu-bar") |
| 16173 | 16205 | ||
| 16206 | (put (quote menu-bar-mode) (quote custom-set) (quote custom-set-minor-mode)) | ||
| 16207 | |||
| 16174 | (autoload (quote menu-bar-mode) "menu-bar" "\ | 16208 | (autoload (quote menu-bar-mode) "menu-bar" "\ |
| 16175 | Toggle display of a menu bar on each frame. | 16209 | Toggle display of a menu bar on each frame. |
| 16176 | This command applies to all frames that exist and frames to be | 16210 | This command applies to all frames that exist and frames to be |
| @@ -16195,7 +16229,7 @@ turn on menu bars; otherwise, turn off menu bars. | |||
| 16195 | ;;;;;; message-signature message-indent-citation-function message-cite-function | 16229 | ;;;;;; message-signature message-indent-citation-function message-cite-function |
| 16196 | ;;;;;; message-yank-prefix message-citation-line-function message-send-mail-function | 16230 | ;;;;;; message-yank-prefix message-citation-line-function message-send-mail-function |
| 16197 | ;;;;;; message-user-organization-file message-signature-separator | 16231 | ;;;;;; message-user-organization-file message-signature-separator |
| 16198 | ;;;;;; message-from-style) "message" "gnus/message.el" (17087 12574)) | 16232 | ;;;;;; message-from-style) "message" "gnus/message.el" (17107 37379)) |
| 16199 | ;;; Generated autoloads from gnus/message.el | 16233 | ;;; Generated autoloads from gnus/message.el |
| 16200 | 16234 | ||
| 16201 | (defvar message-from-style (quote default) "\ | 16235 | (defvar message-from-style (quote default) "\ |
| @@ -16501,7 +16535,7 @@ which specify the range to operate on. | |||
| 16501 | ;;;*** | 16535 | ;;;*** |
| 16502 | 16536 | ||
| 16503 | ;;;### (autoloads (metapost-mode metafont-mode) "meta-mode" "progmodes/meta-mode.el" | 16537 | ;;;### (autoloads (metapost-mode metafont-mode) "meta-mode" "progmodes/meta-mode.el" |
| 16504 | ;;;;;; (17087 12566)) | 16538 | ;;;;;; (17107 37381)) |
| 16505 | ;;; Generated autoloads from progmodes/meta-mode.el | 16539 | ;;; Generated autoloads from progmodes/meta-mode.el |
| 16506 | 16540 | ||
| 16507 | (autoload (quote metafont-mode) "meta-mode" "\ | 16541 | (autoload (quote metafont-mode) "meta-mode" "\ |
| @@ -16528,7 +16562,7 @@ Turning on MetaPost mode calls the value of the variable | |||
| 16528 | 16562 | ||
| 16529 | ;;;### (autoloads (metamail-region metamail-buffer metamail-interpret-body | 16563 | ;;;### (autoloads (metamail-region metamail-buffer metamail-interpret-body |
| 16530 | ;;;;;; metamail-interpret-header) "metamail" "mail/metamail.el" | 16564 | ;;;;;; metamail-interpret-header) "metamail" "mail/metamail.el" |
| 16531 | ;;;;;; (17087 12380)) | 16565 | ;;;;;; (17107 37380)) |
| 16532 | ;;; Generated autoloads from mail/metamail.el | 16566 | ;;; Generated autoloads from mail/metamail.el |
| 16533 | 16567 | ||
| 16534 | (autoload (quote metamail-interpret-header) "metamail" "\ | 16568 | (autoload (quote metamail-interpret-header) "metamail" "\ |
| @@ -16572,8 +16606,8 @@ redisplayed as output is inserted. | |||
| 16572 | ;;;*** | 16606 | ;;;*** |
| 16573 | 16607 | ||
| 16574 | ;;;### (autoloads (mh-letter-mode mh-smail-other-window mh-user-agent-compose | 16608 | ;;;### (autoloads (mh-letter-mode mh-smail-other-window mh-user-agent-compose |
| 16575 | ;;;;;; mh-smail-batch mh-smail) "mh-comp" "mh-e/mh-comp.el" (17087 | 16609 | ;;;;;; mh-smail-batch mh-smail) "mh-comp" "mh-e/mh-comp.el" (17107 |
| 16576 | ;;;;;; 12575)) | 16610 | ;;;;;; 37380)) |
| 16577 | ;;; Generated autoloads from mh-e/mh-comp.el | 16611 | ;;; Generated autoloads from mh-e/mh-comp.el |
| 16578 | 16612 | ||
| 16579 | (autoload (quote mh-smail) "mh-comp" "\ | 16613 | (autoload (quote mh-smail) "mh-comp" "\ |
| @@ -16648,7 +16682,7 @@ When a message is composed, the hooks `text-mode-hook' and | |||
| 16648 | ;;;*** | 16682 | ;;;*** |
| 16649 | 16683 | ||
| 16650 | ;;;### (autoloads (mh-restore-desktop-buffer mh-version mh-nmail | 16684 | ;;;### (autoloads (mh-restore-desktop-buffer mh-version mh-nmail |
| 16651 | ;;;;;; mh-rmail) "mh-e" "mh-e/mh-e.el" (17087 12567)) | 16685 | ;;;;;; mh-rmail) "mh-e" "mh-e/mh-e.el" (17107 37380)) |
| 16652 | ;;; Generated autoloads from mh-e/mh-e.el | 16686 | ;;; Generated autoloads from mh-e/mh-e.el |
| 16653 | 16687 | ||
| 16654 | (autoload (quote mh-rmail) "mh-e" "\ | 16688 | (autoload (quote mh-rmail) "mh-e" "\ |
| @@ -16681,7 +16715,7 @@ DESKTOP-BUFFER-MISC holds a list of miscellaneous info used by the | |||
| 16681 | 16715 | ||
| 16682 | ;;;*** | 16716 | ;;;*** |
| 16683 | 16717 | ||
| 16684 | ;;;### (autoloads nil "mh-init" "mh-e/mh-init.el" (17087 12567)) | 16718 | ;;;### (autoloads nil "mh-init" "mh-e/mh-init.el" (17107 37380)) |
| 16685 | ;;; Generated autoloads from mh-e/mh-init.el | 16719 | ;;; Generated autoloads from mh-e/mh-init.el |
| 16686 | 16720 | ||
| 16687 | (put (quote mh-progs) (quote risky-local-variable) t) | 16721 | (put (quote mh-progs) (quote risky-local-variable) t) |
| @@ -16693,7 +16727,7 @@ DESKTOP-BUFFER-MISC holds a list of miscellaneous info used by the | |||
| 16693 | ;;;*** | 16727 | ;;;*** |
| 16694 | 16728 | ||
| 16695 | ;;;### (autoloads (midnight-delay-set clean-buffer-list) "midnight" | 16729 | ;;;### (autoloads (midnight-delay-set clean-buffer-list) "midnight" |
| 16696 | ;;;;;; "midnight.el" (17087 12537)) | 16730 | ;;;;;; "midnight.el" (17107 37380)) |
| 16697 | ;;; Generated autoloads from midnight.el | 16731 | ;;; Generated autoloads from midnight.el |
| 16698 | 16732 | ||
| 16699 | (autoload (quote clean-buffer-list) "midnight" "\ | 16733 | (autoload (quote clean-buffer-list) "midnight" "\ |
| @@ -16720,7 +16754,7 @@ to its second argument TM. | |||
| 16720 | ;;;*** | 16754 | ;;;*** |
| 16721 | 16755 | ||
| 16722 | ;;;### (autoloads (minibuffer-electric-default-mode) "minibuf-eldef" | 16756 | ;;;### (autoloads (minibuffer-electric-default-mode) "minibuf-eldef" |
| 16723 | ;;;;;; "minibuf-eldef.el" (17087 12380)) | 16757 | ;;;;;; "minibuf-eldef.el" (17107 37380)) |
| 16724 | ;;; Generated autoloads from minibuf-eldef.el | 16758 | ;;; Generated autoloads from minibuf-eldef.el |
| 16725 | 16759 | ||
| 16726 | (defvar minibuffer-electric-default-mode nil "\ | 16760 | (defvar minibuffer-electric-default-mode nil "\ |
| @@ -16731,6 +16765,8 @@ use either \\[customize] or the function `minibuffer-electric-default-mode'.") | |||
| 16731 | 16765 | ||
| 16732 | (custom-autoload (quote minibuffer-electric-default-mode) "minibuf-eldef") | 16766 | (custom-autoload (quote minibuffer-electric-default-mode) "minibuf-eldef") |
| 16733 | 16767 | ||
| 16768 | (put (quote minibuffer-electric-default-mode) (quote custom-set) (quote custom-set-minor-mode)) | ||
| 16769 | |||
| 16734 | (autoload (quote minibuffer-electric-default-mode) "minibuf-eldef" "\ | 16770 | (autoload (quote minibuffer-electric-default-mode) "minibuf-eldef" "\ |
| 16735 | Toggle Minibuffer Electric Default mode. | 16771 | Toggle Minibuffer Electric Default mode. |
| 16736 | When active, minibuffer prompts that show a default value only show the | 16772 | When active, minibuffer prompts that show a default value only show the |
| @@ -16747,7 +16783,7 @@ Returns non-nil if the new state is enabled. | |||
| 16747 | ;;;*** | 16783 | ;;;*** |
| 16748 | 16784 | ||
| 16749 | ;;;### (autoloads (mixal-mode) "mixal-mode" "progmodes/mixal-mode.el" | 16785 | ;;;### (autoloads (mixal-mode) "mixal-mode" "progmodes/mixal-mode.el" |
| 16750 | ;;;;;; (17087 12451)) | 16786 | ;;;;;; (17107 37381)) |
| 16751 | ;;; Generated autoloads from progmodes/mixal-mode.el | 16787 | ;;; Generated autoloads from progmodes/mixal-mode.el |
| 16752 | 16788 | ||
| 16753 | (autoload (quote mixal-mode) "mixal-mode" "\ | 16789 | (autoload (quote mixal-mode) "mixal-mode" "\ |
| @@ -16762,7 +16798,7 @@ Major mode for the mixal asm language. | |||
| 16762 | 16798 | ||
| 16763 | ;;;### (autoloads (malayalam-composition-function malayalam-post-read-conversion | 16799 | ;;;### (autoloads (malayalam-composition-function malayalam-post-read-conversion |
| 16764 | ;;;;;; malayalam-compose-region) "mlm-util" "language/mlm-util.el" | 16800 | ;;;;;; malayalam-compose-region) "mlm-util" "language/mlm-util.el" |
| 16765 | ;;;;;; (17087 12380)) | 16801 | ;;;;;; (17107 37382)) |
| 16766 | ;;; Generated autoloads from language/mlm-util.el | 16802 | ;;; Generated autoloads from language/mlm-util.el |
| 16767 | 16803 | ||
| 16768 | (autoload (quote malayalam-compose-region) "mlm-util" "\ | 16804 | (autoload (quote malayalam-compose-region) "mlm-util" "\ |
| @@ -16785,7 +16821,7 @@ PATTERN regexp. | |||
| 16785 | ;;;*** | 16821 | ;;;*** |
| 16786 | 16822 | ||
| 16787 | ;;;### (autoloads (mm-inline-external-body) "mm-extern" "gnus/mm-extern.el" | 16823 | ;;;### (autoloads (mm-inline-external-body) "mm-extern" "gnus/mm-extern.el" |
| 16788 | ;;;;;; (17087 12574)) | 16824 | ;;;;;; (17107 37379)) |
| 16789 | ;;; Generated autoloads from gnus/mm-extern.el | 16825 | ;;; Generated autoloads from gnus/mm-extern.el |
| 16790 | 16826 | ||
| 16791 | (autoload (quote mm-inline-external-body) "mm-extern" "\ | 16827 | (autoload (quote mm-inline-external-body) "mm-extern" "\ |
| @@ -16799,7 +16835,7 @@ If NO-DISPLAY is nil, display it. Otherwise, do nothing after replacing. | |||
| 16799 | ;;;*** | 16835 | ;;;*** |
| 16800 | 16836 | ||
| 16801 | ;;;### (autoloads (mm-inline-partial) "mm-partial" "gnus/mm-partial.el" | 16837 | ;;;### (autoloads (mm-inline-partial) "mm-partial" "gnus/mm-partial.el" |
| 16802 | ;;;;;; (17087 12415)) | 16838 | ;;;;;; (17107 37379)) |
| 16803 | ;;; Generated autoloads from gnus/mm-partial.el | 16839 | ;;; Generated autoloads from gnus/mm-partial.el |
| 16804 | 16840 | ||
| 16805 | (autoload (quote mm-inline-partial) "mm-partial" "\ | 16841 | (autoload (quote mm-inline-partial) "mm-partial" "\ |
| @@ -16813,7 +16849,7 @@ If NO-DISPLAY is nil, display it. Otherwise, do nothing after replacing. | |||
| 16813 | ;;;*** | 16849 | ;;;*** |
| 16814 | 16850 | ||
| 16815 | ;;;### (autoloads (mm-url-insert-file-contents-external mm-url-insert-file-contents) | 16851 | ;;;### (autoloads (mm-url-insert-file-contents-external mm-url-insert-file-contents) |
| 16816 | ;;;;;; "mm-url" "gnus/mm-url.el" (17087 12531)) | 16852 | ;;;;;; "mm-url" "gnus/mm-url.el" (17107 37379)) |
| 16817 | ;;; Generated autoloads from gnus/mm-url.el | 16853 | ;;; Generated autoloads from gnus/mm-url.el |
| 16818 | 16854 | ||
| 16819 | (autoload (quote mm-url-insert-file-contents) "mm-url" "\ | 16855 | (autoload (quote mm-url-insert-file-contents) "mm-url" "\ |
| @@ -16829,8 +16865,8 @@ Insert file contents of URL using `mm-url-program'. | |||
| 16829 | 16865 | ||
| 16830 | ;;;*** | 16866 | ;;;*** |
| 16831 | 16867 | ||
| 16832 | ;;;### (autoloads (mm-uu-dissect) "mm-uu" "gnus/mm-uu.el" (17087 | 16868 | ;;;### (autoloads (mm-uu-dissect) "mm-uu" "gnus/mm-uu.el" (17107 |
| 16833 | ;;;;;; 12466)) | 16869 | ;;;;;; 37379)) |
| 16834 | ;;; Generated autoloads from gnus/mm-uu.el | 16870 | ;;; Generated autoloads from gnus/mm-uu.el |
| 16835 | 16871 | ||
| 16836 | (autoload (quote mm-uu-dissect) "mm-uu" "\ | 16872 | (autoload (quote mm-uu-dissect) "mm-uu" "\ |
| @@ -16841,7 +16877,7 @@ Dissect the current buffer and return a list of uu handles. | |||
| 16841 | ;;;*** | 16877 | ;;;*** |
| 16842 | 16878 | ||
| 16843 | ;;;### (autoloads (mml1991-sign mml1991-encrypt) "mml1991" "gnus/mml1991.el" | 16879 | ;;;### (autoloads (mml1991-sign mml1991-encrypt) "mml1991" "gnus/mml1991.el" |
| 16844 | ;;;;;; (17087 12567)) | 16880 | ;;;;;; (17107 37379)) |
| 16845 | ;;; Generated autoloads from gnus/mml1991.el | 16881 | ;;; Generated autoloads from gnus/mml1991.el |
| 16846 | 16882 | ||
| 16847 | (autoload (quote mml1991-encrypt) "mml1991" "\ | 16883 | (autoload (quote mml1991-encrypt) "mml1991" "\ |
| @@ -16858,7 +16894,7 @@ Not documented | |||
| 16858 | 16894 | ||
| 16859 | ;;;### (autoloads (mml2015-self-encrypt mml2015-sign mml2015-encrypt | 16895 | ;;;### (autoloads (mml2015-self-encrypt mml2015-sign mml2015-encrypt |
| 16860 | ;;;;;; mml2015-verify-test mml2015-verify mml2015-decrypt-test mml2015-decrypt) | 16896 | ;;;;;; mml2015-verify-test mml2015-verify mml2015-decrypt-test mml2015-decrypt) |
| 16861 | ;;;;;; "mml2015" "gnus/mml2015.el" (17087 12567)) | 16897 | ;;;;;; "mml2015" "gnus/mml2015.el" (17107 37379)) |
| 16862 | ;;; Generated autoloads from gnus/mml2015.el | 16898 | ;;; Generated autoloads from gnus/mml2015.el |
| 16863 | 16899 | ||
| 16864 | (autoload (quote mml2015-decrypt) "mml2015" "\ | 16900 | (autoload (quote mml2015-decrypt) "mml2015" "\ |
| @@ -16899,7 +16935,7 @@ Not documented | |||
| 16899 | ;;;*** | 16935 | ;;;*** |
| 16900 | 16936 | ||
| 16901 | ;;;### (autoloads (modula-2-mode) "modula2" "progmodes/modula2.el" | 16937 | ;;;### (autoloads (modula-2-mode) "modula2" "progmodes/modula2.el" |
| 16902 | ;;;;;; (17087 12575)) | 16938 | ;;;;;; (17107 37381)) |
| 16903 | ;;; Generated autoloads from progmodes/modula2.el | 16939 | ;;; Generated autoloads from progmodes/modula2.el |
| 16904 | 16940 | ||
| 16905 | (autoload (quote modula-2-mode) "modula2" "\ | 16941 | (autoload (quote modula-2-mode) "modula2" "\ |
| @@ -16931,7 +16967,7 @@ followed by the first character of the construct. | |||
| 16931 | ;;;*** | 16967 | ;;;*** |
| 16932 | 16968 | ||
| 16933 | ;;;### (autoloads (unmorse-region morse-region) "morse" "play/morse.el" | 16969 | ;;;### (autoloads (unmorse-region morse-region) "morse" "play/morse.el" |
| 16934 | ;;;;;; (17087 12558)) | 16970 | ;;;;;; (17107 37380)) |
| 16935 | ;;; Generated autoloads from play/morse.el | 16971 | ;;; Generated autoloads from play/morse.el |
| 16936 | 16972 | ||
| 16937 | (autoload (quote morse-region) "morse" "\ | 16973 | (autoload (quote morse-region) "morse" "\ |
| @@ -16946,8 +16982,8 @@ Convert morse coded text in region to ordinary ASCII text. | |||
| 16946 | 16982 | ||
| 16947 | ;;;*** | 16983 | ;;;*** |
| 16948 | 16984 | ||
| 16949 | ;;;### (autoloads (mouse-sel-mode) "mouse-sel" "mouse-sel.el" (17087 | 16985 | ;;;### (autoloads (mouse-sel-mode) "mouse-sel" "mouse-sel.el" (17107 |
| 16950 | ;;;;;; 12558)) | 16986 | ;;;;;; 37382)) |
| 16951 | ;;; Generated autoloads from mouse-sel.el | 16987 | ;;; Generated autoloads from mouse-sel.el |
| 16952 | 16988 | ||
| 16953 | (defvar mouse-sel-mode nil "\ | 16989 | (defvar mouse-sel-mode nil "\ |
| @@ -16958,6 +16994,8 @@ use either \\[customize] or the function `mouse-sel-mode'.") | |||
| 16958 | 16994 | ||
| 16959 | (custom-autoload (quote mouse-sel-mode) "mouse-sel") | 16995 | (custom-autoload (quote mouse-sel-mode) "mouse-sel") |
| 16960 | 16996 | ||
| 16997 | (put (quote mouse-sel-mode) (quote custom-set) (quote custom-set-minor-mode)) | ||
| 16998 | |||
| 16961 | (autoload (quote mouse-sel-mode) "mouse-sel" "\ | 16999 | (autoload (quote mouse-sel-mode) "mouse-sel" "\ |
| 16962 | Toggle Mouse Sel mode. | 17000 | Toggle Mouse Sel mode. |
| 16963 | With prefix ARG, turn Mouse Sel mode on if and only if ARG is positive. | 17001 | With prefix ARG, turn Mouse Sel mode on if and only if ARG is positive. |
| @@ -16998,7 +17036,7 @@ primary selection and region. | |||
| 16998 | 17036 | ||
| 16999 | ;;;*** | 17037 | ;;;*** |
| 17000 | 17038 | ||
| 17001 | ;;;### (autoloads (mpuz) "mpuz" "play/mpuz.el" (17087 12570)) | 17039 | ;;;### (autoloads (mpuz) "mpuz" "play/mpuz.el" (17107 37380)) |
| 17002 | ;;; Generated autoloads from play/mpuz.el | 17040 | ;;; Generated autoloads from play/mpuz.el |
| 17003 | 17041 | ||
| 17004 | (autoload (quote mpuz) "mpuz" "\ | 17042 | (autoload (quote mpuz) "mpuz" "\ |
| @@ -17008,7 +17046,7 @@ Multiplication puzzle with GNU Emacs. | |||
| 17008 | 17046 | ||
| 17009 | ;;;*** | 17047 | ;;;*** |
| 17010 | 17048 | ||
| 17011 | ;;;### (autoloads (msb-mode) "msb" "msb.el" (17087 12528)) | 17049 | ;;;### (autoloads (msb-mode) "msb" "msb.el" (17107 37380)) |
| 17012 | ;;; Generated autoloads from msb.el | 17050 | ;;; Generated autoloads from msb.el |
| 17013 | 17051 | ||
| 17014 | (defvar msb-mode nil "\ | 17052 | (defvar msb-mode nil "\ |
| @@ -17019,6 +17057,8 @@ use either \\[customize] or the function `msb-mode'.") | |||
| 17019 | 17057 | ||
| 17020 | (custom-autoload (quote msb-mode) "msb") | 17058 | (custom-autoload (quote msb-mode) "msb") |
| 17021 | 17059 | ||
| 17060 | (put (quote msb-mode) (quote custom-set) (quote custom-set-minor-mode)) | ||
| 17061 | |||
| 17022 | (autoload (quote msb-mode) "msb" "\ | 17062 | (autoload (quote msb-mode) "msb" "\ |
| 17023 | Toggle Msb mode. | 17063 | Toggle Msb mode. |
| 17024 | With arg, turn Msb mode on if and only if arg is positive. | 17064 | With arg, turn Msb mode on if and only if arg is positive. |
| @@ -17034,7 +17074,7 @@ different buffer menu using the function `msb'. | |||
| 17034 | ;;;;;; describe-current-coding-system describe-current-coding-system-briefly | 17074 | ;;;;;; describe-current-coding-system describe-current-coding-system-briefly |
| 17035 | ;;;;;; describe-coding-system describe-character-set list-charset-chars | 17075 | ;;;;;; describe-coding-system describe-character-set list-charset-chars |
| 17036 | ;;;;;; read-charset list-character-sets) "mule-diag" "international/mule-diag.el" | 17076 | ;;;;;; read-charset list-character-sets) "mule-diag" "international/mule-diag.el" |
| 17037 | ;;;;;; (17087 12570)) | 17077 | ;;;;;; (17107 37380)) |
| 17038 | ;;; Generated autoloads from international/mule-diag.el | 17078 | ;;; Generated autoloads from international/mule-diag.el |
| 17039 | 17079 | ||
| 17040 | (defvar non-iso-charset-alist (\` ((mac-roman (ascii latin-iso8859-1 mule-unicode-2500-33ff mule-unicode-0100-24ff mule-unicode-e000-ffff) mac-roman-decoder ((0 255))) (viscii (ascii vietnamese-viscii-lower vietnamese-viscii-upper) viet-viscii-nonascii-translation-table ((0 255))) (vietnamese-tcvn (ascii vietnamese-viscii-lower vietnamese-viscii-upper) viet-tcvn-nonascii-translation-table ((0 255))) (koi8-r (ascii cyrillic-iso8859-5) cyrillic-koi8-r-nonascii-translation-table ((32 255))) (alternativnyj (ascii cyrillic-iso8859-5) cyrillic-alternativnyj-nonascii-translation-table ((32 255))) (koi8-u (ascii cyrillic-iso8859-5 mule-unicode-0100-24ff) cyrillic-koi8-u-nonascii-translation-table ((32 255))) (big5 (ascii chinese-big5-1 chinese-big5-2) decode-big5-char ((32 127) ((161 254) 64 126 161 254))) (sjis (ascii katakana-jisx0201 japanese-jisx0208) decode-sjis-char ((32 127 161 223) ((129 159 224 239) 64 126 128 252))))) "\ | 17080 | (defvar non-iso-charset-alist (\` ((mac-roman (ascii latin-iso8859-1 mule-unicode-2500-33ff mule-unicode-0100-24ff mule-unicode-e000-ffff) mac-roman-decoder ((0 255))) (viscii (ascii vietnamese-viscii-lower vietnamese-viscii-upper) viet-viscii-nonascii-translation-table ((0 255))) (vietnamese-tcvn (ascii vietnamese-viscii-lower vietnamese-viscii-upper) viet-tcvn-nonascii-translation-table ((0 255))) (koi8-r (ascii cyrillic-iso8859-5) cyrillic-koi8-r-nonascii-translation-table ((32 255))) (alternativnyj (ascii cyrillic-iso8859-5) cyrillic-alternativnyj-nonascii-translation-table ((32 255))) (koi8-u (ascii cyrillic-iso8859-5 mule-unicode-0100-24ff) cyrillic-koi8-u-nonascii-translation-table ((32 255))) (big5 (ascii chinese-big5-1 chinese-big5-2) decode-big5-char ((32 127) ((161 254) 64 126 161 254))) (sjis (ascii katakana-jisx0201 japanese-jisx0208) decode-sjis-char ((32 127 161 223) ((129 159 224 239) 64 126 128 252))))) "\ |
| @@ -17207,7 +17247,7 @@ system which uses fontsets). | |||
| 17207 | ;;;;;; coding-system-translation-table-for-decode coding-system-pre-write-conversion | 17247 | ;;;;;; coding-system-translation-table-for-decode coding-system-pre-write-conversion |
| 17208 | ;;;;;; coding-system-post-read-conversion lookup-nested-alist set-nested-alist | 17248 | ;;;;;; coding-system-post-read-conversion lookup-nested-alist set-nested-alist |
| 17209 | ;;;;;; truncate-string-to-width store-substring string-to-sequence) | 17249 | ;;;;;; truncate-string-to-width store-substring string-to-sequence) |
| 17210 | ;;;;;; "mule-util" "international/mule-util.el" (17087 12558)) | 17250 | ;;;;;; "mule-util" "international/mule-util.el" (17107 37380)) |
| 17211 | ;;; Generated autoloads from international/mule-util.el | 17251 | ;;; Generated autoloads from international/mule-util.el |
| 17212 | 17252 | ||
| 17213 | (autoload (quote string-to-sequence) "mule-util" "\ | 17253 | (autoload (quote string-to-sequence) "mule-util" "\ |
| @@ -17336,7 +17376,7 @@ basis, this may not be accurate. | |||
| 17336 | ;;;*** | 17376 | ;;;*** |
| 17337 | 17377 | ||
| 17338 | ;;;### (autoloads (mwheel-install mouse-wheel-mode) "mwheel" "mwheel.el" | 17378 | ;;;### (autoloads (mwheel-install mouse-wheel-mode) "mwheel" "mwheel.el" |
| 17339 | ;;;;;; (17087 12440)) | 17379 | ;;;;;; (17107 37382)) |
| 17340 | ;;; Generated autoloads from mwheel.el | 17380 | ;;; Generated autoloads from mwheel.el |
| 17341 | 17381 | ||
| 17342 | (defvar mouse-wheel-mode nil "\ | 17382 | (defvar mouse-wheel-mode nil "\ |
| @@ -17347,6 +17387,8 @@ use either \\[customize] or the function `mouse-wheel-mode'.") | |||
| 17347 | 17387 | ||
| 17348 | (custom-autoload (quote mouse-wheel-mode) "mwheel") | 17388 | (custom-autoload (quote mouse-wheel-mode) "mwheel") |
| 17349 | 17389 | ||
| 17390 | (put (quote mouse-wheel-mode) (quote custom-set) (quote custom-set-minor-mode)) | ||
| 17391 | |||
| 17350 | (autoload (quote mouse-wheel-mode) "mwheel" "\ | 17392 | (autoload (quote mouse-wheel-mode) "mwheel" "\ |
| 17351 | Toggle mouse wheel support. | 17393 | Toggle mouse wheel support. |
| 17352 | With prefix argument ARG, turn on if positive, otherwise off. | 17394 | With prefix argument ARG, turn on if positive, otherwise off. |
| @@ -17364,7 +17406,7 @@ Enable mouse wheel support. | |||
| 17364 | ;;;### (autoloads (network-connection network-connection-to-service | 17406 | ;;;### (autoloads (network-connection network-connection-to-service |
| 17365 | ;;;;;; whois-reverse-lookup whois finger ftp dig dns-lookup-host | 17407 | ;;;;;; whois-reverse-lookup whois finger ftp dig dns-lookup-host |
| 17366 | ;;;;;; nslookup nslookup-host route arp netstat ipconfig ping traceroute) | 17408 | ;;;;;; nslookup nslookup-host route arp netstat ipconfig ping traceroute) |
| 17367 | ;;;;;; "net-utils" "net/net-utils.el" (17087 12564)) | 17409 | ;;;;;; "net-utils" "net/net-utils.el" (17107 37379)) |
| 17368 | ;;; Generated autoloads from net/net-utils.el | 17410 | ;;; Generated autoloads from net/net-utils.el |
| 17369 | 17411 | ||
| 17370 | (autoload (quote traceroute) "net-utils" "\ | 17412 | (autoload (quote traceroute) "net-utils" "\ |
| @@ -17460,7 +17502,7 @@ Open a network connection to HOST on PORT. | |||
| 17460 | ;;;;;; comment-kill comment-set-column comment-indent comment-indent-default | 17502 | ;;;;;; comment-kill comment-set-column comment-indent comment-indent-default |
| 17461 | ;;;;;; comment-normalize-vars comment-multi-line comment-padding | 17503 | ;;;;;; comment-normalize-vars comment-multi-line comment-padding |
| 17462 | ;;;;;; comment-style comment-column) "newcomment" "newcomment.el" | 17504 | ;;;;;; comment-style comment-column) "newcomment" "newcomment.el" |
| 17463 | ;;;;;; (17087 12564)) | 17505 | ;;;;;; (17107 37380)) |
| 17464 | ;;; Generated autoloads from newcomment.el | 17506 | ;;; Generated autoloads from newcomment.el |
| 17465 | 17507 | ||
| 17466 | (defalias (quote indent-for-comment) (quote comment-indent)) | 17508 | (defalias (quote indent-for-comment) (quote comment-indent)) |
| @@ -17642,7 +17684,7 @@ unless optional argument SOFT is non-nil. | |||
| 17642 | ;;;*** | 17684 | ;;;*** |
| 17643 | 17685 | ||
| 17644 | ;;;### (autoloads (nndiary-generate-nov-databases) "nndiary" "gnus/nndiary.el" | 17686 | ;;;### (autoloads (nndiary-generate-nov-databases) "nndiary" "gnus/nndiary.el" |
| 17645 | ;;;;;; (17087 12567)) | 17687 | ;;;;;; (17107 37379)) |
| 17646 | ;;; Generated autoloads from gnus/nndiary.el | 17688 | ;;; Generated autoloads from gnus/nndiary.el |
| 17647 | 17689 | ||
| 17648 | (autoload (quote nndiary-generate-nov-databases) "nndiary" "\ | 17690 | (autoload (quote nndiary-generate-nov-databases) "nndiary" "\ |
| @@ -17652,8 +17694,8 @@ Generate NOV databases in all nndiary directories. | |||
| 17652 | 17694 | ||
| 17653 | ;;;*** | 17695 | ;;;*** |
| 17654 | 17696 | ||
| 17655 | ;;;### (autoloads (nndoc-add-type) "nndoc" "gnus/nndoc.el" (17087 | 17697 | ;;;### (autoloads (nndoc-add-type) "nndoc" "gnus/nndoc.el" (17107 |
| 17656 | ;;;;;; 12567)) | 17698 | ;;;;;; 37379)) |
| 17657 | ;;; Generated autoloads from gnus/nndoc.el | 17699 | ;;; Generated autoloads from gnus/nndoc.el |
| 17658 | 17700 | ||
| 17659 | (autoload (quote nndoc-add-type) "nndoc" "\ | 17701 | (autoload (quote nndoc-add-type) "nndoc" "\ |
| @@ -17668,7 +17710,7 @@ symbol in the alist. | |||
| 17668 | ;;;*** | 17710 | ;;;*** |
| 17669 | 17711 | ||
| 17670 | ;;;### (autoloads (nnfolder-generate-active-file) "nnfolder" "gnus/nnfolder.el" | 17712 | ;;;### (autoloads (nnfolder-generate-active-file) "nnfolder" "gnus/nnfolder.el" |
| 17671 | ;;;;;; (17087 12570)) | 17713 | ;;;;;; (17107 37379)) |
| 17672 | ;;; Generated autoloads from gnus/nnfolder.el | 17714 | ;;; Generated autoloads from gnus/nnfolder.el |
| 17673 | 17715 | ||
| 17674 | (autoload (quote nnfolder-generate-active-file) "nnfolder" "\ | 17716 | (autoload (quote nnfolder-generate-active-file) "nnfolder" "\ |
| @@ -17680,7 +17722,7 @@ This command does not work if you use short group names. | |||
| 17680 | ;;;*** | 17722 | ;;;*** |
| 17681 | 17723 | ||
| 17682 | ;;;### (autoloads (nnkiboze-generate-groups) "nnkiboze" "gnus/nnkiboze.el" | 17724 | ;;;### (autoloads (nnkiboze-generate-groups) "nnkiboze" "gnus/nnkiboze.el" |
| 17683 | ;;;;;; (17087 12567)) | 17725 | ;;;;;; (17107 37379)) |
| 17684 | ;;; Generated autoloads from gnus/nnkiboze.el | 17726 | ;;; Generated autoloads from gnus/nnkiboze.el |
| 17685 | 17727 | ||
| 17686 | (autoload (quote nnkiboze-generate-groups) "nnkiboze" "\ | 17728 | (autoload (quote nnkiboze-generate-groups) "nnkiboze" "\ |
| @@ -17692,7 +17734,7 @@ Finds out what articles are to be part of the nnkiboze groups. | |||
| 17692 | ;;;*** | 17734 | ;;;*** |
| 17693 | 17735 | ||
| 17694 | ;;;### (autoloads (nnml-generate-nov-databases) "nnml" "gnus/nnml.el" | 17736 | ;;;### (autoloads (nnml-generate-nov-databases) "nnml" "gnus/nnml.el" |
| 17695 | ;;;;;; (17087 12567)) | 17737 | ;;;;;; (17107 37379)) |
| 17696 | ;;; Generated autoloads from gnus/nnml.el | 17738 | ;;; Generated autoloads from gnus/nnml.el |
| 17697 | 17739 | ||
| 17698 | (autoload (quote nnml-generate-nov-databases) "nnml" "\ | 17740 | (autoload (quote nnml-generate-nov-databases) "nnml" "\ |
| @@ -17703,7 +17745,7 @@ Generate NOV databases in all nnml directories. | |||
| 17703 | ;;;*** | 17745 | ;;;*** |
| 17704 | 17746 | ||
| 17705 | ;;;### (autoloads (nnsoup-revert-variables nnsoup-set-variables nnsoup-pack-replies) | 17747 | ;;;### (autoloads (nnsoup-revert-variables nnsoup-set-variables nnsoup-pack-replies) |
| 17706 | ;;;;;; "nnsoup" "gnus/nnsoup.el" (17087 12567)) | 17748 | ;;;;;; "nnsoup" "gnus/nnsoup.el" (17107 37379)) |
| 17707 | ;;; Generated autoloads from gnus/nnsoup.el | 17749 | ;;; Generated autoloads from gnus/nnsoup.el |
| 17708 | 17750 | ||
| 17709 | (autoload (quote nnsoup-pack-replies) "nnsoup" "\ | 17751 | (autoload (quote nnsoup-pack-replies) "nnsoup" "\ |
| @@ -17724,7 +17766,7 @@ Revert posting and mailing methods to the standard Emacs methods. | |||
| 17724 | ;;;*** | 17766 | ;;;*** |
| 17725 | 17767 | ||
| 17726 | ;;;### (autoloads (disable-command enable-command disabled-command-function) | 17768 | ;;;### (autoloads (disable-command enable-command disabled-command-function) |
| 17727 | ;;;;;; "novice" "novice.el" (17087 12542)) | 17769 | ;;;;;; "novice" "novice.el" (17107 37381)) |
| 17728 | ;;; Generated autoloads from novice.el | 17770 | ;;; Generated autoloads from novice.el |
| 17729 | 17771 | ||
| 17730 | (defvar disabled-command-function (quote disabled-command-function) "\ | 17772 | (defvar disabled-command-function (quote disabled-command-function) "\ |
| @@ -17758,7 +17800,7 @@ to future sessions. | |||
| 17758 | ;;;*** | 17800 | ;;;*** |
| 17759 | 17801 | ||
| 17760 | ;;;### (autoloads (nroff-mode) "nroff-mode" "textmodes/nroff-mode.el" | 17802 | ;;;### (autoloads (nroff-mode) "nroff-mode" "textmodes/nroff-mode.el" |
| 17761 | ;;;;;; (17087 12564)) | 17803 | ;;;;;; (17107 37381)) |
| 17762 | ;;; Generated autoloads from textmodes/nroff-mode.el | 17804 | ;;; Generated autoloads from textmodes/nroff-mode.el |
| 17763 | 17805 | ||
| 17764 | (autoload (quote nroff-mode) "nroff-mode" "\ | 17806 | (autoload (quote nroff-mode) "nroff-mode" "\ |
| @@ -17773,7 +17815,7 @@ closing requests for requests that are used in matched pairs. | |||
| 17773 | ;;;*** | 17815 | ;;;*** |
| 17774 | 17816 | ||
| 17775 | ;;;### (autoloads (octave-help) "octave-hlp" "progmodes/octave-hlp.el" | 17817 | ;;;### (autoloads (octave-help) "octave-hlp" "progmodes/octave-hlp.el" |
| 17776 | ;;;;;; (17087 12380)) | 17818 | ;;;;;; (17107 37381)) |
| 17777 | ;;; Generated autoloads from progmodes/octave-hlp.el | 17819 | ;;; Generated autoloads from progmodes/octave-hlp.el |
| 17778 | 17820 | ||
| 17779 | (autoload (quote octave-help) "octave-hlp" "\ | 17821 | (autoload (quote octave-help) "octave-hlp" "\ |
| @@ -17787,7 +17829,7 @@ If KEY is not a string, prompt for it with completion. | |||
| 17787 | ;;;*** | 17829 | ;;;*** |
| 17788 | 17830 | ||
| 17789 | ;;;### (autoloads (inferior-octave) "octave-inf" "progmodes/octave-inf.el" | 17831 | ;;;### (autoloads (inferior-octave) "octave-inf" "progmodes/octave-inf.el" |
| 17790 | ;;;;;; (17087 12570)) | 17832 | ;;;;;; (17107 37381)) |
| 17791 | ;;; Generated autoloads from progmodes/octave-inf.el | 17833 | ;;; Generated autoloads from progmodes/octave-inf.el |
| 17792 | 17834 | ||
| 17793 | (autoload (quote inferior-octave) "octave-inf" "\ | 17835 | (autoload (quote inferior-octave) "octave-inf" "\ |
| @@ -17810,7 +17852,7 @@ startup file, `~/.emacs-octave'. | |||
| 17810 | ;;;*** | 17852 | ;;;*** |
| 17811 | 17853 | ||
| 17812 | ;;;### (autoloads (octave-mode) "octave-mod" "progmodes/octave-mod.el" | 17854 | ;;;### (autoloads (octave-mode) "octave-mod" "progmodes/octave-mod.el" |
| 17813 | ;;;;;; (17087 12566)) | 17855 | ;;;;;; (17107 37382)) |
| 17814 | ;;; Generated autoloads from progmodes/octave-mod.el | 17856 | ;;; Generated autoloads from progmodes/octave-mod.el |
| 17815 | 17857 | ||
| 17816 | (autoload (quote octave-mode) "octave-mod" "\ | 17858 | (autoload (quote octave-mode) "octave-mod" "\ |
| @@ -17909,7 +17951,7 @@ including a reproducible test case and send the message. | |||
| 17909 | ;;;*** | 17951 | ;;;*** |
| 17910 | 17952 | ||
| 17911 | ;;;### (autoloads (edit-options list-options) "options" "obsolete/options.el" | 17953 | ;;;### (autoloads (edit-options list-options) "options" "obsolete/options.el" |
| 17912 | ;;;;;; (17087 12566)) | 17954 | ;;;;;; (17107 37382)) |
| 17913 | ;;; Generated autoloads from obsolete/options.el | 17955 | ;;; Generated autoloads from obsolete/options.el |
| 17914 | 17956 | ||
| 17915 | (autoload (quote list-options) "options" "\ | 17957 | (autoload (quote list-options) "options" "\ |
| @@ -17932,8 +17974,8 @@ The Custom feature is intended to make this obsolete. | |||
| 17932 | 17974 | ||
| 17933 | ;;;### (autoloads (orgtbl-mode turn-on-orgtbl org-remember-handler | 17975 | ;;;### (autoloads (orgtbl-mode turn-on-orgtbl org-remember-handler |
| 17934 | ;;;;;; org-remember-annotation org-store-link org-diary org-agenda | 17976 | ;;;;;; org-remember-annotation org-store-link org-diary org-agenda |
| 17935 | ;;;;;; org-agenda-mode org-mode) "org" "textmodes/org.el" (17087 | 17977 | ;;;;;; org-agenda-mode org-mode) "org" "textmodes/org.el" (17107 |
| 17936 | ;;;;;; 12570)) | 17978 | ;;;;;; 37381)) |
| 17937 | ;;; Generated autoloads from textmodes/org.el | 17979 | ;;; Generated autoloads from textmodes/org.el |
| 17938 | 17980 | ||
| 17939 | (autoload (quote org-mode) "org" "\ | 17981 | (autoload (quote org-mode) "org" "\ |
| @@ -17986,22 +18028,22 @@ listed in the diary. The function accepts arguments specifying what | |||
| 17986 | items should be listed. The following arguments are allowed: | 18028 | items should be listed. The following arguments are allowed: |
| 17987 | 18029 | ||
| 17988 | :timestamp List the headlines of items containing a date stamp or | 18030 | :timestamp List the headlines of items containing a date stamp or |
| 17989 | date range matching the selected date. Deadlines will | 18031 | date range matching the selected date. Deadlines will |
| 17990 | also be listed, on the expiration day. | 18032 | also be listed, on the expiration day. |
| 17991 | 18033 | ||
| 17992 | :deadline List any deadlines past due, or due within | 18034 | :deadline List any deadlines past due, or due within |
| 17993 | `org-deadline-warning-days'. The listing occurs only | 18035 | `org-deadline-warning-days'. The listing occurs only |
| 17994 | in the diary for *today*, not at any other date. If | 18036 | in the diary for *today*, not at any other date. If |
| 17995 | an entry is marked DONE, it is no longer listed. | 18037 | an entry is marked DONE, it is no longer listed. |
| 17996 | 18038 | ||
| 17997 | :scheduled List all items which are scheduled for the given date. | 18039 | :scheduled List all items which are scheduled for the given date. |
| 17998 | The diary for *today* also contains items which were | 18040 | The diary for *today* also contains items which were |
| 17999 | scheduled earlier and are not yet marked DONE. | 18041 | scheduled earlier and are not yet marked DONE. |
| 18000 | 18042 | ||
| 18001 | :todo List all TODO items from the org-file. This may be a | 18043 | :todo List all TODO items from the org-file. This may be a |
| 18002 | long list - so this is not turned on by default. | 18044 | long list - so this is not turned on by default. |
| 18003 | Like deadlines, these entries only show up in the | 18045 | Like deadlines, these entries only show up in the |
| 18004 | diary for *today*, not at any other date. | 18046 | diary for *today*, not at any other date. |
| 18005 | 18047 | ||
| 18006 | The call in the diary file should look like this: | 18048 | The call in the diary file should look like this: |
| 18007 | 18049 | ||
| @@ -18057,7 +18099,7 @@ Key Cursor position Note gets inserted | |||
| 18057 | RET buffer-start as level 2 heading at end of file | 18099 | RET buffer-start as level 2 heading at end of file |
| 18058 | RET on headline as sublevel of the heading at cursor | 18100 | RET on headline as sublevel of the heading at cursor |
| 18059 | RET no heading at cursor position, level taken from context. | 18101 | RET no heading at cursor position, level taken from context. |
| 18060 | Or use prefix arg to specify level manually. | 18102 | Or use prefix arg to specify level manually. |
| 18061 | <left> on headline as same level, before current heading | 18103 | <left> on headline as same level, before current heading |
| 18062 | <right> on headline as same level, after current heading | 18104 | <right> on headline as same level, after current heading |
| 18063 | 18105 | ||
| @@ -18091,7 +18133,7 @@ The `org-mode' table editor as a minor mode for use in other modes. | |||
| 18091 | ;;;*** | 18133 | ;;;*** |
| 18092 | 18134 | ||
| 18093 | ;;;### (autoloads (outline-minor-mode outline-mode) "outline" "outline.el" | 18135 | ;;;### (autoloads (outline-minor-mode outline-mode) "outline" "outline.el" |
| 18094 | ;;;;;; (17087 12566)) | 18136 | ;;;;;; (17107 37380)) |
| 18095 | ;;; Generated autoloads from outline.el | 18137 | ;;; Generated autoloads from outline.el |
| 18096 | 18138 | ||
| 18097 | (autoload (quote outline-mode) "outline" "\ | 18139 | (autoload (quote outline-mode) "outline" "\ |
| @@ -18146,7 +18188,7 @@ See the command `outline-mode' for more information on this mode. | |||
| 18146 | 18188 | ||
| 18147 | ;;;*** | 18189 | ;;;*** |
| 18148 | 18190 | ||
| 18149 | ;;;### (autoloads (show-paren-mode) "paren" "paren.el" (17087 12570)) | 18191 | ;;;### (autoloads (show-paren-mode) "paren" "paren.el" (17107 37380)) |
| 18150 | ;;; Generated autoloads from paren.el | 18192 | ;;; Generated autoloads from paren.el |
| 18151 | 18193 | ||
| 18152 | (defvar show-paren-mode nil "\ | 18194 | (defvar show-paren-mode nil "\ |
| @@ -18157,6 +18199,8 @@ use either \\[customize] or the function `show-paren-mode'.") | |||
| 18157 | 18199 | ||
| 18158 | (custom-autoload (quote show-paren-mode) "paren") | 18200 | (custom-autoload (quote show-paren-mode) "paren") |
| 18159 | 18201 | ||
| 18202 | (put (quote show-paren-mode) (quote custom-set) (quote custom-set-minor-mode)) | ||
| 18203 | |||
| 18160 | (autoload (quote show-paren-mode) "paren" "\ | 18204 | (autoload (quote show-paren-mode) "paren" "\ |
| 18161 | Toggle Show Paren mode. | 18205 | Toggle Show Paren mode. |
| 18162 | With prefix ARG, turn Show Paren mode on if and only if ARG is positive. | 18206 | With prefix ARG, turn Show Paren mode on if and only if ARG is positive. |
| @@ -18170,7 +18214,7 @@ in `show-paren-style' after `show-paren-delay' seconds of Emacs idle time. | |||
| 18170 | ;;;*** | 18214 | ;;;*** |
| 18171 | 18215 | ||
| 18172 | ;;;### (autoloads (parse-time-string) "parse-time" "calendar/parse-time.el" | 18216 | ;;;### (autoloads (parse-time-string) "parse-time" "calendar/parse-time.el" |
| 18173 | ;;;;;; (17087 12379)) | 18217 | ;;;;;; (17107 37380)) |
| 18174 | ;;; Generated autoloads from calendar/parse-time.el | 18218 | ;;; Generated autoloads from calendar/parse-time.el |
| 18175 | 18219 | ||
| 18176 | (autoload (quote parse-time-string) "parse-time" "\ | 18220 | (autoload (quote parse-time-string) "parse-time" "\ |
| @@ -18182,8 +18226,8 @@ unknown are returned as nil. | |||
| 18182 | 18226 | ||
| 18183 | ;;;*** | 18227 | ;;;*** |
| 18184 | 18228 | ||
| 18185 | ;;;### (autoloads (pascal-mode) "pascal" "progmodes/pascal.el" (17087 | 18229 | ;;;### (autoloads (pascal-mode) "pascal" "progmodes/pascal.el" (17107 |
| 18186 | ;;;;;; 12566)) | 18230 | ;;;;;; 37381)) |
| 18187 | ;;; Generated autoloads from progmodes/pascal.el | 18231 | ;;; Generated autoloads from progmodes/pascal.el |
| 18188 | 18232 | ||
| 18189 | (autoload (quote pascal-mode) "pascal" "\ | 18233 | (autoload (quote pascal-mode) "pascal" "\ |
| @@ -18236,7 +18280,7 @@ no args, if that value is non-nil. | |||
| 18236 | ;;;*** | 18280 | ;;;*** |
| 18237 | 18281 | ||
| 18238 | ;;;### (autoloads (pc-bindings-mode) "pc-mode" "emulation/pc-mode.el" | 18282 | ;;;### (autoloads (pc-bindings-mode) "pc-mode" "emulation/pc-mode.el" |
| 18239 | ;;;;;; (17087 12380)) | 18283 | ;;;;;; (17107 37380)) |
| 18240 | ;;; Generated autoloads from emulation/pc-mode.el | 18284 | ;;; Generated autoloads from emulation/pc-mode.el |
| 18241 | 18285 | ||
| 18242 | (autoload (quote pc-bindings-mode) "pc-mode" "\ | 18286 | (autoload (quote pc-bindings-mode) "pc-mode" "\ |
| @@ -18254,7 +18298,7 @@ C-Escape does list-buffers. | |||
| 18254 | ;;;*** | 18298 | ;;;*** |
| 18255 | 18299 | ||
| 18256 | ;;;### (autoloads (pc-selection-mode pc-selection-mode) "pc-select" | 18300 | ;;;### (autoloads (pc-selection-mode pc-selection-mode) "pc-select" |
| 18257 | ;;;;;; "emulation/pc-select.el" (17087 12569)) | 18301 | ;;;;;; "emulation/pc-select.el" (17107 37380)) |
| 18258 | ;;; Generated autoloads from emulation/pc-select.el | 18302 | ;;; Generated autoloads from emulation/pc-select.el |
| 18259 | 18303 | ||
| 18260 | (defvar pc-selection-mode nil "\ | 18304 | (defvar pc-selection-mode nil "\ |
| @@ -18265,6 +18309,8 @@ use either \\[customize] or the function `pc-selection-mode'.") | |||
| 18265 | 18309 | ||
| 18266 | (custom-autoload (quote pc-selection-mode) "pc-select") | 18310 | (custom-autoload (quote pc-selection-mode) "pc-select") |
| 18267 | 18311 | ||
| 18312 | (put (quote pc-selection-mode) (quote custom-set) (quote custom-set-minor-mode)) | ||
| 18313 | |||
| 18268 | (autoload (quote pc-selection-mode) "pc-select" "\ | 18314 | (autoload (quote pc-selection-mode) "pc-select" "\ |
| 18269 | Change mark behavior to emulate Motif, MAC or MS-Windows cut and paste style. | 18315 | Change mark behavior to emulate Motif, MAC or MS-Windows cut and paste style. |
| 18270 | 18316 | ||
| @@ -18329,8 +18375,8 @@ you must modify it using \\[customize] or \\[pc-selection-mode].") | |||
| 18329 | 18375 | ||
| 18330 | ;;;*** | 18376 | ;;;*** |
| 18331 | 18377 | ||
| 18332 | ;;;### (autoloads (pcomplete/cvs) "pcmpl-cvs" "pcmpl-cvs.el" (17087 | 18378 | ;;;### (autoloads (pcomplete/cvs) "pcmpl-cvs" "pcmpl-cvs.el" (17107 |
| 18333 | ;;;;;; 12380)) | 18379 | ;;;;;; 37380)) |
| 18334 | ;;; Generated autoloads from pcmpl-cvs.el | 18380 | ;;; Generated autoloads from pcmpl-cvs.el |
| 18335 | 18381 | ||
| 18336 | (autoload (quote pcomplete/cvs) "pcmpl-cvs" "\ | 18382 | (autoload (quote pcomplete/cvs) "pcmpl-cvs" "\ |
| @@ -18341,7 +18387,7 @@ Completion rules for the `cvs' command. | |||
| 18341 | ;;;*** | 18387 | ;;;*** |
| 18342 | 18388 | ||
| 18343 | ;;;### (autoloads (pcomplete/tar pcomplete/make pcomplete/bzip2 pcomplete/gzip) | 18389 | ;;;### (autoloads (pcomplete/tar pcomplete/make pcomplete/bzip2 pcomplete/gzip) |
| 18344 | ;;;;;; "pcmpl-gnu" "pcmpl-gnu.el" (17087 12380)) | 18390 | ;;;;;; "pcmpl-gnu" "pcmpl-gnu.el" (17107 37380)) |
| 18345 | ;;; Generated autoloads from pcmpl-gnu.el | 18391 | ;;; Generated autoloads from pcmpl-gnu.el |
| 18346 | 18392 | ||
| 18347 | (autoload (quote pcomplete/gzip) "pcmpl-gnu" "\ | 18393 | (autoload (quote pcomplete/gzip) "pcmpl-gnu" "\ |
| @@ -18369,7 +18415,7 @@ Completion for the GNU tar utility. | |||
| 18369 | ;;;*** | 18415 | ;;;*** |
| 18370 | 18416 | ||
| 18371 | ;;;### (autoloads (pcomplete/mount pcomplete/umount pcomplete/kill) | 18417 | ;;;### (autoloads (pcomplete/mount pcomplete/umount pcomplete/kill) |
| 18372 | ;;;;;; "pcmpl-linux" "pcmpl-linux.el" (17087 12380)) | 18418 | ;;;;;; "pcmpl-linux" "pcmpl-linux.el" (17107 37380)) |
| 18373 | ;;; Generated autoloads from pcmpl-linux.el | 18419 | ;;; Generated autoloads from pcmpl-linux.el |
| 18374 | 18420 | ||
| 18375 | (autoload (quote pcomplete/kill) "pcmpl-linux" "\ | 18421 | (autoload (quote pcomplete/kill) "pcmpl-linux" "\ |
| @@ -18389,8 +18435,8 @@ Completion for GNU/Linux `mount'. | |||
| 18389 | 18435 | ||
| 18390 | ;;;*** | 18436 | ;;;*** |
| 18391 | 18437 | ||
| 18392 | ;;;### (autoloads (pcomplete/rpm) "pcmpl-rpm" "pcmpl-rpm.el" (17087 | 18438 | ;;;### (autoloads (pcomplete/rpm) "pcmpl-rpm" "pcmpl-rpm.el" (17107 |
| 18393 | ;;;;;; 12380)) | 18439 | ;;;;;; 37380)) |
| 18394 | ;;; Generated autoloads from pcmpl-rpm.el | 18440 | ;;; Generated autoloads from pcmpl-rpm.el |
| 18395 | 18441 | ||
| 18396 | (autoload (quote pcomplete/rpm) "pcmpl-rpm" "\ | 18442 | (autoload (quote pcomplete/rpm) "pcmpl-rpm" "\ |
| @@ -18406,7 +18452,7 @@ You can use \\[eshell-report-bug] to do so. | |||
| 18406 | 18452 | ||
| 18407 | ;;;### (autoloads (pcomplete/chgrp pcomplete/chown pcomplete/which | 18453 | ;;;### (autoloads (pcomplete/chgrp pcomplete/chown pcomplete/which |
| 18408 | ;;;;;; pcomplete/xargs pcomplete/rm pcomplete/rmdir pcomplete/cd) | 18454 | ;;;;;; pcomplete/xargs pcomplete/rm pcomplete/rmdir pcomplete/cd) |
| 18409 | ;;;;;; "pcmpl-unix" "pcmpl-unix.el" (17087 12380)) | 18455 | ;;;;;; "pcmpl-unix" "pcmpl-unix.el" (17107 37381)) |
| 18410 | ;;; Generated autoloads from pcmpl-unix.el | 18456 | ;;; Generated autoloads from pcmpl-unix.el |
| 18411 | 18457 | ||
| 18412 | (autoload (quote pcomplete/cd) "pcmpl-unix" "\ | 18458 | (autoload (quote pcomplete/cd) "pcmpl-unix" "\ |
| @@ -18452,8 +18498,8 @@ Completion for the `chgrp' command. | |||
| 18452 | 18498 | ||
| 18453 | ;;;### (autoloads (pcomplete-shell-setup pcomplete-comint-setup pcomplete-list | 18499 | ;;;### (autoloads (pcomplete-shell-setup pcomplete-comint-setup pcomplete-list |
| 18454 | ;;;;;; pcomplete-help pcomplete-expand pcomplete-continue pcomplete-expand-and-complete | 18500 | ;;;;;; pcomplete-help pcomplete-expand pcomplete-continue pcomplete-expand-and-complete |
| 18455 | ;;;;;; pcomplete-reverse pcomplete) "pcomplete" "pcomplete.el" (17087 | 18501 | ;;;;;; pcomplete-reverse pcomplete) "pcomplete" "pcomplete.el" (17107 |
| 18456 | ;;;;;; 12453)) | 18502 | ;;;;;; 37380)) |
| 18457 | ;;; Generated autoloads from pcomplete.el | 18503 | ;;; Generated autoloads from pcomplete.el |
| 18458 | 18504 | ||
| 18459 | (autoload (quote pcomplete) "pcomplete" "\ | 18505 | (autoload (quote pcomplete) "pcomplete" "\ |
| @@ -18512,7 +18558,7 @@ Setup shell-mode to use pcomplete. | |||
| 18512 | 18558 | ||
| 18513 | ;;;### (autoloads (cvs-dired-use-hook cvs-dired-action cvs-status | 18559 | ;;;### (autoloads (cvs-dired-use-hook cvs-dired-action cvs-status |
| 18514 | ;;;;;; cvs-update cvs-examine cvs-quickdir cvs-checkout) "pcvs" | 18560 | ;;;;;; cvs-update cvs-examine cvs-quickdir cvs-checkout) "pcvs" |
| 18515 | ;;;;;; "pcvs.el" (17087 12570)) | 18561 | ;;;;;; "pcvs.el" (17107 37382)) |
| 18516 | ;;; Generated autoloads from pcvs.el | 18562 | ;;; Generated autoloads from pcvs.el |
| 18517 | 18563 | ||
| 18518 | (autoload (quote cvs-checkout) "pcvs" "\ | 18564 | (autoload (quote cvs-checkout) "pcvs" "\ |
| @@ -18589,7 +18635,7 @@ The exact behavior is determined also by `cvs-dired-use-hook'." (when (stringp d | |||
| 18589 | 18635 | ||
| 18590 | ;;;*** | 18636 | ;;;*** |
| 18591 | 18637 | ||
| 18592 | ;;;### (autoloads nil "pcvs-defs" "pcvs-defs.el" (17087 12578)) | 18638 | ;;;### (autoloads nil "pcvs-defs" "pcvs-defs.el" (17107 37380)) |
| 18593 | ;;; Generated autoloads from pcvs-defs.el | 18639 | ;;; Generated autoloads from pcvs-defs.el |
| 18594 | 18640 | ||
| 18595 | (defvar cvs-global-menu (let ((m (make-sparse-keymap "PCL-CVS"))) (define-key m [status] (quote (menu-item "Directory Status" cvs-status :help "A more verbose status of a workarea"))) (define-key m [checkout] (quote (menu-item "Checkout Module" cvs-checkout :help "Check out a module from the repository"))) (define-key m [update] (quote (menu-item "Update Directory" cvs-update :help "Fetch updates from the repository"))) (define-key m [examine] (quote (menu-item "Examine Directory" cvs-examine :help "Examine the current state of a workarea"))) (fset (quote cvs-global-menu) m))) | 18641 | (defvar cvs-global-menu (let ((m (make-sparse-keymap "PCL-CVS"))) (define-key m [status] (quote (menu-item "Directory Status" cvs-status :help "A more verbose status of a workarea"))) (define-key m [checkout] (quote (menu-item "Checkout Module" cvs-checkout :help "Check out a module from the repository"))) (define-key m [update] (quote (menu-item "Update Directory" cvs-update :help "Fetch updates from the repository"))) (define-key m [examine] (quote (menu-item "Examine Directory" cvs-examine :help "Examine the current state of a workarea"))) (fset (quote cvs-global-menu) m))) |
| @@ -18597,7 +18643,7 @@ The exact behavior is determined also by `cvs-dired-use-hook'." (when (stringp d | |||
| 18597 | ;;;*** | 18643 | ;;;*** |
| 18598 | 18644 | ||
| 18599 | ;;;### (autoloads (perl-mode) "perl-mode" "progmodes/perl-mode.el" | 18645 | ;;;### (autoloads (perl-mode) "perl-mode" "progmodes/perl-mode.el" |
| 18600 | ;;;;;; (17087 12564)) | 18646 | ;;;;;; (17107 37382)) |
| 18601 | ;;; Generated autoloads from progmodes/perl-mode.el | 18647 | ;;; Generated autoloads from progmodes/perl-mode.el |
| 18602 | 18648 | ||
| 18603 | (autoload (quote perl-mode) "perl-mode" "\ | 18649 | (autoload (quote perl-mode) "perl-mode" "\ |
| @@ -18655,7 +18701,7 @@ Turning on Perl mode runs the normal hook `perl-mode-hook'. | |||
| 18655 | ;;;### (autoloads (pgg-snarf-keys pgg-snarf-keys-region pgg-insert-key | 18701 | ;;;### (autoloads (pgg-snarf-keys pgg-snarf-keys-region pgg-insert-key |
| 18656 | ;;;;;; pgg-verify pgg-verify-region pgg-sign pgg-sign-region pgg-decrypt | 18702 | ;;;;;; pgg-verify pgg-verify-region pgg-sign pgg-sign-region pgg-decrypt |
| 18657 | ;;;;;; pgg-decrypt-region pgg-encrypt pgg-encrypt-region) "pgg" | 18703 | ;;;;;; pgg-decrypt-region pgg-encrypt pgg-encrypt-region) "pgg" |
| 18658 | ;;;;;; "gnus/pgg.el" (17087 12567)) | 18704 | ;;;;;; "gnus/pgg.el" (17107 37379)) |
| 18659 | ;;; Generated autoloads from gnus/pgg.el | 18705 | ;;; Generated autoloads from gnus/pgg.el |
| 18660 | 18706 | ||
| 18661 | (autoload (quote pgg-encrypt-region) "pgg" "\ | 18707 | (autoload (quote pgg-encrypt-region) "pgg" "\ |
| @@ -18743,7 +18789,7 @@ Import public keys in the current buffer. | |||
| 18743 | ;;;*** | 18789 | ;;;*** |
| 18744 | 18790 | ||
| 18745 | ;;;### (autoloads (picture-mode) "picture" "textmodes/picture.el" | 18791 | ;;;### (autoloads (picture-mode) "picture" "textmodes/picture.el" |
| 18746 | ;;;;;; (17087 12380)) | 18792 | ;;;;;; (17107 37381)) |
| 18747 | ;;; Generated autoloads from textmodes/picture.el | 18793 | ;;; Generated autoloads from textmodes/picture.el |
| 18748 | 18794 | ||
| 18749 | (autoload (quote picture-mode) "picture" "\ | 18795 | (autoload (quote picture-mode) "picture" "\ |
| @@ -18815,7 +18861,7 @@ they are not defaultly assigned to keys. | |||
| 18815 | ;;;*** | 18861 | ;;;*** |
| 18816 | 18862 | ||
| 18817 | ;;;### (autoloads (po-find-file-coding-system) "po" "textmodes/po.el" | 18863 | ;;;### (autoloads (po-find-file-coding-system) "po" "textmodes/po.el" |
| 18818 | ;;;;;; (17087 12554)) | 18864 | ;;;;;; (17107 37381)) |
| 18819 | ;;; Generated autoloads from textmodes/po.el | 18865 | ;;; Generated autoloads from textmodes/po.el |
| 18820 | 18866 | ||
| 18821 | (autoload (quote po-find-file-coding-system) "po" "\ | 18867 | (autoload (quote po-find-file-coding-system) "po" "\ |
| @@ -18826,7 +18872,7 @@ Called through `file-coding-system-alist', before the file is visited for real. | |||
| 18826 | 18872 | ||
| 18827 | ;;;*** | 18873 | ;;;*** |
| 18828 | 18874 | ||
| 18829 | ;;;### (autoloads (pong) "pong" "play/pong.el" (17087 12558)) | 18875 | ;;;### (autoloads (pong) "pong" "play/pong.el" (17107 37380)) |
| 18830 | ;;; Generated autoloads from play/pong.el | 18876 | ;;; Generated autoloads from play/pong.el |
| 18831 | 18877 | ||
| 18832 | (autoload (quote pong) "pong" "\ | 18878 | (autoload (quote pong) "pong" "\ |
| @@ -18843,7 +18889,7 @@ pong-mode keybindings:\\<pong-mode-map> | |||
| 18843 | ;;;*** | 18889 | ;;;*** |
| 18844 | 18890 | ||
| 18845 | ;;;### (autoloads (pp-eval-last-sexp pp-eval-expression pp pp-buffer | 18891 | ;;;### (autoloads (pp-eval-last-sexp pp-eval-expression pp pp-buffer |
| 18846 | ;;;;;; pp-to-string) "pp" "emacs-lisp/pp.el" (17087 12391)) | 18892 | ;;;;;; pp-to-string) "pp" "emacs-lisp/pp.el" (17107 37381)) |
| 18847 | ;;; Generated autoloads from emacs-lisp/pp.el | 18893 | ;;; Generated autoloads from emacs-lisp/pp.el |
| 18848 | 18894 | ||
| 18849 | (autoload (quote pp-to-string) "pp" "\ | 18895 | (autoload (quote pp-to-string) "pp" "\ |
| @@ -18901,7 +18947,7 @@ Ignores leading comment characters. | |||
| 18901 | ;;;;;; pr-ps-buffer-print pr-ps-buffer-using-ghostscript pr-ps-buffer-preview | 18947 | ;;;;;; pr-ps-buffer-print pr-ps-buffer-using-ghostscript pr-ps-buffer-preview |
| 18902 | ;;;;;; pr-ps-directory-ps-print pr-ps-directory-print pr-ps-directory-using-ghostscript | 18948 | ;;;;;; pr-ps-directory-ps-print pr-ps-directory-print pr-ps-directory-using-ghostscript |
| 18903 | ;;;;;; pr-ps-directory-preview pr-interface) "printing" "printing.el" | 18949 | ;;;;;; pr-ps-directory-preview pr-interface) "printing" "printing.el" |
| 18904 | ;;;;;; (17087 12570)) | 18950 | ;;;;;; (17107 37380)) |
| 18905 | ;;; Generated autoloads from printing.el | 18951 | ;;; Generated autoloads from printing.el |
| 18906 | 18952 | ||
| 18907 | (autoload (quote pr-interface) "printing" "\ | 18953 | (autoload (quote pr-interface) "printing" "\ |
| @@ -19489,7 +19535,7 @@ are both set to t. | |||
| 19489 | ;;;*** | 19535 | ;;;*** |
| 19490 | 19536 | ||
| 19491 | ;;;### (autoloads (run-prolog prolog-mode) "prolog" "progmodes/prolog.el" | 19537 | ;;;### (autoloads (run-prolog prolog-mode) "prolog" "progmodes/prolog.el" |
| 19492 | ;;;;;; (17087 12564)) | 19538 | ;;;;;; (17107 37381)) |
| 19493 | ;;; Generated autoloads from progmodes/prolog.el | 19539 | ;;; Generated autoloads from progmodes/prolog.el |
| 19494 | 19540 | ||
| 19495 | (autoload (quote prolog-mode) "prolog" "\ | 19541 | (autoload (quote prolog-mode) "prolog" "\ |
| @@ -19509,7 +19555,7 @@ Run an inferior Prolog process, input and output via buffer *prolog*. | |||
| 19509 | 19555 | ||
| 19510 | ;;;*** | 19556 | ;;;*** |
| 19511 | 19557 | ||
| 19512 | ;;;### (autoloads nil "ps-bdf" "ps-bdf.el" (17087 12380)) | 19558 | ;;;### (autoloads nil "ps-bdf" "ps-bdf.el" (17107 37381)) |
| 19513 | ;;; Generated autoloads from ps-bdf.el | 19559 | ;;; Generated autoloads from ps-bdf.el |
| 19514 | 19560 | ||
| 19515 | (defvar bdf-directory-list (if (memq system-type (quote (ms-dos windows-nt))) (list (expand-file-name "fonts/bdf" installation-directory)) (quote ("/usr/local/share/emacs/fonts/bdf"))) "\ | 19561 | (defvar bdf-directory-list (if (memq system-type (quote (ms-dos windows-nt))) (list (expand-file-name "fonts/bdf" installation-directory)) (quote ("/usr/local/share/emacs/fonts/bdf"))) "\ |
| @@ -19518,8 +19564,8 @@ The default value is '(\"/usr/local/share/emacs/fonts/bdf\").") | |||
| 19518 | 19564 | ||
| 19519 | ;;;*** | 19565 | ;;;*** |
| 19520 | 19566 | ||
| 19521 | ;;;### (autoloads (ps-mode) "ps-mode" "progmodes/ps-mode.el" (17087 | 19567 | ;;;### (autoloads (ps-mode) "ps-mode" "progmodes/ps-mode.el" (17107 |
| 19522 | ;;;;;; 12575)) | 19568 | ;;;;;; 37382)) |
| 19523 | ;;; Generated autoloads from progmodes/ps-mode.el | 19569 | ;;; Generated autoloads from progmodes/ps-mode.el |
| 19524 | 19570 | ||
| 19525 | (autoload (quote ps-mode) "ps-mode" "\ | 19571 | (autoload (quote ps-mode) "ps-mode" "\ |
| @@ -19568,7 +19614,7 @@ Typing \\<ps-run-mode-map>\\[ps-run-goto-error] when the cursor is at the number | |||
| 19568 | ;;;### (autoloads (ps-mule-begin-page ps-mule-begin-job ps-mule-encode-header-string | 19614 | ;;;### (autoloads (ps-mule-begin-page ps-mule-begin-job ps-mule-encode-header-string |
| 19569 | ;;;;;; ps-mule-initialize ps-mule-plot-composition ps-mule-plot-string | 19615 | ;;;;;; ps-mule-initialize ps-mule-plot-composition ps-mule-plot-string |
| 19570 | ;;;;;; ps-mule-set-ascii-font ps-mule-prepare-ascii-font ps-multibyte-buffer) | 19616 | ;;;;;; ps-mule-set-ascii-font ps-mule-prepare-ascii-font ps-multibyte-buffer) |
| 19571 | ;;;;;; "ps-mule" "ps-mule.el" (17087 12528)) | 19617 | ;;;;;; "ps-mule" "ps-mule.el" (17107 37380)) |
| 19572 | ;;; Generated autoloads from ps-mule.el | 19618 | ;;; Generated autoloads from ps-mule.el |
| 19573 | 19619 | ||
| 19574 | (defvar ps-multibyte-buffer nil "\ | 19620 | (defvar ps-multibyte-buffer nil "\ |
| @@ -19689,8 +19735,8 @@ Not documented | |||
| 19689 | ;;;;;; ps-spool-region ps-spool-buffer-with-faces ps-spool-buffer | 19735 | ;;;;;; ps-spool-region ps-spool-buffer-with-faces ps-spool-buffer |
| 19690 | ;;;;;; ps-print-region-with-faces ps-print-region ps-print-buffer-with-faces | 19736 | ;;;;;; ps-print-region-with-faces ps-print-region ps-print-buffer-with-faces |
| 19691 | ;;;;;; ps-print-buffer ps-print-customize ps-print-color-p ps-paper-type | 19737 | ;;;;;; ps-print-buffer ps-print-customize ps-print-color-p ps-paper-type |
| 19692 | ;;;;;; ps-page-dimensions-database) "ps-print" "ps-print.el" (17087 | 19738 | ;;;;;; ps-page-dimensions-database) "ps-print" "ps-print.el" (17107 |
| 19693 | ;;;;;; 12582)) | 19739 | ;;;;;; 37380)) |
| 19694 | ;;; Generated autoloads from ps-print.el | 19740 | ;;; Generated autoloads from ps-print.el |
| 19695 | 19741 | ||
| 19696 | (defvar ps-page-dimensions-database (list (list (quote a4) (/ (* 72 21.0) 2.54) (/ (* 72 29.7) 2.54) "A4") (list (quote a3) (/ (* 72 29.7) 2.54) (/ (* 72 42.0) 2.54) "A3") (list (quote letter) (* 72 8.5) (* 72 11.0) "Letter") (list (quote legal) (* 72 8.5) (* 72 14.0) "Legal") (list (quote letter-small) (* 72 7.68) (* 72 10.16) "LetterSmall") (list (quote tabloid) (* 72 11.0) (* 72 17.0) "Tabloid") (list (quote ledger) (* 72 17.0) (* 72 11.0) "Ledger") (list (quote statement) (* 72 5.5) (* 72 8.5) "Statement") (list (quote executive) (* 72 7.5) (* 72 10.0) "Executive") (list (quote a4small) (* 72 7.47) (* 72 10.85) "A4Small") (list (quote b4) (* 72 10.125) (* 72 14.33) "B4") (list (quote b5) (* 72 7.16) (* 72 10.125) "B5")) "\ | 19742 | (defvar ps-page-dimensions-database (list (list (quote a4) (/ (* 72 21.0) 2.54) (/ (* 72 29.7) 2.54) "A4") (list (quote a3) (/ (* 72 29.7) 2.54) (/ (* 72 42.0) 2.54) "A3") (list (quote letter) (* 72 8.5) (* 72 11.0) "Letter") (list (quote legal) (* 72 8.5) (* 72 14.0) "Legal") (list (quote letter-small) (* 72 7.68) (* 72 10.16) "LetterSmall") (list (quote tabloid) (* 72 11.0) (* 72 17.0) "Tabloid") (list (quote ledger) (* 72 17.0) (* 72 11.0) "Ledger") (list (quote statement) (* 72 5.5) (* 72 8.5) "Statement") (list (quote executive) (* 72 7.5) (* 72 10.0) "Executive") (list (quote a4small) (* 72 7.47) (* 72 10.85) "A4Small") (list (quote b4) (* 72 10.125) (* 72 14.33) "B4") (list (quote b5) (* 72 7.16) (* 72 10.125) "B5")) "\ |
| @@ -19887,7 +19933,7 @@ If EXTENSION is any other symbol, it is ignored. | |||
| 19887 | ;;;*** | 19933 | ;;;*** |
| 19888 | 19934 | ||
| 19889 | ;;;### (autoloads (jython-mode python-mode run-python) "python" "progmodes/python.el" | 19935 | ;;;### (autoloads (jython-mode python-mode run-python) "python" "progmodes/python.el" |
| 19890 | ;;;;;; (17087 12542)) | 19936 | ;;;;;; (17107 37381)) |
| 19891 | ;;; Generated autoloads from progmodes/python.el | 19937 | ;;; Generated autoloads from progmodes/python.el |
| 19892 | 19938 | ||
| 19893 | (add-to-list (quote interpreter-mode-alist) (quote ("jython" . jython-mode))) | 19939 | (add-to-list (quote interpreter-mode-alist) (quote ("jython" . jython-mode))) |
| @@ -19951,7 +19997,7 @@ Runs `jython-mode-hook' after `python-mode-hook'. | |||
| 19951 | ;;;*** | 19997 | ;;;*** |
| 19952 | 19998 | ||
| 19953 | ;;;### (autoloads (quoted-printable-decode-region) "qp" "gnus/qp.el" | 19999 | ;;;### (autoloads (quoted-printable-decode-region) "qp" "gnus/qp.el" |
| 19954 | ;;;;;; (17087 12567)) | 20000 | ;;;;;; (17107 37379)) |
| 19955 | ;;; Generated autoloads from gnus/qp.el | 20001 | ;;; Generated autoloads from gnus/qp.el |
| 19956 | 20002 | ||
| 19957 | (autoload (quote quoted-printable-decode-region) "qp" "\ | 20003 | (autoload (quote quoted-printable-decode-region) "qp" "\ |
| @@ -19974,7 +20020,7 @@ them into characters should be done separately. | |||
| 19974 | ;;;;;; quail-defrule quail-install-decode-map quail-install-map | 20020 | ;;;;;; quail-defrule quail-install-decode-map quail-install-map |
| 19975 | ;;;;;; quail-define-rules quail-show-keyboard-layout quail-set-keyboard-layout | 20021 | ;;;;;; quail-define-rules quail-show-keyboard-layout quail-set-keyboard-layout |
| 19976 | ;;;;;; quail-define-package quail-use-package quail-title) "quail" | 20022 | ;;;;;; quail-define-package quail-use-package quail-title) "quail" |
| 19977 | ;;;;;; "international/quail.el" (17087 12558)) | 20023 | ;;;;;; "international/quail.el" (17107 37380)) |
| 19978 | ;;; Generated autoloads from international/quail.el | 20024 | ;;; Generated autoloads from international/quail.el |
| 19979 | 20025 | ||
| 19980 | (autoload (quote quail-title) "quail" "\ | 20026 | (autoload (quote quail-title) "quail" "\ |
| @@ -20205,8 +20251,8 @@ of each directory. | |||
| 20205 | 20251 | ||
| 20206 | ;;;### (autoloads (quickurl-list quickurl-list-mode quickurl-edit-urls | 20252 | ;;;### (autoloads (quickurl-list quickurl-list-mode quickurl-edit-urls |
| 20207 | ;;;;;; quickurl-browse-url-ask quickurl-browse-url quickurl-add-url | 20253 | ;;;;;; quickurl-browse-url-ask quickurl-browse-url quickurl-add-url |
| 20208 | ;;;;;; quickurl-ask quickurl) "quickurl" "net/quickurl.el" (17087 | 20254 | ;;;;;; quickurl-ask quickurl) "quickurl" "net/quickurl.el" (17107 |
| 20209 | ;;;;;; 12566)) | 20255 | ;;;;;; 37379)) |
| 20210 | ;;; Generated autoloads from net/quickurl.el | 20256 | ;;; Generated autoloads from net/quickurl.el |
| 20211 | 20257 | ||
| 20212 | (defconst quickurl-reread-hook-postfix "\n;; Local Variables:\n;; eval: (progn (require 'quickurl) (add-hook 'local-write-file-hooks (lambda () (quickurl-read) nil)))\n;; End:\n" "\ | 20258 | (defconst quickurl-reread-hook-postfix "\n;; Local Variables:\n;; eval: (progn (require 'quickurl) (add-hook 'local-write-file-hooks (lambda () (quickurl-read) nil)))\n;; End:\n" "\ |
| @@ -20277,8 +20323,8 @@ Display `quickurl-list' as a formatted list using `quickurl-list-mode'. | |||
| 20277 | 20323 | ||
| 20278 | ;;;*** | 20324 | ;;;*** |
| 20279 | 20325 | ||
| 20280 | ;;;### (autoloads (remote-compile) "rcompile" "net/rcompile.el" (17087 | 20326 | ;;;### (autoloads (remote-compile) "rcompile" "net/rcompile.el" (17107 |
| 20281 | ;;;;;; 12566)) | 20327 | ;;;;;; 37379)) |
| 20282 | ;;; Generated autoloads from net/rcompile.el | 20328 | ;;; Generated autoloads from net/rcompile.el |
| 20283 | 20329 | ||
| 20284 | (autoload (quote remote-compile) "rcompile" "\ | 20330 | (autoload (quote remote-compile) "rcompile" "\ |
| @@ -20290,7 +20336,7 @@ See \\[compile]. | |||
| 20290 | ;;;*** | 20336 | ;;;*** |
| 20291 | 20337 | ||
| 20292 | ;;;### (autoloads (re-builder regexp-builder) "re-builder" "emacs-lisp/re-builder.el" | 20338 | ;;;### (autoloads (re-builder regexp-builder) "re-builder" "emacs-lisp/re-builder.el" |
| 20293 | ;;;;;; (17087 12566)) | 20339 | ;;;;;; (17107 37381)) |
| 20294 | ;;; Generated autoloads from emacs-lisp/re-builder.el | 20340 | ;;; Generated autoloads from emacs-lisp/re-builder.el |
| 20295 | 20341 | ||
| 20296 | (autoload (quote regexp-builder) "re-builder" "\ | 20342 | (autoload (quote regexp-builder) "re-builder" "\ |
| @@ -20305,7 +20351,7 @@ Construct a regexp interactively. | |||
| 20305 | 20351 | ||
| 20306 | ;;;*** | 20352 | ;;;*** |
| 20307 | 20353 | ||
| 20308 | ;;;### (autoloads (recentf-mode) "recentf" "recentf.el" (17087 12570)) | 20354 | ;;;### (autoloads (recentf-mode) "recentf" "recentf.el" (17107 37383)) |
| 20309 | ;;; Generated autoloads from recentf.el | 20355 | ;;; Generated autoloads from recentf.el |
| 20310 | 20356 | ||
| 20311 | (defvar recentf-mode nil "\ | 20357 | (defvar recentf-mode nil "\ |
| @@ -20316,6 +20362,8 @@ use either \\[customize] or the function `recentf-mode'.") | |||
| 20316 | 20362 | ||
| 20317 | (custom-autoload (quote recentf-mode) "recentf") | 20363 | (custom-autoload (quote recentf-mode) "recentf") |
| 20318 | 20364 | ||
| 20365 | (put (quote recentf-mode) (quote custom-set) (quote custom-set-minor-mode)) | ||
| 20366 | |||
| 20319 | (autoload (quote recentf-mode) "recentf" "\ | 20367 | (autoload (quote recentf-mode) "recentf" "\ |
| 20320 | Toggle recentf mode. | 20368 | Toggle recentf mode. |
| 20321 | With prefix argument ARG, turn on if positive, otherwise off. | 20369 | With prefix argument ARG, turn on if positive, otherwise off. |
| @@ -20331,8 +20379,8 @@ that were operated on recently. | |||
| 20331 | ;;;### (autoloads (clear-rectangle string-insert-rectangle string-rectangle | 20379 | ;;;### (autoloads (clear-rectangle string-insert-rectangle string-rectangle |
| 20332 | ;;;;;; delete-whitespace-rectangle open-rectangle insert-rectangle | 20380 | ;;;;;; delete-whitespace-rectangle open-rectangle insert-rectangle |
| 20333 | ;;;;;; yank-rectangle kill-rectangle extract-rectangle delete-extract-rectangle | 20381 | ;;;;;; yank-rectangle kill-rectangle extract-rectangle delete-extract-rectangle |
| 20334 | ;;;;;; delete-rectangle move-to-column-force) "rect" "rect.el" (17087 | 20382 | ;;;;;; delete-rectangle move-to-column-force) "rect" "rect.el" (17107 |
| 20335 | ;;;;;; 12453)) | 20383 | ;;;;;; 37380)) |
| 20336 | ;;; Generated autoloads from rect.el | 20384 | ;;; Generated autoloads from rect.el |
| 20337 | 20385 | ||
| 20338 | (autoload (quote move-to-column-force) "rect" "\ | 20386 | (autoload (quote move-to-column-force) "rect" "\ |
| @@ -20454,8 +20502,8 @@ rectangle which were empty. | |||
| 20454 | 20502 | ||
| 20455 | ;;;*** | 20503 | ;;;*** |
| 20456 | 20504 | ||
| 20457 | ;;;### (autoloads (refill-mode) "refill" "textmodes/refill.el" (17087 | 20505 | ;;;### (autoloads (refill-mode) "refill" "textmodes/refill.el" (17107 |
| 20458 | ;;;;;; 12529)) | 20506 | ;;;;;; 37381)) |
| 20459 | ;;; Generated autoloads from textmodes/refill.el | 20507 | ;;; Generated autoloads from textmodes/refill.el |
| 20460 | 20508 | ||
| 20461 | (autoload (quote refill-mode) "refill" "\ | 20509 | (autoload (quote refill-mode) "refill" "\ |
| @@ -20471,7 +20519,7 @@ refilling if they would cause auto-filling. | |||
| 20471 | ;;;*** | 20519 | ;;;*** |
| 20472 | 20520 | ||
| 20473 | ;;;### (autoloads (reftex-reset-scanning-information reftex-mode | 20521 | ;;;### (autoloads (reftex-reset-scanning-information reftex-mode |
| 20474 | ;;;;;; turn-on-reftex) "reftex" "textmodes/reftex.el" (17087 12570)) | 20522 | ;;;;;; turn-on-reftex) "reftex" "textmodes/reftex.el" (17107 37381)) |
| 20475 | ;;; Generated autoloads from textmodes/reftex.el | 20523 | ;;; Generated autoloads from textmodes/reftex.el |
| 20476 | 20524 | ||
| 20477 | (autoload (quote turn-on-reftex) "reftex" "\ | 20525 | (autoload (quote turn-on-reftex) "reftex" "\ |
| @@ -20521,7 +20569,7 @@ This enforces rescanning the buffer on next use. | |||
| 20521 | ;;;*** | 20569 | ;;;*** |
| 20522 | 20570 | ||
| 20523 | ;;;### (autoloads (reftex-citation) "reftex-cite" "textmodes/reftex-cite.el" | 20571 | ;;;### (autoloads (reftex-citation) "reftex-cite" "textmodes/reftex-cite.el" |
| 20524 | ;;;;;; (17087 12564)) | 20572 | ;;;;;; (17107 37381)) |
| 20525 | ;;; Generated autoloads from textmodes/reftex-cite.el | 20573 | ;;; Generated autoloads from textmodes/reftex-cite.el |
| 20526 | 20574 | ||
| 20527 | (autoload (quote reftex-citation) "reftex-cite" "\ | 20575 | (autoload (quote reftex-citation) "reftex-cite" "\ |
| @@ -20551,7 +20599,7 @@ While entering the regexp, completion on knows citation keys is possible. | |||
| 20551 | ;;;*** | 20599 | ;;;*** |
| 20552 | 20600 | ||
| 20553 | ;;;### (autoloads (reftex-isearch-minor-mode) "reftex-global" "textmodes/reftex-global.el" | 20601 | ;;;### (autoloads (reftex-isearch-minor-mode) "reftex-global" "textmodes/reftex-global.el" |
| 20554 | ;;;;;; (17087 12564)) | 20602 | ;;;;;; (17107 37381)) |
| 20555 | ;;; Generated autoloads from textmodes/reftex-global.el | 20603 | ;;; Generated autoloads from textmodes/reftex-global.el |
| 20556 | 20604 | ||
| 20557 | (autoload (quote reftex-isearch-minor-mode) "reftex-global" "\ | 20605 | (autoload (quote reftex-isearch-minor-mode) "reftex-global" "\ |
| @@ -20568,7 +20616,7 @@ With no argument, this command toggles | |||
| 20568 | ;;;*** | 20616 | ;;;*** |
| 20569 | 20617 | ||
| 20570 | ;;;### (autoloads (reftex-index-phrases-mode) "reftex-index" "textmodes/reftex-index.el" | 20618 | ;;;### (autoloads (reftex-index-phrases-mode) "reftex-index" "textmodes/reftex-index.el" |
| 20571 | ;;;;;; (17087 12566)) | 20619 | ;;;;;; (17107 37381)) |
| 20572 | ;;; Generated autoloads from textmodes/reftex-index.el | 20620 | ;;; Generated autoloads from textmodes/reftex-index.el |
| 20573 | 20621 | ||
| 20574 | (autoload (quote reftex-index-phrases-mode) "reftex-index" "\ | 20622 | (autoload (quote reftex-index-phrases-mode) "reftex-index" "\ |
| @@ -20601,7 +20649,7 @@ Here are all local bindings. | |||
| 20601 | ;;;*** | 20649 | ;;;*** |
| 20602 | 20650 | ||
| 20603 | ;;;### (autoloads (reftex-all-document-files) "reftex-parse" "textmodes/reftex-parse.el" | 20651 | ;;;### (autoloads (reftex-all-document-files) "reftex-parse" "textmodes/reftex-parse.el" |
| 20604 | ;;;;;; (17087 12564)) | 20652 | ;;;;;; (17107 37381)) |
| 20605 | ;;; Generated autoloads from textmodes/reftex-parse.el | 20653 | ;;; Generated autoloads from textmodes/reftex-parse.el |
| 20606 | 20654 | ||
| 20607 | (autoload (quote reftex-all-document-files) "reftex-parse" "\ | 20655 | (autoload (quote reftex-all-document-files) "reftex-parse" "\ |
| @@ -20614,7 +20662,7 @@ of master file. | |||
| 20614 | ;;;*** | 20662 | ;;;*** |
| 20615 | 20663 | ||
| 20616 | ;;;### (autoloads (regexp-opt-depth regexp-opt) "regexp-opt" "emacs-lisp/regexp-opt.el" | 20664 | ;;;### (autoloads (regexp-opt-depth regexp-opt) "regexp-opt" "emacs-lisp/regexp-opt.el" |
| 20617 | ;;;;;; (17087 12574)) | 20665 | ;;;;;; (17107 37381)) |
| 20618 | ;;; Generated autoloads from emacs-lisp/regexp-opt.el | 20666 | ;;; Generated autoloads from emacs-lisp/regexp-opt.el |
| 20619 | 20667 | ||
| 20620 | (autoload (quote regexp-opt) "regexp-opt" "\ | 20668 | (autoload (quote regexp-opt) "regexp-opt" "\ |
| @@ -20641,7 +20689,7 @@ This means the number of non-shy regexp grouping constructs | |||
| 20641 | 20689 | ||
| 20642 | ;;;*** | 20690 | ;;;*** |
| 20643 | 20691 | ||
| 20644 | ;;;### (autoloads (repeat) "repeat" "repeat.el" (17087 12533)) | 20692 | ;;;### (autoloads (repeat) "repeat" "repeat.el" (17107 37380)) |
| 20645 | ;;; Generated autoloads from repeat.el | 20693 | ;;; Generated autoloads from repeat.el |
| 20646 | 20694 | ||
| 20647 | (autoload (quote repeat) "repeat" "\ | 20695 | (autoload (quote repeat) "repeat" "\ |
| @@ -20659,7 +20707,7 @@ can be modified by the global variable `repeat-on-final-keystroke'. | |||
| 20659 | ;;;*** | 20707 | ;;;*** |
| 20660 | 20708 | ||
| 20661 | ;;;### (autoloads (reporter-submit-bug-report) "reporter" "mail/reporter.el" | 20709 | ;;;### (autoloads (reporter-submit-bug-report) "reporter" "mail/reporter.el" |
| 20662 | ;;;;;; (17087 12380)) | 20710 | ;;;;;; (17107 37380)) |
| 20663 | ;;; Generated autoloads from mail/reporter.el | 20711 | ;;; Generated autoloads from mail/reporter.el |
| 20664 | 20712 | ||
| 20665 | (autoload (quote reporter-submit-bug-report) "reporter" "\ | 20713 | (autoload (quote reporter-submit-bug-report) "reporter" "\ |
| @@ -20691,7 +20739,7 @@ mail-sending package is used for editing and sending the message. | |||
| 20691 | ;;;*** | 20739 | ;;;*** |
| 20692 | 20740 | ||
| 20693 | ;;;### (autoloads (reposition-window) "reposition" "reposition.el" | 20741 | ;;;### (autoloads (reposition-window) "reposition" "reposition.el" |
| 20694 | ;;;;;; (17087 12380)) | 20742 | ;;;;;; (17107 37380)) |
| 20695 | ;;; Generated autoloads from reposition.el | 20743 | ;;; Generated autoloads from reposition.el |
| 20696 | 20744 | ||
| 20697 | (autoload (quote reposition-window) "reposition" "\ | 20745 | (autoload (quote reposition-window) "reposition" "\ |
| @@ -20718,8 +20766,8 @@ first comment line visible (if point is in a comment). | |||
| 20718 | 20766 | ||
| 20719 | ;;;*** | 20767 | ;;;*** |
| 20720 | 20768 | ||
| 20721 | ;;;### (autoloads (resume-suspend-hook) "resume" "resume.el" (17087 | 20769 | ;;;### (autoloads (resume-suspend-hook) "resume" "resume.el" (17107 |
| 20722 | ;;;;;; 12380)) | 20770 | ;;;;;; 37382)) |
| 20723 | ;;; Generated autoloads from resume.el | 20771 | ;;; Generated autoloads from resume.el |
| 20724 | 20772 | ||
| 20725 | (autoload (quote resume-suspend-hook) "resume" "\ | 20773 | (autoload (quote resume-suspend-hook) "resume" "\ |
| @@ -20730,7 +20778,7 @@ Clear out the file used for transmitting args when Emacs resumes. | |||
| 20730 | ;;;*** | 20778 | ;;;*** |
| 20731 | 20779 | ||
| 20732 | ;;;### (autoloads (global-reveal-mode reveal-mode) "reveal" "reveal.el" | 20780 | ;;;### (autoloads (global-reveal-mode reveal-mode) "reveal" "reveal.el" |
| 20733 | ;;;;;; (17087 12564)) | 20781 | ;;;;;; (17107 37380)) |
| 20734 | ;;; Generated autoloads from reveal.el | 20782 | ;;; Generated autoloads from reveal.el |
| 20735 | 20783 | ||
| 20736 | (autoload (quote reveal-mode) "reveal" "\ | 20784 | (autoload (quote reveal-mode) "reveal" "\ |
| @@ -20751,6 +20799,8 @@ use either \\[customize] or the function `global-reveal-mode'.") | |||
| 20751 | 20799 | ||
| 20752 | (custom-autoload (quote global-reveal-mode) "reveal") | 20800 | (custom-autoload (quote global-reveal-mode) "reveal") |
| 20753 | 20801 | ||
| 20802 | (put (quote global-reveal-mode) (quote custom-set) (quote custom-set-minor-mode)) | ||
| 20803 | |||
| 20754 | (autoload (quote global-reveal-mode) "reveal" "\ | 20804 | (autoload (quote global-reveal-mode) "reveal" "\ |
| 20755 | Toggle Reveal mode in all buffers on or off. | 20805 | Toggle Reveal mode in all buffers on or off. |
| 20756 | Reveal mode renders invisible text around point visible again. | 20806 | Reveal mode renders invisible text around point visible again. |
| @@ -20765,7 +20815,7 @@ With zero or negative ARG turn mode off. | |||
| 20765 | 20815 | ||
| 20766 | ;;;### (autoloads (file-name-shadow-mode file-name-shadow-tty-properties | 20816 | ;;;### (autoloads (file-name-shadow-mode file-name-shadow-tty-properties |
| 20767 | ;;;;;; file-name-shadow-properties) "rfn-eshadow" "rfn-eshadow.el" | 20817 | ;;;;;; file-name-shadow-properties) "rfn-eshadow" "rfn-eshadow.el" |
| 20768 | ;;;;;; (17087 12570)) | 20818 | ;;;;;; (17107 37382)) |
| 20769 | ;;; Generated autoloads from rfn-eshadow.el | 20819 | ;;; Generated autoloads from rfn-eshadow.el |
| 20770 | 20820 | ||
| 20771 | (defvar file-name-shadow-properties (quote (face file-name-shadow field shadow)) "\ | 20821 | (defvar file-name-shadow-properties (quote (face file-name-shadow field shadow)) "\ |
| @@ -20792,6 +20842,8 @@ use either \\[customize] or the function `file-name-shadow-mode'.") | |||
| 20792 | 20842 | ||
| 20793 | (custom-autoload (quote file-name-shadow-mode) "rfn-eshadow") | 20843 | (custom-autoload (quote file-name-shadow-mode) "rfn-eshadow") |
| 20794 | 20844 | ||
| 20845 | (put (quote file-name-shadow-mode) (quote custom-set) (quote custom-set-minor-mode)) | ||
| 20846 | |||
| 20795 | (autoload (quote file-name-shadow-mode) "rfn-eshadow" "\ | 20847 | (autoload (quote file-name-shadow-mode) "rfn-eshadow" "\ |
| 20796 | Toggle File-Name Shadow mode. | 20848 | Toggle File-Name Shadow mode. |
| 20797 | When active, any part of a filename being read in the minibuffer | 20849 | When active, any part of a filename being read in the minibuffer |
| @@ -20808,7 +20860,7 @@ Returns non-nil if the new state is enabled. | |||
| 20808 | ;;;*** | 20860 | ;;;*** |
| 20809 | 20861 | ||
| 20810 | ;;;### (autoloads (make-ring ring-p) "ring" "emacs-lisp/ring.el" | 20862 | ;;;### (autoloads (make-ring ring-p) "ring" "emacs-lisp/ring.el" |
| 20811 | ;;;;;; (17087 12581)) | 20863 | ;;;;;; (17107 37381)) |
| 20812 | ;;; Generated autoloads from emacs-lisp/ring.el | 20864 | ;;; Generated autoloads from emacs-lisp/ring.el |
| 20813 | 20865 | ||
| 20814 | (autoload (quote ring-p) "ring" "\ | 20866 | (autoload (quote ring-p) "ring" "\ |
| @@ -20823,7 +20875,7 @@ Make a ring that can contain SIZE elements. | |||
| 20823 | 20875 | ||
| 20824 | ;;;*** | 20876 | ;;;*** |
| 20825 | 20877 | ||
| 20826 | ;;;### (autoloads (rlogin) "rlogin" "net/rlogin.el" (17087 12564)) | 20878 | ;;;### (autoloads (rlogin) "rlogin" "net/rlogin.el" (17107 37379)) |
| 20827 | ;;; Generated autoloads from net/rlogin.el | 20879 | ;;; Generated autoloads from net/rlogin.el |
| 20828 | (add-hook 'same-window-regexps "^\\*rlogin-.*\\*\\(\\|<[0-9]+>\\)") | 20880 | (add-hook 'same-window-regexps "^\\*rlogin-.*\\*\\(\\|<[0-9]+>\\)") |
| 20829 | 20881 | ||
| @@ -20874,8 +20926,8 @@ variable. | |||
| 20874 | ;;;;;; rmail-mail-new-frame rmail-primary-inbox-list rmail-delete-after-output | 20926 | ;;;;;; rmail-mail-new-frame rmail-primary-inbox-list rmail-delete-after-output |
| 20875 | ;;;;;; rmail-highlight-face rmail-highlighted-headers rmail-retry-ignored-headers | 20927 | ;;;;;; rmail-highlight-face rmail-highlighted-headers rmail-retry-ignored-headers |
| 20876 | ;;;;;; rmail-displayed-headers rmail-ignored-headers rmail-dont-reply-to-names | 20928 | ;;;;;; rmail-displayed-headers rmail-ignored-headers rmail-dont-reply-to-names |
| 20877 | ;;;;;; rmail-movemail-variant-p) "rmail" "mail/rmail.el" (17087 | 20929 | ;;;;;; rmail-movemail-variant-p) "rmail" "mail/rmail.el" (17107 |
| 20878 | ;;;;;; 12566)) | 20930 | ;;;;;; 37379)) |
| 20879 | ;;; Generated autoloads from mail/rmail.el | 20931 | ;;; Generated autoloads from mail/rmail.el |
| 20880 | 20932 | ||
| 20881 | (autoload (quote rmail-movemail-variant-p) "rmail" "\ | 20933 | (autoload (quote rmail-movemail-variant-p) "rmail" "\ |
| @@ -21136,7 +21188,7 @@ Restore an rmail buffer specified in a desktop file. | |||
| 21136 | ;;;*** | 21188 | ;;;*** |
| 21137 | 21189 | ||
| 21138 | ;;;### (autoloads (rmail-edit-current-message) "rmailedit" "mail/rmailedit.el" | 21190 | ;;;### (autoloads (rmail-edit-current-message) "rmailedit" "mail/rmailedit.el" |
| 21139 | ;;;;;; (17087 12570)) | 21191 | ;;;;;; (17107 37380)) |
| 21140 | ;;; Generated autoloads from mail/rmailedit.el | 21192 | ;;; Generated autoloads from mail/rmailedit.el |
| 21141 | 21193 | ||
| 21142 | (autoload (quote rmail-edit-current-message) "rmailedit" "\ | 21194 | (autoload (quote rmail-edit-current-message) "rmailedit" "\ |
| @@ -21148,7 +21200,7 @@ Edit the contents of this message. | |||
| 21148 | 21200 | ||
| 21149 | ;;;### (autoloads (rmail-next-labeled-message rmail-previous-labeled-message | 21201 | ;;;### (autoloads (rmail-next-labeled-message rmail-previous-labeled-message |
| 21150 | ;;;;;; rmail-read-label rmail-kill-label rmail-add-label) "rmailkwd" | 21202 | ;;;;;; rmail-read-label rmail-kill-label rmail-add-label) "rmailkwd" |
| 21151 | ;;;;;; "mail/rmailkwd.el" (17087 12380)) | 21203 | ;;;;;; "mail/rmailkwd.el" (17107 37380)) |
| 21152 | ;;; Generated autoloads from mail/rmailkwd.el | 21204 | ;;; Generated autoloads from mail/rmailkwd.el |
| 21153 | 21205 | ||
| 21154 | (autoload (quote rmail-add-label) "rmailkwd" "\ | 21206 | (autoload (quote rmail-add-label) "rmailkwd" "\ |
| @@ -21187,7 +21239,7 @@ With prefix argument N moves forward N messages with these labels. | |||
| 21187 | ;;;*** | 21239 | ;;;*** |
| 21188 | 21240 | ||
| 21189 | ;;;### (autoloads (set-rmail-inbox-list) "rmailmsc" "mail/rmailmsc.el" | 21241 | ;;;### (autoloads (set-rmail-inbox-list) "rmailmsc" "mail/rmailmsc.el" |
| 21190 | ;;;;;; (17087 12380)) | 21242 | ;;;;;; (17107 37379)) |
| 21191 | ;;; Generated autoloads from mail/rmailmsc.el | 21243 | ;;; Generated autoloads from mail/rmailmsc.el |
| 21192 | 21244 | ||
| 21193 | (autoload (quote set-rmail-inbox-list) "rmailmsc" "\ | 21245 | (autoload (quote set-rmail-inbox-list) "rmailmsc" "\ |
| @@ -21201,7 +21253,7 @@ If FILE-NAME is empty, remove any existing inbox list. | |||
| 21201 | 21253 | ||
| 21202 | ;;;### (autoloads (rmail-output-body-to-file rmail-output rmail-fields-not-to-output | 21254 | ;;;### (autoloads (rmail-output-body-to-file rmail-output rmail-fields-not-to-output |
| 21203 | ;;;;;; rmail-output-to-rmail-file rmail-output-file-alist) "rmailout" | 21255 | ;;;;;; rmail-output-to-rmail-file rmail-output-file-alist) "rmailout" |
| 21204 | ;;;;;; "mail/rmailout.el" (17087 12380)) | 21256 | ;;;;;; "mail/rmailout.el" (17107 37379)) |
| 21205 | ;;; Generated autoloads from mail/rmailout.el | 21257 | ;;; Generated autoloads from mail/rmailout.el |
| 21206 | 21258 | ||
| 21207 | (defvar rmail-output-file-alist nil "\ | 21259 | (defvar rmail-output-file-alist nil "\ |
| @@ -21268,8 +21320,8 @@ FILE-NAME defaults, interactively, from the Subject field of the message. | |||
| 21268 | 21320 | ||
| 21269 | ;;;### (autoloads (rmail-sort-by-labels rmail-sort-by-lines rmail-sort-by-correspondent | 21321 | ;;;### (autoloads (rmail-sort-by-labels rmail-sort-by-lines rmail-sort-by-correspondent |
| 21270 | ;;;;;; rmail-sort-by-recipient rmail-sort-by-author rmail-sort-by-subject | 21322 | ;;;;;; rmail-sort-by-recipient rmail-sort-by-author rmail-sort-by-subject |
| 21271 | ;;;;;; rmail-sort-by-date) "rmailsort" "mail/rmailsort.el" (17087 | 21323 | ;;;;;; rmail-sort-by-date) "rmailsort" "mail/rmailsort.el" (17107 |
| 21272 | ;;;;;; 12380)) | 21324 | ;;;;;; 37380)) |
| 21273 | ;;; Generated autoloads from mail/rmailsort.el | 21325 | ;;; Generated autoloads from mail/rmailsort.el |
| 21274 | 21326 | ||
| 21275 | (autoload (quote rmail-sort-by-date) "rmailsort" "\ | 21327 | (autoload (quote rmail-sort-by-date) "rmailsort" "\ |
| @@ -21321,7 +21373,7 @@ KEYWORDS is a comma-separated list of labels. | |||
| 21321 | ;;;;;; rmail-summary-by-senders rmail-summary-by-topic rmail-summary-by-regexp | 21373 | ;;;;;; rmail-summary-by-senders rmail-summary-by-topic rmail-summary-by-regexp |
| 21322 | ;;;;;; rmail-summary-by-recipients rmail-summary-by-labels rmail-summary | 21374 | ;;;;;; rmail-summary-by-recipients rmail-summary-by-labels rmail-summary |
| 21323 | ;;;;;; rmail-summary-line-count-flag rmail-summary-scroll-between-messages) | 21375 | ;;;;;; rmail-summary-line-count-flag rmail-summary-scroll-between-messages) |
| 21324 | ;;;;;; "rmailsum" "mail/rmailsum.el" (17087 12566)) | 21376 | ;;;;;; "rmailsum" "mail/rmailsum.el" (17107 37379)) |
| 21325 | ;;; Generated autoloads from mail/rmailsum.el | 21377 | ;;; Generated autoloads from mail/rmailsum.el |
| 21326 | 21378 | ||
| 21327 | (defvar rmail-summary-scroll-between-messages t "\ | 21379 | (defvar rmail-summary-scroll-between-messages t "\ |
| @@ -21403,7 +21455,7 @@ Setting this variable has an effect only before reading a mail.") | |||
| 21403 | ;;;*** | 21455 | ;;;*** |
| 21404 | 21456 | ||
| 21405 | ;;;### (autoloads (news-post-news) "rnewspost" "obsolete/rnewspost.el" | 21457 | ;;;### (autoloads (news-post-news) "rnewspost" "obsolete/rnewspost.el" |
| 21406 | ;;;;;; (17087 12566)) | 21458 | ;;;;;; (17107 37382)) |
| 21407 | ;;; Generated autoloads from obsolete/rnewspost.el | 21459 | ;;; Generated autoloads from obsolete/rnewspost.el |
| 21408 | 21460 | ||
| 21409 | (autoload (quote news-post-news) "rnewspost" "\ | 21461 | (autoload (quote news-post-news) "rnewspost" "\ |
| @@ -21416,7 +21468,7 @@ If NOQUERY is non-nil, we do not query before doing the work. | |||
| 21416 | ;;;*** | 21468 | ;;;*** |
| 21417 | 21469 | ||
| 21418 | ;;;### (autoloads (toggle-rot13-mode rot13-other-window rot13-region | 21470 | ;;;### (autoloads (toggle-rot13-mode rot13-other-window rot13-region |
| 21419 | ;;;;;; rot13-string rot13) "rot13" "rot13.el" (17087 12380)) | 21471 | ;;;;;; rot13-string rot13) "rot13" "rot13.el" (17107 37380)) |
| 21420 | ;;; Generated autoloads from rot13.el | 21472 | ;;; Generated autoloads from rot13.el |
| 21421 | 21473 | ||
| 21422 | (autoload (quote rot13) "rot13" "\ | 21474 | (autoload (quote rot13) "rot13" "\ |
| @@ -21457,7 +21509,7 @@ Toggle the use of rot 13 encoding for the current window. | |||
| 21457 | ;;;;;; resize-minibuffer-frame-max-height resize-minibuffer-frame | 21509 | ;;;;;; resize-minibuffer-frame-max-height resize-minibuffer-frame |
| 21458 | ;;;;;; resize-minibuffer-window-exactly resize-minibuffer-window-max-height | 21510 | ;;;;;; resize-minibuffer-window-exactly resize-minibuffer-window-max-height |
| 21459 | ;;;;;; resize-minibuffer-mode) "rsz-mini" "obsolete/rsz-mini.el" | 21511 | ;;;;;; resize-minibuffer-mode) "rsz-mini" "obsolete/rsz-mini.el" |
| 21460 | ;;;;;; (17087 12564)) | 21512 | ;;;;;; (17107 37382)) |
| 21461 | ;;; Generated autoloads from obsolete/rsz-mini.el | 21513 | ;;; Generated autoloads from obsolete/rsz-mini.el |
| 21462 | 21514 | ||
| 21463 | (defvar resize-minibuffer-mode nil "\ | 21515 | (defvar resize-minibuffer-mode nil "\ |
| @@ -21497,8 +21549,8 @@ This function is obsolete. | |||
| 21497 | 21549 | ||
| 21498 | ;;;*** | 21550 | ;;;*** |
| 21499 | 21551 | ||
| 21500 | ;;;### (autoloads (ruler-mode) "ruler-mode" "ruler-mode.el" (17087 | 21552 | ;;;### (autoloads (ruler-mode) "ruler-mode" "ruler-mode.el" (17107 |
| 21501 | ;;;;;; 12570)) | 21553 | ;;;;;; 37380)) |
| 21502 | ;;; Generated autoloads from ruler-mode.el | 21554 | ;;; Generated autoloads from ruler-mode.el |
| 21503 | 21555 | ||
| 21504 | (autoload (quote ruler-mode) "ruler-mode" "\ | 21556 | (autoload (quote ruler-mode) "ruler-mode" "\ |
| @@ -21508,8 +21560,8 @@ Display a ruler in the header line if ARG > 0. | |||
| 21508 | 21560 | ||
| 21509 | ;;;*** | 21561 | ;;;*** |
| 21510 | 21562 | ||
| 21511 | ;;;### (autoloads (rx rx-to-string) "rx" "emacs-lisp/rx.el" (17087 | 21563 | ;;;### (autoloads (rx rx-to-string) "rx" "emacs-lisp/rx.el" (17107 |
| 21512 | ;;;;;; 12524)) | 21564 | ;;;;;; 37381)) |
| 21513 | ;;; Generated autoloads from emacs-lisp/rx.el | 21565 | ;;; Generated autoloads from emacs-lisp/rx.el |
| 21514 | 21566 | ||
| 21515 | (autoload (quote rx-to-string) "rx" "\ | 21567 | (autoload (quote rx-to-string) "rx" "\ |
| @@ -21817,7 +21869,7 @@ enclosed in `(and ...)'. | |||
| 21817 | ;;;*** | 21869 | ;;;*** |
| 21818 | 21870 | ||
| 21819 | ;;;### (autoloads (dsssl-mode scheme-mode) "scheme" "progmodes/scheme.el" | 21871 | ;;;### (autoloads (dsssl-mode scheme-mode) "scheme" "progmodes/scheme.el" |
| 21820 | ;;;;;; (17087 12528)) | 21872 | ;;;;;; (17107 37381)) |
| 21821 | ;;; Generated autoloads from progmodes/scheme.el | 21873 | ;;; Generated autoloads from progmodes/scheme.el |
| 21822 | 21874 | ||
| 21823 | (autoload (quote scheme-mode) "scheme" "\ | 21875 | (autoload (quote scheme-mode) "scheme" "\ |
| @@ -21859,7 +21911,7 @@ that variable's value is a string. | |||
| 21859 | ;;;*** | 21911 | ;;;*** |
| 21860 | 21912 | ||
| 21861 | ;;;### (autoloads (gnus-score-mode) "score-mode" "gnus/score-mode.el" | 21913 | ;;;### (autoloads (gnus-score-mode) "score-mode" "gnus/score-mode.el" |
| 21862 | ;;;;;; (17087 12566)) | 21914 | ;;;;;; (17107 37379)) |
| 21863 | ;;; Generated autoloads from gnus/score-mode.el | 21915 | ;;; Generated autoloads from gnus/score-mode.el |
| 21864 | 21916 | ||
| 21865 | (autoload (quote gnus-score-mode) "score-mode" "\ | 21917 | (autoload (quote gnus-score-mode) "score-mode" "\ |
| @@ -21872,8 +21924,8 @@ This mode is an extended emacs-lisp mode. | |||
| 21872 | 21924 | ||
| 21873 | ;;;*** | 21925 | ;;;*** |
| 21874 | 21926 | ||
| 21875 | ;;;### (autoloads (scribe-mode) "scribe" "obsolete/scribe.el" (17087 | 21927 | ;;;### (autoloads (scribe-mode) "scribe" "obsolete/scribe.el" (17107 |
| 21876 | ;;;;;; 12380)) | 21928 | ;;;;;; 37382)) |
| 21877 | ;;; Generated autoloads from obsolete/scribe.el | 21929 | ;;; Generated autoloads from obsolete/scribe.el |
| 21878 | 21930 | ||
| 21879 | (autoload (quote scribe-mode) "scribe" "\ | 21931 | (autoload (quote scribe-mode) "scribe" "\ |
| @@ -21898,7 +21950,7 @@ Interesting variables: | |||
| 21898 | ;;;*** | 21950 | ;;;*** |
| 21899 | 21951 | ||
| 21900 | ;;;### (autoloads (scroll-all-mode) "scroll-all" "scroll-all.el" | 21952 | ;;;### (autoloads (scroll-all-mode) "scroll-all" "scroll-all.el" |
| 21901 | ;;;;;; (17087 12380)) | 21953 | ;;;;;; (17107 37379)) |
| 21902 | ;;; Generated autoloads from scroll-all.el | 21954 | ;;; Generated autoloads from scroll-all.el |
| 21903 | 21955 | ||
| 21904 | (defvar scroll-all-mode nil "\ | 21956 | (defvar scroll-all-mode nil "\ |
| @@ -21909,6 +21961,8 @@ use either \\[customize] or the function `scroll-all-mode'.") | |||
| 21909 | 21961 | ||
| 21910 | (custom-autoload (quote scroll-all-mode) "scroll-all") | 21962 | (custom-autoload (quote scroll-all-mode) "scroll-all") |
| 21911 | 21963 | ||
| 21964 | (put (quote scroll-all-mode) (quote custom-set) (quote custom-set-minor-mode)) | ||
| 21965 | |||
| 21912 | (autoload (quote scroll-all-mode) "scroll-all" "\ | 21966 | (autoload (quote scroll-all-mode) "scroll-all" "\ |
| 21913 | Toggle Scroll-All minor mode. | 21967 | Toggle Scroll-All minor mode. |
| 21914 | With ARG, turn Scroll-All minor mode on if ARG is positive, off otherwise. | 21968 | With ARG, turn Scroll-All minor mode on if ARG is positive, off otherwise. |
| @@ -21925,7 +21979,7 @@ apply to all visible windows in the same frame. | |||
| 21925 | ;;;;;; mail-archive-file-name mail-header-separator send-mail-function | 21979 | ;;;;;; mail-archive-file-name mail-header-separator send-mail-function |
| 21926 | ;;;;;; mail-yank-ignored-headers mail-interactive mail-self-blind | 21980 | ;;;;;; mail-yank-ignored-headers mail-interactive mail-self-blind |
| 21927 | ;;;;;; mail-specify-envelope-from mail-from-style) "sendmail" "mail/sendmail.el" | 21981 | ;;;;;; mail-specify-envelope-from mail-from-style) "sendmail" "mail/sendmail.el" |
| 21928 | ;;;;;; (17087 12582)) | 21982 | ;;;;;; (17107 37380)) |
| 21929 | ;;; Generated autoloads from mail/sendmail.el | 21983 | ;;; Generated autoloads from mail/sendmail.el |
| 21930 | 21984 | ||
| 21931 | (defvar mail-from-style (quote angles) "\ | 21985 | (defvar mail-from-style (quote angles) "\ |
| @@ -22156,7 +22210,7 @@ Like `mail' command, but display mail buffer in another frame. | |||
| 22156 | ;;;*** | 22210 | ;;;*** |
| 22157 | 22211 | ||
| 22158 | ;;;### (autoloads (server-mode server-start server-getenv) "server" | 22212 | ;;;### (autoloads (server-mode server-start server-getenv) "server" |
| 22159 | ;;;;;; "server.el" (17087 12564)) | 22213 | ;;;;;; "server.el" (17107 37404)) |
| 22160 | ;;; Generated autoloads from server.el | 22214 | ;;; Generated autoloads from server.el |
| 22161 | 22215 | ||
| 22162 | (autoload (quote server-getenv) "server" "\ | 22216 | (autoload (quote server-getenv) "server" "\ |
| @@ -22192,6 +22246,8 @@ use either \\[customize] or the function `server-mode'.") | |||
| 22192 | 22246 | ||
| 22193 | (custom-autoload (quote server-mode) "server") | 22247 | (custom-autoload (quote server-mode) "server") |
| 22194 | 22248 | ||
| 22249 | (put (quote server-mode) (quote custom-set) (quote custom-set-minor-mode)) | ||
| 22250 | |||
| 22195 | (autoload (quote server-mode) "server" "\ | 22251 | (autoload (quote server-mode) "server" "\ |
| 22196 | Toggle Server mode. | 22252 | Toggle Server mode. |
| 22197 | With ARG, turn Server mode on if ARG is positive, off otherwise. | 22253 | With ARG, turn Server mode on if ARG is positive, off otherwise. |
| @@ -22202,7 +22258,7 @@ Server mode runs a process that accepts commands from the | |||
| 22202 | 22258 | ||
| 22203 | ;;;*** | 22259 | ;;;*** |
| 22204 | 22260 | ||
| 22205 | ;;;### (autoloads (ses-mode) "ses" "ses.el" (17087 12578)) | 22261 | ;;;### (autoloads (ses-mode) "ses" "ses.el" (17107 37381)) |
| 22206 | ;;; Generated autoloads from ses.el | 22262 | ;;; Generated autoloads from ses.el |
| 22207 | 22263 | ||
| 22208 | (autoload (quote ses-mode) "ses" "\ | 22264 | (autoload (quote ses-mode) "ses" "\ |
| @@ -22221,7 +22277,7 @@ These are active only in the minibuffer, when entering or editing a formula: | |||
| 22221 | ;;;*** | 22277 | ;;;*** |
| 22222 | 22278 | ||
| 22223 | ;;;### (autoloads (html-mode sgml-mode) "sgml-mode" "textmodes/sgml-mode.el" | 22279 | ;;;### (autoloads (html-mode sgml-mode) "sgml-mode" "textmodes/sgml-mode.el" |
| 22224 | ;;;;;; (17087 12575)) | 22280 | ;;;;;; (17107 37381)) |
| 22225 | ;;; Generated autoloads from textmodes/sgml-mode.el | 22281 | ;;; Generated autoloads from textmodes/sgml-mode.el |
| 22226 | 22282 | ||
| 22227 | (autoload (quote sgml-mode) "sgml-mode" "\ | 22283 | (autoload (quote sgml-mode) "sgml-mode" "\ |
| @@ -22289,7 +22345,7 @@ To work around that, do: | |||
| 22289 | ;;;*** | 22345 | ;;;*** |
| 22290 | 22346 | ||
| 22291 | ;;;### (autoloads (sh-mode) "sh-script" "progmodes/sh-script.el" | 22347 | ;;;### (autoloads (sh-mode) "sh-script" "progmodes/sh-script.el" |
| 22292 | ;;;;;; (17087 12570)) | 22348 | ;;;;;; (17107 37381)) |
| 22293 | ;;; Generated autoloads from progmodes/sh-script.el | 22349 | ;;; Generated autoloads from progmodes/sh-script.el |
| 22294 | 22350 | ||
| 22295 | (autoload (quote sh-mode) "sh-script" "\ | 22351 | (autoload (quote sh-mode) "sh-script" "\ |
| @@ -22352,7 +22408,7 @@ with your script for an edit-interpret-debug cycle. | |||
| 22352 | 22408 | ||
| 22353 | ;;;*** | 22409 | ;;;*** |
| 22354 | 22410 | ||
| 22355 | ;;;### (autoloads (sha1) "sha1" "gnus/sha1.el" (17087 12466)) | 22411 | ;;;### (autoloads (sha1) "sha1" "gnus/sha1.el" (17107 37379)) |
| 22356 | ;;; Generated autoloads from gnus/sha1.el | 22412 | ;;; Generated autoloads from gnus/sha1.el |
| 22357 | 22413 | ||
| 22358 | (autoload (quote sha1) "sha1" "\ | 22414 | (autoload (quote sha1) "sha1" "\ |
| @@ -22367,7 +22423,7 @@ If BINARY is non-nil, return a string in binary form. | |||
| 22367 | ;;;*** | 22423 | ;;;*** |
| 22368 | 22424 | ||
| 22369 | ;;;### (autoloads (list-load-path-shadows) "shadow" "emacs-lisp/shadow.el" | 22425 | ;;;### (autoloads (list-load-path-shadows) "shadow" "emacs-lisp/shadow.el" |
| 22370 | ;;;;;; (17087 12380)) | 22426 | ;;;;;; (17107 37381)) |
| 22371 | ;;; Generated autoloads from emacs-lisp/shadow.el | 22427 | ;;; Generated autoloads from emacs-lisp/shadow.el |
| 22372 | 22428 | ||
| 22373 | (autoload (quote list-load-path-shadows) "shadow" "\ | 22429 | (autoload (quote list-load-path-shadows) "shadow" "\ |
| @@ -22414,8 +22470,8 @@ buffer called `*Shadows*'. Shadowings are located by calling the | |||
| 22414 | ;;;*** | 22470 | ;;;*** |
| 22415 | 22471 | ||
| 22416 | ;;;### (autoloads (shadow-initialize shadow-define-regexp-group shadow-define-literal-group | 22472 | ;;;### (autoloads (shadow-initialize shadow-define-regexp-group shadow-define-literal-group |
| 22417 | ;;;;;; shadow-define-cluster) "shadowfile" "shadowfile.el" (17087 | 22473 | ;;;;;; shadow-define-cluster) "shadowfile" "shadowfile.el" (17107 |
| 22418 | ;;;;;; 12564)) | 22474 | ;;;;;; 37380)) |
| 22419 | ;;; Generated autoloads from shadowfile.el | 22475 | ;;; Generated autoloads from shadowfile.el |
| 22420 | 22476 | ||
| 22421 | (autoload (quote shadow-define-cluster) "shadowfile" "\ | 22477 | (autoload (quote shadow-define-cluster) "shadowfile" "\ |
| @@ -22454,7 +22510,7 @@ Set up file shadowing. | |||
| 22454 | ;;;*** | 22510 | ;;;*** |
| 22455 | 22511 | ||
| 22456 | ;;;### (autoloads (shell shell-dumb-shell-regexp) "shell" "shell.el" | 22512 | ;;;### (autoloads (shell shell-dumb-shell-regexp) "shell" "shell.el" |
| 22457 | ;;;;;; (17087 12575)) | 22513 | ;;;;;; (17107 37383)) |
| 22458 | ;;; Generated autoloads from shell.el | 22514 | ;;; Generated autoloads from shell.el |
| 22459 | 22515 | ||
| 22460 | (defvar shell-dumb-shell-regexp "cmd\\(proxy\\)?\\.exe" "\ | 22516 | (defvar shell-dumb-shell-regexp "cmd\\(proxy\\)?\\.exe" "\ |
| @@ -22501,7 +22557,7 @@ Otherwise, one argument `-i' is passed to the shell. | |||
| 22501 | ;;;*** | 22557 | ;;;*** |
| 22502 | 22558 | ||
| 22503 | ;;;### (autoloads (sieve-upload-and-bury sieve-upload sieve-manage) | 22559 | ;;;### (autoloads (sieve-upload-and-bury sieve-upload sieve-manage) |
| 22504 | ;;;;;; "sieve" "gnus/sieve.el" (17087 12466)) | 22560 | ;;;;;; "sieve" "gnus/sieve.el" (17107 37379)) |
| 22505 | ;;; Generated autoloads from gnus/sieve.el | 22561 | ;;; Generated autoloads from gnus/sieve.el |
| 22506 | 22562 | ||
| 22507 | (autoload (quote sieve-manage) "sieve" "\ | 22563 | (autoload (quote sieve-manage) "sieve" "\ |
| @@ -22522,7 +22578,7 @@ Not documented | |||
| 22522 | ;;;*** | 22578 | ;;;*** |
| 22523 | 22579 | ||
| 22524 | ;;;### (autoloads (sieve-mode) "sieve-mode" "gnus/sieve-mode.el" | 22580 | ;;;### (autoloads (sieve-mode) "sieve-mode" "gnus/sieve-mode.el" |
| 22525 | ;;;;;; (17087 12574)) | 22581 | ;;;;;; (17107 37379)) |
| 22526 | ;;; Generated autoloads from gnus/sieve-mode.el | 22582 | ;;; Generated autoloads from gnus/sieve-mode.el |
| 22527 | 22583 | ||
| 22528 | (autoload (quote sieve-mode) "sieve-mode" "\ | 22584 | (autoload (quote sieve-mode) "sieve-mode" "\ |
| @@ -22537,8 +22593,8 @@ Turning on Sieve mode runs `sieve-mode-hook'. | |||
| 22537 | 22593 | ||
| 22538 | ;;;*** | 22594 | ;;;*** |
| 22539 | 22595 | ||
| 22540 | ;;;### (autoloads (simula-mode) "simula" "progmodes/simula.el" (17087 | 22596 | ;;;### (autoloads (simula-mode) "simula" "progmodes/simula.el" (17107 |
| 22541 | ;;;;;; 12451)) | 22597 | ;;;;;; 37382)) |
| 22542 | ;;; Generated autoloads from progmodes/simula.el | 22598 | ;;; Generated autoloads from progmodes/simula.el |
| 22543 | 22599 | ||
| 22544 | (autoload (quote simula-mode) "simula" "\ | 22600 | (autoload (quote simula-mode) "simula" "\ |
| @@ -22587,7 +22643,7 @@ with no arguments, if that value is non-nil. | |||
| 22587 | ;;;*** | 22643 | ;;;*** |
| 22588 | 22644 | ||
| 22589 | ;;;### (autoloads (skeleton-pair-insert-maybe skeleton-insert skeleton-proxy-new | 22645 | ;;;### (autoloads (skeleton-pair-insert-maybe skeleton-insert skeleton-proxy-new |
| 22590 | ;;;;;; define-skeleton) "skeleton" "skeleton.el" (17087 12570)) | 22646 | ;;;;;; define-skeleton) "skeleton" "skeleton.el" (17107 37380)) |
| 22591 | ;;; Generated autoloads from skeleton.el | 22647 | ;;; Generated autoloads from skeleton.el |
| 22592 | 22648 | ||
| 22593 | (defvar skeleton-filter (quote identity) "\ | 22649 | (defvar skeleton-filter (quote identity) "\ |
| @@ -22697,7 +22753,7 @@ symmetrical ones, and the same character twice for the others. | |||
| 22697 | ;;;*** | 22753 | ;;;*** |
| 22698 | 22754 | ||
| 22699 | ;;;### (autoloads (smerge-mode smerge-ediff) "smerge-mode" "smerge-mode.el" | 22755 | ;;;### (autoloads (smerge-mode smerge-ediff) "smerge-mode" "smerge-mode.el" |
| 22700 | ;;;;;; (17087 12575)) | 22756 | ;;;;;; (17107 37380)) |
| 22701 | ;;; Generated autoloads from smerge-mode.el | 22757 | ;;; Generated autoloads from smerge-mode.el |
| 22702 | 22758 | ||
| 22703 | (autoload (quote smerge-ediff) "smerge-mode" "\ | 22759 | (autoload (quote smerge-ediff) "smerge-mode" "\ |
| @@ -22716,7 +22772,7 @@ Minor mode to simplify editing output from the diff3 program. | |||
| 22716 | ;;;*** | 22772 | ;;;*** |
| 22717 | 22773 | ||
| 22718 | ;;;### (autoloads (smiley-buffer smiley-region) "smiley" "gnus/smiley.el" | 22774 | ;;;### (autoloads (smiley-buffer smiley-region) "smiley" "gnus/smiley.el" |
| 22719 | ;;;;;; (17087 12470)) | 22775 | ;;;;;; (17107 37379)) |
| 22720 | ;;; Generated autoloads from gnus/smiley.el | 22776 | ;;; Generated autoloads from gnus/smiley.el |
| 22721 | 22777 | ||
| 22722 | (autoload (quote smiley-region) "smiley" "\ | 22778 | (autoload (quote smiley-region) "smiley" "\ |
| @@ -22734,7 +22790,7 @@ interactively. If there's no argument, do it at the current buffer | |||
| 22734 | ;;;*** | 22790 | ;;;*** |
| 22735 | 22791 | ||
| 22736 | ;;;### (autoloads (smtpmail-send-queued-mail smtpmail-send-it) "smtpmail" | 22792 | ;;;### (autoloads (smtpmail-send-queued-mail smtpmail-send-it) "smtpmail" |
| 22737 | ;;;;;; "mail/smtpmail.el" (17087 12566)) | 22793 | ;;;;;; "mail/smtpmail.el" (17107 37380)) |
| 22738 | ;;; Generated autoloads from mail/smtpmail.el | 22794 | ;;; Generated autoloads from mail/smtpmail.el |
| 22739 | 22795 | ||
| 22740 | (autoload (quote smtpmail-send-it) "smtpmail" "\ | 22796 | (autoload (quote smtpmail-send-it) "smtpmail" "\ |
| @@ -22749,7 +22805,7 @@ Send mail that was queued as a result of setting `smtpmail-queue-mail'. | |||
| 22749 | 22805 | ||
| 22750 | ;;;*** | 22806 | ;;;*** |
| 22751 | 22807 | ||
| 22752 | ;;;### (autoloads (snake) "snake" "play/snake.el" (17087 12566)) | 22808 | ;;;### (autoloads (snake) "snake" "play/snake.el" (17107 37380)) |
| 22753 | ;;; Generated autoloads from play/snake.el | 22809 | ;;; Generated autoloads from play/snake.el |
| 22754 | 22810 | ||
| 22755 | (autoload (quote snake) "snake" "\ | 22811 | (autoload (quote snake) "snake" "\ |
| @@ -22773,7 +22829,7 @@ Snake mode keybindings: | |||
| 22773 | ;;;*** | 22829 | ;;;*** |
| 22774 | 22830 | ||
| 22775 | ;;;### (autoloads (snmpv2-mode snmp-mode) "snmp-mode" "net/snmp-mode.el" | 22831 | ;;;### (autoloads (snmpv2-mode snmp-mode) "snmp-mode" "net/snmp-mode.el" |
| 22776 | ;;;;;; (17087 12566)) | 22832 | ;;;;;; (17107 37379)) |
| 22777 | ;;; Generated autoloads from net/snmp-mode.el | 22833 | ;;; Generated autoloads from net/snmp-mode.el |
| 22778 | 22834 | ||
| 22779 | (autoload (quote snmp-mode) "snmp-mode" "\ | 22835 | (autoload (quote snmp-mode) "snmp-mode" "\ |
| @@ -22804,7 +22860,7 @@ then `snmpv2-mode-hook'. | |||
| 22804 | 22860 | ||
| 22805 | ;;;### (autoloads (solar-equinoxes-solstices sunrise-sunset calendar-location-name | 22861 | ;;;### (autoloads (solar-equinoxes-solstices sunrise-sunset calendar-location-name |
| 22806 | ;;;;;; calendar-longitude calendar-latitude calendar-time-display-form) | 22862 | ;;;;;; calendar-longitude calendar-latitude calendar-time-display-form) |
| 22807 | ;;;;;; "solar" "calendar/solar.el" (17087 12564)) | 22863 | ;;;;;; "solar" "calendar/solar.el" (17107 37380)) |
| 22808 | ;;; Generated autoloads from calendar/solar.el | 22864 | ;;; Generated autoloads from calendar/solar.el |
| 22809 | 22865 | ||
| 22810 | (defvar calendar-time-display-form (quote (12-hours ":" minutes am-pm (if time-zone " (") time-zone (if time-zone ")"))) "\ | 22866 | (defvar calendar-time-display-form (quote (12-hours ":" minutes am-pm (if time-zone " (") time-zone (if time-zone ")"))) "\ |
| @@ -22875,8 +22931,8 @@ Requires floating point. | |||
| 22875 | 22931 | ||
| 22876 | ;;;*** | 22932 | ;;;*** |
| 22877 | 22933 | ||
| 22878 | ;;;### (autoloads (solitaire) "solitaire" "play/solitaire.el" (17087 | 22934 | ;;;### (autoloads (solitaire) "solitaire" "play/solitaire.el" (17107 |
| 22879 | ;;;;;; 12566)) | 22935 | ;;;;;; 37380)) |
| 22880 | ;;; Generated autoloads from play/solitaire.el | 22936 | ;;; Generated autoloads from play/solitaire.el |
| 22881 | 22937 | ||
| 22882 | (autoload (quote solitaire) "solitaire" "\ | 22938 | (autoload (quote solitaire) "solitaire" "\ |
| @@ -22953,7 +23009,7 @@ Pick your favourite shortcuts: | |||
| 22953 | 23009 | ||
| 22954 | ;;;### (autoloads (reverse-region sort-columns sort-regexp-fields | 23010 | ;;;### (autoloads (reverse-region sort-columns sort-regexp-fields |
| 22955 | ;;;;;; sort-fields sort-numeric-fields sort-pages sort-paragraphs | 23011 | ;;;;;; sort-fields sort-numeric-fields sort-pages sort-paragraphs |
| 22956 | ;;;;;; sort-lines sort-subr) "sort" "sort.el" (17087 12380)) | 23012 | ;;;;;; sort-lines sort-subr) "sort" "sort.el" (17107 37380)) |
| 22957 | ;;; Generated autoloads from sort.el | 23013 | ;;; Generated autoloads from sort.el |
| 22958 | 23014 | ||
| 22959 | (autoload (quote sort-subr) "sort" "\ | 23015 | (autoload (quote sort-subr) "sort" "\ |
| @@ -23095,8 +23151,8 @@ From a program takes two point or marker arguments, BEG and END. | |||
| 23095 | 23151 | ||
| 23096 | ;;;*** | 23152 | ;;;*** |
| 23097 | 23153 | ||
| 23098 | ;;;### (autoloads (spam-initialize) "spam" "gnus/spam.el" (17087 | 23154 | ;;;### (autoloads (spam-initialize) "spam" "gnus/spam.el" (17107 |
| 23099 | ;;;;;; 12574)) | 23155 | ;;;;;; 37379)) |
| 23100 | ;;; Generated autoloads from gnus/spam.el | 23156 | ;;; Generated autoloads from gnus/spam.el |
| 23101 | 23157 | ||
| 23102 | (autoload (quote spam-initialize) "spam" "\ | 23158 | (autoload (quote spam-initialize) "spam" "\ |
| @@ -23108,7 +23164,7 @@ Install the spam.el hooks and do other initialization | |||
| 23108 | 23164 | ||
| 23109 | ;;;### (autoloads (spam-report-deagentize spam-report-agentize spam-report-url-to-file | 23165 | ;;;### (autoloads (spam-report-deagentize spam-report-agentize spam-report-url-to-file |
| 23110 | ;;;;;; spam-report-url-ping-mm-url spam-report-process-queue) "spam-report" | 23166 | ;;;;;; spam-report-url-ping-mm-url spam-report-process-queue) "spam-report" |
| 23111 | ;;;;;; "gnus/spam-report.el" (17087 12567)) | 23167 | ;;;;;; "gnus/spam-report.el" (17107 37379)) |
| 23112 | ;;; Generated autoloads from gnus/spam-report.el | 23168 | ;;; Generated autoloads from gnus/spam-report.el |
| 23113 | 23169 | ||
| 23114 | (autoload (quote spam-report-process-queue) "spam-report" "\ | 23170 | (autoload (quote spam-report-process-queue) "spam-report" "\ |
| @@ -23151,7 +23207,7 @@ Spam reports will be queued with the method used when | |||
| 23151 | ;;;*** | 23207 | ;;;*** |
| 23152 | 23208 | ||
| 23153 | ;;;### (autoloads (speedbar-get-focus speedbar-frame-mode) "speedbar" | 23209 | ;;;### (autoloads (speedbar-get-focus speedbar-frame-mode) "speedbar" |
| 23154 | ;;;;;; "speedbar.el" (17087 12566)) | 23210 | ;;;;;; "speedbar.el" (17107 37380)) |
| 23155 | ;;; Generated autoloads from speedbar.el | 23211 | ;;; Generated autoloads from speedbar.el |
| 23156 | 23212 | ||
| 23157 | (defalias (quote speedbar) (quote speedbar-frame-mode)) | 23213 | (defalias (quote speedbar) (quote speedbar-frame-mode)) |
| @@ -23176,7 +23232,7 @@ selected. If the speedbar frame is active, then select the attached frame. | |||
| 23176 | ;;;*** | 23232 | ;;;*** |
| 23177 | 23233 | ||
| 23178 | ;;;### (autoloads (spell-string spell-region spell-word spell-buffer) | 23234 | ;;;### (autoloads (spell-string spell-region spell-word spell-buffer) |
| 23179 | ;;;;;; "spell" "textmodes/spell.el" (17087 12564)) | 23235 | ;;;;;; "spell" "textmodes/spell.el" (17107 37381)) |
| 23180 | ;;; Generated autoloads from textmodes/spell.el | 23236 | ;;; Generated autoloads from textmodes/spell.el |
| 23181 | 23237 | ||
| 23182 | (put (quote spell-filter) (quote risky-local-variable) t) | 23238 | (put (quote spell-filter) (quote risky-local-variable) t) |
| @@ -23212,8 +23268,8 @@ Check spelling of string supplied as argument. | |||
| 23212 | 23268 | ||
| 23213 | ;;;*** | 23269 | ;;;*** |
| 23214 | 23270 | ||
| 23215 | ;;;### (autoloads (snarf-spooks spook) "spook" "play/spook.el" (17087 | 23271 | ;;;### (autoloads (snarf-spooks spook) "spook" "play/spook.el" (17107 |
| 23216 | ;;;;;; 12380)) | 23272 | ;;;;;; 37380)) |
| 23217 | ;;; Generated autoloads from play/spook.el | 23273 | ;;; Generated autoloads from play/spook.el |
| 23218 | 23274 | ||
| 23219 | (autoload (quote spook) "spook" "\ | 23275 | (autoload (quote spook) "spook" "\ |
| @@ -23231,8 +23287,8 @@ Return a vector containing the lines from `spook-phrases-file'. | |||
| 23231 | ;;;### (autoloads (sql-linter sql-db2 sql-interbase sql-postgres | 23287 | ;;;### (autoloads (sql-linter sql-db2 sql-interbase sql-postgres |
| 23232 | ;;;;;; sql-ms sql-ingres sql-solid sql-mysql sql-sqlite sql-informix | 23288 | ;;;;;; sql-ms sql-ingres sql-solid sql-mysql sql-sqlite sql-informix |
| 23233 | ;;;;;; sql-sybase sql-oracle sql-product-interactive sql-mode sql-help | 23289 | ;;;;;; sql-sybase sql-oracle sql-product-interactive sql-mode sql-help |
| 23234 | ;;;;;; sql-add-product-keywords) "sql" "progmodes/sql.el" (17087 | 23290 | ;;;;;; sql-add-product-keywords) "sql" "progmodes/sql.el" (17107 |
| 23235 | ;;;;;; 12570)) | 23291 | ;;;;;; 37381)) |
| 23236 | ;;; Generated autoloads from progmodes/sql.el | 23292 | ;;; Generated autoloads from progmodes/sql.el |
| 23237 | 23293 | ||
| 23238 | (autoload (quote sql-add-product-keywords) "sql" "\ | 23294 | (autoload (quote sql-add-product-keywords) "sql" "\ |
| @@ -23663,8 +23719,8 @@ input. See `sql-interactive-mode'. | |||
| 23663 | ;;;;;; strokes-mode strokes-list-strokes strokes-load-user-strokes | 23719 | ;;;;;; strokes-mode strokes-list-strokes strokes-load-user-strokes |
| 23664 | ;;;;;; strokes-help strokes-describe-stroke strokes-do-complex-stroke | 23720 | ;;;;;; strokes-help strokes-describe-stroke strokes-do-complex-stroke |
| 23665 | ;;;;;; strokes-do-stroke strokes-read-complex-stroke strokes-read-stroke | 23721 | ;;;;;; strokes-do-stroke strokes-read-complex-stroke strokes-read-stroke |
| 23666 | ;;;;;; strokes-global-set-stroke) "strokes" "strokes.el" (17087 | 23722 | ;;;;;; strokes-global-set-stroke) "strokes" "strokes.el" (17107 |
| 23667 | ;;;;;; 12570)) | 23723 | ;;;;;; 37380)) |
| 23668 | ;;; Generated autoloads from strokes.el | 23724 | ;;; Generated autoloads from strokes.el |
| 23669 | 23725 | ||
| 23670 | (autoload (quote strokes-global-set-stroke) "strokes" "\ | 23726 | (autoload (quote strokes-global-set-stroke) "strokes" "\ |
| @@ -23741,6 +23797,8 @@ use either \\[customize] or the function `strokes-mode'.") | |||
| 23741 | 23797 | ||
| 23742 | (custom-autoload (quote strokes-mode) "strokes") | 23798 | (custom-autoload (quote strokes-mode) "strokes") |
| 23743 | 23799 | ||
| 23800 | (put (quote strokes-mode) (quote custom-set) (quote custom-set-minor-mode)) | ||
| 23801 | |||
| 23744 | (autoload (quote strokes-mode) "strokes" "\ | 23802 | (autoload (quote strokes-mode) "strokes" "\ |
| 23745 | Toggle Strokes global minor mode.\\<strokes-mode-map> | 23803 | Toggle Strokes global minor mode.\\<strokes-mode-map> |
| 23746 | With ARG, turn strokes on if and only if ARG is positive. | 23804 | With ARG, turn strokes on if and only if ARG is positive. |
| @@ -23773,7 +23831,7 @@ Read a complex stroke and insert its glyph into the current buffer. | |||
| 23773 | ;;;*** | 23831 | ;;;*** |
| 23774 | 23832 | ||
| 23775 | ;;;### (autoloads (studlify-buffer studlify-word studlify-region) | 23833 | ;;;### (autoloads (studlify-buffer studlify-word studlify-region) |
| 23776 | ;;;;;; "studly" "play/studly.el" (17087 12380)) | 23834 | ;;;;;; "studly" "play/studly.el" (17107 37380)) |
| 23777 | ;;; Generated autoloads from play/studly.el | 23835 | ;;; Generated autoloads from play/studly.el |
| 23778 | 23836 | ||
| 23779 | (autoload (quote studlify-region) "studly" "\ | 23837 | (autoload (quote studlify-region) "studly" "\ |
| @@ -23794,7 +23852,7 @@ Studlify-case the current buffer. | |||
| 23794 | ;;;*** | 23852 | ;;;*** |
| 23795 | 23853 | ||
| 23796 | ;;;### (autoloads (sc-cite-original) "supercite" "mail/supercite.el" | 23854 | ;;;### (autoloads (sc-cite-original) "supercite" "mail/supercite.el" |
| 23797 | ;;;;;; (17087 12570)) | 23855 | ;;;;;; (17107 37380)) |
| 23798 | ;;; Generated autoloads from mail/supercite.el | 23856 | ;;; Generated autoloads from mail/supercite.el |
| 23799 | 23857 | ||
| 23800 | (autoload (quote sc-cite-original) "supercite" "\ | 23858 | (autoload (quote sc-cite-original) "supercite" "\ |
| @@ -23826,8 +23884,8 @@ before, and `sc-post-hook' is run after the guts of this function. | |||
| 23826 | 23884 | ||
| 23827 | ;;;*** | 23885 | ;;;*** |
| 23828 | 23886 | ||
| 23829 | ;;;### (autoloads (syntax-ppss) "syntax" "emacs-lisp/syntax.el" (17087 | 23887 | ;;;### (autoloads (syntax-ppss) "syntax" "emacs-lisp/syntax.el" (17107 |
| 23830 | ;;;;;; 12380)) | 23888 | ;;;;;; 37381)) |
| 23831 | ;;; Generated autoloads from emacs-lisp/syntax.el | 23889 | ;;; Generated autoloads from emacs-lisp/syntax.el |
| 23832 | 23890 | ||
| 23833 | (autoload (quote syntax-ppss) "syntax" "\ | 23891 | (autoload (quote syntax-ppss) "syntax" "\ |
| @@ -23840,7 +23898,7 @@ Point is at POS when this function returns. | |||
| 23840 | 23898 | ||
| 23841 | ;;;*** | 23899 | ;;;*** |
| 23842 | 23900 | ||
| 23843 | ;;;### (autoloads (tabify untabify) "tabify" "tabify.el" (17087 12380)) | 23901 | ;;;### (autoloads (tabify untabify) "tabify" "tabify.el" (17107 37383)) |
| 23844 | ;;; Generated autoloads from tabify.el | 23902 | ;;; Generated autoloads from tabify.el |
| 23845 | 23903 | ||
| 23846 | (autoload (quote untabify) "tabify" "\ | 23904 | (autoload (quote untabify) "tabify" "\ |
| @@ -23875,7 +23933,7 @@ The variable `tab-width' controls the spacing of tab stops. | |||
| 23875 | ;;;;;; table-recognize table-insert-row-column table-insert-column | 23933 | ;;;;;; table-recognize table-insert-row-column table-insert-column |
| 23876 | ;;;;;; table-insert-row table-insert table-point-left-cell-hook | 23934 | ;;;;;; table-insert-row table-insert table-point-left-cell-hook |
| 23877 | ;;;;;; table-point-entered-cell-hook table-load-hook table-cell-map-hook) | 23935 | ;;;;;; table-point-entered-cell-hook table-load-hook table-cell-map-hook) |
| 23878 | ;;;;;; "table" "textmodes/table.el" (17087 12570)) | 23936 | ;;;;;; "table" "textmodes/table.el" (17107 37381)) |
| 23879 | ;;; Generated autoloads from textmodes/table.el | 23937 | ;;; Generated autoloads from textmodes/table.el |
| 23880 | 23938 | ||
| 23881 | (defvar table-cell-map-hook nil "\ | 23939 | (defvar table-cell-map-hook nil "\ |
| @@ -24463,7 +24521,7 @@ converts a table into plain text without frames. It is a companion to | |||
| 24463 | 24521 | ||
| 24464 | ;;;*** | 24522 | ;;;*** |
| 24465 | 24523 | ||
| 24466 | ;;;### (autoloads (talk talk-connect) "talk" "talk.el" (17087 12393)) | 24524 | ;;;### (autoloads (talk talk-connect) "talk" "talk.el" (17107 37380)) |
| 24467 | ;;; Generated autoloads from talk.el | 24525 | ;;; Generated autoloads from talk.el |
| 24468 | 24526 | ||
| 24469 | (autoload (quote talk-connect) "talk" "\ | 24527 | (autoload (quote talk-connect) "talk" "\ |
| @@ -24478,7 +24536,7 @@ Connect to the Emacs talk group from the current X display or tty frame. | |||
| 24478 | 24536 | ||
| 24479 | ;;;*** | 24537 | ;;;*** |
| 24480 | 24538 | ||
| 24481 | ;;;### (autoloads (tar-mode) "tar-mode" "tar-mode.el" (17087 12509)) | 24539 | ;;;### (autoloads (tar-mode) "tar-mode" "tar-mode.el" (17107 37380)) |
| 24482 | ;;; Generated autoloads from tar-mode.el | 24540 | ;;; Generated autoloads from tar-mode.el |
| 24483 | 24541 | ||
| 24484 | (autoload (quote tar-mode) "tar-mode" "\ | 24542 | (autoload (quote tar-mode) "tar-mode" "\ |
| @@ -24502,7 +24560,7 @@ See also: variables `tar-update-datestamp' and `tar-anal-blocksize'. | |||
| 24502 | ;;;*** | 24560 | ;;;*** |
| 24503 | 24561 | ||
| 24504 | ;;;### (autoloads (tcl-help-on-word inferior-tcl tcl-mode) "tcl" | 24562 | ;;;### (autoloads (tcl-help-on-word inferior-tcl tcl-mode) "tcl" |
| 24505 | ;;;;;; "progmodes/tcl.el" (17087 12564)) | 24563 | ;;;;;; "progmodes/tcl.el" (17107 37381)) |
| 24506 | ;;; Generated autoloads from progmodes/tcl.el | 24564 | ;;; Generated autoloads from progmodes/tcl.el |
| 24507 | 24565 | ||
| 24508 | (autoload (quote tcl-mode) "tcl" "\ | 24566 | (autoload (quote tcl-mode) "tcl" "\ |
| @@ -24553,7 +24611,7 @@ Prefix argument means invert sense of `tcl-use-smart-word-finder'. | |||
| 24553 | 24611 | ||
| 24554 | ;;;*** | 24612 | ;;;*** |
| 24555 | 24613 | ||
| 24556 | ;;;### (autoloads (rsh telnet) "telnet" "net/telnet.el" (17087 12564)) | 24614 | ;;;### (autoloads (rsh telnet) "telnet" "net/telnet.el" (17107 37379)) |
| 24557 | ;;; Generated autoloads from net/telnet.el | 24615 | ;;; Generated autoloads from net/telnet.el |
| 24558 | (add-hook 'same-window-regexps "\\*telnet-.*\\*\\(\\|<[0-9]+>\\)") | 24616 | (add-hook 'same-window-regexps "\\*telnet-.*\\*\\(\\|<[0-9]+>\\)") |
| 24559 | 24617 | ||
| @@ -24580,8 +24638,8 @@ Normally input is edited in Emacs and sent a line at a time. | |||
| 24580 | 24638 | ||
| 24581 | ;;;*** | 24639 | ;;;*** |
| 24582 | 24640 | ||
| 24583 | ;;;### (autoloads (ansi-term term make-term) "term" "term.el" (17087 | 24641 | ;;;### (autoloads (ansi-term term make-term) "term" "term.el" (17107 |
| 24584 | ;;;;;; 12575)) | 24642 | ;;;;;; 37380)) |
| 24585 | ;;; Generated autoloads from term.el | 24643 | ;;; Generated autoloads from term.el |
| 24586 | 24644 | ||
| 24587 | (autoload (quote make-term) "term" "\ | 24645 | (autoload (quote make-term) "term" "\ |
| @@ -24609,8 +24667,8 @@ Start a terminal-emulator in a new buffer. | |||
| 24609 | 24667 | ||
| 24610 | ;;;*** | 24668 | ;;;*** |
| 24611 | 24669 | ||
| 24612 | ;;;### (autoloads (terminal-emulator) "terminal" "terminal.el" (17087 | 24670 | ;;;### (autoloads (terminal-emulator) "terminal" "terminal.el" (17107 |
| 24613 | ;;;;;; 12570)) | 24671 | ;;;;;; 37380)) |
| 24614 | ;;; Generated autoloads from terminal.el | 24672 | ;;; Generated autoloads from terminal.el |
| 24615 | 24673 | ||
| 24616 | (autoload (quote terminal-emulator) "terminal" "\ | 24674 | (autoload (quote terminal-emulator) "terminal" "\ |
| @@ -24647,7 +24705,7 @@ subprocess started. | |||
| 24647 | ;;;*** | 24705 | ;;;*** |
| 24648 | 24706 | ||
| 24649 | ;;;### (autoloads (testcover-this-defun) "testcover" "emacs-lisp/testcover.el" | 24707 | ;;;### (autoloads (testcover-this-defun) "testcover" "emacs-lisp/testcover.el" |
| 24650 | ;;;;;; (17087 12569)) | 24708 | ;;;;;; (17107 37381)) |
| 24651 | ;;; Generated autoloads from emacs-lisp/testcover.el | 24709 | ;;; Generated autoloads from emacs-lisp/testcover.el |
| 24652 | 24710 | ||
| 24653 | (autoload (quote testcover-this-defun) "testcover" "\ | 24711 | (autoload (quote testcover-this-defun) "testcover" "\ |
| @@ -24657,7 +24715,7 @@ Start coverage on function under point. | |||
| 24657 | 24715 | ||
| 24658 | ;;;*** | 24716 | ;;;*** |
| 24659 | 24717 | ||
| 24660 | ;;;### (autoloads (tetris) "tetris" "play/tetris.el" (17087 12566)) | 24718 | ;;;### (autoloads (tetris) "tetris" "play/tetris.el" (17107 37380)) |
| 24661 | ;;; Generated autoloads from play/tetris.el | 24719 | ;;; Generated autoloads from play/tetris.el |
| 24662 | 24720 | ||
| 24663 | (autoload (quote tetris) "tetris" "\ | 24721 | (autoload (quote tetris) "tetris" "\ |
| @@ -24688,7 +24746,7 @@ tetris-mode keybindings: | |||
| 24688 | ;;;;;; tex-start-commands tex-start-options slitex-run-command latex-run-command | 24746 | ;;;;;; tex-start-commands tex-start-options slitex-run-command latex-run-command |
| 24689 | ;;;;;; tex-run-command tex-offer-save tex-main-file tex-first-line-header-regexp | 24747 | ;;;;;; tex-run-command tex-offer-save tex-main-file tex-first-line-header-regexp |
| 24690 | ;;;;;; tex-directory tex-shell-file-name) "tex-mode" "textmodes/tex-mode.el" | 24748 | ;;;;;; tex-directory tex-shell-file-name) "tex-mode" "textmodes/tex-mode.el" |
| 24691 | ;;;;;; (17087 12570)) | 24749 | ;;;;;; (17107 37381)) |
| 24692 | ;;; Generated autoloads from textmodes/tex-mode.el | 24750 | ;;; Generated autoloads from textmodes/tex-mode.el |
| 24693 | 24751 | ||
| 24694 | (defvar tex-shell-file-name nil "\ | 24752 | (defvar tex-shell-file-name nil "\ |
| @@ -24990,7 +25048,7 @@ Major mode to edit DocTeX files. | |||
| 24990 | ;;;*** | 25048 | ;;;*** |
| 24991 | 25049 | ||
| 24992 | ;;;### (autoloads (texi2info texinfo-format-region texinfo-format-buffer) | 25050 | ;;;### (autoloads (texi2info texinfo-format-region texinfo-format-buffer) |
| 24993 | ;;;;;; "texinfmt" "textmodes/texinfmt.el" (17087 12565)) | 25051 | ;;;;;; "texinfmt" "textmodes/texinfmt.el" (17107 37381)) |
| 24994 | ;;; Generated autoloads from textmodes/texinfmt.el | 25052 | ;;; Generated autoloads from textmodes/texinfmt.el |
| 24995 | 25053 | ||
| 24996 | (autoload (quote texinfo-format-buffer) "texinfmt" "\ | 25054 | (autoload (quote texinfo-format-buffer) "texinfmt" "\ |
| @@ -25030,7 +25088,7 @@ if large. You can use Info-split to do this manually. | |||
| 25030 | ;;;*** | 25088 | ;;;*** |
| 25031 | 25089 | ||
| 25032 | ;;;### (autoloads (texinfo-mode texinfo-close-quote texinfo-open-quote) | 25090 | ;;;### (autoloads (texinfo-mode texinfo-close-quote texinfo-open-quote) |
| 25033 | ;;;;;; "texinfo" "textmodes/texinfo.el" (17087 12570)) | 25091 | ;;;;;; "texinfo" "textmodes/texinfo.el" (17107 37381)) |
| 25034 | ;;; Generated autoloads from textmodes/texinfo.el | 25092 | ;;; Generated autoloads from textmodes/texinfo.el |
| 25035 | 25093 | ||
| 25036 | (defvar texinfo-open-quote "``" "\ | 25094 | (defvar texinfo-open-quote "``" "\ |
| @@ -25117,7 +25175,7 @@ value of `texinfo-mode-hook'. | |||
| 25117 | ;;;### (autoloads (thai-auto-composition-mode thai-composition-function | 25175 | ;;;### (autoloads (thai-auto-composition-mode thai-composition-function |
| 25118 | ;;;;;; thai-post-read-conversion thai-compose-buffer thai-compose-string | 25176 | ;;;;;; thai-post-read-conversion thai-compose-buffer thai-compose-string |
| 25119 | ;;;;;; thai-compose-region) "thai-util" "language/thai-util.el" | 25177 | ;;;;;; thai-compose-region) "thai-util" "language/thai-util.el" |
| 25120 | ;;;;;; (17087 12528)) | 25178 | ;;;;;; (17107 37382)) |
| 25121 | ;;; Generated autoloads from language/thai-util.el | 25179 | ;;; Generated autoloads from language/thai-util.el |
| 25122 | 25180 | ||
| 25123 | (autoload (quote thai-compose-region) "thai-util" "\ | 25181 | (autoload (quote thai-compose-region) "thai-util" "\ |
| @@ -25161,7 +25219,7 @@ Minor mode for automatically correct Thai character composition. | |||
| 25161 | 25219 | ||
| 25162 | ;;;### (autoloads (list-at-point number-at-point symbol-at-point | 25220 | ;;;### (autoloads (list-at-point number-at-point symbol-at-point |
| 25163 | ;;;;;; sexp-at-point thing-at-point bounds-of-thing-at-point forward-thing) | 25221 | ;;;;;; sexp-at-point thing-at-point bounds-of-thing-at-point forward-thing) |
| 25164 | ;;;;;; "thingatpt" "thingatpt.el" (17087 12380)) | 25222 | ;;;;;; "thingatpt" "thingatpt.el" (17107 37381)) |
| 25165 | ;;; Generated autoloads from thingatpt.el | 25223 | ;;; Generated autoloads from thingatpt.el |
| 25166 | 25224 | ||
| 25167 | (autoload (quote forward-thing) "thingatpt" "\ | 25225 | (autoload (quote forward-thing) "thingatpt" "\ |
| @@ -25218,7 +25276,7 @@ Not documented | |||
| 25218 | 25276 | ||
| 25219 | ;;;### (autoloads (thumbs-dired-setroot thumbs-dired-show-all thumbs-dired-show-marked | 25277 | ;;;### (autoloads (thumbs-dired-setroot thumbs-dired-show-all thumbs-dired-show-marked |
| 25220 | ;;;;;; thumbs-show-all-from-dir thumbs-find-thumb) "thumbs" "thumbs.el" | 25278 | ;;;;;; thumbs-show-all-from-dir thumbs-find-thumb) "thumbs" "thumbs.el" |
| 25221 | ;;;;;; (17087 12570)) | 25279 | ;;;;;; (17107 37383)) |
| 25222 | ;;; Generated autoloads from thumbs.el | 25280 | ;;; Generated autoloads from thumbs.el |
| 25223 | 25281 | ||
| 25224 | (autoload (quote thumbs-find-thumb) "thumbs" "\ | 25282 | (autoload (quote thumbs-find-thumb) "thumbs" "\ |
| @@ -25257,7 +25315,7 @@ In dired, call the setroot program on the image at point. | |||
| 25257 | ;;;;;; tibetan-composition-function tibetan-decompose-string tibetan-decompose-region | 25315 | ;;;;;; tibetan-composition-function tibetan-decompose-string tibetan-decompose-region |
| 25258 | ;;;;;; tibetan-compose-region tibetan-compose-string tibetan-transcription-to-tibetan | 25316 | ;;;;;; tibetan-compose-region tibetan-compose-string tibetan-transcription-to-tibetan |
| 25259 | ;;;;;; tibetan-tibetan-to-transcription tibetan-char-p) "tibet-util" | 25317 | ;;;;;; tibetan-tibetan-to-transcription tibetan-char-p) "tibet-util" |
| 25260 | ;;;;;; "language/tibet-util.el" (17087 12562)) | 25318 | ;;;;;; "language/tibet-util.el" (17107 37382)) |
| 25261 | ;;; Generated autoloads from language/tibet-util.el | 25319 | ;;; Generated autoloads from language/tibet-util.el |
| 25262 | 25320 | ||
| 25263 | (autoload (quote tibetan-char-p) "tibet-util" "\ | 25321 | (autoload (quote tibetan-char-p) "tibet-util" "\ |
| @@ -25336,7 +25394,7 @@ Not documented | |||
| 25336 | ;;;*** | 25394 | ;;;*** |
| 25337 | 25395 | ||
| 25338 | ;;;### (autoloads (tildify-buffer tildify-region) "tildify" "textmodes/tildify.el" | 25396 | ;;;### (autoloads (tildify-buffer tildify-region) "tildify" "textmodes/tildify.el" |
| 25339 | ;;;;;; (17087 12380)) | 25397 | ;;;;;; (17107 37381)) |
| 25340 | ;;; Generated autoloads from textmodes/tildify.el | 25398 | ;;; Generated autoloads from textmodes/tildify.el |
| 25341 | 25399 | ||
| 25342 | (autoload (quote tildify-region) "tildify" "\ | 25400 | (autoload (quote tildify-region) "tildify" "\ |
| @@ -25360,7 +25418,7 @@ This function performs no refilling of the changed text. | |||
| 25360 | ;;;*** | 25418 | ;;;*** |
| 25361 | 25419 | ||
| 25362 | ;;;### (autoloads (display-time-mode display-time display-time-day-and-date) | 25420 | ;;;### (autoloads (display-time-mode display-time display-time-day-and-date) |
| 25363 | ;;;;;; "time" "time.el" (17087 12570)) | 25421 | ;;;;;; "time" "time.el" (17107 37380)) |
| 25364 | ;;; Generated autoloads from time.el | 25422 | ;;; Generated autoloads from time.el |
| 25365 | 25423 | ||
| 25366 | (defvar display-time-day-and-date nil "\ | 25424 | (defvar display-time-day-and-date nil "\ |
| @@ -25385,6 +25443,8 @@ use either \\[customize] or the function `display-time-mode'.") | |||
| 25385 | 25443 | ||
| 25386 | (custom-autoload (quote display-time-mode) "time") | 25444 | (custom-autoload (quote display-time-mode) "time") |
| 25387 | 25445 | ||
| 25446 | (put (quote display-time-mode) (quote custom-set) (quote custom-set-minor-mode)) | ||
| 25447 | |||
| 25388 | (autoload (quote display-time-mode) "time" "\ | 25448 | (autoload (quote display-time-mode) "time" "\ |
| 25389 | Toggle display of time, load level, and mail flag in mode lines. | 25449 | Toggle display of time, load level, and mail flag in mode lines. |
| 25390 | With a numeric arg, enable this display if arg is positive. | 25450 | With a numeric arg, enable this display if arg is positive. |
| @@ -25401,8 +25461,8 @@ This runs the normal hook `display-time-hook' after each update. | |||
| 25401 | ;;;### (autoloads (safe-date-to-time time-to-days time-to-day-in-year | 25461 | ;;;### (autoloads (safe-date-to-time time-to-days time-to-day-in-year |
| 25402 | ;;;;;; date-leap-year-p days-between date-to-day time-add time-subtract | 25462 | ;;;;;; date-leap-year-p days-between date-to-day time-add time-subtract |
| 25403 | ;;;;;; time-since days-to-time time-less-p seconds-to-time time-to-seconds | 25463 | ;;;;;; time-since days-to-time time-less-p seconds-to-time time-to-seconds |
| 25404 | ;;;;;; date-to-time) "time-date" "calendar/time-date.el" (17087 | 25464 | ;;;;;; date-to-time) "time-date" "calendar/time-date.el" (17107 |
| 25405 | ;;;;;; 12531)) | 25465 | ;;;;;; 37380)) |
| 25406 | ;;; Generated autoloads from calendar/time-date.el | 25466 | ;;; Generated autoloads from calendar/time-date.el |
| 25407 | 25467 | ||
| 25408 | (autoload (quote date-to-time) "time-date" "\ | 25468 | (autoload (quote date-to-time) "time-date" "\ |
| @@ -25488,7 +25548,7 @@ If DATE is malformed, return a time value of zeros. | |||
| 25488 | ;;;*** | 25548 | ;;;*** |
| 25489 | 25549 | ||
| 25490 | ;;;### (autoloads (time-stamp-toggle-active time-stamp) "time-stamp" | 25550 | ;;;### (autoloads (time-stamp-toggle-active time-stamp) "time-stamp" |
| 25491 | ;;;;;; "time-stamp.el" (17087 12565)) | 25551 | ;;;;;; "time-stamp.el" (17107 37380)) |
| 25492 | ;;; Generated autoloads from time-stamp.el | 25552 | ;;; Generated autoloads from time-stamp.el |
| 25493 | 25553 | ||
| 25494 | (autoload (quote time-stamp) "time-stamp" "\ | 25554 | (autoload (quote time-stamp) "time-stamp" "\ |
| @@ -25523,7 +25583,7 @@ With ARG, turn time stamping on if and only if arg is positive. | |||
| 25523 | ;;;;;; timeclock-workday-remaining-string timeclock-reread-log timeclock-query-out | 25583 | ;;;;;; timeclock-workday-remaining-string timeclock-reread-log timeclock-query-out |
| 25524 | ;;;;;; timeclock-change timeclock-status-string timeclock-out timeclock-in | 25584 | ;;;;;; timeclock-change timeclock-status-string timeclock-out timeclock-in |
| 25525 | ;;;;;; timeclock-modeline-display) "timeclock" "calendar/timeclock.el" | 25585 | ;;;;;; timeclock-modeline-display) "timeclock" "calendar/timeclock.el" |
| 25526 | ;;;;;; (17087 12530)) | 25586 | ;;;;;; (17107 37380)) |
| 25527 | ;;; Generated autoloads from calendar/timeclock.el | 25587 | ;;; Generated autoloads from calendar/timeclock.el |
| 25528 | 25588 | ||
| 25529 | (autoload (quote timeclock-modeline-display) "timeclock" "\ | 25589 | (autoload (quote timeclock-modeline-display) "timeclock" "\ |
| @@ -25624,7 +25684,7 @@ relative only to the time worked today, and not to past time. | |||
| 25624 | 25684 | ||
| 25625 | ;;;### (autoloads (with-timeout run-with-idle-timer add-timeout run-with-timer | 25685 | ;;;### (autoloads (with-timeout run-with-idle-timer add-timeout run-with-timer |
| 25626 | ;;;;;; run-at-time cancel-function-timers cancel-timer) "timer" | 25686 | ;;;;;; run-at-time cancel-function-timers cancel-timer) "timer" |
| 25627 | ;;;;;; "emacs-lisp/timer.el" (17087 12466)) | 25687 | ;;;;;; "emacs-lisp/timer.el" (17107 37381)) |
| 25628 | ;;; Generated autoloads from emacs-lisp/timer.el | 25688 | ;;; Generated autoloads from emacs-lisp/timer.el |
| 25629 | 25689 | ||
| 25630 | (defalias (quote disable-timeout) (quote cancel-timer)) | 25690 | (defalias (quote disable-timeout) (quote cancel-timer)) |
| @@ -25685,19 +25745,17 @@ This function returns a timer object which you can use in `cancel-timer'. | |||
| 25685 | (autoload (quote with-timeout) "timer" "\ | 25745 | (autoload (quote with-timeout) "timer" "\ |
| 25686 | Run BODY, but if it doesn't finish in SECONDS seconds, give up. | 25746 | Run BODY, but if it doesn't finish in SECONDS seconds, give up. |
| 25687 | If we give up, we run the TIMEOUT-FORMS and return the value of the last one. | 25747 | If we give up, we run the TIMEOUT-FORMS and return the value of the last one. |
| 25688 | The call should look like: | ||
| 25689 | (with-timeout (SECONDS TIMEOUT-FORMS...) BODY...) | ||
| 25690 | The timeout is checked whenever Emacs waits for some kind of external | 25748 | The timeout is checked whenever Emacs waits for some kind of external |
| 25691 | event (such as keyboard input, input from subprocesses, or a certain time); | 25749 | event (such as keyboard input, input from subprocesses, or a certain time); |
| 25692 | if the program loops without waiting in any way, the timeout will not | 25750 | if the program loops without waiting in any way, the timeout will not |
| 25693 | be detected. | 25751 | be detected. |
| 25694 | 25752 | ||
| 25695 | \(fn LIST &rest BODY)" nil (quote macro)) | 25753 | \(fn (SECONDS TIMEOUT-FORMS...) BODY)" nil (quote macro)) |
| 25696 | 25754 | ||
| 25697 | ;;;*** | 25755 | ;;;*** |
| 25698 | 25756 | ||
| 25699 | ;;;### (autoloads (batch-titdic-convert titdic-convert) "titdic-cnv" | 25757 | ;;;### (autoloads (batch-titdic-convert titdic-convert) "titdic-cnv" |
| 25700 | ;;;;;; "international/titdic-cnv.el" (17087 12558)) | 25758 | ;;;;;; "international/titdic-cnv.el" (17107 37380)) |
| 25701 | ;;; Generated autoloads from international/titdic-cnv.el | 25759 | ;;; Generated autoloads from international/titdic-cnv.el |
| 25702 | 25760 | ||
| 25703 | (autoload (quote titdic-convert) "titdic-cnv" "\ | 25761 | (autoload (quote titdic-convert) "titdic-cnv" "\ |
| @@ -25720,8 +25778,8 @@ To get complete usage, invoke \"emacs -batch -f batch-titdic-convert -h\". | |||
| 25720 | ;;;*** | 25778 | ;;;*** |
| 25721 | 25779 | ||
| 25722 | ;;;### (autoloads (tamil-composition-function tamil-post-read-conversion | 25780 | ;;;### (autoloads (tamil-composition-function tamil-post-read-conversion |
| 25723 | ;;;;;; tamil-compose-region) "tml-util" "language/tml-util.el" (17087 | 25781 | ;;;;;; tamil-compose-region) "tml-util" "language/tml-util.el" (17107 |
| 25724 | ;;;;;; 12380)) | 25782 | ;;;;;; 37382)) |
| 25725 | ;;; Generated autoloads from language/tml-util.el | 25783 | ;;; Generated autoloads from language/tml-util.el |
| 25726 | 25784 | ||
| 25727 | (autoload (quote tamil-compose-region) "tml-util" "\ | 25785 | (autoload (quote tamil-compose-region) "tml-util" "\ |
| @@ -25744,7 +25802,7 @@ PATTERN regexp. | |||
| 25744 | ;;;*** | 25802 | ;;;*** |
| 25745 | 25803 | ||
| 25746 | ;;;### (autoloads (tmm-prompt tmm-menubar-mouse tmm-menubar) "tmm" | 25804 | ;;;### (autoloads (tmm-prompt tmm-menubar-mouse tmm-menubar) "tmm" |
| 25747 | ;;;;;; "tmm.el" (17087 12570)) | 25805 | ;;;;;; "tmm.el" (17107 37381)) |
| 25748 | ;;; Generated autoloads from tmm.el | 25806 | ;;; Generated autoloads from tmm.el |
| 25749 | (define-key global-map "\M-`" 'tmm-menubar) | 25807 | (define-key global-map "\M-`" 'tmm-menubar) |
| 25750 | (define-key global-map [f10] 'tmm-menubar) | 25808 | (define-key global-map [f10] 'tmm-menubar) |
| @@ -25785,7 +25843,7 @@ Its value should be an event that has a binding in MENU. | |||
| 25785 | 25843 | ||
| 25786 | ;;;### (autoloads (todo-show todo-cp todo-mode todo-print todo-top-priorities | 25844 | ;;;### (autoloads (todo-show todo-cp todo-mode todo-print todo-top-priorities |
| 25787 | ;;;;;; todo-insert-item todo-add-item-non-interactively todo-add-category) | 25845 | ;;;;;; todo-insert-item todo-add-item-non-interactively todo-add-category) |
| 25788 | ;;;;;; "todo-mode" "calendar/todo-mode.el" (17087 12569)) | 25846 | ;;;;;; "todo-mode" "calendar/todo-mode.el" (17107 37380)) |
| 25789 | ;;; Generated autoloads from calendar/todo-mode.el | 25847 | ;;; Generated autoloads from calendar/todo-mode.el |
| 25790 | 25848 | ||
| 25791 | (autoload (quote todo-add-category) "todo-mode" "\ | 25849 | (autoload (quote todo-add-category) "todo-mode" "\ |
| @@ -25846,7 +25904,7 @@ Show TODO list. | |||
| 25846 | 25904 | ||
| 25847 | ;;;### (autoloads (tool-bar-local-item-from-menu tool-bar-add-item-from-menu | 25905 | ;;;### (autoloads (tool-bar-local-item-from-menu tool-bar-add-item-from-menu |
| 25848 | ;;;;;; tool-bar-local-item tool-bar-add-item tool-bar-mode) "tool-bar" | 25906 | ;;;;;; tool-bar-local-item tool-bar-add-item tool-bar-mode) "tool-bar" |
| 25849 | ;;;;;; "toolbar/tool-bar.el" (17087 12565)) | 25907 | ;;;;;; "toolbar/tool-bar.el" (17107 37380)) |
| 25850 | ;;; Generated autoloads from toolbar/tool-bar.el | 25908 | ;;; Generated autoloads from toolbar/tool-bar.el |
| 25851 | 25909 | ||
| 25852 | (defvar tool-bar-mode nil "\ | 25910 | (defvar tool-bar-mode nil "\ |
| @@ -25857,6 +25915,8 @@ use either \\[customize] or the function `tool-bar-mode'.") | |||
| 25857 | 25915 | ||
| 25858 | (custom-autoload (quote tool-bar-mode) "tool-bar") | 25916 | (custom-autoload (quote tool-bar-mode) "tool-bar") |
| 25859 | 25917 | ||
| 25918 | (put (quote tool-bar-mode) (quote custom-set) (quote custom-set-minor-mode)) | ||
| 25919 | |||
| 25860 | (autoload (quote tool-bar-mode) "tool-bar" "\ | 25920 | (autoload (quote tool-bar-mode) "tool-bar" "\ |
| 25861 | Toggle use of the tool bar. | 25921 | Toggle use of the tool bar. |
| 25862 | With numeric ARG, display the tool bar if and only if ARG is positive. | 25922 | With numeric ARG, display the tool bar if and only if ARG is positive. |
| @@ -25928,7 +25988,7 @@ MAP must contain appropriate binding for `[menu-bar]' which holds a keymap. | |||
| 25928 | 25988 | ||
| 25929 | ;;;*** | 25989 | ;;;*** |
| 25930 | 25990 | ||
| 25931 | ;;;### (autoloads (tooltip-mode) "tooltip" "tooltip.el" (17087 12575)) | 25991 | ;;;### (autoloads (tooltip-mode) "tooltip" "tooltip.el" (17107 37380)) |
| 25932 | ;;; Generated autoloads from tooltip.el | 25992 | ;;; Generated autoloads from tooltip.el |
| 25933 | 25993 | ||
| 25934 | (defvar tooltip-mode (not (or noninteractive (and (boundp (quote emacs-quick-startup)) emacs-quick-startup) (not (and (fboundp (quote display-graphic-p)) (display-graphic-p))) (not (fboundp (quote x-show-tip))))) "\ | 25994 | (defvar tooltip-mode (not (or noninteractive (and (boundp (quote emacs-quick-startup)) emacs-quick-startup) (not (and (fboundp (quote display-graphic-p)) (display-graphic-p))) (not (fboundp (quote x-show-tip))))) "\ |
| @@ -25939,6 +25999,8 @@ use either \\[customize] or the function `tooltip-mode'.") | |||
| 25939 | 25999 | ||
| 25940 | (custom-autoload (quote tooltip-mode) "tooltip") | 26000 | (custom-autoload (quote tooltip-mode) "tooltip") |
| 25941 | 26001 | ||
| 26002 | (put (quote tooltip-mode) (quote custom-set) (quote custom-set-minor-mode)) | ||
| 26003 | |||
| 25942 | (autoload (quote tooltip-mode) "tooltip" "\ | 26004 | (autoload (quote tooltip-mode) "tooltip" "\ |
| 25943 | Toggle Tooltip display. | 26005 | Toggle Tooltip display. |
| 25944 | With ARG, turn tooltip mode on if and only if ARG is positive. | 26006 | With ARG, turn tooltip mode on if and only if ARG is positive. |
| @@ -25947,11 +26009,24 @@ With ARG, turn tooltip mode on if and only if ARG is positive. | |||
| 25947 | 26009 | ||
| 25948 | ;;;*** | 26010 | ;;;*** |
| 25949 | 26011 | ||
| 25950 | ;;;### (autoloads (tpu-edt-on) "tpu-edt" "emulation/tpu-edt.el" (17087 | 26012 | ;;;### (autoloads (tpu-edt-on tpu-edt-mode) "tpu-edt" "emulation/tpu-edt.el" |
| 25951 | ;;;;;; 12564)) | 26013 | ;;;;;; (17107 37398)) |
| 25952 | ;;; Generated autoloads from emulation/tpu-edt.el | 26014 | ;;; Generated autoloads from emulation/tpu-edt.el |
| 25953 | 26015 | ||
| 25954 | (defalias (quote tpu-edt-mode) (quote tpu-edt-on)) | 26016 | (defvar tpu-edt-mode nil "\ |
| 26017 | Non-nil if Tpu-Edt mode is enabled. | ||
| 26018 | See the command `tpu-edt-mode' for a description of this minor-mode. | ||
| 26019 | Setting this variable directly does not take effect; | ||
| 26020 | use either \\[customize] or the function `tpu-edt-mode'.") | ||
| 26021 | |||
| 26022 | (custom-autoload (quote tpu-edt-mode) "tpu-edt") | ||
| 26023 | |||
| 26024 | (put (quote tpu-edt-mode) (quote custom-set) (quote custom-set-minor-mode)) | ||
| 26025 | |||
| 26026 | (autoload (quote tpu-edt-mode) "tpu-edt" "\ | ||
| 26027 | TPU/edt emulation. | ||
| 26028 | |||
| 26029 | \(fn &optional ARG)" t nil) | ||
| 25955 | 26030 | ||
| 25956 | (defalias (quote tpu-edt) (quote tpu-edt-on)) | 26031 | (defalias (quote tpu-edt) (quote tpu-edt-on)) |
| 25957 | 26032 | ||
| @@ -25963,7 +26038,7 @@ Turn on TPU/edt emulation. | |||
| 25963 | ;;;*** | 26038 | ;;;*** |
| 25964 | 26039 | ||
| 25965 | ;;;### (autoloads (tpu-set-cursor-bound tpu-set-cursor-free tpu-set-scroll-margins) | 26040 | ;;;### (autoloads (tpu-set-cursor-bound tpu-set-cursor-free tpu-set-scroll-margins) |
| 25966 | ;;;;;; "tpu-extras" "emulation/tpu-extras.el" (17087 12566)) | 26041 | ;;;;;; "tpu-extras" "emulation/tpu-extras.el" (17107 37380)) |
| 25967 | ;;; Generated autoloads from emulation/tpu-extras.el | 26042 | ;;; Generated autoloads from emulation/tpu-extras.el |
| 25968 | 26043 | ||
| 25969 | (autoload (quote tpu-set-scroll-margins) "tpu-extras" "\ | 26044 | (autoload (quote tpu-set-scroll-margins) "tpu-extras" "\ |
| @@ -25983,7 +26058,7 @@ Constrain the cursor to the flow of the text. | |||
| 25983 | 26058 | ||
| 25984 | ;;;*** | 26059 | ;;;*** |
| 25985 | 26060 | ||
| 25986 | ;;;### (autoloads (tq-create) "tq" "emacs-lisp/tq.el" (17087 12380)) | 26061 | ;;;### (autoloads (tq-create) "tq" "emacs-lisp/tq.el" (17107 37381)) |
| 25987 | ;;; Generated autoloads from emacs-lisp/tq.el | 26062 | ;;; Generated autoloads from emacs-lisp/tq.el |
| 25988 | 26063 | ||
| 25989 | (autoload (quote tq-create) "tq" "\ | 26064 | (autoload (quote tq-create) "tq" "\ |
| @@ -25997,7 +26072,7 @@ to a tcp server on another machine. | |||
| 25997 | ;;;*** | 26072 | ;;;*** |
| 25998 | 26073 | ||
| 25999 | ;;;### (autoloads (trace-function-background trace-function trace-buffer) | 26074 | ;;;### (autoloads (trace-function-background trace-function trace-buffer) |
| 26000 | ;;;;;; "trace" "emacs-lisp/trace.el" (17087 12477)) | 26075 | ;;;;;; "trace" "emacs-lisp/trace.el" (17107 37381)) |
| 26001 | ;;; Generated autoloads from emacs-lisp/trace.el | 26076 | ;;; Generated autoloads from emacs-lisp/trace.el |
| 26002 | 26077 | ||
| 26003 | (defvar trace-buffer "*trace-output*" "\ | 26078 | (defvar trace-buffer "*trace-output*" "\ |
| @@ -26030,7 +26105,7 @@ the window or buffer configuration at all. | |||
| 26030 | 26105 | ||
| 26031 | ;;;### (autoloads (tramp-completion-file-name-handler tramp-file-name-handler | 26106 | ;;;### (autoloads (tramp-completion-file-name-handler tramp-file-name-handler |
| 26032 | ;;;;;; tramp-completion-file-name-regexp tramp-file-name-regexp) | 26107 | ;;;;;; tramp-completion-file-name-regexp tramp-file-name-regexp) |
| 26033 | ;;;;;; "tramp" "net/tramp.el" (17087 12575)) | 26108 | ;;;;;; "tramp" "net/tramp.el" (17107 37379)) |
| 26034 | ;;; Generated autoloads from net/tramp.el | 26109 | ;;; Generated autoloads from net/tramp.el |
| 26035 | 26110 | ||
| 26036 | (defvar tramp-unified-filenames (not (featurep (quote xemacs))) "\ | 26111 | (defvar tramp-unified-filenames (not (featurep (quote xemacs))) "\ |
| @@ -26107,7 +26182,7 @@ Falls back to normal file name handler if no tramp file name handler exists. | |||
| 26107 | ;;;*** | 26182 | ;;;*** |
| 26108 | 26183 | ||
| 26109 | ;;;### (autoloads (2C-split 2C-associate-buffer 2C-two-columns) "two-column" | 26184 | ;;;### (autoloads (2C-split 2C-associate-buffer 2C-two-columns) "two-column" |
| 26110 | ;;;;;; "textmodes/two-column.el" (17087 12380)) | 26185 | ;;;;;; "textmodes/two-column.el" (17107 37381)) |
| 26111 | ;;; Generated autoloads from textmodes/two-column.el | 26186 | ;;; Generated autoloads from textmodes/two-column.el |
| 26112 | (autoload '2C-command "two-column" () t 'keymap) | 26187 | (autoload '2C-command "two-column" () t 'keymap) |
| 26113 | (global-set-key "\C-x6" '2C-command) | 26188 | (global-set-key "\C-x6" '2C-command) |
| @@ -26158,7 +26233,7 @@ First column's text sSs Second column's text | |||
| 26158 | ;;;;;; type-break type-break-mode type-break-keystroke-threshold | 26233 | ;;;;;; type-break type-break-mode type-break-keystroke-threshold |
| 26159 | ;;;;;; type-break-good-break-interval type-break-good-rest-interval | 26234 | ;;;;;; type-break-good-break-interval type-break-good-rest-interval |
| 26160 | ;;;;;; type-break-interval type-break-mode) "type-break" "type-break.el" | 26235 | ;;;;;; type-break-interval type-break-mode) "type-break" "type-break.el" |
| 26161 | ;;;;;; (17087 12453)) | 26236 | ;;;;;; (17107 37380)) |
| 26162 | ;;; Generated autoloads from type-break.el | 26237 | ;;; Generated autoloads from type-break.el |
| 26163 | 26238 | ||
| 26164 | (defvar type-break-mode nil "\ | 26239 | (defvar type-break-mode nil "\ |
| @@ -26341,7 +26416,7 @@ FRAC should be the inverse of the fractional value; for example, a value of | |||
| 26341 | ;;;*** | 26416 | ;;;*** |
| 26342 | 26417 | ||
| 26343 | ;;;### (autoloads (ununderline-region underline-region) "underline" | 26418 | ;;;### (autoloads (ununderline-region underline-region) "underline" |
| 26344 | ;;;;;; "textmodes/underline.el" (17087 12380)) | 26419 | ;;;;;; "textmodes/underline.el" (17107 37381)) |
| 26345 | ;;; Generated autoloads from textmodes/underline.el | 26420 | ;;; Generated autoloads from textmodes/underline.el |
| 26346 | 26421 | ||
| 26347 | (autoload (quote underline-region) "underline" "\ | 26422 | (autoload (quote underline-region) "underline" "\ |
| @@ -26362,7 +26437,7 @@ which specify the range to operate on. | |||
| 26362 | ;;;*** | 26437 | ;;;*** |
| 26363 | 26438 | ||
| 26364 | ;;;### (autoloads (unforward-rmail-message undigestify-rmail-message) | 26439 | ;;;### (autoloads (unforward-rmail-message undigestify-rmail-message) |
| 26365 | ;;;;;; "undigest" "mail/undigest.el" (17087 12570)) | 26440 | ;;;;;; "undigest" "mail/undigest.el" (17107 37380)) |
| 26366 | ;;; Generated autoloads from mail/undigest.el | 26441 | ;;; Generated autoloads from mail/undigest.el |
| 26367 | 26442 | ||
| 26368 | (autoload (quote undigestify-rmail-message) "undigest" "\ | 26443 | (autoload (quote undigestify-rmail-message) "undigest" "\ |
| @@ -26381,7 +26456,7 @@ following the containing message. | |||
| 26381 | ;;;*** | 26456 | ;;;*** |
| 26382 | 26457 | ||
| 26383 | ;;;### (autoloads (unrmail batch-unrmail) "unrmail" "mail/unrmail.el" | 26458 | ;;;### (autoloads (unrmail batch-unrmail) "unrmail" "mail/unrmail.el" |
| 26384 | ;;;;;; (17087 12380)) | 26459 | ;;;;;; (17107 37380)) |
| 26385 | ;;; Generated autoloads from mail/unrmail.el | 26460 | ;;; Generated autoloads from mail/unrmail.el |
| 26386 | 26461 | ||
| 26387 | (autoload (quote batch-unrmail) "unrmail" "\ | 26462 | (autoload (quote batch-unrmail) "unrmail" "\ |
| @@ -26400,8 +26475,8 @@ Convert Rmail file FILE to system inbox format file TO-FILE. | |||
| 26400 | 26475 | ||
| 26401 | ;;;*** | 26476 | ;;;*** |
| 26402 | 26477 | ||
| 26403 | ;;;### (autoloads (unsafep) "unsafep" "emacs-lisp/unsafep.el" (17087 | 26478 | ;;;### (autoloads (unsafep) "unsafep" "emacs-lisp/unsafep.el" (17107 |
| 26404 | ;;;;;; 12380)) | 26479 | ;;;;;; 37381)) |
| 26405 | ;;; Generated autoloads from emacs-lisp/unsafep.el | 26480 | ;;; Generated autoloads from emacs-lisp/unsafep.el |
| 26406 | 26481 | ||
| 26407 | (autoload (quote unsafep) "unsafep" "\ | 26482 | (autoload (quote unsafep) "unsafep" "\ |
| @@ -26413,7 +26488,7 @@ of symbols with local bindings. | |||
| 26413 | 26488 | ||
| 26414 | ;;;*** | 26489 | ;;;*** |
| 26415 | 26490 | ||
| 26416 | ;;;### (autoloads nil "url" "url/url.el" (17087 12570)) | 26491 | ;;;### (autoloads nil "url" "url/url.el" (17107 37379)) |
| 26417 | ;;; Generated autoloads from url/url.el | 26492 | ;;; Generated autoloads from url/url.el |
| 26418 | 26493 | ||
| 26419 | (defvar url-configuration-directory "~/.url") | 26494 | (defvar url-configuration-directory "~/.url") |
| @@ -26421,7 +26496,7 @@ of symbols with local bindings. | |||
| 26421 | ;;;*** | 26496 | ;;;*** |
| 26422 | 26497 | ||
| 26423 | ;;;### (autoloads (url-register-auth-scheme url-get-authentication) | 26498 | ;;;### (autoloads (url-register-auth-scheme url-get-authentication) |
| 26424 | ;;;;;; "url-auth" "url/url-auth.el" (17087 12565)) | 26499 | ;;;;;; "url-auth" "url/url-auth.el" (17107 37379)) |
| 26425 | ;;; Generated autoloads from url/url-auth.el | 26500 | ;;; Generated autoloads from url/url-auth.el |
| 26426 | 26501 | ||
| 26427 | (autoload (quote url-get-authentication) "url-auth" "\ | 26502 | (autoload (quote url-get-authentication) "url-auth" "\ |
| @@ -26463,8 +26538,8 @@ RATING a rating between 1 and 10 of the strength of the authentication. | |||
| 26463 | ;;;*** | 26538 | ;;;*** |
| 26464 | 26539 | ||
| 26465 | ;;;### (autoloads (url-cache-expired url-cache-extract url-is-cached | 26540 | ;;;### (autoloads (url-cache-expired url-cache-extract url-is-cached |
| 26466 | ;;;;;; url-store-in-cache) "url-cache" "url/url-cache.el" (17087 | 26541 | ;;;;;; url-store-in-cache) "url-cache" "url/url-cache.el" (17107 |
| 26467 | ;;;;;; 12436)) | 26542 | ;;;;;; 37379)) |
| 26468 | ;;; Generated autoloads from url/url-cache.el | 26543 | ;;; Generated autoloads from url/url-cache.el |
| 26469 | 26544 | ||
| 26470 | (autoload (quote url-store-in-cache) "url-cache" "\ | 26545 | (autoload (quote url-store-in-cache) "url-cache" "\ |
| @@ -26489,7 +26564,7 @@ Return t iff a cached file has expired. | |||
| 26489 | 26564 | ||
| 26490 | ;;;*** | 26565 | ;;;*** |
| 26491 | 26566 | ||
| 26492 | ;;;### (autoloads (url-cid) "url-cid" "url/url-cid.el" (17087 12436)) | 26567 | ;;;### (autoloads (url-cid) "url-cid" "url/url-cid.el" (17107 37379)) |
| 26493 | ;;; Generated autoloads from url/url-cid.el | 26568 | ;;; Generated autoloads from url/url-cid.el |
| 26494 | 26569 | ||
| 26495 | (autoload (quote url-cid) "url-cid" "\ | 26570 | (autoload (quote url-cid) "url-cid" "\ |
| @@ -26501,8 +26576,8 @@ Not documented | |||
| 26501 | 26576 | ||
| 26502 | ;;;### (autoloads (url-cookie-setup-save-timer url-cookie-handle-set-cookie | 26577 | ;;;### (autoloads (url-cookie-setup-save-timer url-cookie-handle-set-cookie |
| 26503 | ;;;;;; url-cookie-generate-header-lines url-cookie-retrieve url-cookie-write-file | 26578 | ;;;;;; url-cookie-generate-header-lines url-cookie-retrieve url-cookie-write-file |
| 26504 | ;;;;;; url-cookie-parse-file) "url-cookie" "url/url-cookie.el" (17087 | 26579 | ;;;;;; url-cookie-parse-file) "url-cookie" "url/url-cookie.el" (17107 |
| 26505 | ;;;;;; 12582)) | 26580 | ;;;;;; 37379)) |
| 26506 | ;;; Generated autoloads from url/url-cookie.el | 26581 | ;;; Generated autoloads from url/url-cookie.el |
| 26507 | 26582 | ||
| 26508 | (autoload (quote url-cookie-parse-file) "url-cookie" "\ | 26583 | (autoload (quote url-cookie-parse-file) "url-cookie" "\ |
| @@ -26516,14 +26591,14 @@ Not documented | |||
| 26516 | \(fn &optional FNAME)" nil nil) | 26591 | \(fn &optional FNAME)" nil nil) |
| 26517 | 26592 | ||
| 26518 | (autoload (quote url-cookie-retrieve) "url-cookie" "\ | 26593 | (autoload (quote url-cookie-retrieve) "url-cookie" "\ |
| 26519 | Retrieve all the netscape-style cookies for a specified HOST and PATH. | 26594 | Retrieve all the netscape-style cookies for a specified HOST and LOCALPART. |
| 26520 | 26595 | ||
| 26521 | \(fn HOST PATH &optional SECURE)" nil nil) | 26596 | \(fn HOST LOCALPART &optional SECURE)" nil nil) |
| 26522 | 26597 | ||
| 26523 | (autoload (quote url-cookie-generate-header-lines) "url-cookie" "\ | 26598 | (autoload (quote url-cookie-generate-header-lines) "url-cookie" "\ |
| 26524 | Not documented | 26599 | Not documented |
| 26525 | 26600 | ||
| 26526 | \(fn HOST PATH SECURE)" nil nil) | 26601 | \(fn HOST LOCALPART SECURE)" nil nil) |
| 26527 | 26602 | ||
| 26528 | (autoload (quote url-cookie-handle-set-cookie) "url-cookie" "\ | 26603 | (autoload (quote url-cookie-handle-set-cookie) "url-cookie" "\ |
| 26529 | Not documented | 26604 | Not documented |
| @@ -26538,7 +26613,7 @@ Reset the cookie saver timer. | |||
| 26538 | ;;;*** | 26613 | ;;;*** |
| 26539 | 26614 | ||
| 26540 | ;;;### (autoloads (url-dav-vc-registered url-dav-supported-p) "url-dav" | 26615 | ;;;### (autoloads (url-dav-vc-registered url-dav-supported-p) "url-dav" |
| 26541 | ;;;;;; "url/url-dav.el" (17087 12570)) | 26616 | ;;;;;; "url/url-dav.el" (17107 37379)) |
| 26542 | ;;; Generated autoloads from url/url-dav.el | 26617 | ;;; Generated autoloads from url/url-dav.el |
| 26543 | 26618 | ||
| 26544 | (autoload (quote url-dav-supported-p) "url-dav" "\ | 26619 | (autoload (quote url-dav-supported-p) "url-dav" "\ |
| @@ -26553,8 +26628,8 @@ Not documented | |||
| 26553 | 26628 | ||
| 26554 | ;;;*** | 26629 | ;;;*** |
| 26555 | 26630 | ||
| 26556 | ;;;### (autoloads (url-file) "url-file" "url/url-file.el" (17087 | 26631 | ;;;### (autoloads (url-file) "url-file" "url/url-file.el" (17107 |
| 26557 | ;;;;;; 12570)) | 26632 | ;;;;;; 37379)) |
| 26558 | ;;; Generated autoloads from url/url-file.el | 26633 | ;;; Generated autoloads from url/url-file.el |
| 26559 | 26634 | ||
| 26560 | (autoload (quote url-file) "url-file" "\ | 26635 | (autoload (quote url-file) "url-file" "\ |
| @@ -26565,7 +26640,7 @@ Handle file: and ftp: URLs. | |||
| 26565 | ;;;*** | 26640 | ;;;*** |
| 26566 | 26641 | ||
| 26567 | ;;;### (autoloads (url-open-stream url-gateway-nslookup-host) "url-gw" | 26642 | ;;;### (autoloads (url-open-stream url-gateway-nslookup-host) "url-gw" |
| 26568 | ;;;;;; "url/url-gw.el" (17087 12578)) | 26643 | ;;;;;; "url/url-gw.el" (17107 37379)) |
| 26569 | ;;; Generated autoloads from url/url-gw.el | 26644 | ;;; Generated autoloads from url/url-gw.el |
| 26570 | 26645 | ||
| 26571 | (autoload (quote url-gateway-nslookup-host) "url-gw" "\ | 26646 | (autoload (quote url-gateway-nslookup-host) "url-gw" "\ |
| @@ -26583,8 +26658,8 @@ Will not make a connection if `url-gateway-unplugged' is non-nil. | |||
| 26583 | ;;;*** | 26658 | ;;;*** |
| 26584 | 26659 | ||
| 26585 | ;;;### (autoloads (url-insert-file-contents url-file-local-copy url-copy-file | 26660 | ;;;### (autoloads (url-insert-file-contents url-file-local-copy url-copy-file |
| 26586 | ;;;;;; url-handler-mode) "url-handlers" "url/url-handlers.el" (17087 | 26661 | ;;;;;; url-handler-mode) "url-handlers" "url/url-handlers.el" (17107 |
| 26587 | ;;;;;; 12570)) | 26662 | ;;;;;; 37379)) |
| 26588 | ;;; Generated autoloads from url/url-handlers.el | 26663 | ;;; Generated autoloads from url/url-handlers.el |
| 26589 | 26664 | ||
| 26590 | (defvar url-handler-mode nil "\ | 26665 | (defvar url-handler-mode nil "\ |
| @@ -26595,6 +26670,8 @@ use either \\[customize] or the function `url-handler-mode'.") | |||
| 26595 | 26670 | ||
| 26596 | (custom-autoload (quote url-handler-mode) "url-handlers") | 26671 | (custom-autoload (quote url-handler-mode) "url-handlers") |
| 26597 | 26672 | ||
| 26673 | (put (quote url-handler-mode) (quote custom-set) (quote custom-set-minor-mode)) | ||
| 26674 | |||
| 26598 | (autoload (quote url-handler-mode) "url-handlers" "\ | 26675 | (autoload (quote url-handler-mode) "url-handlers" "\ |
| 26599 | Use URL to handle URL-like file names. | 26676 | Use URL to handle URL-like file names. |
| 26600 | 26677 | ||
| @@ -26628,7 +26705,7 @@ Not documented | |||
| 26628 | 26705 | ||
| 26629 | ;;;### (autoloads (url-history-save-history url-history-parse-history | 26706 | ;;;### (autoloads (url-history-save-history url-history-parse-history |
| 26630 | ;;;;;; url-history-setup-save-timer) "url-history" "url/url-history.el" | 26707 | ;;;;;; url-history-setup-save-timer) "url-history" "url/url-history.el" |
| 26631 | ;;;;;; (17087 12570)) | 26708 | ;;;;;; (17107 37379)) |
| 26632 | ;;; Generated autoloads from url/url-history.el | 26709 | ;;; Generated autoloads from url/url-history.el |
| 26633 | 26710 | ||
| 26634 | (autoload (quote url-history-setup-save-timer) "url-history" "\ | 26711 | (autoload (quote url-history-setup-save-timer) "url-history" "\ |
| @@ -26652,7 +26729,7 @@ user for what type to save as. | |||
| 26652 | ;;;*** | 26729 | ;;;*** |
| 26653 | 26730 | ||
| 26654 | ;;;### (autoloads (url-http-options url-http-file-attributes url-http-file-exists-p | 26731 | ;;;### (autoloads (url-http-options url-http-file-attributes url-http-file-exists-p |
| 26655 | ;;;;;; url-http) "url-http" "url/url-http.el" (17087 12570)) | 26732 | ;;;;;; url-http) "url-http" "url/url-http.el" (17107 37379)) |
| 26656 | ;;; Generated autoloads from url/url-http.el | 26733 | ;;; Generated autoloads from url/url-http.el |
| 26657 | 26734 | ||
| 26658 | (autoload (quote url-http) "url-http" "\ | 26735 | (autoload (quote url-http) "url-http" "\ |
| @@ -26705,7 +26782,7 @@ p3p | |||
| 26705 | 26782 | ||
| 26706 | ;;;*** | 26783 | ;;;*** |
| 26707 | 26784 | ||
| 26708 | ;;;### (autoloads (url-irc) "url-irc" "url/url-irc.el" (17087 12438)) | 26785 | ;;;### (autoloads (url-irc) "url-irc" "url/url-irc.el" (17107 37379)) |
| 26709 | ;;; Generated autoloads from url/url-irc.el | 26786 | ;;; Generated autoloads from url/url-irc.el |
| 26710 | 26787 | ||
| 26711 | (autoload (quote url-irc) "url-irc" "\ | 26788 | (autoload (quote url-irc) "url-irc" "\ |
| @@ -26715,8 +26792,8 @@ Not documented | |||
| 26715 | 26792 | ||
| 26716 | ;;;*** | 26793 | ;;;*** |
| 26717 | 26794 | ||
| 26718 | ;;;### (autoloads (url-ldap) "url-ldap" "url/url-ldap.el" (17087 | 26795 | ;;;### (autoloads (url-ldap) "url-ldap" "url/url-ldap.el" (17107 |
| 26719 | ;;;;;; 12531)) | 26796 | ;;;;;; 37379)) |
| 26720 | ;;; Generated autoloads from url/url-ldap.el | 26797 | ;;; Generated autoloads from url/url-ldap.el |
| 26721 | 26798 | ||
| 26722 | (autoload (quote url-ldap) "url-ldap" "\ | 26799 | (autoload (quote url-ldap) "url-ldap" "\ |
| @@ -26730,7 +26807,7 @@ URL can be a URL string, or a URL vector of the type returned by | |||
| 26730 | ;;;*** | 26807 | ;;;*** |
| 26731 | 26808 | ||
| 26732 | ;;;### (autoloads (url-mailto url-mail) "url-mailto" "url/url-mailto.el" | 26809 | ;;;### (autoloads (url-mailto url-mail) "url-mailto" "url/url-mailto.el" |
| 26733 | ;;;;;; (17087 12440)) | 26810 | ;;;;;; (17107 37379)) |
| 26734 | ;;; Generated autoloads from url/url-mailto.el | 26811 | ;;; Generated autoloads from url/url-mailto.el |
| 26735 | 26812 | ||
| 26736 | (autoload (quote url-mail) "url-mailto" "\ | 26813 | (autoload (quote url-mail) "url-mailto" "\ |
| @@ -26746,7 +26823,7 @@ Handle the mailto: URL syntax. | |||
| 26746 | ;;;*** | 26823 | ;;;*** |
| 26747 | 26824 | ||
| 26748 | ;;;### (autoloads (url-data url-generic-emulator-loader url-info | 26825 | ;;;### (autoloads (url-data url-generic-emulator-loader url-info |
| 26749 | ;;;;;; url-man) "url-misc" "url/url-misc.el" (17087 12436)) | 26826 | ;;;;;; url-man) "url-misc" "url/url-misc.el" (17107 37379)) |
| 26750 | ;;; Generated autoloads from url/url-misc.el | 26827 | ;;; Generated autoloads from url/url-misc.el |
| 26751 | 26828 | ||
| 26752 | (autoload (quote url-man) "url-misc" "\ | 26829 | (autoload (quote url-man) "url-misc" "\ |
| @@ -26778,7 +26855,7 @@ Fetch a data URL (RFC 2397). | |||
| 26778 | ;;;*** | 26855 | ;;;*** |
| 26779 | 26856 | ||
| 26780 | ;;;### (autoloads (url-snews url-news) "url-news" "url/url-news.el" | 26857 | ;;;### (autoloads (url-snews url-news) "url-news" "url/url-news.el" |
| 26781 | ;;;;;; (17087 12438)) | 26858 | ;;;;;; (17107 37379)) |
| 26782 | ;;; Generated autoloads from url/url-news.el | 26859 | ;;; Generated autoloads from url/url-news.el |
| 26783 | 26860 | ||
| 26784 | (autoload (quote url-news) "url-news" "\ | 26861 | (autoload (quote url-news) "url-news" "\ |
| @@ -26795,7 +26872,7 @@ Not documented | |||
| 26795 | 26872 | ||
| 26796 | ;;;### (autoloads (url-ns-user-pref url-ns-prefs isInNet isResolvable | 26873 | ;;;### (autoloads (url-ns-user-pref url-ns-prefs isInNet isResolvable |
| 26797 | ;;;;;; dnsResolve dnsDomainIs isPlainHostName) "url-ns" "url/url-ns.el" | 26874 | ;;;;;; dnsResolve dnsDomainIs isPlainHostName) "url-ns" "url/url-ns.el" |
| 26798 | ;;;;;; (17087 12565)) | 26875 | ;;;;;; (17107 37379)) |
| 26799 | ;;; Generated autoloads from url/url-ns.el | 26876 | ;;; Generated autoloads from url/url-ns.el |
| 26800 | 26877 | ||
| 26801 | (autoload (quote isPlainHostName) "url-ns" "\ | 26878 | (autoload (quote isPlainHostName) "url-ns" "\ |
| @@ -26836,7 +26913,7 @@ Not documented | |||
| 26836 | ;;;*** | 26913 | ;;;*** |
| 26837 | 26914 | ||
| 26838 | ;;;### (autoloads (url-generic-parse-url url-recreate-url) "url-parse" | 26915 | ;;;### (autoloads (url-generic-parse-url url-recreate-url) "url-parse" |
| 26839 | ;;;;;; "url/url-parse.el" (17087 12565)) | 26916 | ;;;;;; "url/url-parse.el" (17107 37379)) |
| 26840 | ;;; Generated autoloads from url/url-parse.el | 26917 | ;;; Generated autoloads from url/url-parse.el |
| 26841 | 26918 | ||
| 26842 | (autoload (quote url-recreate-url) "url-parse" "\ | 26919 | (autoload (quote url-recreate-url) "url-parse" "\ |
| @@ -26854,7 +26931,7 @@ Format is: | |||
| 26854 | ;;;*** | 26931 | ;;;*** |
| 26855 | 26932 | ||
| 26856 | ;;;### (autoloads (url-setup-privacy-info) "url-privacy" "url/url-privacy.el" | 26933 | ;;;### (autoloads (url-setup-privacy-info) "url-privacy" "url/url-privacy.el" |
| 26857 | ;;;;;; (17087 12436)) | 26934 | ;;;;;; (17107 37379)) |
| 26858 | ;;; Generated autoloads from url/url-privacy.el | 26935 | ;;; Generated autoloads from url/url-privacy.el |
| 26859 | 26936 | ||
| 26860 | (autoload (quote url-setup-privacy-info) "url-privacy" "\ | 26937 | (autoload (quote url-setup-privacy-info) "url-privacy" "\ |
| @@ -26870,7 +26947,7 @@ Not documented | |||
| 26870 | ;;;;;; url-strip-leading-spaces url-eat-trailing-space url-get-normalized-date | 26947 | ;;;;;; url-strip-leading-spaces url-eat-trailing-space url-get-normalized-date |
| 26871 | ;;;;;; url-lazy-message url-normalize-url url-insert-entities-in-string | 26948 | ;;;;;; url-lazy-message url-normalize-url url-insert-entities-in-string |
| 26872 | ;;;;;; url-parse-args url-debug url-debug) "url-util" "url/url-util.el" | 26949 | ;;;;;; url-parse-args url-debug url-debug) "url-util" "url/url-util.el" |
| 26873 | ;;;;;; (17087 12565)) | 26950 | ;;;;;; (17107 37379)) |
| 26874 | ;;; Generated autoloads from url/url-util.el | 26951 | ;;; Generated autoloads from url/url-util.el |
| 26875 | 26952 | ||
| 26876 | (defvar url-debug nil "\ | 26953 | (defvar url-debug nil "\ |
| @@ -26995,7 +27072,7 @@ This uses `url-current-object', set locally to the buffer. | |||
| 26995 | ;;;*** | 27072 | ;;;*** |
| 26996 | 27073 | ||
| 26997 | ;;;### (autoloads (ask-user-about-supersession-threat ask-user-about-lock) | 27074 | ;;;### (autoloads (ask-user-about-supersession-threat ask-user-about-lock) |
| 26998 | ;;;;;; "userlock" "userlock.el" (17087 12380)) | 27075 | ;;;;;; "userlock" "userlock.el" (17107 37380)) |
| 26999 | ;;; Generated autoloads from userlock.el | 27076 | ;;; Generated autoloads from userlock.el |
| 27000 | 27077 | ||
| 27001 | (autoload (quote ask-user-about-lock) "userlock" "\ | 27078 | (autoload (quote ask-user-about-lock) "userlock" "\ |
| @@ -27025,7 +27102,7 @@ The buffer in question is current when this function is called. | |||
| 27025 | 27102 | ||
| 27026 | ;;;### (autoloads (uudecode-decode-region uudecode-decode-region-internal | 27103 | ;;;### (autoloads (uudecode-decode-region uudecode-decode-region-internal |
| 27027 | ;;;;;; uudecode-decode-region-external) "uudecode" "gnus/uudecode.el" | 27104 | ;;;;;; uudecode-decode-region-external) "uudecode" "gnus/uudecode.el" |
| 27028 | ;;;;;; (17087 12466)) | 27105 | ;;;;;; (17107 37379)) |
| 27029 | ;;; Generated autoloads from gnus/uudecode.el | 27106 | ;;; Generated autoloads from gnus/uudecode.el |
| 27030 | 27107 | ||
| 27031 | (autoload (quote uudecode-decode-region-external) "uudecode" "\ | 27108 | (autoload (quote uudecode-decode-region-external) "uudecode" "\ |
| @@ -27055,7 +27132,7 @@ If FILE-NAME is non-nil, save the result to FILE-NAME. | |||
| 27055 | ;;;;;; vc-directory vc-merge vc-insert-headers vc-version-other-window | 27132 | ;;;;;; vc-directory vc-merge vc-insert-headers vc-version-other-window |
| 27056 | ;;;;;; vc-diff vc-register vc-next-action vc-do-command edit-vc-file | 27133 | ;;;;;; vc-diff vc-register vc-next-action vc-do-command edit-vc-file |
| 27057 | ;;;;;; with-vc-file vc-branch-part vc-trunk-p vc-before-checkin-hook | 27134 | ;;;;;; with-vc-file vc-branch-part vc-trunk-p vc-before-checkin-hook |
| 27058 | ;;;;;; vc-checkin-hook vc-checkout-hook) "vc" "vc.el" (17087 12570)) | 27135 | ;;;;;; vc-checkin-hook vc-checkout-hook) "vc" "vc.el" (17107 37380)) |
| 27059 | ;;; Generated autoloads from vc.el | 27136 | ;;; Generated autoloads from vc.el |
| 27060 | 27137 | ||
| 27061 | (defvar vc-checkout-hook nil "\ | 27138 | (defvar vc-checkout-hook nil "\ |
| @@ -27342,7 +27419,7 @@ colors. `vc-annotate-background' specifies the background color. | |||
| 27342 | 27419 | ||
| 27343 | ;;;*** | 27420 | ;;;*** |
| 27344 | 27421 | ||
| 27345 | ;;;### (autoloads nil "vc-arch" "vc-arch.el" (17087 12570)) | 27422 | ;;;### (autoloads nil "vc-arch" "vc-arch.el" (17107 37380)) |
| 27346 | ;;; Generated autoloads from vc-arch.el | 27423 | ;;; Generated autoloads from vc-arch.el |
| 27347 | (defun vc-arch-registered (file) | 27424 | (defun vc-arch-registered (file) |
| 27348 | (if (vc-find-root file "{arch}/=tagging-method") | 27425 | (if (vc-find-root file "{arch}/=tagging-method") |
| @@ -27352,7 +27429,7 @@ colors. `vc-annotate-background' specifies the background color. | |||
| 27352 | 27429 | ||
| 27353 | ;;;*** | 27430 | ;;;*** |
| 27354 | 27431 | ||
| 27355 | ;;;### (autoloads nil "vc-cvs" "vc-cvs.el" (17087 12566)) | 27432 | ;;;### (autoloads nil "vc-cvs" "vc-cvs.el" (17107 37380)) |
| 27356 | ;;; Generated autoloads from vc-cvs.el | 27433 | ;;; Generated autoloads from vc-cvs.el |
| 27357 | (defun vc-cvs-registered (f) | 27434 | (defun vc-cvs-registered (f) |
| 27358 | (when (file-readable-p (expand-file-name | 27435 | (when (file-readable-p (expand-file-name |
| @@ -27362,7 +27439,7 @@ colors. `vc-annotate-background' specifies the background color. | |||
| 27362 | 27439 | ||
| 27363 | ;;;*** | 27440 | ;;;*** |
| 27364 | 27441 | ||
| 27365 | ;;;### (autoloads nil "vc-mcvs" "vc-mcvs.el" (17087 12466)) | 27442 | ;;;### (autoloads nil "vc-mcvs" "vc-mcvs.el" (17107 37380)) |
| 27366 | ;;; Generated autoloads from vc-mcvs.el | 27443 | ;;; Generated autoloads from vc-mcvs.el |
| 27367 | (defun vc-mcvs-registered (file) | 27444 | (defun vc-mcvs-registered (file) |
| 27368 | (if (vc-find-root file "MCVS/CVS") | 27445 | (if (vc-find-root file "MCVS/CVS") |
| @@ -27373,7 +27450,7 @@ colors. `vc-annotate-background' specifies the background color. | |||
| 27373 | ;;;*** | 27450 | ;;;*** |
| 27374 | 27451 | ||
| 27375 | ;;;### (autoloads (vc-rcs-master-templates) "vc-rcs" "vc-rcs.el" | 27452 | ;;;### (autoloads (vc-rcs-master-templates) "vc-rcs" "vc-rcs.el" |
| 27376 | ;;;;;; (17087 12451)) | 27453 | ;;;;;; (17107 37380)) |
| 27377 | ;;; Generated autoloads from vc-rcs.el | 27454 | ;;; Generated autoloads from vc-rcs.el |
| 27378 | 27455 | ||
| 27379 | (defvar vc-rcs-master-templates (quote ("%sRCS/%s,v" "%s%s,v" "%sRCS/%s")) "\ | 27456 | (defvar vc-rcs-master-templates (quote ("%sRCS/%s,v" "%s%s,v" "%sRCS/%s")) "\ |
| @@ -27386,7 +27463,7 @@ For a description of possible values, see `vc-check-master-templates'.") | |||
| 27386 | ;;;*** | 27463 | ;;;*** |
| 27387 | 27464 | ||
| 27388 | ;;;### (autoloads (vc-sccs-master-templates) "vc-sccs" "vc-sccs.el" | 27465 | ;;;### (autoloads (vc-sccs-master-templates) "vc-sccs" "vc-sccs.el" |
| 27389 | ;;;;;; (17087 12416)) | 27466 | ;;;;;; (17107 37380)) |
| 27390 | ;;; Generated autoloads from vc-sccs.el | 27467 | ;;; Generated autoloads from vc-sccs.el |
| 27391 | 27468 | ||
| 27392 | (defvar vc-sccs-master-templates (quote ("%sSCCS/s.%s" "%ss.%s" vc-sccs-search-project-dir)) "\ | 27469 | (defvar vc-sccs-master-templates (quote ("%sSCCS/s.%s" "%ss.%s" vc-sccs-search-project-dir)) "\ |
| @@ -27403,7 +27480,7 @@ find any project directory." (let ((project-dir (getenv "PROJECTDIR")) dirs dir) | |||
| 27403 | 27480 | ||
| 27404 | ;;;*** | 27481 | ;;;*** |
| 27405 | 27482 | ||
| 27406 | ;;;### (autoloads nil "vc-svn" "vc-svn.el" (17087 12466)) | 27483 | ;;;### (autoloads nil "vc-svn" "vc-svn.el" (17107 37381)) |
| 27407 | ;;; Generated autoloads from vc-svn.el | 27484 | ;;; Generated autoloads from vc-svn.el |
| 27408 | (defun vc-svn-registered (f) | 27485 | (defun vc-svn-registered (f) |
| 27409 | (when (file-readable-p (expand-file-name | 27486 | (when (file-readable-p (expand-file-name |
| @@ -27416,7 +27493,7 @@ find any project directory." (let ((project-dir (getenv "PROJECTDIR")) dirs dir) | |||
| 27416 | ;;;*** | 27493 | ;;;*** |
| 27417 | 27494 | ||
| 27418 | ;;;### (autoloads (vhdl-mode) "vhdl-mode" "progmodes/vhdl-mode.el" | 27495 | ;;;### (autoloads (vhdl-mode) "vhdl-mode" "progmodes/vhdl-mode.el" |
| 27419 | ;;;;;; (17087 12575)) | 27496 | ;;;;;; (17107 37381)) |
| 27420 | ;;; Generated autoloads from progmodes/vhdl-mode.el | 27497 | ;;; Generated autoloads from progmodes/vhdl-mode.el |
| 27421 | 27498 | ||
| 27422 | (autoload (quote vhdl-mode) "vhdl-mode" "\ | 27499 | (autoload (quote vhdl-mode) "vhdl-mode" "\ |
| @@ -27941,7 +28018,7 @@ Key bindings: | |||
| 27941 | 28018 | ||
| 27942 | ;;;*** | 28019 | ;;;*** |
| 27943 | 28020 | ||
| 27944 | ;;;### (autoloads (vi-mode) "vi" "emulation/vi.el" (17087 12569)) | 28021 | ;;;### (autoloads (vi-mode) "vi" "emulation/vi.el" (17107 37380)) |
| 27945 | ;;; Generated autoloads from emulation/vi.el | 28022 | ;;; Generated autoloads from emulation/vi.el |
| 27946 | 28023 | ||
| 27947 | (autoload (quote vi-mode) "vi" "\ | 28024 | (autoload (quote vi-mode) "vi" "\ |
| @@ -27996,7 +28073,7 @@ Syntax table and abbrevs while in vi mode remain as they were in Emacs. | |||
| 27996 | ;;;### (autoloads (viqr-pre-write-conversion viqr-post-read-conversion | 28073 | ;;;### (autoloads (viqr-pre-write-conversion viqr-post-read-conversion |
| 27997 | ;;;;;; viet-encode-viqr-buffer viet-encode-viqr-region viet-decode-viqr-buffer | 28074 | ;;;;;; viet-encode-viqr-buffer viet-encode-viqr-region viet-decode-viqr-buffer |
| 27998 | ;;;;;; viet-decode-viqr-region viet-encode-viscii-char) "viet-util" | 28075 | ;;;;;; viet-decode-viqr-region viet-encode-viscii-char) "viet-util" |
| 27999 | ;;;;;; "language/viet-util.el" (17087 12566)) | 28076 | ;;;;;; "language/viet-util.el" (17107 37382)) |
| 28000 | ;;; Generated autoloads from language/viet-util.el | 28077 | ;;; Generated autoloads from language/viet-util.el |
| 28001 | 28078 | ||
| 28002 | (autoload (quote viet-encode-viscii-char) "viet-util" "\ | 28079 | (autoload (quote viet-encode-viscii-char) "viet-util" "\ |
| @@ -28042,8 +28119,8 @@ Not documented | |||
| 28042 | 28119 | ||
| 28043 | ;;;### (autoloads (View-exit-and-edit view-mode-enter view-mode view-buffer-other-frame | 28120 | ;;;### (autoloads (View-exit-and-edit view-mode-enter view-mode view-buffer-other-frame |
| 28044 | ;;;;;; view-buffer-other-window view-buffer view-file-other-frame | 28121 | ;;;;;; view-buffer-other-window view-buffer view-file-other-frame |
| 28045 | ;;;;;; view-file-other-window view-file) "view" "view.el" (17087 | 28122 | ;;;;;; view-file-other-window view-file) "view" "view.el" (17107 |
| 28046 | ;;;;;; 12435)) | 28123 | ;;;;;; 37381)) |
| 28047 | ;;; Generated autoloads from view.el | 28124 | ;;; Generated autoloads from view.el |
| 28048 | 28125 | ||
| 28049 | (defvar view-mode nil "\ | 28126 | (defvar view-mode nil "\ |
| @@ -28250,8 +28327,8 @@ Exit View mode and make the current buffer editable. | |||
| 28250 | 28327 | ||
| 28251 | ;;;*** | 28328 | ;;;*** |
| 28252 | 28329 | ||
| 28253 | ;;;### (autoloads (vip-mode vip-setup) "vip" "emulation/vip.el" (17087 | 28330 | ;;;### (autoloads (vip-mode vip-setup) "vip" "emulation/vip.el" (17107 |
| 28254 | ;;;;;; 12574)) | 28331 | ;;;;;; 37380)) |
| 28255 | ;;; Generated autoloads from emulation/vip.el | 28332 | ;;; Generated autoloads from emulation/vip.el |
| 28256 | 28333 | ||
| 28257 | (autoload (quote vip-setup) "vip" "\ | 28334 | (autoload (quote vip-setup) "vip" "\ |
| @@ -28267,7 +28344,7 @@ Turn on VIP emulation of VI. | |||
| 28267 | ;;;*** | 28344 | ;;;*** |
| 28268 | 28345 | ||
| 28269 | ;;;### (autoloads (viper-mode toggle-viper-mode) "viper" "emulation/viper.el" | 28346 | ;;;### (autoloads (viper-mode toggle-viper-mode) "viper" "emulation/viper.el" |
| 28270 | ;;;;;; (17087 12569)) | 28347 | ;;;;;; (17107 37380)) |
| 28271 | ;;; Generated autoloads from emulation/viper.el | 28348 | ;;; Generated autoloads from emulation/viper.el |
| 28272 | 28349 | ||
| 28273 | (autoload (quote toggle-viper-mode) "viper" "\ | 28350 | (autoload (quote toggle-viper-mode) "viper" "\ |
| @@ -28284,7 +28361,7 @@ Turn on Viper emulation of Vi. | |||
| 28284 | ;;;*** | 28361 | ;;;*** |
| 28285 | 28362 | ||
| 28286 | ;;;### (autoloads (warn lwarn display-warning) "warnings" "emacs-lisp/warnings.el" | 28363 | ;;;### (autoloads (warn lwarn display-warning) "warnings" "emacs-lisp/warnings.el" |
| 28287 | ;;;;;; (17087 12574)) | 28364 | ;;;;;; (17107 37381)) |
| 28288 | ;;; Generated autoloads from emacs-lisp/warnings.el | 28365 | ;;; Generated autoloads from emacs-lisp/warnings.el |
| 28289 | 28366 | ||
| 28290 | (defvar warning-prefix-function nil "\ | 28367 | (defvar warning-prefix-function nil "\ |
| @@ -28372,7 +28449,7 @@ this is equivalent to `display-warning', using | |||
| 28372 | ;;;*** | 28449 | ;;;*** |
| 28373 | 28450 | ||
| 28374 | ;;;### (autoloads (wdired-change-to-wdired-mode) "wdired" "wdired.el" | 28451 | ;;;### (autoloads (wdired-change-to-wdired-mode) "wdired" "wdired.el" |
| 28375 | ;;;;;; (17087 12566)) | 28452 | ;;;;;; (17107 37380)) |
| 28376 | ;;; Generated autoloads from wdired.el | 28453 | ;;; Generated autoloads from wdired.el |
| 28377 | 28454 | ||
| 28378 | (autoload (quote wdired-change-to-wdired-mode) "wdired" "\ | 28455 | (autoload (quote wdired-change-to-wdired-mode) "wdired" "\ |
| @@ -28388,7 +28465,7 @@ See `wdired-mode'. | |||
| 28388 | 28465 | ||
| 28389 | ;;;*** | 28466 | ;;;*** |
| 28390 | 28467 | ||
| 28391 | ;;;### (autoloads (webjump) "webjump" "net/webjump.el" (17087 12564)) | 28468 | ;;;### (autoloads (webjump) "webjump" "net/webjump.el" (17107 37379)) |
| 28392 | ;;; Generated autoloads from net/webjump.el | 28469 | ;;; Generated autoloads from net/webjump.el |
| 28393 | 28470 | ||
| 28394 | (autoload (quote webjump) "webjump" "\ | 28471 | (autoload (quote webjump) "webjump" "\ |
| @@ -28405,7 +28482,7 @@ Please submit bug reports and other feedback to the author, Neil W. Van Dyke | |||
| 28405 | ;;;*** | 28482 | ;;;*** |
| 28406 | 28483 | ||
| 28407 | ;;;### (autoloads (which-function-mode) "which-func" "progmodes/which-func.el" | 28484 | ;;;### (autoloads (which-function-mode) "which-func" "progmodes/which-func.el" |
| 28408 | ;;;;;; (17087 12570)) | 28485 | ;;;;;; (17107 37381)) |
| 28409 | ;;; Generated autoloads from progmodes/which-func.el | 28486 | ;;; Generated autoloads from progmodes/which-func.el |
| 28410 | (put 'which-func-format 'risky-local-variable t) | 28487 | (put 'which-func-format 'risky-local-variable t) |
| 28411 | (put 'which-func-current 'risky-local-variable t) | 28488 | (put 'which-func-current 'risky-local-variable t) |
| @@ -28420,6 +28497,8 @@ use either \\[customize] or the function `which-function-mode'.") | |||
| 28420 | 28497 | ||
| 28421 | (custom-autoload (quote which-function-mode) "which-func") | 28498 | (custom-autoload (quote which-function-mode) "which-func") |
| 28422 | 28499 | ||
| 28500 | (put (quote which-function-mode) (quote custom-set) (quote custom-set-minor-mode)) | ||
| 28501 | |||
| 28423 | (autoload (quote which-function-mode) "which-func" "\ | 28502 | (autoload (quote which-function-mode) "which-func" "\ |
| 28424 | Toggle Which Function mode, globally. | 28503 | Toggle Which Function mode, globally. |
| 28425 | When Which Function mode is enabled, the current function name is | 28504 | When Which Function mode is enabled, the current function name is |
| @@ -28437,7 +28516,7 @@ and off otherwise. | |||
| 28437 | ;;;;;; whitespace-buffer whitespace-toggle-ateol-check whitespace-toggle-spacetab-check | 28516 | ;;;;;; whitespace-buffer whitespace-toggle-ateol-check whitespace-toggle-spacetab-check |
| 28438 | ;;;;;; whitespace-toggle-indent-check whitespace-toggle-trailing-check | 28517 | ;;;;;; whitespace-toggle-indent-check whitespace-toggle-trailing-check |
| 28439 | ;;;;;; whitespace-toggle-leading-check) "whitespace" "whitespace.el" | 28518 | ;;;;;; whitespace-toggle-leading-check) "whitespace" "whitespace.el" |
| 28440 | ;;;;;; (17087 12570)) | 28519 | ;;;;;; (17107 37380)) |
| 28441 | ;;; Generated autoloads from whitespace.el | 28520 | ;;; Generated autoloads from whitespace.el |
| 28442 | 28521 | ||
| 28443 | (autoload (quote whitespace-toggle-leading-check) "whitespace" "\ | 28522 | (autoload (quote whitespace-toggle-leading-check) "whitespace" "\ |
| @@ -28509,6 +28588,8 @@ use either \\[customize] or the function `whitespace-global-mode'.") | |||
| 28509 | 28588 | ||
| 28510 | (custom-autoload (quote whitespace-global-mode) "whitespace") | 28589 | (custom-autoload (quote whitespace-global-mode) "whitespace") |
| 28511 | 28590 | ||
| 28591 | (put (quote whitespace-global-mode) (quote custom-set) (quote custom-set-minor-mode)) | ||
| 28592 | |||
| 28512 | (autoload (quote whitespace-global-mode) "whitespace" "\ | 28593 | (autoload (quote whitespace-global-mode) "whitespace" "\ |
| 28513 | Toggle using Whitespace mode in new buffers. | 28594 | Toggle using Whitespace mode in new buffers. |
| 28514 | With ARG, turn the mode on iff ARG is positive. | 28595 | With ARG, turn the mode on iff ARG is positive. |
| @@ -28527,7 +28608,7 @@ This is meant to be added buffer-locally to `write-file-functions'. | |||
| 28527 | ;;;*** | 28608 | ;;;*** |
| 28528 | 28609 | ||
| 28529 | ;;;### (autoloads (widget-minor-mode widget-browse-other-window widget-browse | 28610 | ;;;### (autoloads (widget-minor-mode widget-browse-other-window widget-browse |
| 28530 | ;;;;;; widget-browse-at) "wid-browse" "wid-browse.el" (17087 12566)) | 28611 | ;;;;;; widget-browse-at) "wid-browse" "wid-browse.el" (17107 37381)) |
| 28531 | ;;; Generated autoloads from wid-browse.el | 28612 | ;;; Generated autoloads from wid-browse.el |
| 28532 | 28613 | ||
| 28533 | (autoload (quote widget-browse-at) "wid-browse" "\ | 28614 | (autoload (quote widget-browse-at) "wid-browse" "\ |
| @@ -28554,8 +28635,8 @@ With arg, turn widget mode on if and only if arg is positive. | |||
| 28554 | ;;;*** | 28635 | ;;;*** |
| 28555 | 28636 | ||
| 28556 | ;;;### (autoloads (widget-setup widget-insert widget-delete widget-create | 28637 | ;;;### (autoloads (widget-setup widget-insert widget-delete widget-create |
| 28557 | ;;;;;; widget-prompt-value widgetp) "wid-edit" "wid-edit.el" (17087 | 28638 | ;;;;;; widget-prompt-value widgetp) "wid-edit" "wid-edit.el" (17107 |
| 28558 | ;;;;;; 12589)) | 28639 | ;;;;;; 37380)) |
| 28559 | ;;; Generated autoloads from wid-edit.el | 28640 | ;;; Generated autoloads from wid-edit.el |
| 28560 | 28641 | ||
| 28561 | (autoload (quote widgetp) "wid-edit" "\ | 28642 | (autoload (quote widgetp) "wid-edit" "\ |
| @@ -28597,8 +28678,8 @@ Setup current buffer so editing string widgets works. | |||
| 28597 | ;;;*** | 28678 | ;;;*** |
| 28598 | 28679 | ||
| 28599 | ;;;### (autoloads (windmove-default-keybindings windmove-down windmove-right | 28680 | ;;;### (autoloads (windmove-default-keybindings windmove-down windmove-right |
| 28600 | ;;;;;; windmove-up windmove-left) "windmove" "windmove.el" (17087 | 28681 | ;;;;;; windmove-up windmove-left) "windmove" "windmove.el" (17107 |
| 28601 | ;;;;;; 12423)) | 28682 | ;;;;;; 37380)) |
| 28602 | ;;; Generated autoloads from windmove.el | 28683 | ;;; Generated autoloads from windmove.el |
| 28603 | 28684 | ||
| 28604 | (autoload (quote windmove-left) "windmove" "\ | 28685 | (autoload (quote windmove-left) "windmove" "\ |
| @@ -28651,7 +28732,7 @@ Default MODIFIER is 'shift. | |||
| 28651 | ;;;*** | 28732 | ;;;*** |
| 28652 | 28733 | ||
| 28653 | ;;;### (autoloads (winner-mode winner-mode) "winner" "winner.el" | 28734 | ;;;### (autoloads (winner-mode winner-mode) "winner" "winner.el" |
| 28654 | ;;;;;; (17087 12441)) | 28735 | ;;;;;; (17107 37380)) |
| 28655 | ;;; Generated autoloads from winner.el | 28736 | ;;; Generated autoloads from winner.el |
| 28656 | 28737 | ||
| 28657 | (defvar winner-mode nil "\ | 28738 | (defvar winner-mode nil "\ |
| @@ -28670,7 +28751,7 @@ With arg, turn Winner mode on if and only if arg is positive. | |||
| 28670 | ;;;*** | 28751 | ;;;*** |
| 28671 | 28752 | ||
| 28672 | ;;;### (autoloads (woman-find-file woman-dired-find-file woman) "woman" | 28753 | ;;;### (autoloads (woman-find-file woman-dired-find-file woman) "woman" |
| 28673 | ;;;;;; "woman.el" (17087 12575)) | 28754 | ;;;;;; "woman.el" (17107 37380)) |
| 28674 | ;;; Generated autoloads from woman.el | 28755 | ;;; Generated autoloads from woman.el |
| 28675 | 28756 | ||
| 28676 | (autoload (quote woman) "woman" "\ | 28757 | (autoload (quote woman) "woman" "\ |
| @@ -28706,7 +28787,7 @@ decompress the file if appropriate. See the documentation for the | |||
| 28706 | ;;;*** | 28787 | ;;;*** |
| 28707 | 28788 | ||
| 28708 | ;;;### (autoloads (wordstar-mode) "ws-mode" "emulation/ws-mode.el" | 28789 | ;;;### (autoloads (wordstar-mode) "ws-mode" "emulation/ws-mode.el" |
| 28709 | ;;;;;; (17087 12566)) | 28790 | ;;;;;; (17107 37380)) |
| 28710 | ;;; Generated autoloads from emulation/ws-mode.el | 28791 | ;;; Generated autoloads from emulation/ws-mode.el |
| 28711 | 28792 | ||
| 28712 | (autoload (quote wordstar-mode) "ws-mode" "\ | 28793 | (autoload (quote wordstar-mode) "ws-mode" "\ |
| @@ -28819,7 +28900,7 @@ The key bindings are: | |||
| 28819 | ;;;*** | 28900 | ;;;*** |
| 28820 | 28901 | ||
| 28821 | ;;;### (autoloads (xml-parse-region xml-parse-file) "xml" "xml.el" | 28902 | ;;;### (autoloads (xml-parse-region xml-parse-file) "xml" "xml.el" |
| 28822 | ;;;;;; (17087 12570)) | 28903 | ;;;;;; (17107 37381)) |
| 28823 | ;;; Generated autoloads from xml.el | 28904 | ;;; Generated autoloads from xml.el |
| 28824 | 28905 | ||
| 28825 | (autoload (quote xml-parse-file) "xml" "\ | 28906 | (autoload (quote xml-parse-file) "xml" "\ |
| @@ -28844,8 +28925,8 @@ If PARSE-NS is non-nil, then QNAMES are expanded. | |||
| 28844 | 28925 | ||
| 28845 | ;;;*** | 28926 | ;;;*** |
| 28846 | 28927 | ||
| 28847 | ;;;### (autoloads (xterm-mouse-mode) "xt-mouse" "xt-mouse.el" (17087 | 28928 | ;;;### (autoloads (xterm-mouse-mode) "xt-mouse" "xt-mouse.el" (17107 |
| 28848 | ;;;;;; 12533)) | 28929 | ;;;;;; 36805)) |
| 28849 | ;;; Generated autoloads from xt-mouse.el | 28930 | ;;; Generated autoloads from xt-mouse.el |
| 28850 | 28931 | ||
| 28851 | (defvar xterm-mouse-mode nil "\ | 28932 | (defvar xterm-mouse-mode nil "\ |
| @@ -28856,6 +28937,8 @@ use either \\[customize] or the function `xterm-mouse-mode'.") | |||
| 28856 | 28937 | ||
| 28857 | (custom-autoload (quote xterm-mouse-mode) "xt-mouse") | 28938 | (custom-autoload (quote xterm-mouse-mode) "xt-mouse") |
| 28858 | 28939 | ||
| 28940 | (put (quote xterm-mouse-mode) (quote custom-set) (quote custom-set-minor-mode)) | ||
| 28941 | |||
| 28859 | (autoload (quote xterm-mouse-mode) "xt-mouse" "\ | 28942 | (autoload (quote xterm-mouse-mode) "xt-mouse" "\ |
| 28860 | Toggle XTerm mouse mode. | 28943 | Toggle XTerm mouse mode. |
| 28861 | With prefix arg, turn XTerm mouse mode on iff arg is positive. | 28944 | With prefix arg, turn XTerm mouse mode on iff arg is positive. |
| @@ -28872,7 +28955,7 @@ down the SHIFT key while pressing the mouse button. | |||
| 28872 | ;;;*** | 28955 | ;;;*** |
| 28873 | 28956 | ||
| 28874 | ;;;### (autoloads (yenc-extract-filename yenc-decode-region) "yenc" | 28957 | ;;;### (autoloads (yenc-extract-filename yenc-decode-region) "yenc" |
| 28875 | ;;;;;; "gnus/yenc.el" (17087 12415)) | 28958 | ;;;;;; "gnus/yenc.el" (17107 37379)) |
| 28876 | ;;; Generated autoloads from gnus/yenc.el | 28959 | ;;; Generated autoloads from gnus/yenc.el |
| 28877 | 28960 | ||
| 28878 | (autoload (quote yenc-decode-region) "yenc" "\ | 28961 | (autoload (quote yenc-decode-region) "yenc" "\ |
| @@ -28888,7 +28971,7 @@ Extract file name from an yenc header. | |||
| 28888 | ;;;*** | 28971 | ;;;*** |
| 28889 | 28972 | ||
| 28890 | ;;;### (autoloads (psychoanalyze-pinhead apropos-zippy insert-zippyism | 28973 | ;;;### (autoloads (psychoanalyze-pinhead apropos-zippy insert-zippyism |
| 28891 | ;;;;;; yow) "yow" "play/yow.el" (17087 12380)) | 28974 | ;;;;;; yow) "yow" "play/yow.el" (17107 37380)) |
| 28892 | ;;; Generated autoloads from play/yow.el | 28975 | ;;; Generated autoloads from play/yow.el |
| 28893 | 28976 | ||
| 28894 | (autoload (quote yow) "yow" "\ | 28977 | (autoload (quote yow) "yow" "\ |
| @@ -28914,7 +28997,7 @@ Zippy goes to the analyst. | |||
| 28914 | 28997 | ||
| 28915 | ;;;*** | 28998 | ;;;*** |
| 28916 | 28999 | ||
| 28917 | ;;;### (autoloads (zone) "zone" "play/zone.el" (17087 12558)) | 29000 | ;;;### (autoloads (zone) "zone" "play/zone.el" (17107 37380)) |
| 28918 | ;;; Generated autoloads from play/zone.el | 29001 | ;;; Generated autoloads from play/zone.el |
| 28919 | 29002 | ||
| 28920 | (autoload (quote zone) "zone" "\ | 29003 | (autoload (quote zone) "zone" "\ |
| @@ -28925,7 +29008,7 @@ Zone out, completely. | |||
| 28925 | ;;;*** | 29008 | ;;;*** |
| 28926 | 29009 | ||
| 28927 | ;;;### (autoloads (zone-mode zone-mode-update-serial-hook) "zone-mode" | 29010 | ;;;### (autoloads (zone-mode zone-mode-update-serial-hook) "zone-mode" |
| 28928 | ;;;;;; "net/zone-mode.el" (17087 12575)) | 29011 | ;;;;;; "net/zone-mode.el" (17107 37379)) |
| 28929 | ;;; Generated autoloads from net/zone-mode.el | 29012 | ;;; Generated autoloads from net/zone-mode.el |
| 28930 | 29013 | ||
| 28931 | (autoload (quote zone-mode-update-serial-hook) "zone-mode" "\ | 29014 | (autoload (quote zone-mode-update-serial-hook) "zone-mode" "\ |
| @@ -28966,8 +29049,8 @@ Zone-mode does two things: | |||
| 28966 | ;;;;;; "calendar/cal-iso.el" "calendar/cal-julian.el" "calendar/cal-mayan.el" | 29049 | ;;;;;; "calendar/cal-iso.el" "calendar/cal-julian.el" "calendar/cal-mayan.el" |
| 28967 | ;;;;;; "calendar/cal-menu.el" "calendar/cal-move.el" "calendar/cal-persia.el" | 29050 | ;;;;;; "calendar/cal-menu.el" "calendar/cal-move.el" "calendar/cal-persia.el" |
| 28968 | ;;;;;; "calendar/cal-tex.el" "calendar/cal-x.el" "case-table.el" | 29051 | ;;;;;; "calendar/cal-tex.el" "calendar/cal-x.el" "case-table.el" |
| 28969 | ;;;;;; "cdl.el" "cus-dep.el" "cus-start.el" "custom.el" "dos-fns.el" | 29052 | ;;;;;; "cdl.el" "cus-dep.el" "cus-load.el" "cus-start.el" "custom.el" |
| 28970 | ;;;;;; "dos-vars.el" "dos-w32.el" "ediff-diff.el" "ediff-init.el" | 29053 | ;;;;;; "dos-fns.el" "dos-vars.el" "dos-w32.el" "ediff-diff.el" "ediff-init.el" |
| 28971 | ;;;;;; "ediff-merg.el" "ediff-ptch.el" "ediff-vers.el" "ediff-wind.el" | 29054 | ;;;;;; "ediff-merg.el" "ediff-ptch.el" "ediff-vers.el" "ediff-wind.el" |
| 28972 | ;;;;;; "electric.el" "emacs-lisp/assoc.el" "emacs-lisp/authors.el" | 29055 | ;;;;;; "electric.el" "emacs-lisp/assoc.el" "emacs-lisp/authors.el" |
| 28973 | ;;;;;; "emacs-lisp/bindat.el" "emacs-lisp/byte-opt.el" "emacs-lisp/byte-run.el" | 29056 | ;;;;;; "emacs-lisp/bindat.el" "emacs-lisp/byte-opt.el" "emacs-lisp/byte-run.el" |
| @@ -28989,12 +29072,13 @@ Zone-mode does two things: | |||
| 28989 | ;;;;;; "eshell/em-pred.el" "eshell/em-prompt.el" "eshell/em-rebind.el" | 29072 | ;;;;;; "eshell/em-pred.el" "eshell/em-prompt.el" "eshell/em-rebind.el" |
| 28990 | ;;;;;; "eshell/em-script.el" "eshell/em-smart.el" "eshell/em-term.el" | 29073 | ;;;;;; "eshell/em-script.el" "eshell/em-smart.el" "eshell/em-term.el" |
| 28991 | ;;;;;; "eshell/em-unix.el" "eshell/em-xtra.el" "eshell/esh-arg.el" | 29074 | ;;;;;; "eshell/em-unix.el" "eshell/em-xtra.el" "eshell/esh-arg.el" |
| 28992 | ;;;;;; "eshell/esh-cmd.el" "eshell/esh-ext.el" "eshell/esh-io.el" | 29075 | ;;;;;; "eshell/esh-cmd.el" "eshell/esh-ext.el" "eshell/esh-groups.el" |
| 28993 | ;;;;;; "eshell/esh-maint.el" "eshell/esh-module.el" "eshell/esh-opt.el" | 29076 | ;;;;;; "eshell/esh-io.el" "eshell/esh-maint.el" "eshell/esh-module.el" |
| 28994 | ;;;;;; "eshell/esh-proc.el" "eshell/esh-util.el" "eshell/esh-var.el" | 29077 | ;;;;;; "eshell/esh-opt.el" "eshell/esh-proc.el" "eshell/esh-util.el" |
| 28995 | ;;;;;; "faces.el" "files.el" "foldout.el" "font-core.el" "format.el" | 29078 | ;;;;;; "eshell/esh-var.el" "faces.el" "files.el" "finder-inf.el" |
| 28996 | ;;;;;; "forms-d2.el" "forms-pass.el" "frame.el" "generic-x.el" "gnus/compface.el" | 29079 | ;;;;;; "foldout.el" "font-core.el" "format.el" "forms-d2.el" "forms-pass.el" |
| 28997 | ;;;;;; "gnus/dig.el" "gnus/dns.el" "gnus/format-spec.el" "gnus/gnus-async.el" | 29080 | ;;;;;; "frame.el" "generic-x.el" "gnus/compface.el" "gnus/dig.el" |
| 29081 | ;;;;;; "gnus/dns.el" "gnus/format-spec.el" "gnus/gnus-async.el" | ||
| 28998 | ;;;;;; "gnus/gnus-bcklg.el" "gnus/gnus-cite.el" "gnus/gnus-cus.el" | 29082 | ;;;;;; "gnus/gnus-bcklg.el" "gnus/gnus-cite.el" "gnus/gnus-cus.el" |
| 28999 | ;;;;;; "gnus/gnus-demon.el" "gnus/gnus-diary.el" "gnus/gnus-dup.el" | 29083 | ;;;;;; "gnus/gnus-demon.el" "gnus/gnus-diary.el" "gnus/gnus-dup.el" |
| 29000 | ;;;;;; "gnus/gnus-eform.el" "gnus/gnus-ems.el" "gnus/gnus-gl.el" | 29084 | ;;;;;; "gnus/gnus-eform.el" "gnus/gnus-ems.el" "gnus/gnus-gl.el" |
| @@ -29020,11 +29104,10 @@ Zone-mode does two things: | |||
| 29020 | ;;;;;; "gnus/smime.el" "gnus/spam-stat.el" "gnus/starttls.el" "gnus/utf7.el" | 29104 | ;;;;;; "gnus/smime.el" "gnus/spam-stat.el" "gnus/starttls.el" "gnus/utf7.el" |
| 29021 | ;;;;;; "gnus/webmail.el" "help.el" "indent.el" "international/characters.el" | 29105 | ;;;;;; "gnus/webmail.el" "help.el" "indent.el" "international/characters.el" |
| 29022 | ;;;;;; "international/fontset.el" "international/iso-ascii.el" "international/iso-insert.el" | 29106 | ;;;;;; "international/fontset.el" "international/iso-ascii.el" "international/iso-insert.el" |
| 29023 | ;;;;;; "international/iso-swed.el" "international/ja-dic-cnv.el" | 29107 | ;;;;;; "international/ja-dic-cnv.el" "international/ja-dic-utl.el" |
| 29024 | ;;;;;; "international/ja-dic-utl.el" "international/latin-1.el" | 29108 | ;;;;;; "international/latin-1.el" "international/latin-2.el" "international/latin-3.el" |
| 29025 | ;;;;;; "international/latin-2.el" "international/latin-3.el" "international/latin-4.el" | 29109 | ;;;;;; "international/latin-4.el" "international/latin-5.el" "international/latin-8.el" |
| 29026 | ;;;;;; "international/latin-5.el" "international/latin-8.el" "international/latin-9.el" | 29110 | ;;;;;; "international/latin-9.el" "international/mule-cmds.el" "international/mule-conf.el" |
| 29027 | ;;;;;; "international/mule-cmds.el" "international/mule-conf.el" | ||
| 29028 | ;;;;;; "international/mule.el" "international/ogonek.el" "international/subst-big5.el" | 29111 | ;;;;;; "international/mule.el" "international/ogonek.el" "international/subst-big5.el" |
| 29029 | ;;;;;; "international/subst-gb2312.el" "international/subst-jis.el" | 29112 | ;;;;;; "international/subst-gb2312.el" "international/subst-jis.el" |
| 29030 | ;;;;;; "international/subst-ksc.el" "international/swedish.el" "international/ucs-tables.el" | 29113 | ;;;;;; "international/subst-ksc.el" "international/swedish.el" "international/ucs-tables.el" |
| @@ -29050,19 +29133,20 @@ Zone-mode does two things: | |||
| 29050 | ;;;;;; "net/eudcb-ldap.el" "net/eudcb-ph.el" "net/ldap.el" "net/netrc.el" | 29133 | ;;;;;; "net/eudcb-ldap.el" "net/eudcb-ph.el" "net/ldap.el" "net/netrc.el" |
| 29051 | ;;;;;; "net/tls.el" "net/tramp-ftp.el" "net/tramp-smb.el" "net/tramp-util.el" | 29134 | ;;;;;; "net/tls.el" "net/tramp-ftp.el" "net/tramp-smb.el" "net/tramp-util.el" |
| 29052 | ;;;;;; "net/tramp-uu.el" "net/tramp-vc.el" "net/trampver.el" "obsolete/awk-mode.el" | 29135 | ;;;;;; "net/tramp-uu.el" "net/tramp-vc.el" "net/trampver.el" "obsolete/awk-mode.el" |
| 29053 | ;;;;;; "obsolete/float.el" "obsolete/hilit19.el" "obsolete/keyswap.el" | 29136 | ;;;;;; "obsolete/float.el" "obsolete/hilit19.el" "obsolete/iso-swed.el" |
| 29054 | ;;;;;; "obsolete/mlsupport.el" "obsolete/ooutline.el" "obsolete/profile.el" | 29137 | ;;;;;; "obsolete/keyswap.el" "obsolete/mlsupport.el" "obsolete/ooutline.el" |
| 29055 | ;;;;;; "obsolete/rnews.el" "obsolete/sc.el" "obsolete/sun-curs.el" | 29138 | ;;;;;; "obsolete/profile.el" "obsolete/rnews.el" "obsolete/sc.el" |
| 29056 | ;;;;;; "obsolete/sun-fns.el" "obsolete/uncompress.el" "obsolete/x-apollo.el" | 29139 | ;;;;;; "obsolete/sun-curs.el" "obsolete/sun-fns.el" "obsolete/uncompress.el" |
| 29057 | ;;;;;; "obsolete/x-menu.el" "patcomp.el" "paths.el" "pcvs-info.el" | 29140 | ;;;;;; "obsolete/x-apollo.el" "obsolete/x-menu.el" "patcomp.el" |
| 29058 | ;;;;;; "pcvs-parse.el" "pcvs-util.el" "play/gamegrid.el" "play/gametree.el" | 29141 | ;;;;;; "paths.el" "pcvs-info.el" "pcvs-parse.el" "pcvs-util.el" |
| 29059 | ;;;;;; "play/meese.el" "progmodes/ada-prj.el" "progmodes/cc-align.el" | 29142 | ;;;;;; "play/gamegrid.el" "play/gametree.el" "play/meese.el" "progmodes/ada-prj.el" |
| 29060 | ;;;;;; "progmodes/cc-awk.el" "progmodes/cc-bytecomp.el" "progmodes/cc-cmds.el" | 29143 | ;;;;;; "progmodes/cc-align.el" "progmodes/cc-awk.el" "progmodes/cc-bytecomp.el" |
| 29061 | ;;;;;; "progmodes/cc-compat.el" "progmodes/cc-defs.el" "progmodes/cc-engine.el" | 29144 | ;;;;;; "progmodes/cc-cmds.el" "progmodes/cc-compat.el" "progmodes/cc-defs.el" |
| 29062 | ;;;;;; "progmodes/cc-fonts.el" "progmodes/cc-langs.el" "progmodes/cc-menus.el" | 29145 | ;;;;;; "progmodes/cc-engine.el" "progmodes/cc-fonts.el" "progmodes/cc-langs.el" |
| 29063 | ;;;;;; "progmodes/cc-vars.el" "progmodes/ebnf-abn.el" "progmodes/ebnf-bnf.el" | 29146 | ;;;;;; "progmodes/cc-menus.el" "progmodes/cc-vars.el" "progmodes/ebnf-abn.el" |
| 29064 | ;;;;;; "progmodes/ebnf-dtd.el" "progmodes/ebnf-ebx.el" "progmodes/ebnf-iso.el" | 29147 | ;;;;;; "progmodes/ebnf-bnf.el" "progmodes/ebnf-dtd.el" "progmodes/ebnf-ebx.el" |
| 29065 | ;;;;;; "progmodes/ebnf-otz.el" "progmodes/ebnf-yac.el" "progmodes/idlw-help.el" | 29148 | ;;;;;; "progmodes/ebnf-iso.el" "progmodes/ebnf-otz.el" "progmodes/ebnf-yac.el" |
| 29149 | ;;;;;; "progmodes/idlw-complete-structtag.el" "progmodes/idlw-help.el" | ||
| 29066 | ;;;;;; "progmodes/idlw-rinfo.el" "progmodes/idlw-toolbar.el" "progmodes/mantemp.el" | 29150 | ;;;;;; "progmodes/idlw-rinfo.el" "progmodes/idlw-toolbar.el" "progmodes/mantemp.el" |
| 29067 | ;;;;;; "progmodes/xscheme.el" "register.el" "replace.el" "s-region.el" | 29151 | ;;;;;; "progmodes/xscheme.el" "register.el" "replace.el" "s-region.el" |
| 29068 | ;;;;;; "saveplace.el" "scroll-bar.el" "select.el" "simple.el" "soundex.el" | 29152 | ;;;;;; "saveplace.el" "scroll-bar.el" "select.el" "simple.el" "soundex.el" |
| @@ -29086,7 +29170,7 @@ Zone-mode does two things: | |||
| 29086 | ;;;;;; "url/url-vars.el" "url/vc-dav.el" "vc-hooks.el" "vcursor.el" | 29170 | ;;;;;; "url/url-vars.el" "url/vc-dav.el" "vc-hooks.el" "vcursor.el" |
| 29087 | ;;;;;; "version.el" "vms-patch.el" "vmsproc.el" "vt-control.el" | 29171 | ;;;;;; "version.el" "vms-patch.el" "vmsproc.el" "vt-control.el" |
| 29088 | ;;;;;; "vt100-led.el" "w32-fns.el" "w32-vars.el" "widget.el" "window.el" | 29172 | ;;;;;; "vt100-led.el" "w32-fns.el" "w32-vars.el" "widget.el" "window.el" |
| 29089 | ;;;;;; "x-dnd.el") (17087 12870 740741)) | 29173 | ;;;;;; "x-dnd.el") (17107 40722 172960)) |
| 29090 | 29174 | ||
| 29091 | ;;;*** | 29175 | ;;;*** |
| 29092 | 29176 | ||
diff --git a/lisp/obsolete/iso-acc.el b/lisp/obsolete/iso-acc.el index 97e14aabde6..279548b81d6 100644 --- a/lisp/obsolete/iso-acc.el +++ b/lisp/obsolete/iso-acc.el | |||
| @@ -395,15 +395,15 @@ It selects the customization based on the specifications in the | |||
| 395 | (setq table (cdr table))) | 395 | (setq table (cdr table))) |
| 396 | (setq iso-language language | 396 | (setq iso-language language |
| 397 | iso-accents-list table) | 397 | iso-accents-list table) |
| 398 | (if global-key-translation-map | 398 | (if key-translation-map |
| 399 | (substitute-key-definition | 399 | (substitute-key-definition |
| 400 | 'iso-accents-accent-key nil global-key-translation-map) | 400 | 'iso-accents-accent-key nil key-translation-map) |
| 401 | (setq global-key-translation-map (make-sparse-keymap))) | 401 | (setq key-translation-map (make-sparse-keymap))) |
| 402 | ;; Set up translations for all the characters that are used as | 402 | ;; Set up translations for all the characters that are used as |
| 403 | ;; accent prefixes in this language. | 403 | ;; accent prefixes in this language. |
| 404 | (setq tail iso-accents-list) | 404 | (setq tail iso-accents-list) |
| 405 | (while tail | 405 | (while tail |
| 406 | (define-key global-key-translation-map (vector (car (car tail))) | 406 | (define-key key-translation-map (vector (car (car tail))) |
| 407 | 'iso-accents-accent-key) | 407 | 'iso-accents-accent-key) |
| 408 | (setq tail (cdr tail)))))) | 408 | (setq tail (cdr tail)))))) |
| 409 | 409 | ||
diff --git a/lisp/simple.el b/lisp/simple.el index 865ae05fb75..c620b80f3ee 100644 --- a/lisp/simple.el +++ b/lisp/simple.el | |||
| @@ -5269,6 +5269,7 @@ See also `normal-erase-is-backspace'." | |||
| 5269 | 5269 | ||
| 5270 | (if normal-erase-is-backspace | 5270 | (if normal-erase-is-backspace |
| 5271 | (progn | 5271 | (progn |
| 5272 | ;; XXX Perhaps this mode should be terminal-local, not global -- lorentey | ||
| 5272 | (define-key function-key-map [delete] [?\C-d]) | 5273 | (define-key function-key-map [delete] [?\C-d]) |
| 5273 | (define-key function-key-map [kp-delete] [?\C-d]) | 5274 | (define-key function-key-map [kp-delete] [?\C-d]) |
| 5274 | (define-key function-key-map [backspace] [?\C-?])) | 5275 | (define-key function-key-map [backspace] [?\C-?])) |
diff --git a/lisp/subr.el b/lisp/subr.el index 1072545b41d..666dc8e671d 100644 --- a/lisp/subr.el +++ b/lisp/subr.el | |||
| @@ -1172,7 +1172,8 @@ any other non-digit terminates the character code and is then used as input.")) | |||
| 1172 | ;; or C-q C-x might not return immediately since ESC or C-x might be | 1172 | ;; or C-q C-x might not return immediately since ESC or C-x might be |
| 1173 | ;; bound to some prefix in function-key-map or key-translation-map. | 1173 | ;; bound to some prefix in function-key-map or key-translation-map. |
| 1174 | (setq translated char) | 1174 | (setq translated char) |
| 1175 | (let ((translation (lookup-key function-key-map (vector char)))) | 1175 | (let ((translation (lookup-key (terminal-local-value 'local-function-key-map nil) |
| 1176 | (vector char)))) | ||
| 1176 | (if (arrayp translation) | 1177 | (if (arrayp translation) |
| 1177 | (setq translated (aref translation 0)))) | 1178 | (setq translated (aref translation 0)))) |
| 1178 | (cond ((null translated)) | 1179 | (cond ((null translated)) |
diff --git a/lisp/term/AT386.el b/lisp/term/AT386.el index 6ab8cd9dea9..fc86e8bcaf0 100644 --- a/lisp/term/AT386.el +++ b/lisp/term/AT386.el | |||
| @@ -31,7 +31,7 @@ | |||
| 31 | (if (boundp 'AT386-keypad-map) | 31 | (if (boundp 'AT386-keypad-map) |
| 32 | nil | 32 | nil |
| 33 | ;; The terminal initialization should already have set up some keys | 33 | ;; The terminal initialization should already have set up some keys |
| 34 | (setq AT386-keypad-map (lookup-key (terminal-local-value 'function-key-map nil) "\e[")) | 34 | (setq AT386-keypad-map (lookup-key (terminal-local-value 'local-function-key-map nil) "\e[")) |
| 35 | (if (not (keymapp AT386-keypad-map)) | 35 | (if (not (keymapp AT386-keypad-map)) |
| 36 | (error "What? Your AT386 termcap/terminfo has no keycaps in it")) | 36 | (error "What? Your AT386 termcap/terminfo has no keycaps in it")) |
| 37 | 37 | ||
| @@ -54,7 +54,7 @@ | |||
| 54 | (define-key AT386-keypad-map "T" [kp-add]) | 54 | (define-key AT386-keypad-map "T" [kp-add]) |
| 55 | 55 | ||
| 56 | ;; Arrange for the ALT key to be equivalent to ESC | 56 | ;; Arrange for the ALT key to be equivalent to ESC |
| 57 | (define-key (terminal-local-value 'function-key-map nil) "\eN" [27]) ; ALT map | 57 | (define-key (terminal-local-value 'local-function-key-map nil) "\eN" [27]) ; ALT map |
| 58 | ) | 58 | ) |
| 59 | 59 | ||
| 60 | ;;; arch-tag: abec1b03-582f-49f8-b8cb-e2fd52ea4bd7 | 60 | ;;; arch-tag: abec1b03-582f-49f8-b8cb-e2fd52ea4bd7 |
diff --git a/lisp/term/internal.el b/lisp/term/internal.el index 76a375cf74d..398d848aeb1 100644 --- a/lisp/term/internal.el +++ b/lisp/term/internal.el | |||
| @@ -28,7 +28,7 @@ | |||
| 28 | ;; --------------------------------------------------------------------------- | 28 | ;; --------------------------------------------------------------------------- |
| 29 | ;; keyboard setup -- that's simple! | 29 | ;; keyboard setup -- that's simple! |
| 30 | (set-input-mode nil nil 0) | 30 | (set-input-mode nil nil 0) |
| 31 | (let (m (terminal-local-value 'function-key-map nil)) | 31 | (let (m (terminal-local-value 'local-function-key-map nil)) |
| 32 | (define-key m [backspace] "\177") ; Normal behaviour for BS | 32 | (define-key m [backspace] "\177") ; Normal behaviour for BS |
| 33 | (define-key m [delete] "\C-d") ; ... and Delete | 33 | (define-key m [delete] "\C-d") ; ... and Delete |
| 34 | (define-key m [tab] [?\t]) | 34 | (define-key m [tab] [?\t]) |
diff --git a/lisp/term/iris-ansi.el b/lisp/term/iris-ansi.el index bf9b23bdf6f..4d99c3a355b 100644 --- a/lisp/term/iris-ansi.el +++ b/lisp/term/iris-ansi.el | |||
| @@ -333,8 +333,8 @@ | |||
| 333 | ;; This way we don't override terminfo-derived settings or settings | 333 | ;; This way we don't override terminfo-derived settings or settings |
| 334 | ;; made in the .emacs file. | 334 | ;; made in the .emacs file. |
| 335 | (let ((m (copy-keymap iris-function-map))) | 335 | (let ((m (copy-keymap iris-function-map))) |
| 336 | (set-keymap-parent m (keymap-parent (terminal-local-value 'function-key-map nil))) | 336 | (set-keymap-parent m (keymap-parent (terminal-local-value 'local-function-key-map nil))) |
| 337 | (set-keymap-parent (terminal-local-value 'function-key-map nil) m)) | 337 | (set-keymap-parent (terminal-local-value 'local-function-key-map nil) m)) |
| 338 | 338 | ||
| 339 | ;;; arch-tag: b1d0e73a-bb7d-47be-9fb2-6fb126469a1b | 339 | ;;; arch-tag: b1d0e73a-bb7d-47be-9fb2-6fb126469a1b |
| 340 | ;;; iris-ansi.el ends here | 340 | ;;; iris-ansi.el ends here |
diff --git a/lisp/term/lk201.el b/lisp/term/lk201.el index 8e40a25070c..84d5660cb57 100644 --- a/lisp/term/lk201.el +++ b/lisp/term/lk201.el | |||
| @@ -79,8 +79,8 @@ | |||
| 79 | ;; This way we don't override terminfo-derived settings or settings | 79 | ;; This way we don't override terminfo-derived settings or settings |
| 80 | ;; made in the .emacs file. | 80 | ;; made in the .emacs file. |
| 81 | (let ((m (copy-keymap lk201-function-map))) | 81 | (let ((m (copy-keymap lk201-function-map))) |
| 82 | (set-keymap-parent m (keymap-parent (terminal-local-value 'function-key-map nil))) | 82 | (set-keymap-parent m (keymap-parent (terminal-local-value 'local-function-key-map nil))) |
| 83 | (set-keymap-parent (terminal-local-value 'function-key-map nil) m)) | 83 | (set-keymap-parent (terminal-local-value 'local-function-key-map nil) m)) |
| 84 | 84 | ||
| 85 | ;;; arch-tag: 7ffb4444-6a23-43e1-b457-43cf4f673c0d | 85 | ;;; arch-tag: 7ffb4444-6a23-43e1-b457-43cf4f673c0d |
| 86 | ;;; lk201.el ends here | 86 | ;;; lk201.el ends here |
diff --git a/lisp/term/mac-win.el b/lisp/term/mac-win.el index 03971a95db6..8b538050b26 100644 --- a/lisp/term/mac-win.el +++ b/lisp/term/mac-win.el | |||
| @@ -1059,7 +1059,7 @@ XConsortium: rgb.txt,v 10.41 94/02/20 18:39:36 rws Exp") | |||
| 1059 | 1059 | ||
| 1060 | ;; Map certain keypad keys into ASCII characters | 1060 | ;; Map certain keypad keys into ASCII characters |
| 1061 | ;; that people usually expect. | 1061 | ;; that people usually expect. |
| 1062 | (let ((m (terminal-local-value 'function-key-map nil))) | 1062 | (let ((m (terminal-local-value 'local-function-key-map nil))) |
| 1063 | (define-key m [backspace] [?\d]) | 1063 | (define-key m [backspace] [?\d]) |
| 1064 | (define-key m [delete] [?\d]) | 1064 | (define-key m [delete] [?\d]) |
| 1065 | (define-key m [tab] [?\t]) | 1065 | (define-key m [tab] [?\t]) |
| @@ -1140,7 +1140,7 @@ correspoinding TextEncodingBase value." | |||
| 1140 | (set-keyboard-coding-system (or coding-system 'mac-roman)) | 1140 | (set-keyboard-coding-system (or coding-system 'mac-roman)) |
| 1141 | ;; MacJapanese maps reverse solidus to ?\x80. | 1141 | ;; MacJapanese maps reverse solidus to ?\x80. |
| 1142 | (if (eq coding-system 'japanese-shift-jis) | 1142 | (if (eq coding-system 'japanese-shift-jis) |
| 1143 | (define-key global-key-translation-map [?\x80] "\\")))) | 1143 | (define-key key-translation-map [?\x80] "\\")))) |
| 1144 | 1144 | ||
| 1145 | (define-key special-event-map [language-change] 'mac-handle-language-change) | 1145 | (define-key special-event-map [language-change] 'mac-handle-language-change) |
| 1146 | 1146 | ||
diff --git a/lisp/term/news.el b/lisp/term/news.el index 6bd6861133c..d5afab190dc 100644 --- a/lisp/term/news.el +++ b/lisp/term/news.el | |||
| @@ -31,7 +31,7 @@ | |||
| 31 | (if (boundp 'news-fkey-prefix) | 31 | (if (boundp 'news-fkey-prefix) |
| 32 | nil | 32 | nil |
| 33 | ;; The terminal initialization should already have set up some keys | 33 | ;; The terminal initialization should already have set up some keys |
| 34 | (setq news-fkey-prefix (lookup-key (terminal-local-value 'function-key-map nil) "\eO")) | 34 | (setq news-fkey-prefix (lookup-key (terminal-local-value 'local-function-key-map nil) "\eO")) |
| 35 | (if (not (keymapp news-fkey-prefix)) | 35 | (if (not (keymapp news-fkey-prefix)) |
| 36 | (error "What? Your news termcap/terminfo has no keycaps in it")) | 36 | (error "What? Your news termcap/terminfo has no keycaps in it")) |
| 37 | 37 | ||
diff --git a/lisp/term/rxvt.el b/lisp/term/rxvt.el index 9a1acf0d1a2..bb85c79f219 100644 --- a/lisp/term/rxvt.el +++ b/lisp/term/rxvt.el | |||
| @@ -100,8 +100,8 @@ | |||
| 100 | ;; This way we don't override terminfo-derived settings or settings | 100 | ;; This way we don't override terminfo-derived settings or settings |
| 101 | ;; made in the .emacs file. | 101 | ;; made in the .emacs file. |
| 102 | (let ((m (copy-keymap rxvt-function-map))) | 102 | (let ((m (copy-keymap rxvt-function-map))) |
| 103 | (set-keymap-parent m (keymap-parent (terminal-local-value 'function-key-map nil))) | 103 | (set-keymap-parent m (keymap-parent (terminal-local-value 'local-function-key-map nil))) |
| 104 | (set-keymap-parent (terminal-local-value 'function-key-map nil) m)) | 104 | (set-keymap-parent (terminal-local-value 'local-function-key-map nil) m)) |
| 105 | 105 | ||
| 106 | 106 | ||
| 107 | ;; Set up colors, for those versions of rxvt that support it. | 107 | ;; Set up colors, for those versions of rxvt that support it. |
diff --git a/lisp/term/sun.el b/lisp/term/sun.el index 85ee3b4386f..17018475514 100644 --- a/lisp/term/sun.el +++ b/lisp/term/sun.el | |||
| @@ -93,7 +93,7 @@ | |||
| 93 | ;; | 93 | ;; |
| 94 | 94 | ||
| 95 | (defvar sun-raw-prefix (make-sparse-keymap)) | 95 | (defvar sun-raw-prefix (make-sparse-keymap)) |
| 96 | (define-key (terminal-local-value 'function-key-map nil) "\e[" sun-raw-prefix) | 96 | (define-key (terminal-local-value 'local-function-key-map nil) "\e[" sun-raw-prefix) |
| 97 | 97 | ||
| 98 | (define-key sun-raw-prefix "210z" [r3]) | 98 | (define-key sun-raw-prefix "210z" [r3]) |
| 99 | (define-key sun-raw-prefix "213z" [r6]) | 99 | (define-key sun-raw-prefix "213z" [r6]) |
diff --git a/lisp/term/tvi970.el b/lisp/term/tvi970.el index 54b1b6bc3a6..30bc6184d7a 100644 --- a/lisp/term/tvi970.el +++ b/lisp/term/tvi970.el | |||
| @@ -28,14 +28,14 @@ | |||
| 28 | 28 | ||
| 29 | ;;; Code: | 29 | ;;; Code: |
| 30 | 30 | ||
| 31 | (or (lookup-key (terminal-local-value 'function-key-map nil) "\e[") | 31 | (or (lookup-key (terminal-local-value 'local-function-key-map nil) "\e[") |
| 32 | (define-key (terminal-local-value 'function-key-map nil) "\e[" (make-keymap))) | 32 | (define-key (terminal-local-value 'local-function-key-map nil) "\e[" (make-keymap))) |
| 33 | ;; (or (lookup-key (terminal-local-value 'function-key-map nil) "\eO") | 33 | ;; (or (lookup-key (terminal-local-value 'local-function-key-map nil) "\eO") |
| 34 | ;; (define-key (terminal-local-value 'function-key-map nil) "\eO" (make-keymap))) | 34 | ;; (define-key (terminal-local-value 'local-function-key-map nil) "\eO" (make-keymap))) |
| 35 | 35 | ||
| 36 | ;; Miscellaneous keys | 36 | ;; Miscellaneous keys |
| 37 | (mapcar (function (lambda (key-binding) | 37 | (mapcar (function (lambda (key-binding) |
| 38 | (define-key (terminal-local-value 'function-key-map nil) | 38 | (define-key (terminal-local-value 'local-function-key-map nil) |
| 39 | (car key-binding) (nth 1 key-binding)))) | 39 | (car key-binding) (nth 1 key-binding)))) |
| 40 | '( | 40 | '( |
| 41 | ;; These are set up by termcap or terminfo | 41 | ;; These are set up by termcap or terminfo |
| @@ -84,17 +84,17 @@ | |||
| 84 | ;; The numeric keypad keys. | 84 | ;; The numeric keypad keys. |
| 85 | (let ((i 0)) | 85 | (let ((i 0)) |
| 86 | (while (< i 10) | 86 | (while (< i 10) |
| 87 | (define-key (terminal-local-value 'function-key-map nil) | 87 | (define-key (terminal-local-value 'local-function-key-map nil) |
| 88 | (format "\eO%c" (+ i ?p)) | 88 | (format "\eO%c" (+ i ?p)) |
| 89 | (vector (intern (format "kp-%d" i)))) | 89 | (vector (intern (format "kp-%d" i)))) |
| 90 | (setq i (1+ i)))) | 90 | (setq i (1+ i)))) |
| 91 | ;; The numbered function keys. | 91 | ;; The numbered function keys. |
| 92 | (let ((i 0)) | 92 | (let ((i 0)) |
| 93 | (while (< i 16) | 93 | (while (< i 16) |
| 94 | (define-key (terminal-local-value 'function-key-map nil) | 94 | (define-key (terminal-local-value 'local-function-key-map nil) |
| 95 | (format "\e?%c" (+ i ?a)) | 95 | (format "\e?%c" (+ i ?a)) |
| 96 | (vector (intern (format "f%d" (1+ i))))) | 96 | (vector (intern (format "f%d" (1+ i))))) |
| 97 | (define-key (terminal-local-value 'function-key-map nil) | 97 | (define-key (terminal-local-value 'local-function-key-map nil) |
| 98 | (format "\e?%c" (+ i ?A)) | 98 | (format "\e?%c" (+ i ?A)) |
| 99 | (vector (intern (format "S-f%d" (1+ i))))) | 99 | (vector (intern (format "S-f%d" (1+ i))))) |
| 100 | (setq i (1+ i)))) | 100 | (setq i (1+ i)))) |
diff --git a/lisp/term/vt200.el b/lisp/term/vt200.el index 0ff0a30f567..e33b4f2905c 100644 --- a/lisp/term/vt200.el +++ b/lisp/term/vt200.el | |||
| @@ -4,7 +4,7 @@ | |||
| 4 | (load "term/vt100" nil t) | 4 | (load "term/vt100" nil t) |
| 5 | 5 | ||
| 6 | ;; Make F11 an escape key. | 6 | ;; Make F11 an escape key. |
| 7 | (define-key function-key-map "\e[23~" [?\e]) | 7 | (define-key (terminal-local-value 'local-function-key-map nil) "\e[23~" [?\e]) |
| 8 | 8 | ||
| 9 | ;;; arch-tag: 0f78f583-9f32-4237-b106-28bcfff21d89 | 9 | ;;; arch-tag: 0f78f583-9f32-4237-b106-28bcfff21d89 |
| 10 | ;;; vt200.el ends here | 10 | ;;; vt200.el ends here |
diff --git a/lisp/term/vt201.el b/lisp/term/vt201.el index d7deeaf11c7..bd1f8c35453 100644 --- a/lisp/term/vt201.el +++ b/lisp/term/vt201.el | |||
| @@ -4,7 +4,7 @@ | |||
| 4 | (load "term/vt100" nil t) | 4 | (load "term/vt100" nil t) |
| 5 | 5 | ||
| 6 | ;; Make F11 an escape key. | 6 | ;; Make F11 an escape key. |
| 7 | (define-key function-key-map "\e[23~" [?\e]) | 7 | (define-key (terminal-local-value 'local-function-key-map nil) "\e[23~" [?\e]) |
| 8 | 8 | ||
| 9 | ;;; arch-tag: a6abb38f-60ea-449e-a9e9-3fb8572c52ae | 9 | ;;; arch-tag: a6abb38f-60ea-449e-a9e9-3fb8572c52ae |
| 10 | ;;; vt201.el ends here | 10 | ;;; vt201.el ends here |
diff --git a/lisp/term/vt220.el b/lisp/term/vt220.el index 7ea1e3b57fa..de03b5f7495 100644 --- a/lisp/term/vt220.el +++ b/lisp/term/vt220.el | |||
| @@ -4,7 +4,7 @@ | |||
| 4 | (load "term/vt100" nil t) | 4 | (load "term/vt100" nil t) |
| 5 | 5 | ||
| 6 | ;; Make F11 an escape key. | 6 | ;; Make F11 an escape key. |
| 7 | (define-key function-key-map "\e[23~" [?\e]) | 7 | (define-key (terminal-local-value 'local-function-key-map nil) "\e[23~" [?\e]) |
| 8 | 8 | ||
| 9 | ;;; arch-tag: 98fc4867-a20d-46a1-a276-d7be31e49871 | 9 | ;;; arch-tag: 98fc4867-a20d-46a1-a276-d7be31e49871 |
| 10 | ;;; vt220.el ends here | 10 | ;;; vt220.el ends here |
diff --git a/lisp/term/vt240.el b/lisp/term/vt240.el index 05f0bebe50f..f54b47efa58 100644 --- a/lisp/term/vt240.el +++ b/lisp/term/vt240.el | |||
| @@ -4,7 +4,7 @@ | |||
| 4 | (load "term/vt100" nil t) | 4 | (load "term/vt100" nil t) |
| 5 | 5 | ||
| 6 | ;; Make F11 an escape key. | 6 | ;; Make F11 an escape key. |
| 7 | (define-key function-key-map "\e[23~" [?\e]) | 7 | (define-key (terminal-local-value 'local-function-key-map nil) "\e[23~" [?\e]) |
| 8 | 8 | ||
| 9 | ;;; arch-tag: d9f88e9c-02dc-49ff-871c-a415f08e4eb7 | 9 | ;;; arch-tag: d9f88e9c-02dc-49ff-871c-a415f08e4eb7 |
| 10 | ;;; vt240.el ends here | 10 | ;;; vt240.el ends here |
diff --git a/lisp/term/vt300.el b/lisp/term/vt300.el index 871ed234bc6..8af8940b1ff 100644 --- a/lisp/term/vt300.el +++ b/lisp/term/vt300.el | |||
| @@ -2,7 +2,7 @@ | |||
| 2 | (load "term/vt100" nil t) | 2 | (load "term/vt100" nil t) |
| 3 | 3 | ||
| 4 | ;; Make F11 an escape key. | 4 | ;; Make F11 an escape key. |
| 5 | (define-key function-key-map "\e[23~" [?\e]) | 5 | (define-key (terminal-local-value 'local-function-key-map nil) "\e[23~" [?\e]) |
| 6 | 6 | ||
| 7 | ;;; arch-tag: 876831c9-a6f2-444a-b033-706e6fbc149f | 7 | ;;; arch-tag: 876831c9-a6f2-444a-b033-706e6fbc149f |
| 8 | ;;; vt300.el ends here | 8 | ;;; vt300.el ends here |
diff --git a/lisp/term/vt320.el b/lisp/term/vt320.el index c99b8672fc1..38da9f795db 100644 --- a/lisp/term/vt320.el +++ b/lisp/term/vt320.el | |||
| @@ -2,7 +2,7 @@ | |||
| 2 | (load "term/vt100" nil t) | 2 | (load "term/vt100" nil t) |
| 3 | 3 | ||
| 4 | ;; Make F11 an escape key. | 4 | ;; Make F11 an escape key. |
| 5 | (define-key function-key-map "\e[23~" [?\e]) | 5 | (define-key (terminal-local-value 'local-function-key-map nil) "\e[23~" [?\e]) |
| 6 | 6 | ||
| 7 | ;;; arch-tag: f9f4c954-0b9e-45f9-b450-a320d32abd9c | 7 | ;;; arch-tag: f9f4c954-0b9e-45f9-b450-a320d32abd9c |
| 8 | ;;; vt320.el ends here | 8 | ;;; vt320.el ends here |
diff --git a/lisp/term/vt400.el b/lisp/term/vt400.el index 666266e2bf5..1e77851ce51 100644 --- a/lisp/term/vt400.el +++ b/lisp/term/vt400.el | |||
| @@ -2,7 +2,7 @@ | |||
| 2 | (load "term/vt100" nil t) | 2 | (load "term/vt100" nil t) |
| 3 | 3 | ||
| 4 | ;; Make F11 an escape key. | 4 | ;; Make F11 an escape key. |
| 5 | (define-key function-key-map "\e[23~" [?\e]) | 5 | (define-key (terminal-local-value 'local-function-key-map nil) "\e[23~" [?\e]) |
| 6 | 6 | ||
| 7 | ;;; arch-tag: a70809c5-6b21-42cc-ba20-536683e5e7d5 | 7 | ;;; arch-tag: a70809c5-6b21-42cc-ba20-536683e5e7d5 |
| 8 | ;;; vt400.el ends here | 8 | ;;; vt400.el ends here |
diff --git a/lisp/term/vt420.el b/lisp/term/vt420.el index 9ed5fbe135b..cac216d6823 100644 --- a/lisp/term/vt420.el +++ b/lisp/term/vt420.el | |||
| @@ -2,7 +2,7 @@ | |||
| 2 | (load "term/vt100" nil t) | 2 | (load "term/vt100" nil t) |
| 3 | 3 | ||
| 4 | ;; Make F11 an escape key. | 4 | ;; Make F11 an escape key. |
| 5 | (define-key function-key-map "\e[23~" [?\e]) | 5 | (define-key (terminal-local-value 'local-function-key-map nil) "\e[23~" [?\e]) |
| 6 | 6 | ||
| 7 | ;;; arch-tag: df2f897c-3a12-4b3c-9259-df089f96c160 | 7 | ;;; arch-tag: df2f897c-3a12-4b3c-9259-df089f96c160 |
| 8 | ;;; vt420.el ends here | 8 | ;;; vt420.el ends here |
diff --git a/lisp/term/wyse50.el b/lisp/term/wyse50.el index 32c667ce7ce..b41cd9d10b9 100644 --- a/lisp/term/wyse50.el +++ b/lisp/term/wyse50.el | |||
| @@ -37,9 +37,9 @@ | |||
| 37 | 37 | ||
| 38 | ;;; Code: | 38 | ;;; Code: |
| 39 | 39 | ||
| 40 | (define-key (terminal-local-value 'function-key-map nil) "\C-a" (make-keymap)) | 40 | (define-key (terminal-local-value 'local-function-key-map nil) "\C-a" (make-keymap)) |
| 41 | (mapcar (function (lambda (key-definition) | 41 | (mapcar (function (lambda (key-definition) |
| 42 | (define-key (terminal-local-value 'function-key-map nil) | 42 | (define-key (terminal-local-value 'local-function-key-map nil) |
| 43 | (car key-definition) (nth 1 key-definition)))) | 43 | (car key-definition) (nth 1 key-definition)))) |
| 44 | '( | 44 | '( |
| 45 | ;; These might be set up by termcap and terminfo | 45 | ;; These might be set up by termcap and terminfo |
diff --git a/lisp/term/x-win.el b/lisp/term/x-win.el index 8a354b15fea..681bb5e6005 100644 --- a/lisp/term/x-win.el +++ b/lisp/term/x-win.el | |||
| @@ -1170,7 +1170,7 @@ XConsortium: rgb.txt,v 10.41 94/02/20 18:39:36 rws Exp") | |||
| 1170 | (defun x-setup-function-keys (frame) | 1170 | (defun x-setup-function-keys (frame) |
| 1171 | "Set up `function-key-map' on FRAME for the X window system." | 1171 | "Set up `function-key-map' on FRAME for the X window system." |
| 1172 | ;; Map certain keypad keys into ASCII characters that people usually expect. | 1172 | ;; Map certain keypad keys into ASCII characters that people usually expect. |
| 1173 | (let ((m (terminal-local-value 'function-key-map frame))) | 1173 | (let ((m (terminal-local-value 'local-function-key-map frame))) |
| 1174 | (define-key m [backspace] [127]) | 1174 | (define-key m [backspace] [127]) |
| 1175 | (define-key m [delete] [127]) | 1175 | (define-key m [delete] [127]) |
| 1176 | (define-key m [tab] [?\t]) | 1176 | (define-key m [tab] [?\t]) |
diff --git a/lisp/term/xterm.el b/lisp/term/xterm.el index b99430da7cc..eb511201fc5 100644 --- a/lisp/term/xterm.el +++ b/lisp/term/xterm.el | |||
| @@ -39,7 +39,7 @@ | |||
| 39 | ;; function-key-map. This substitution is needed because if a key | 39 | ;; function-key-map. This substitution is needed because if a key |
| 40 | ;; definition if found in function-key-map, there are no further | 40 | ;; definition if found in function-key-map, there are no further |
| 41 | ;; lookups in other keymaps. | 41 | ;; lookups in other keymaps. |
| 42 | (let ((m (terminal-local-value 'function-key-map nil))) | 42 | (let ((m (terminal-local-value 'local-function-key-map nil))) |
| 43 | (substitute-key-definition [f13] [S-f1] m) | 43 | (substitute-key-definition [f13] [S-f1] m) |
| 44 | (substitute-key-definition [f14] [S-f2] m) | 44 | (substitute-key-definition [f14] [S-f2] m) |
| 45 | (substitute-key-definition [f15] [S-f3] m) | 45 | (substitute-key-definition [f15] [S-f3] m) |
| @@ -250,8 +250,8 @@ | |||
| 250 | ;; This way we don't override terminfo-derived settings or settings | 250 | ;; This way we don't override terminfo-derived settings or settings |
| 251 | ;; made in the .emacs file. | 251 | ;; made in the .emacs file. |
| 252 | (let ((m (copy-keymap xterm-function-map))) | 252 | (let ((m (copy-keymap xterm-function-map))) |
| 253 | (set-keymap-parent m (keymap-parent (terminal-local-value 'function-key-map nil))) | 253 | (set-keymap-parent m (keymap-parent (terminal-local-value 'local-function-key-map nil))) |
| 254 | (set-keymap-parent (terminal-local-value 'function-key-map nil) m)) | 254 | (set-keymap-parent (terminal-local-value 'local-function-key-map nil) m)) |
| 255 | 255 | ||
| 256 | ;; Set up colors, for those versions of xterm that support it. | 256 | ;; Set up colors, for those versions of xterm that support it. |
| 257 | (defvar xterm-standard-colors | 257 | (defvar xterm-standard-colors |
diff --git a/lisp/xt-mouse.el b/lisp/xt-mouse.el index e8b0cee00e4..692b35d02be 100644 --- a/lisp/xt-mouse.el +++ b/lisp/xt-mouse.el | |||
| @@ -45,6 +45,7 @@ | |||
| 45 | 45 | ||
| 46 | ;;; Code: | 46 | ;;; Code: |
| 47 | 47 | ||
| 48 | ;; XXX Perhaps this should be terminal-local instead. --lorentey | ||
| 48 | (define-key function-key-map "\e[M" 'xterm-mouse-translate) | 49 | (define-key function-key-map "\e[M" 'xterm-mouse-translate) |
| 49 | 50 | ||
| 50 | (defvar xterm-mouse-last) | 51 | (defvar xterm-mouse-last) |
diff --git a/src/keyboard.c b/src/keyboard.c index 7bdfa454636..d2d5919fc85 100644 --- a/src/keyboard.c +++ b/src/keyboard.c | |||
| @@ -440,8 +440,11 @@ Lisp_Object Qpre_command_hook, Vpre_command_hook; | |||
| 440 | Lisp_Object Qpost_command_hook, Vpost_command_hook; | 440 | Lisp_Object Qpost_command_hook, Vpost_command_hook; |
| 441 | Lisp_Object Qcommand_hook_internal, Vcommand_hook_internal; | 441 | Lisp_Object Qcommand_hook_internal, Vcommand_hook_internal; |
| 442 | 442 | ||
| 443 | /* Parent keymap of terminal-local function-key-map instances. */ | ||
| 444 | Lisp_Object Vfunction_key_map; | ||
| 445 | |||
| 443 | /* Parent keymap of terminal-local key-translation-map instances. */ | 446 | /* Parent keymap of terminal-local key-translation-map instances. */ |
| 444 | Lisp_Object Vglobal_key_translation_map; | 447 | Lisp_Object Vkey_translation_map; |
| 445 | 448 | ||
| 446 | /* List of deferred actions to be performed at a later time. | 449 | /* List of deferred actions to be performed at a later time. |
| 447 | The precise format isn't relevant here; we just check whether it is nil. */ | 450 | The precise format isn't relevant here; we just check whether it is nil. */ |
| @@ -8666,8 +8669,8 @@ read_key_sequence (keybuf, bufsize, prompt, dont_downcase_last, | |||
| 8666 | last_nonmenu_event = Qnil; | 8669 | last_nonmenu_event = Qnil; |
| 8667 | 8670 | ||
| 8668 | delayed_switch_frame = Qnil; | 8671 | delayed_switch_frame = Qnil; |
| 8669 | fkey.map = fkey.parent = current_kboard->Vfunction_key_map; | 8672 | fkey.map = fkey.parent = current_kboard->Vlocal_function_key_map; |
| 8670 | keytran.map = keytran.parent = current_kboard->Vkey_translation_map; | 8673 | keytran.map = keytran.parent = current_kboard->Vlocal_key_translation_map; |
| 8671 | /* If there is no translation-map, turn off scanning. */ | 8674 | /* If there is no translation-map, turn off scanning. */ |
| 8672 | fkey.start = fkey.end = KEYMAPP (fkey.map) ? 0 : bufsize + 1; | 8675 | fkey.start = fkey.end = KEYMAPP (fkey.map) ? 0 : bufsize + 1; |
| 8673 | keytran.start = keytran.end = KEYMAPP (keytran.map) ? 0 : bufsize + 1; | 8676 | keytran.start = keytran.end = KEYMAPP (keytran.map) ? 0 : bufsize + 1; |
| @@ -10780,9 +10783,10 @@ init_kboard (kb) | |||
| 10780 | kb->reference_count = 0; | 10783 | kb->reference_count = 0; |
| 10781 | kb->Vsystem_key_alist = Qnil; | 10784 | kb->Vsystem_key_alist = Qnil; |
| 10782 | kb->system_key_syms = Qnil; | 10785 | kb->system_key_syms = Qnil; |
| 10783 | kb->Vfunction_key_map = Fmake_sparse_keymap (Qnil); | 10786 | kb->Vlocal_function_key_map = Fmake_sparse_keymap (Qnil); |
| 10784 | kb->Vkey_translation_map = Fmake_sparse_keymap (Qnil); | 10787 | Fset_keymap_parent (kb->Vlocal_function_key_map, Vfunction_key_map); |
| 10785 | Fset_keymap_parent (kb->Vkey_translation_map, Vglobal_key_translation_map); | 10788 | kb->Vlocal_key_translation_map = Fmake_sparse_keymap (Qnil); |
| 10789 | Fset_keymap_parent (kb->Vlocal_key_translation_map, Vkey_translation_map); | ||
| 10786 | kb->Vdefault_minibuffer_frame = Qnil; | 10790 | kb->Vdefault_minibuffer_frame = Qnil; |
| 10787 | } | 10791 | } |
| 10788 | 10792 | ||
| @@ -11496,7 +11500,7 @@ which binding of this variable is active at any given moment. If you | |||
| 11496 | need set or get the binding on a specific display, use | 11500 | need set or get the binding on a specific display, use |
| 11497 | `terminal-local-value' and `set-terminal-local-value'. */); | 11501 | `terminal-local-value' and `set-terminal-local-value'. */); |
| 11498 | 11502 | ||
| 11499 | DEFVAR_KBOARD ("function-key-map", Vfunction_key_map, | 11503 | DEFVAR_KBOARD ("local-function-key-map", Vlocal_function_key_map, |
| 11500 | doc: /* Keymap mapping ASCII function key sequences onto their preferred forms. | 11504 | doc: /* Keymap mapping ASCII function key sequences onto their preferred forms. |
| 11501 | This allows Emacs to recognize function keys sent from ASCII | 11505 | This allows Emacs to recognize function keys sent from ASCII |
| 11502 | terminals at any point in a key sequence. | 11506 | terminals at any point in a key sequence. |
| @@ -11517,14 +11521,22 @@ Typing `ESC O P' to `read-key-sequence' would return [f1]. Typing | |||
| 11517 | key, typing `ESC O P x' would return [f1 x]. | 11521 | key, typing `ESC O P x' would return [f1 x]. |
| 11518 | 11522 | ||
| 11519 | `function-key-map' has a separate binding for each display device. | 11523 | `function-key-map' has a separate binding for each display device. |
| 11520 | See Info node `(elisp)Multiple displays'. | 11524 | See Info node `(elisp)Multiple displays'. If you need to define a |
| 11525 | binding on all display devices, change `global-function-key-map' | ||
| 11526 | instead. | ||
| 11521 | 11527 | ||
| 11522 | Note that the currently selected frame has very little to do with | 11528 | Note that the currently selected frame has very little to do with |
| 11523 | which binding of this variable is active at any given moment. If you | 11529 | which binding of this variable is active at any given moment. If you |
| 11524 | need set or get the binding on a specific display, use | 11530 | need set or get the binding on a specific display, use |
| 11525 | `terminal-local-value' and `set-terminal-local-value'. */); | 11531 | `terminal-local-value' and `set-terminal-local-value'. */); |
| 11526 | 11532 | ||
| 11527 | DEFVAR_KBOARD ("key-translation-map", Vkey_translation_map, | 11533 | DEFVAR_LISP ("function-key-map", &Vfunction_key_map, |
| 11534 | doc: /* The parent keymap of all `local-function-key-map' instances. | ||
| 11535 | Function key definitions that apply to all display devices should go | ||
| 11536 | here. */); | ||
| 11537 | Vfunction_key_map = Fmake_sparse_keymap (Qnil); | ||
| 11538 | |||
| 11539 | DEFVAR_KBOARD ("local-key-translation-map", Vlocal_key_translation_map, | ||
| 11528 | doc: /* Keymap of key translations that can override keymaps. | 11540 | doc: /* Keymap of key translations that can override keymaps. |
| 11529 | This keymap works like `function-key-map', but comes after that, | 11541 | This keymap works like `function-key-map', but comes after that, |
| 11530 | and its non-prefix bindings override ordinary bindings. | 11542 | and its non-prefix bindings override ordinary bindings. |
| @@ -11538,11 +11550,10 @@ which binding of this variable is active at any given moment. If you | |||
| 11538 | need set or get the binding on a specific display, use | 11550 | need set or get the binding on a specific display, use |
| 11539 | `terminal-local-value' and `set-terminal-local-value'. */); | 11551 | `terminal-local-value' and `set-terminal-local-value'. */); |
| 11540 | 11552 | ||
| 11541 | DEFVAR_LISP ("global-key-translation-map", &Vglobal_key_translation_map, | 11553 | DEFVAR_LISP ("key-translation-map", &Vkey_translation_map, |
| 11542 | doc: /* The parent keymap of all terminal-local `key-translation-map' instances. | 11554 | doc: /* The parent keymap of all `local-key-translation-map' instances. |
| 11543 | Key translations that are not specific to a display device flavour | 11555 | Key translations that apply to all display devices should go here. */); |
| 11544 | should go here. */); | 11556 | Vkey_translation_map = Fmake_sparse_keymap (Qnil); |
| 11545 | Vglobal_key_translation_map = Fmake_sparse_keymap (Qnil); | ||
| 11546 | 11557 | ||
| 11547 | DEFVAR_LISP ("deferred-action-list", &Vdeferred_action_list, | 11558 | DEFVAR_LISP ("deferred-action-list", &Vdeferred_action_list, |
| 11548 | doc: /* List of deferred actions to be performed at a later time. | 11559 | doc: /* List of deferred actions to be performed at a later time. |
| @@ -11707,8 +11718,8 @@ mark_kboards () | |||
| 11707 | mark_object (kb->Vlast_kbd_macro); | 11718 | mark_object (kb->Vlast_kbd_macro); |
| 11708 | mark_object (kb->Vsystem_key_alist); | 11719 | mark_object (kb->Vsystem_key_alist); |
| 11709 | mark_object (kb->system_key_syms); | 11720 | mark_object (kb->system_key_syms); |
| 11710 | mark_object (kb->Vfunction_key_map); | 11721 | mark_object (kb->Vlocal_function_key_map); |
| 11711 | mark_object (kb->Vkey_translation_map); | 11722 | mark_object (kb->Vlocal_key_translation_map); |
| 11712 | mark_object (kb->Vdefault_minibuffer_frame); | 11723 | mark_object (kb->Vdefault_minibuffer_frame); |
| 11713 | mark_object (kb->echo_string); | 11724 | mark_object (kb->echo_string); |
| 11714 | } | 11725 | } |
diff --git a/src/keyboard.h b/src/keyboard.h index 7710838c6e3..10b64dfe488 100644 --- a/src/keyboard.h +++ b/src/keyboard.h | |||
| @@ -123,10 +123,10 @@ struct kboard | |||
| 123 | /* Keymap mapping ASCII function key sequences onto their | 123 | /* Keymap mapping ASCII function key sequences onto their |
| 124 | preferred forms. Initialized by the terminal-specific lisp | 124 | preferred forms. Initialized by the terminal-specific lisp |
| 125 | files. See the DEFVAR for more documentation. */ | 125 | files. See the DEFVAR for more documentation. */ |
| 126 | Lisp_Object Vfunction_key_map; | 126 | Lisp_Object Vlocal_function_key_map; |
| 127 | 127 | ||
| 128 | /* Keymap of key translations that can override keymaps. */ | 128 | /* Keymap of key translations that can override keymaps. */ |
| 129 | Lisp_Object Vkey_translation_map; | 129 | Lisp_Object Vlocal_key_translation_map; |
| 130 | 130 | ||
| 131 | /* Minibufferless frames on this display use this frame's minibuffer. */ | 131 | /* Minibufferless frames on this display use this frame's minibuffer. */ |
| 132 | Lisp_Object Vdefault_minibuffer_frame; | 132 | Lisp_Object Vdefault_minibuffer_frame; |
| @@ -304,8 +304,11 @@ extern Lisp_Object read_char P_ ((int, int, Lisp_Object *, Lisp_Object, int *)); | |||
| 304 | /* User-supplied string to translate input characters through. */ | 304 | /* User-supplied string to translate input characters through. */ |
| 305 | extern Lisp_Object Vkeyboard_translate_table; | 305 | extern Lisp_Object Vkeyboard_translate_table; |
| 306 | 306 | ||
| 307 | /* Parent keymap of terminal-local function-key-map instances. */ | ||
| 308 | extern Lisp_Object Vfunction_key_map; | ||
| 309 | |||
| 307 | /* Parent keymap of terminal-local key-translation-map instances. */ | 310 | /* Parent keymap of terminal-local key-translation-map instances. */ |
| 308 | extern Lisp_Object Vglobal_key_translation_map; | 311 | extern Lisp_Object Vkey_translation_map; |
| 309 | 312 | ||
| 310 | 313 | ||
| 311 | extern int parse_menu_item P_ ((Lisp_Object, int, int)); | 314 | extern int parse_menu_item P_ ((Lisp_Object, int, int)); |
diff --git a/src/keymap.c b/src/keymap.c index b9247122ccd..17c55cfd2d6 100644 --- a/src/keymap.c +++ b/src/keymap.c | |||
| @@ -2841,8 +2841,8 @@ You type Translation\n\ | |||
| 2841 | insert ("\n", 1); | 2841 | insert ("\n", 1); |
| 2842 | } | 2842 | } |
| 2843 | 2843 | ||
| 2844 | if (!NILP (current_kboard->Vkey_translation_map)) | 2844 | if (!NILP (current_kboard->Vlocal_key_translation_map)) |
| 2845 | describe_map_tree (current_kboard->Vkey_translation_map, 0, Qnil, prefix, | 2845 | describe_map_tree (current_kboard->Vlocal_key_translation_map, 0, Qnil, prefix, |
| 2846 | "Key translations", nomenu, 1, 0, 0); | 2846 | "Key translations", nomenu, 1, 0, 0); |
| 2847 | 2847 | ||
| 2848 | 2848 | ||
| @@ -2931,8 +2931,8 @@ You type Translation\n\ | |||
| 2931 | "\f\nGlobal Bindings", nomenu, 0, 1, 0); | 2931 | "\f\nGlobal Bindings", nomenu, 0, 1, 0); |
| 2932 | 2932 | ||
| 2933 | /* Print the function-key-map translations under this prefix. */ | 2933 | /* Print the function-key-map translations under this prefix. */ |
| 2934 | if (!NILP (current_kboard->Vfunction_key_map)) | 2934 | if (!NILP (current_kboard->Vlocal_function_key_map)) |
| 2935 | describe_map_tree (current_kboard->Vfunction_key_map, 0, Qnil, prefix, | 2935 | describe_map_tree (current_kboard->Vlocal_function_key_map, 0, Qnil, prefix, |
| 2936 | "\f\nFunction key map translations", nomenu, 1, 0, 0); | 2936 | "\f\nFunction key map translations", nomenu, 1, 0, 0); |
| 2937 | 2937 | ||
| 2938 | UNGCPRO; | 2938 | UNGCPRO; |
diff --git a/src/term.c b/src/term.c index 14396a0c1d2..e340edb6c17 100644 --- a/src/term.c +++ b/src/term.c | |||
| @@ -1350,13 +1350,13 @@ term_get_fkeys_1 () | |||
| 1350 | 1350 | ||
| 1351 | /* This can happen if CANNOT_DUMP or with strange options. */ | 1351 | /* This can happen if CANNOT_DUMP or with strange options. */ |
| 1352 | if (!initialized) | 1352 | if (!initialized) |
| 1353 | kboard->Vfunction_key_map = Fmake_sparse_keymap (Qnil); | 1353 | kboard->Vlocal_function_key_map = Fmake_sparse_keymap (Qnil); |
| 1354 | 1354 | ||
| 1355 | for (i = 0; i < (sizeof (keys)/sizeof (keys[0])); i++) | 1355 | for (i = 0; i < (sizeof (keys)/sizeof (keys[0])); i++) |
| 1356 | { | 1356 | { |
| 1357 | char *sequence = tgetstr (keys[i].cap, address); | 1357 | char *sequence = tgetstr (keys[i].cap, address); |
| 1358 | if (sequence) | 1358 | if (sequence) |
| 1359 | Fdefine_key (kboard->Vfunction_key_map, build_string (sequence), | 1359 | Fdefine_key (kboard->Vlocal_function_key_map, build_string (sequence), |
| 1360 | Fmake_vector (make_number (1), | 1360 | Fmake_vector (make_number (1), |
| 1361 | intern (keys[i].name))); | 1361 | intern (keys[i].name))); |
| 1362 | } | 1362 | } |
| @@ -1376,13 +1376,13 @@ term_get_fkeys_1 () | |||
| 1376 | if (k0) | 1376 | if (k0) |
| 1377 | /* Define f0 first, so that f10 takes precedence in case the | 1377 | /* Define f0 first, so that f10 takes precedence in case the |
| 1378 | key sequences happens to be the same. */ | 1378 | key sequences happens to be the same. */ |
| 1379 | Fdefine_key (kboard->Vfunction_key_map, build_string (k0), | 1379 | Fdefine_key (kboard->Vlocal_function_key_map, build_string (k0), |
| 1380 | Fmake_vector (make_number (1), intern ("f0"))); | 1380 | Fmake_vector (make_number (1), intern ("f0"))); |
| 1381 | Fdefine_key (kboard->Vfunction_key_map, build_string (k_semi), | 1381 | Fdefine_key (kboard->Vlocal_function_key_map, build_string (k_semi), |
| 1382 | Fmake_vector (make_number (1), intern ("f10"))); | 1382 | Fmake_vector (make_number (1), intern ("f10"))); |
| 1383 | } | 1383 | } |
| 1384 | else if (k0) | 1384 | else if (k0) |
| 1385 | Fdefine_key (kboard->Vfunction_key_map, build_string (k0), | 1385 | Fdefine_key (kboard->Vlocal_function_key_map, build_string (k0), |
| 1386 | Fmake_vector (make_number (1), intern (k0_name))); | 1386 | Fmake_vector (make_number (1), intern (k0_name))); |
| 1387 | } | 1387 | } |
| 1388 | 1388 | ||
| @@ -1405,7 +1405,7 @@ term_get_fkeys_1 () | |||
| 1405 | if (sequence) | 1405 | if (sequence) |
| 1406 | { | 1406 | { |
| 1407 | sprintf (fkey, "f%d", i); | 1407 | sprintf (fkey, "f%d", i); |
| 1408 | Fdefine_key (kboard->Vfunction_key_map, build_string (sequence), | 1408 | Fdefine_key (kboard->Vlocal_function_key_map, build_string (sequence), |
| 1409 | Fmake_vector (make_number (1), | 1409 | Fmake_vector (make_number (1), |
| 1410 | intern (fkey))); | 1410 | intern (fkey))); |
| 1411 | } | 1411 | } |
| @@ -1422,7 +1422,7 @@ term_get_fkeys_1 () | |||
| 1422 | { \ | 1422 | { \ |
| 1423 | char *sequence = tgetstr (cap2, address); \ | 1423 | char *sequence = tgetstr (cap2, address); \ |
| 1424 | if (sequence) \ | 1424 | if (sequence) \ |
| 1425 | Fdefine_key (kboard->Vfunction_key_map, build_string (sequence), \ | 1425 | Fdefine_key (kboard->Vlocal_function_key_map, build_string (sequence), \ |
| 1426 | Fmake_vector (make_number (1), \ | 1426 | Fmake_vector (make_number (1), \ |
| 1427 | intern (sym))); \ | 1427 | intern (sym))); \ |
| 1428 | } | 1428 | } |