aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib-src/emacsclient.c33
-rw-r--r--lisp/files.el18
-rw-r--r--lisp/frame.el54
-rw-r--r--lisp/international/mule-cmds.el6
-rw-r--r--lisp/ldefs-boot.el991
-rw-r--r--lisp/loadup.el1
-rw-r--r--lisp/server.el116
-rw-r--r--lisp/term/rxvt.el4
-rw-r--r--lisp/term/x-win.el3
-rw-r--r--lisp/term/xterm.el6
10 files changed, 548 insertions, 684 deletions
diff --git a/lib-src/emacsclient.c b/lib-src/emacsclient.c
index 85415eba44a..b6d33c9c2c2 100644
--- a/lib-src/emacsclient.c
+++ b/lib-src/emacsclient.c
@@ -695,26 +695,19 @@ To start the server in Emacs, type \"M-x server-start\".\n",
695 fprintf (out, "-version %s ", VERSION); 695 fprintf (out, "-version %s ", VERSION);
696 696
697 /* Send over our environment. */ 697 /* Send over our environment. */
698 { 698 if (!current_frame)
699 extern char **environ; 699 {
700 int i; 700 extern char **environ;
701 for (i = 0; environ[i]; i++) 701 int i;
702 { 702 for (i = 0; environ[i]; i++)
703 char *name = xstrdup (environ[i]); 703 {
704 char *value = strchr (name, '='); 704 char *name = xstrdup (environ[i]);
705 if (value && strlen (value) > 1) 705 char *value = strchr (name, '=');
706 { 706 fprintf (out, "-env ");
707 *value++ = 0; 707 quote_argument (environ[i], out);
708 fprintf (out, "-env "); 708 fprintf (out, " ");
709 quote_argument (name, out); 709 }
710 fprintf (out, " "); 710 }
711 quote_argument (value, out);
712 fprintf (out, " ");
713 fflush (out);
714 }
715 free (name);
716 }
717 }
718 711
719 retry: 712 retry:
720 if (nowait) 713 if (nowait)
diff --git a/lisp/files.el b/lisp/files.el
index 7228116eecb..7bd01f93841 100644
--- a/lisp/files.el
+++ b/lisp/files.el
@@ -4875,6 +4875,22 @@ With prefix arg, silently save all file-visiting buffers, then kill."
4875 (or (null confirm-kill-emacs) 4875 (or (null confirm-kill-emacs)
4876 (funcall confirm-kill-emacs "Really exit Emacs? ")) 4876 (funcall confirm-kill-emacs "Really exit Emacs? "))
4877 (kill-emacs))) 4877 (kill-emacs)))
4878
4879(defun save-buffers-kill-display (&optional arg)
4880 "Offer to save each buffer, then kill the current connection.
4881If the current frame has no client, kill Emacs itself.
4882
4883With prefix arg, silently save all file-visiting buffers, then kill.
4884
4885If emacsclient was started with a list of filenames to edit, then
4886only these files will be asked to be saved."
4887 (interactive "P")
4888 (let ((proc (frame-parameter (selected-frame) 'client))
4889 (frame (selected-frame)))
4890 (if (null proc)
4891 (save-buffers-kill-emacs)
4892 (server-save-buffers-kill-display proc arg))))
4893
4878 4894
4879;; We use /: as a prefix to "quote" a file name 4895;; We use /: as a prefix to "quote" a file name
4880;; so that magic file name handlers will not apply to it. 4896;; so that magic file name handlers will not apply to it.
@@ -4972,7 +4988,7 @@ With prefix arg, silently save all file-visiting buffers, then kill."
4972(define-key ctl-x-map "i" 'insert-file) 4988(define-key ctl-x-map "i" 'insert-file)
4973(define-key esc-map "~" 'not-modified) 4989(define-key esc-map "~" 'not-modified)
4974(define-key ctl-x-map "\C-d" 'list-directory) 4990(define-key ctl-x-map "\C-d" 'list-directory)
4975(define-key ctl-x-map "\C-c" 'server-save-buffers-kill-display) 4991(define-key ctl-x-map "\C-c" 'save-buffers-kill-display)
4976(define-key ctl-x-map "\C-q" 'toggle-read-only) 4992(define-key ctl-x-map "\C-q" 'toggle-read-only)
4977 4993
4978(define-key ctl-x-4-map "f" 'find-file-other-window) 4994(define-key ctl-x-4-map "f" 'find-file-other-window)
diff --git a/lisp/frame.el b/lisp/frame.el
index fb494429fea..98df0359ddc 100644
--- a/lisp/frame.el
+++ b/lisp/frame.el
@@ -1511,6 +1511,60 @@ selected frame's terminal)."
1511 1511
1512(add-hook 'delete-frame-functions 'terminal-handle-delete-frame) 1512(add-hook 'delete-frame-functions 'terminal-handle-delete-frame)
1513 1513
1514(defun terminal-getenv (variable &optional terminal)
1515 "Get the value of VARIABLE in the client environment of TERMINAL.
1516VARIABLE should be a string. Value is nil if VARIABLE is undefined in
1517the environment. Otherwise, value is a string.
1518
1519If TERMINAL was created by an emacsclient invocation, then the
1520variable is looked up in the environment of the emacsclient
1521process; otherwise the function consults the environment of the
1522Emacs process.
1523
1524TERMINAL can be a terminal id, a frame, or nil (meaning the
1525selected frame's terminal)."
1526 (setq terminal (terminal-id terminal))
1527 (if (not (terminal-parameter-p terminal 'environment))
1528 (getenv variable)
1529 (let ((env (terminal-parameter terminal 'environment))
1530 result entry)
1531 (while (and env (null result))
1532 (setq entry (car env)
1533 env (cdr env))
1534 (if (and (> (length entry) (length variable))
1535 (eq ?= (aref entry (length variable)))
1536 (equal variable (substring entry 0 (length variable))))
1537 (setq result (substring entry (+ (length variable) 1)))))
1538 (if (null result)
1539 (getenv variable)
1540 result))))
1541
1542(defmacro with-terminal-environment (terminal vars &rest body)
1543 "Evaluate BODY with environment variables VARS set to those of TERMINAL.
1544The environment variables are then restored to their previous values.
1545
1546VARS should be a list of strings.
1547
1548TERMINAL can be a terminal id, a frame, or nil (meaning the
1549selected frame's terminal).
1550
1551See also `terminal-getenv'."
1552 (declare (indent 2))
1553 (let ((oldvalues (make-symbol "oldvalues"))
1554 (var (make-symbol "var"))
1555 (value (make-symbol "value"))
1556 (pair (make-symbol "pair")))
1557 `(let (,oldvalues)
1558 (dolist (,var ,vars)
1559 (let ((,value (terminal-getenv ,var ,terminal)))
1560 (setq ,oldvalues (cons (cons ,var (getenv ,var)) ,oldvalues))
1561 (setenv ,var ,value)))
1562 (unwind-protect
1563 (progn ,@body)
1564 (dolist (,pair ,oldvalues)
1565 (setenv (car ,pair) (cdr ,pair)))))))
1566
1567
1514(provide 'frame) 1568(provide 'frame)
1515 1569
1516;; arch-tag: 82979c70-b8f2-4306-b2ad-ddbd6b328b56 1570;; arch-tag: 82979c70-b8f2-4306-b2ad-ddbd6b328b56
diff --git a/lisp/international/mule-cmds.el b/lisp/international/mule-cmds.el
index 232dc721aec..0de1777f6cb 100644
--- a/lisp/international/mule-cmds.el
+++ b/lisp/international/mule-cmds.el
@@ -2449,7 +2449,7 @@ See also `locale-charset-language-names', `locale-language-names',
2449 (let ((vars '("LC_ALL" "LC_CTYPE" "LANG"))) 2449 (let ((vars '("LC_ALL" "LC_CTYPE" "LANG")))
2450 (while (and vars 2450 (while (and vars
2451 (= 0 (length locale))) ; nil or empty string 2451 (= 0 (length locale))) ; nil or empty string
2452 (setq locale (server-getenv (pop vars)))))) 2452 (setq locale (terminal-getenv (pop vars))))))
2453 2453
2454 (unless locale 2454 (unless locale
2455 ;; The two tests are kept separate so the byte-compiler sees 2455 ;; The two tests are kept separate so the byte-compiler sees
@@ -2562,7 +2562,7 @@ See also `locale-charset-language-names', `locale-language-names',
2562 ;; Mac OS X's Terminal.app by default uses utf-8 regardless of 2562 ;; Mac OS X's Terminal.app by default uses utf-8 regardless of
2563 ;; the locale. 2563 ;; the locale.
2564 (when (and (null window-system) 2564 (when (and (null window-system)
2565 (equal (server-getenv "TERM_PROGRAM") "Apple_Terminal")) 2565 (equal (terminal-getenv "TERM_PROGRAM") "Apple_Terminal"))
2566 (set-terminal-coding-system 'utf-8) 2566 (set-terminal-coding-system 'utf-8)
2567 (set-keyboard-coding-system 'utf-8))) 2567 (set-keyboard-coding-system 'utf-8)))
2568 2568
@@ -2580,7 +2580,7 @@ See also `locale-charset-language-names', `locale-language-names',
2580 (setq ps-paper-type 'a4))) 2580 (setq ps-paper-type 'a4)))
2581 (let ((vars '("LC_ALL" "LC_PAPER" "LANG"))) 2581 (let ((vars '("LC_ALL" "LC_PAPER" "LANG")))
2582 (while (and vars (= 0 (length locale))) 2582 (while (and vars (= 0 (length locale)))
2583 (setq locale (server-getenv (pop vars))))) 2583 (setq locale (terminal-getenv (pop vars)))))
2584 (when locale 2584 (when locale
2585 ;; As of glibc 2.2.5, these are the only US Letter locales, 2585 ;; As of glibc 2.2.5, these are the only US Letter locales,
2586 ;; and the rest are A4. 2586 ;; and the rest are A4.
diff --git a/lisp/ldefs-boot.el b/lisp/ldefs-boot.el
index d343c5ec6fe..5db870e013c 100644
--- a/lisp/ldefs-boot.el
+++ b/lisp/ldefs-boot.el
@@ -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;;;;;; (17226 24577)) 67;;;;;; (17277 60154))
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" "\
@@ -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" (17254 63790)) 154;;;;;; "add-log.el" (17277 60153))
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" (17226 291;;;;;; ad-redefinition-action) "advice" "emacs-lisp/advice.el" (17257
292;;;;;; 24574)) 292;;;;;; 22482))
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) "\
@@ -478,7 +478,7 @@ A replacement function for `newline-and-indent', aligning as it goes.
478;;;*** 478;;;***
479 479
480;;;### (autoloads (outlineify-sticky allout-mode) "allout" "allout.el" 480;;;### (autoloads (outlineify-sticky allout-mode) "allout" "allout.el"
481;;;;;; (17254 63790)) 481;;;;;; (17257 22482))
482;;; Generated autoloads from allout.el 482;;; Generated autoloads from allout.el
483 483
484(autoload (quote allout-mode) "allout" "\ 484(autoload (quote allout-mode) "allout" "\
@@ -694,7 +694,7 @@ setup for auto-startup.
694;;;*** 694;;;***
695 695
696;;;### (autoloads (ange-ftp-hook-function ange-ftp-reread-dir) "ange-ftp" 696;;;### (autoloads (ange-ftp-hook-function ange-ftp-reread-dir) "ange-ftp"
697;;;;;; "net/ange-ftp.el" (17254 63791)) 697;;;;;; "net/ange-ftp.el" (17257 22483))
698;;; Generated autoloads from net/ange-ftp.el 698;;; Generated autoloads from net/ange-ftp.el
699 699
700(defalias (quote ange-ftp-re-read-dir) (quote ange-ftp-reread-dir)) 700(defalias (quote ange-ftp-re-read-dir) (quote ange-ftp-reread-dir))
@@ -896,28 +896,51 @@ ARG is positive, otherwise off.
896;;;*** 896;;;***
897 897
898;;;### (autoloads (apropos-documentation apropos-value apropos apropos-documentation-property 898;;;### (autoloads (apropos-documentation apropos-value apropos apropos-documentation-property
899;;;;;; apropos-command apropos-variable) "apropos" "apropos.el" 899;;;;;; apropos-command apropos-variable apropos-read-pattern) "apropos"
900;;;;;; (17226 24570)) 900;;;;;; "apropos.el" (17277 59649))
901;;; Generated autoloads from apropos.el 901;;; Generated autoloads from apropos.el
902 902
903(autoload (quote apropos-read-pattern) "apropos" "\
904Read an apropos pattern, either a word list or a regexp.
905Returns the user pattern, either a list of words which are matched
906literally, or a string which is used as a regexp to search for.
907
908SUBJECT is a string that is included in the prompt to identify what
909kind of objects to search.
910
911\(fn SUBJECT)" nil nil)
912
903(autoload (quote apropos-variable) "apropos" "\ 913(autoload (quote apropos-variable) "apropos" "\
904Show user variables that match REGEXP. 914Show user variables that match PATTERN.
905With optional prefix DO-ALL or if `apropos-do-all' is non-nil, also show 915PATTERN can be a word, a list of words (separated by spaces),
916or a regexp (using some regexp special characters). If it is a word,
917search for matches for that word as a substring. If it is a list of words,
918search for matches for any two (or more) of those words.
919
920With \\[universal-argument] prefix, or if `apropos-do-all' is non-nil, also show
906normal variables. 921normal variables.
907 922
908\(fn REGEXP &optional DO-ALL)" t nil) 923\(fn PATTERN &optional DO-ALL)" t nil)
909 924
910(defalias (quote command-apropos) (quote apropos-command)) 925(defalias (quote command-apropos) (quote apropos-command))
911 926
912(autoload (quote apropos-command) "apropos" "\ 927(autoload (quote apropos-command) "apropos" "\
913Show commands (interactively callable functions) that match APROPOS-REGEXP. 928Show commands (interactively callable functions) that match PATTERN.
914With optional prefix DO-ALL, or if `apropos-do-all' is non-nil, also show 929PATTERN can be a word, a list of words (separated by spaces),
930or a regexp (using some regexp special characters). If it is a word,
931search for matches for that word as a substring. If it is a list of words,
932search for matches for any two (or more) of those words.
933
934With \\[universal-argument] prefix, or if `apropos-do-all' is non-nil, also show
915noninteractive functions. 935noninteractive functions.
916 936
917If VAR-PREDICATE is non-nil, show only variables, and only those that 937If VAR-PREDICATE is non-nil, show only variables, and only those that
918satisfy the predicate VAR-PREDICATE. 938satisfy the predicate VAR-PREDICATE.
919 939
920\(fn APROPOS-REGEXP &optional DO-ALL VAR-PREDICATE)" t nil) 940When called from a Lisp program, a string PATTERN is used as a regexp,
941while a list of strings is used as a word list.
942
943\(fn PATTERN &optional DO-ALL VAR-PREDICATE)" t nil)
921 944
922(autoload (quote apropos-documentation-property) "apropos" "\ 945(autoload (quote apropos-documentation-property) "apropos" "\
923Like (documentation-property SYMBOL PROPERTY RAW) but handle errors. 946Like (documentation-property SYMBOL PROPERTY RAW) but handle errors.
@@ -925,29 +948,44 @@ Like (documentation-property SYMBOL PROPERTY RAW) but handle errors.
925\(fn SYMBOL PROPERTY RAW)" nil nil) 948\(fn SYMBOL PROPERTY RAW)" nil nil)
926 949
927(autoload (quote apropos) "apropos" "\ 950(autoload (quote apropos) "apropos" "\
928Show all bound symbols whose names match APROPOS-REGEXP. 951Show all bound symbols whose names match PATTERN.
929With optional prefix DO-ALL or if `apropos-do-all' is non-nil, also 952PATTERN can be a word, a list of words (separated by spaces),
953or a regexp (using some regexp special characters). If it is a word,
954search for matches for that word as a substring. If it is a list of words,
955search for matches for any two (or more) of those words.
956
957With \\[universal-argument] prefix, or if `apropos-do-all' is non-nil, also
930show unbound symbols and key bindings, which is a little more 958show unbound symbols and key bindings, which is a little more
931time-consuming. Returns list of symbols and documentation found. 959time-consuming. Returns list of symbols and documentation found.
932 960
933\(fn APROPOS-REGEXP &optional DO-ALL)" t nil) 961\(fn PATTERN &optional DO-ALL)" t nil)
934 962
935(autoload (quote apropos-value) "apropos" "\ 963(autoload (quote apropos-value) "apropos" "\
936Show all symbols whose value's printed image matches APROPOS-REGEXP. 964Show all symbols whose value's printed image matches PATTERN.
937With optional prefix DO-ALL or if `apropos-do-all' is non-nil, also looks 965PATTERN can be a word, a list of words (separated by spaces),
966or a regexp (using some regexp special characters). If it is a word,
967search for matches for that word as a substring. If it is a list of words,
968search for matches for any two (or more) of those words.
969
970With \\[universal-argument] prefix, or if `apropos-do-all' is non-nil, also looks
938at the function and at the names and values of properties. 971at the function and at the names and values of properties.
939Returns list of symbols and values found. 972Returns list of symbols and values found.
940 973
941\(fn APROPOS-REGEXP &optional DO-ALL)" t nil) 974\(fn PATTERN &optional DO-ALL)" t nil)
942 975
943(autoload (quote apropos-documentation) "apropos" "\ 976(autoload (quote apropos-documentation) "apropos" "\
944Show symbols whose documentation contain matches for APROPOS-REGEXP. 977Show symbols whose documentation contain matches for PATTERN.
945With optional prefix DO-ALL or if `apropos-do-all' is non-nil, also use 978PATTERN can be a word, a list of words (separated by spaces),
979or a regexp (using some regexp special characters). If it is a word,
980search for matches for that word as a substring. If it is a list of words,
981search for matches for any two (or more) of those words.
982
983With \\[universal-argument] prefix, or if `apropos-do-all' is non-nil, also use
946documentation that is not stored in the documentation file and show key 984documentation that is not stored in the documentation file and show key
947bindings. 985bindings.
948Returns list of symbols and documentation found. 986Returns list of symbols and documentation found.
949 987
950\(fn APROPOS-REGEXP &optional DO-ALL)" t nil) 988\(fn PATTERN &optional DO-ALL)" t nil)
951 989
952;;;*** 990;;;***
953 991
@@ -1249,8 +1287,8 @@ Keymap summary
1249 1287
1250;;;*** 1288;;;***
1251 1289
1252;;;### (autoloads (asm-mode) "asm-mode" "progmodes/asm-mode.el" (17187 1290;;;### (autoloads (asm-mode) "asm-mode" "progmodes/asm-mode.el" (17277
1253;;;;;; 59902)) 1291;;;;;; 60154))
1254;;; Generated autoloads from progmodes/asm-mode.el 1292;;; Generated autoloads from progmodes/asm-mode.el
1255 1293
1256(autoload (quote asm-mode) "asm-mode" "\ 1294(autoload (quote asm-mode) "asm-mode" "\
@@ -1402,7 +1440,7 @@ insert a template for the file depending on the mode of the buffer.
1402 1440
1403;;;### (autoloads (batch-update-autoloads update-directory-autoloads 1441;;;### (autoloads (batch-update-autoloads update-directory-autoloads
1404;;;;;; update-file-autoloads) "autoload" "emacs-lisp/autoload.el" 1442;;;;;; update-file-autoloads) "autoload" "emacs-lisp/autoload.el"
1405;;;;;; (17229 28053)) 1443;;;;;; (17277 59649))
1406;;; Generated autoloads from emacs-lisp/autoload.el 1444;;; Generated autoloads from emacs-lisp/autoload.el
1407 1445
1408(autoload (quote update-file-autoloads) "autoload" "\ 1446(autoload (quote update-file-autoloads) "autoload" "\
@@ -1724,8 +1762,8 @@ Binhex decode region between START and END.
1724 1762
1725;;;*** 1763;;;***
1726 1764
1727;;;### (autoloads (blackbox) "blackbox" "play/blackbox.el" (17187 1765;;;### (autoloads (blackbox) "blackbox" "play/blackbox.el" (17257
1728;;;;;; 59902)) 1766;;;;;; 22483))
1729;;; Generated autoloads from play/blackbox.el 1767;;; Generated autoloads from play/blackbox.el
1730 1768
1731(autoload (quote blackbox) "blackbox" "\ 1769(autoload (quote blackbox) "blackbox" "\
@@ -1847,7 +1885,7 @@ a reflection.
1847;;;### (autoloads (bookmark-bmenu-list bookmark-load bookmark-save 1885;;;### (autoloads (bookmark-bmenu-list bookmark-load bookmark-save
1848;;;;;; bookmark-write bookmark-delete bookmark-insert bookmark-rename 1886;;;;;; bookmark-write bookmark-delete bookmark-insert bookmark-rename
1849;;;;;; bookmark-insert-location bookmark-relocate bookmark-jump 1887;;;;;; bookmark-insert-location bookmark-relocate bookmark-jump
1850;;;;;; bookmark-set) "bookmark" "bookmark.el" (17244 4913)) 1888;;;;;; bookmark-set) "bookmark" "bookmark.el" (17277 59649))
1851;;; Generated autoloads from bookmark.el 1889;;; Generated autoloads from bookmark.el
1852 (define-key ctl-x-map "rb" 'bookmark-jump) 1890 (define-key ctl-x-map "rb" 'bookmark-jump)
1853 (define-key ctl-x-map "rm" 'bookmark-set) 1891 (define-key ctl-x-map "rm" 'bookmark-set)
@@ -2037,7 +2075,7 @@ deletion, or > if it is flagged for displaying.
2037;;;;;; browse-url browse-url-of-region browse-url-of-dired-file 2075;;;;;; browse-url browse-url-of-region browse-url-of-dired-file
2038;;;;;; browse-url-of-buffer browse-url-of-file browse-url-url-at-point 2076;;;;;; browse-url-of-buffer browse-url-of-file browse-url-url-at-point
2039;;;;;; browse-url-galeon-program browse-url-firefox-program browse-url-browser-function) 2077;;;;;; browse-url-galeon-program browse-url-firefox-program browse-url-browser-function)
2040;;;;;; "browse-url" "net/browse-url.el" (17187 59902)) 2078;;;;;; "browse-url" "net/browse-url.el" (17257 22483))
2041;;; Generated autoloads from net/browse-url.el 2079;;; Generated autoloads from net/browse-url.el
2042 2080
2043(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))) "\ 2081(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))) "\
@@ -2515,7 +2553,7 @@ Also see `make-text-button'.
2515;;;;;; batch-byte-compile-if-not-done display-call-tree byte-compile 2553;;;;;; batch-byte-compile-if-not-done display-call-tree byte-compile
2516;;;;;; compile-defun byte-compile-file byte-recompile-directory 2554;;;;;; compile-defun byte-compile-file byte-recompile-directory
2517;;;;;; byte-force-recompile) "bytecomp" "emacs-lisp/bytecomp.el" 2555;;;;;; byte-force-recompile) "bytecomp" "emacs-lisp/bytecomp.el"
2518;;;;;; (17254 63790)) 2556;;;;;; (17257 22482))
2519;;; Generated autoloads from emacs-lisp/bytecomp.el 2557;;; Generated autoloads from emacs-lisp/bytecomp.el
2520 2558
2521(autoload (quote byte-force-recompile) "bytecomp" "\ 2559(autoload (quote byte-force-recompile) "bytecomp" "\
@@ -2632,7 +2670,7 @@ from the cursor position.
2632;;;### (autoloads (defmath calc-embedded-activate calc-embedded calc-grab-rectangle 2670;;;### (autoloads (defmath calc-embedded-activate calc-embedded calc-grab-rectangle
2633;;;;;; calc-grab-region full-calc-keypad calc-keypad calc-eval quick-calc 2671;;;;;; calc-grab-region full-calc-keypad calc-keypad calc-eval quick-calc
2634;;;;;; full-calc calc calc-dispatch calc-settings-file) "calc" "calc/calc.el" 2672;;;;;; full-calc calc calc-dispatch calc-settings-file) "calc" "calc/calc.el"
2635;;;;;; (17229 28052)) 2673;;;;;; (17277 59649))
2636;;; Generated autoloads from calc/calc.el 2674;;; Generated autoloads from calc/calc.el
2637 2675
2638(defvar calc-settings-file (convert-standard-filename "~/.calc.el") "\ 2676(defvar calc-settings-file (convert-standard-filename "~/.calc.el") "\
@@ -4269,7 +4307,7 @@ read/written by MS-DOS software, or for display on the MS-DOS terminal.
4269;;;### (autoloads (comint-redirect-results-list-from-process comint-redirect-results-list 4307;;;### (autoloads (comint-redirect-results-list-from-process comint-redirect-results-list
4270;;;;;; comint-redirect-send-command-to-process comint-redirect-send-command 4308;;;;;; comint-redirect-send-command-to-process comint-redirect-send-command
4271;;;;;; comint-run make-comint make-comint-in-buffer) "comint" "comint.el" 4309;;;;;; comint-run make-comint make-comint-in-buffer) "comint" "comint.el"
4272;;;;;; (17226 24571)) 4310;;;;;; (17277 60153))
4273;;; Generated autoloads from comint.el 4311;;; Generated autoloads from comint.el
4274 4312
4275(defvar comint-output-filter-functions (quote (comint-postoutput-scroll-to-bottom comint-watch-for-password-prompt)) "\ 4313(defvar comint-output-filter-functions (quote (comint-postoutput-scroll-to-bottom comint-watch-for-password-prompt)) "\
@@ -4397,7 +4435,7 @@ on third call it again advances points to the next difference and so on.
4397;;;;;; compilation-shell-minor-mode compilation-mode compilation-start 4435;;;;;; compilation-shell-minor-mode compilation-mode compilation-start
4398;;;;;; compile compilation-disable-input compile-command compilation-search-path 4436;;;;;; compile compilation-disable-input compile-command compilation-search-path
4399;;;;;; compilation-ask-about-save compilation-window-height compilation-mode-hook) 4437;;;;;; compilation-ask-about-save compilation-window-height compilation-mode-hook)
4400;;;;;; "compile" "progmodes/compile.el" (17238 21257)) 4438;;;;;; "compile" "progmodes/compile.el" (17263 27852))
4401;;; Generated autoloads from progmodes/compile.el 4439;;; Generated autoloads from progmodes/compile.el
4402 4440
4403(defvar compilation-mode-hook nil "\ 4441(defvar compilation-mode-hook nil "\
@@ -4829,7 +4867,7 @@ Optional 3rd arg WITH-COMPOSITION-RULE is ignored.
4829 4867
4830;;;### (autoloads (conf-xdefaults-mode conf-ppd-mode conf-colon-mode 4868;;;### (autoloads (conf-xdefaults-mode conf-ppd-mode conf-colon-mode
4831;;;;;; conf-space-mode conf-javaprop-mode conf-windows-mode conf-unix-mode 4869;;;;;; conf-space-mode conf-javaprop-mode conf-windows-mode conf-unix-mode
4832;;;;;; conf-mode) "conf-mode" "textmodes/conf-mode.el" (17238 21257)) 4870;;;;;; conf-mode) "conf-mode" "textmodes/conf-mode.el" (17263 27852))
4833;;; Generated autoloads from textmodes/conf-mode.el 4871;;; Generated autoloads from textmodes/conf-mode.el
4834 4872
4835(autoload (quote conf-mode) "conf-mode" "\ 4873(autoload (quote conf-mode) "conf-mode" "\
@@ -4863,7 +4901,7 @@ See also `conf-space-mode', `conf-colon-mode', `conf-javaprop-mode',
4863 4901
4864\\{conf-mode-map} 4902\\{conf-mode-map}
4865 4903
4866\(fn &optional COMMENT SYNTAX-TABLE NAME)" t nil) 4904\(fn)" t nil)
4867 4905
4868(autoload (quote conf-unix-mode) "conf-mode" "\ 4906(autoload (quote conf-unix-mode) "conf-mode" "\
4869Conf Mode starter for Unix style Conf files. 4907Conf Mode starter for Unix style Conf files.
@@ -4921,8 +4959,7 @@ Conf Mode starter for space separated conf files.
4921recognized according to `conf-space-keywords'. Interactively 4959recognized according to `conf-space-keywords'. Interactively
4922with a prefix ARG of `0' no keywords will be recognized. With 4960with a prefix ARG of `0' no keywords will be recognized. With
4923any other prefix arg you will be prompted for a regexp to match 4961any other prefix arg you will be prompted for a regexp to match
4924the keywords. Programmatically you can pass such a regexp as 4962the keywords.
4925KEYWORDS, or any non-nil non-string for no keywords.
4926 4963
4927For details see `conf-mode'. Example: 4964For details see `conf-mode'. Example:
4928 4965
@@ -4938,7 +4975,7 @@ class desktop
4938add /dev/audio desktop 4975add /dev/audio desktop
4939add /dev/mixer desktop 4976add /dev/mixer desktop
4940 4977
4941\(fn &optional KEYWORDS)" t nil) 4978\(fn)" t nil)
4942 4979
4943(autoload (quote conf-colon-mode) "conf-mode" "\ 4980(autoload (quote conf-colon-mode) "conf-mode" "\
4944Conf Mode starter for Colon files. 4981Conf Mode starter for Colon files.
@@ -4950,7 +4987,7 @@ For details see `conf-mode'. Example:
4950<Multi_key> <exclam> <exclam> : \"\\241\" exclamdown 4987<Multi_key> <exclam> <exclam> : \"\\241\" exclamdown
4951<Multi_key> <c> <slash> : \"\\242\" cent 4988<Multi_key> <c> <slash> : \"\\242\" cent
4952 4989
4953\(fn &optional COMMENT SYNTAX-TABLE NAME)" t nil) 4990\(fn)" t nil)
4954 4991
4955(autoload (quote conf-ppd-mode) "conf-mode" "\ 4992(autoload (quote conf-ppd-mode) "conf-mode" "\
4956Conf Mode starter for Adobe/CUPS PPD files. 4993Conf Mode starter for Adobe/CUPS PPD files.
@@ -5039,7 +5076,7 @@ Insert a copyright by $ORGANIZATION notice at cursor.
5039;;;*** 5076;;;***
5040 5077
5041;;;### (autoloads (cperl-mode) "cperl-mode" "progmodes/cperl-mode.el" 5078;;;### (autoloads (cperl-mode) "cperl-mode" "progmodes/cperl-mode.el"
5042;;;;;; (17187 59902)) 5079;;;;;; (17277 60154))
5043;;; Generated autoloads from progmodes/cperl-mode.el 5080;;; Generated autoloads from progmodes/cperl-mode.el
5044 5081
5045(autoload (quote cperl-mode) "cperl-mode" "\ 5082(autoload (quote cperl-mode) "cperl-mode" "\
@@ -5212,7 +5249,7 @@ or as help on variables `cperl-tips', `cperl-problems',
5212;;;*** 5249;;;***
5213 5250
5214;;;### (autoloads (cpp-parse-edit cpp-highlight-buffer) "cpp" "progmodes/cpp.el" 5251;;;### (autoloads (cpp-parse-edit cpp-highlight-buffer) "cpp" "progmodes/cpp.el"
5215;;;;;; (17187 59902)) 5252;;;;;; (17277 60154))
5216;;; Generated autoloads from progmodes/cpp.el 5253;;; Generated autoloads from progmodes/cpp.el
5217 5254
5218(autoload (quote cpp-highlight-buffer) "cpp" "\ 5255(autoload (quote cpp-highlight-buffer) "cpp" "\
@@ -5353,7 +5390,7 @@ Enable CUA selection mode without the C-z/C-x/C-c/C-v bindings.
5353;;;;;; customize-face customize-changed-options customize-option-other-window 5390;;;;;; customize-face customize-changed-options customize-option-other-window
5354;;;;;; customize-option customize-group-other-window customize-group 5391;;;;;; customize-option customize-group-other-window customize-group
5355;;;;;; customize-mode customize customize-save-variable customize-set-variable 5392;;;;;; customize-mode customize customize-save-variable customize-set-variable
5356;;;;;; customize-set-value) "cus-edit" "cus-edit.el" (17254 63790)) 5393;;;;;; customize-set-value) "cus-edit" "cus-edit.el" (17277 60153))
5357;;; Generated autoloads from cus-edit.el 5394;;; Generated autoloads from cus-edit.el
5358 (add-hook 'same-window-regexps "\\`\\*Customiz.*\\*\\'") 5395 (add-hook 'same-window-regexps "\\`\\*Customiz.*\\*\\'")
5359 5396
@@ -5820,8 +5857,8 @@ See also `dabbrev-abbrev-char-regexp' and \\[dabbrev-completion].
5820 5857
5821;;;*** 5858;;;***
5822 5859
5823;;;### (autoloads (dcl-mode) "dcl-mode" "progmodes/dcl-mode.el" (17187 5860;;;### (autoloads (dcl-mode) "dcl-mode" "progmodes/dcl-mode.el" (17277
5824;;;;;; 59902)) 5861;;;;;; 60154))
5825;;; Generated autoloads from progmodes/dcl-mode.el 5862;;; Generated autoloads from progmodes/dcl-mode.el
5826 5863
5827(autoload (quote dcl-mode) "dcl-mode" "\ 5864(autoload (quote dcl-mode) "dcl-mode" "\
@@ -5948,7 +5985,7 @@ There is some minimal font-lock support (see vars
5948;;;*** 5985;;;***
5949 5986
5950;;;### (autoloads (cancel-debug-on-entry debug-on-entry debug) "debug" 5987;;;### (autoloads (cancel-debug-on-entry debug-on-entry debug) "debug"
5951;;;;;; "emacs-lisp/debug.el" (17254 63790)) 5988;;;;;; "emacs-lisp/debug.el" (17257 22482))
5952;;; Generated autoloads from emacs-lisp/debug.el 5989;;; Generated autoloads from emacs-lisp/debug.el
5953 5990
5954(setq debugger (quote debug)) 5991(setq debugger (quote debug))
@@ -6128,7 +6165,7 @@ any selection.
6128;;;*** 6165;;;***
6129 6166
6130;;;### (autoloads (derived-mode-init-mode-variables define-derived-mode) 6167;;;### (autoloads (derived-mode-init-mode-variables define-derived-mode)
6131;;;;;; "derived" "emacs-lisp/derived.el" (17187 59901)) 6168;;;;;; "derived" "emacs-lisp/derived.el" (17277 59649))
6132;;; Generated autoloads from emacs-lisp/derived.el 6169;;; Generated autoloads from emacs-lisp/derived.el
6133 6170
6134(autoload (quote define-derived-mode) "derived" "\ 6171(autoload (quote define-derived-mode) "derived" "\
@@ -6450,7 +6487,7 @@ Not documented
6450;;;*** 6487;;;***
6451 6488
6452;;;### (autoloads (diary-mode diary-mail-entries diary) "diary-lib" 6489;;;### (autoloads (diary-mode diary-mail-entries diary) "diary-lib"
6453;;;;;; "calendar/diary-lib.el" (17229 28052)) 6490;;;;;; "calendar/diary-lib.el" (17277 59649))
6454;;; Generated autoloads from calendar/diary-lib.el 6491;;; Generated autoloads from calendar/diary-lib.el
6455 6492
6456(autoload (quote diary) "diary-lib" "\ 6493(autoload (quote diary) "diary-lib" "\
@@ -6559,7 +6596,7 @@ Minor mode for viewing/editing context diffs.
6559;;;;;; dired dired-copy-preserve-time dired-dwim-target dired-keep-marker-symlink 6596;;;;;; dired dired-copy-preserve-time dired-dwim-target dired-keep-marker-symlink
6560;;;;;; dired-keep-marker-hardlink dired-keep-marker-copy dired-keep-marker-rename 6597;;;;;; dired-keep-marker-hardlink dired-keep-marker-copy dired-keep-marker-rename
6561;;;;;; dired-trivial-filenames dired-ls-F-marks-symlinks dired-listing-switches) 6598;;;;;; dired-trivial-filenames dired-ls-F-marks-symlinks dired-listing-switches)
6562;;;;;; "dired" "dired.el" (17254 63790)) 6599;;;;;; "dired" "dired.el" (17257 22482))
6563;;; Generated autoloads from dired.el 6600;;; Generated autoloads from dired.el
6564 6601
6565(defvar dired-listing-switches "-al" "\ 6602(defvar dired-listing-switches "-al" "\
@@ -7172,7 +7209,7 @@ true then the type of the file linked to by FILE is printed instead.
7172 7209
7173;;;*** 7210;;;***
7174 7211
7175;;;### (autoloads (dired-jump) "dired-x" "dired-x.el" (17254 63790)) 7212;;;### (autoloads (dired-jump) "dired-x" "dired-x.el" (17277 59649))
7176;;; Generated autoloads from dired-x.el 7213;;; Generated autoloads from dired-x.el
7177 7214
7178(autoload (quote dired-jump) "dired-x" "\ 7215(autoload (quote dired-jump) "dired-x" "\
@@ -7224,7 +7261,7 @@ redefine OBJECT if it is a symbol.
7224;;;;;; standard-display-graphic standard-display-g1 standard-display-ascii 7261;;;;;; standard-display-graphic standard-display-g1 standard-display-ascii
7225;;;;;; standard-display-default standard-display-8bit describe-current-display-table 7262;;;;;; standard-display-default standard-display-8bit describe-current-display-table
7226;;;;;; describe-display-table set-display-table-slot display-table-slot 7263;;;;;; describe-display-table set-display-table-slot display-table-slot
7227;;;;;; make-display-table) "disp-table" "disp-table.el" (17244 4913)) 7264;;;;;; make-display-table) "disp-table" "disp-table.el" (17277 59649))
7228;;; Generated autoloads from disp-table.el 7265;;; Generated autoloads from disp-table.el
7229 7266
7230(autoload (quote make-display-table) "disp-table" "\ 7267(autoload (quote make-display-table) "disp-table" "\
@@ -7385,7 +7422,7 @@ Locate SOA record and increment the serial field.
7385 7422
7386;;;*** 7423;;;***
7387 7424
7388;;;### (autoloads (doctor) "doctor" "play/doctor.el" (17254 63791)) 7425;;;### (autoloads (doctor) "doctor" "play/doctor.el" (17257 22483))
7389;;; Generated autoloads from play/doctor.el 7426;;; Generated autoloads from play/doctor.el
7390 7427
7391(autoload (quote doctor) "doctor" "\ 7428(autoload (quote doctor) "doctor" "\
@@ -7440,7 +7477,7 @@ Play sounds in message buffers.
7440 7477
7441;;;### (autoloads (easy-mmode-defsyntax easy-mmode-defmap easy-mmode-define-keymap 7478;;;### (autoloads (easy-mmode-defsyntax easy-mmode-defmap easy-mmode-define-keymap
7442;;;;;; define-global-minor-mode define-minor-mode) "easy-mmode" 7479;;;;;; define-global-minor-mode define-minor-mode) "easy-mmode"
7443;;;;;; "emacs-lisp/easy-mmode.el" (17187 59901)) 7480;;;;;; "emacs-lisp/easy-mmode.el" (17263 27852))
7444;;; Generated autoloads from emacs-lisp/easy-mmode.el 7481;;; Generated autoloads from emacs-lisp/easy-mmode.el
7445 7482
7446(defalias (quote easy-mmode-define-minor-mode) (quote define-minor-mode)) 7483(defalias (quote easy-mmode-define-minor-mode) (quote define-minor-mode))
@@ -7491,8 +7528,14 @@ For example, you could write
7491Make GLOBAL-MODE out of the buffer-local minor MODE. 7528Make GLOBAL-MODE out of the buffer-local minor MODE.
7492TURN-ON is a function that will be called with no args in every buffer 7529TURN-ON is a function that will be called with no args in every buffer
7493 and that should try to turn MODE on if applicable for that buffer. 7530 and that should try to turn MODE on if applicable for that buffer.
7494KEYS is a list of CL-style keyword arguments: 7531KEYS is a list of CL-style keyword arguments. As the minor mode
7495:group to specify the custom group. 7532 defined by this function is always global, any :global keyword is
7533 ignored. Other keywords have the same meaning as in `define-minor-mode',
7534 which see. In particular, :group specifies the custom group.
7535 The most useful keywords are those that are passed on to the
7536 `defcustom'. It normally makes no sense to pass the :lighter
7537 or :keymap keywords to `define-global-minor-mode', since these
7538 are usually passed to the buffer-local version of the minor mode.
7496 7539
7497If MODE's set-up depends on the major mode in effect when it was 7540If MODE's set-up depends on the major mode in effect when it was
7498enabled, then disabling and reenabling MODE should make MODE work 7541enabled, then disabling and reenabling MODE should make MODE work
@@ -7526,8 +7569,8 @@ CSS contains a list of syntax specifications of the form (CHAR . SYNTAX).
7526;;;*** 7569;;;***
7527 7570
7528;;;### (autoloads (easy-menu-change easy-menu-create-menu easy-menu-do-define 7571;;;### (autoloads (easy-menu-change easy-menu-create-menu easy-menu-do-define
7529;;;;;; easy-menu-define) "easymenu" "emacs-lisp/easymenu.el" (17187 7572;;;;;; easy-menu-define) "easymenu" "emacs-lisp/easymenu.el" (17263
7530;;;;;; 59901)) 7573;;;;;; 27852))
7531;;; Generated autoloads from emacs-lisp/easymenu.el 7574;;; Generated autoloads from emacs-lisp/easymenu.el
7532 7575
7533(put (quote easy-menu-define) (quote lisp-indent-function) (quote defun)) 7576(put (quote easy-menu-define) (quote lisp-indent-function) (quote defun))
@@ -8457,7 +8500,7 @@ Display Ediff's registry.
8457;;;*** 8500;;;***
8458 8501
8459;;;### (autoloads (ediff-toggle-use-toolbar ediff-toggle-multiframe) 8502;;;### (autoloads (ediff-toggle-use-toolbar ediff-toggle-multiframe)
8460;;;;;; "ediff-util" "ediff-util.el" (17229 28052)) 8503;;;;;; "ediff-util" "ediff-util.el" (17277 59649))
8461;;; Generated autoloads from ediff-util.el 8504;;; Generated autoloads from ediff-util.el
8462 8505
8463(autoload (quote ediff-toggle-multiframe) "ediff-util" "\ 8506(autoload (quote ediff-toggle-multiframe) "ediff-util" "\
@@ -9392,7 +9435,7 @@ Transcribe Ethiopic characters in ASCII depending on the file extension.
9392 9435
9393;;;### (autoloads (eudc-load-eudc eudc-query-form eudc-expand-inline 9436;;;### (autoloads (eudc-load-eudc eudc-query-form eudc-expand-inline
9394;;;;;; eudc-get-phone eudc-get-email eudc-set-server) "eudc" "net/eudc.el" 9437;;;;;; eudc-get-phone eudc-get-email eudc-set-server) "eudc" "net/eudc.el"
9395;;;;;; (17187 59902)) 9438;;;;;; (17263 27852))
9396;;; Generated autoloads from net/eudc.el 9439;;; Generated autoloads from net/eudc.el
9397 9440
9398(autoload (quote eudc-set-server) "eudc" "\ 9441(autoload (quote eudc-set-server) "eudc" "\
@@ -9599,7 +9642,7 @@ This is used only in conjunction with `expand-add-abbrevs'.
9599 9642
9600;;;*** 9643;;;***
9601 9644
9602;;;### (autoloads (f90-mode) "f90" "progmodes/f90.el" (17229 28054)) 9645;;;### (autoloads (f90-mode) "f90" "progmodes/f90.el" (17277 60154))
9603;;; Generated autoloads from progmodes/f90.el 9646;;; Generated autoloads from progmodes/f90.el
9604 9647
9605(autoload (quote f90-mode) "f90" "\ 9648(autoload (quote f90-mode) "f90" "\
@@ -9870,7 +9913,7 @@ Unconditionally turn on Fast Lock mode.
9870 9913
9871;;;### (autoloads (feedmail-queue-reminder feedmail-run-the-queue 9914;;;### (autoloads (feedmail-queue-reminder feedmail-run-the-queue
9872;;;;;; feedmail-run-the-queue-global-prompt feedmail-run-the-queue-no-prompts 9915;;;;;; feedmail-run-the-queue-global-prompt feedmail-run-the-queue-no-prompts
9873;;;;;; feedmail-send-it) "feedmail" "mail/feedmail.el" (17226 24576)) 9916;;;;;; feedmail-send-it) "feedmail" "mail/feedmail.el" (17263 27852))
9874;;; Generated autoloads from mail/feedmail.el 9917;;; Generated autoloads from mail/feedmail.el
9875 9918
9876(autoload (quote feedmail-send-it) "feedmail" "\ 9919(autoload (quote feedmail-send-it) "feedmail" "\
@@ -10166,7 +10209,7 @@ Visit the file you click on in another window.
10166;;;;;; find-variable find-variable-noselect find-function-other-frame 10209;;;;;; find-variable find-variable-noselect find-function-other-frame
10167;;;;;; find-function-other-window find-function find-function-noselect 10210;;;;;; find-function-other-window find-function find-function-noselect
10168;;;;;; find-function-search-for-symbol find-library) "find-func" 10211;;;;;; find-function-search-for-symbol find-library) "find-func"
10169;;;;;; "emacs-lisp/find-func.el" (17244 4913)) 10212;;;;;; "emacs-lisp/find-func.el" (17257 22482))
10170;;; Generated autoloads from emacs-lisp/find-func.el 10213;;; Generated autoloads from emacs-lisp/find-func.el
10171 10214
10172(autoload (quote find-library) "find-func" "\ 10215(autoload (quote find-library) "find-func" "\
@@ -10315,7 +10358,7 @@ Define some key bindings for the find-function family of functions.
10315;;;*** 10358;;;***
10316 10359
10317;;;### (autoloads (find-lisp-find-dired-filter find-lisp-find-dired-subdirectories 10360;;;### (autoloads (find-lisp-find-dired-filter find-lisp-find-dired-subdirectories
10318;;;;;; find-lisp-find-dired) "find-lisp" "find-lisp.el" (17187 59901)) 10361;;;;;; find-lisp-find-dired) "find-lisp" "find-lisp.el" (17277 59649))
10319;;; Generated autoloads from find-lisp.el 10362;;; Generated autoloads from find-lisp.el
10320 10363
10321(autoload (quote find-lisp-find-dired) "find-lisp" "\ 10364(autoload (quote find-lisp-find-dired) "find-lisp" "\
@@ -10336,7 +10379,7 @@ Change the filter on a find-lisp-find-dired buffer to REGEXP.
10336;;;*** 10379;;;***
10337 10380
10338;;;### (autoloads (finder-by-keyword finder-commentary finder-list-keywords) 10381;;;### (autoloads (finder-by-keyword finder-commentary finder-list-keywords)
10339;;;;;; "finder" "finder.el" (17187 59901)) 10382;;;;;; "finder" "finder.el" (17257 22482))
10340;;; Generated autoloads from finder.el 10383;;; Generated autoloads from finder.el
10341 10384
10342(autoload (quote finder-list-keywords) "finder" "\ 10385(autoload (quote finder-list-keywords) "finder" "\
@@ -10380,7 +10423,7 @@ to get the effect of a C-q.
10380;;;*** 10423;;;***
10381 10424
10382;;;### (autoloads (fill-flowed fill-flowed-encode) "flow-fill" "gnus/flow-fill.el" 10425;;;### (autoloads (fill-flowed fill-flowed-encode) "flow-fill" "gnus/flow-fill.el"
10383;;;;;; (17187 59901)) 10426;;;;;; (17263 27852))
10384;;; Generated autoloads from gnus/flow-fill.el 10427;;; Generated autoloads from gnus/flow-fill.el
10385 10428
10386(autoload (quote fill-flowed-encode) "flow-fill" "\ 10429(autoload (quote fill-flowed-encode) "flow-fill" "\
@@ -10420,7 +10463,7 @@ Turn flymake mode off.
10420 10463
10421;;;### (autoloads (flyspell-buffer flyspell-region flyspell-mode-off 10464;;;### (autoloads (flyspell-buffer flyspell-region flyspell-mode-off
10422;;;;;; flyspell-mode flyspell-prog-mode) "flyspell" "textmodes/flyspell.el" 10465;;;;;; flyspell-mode flyspell-prog-mode) "flyspell" "textmodes/flyspell.el"
10423;;;;;; (17254 63791)) 10466;;;;;; (17277 59650))
10424;;; Generated autoloads from textmodes/flyspell.el 10467;;; Generated autoloads from textmodes/flyspell.el
10425 10468
10426(autoload (quote flyspell-prog-mode) "flyspell" "\ 10469(autoload (quote flyspell-prog-mode) "flyspell" "\
@@ -10553,200 +10596,6 @@ in your `~/.emacs' file, replacing [f7] by your favourite key:
10553 10596
10554;;;*** 10597;;;***
10555 10598
10556;;;### (autoloads (font-lock-fontify-buffer font-lock-remove-keywords
10557;;;;;; font-lock-add-keywords font-lock-mode-internal) "font-lock"
10558;;;;;; "font-lock.el" (17254 63790))
10559;;; Generated autoloads from font-lock.el
10560
10561(defvar font-lock-keywords nil "\
10562A list of the keywords to highlight.
10563There are two kinds of values: user-level, and compiled.
10564
10565A user-level keywords list is what a major mode or the user would
10566set up. Normally the list would come from `font-lock-defaults'.
10567through selection of a fontification level and evaluation of any
10568contained expressions. You can also alter it by calling
10569`font-lock-add-keywords' or `font-lock-remove-keywords' with MODE = nil.
10570
10571Each element in a user-level keywords list should have one of these forms:
10572
10573 MATCHER
10574 (MATCHER . SUBEXP)
10575 (MATCHER . FACENAME)
10576 (MATCHER . HIGHLIGHT)
10577 (MATCHER HIGHLIGHT ...)
10578 (eval . FORM)
10579
10580where MATCHER can be either the regexp to search for, or the function name to
10581call to make the search (called with one argument, the limit of the search;
10582it should return non-nil, move point, and set `match-data' appropriately iff
10583it succeeds; like `re-search-forward' would).
10584MATCHER regexps can be generated via the function `regexp-opt'.
10585
10586FORM is an expression, whose value should be a keyword element, evaluated when
10587the keyword is (first) used in a buffer. This feature can be used to provide a
10588keyword that can only be generated when Font Lock mode is actually turned on.
10589
10590HIGHLIGHT should be either MATCH-HIGHLIGHT or MATCH-ANCHORED.
10591
10592For highlighting single items, for example each instance of the word \"foo\",
10593typically only MATCH-HIGHLIGHT is required.
10594However, if an item or (typically) items are to be highlighted following the
10595instance of another item (the anchor), for example each instance of the
10596word \"bar\" following the word \"anchor\" then MATCH-ANCHORED may be required.
10597
10598MATCH-HIGHLIGHT should be of the form:
10599
10600 (SUBEXP FACENAME [OVERRIDE [LAXMATCH]])
10601
10602SUBEXP is the number of the subexpression of MATCHER to be highlighted.
10603
10604FACENAME is an expression whose value is the face name to use.
10605Instead of a face, FACENAME can evaluate to a property list
10606of the form (face FACE PROP1 VAL1 PROP2 VAL2 ...)
10607in which case all the listed text-properties will be set rather than
10608just FACE. In such a case, you will most likely want to put those
10609properties in `font-lock-extra-managed-props' or to override
10610`font-lock-unfontify-region-function'.
10611
10612OVERRIDE and LAXMATCH are flags. If OVERRIDE is t, existing fontification can
10613be overwritten. If `keep', only parts not already fontified are highlighted.
10614If `prepend' or `append', existing fontification is merged with the new, in
10615which the new or existing fontification, respectively, takes precedence.
10616If LAXMATCH is non-nil, that means don't signal an error if there is
10617no match for SUBEXP in MATCHER.
10618
10619For example, an element of the form highlights (if not already highlighted):
10620
10621 \"\\\\\\=<foo\\\\\\=>\" discrete occurrences of \"foo\" in the value of the
10622 variable `font-lock-keyword-face'.
10623 (\"fu\\\\(bar\\\\)\" . 1) substring \"bar\" within all occurrences of \"fubar\" in
10624 the value of `font-lock-keyword-face'.
10625 (\"fubar\" . fubar-face) Occurrences of \"fubar\" in the value of `fubar-face'.
10626 (\"foo\\\\|bar\" 0 foo-bar-face t)
10627 occurrences of either \"foo\" or \"bar\" in the value
10628 of `foo-bar-face', even if already highlighted.
10629 (fubar-match 1 fubar-face)
10630 the first subexpression within all occurrences of
10631 whatever the function `fubar-match' finds and matches
10632 in the value of `fubar-face'.
10633
10634MATCH-ANCHORED should be of the form:
10635
10636 (MATCHER PRE-MATCH-FORM POST-MATCH-FORM MATCH-HIGHLIGHT ...)
10637
10638where MATCHER is a regexp to search for or the function name to call to make
10639the search, as for MATCH-HIGHLIGHT above, but with one exception; see below.
10640PRE-MATCH-FORM and POST-MATCH-FORM are evaluated before the first, and after
10641the last, instance MATCH-ANCHORED's MATCHER is used. Therefore they can be
10642used to initialize before, and cleanup after, MATCHER is used. Typically,
10643PRE-MATCH-FORM is used to move to some position relative to the original
10644MATCHER, before starting with MATCH-ANCHORED's MATCHER. POST-MATCH-FORM might
10645be used to move back, before resuming with MATCH-ANCHORED's parent's MATCHER.
10646
10647For example, an element of the form highlights (if not already highlighted):
10648
10649 (\"\\\\\\=<anchor\\\\\\=>\" (0 anchor-face) (\"\\\\\\=<item\\\\\\=>\" nil nil (0 item-face)))
10650
10651 discrete occurrences of \"anchor\" in the value of `anchor-face', and subsequent
10652 discrete occurrences of \"item\" (on the same line) in the value of `item-face'.
10653 (Here PRE-MATCH-FORM and POST-MATCH-FORM are nil. Therefore \"item\" is
10654 initially searched for starting from the end of the match of \"anchor\", and
10655 searching for subsequent instances of \"anchor\" resumes from where searching
10656 for \"item\" concluded.)
10657
10658The above-mentioned exception is as follows. The limit of the MATCHER search
10659defaults to the end of the line after PRE-MATCH-FORM is evaluated.
10660However, if PRE-MATCH-FORM returns a position greater than the position after
10661PRE-MATCH-FORM is evaluated, that position is used as the limit of the search.
10662It is generally a bad idea to return a position greater than the end of the
10663line, i.e., cause the MATCHER search to span lines.
10664
10665These regular expressions can match text which spans lines, although
10666it is better to avoid it if possible since updating them while editing
10667text is slower, and it is not guaranteed to be always correct when using
10668support modes like jit-lock or lazy-lock.
10669
10670This variable is set by major modes via the variable `font-lock-defaults'.
10671Be careful when composing regexps for this list; a poorly written pattern can
10672dramatically slow things down!
10673
10674A compiled keywords list starts with t. It is produced internal
10675by `font-lock-compile-keywords' from a user-level keywords list.
10676Its second element is the user-level keywords list that was
10677compiled. The remaining elements have the same form as
10678user-level keywords, but normally their values have been
10679optimized.")
10680
10681(autoload (quote font-lock-mode-internal) "font-lock" "\
10682Not documented
10683
10684\(fn ARG)" nil nil)
10685
10686(autoload (quote font-lock-add-keywords) "font-lock" "\
10687Add highlighting KEYWORDS for MODE.
10688
10689MODE should be a symbol, the major mode command name, such as `c-mode'
10690or nil. If nil, highlighting keywords are added for the current buffer.
10691KEYWORDS should be a list; see the variable `font-lock-keywords'.
10692By default they are added at the beginning of the current highlighting list.
10693If optional argument APPEND is `set', they are used to replace the current
10694highlighting list. If APPEND is any other non-nil value, they are added at the
10695end of the current highlighting list.
10696
10697For example:
10698
10699 (font-lock-add-keywords 'c-mode
10700 '((\"\\\\\\=<\\\\(FIXME\\\\):\" 1 font-lock-warning-face prepend)
10701 (\"\\\\\\=<\\\\(and\\\\|or\\\\|not\\\\)\\\\\\=>\" . font-lock-keyword-face)))
10702
10703adds two fontification patterns for C mode, to fontify `FIXME:' words, even in
10704comments, and to fontify `and', `or' and `not' words as keywords.
10705
10706The above procedure will only add the keywords for C mode, not
10707for modes derived from C mode. To add them for derived modes too,
10708pass nil for MODE and add the call to c-mode-hook.
10709
10710For example:
10711
10712 (add-hook 'c-mode-hook
10713 (lambda ()
10714 (font-lock-add-keywords nil
10715 '((\"\\\\\\=<\\\\(FIXME\\\\):\" 1 font-lock-warning-face prepend)
10716 (\"\\\\\\=<\\\\(and\\\\|or\\\\|not\\\\)\\\\\\=>\" .
10717 font-lock-keyword-face)))))
10718
10719The above procedure may fail to add keywords to derived modes if
10720some involved major mode does not follow the standard conventions.
10721File a bug report if this happens, so the major mode can be corrected.
10722
10723Note that some modes have specialized support for additional patterns, e.g.,
10724see the variables `c-font-lock-extra-types', `c++-font-lock-extra-types',
10725`objc-font-lock-extra-types' and `java-font-lock-extra-types'.
10726
10727\(fn MODE KEYWORDS &optional APPEND)" nil nil)
10728
10729(autoload (quote font-lock-remove-keywords) "font-lock" "\
10730Remove highlighting KEYWORDS for MODE.
10731
10732MODE should be a symbol, the major mode command name, such as `c-mode'
10733or nil. If nil, highlighting keywords are removed for the current buffer.
10734
10735To make the removal apply to modes derived from MODE as well,
10736pass nil for MODE and add the call to MODE-hook. This may fail
10737for some derived modes if some involved major mode does not
10738follow the standard conventions. File a bug report if this
10739happens, so the major mode can be corrected.
10740
10741\(fn MODE KEYWORDS)" nil nil)
10742
10743(autoload (quote font-lock-fontify-buffer) "font-lock" "\
10744Fontify the current buffer the way the function `font-lock-mode' would.
10745
10746\(fn)" t nil)
10747
10748;;;***
10749
10750;;;### (autoloads (footnote-mode) "footnote" "mail/footnote.el" (17187 10599;;;### (autoloads (footnote-mode) "footnote" "mail/footnote.el" (17187
10751;;;;;; 59901)) 10600;;;;;; 59901))
10752;;; Generated autoloads from mail/footnote.el 10601;;; Generated autoloads from mail/footnote.el
@@ -10806,7 +10655,7 @@ Visit a file in Forms mode in other window.
10806;;;*** 10655;;;***
10807 10656
10808;;;### (autoloads (fortran-mode fortran-tab-mode-default) "fortran" 10657;;;### (autoloads (fortran-mode fortran-tab-mode-default) "fortran"
10809;;;;;; "progmodes/fortran.el" (17229 28054)) 10658;;;;;; "progmodes/fortran.el" (17277 60154))
10810;;; Generated autoloads from progmodes/fortran.el 10659;;; Generated autoloads from progmodes/fortran.el
10811 10660
10812(defvar fortran-tab-mode-default nil "\ 10661(defvar fortran-tab-mode-default nil "\
@@ -11013,7 +10862,7 @@ default appearance of fringes on all frames, see the command
11013;;;*** 10862;;;***
11014 10863
11015;;;### (autoloads (gdb-enable-debug-log gdba) "gdb-ui" "progmodes/gdb-ui.el" 10864;;;### (autoloads (gdb-enable-debug-log gdba) "gdb-ui" "progmodes/gdb-ui.el"
11016;;;;;; (17254 64068)) 10865;;;;;; (17277 60154))
11017;;; Generated autoloads from progmodes/gdb-ui.el 10866;;; Generated autoloads from progmodes/gdb-ui.el
11018 10867
11019(autoload (quote gdba) "gdb-ui" "\ 10868(autoload (quote gdba) "gdb-ui" "\
@@ -11165,7 +11014,7 @@ at places they belong to.
11165;;;*** 11014;;;***
11166 11015
11167;;;### (autoloads (gnus gnus-other-frame gnus-slave gnus-no-server 11016;;;### (autoloads (gnus gnus-other-frame gnus-slave gnus-no-server
11168;;;;;; gnus-slave-no-server) "gnus" "gnus/gnus.el" (17226 24575)) 11017;;;;;; gnus-slave-no-server) "gnus" "gnus/gnus.el" (17277 59649))
11169;;; Generated autoloads from gnus/gnus.el 11018;;; Generated autoloads from gnus/gnus.el
11170 11019
11171(autoload (quote gnus-slave-no-server) "gnus" "\ 11020(autoload (quote gnus-slave-no-server) "gnus" "\
@@ -11303,7 +11152,7 @@ If CLEAN, obsolete (ignore).
11303;;;*** 11152;;;***
11304 11153
11305;;;### (autoloads (gnus-article-prepare-display) "gnus-art" "gnus/gnus-art.el" 11154;;;### (autoloads (gnus-article-prepare-display) "gnus-art" "gnus/gnus-art.el"
11306;;;;;; (17254 63788)) 11155;;;;;; (17257 22483))
11307;;; Generated autoloads from gnus/gnus-art.el 11156;;; Generated autoloads from gnus/gnus-art.el
11308 11157
11309(autoload (quote gnus-article-prepare-display) "gnus-art" "\ 11158(autoload (quote gnus-article-prepare-display) "gnus-art" "\
@@ -11887,7 +11736,7 @@ Use \\[describe-mode] for more info.
11887;;;*** 11736;;;***
11888 11737
11889;;;### (autoloads (goto-address goto-address-at-point) "goto-addr" 11738;;;### (autoloads (goto-address goto-address-at-point) "goto-addr"
11890;;;;;; "net/goto-addr.el" (17187 59902)) 11739;;;;;; "net/goto-addr.el" (17263 27852))
11891;;; Generated autoloads from net/goto-addr.el 11740;;; Generated autoloads from net/goto-addr.el
11892 11741
11893(define-obsolete-function-alias (quote goto-address-at-mouse) (quote goto-address-at-point) "22.1") 11742(define-obsolete-function-alias (quote goto-address-at-mouse) (quote goto-address-at-point) "22.1")
@@ -12053,7 +11902,7 @@ the form \"WINDOW-ID PIXMAP-ID\". Value is non-nil if successful.
12053;;;*** 11902;;;***
12054 11903
12055;;;### (autoloads (gud-tooltip-mode gdb-script-mode bashdb jdb pdb 11904;;;### (autoloads (gud-tooltip-mode gdb-script-mode bashdb jdb pdb
12056;;;;;; perldb xdb dbx sdb gdb) "gud" "progmodes/gud.el" (17254 64068)) 11905;;;;;; perldb xdb dbx sdb gdb) "gud" "progmodes/gud.el" (17277 60154))
12057;;; Generated autoloads from progmodes/gud.el 11906;;; Generated autoloads from progmodes/gud.el
12058 11907
12059(autoload (quote gdb) "gud" "\ 11908(autoload (quote gdb) "gud" "\
@@ -12326,9 +12175,9 @@ different regions. With numeric argument ARG, behaves like
12326;;;*** 12175;;;***
12327 12176
12328;;;### (autoloads (describe-categories describe-syntax describe-variable 12177;;;### (autoloads (describe-categories describe-syntax describe-variable
12329;;;;;; variable-at-point describe-function-1 help-C-file-name describe-function 12178;;;;;; variable-at-point describe-function-1 describe-simplify-lib-file-name
12330;;;;;; locate-library help-with-tutorial) "help-fns" "help-fns.el" 12179;;;;;; help-C-file-name describe-function help-with-tutorial) "help-fns"
12331;;;;;; (17254 63790)) 12180;;;;;; "help-fns.el" (17277 59649))
12332;;; Generated autoloads from help-fns.el 12181;;; Generated autoloads from help-fns.el
12333 12182
12334(autoload (quote help-with-tutorial) "help-fns" "\ 12183(autoload (quote help-with-tutorial) "help-fns" "\
@@ -12354,6 +12203,11 @@ KIND should be `var' for a variable or `subr' for a subroutine.
12354(defface help-argument-name (quote ((((supports :slant italic)) :inherit italic))) "\ 12203(defface help-argument-name (quote ((((supports :slant italic)) :inherit italic))) "\
12355Face to highlight argument names in *Help* buffers." :group (quote help)) 12204Face to highlight argument names in *Help* buffers." :group (quote help))
12356 12205
12206(autoload (quote describe-simplify-lib-file-name) "help-fns" "\
12207Simplify a library name FILE to a relative name, and make it a source file.
12208
12209\(fn FILE)" nil nil)
12210
12357(autoload (quote describe-function-1) "help-fns" "\ 12211(autoload (quote describe-function-1) "help-fns" "\
12358Not documented 12212Not documented
12359 12213
@@ -12409,7 +12263,7 @@ A value of nil means skip the middle step, so that
12409 12263
12410;;;### (autoloads (help-xref-on-pp help-insert-xref-button help-xref-button 12264;;;### (autoloads (help-xref-on-pp help-insert-xref-button help-xref-button
12411;;;;;; help-make-xrefs help-setup-xref help-mode-finish help-mode-setup 12265;;;;;; help-make-xrefs help-setup-xref help-mode-finish help-mode-setup
12412;;;;;; help-mode) "help-mode" "help-mode.el" (17187 59901)) 12266;;;;;; help-mode) "help-mode" "help-mode.el" (17277 59649))
12413;;; Generated autoloads from help-mode.el 12267;;; Generated autoloads from help-mode.el
12414 12268
12415(autoload (quote help-mode) "help-mode" "\ 12269(autoload (quote help-mode) "help-mode" "\
@@ -12603,8 +12457,8 @@ This discards the buffer's undo information.
12603 12457
12604;;;### (autoloads (hi-lock-write-interactive-patterns hi-lock-unface-buffer 12458;;;### (autoloads (hi-lock-write-interactive-patterns hi-lock-unface-buffer
12605;;;;;; hi-lock-face-phrase-buffer hi-lock-face-buffer hi-lock-line-face-buffer 12459;;;;;; hi-lock-face-phrase-buffer hi-lock-face-buffer hi-lock-line-face-buffer
12606;;;;;; hi-lock-mode hi-lock-mode) "hi-lock" "hi-lock.el" (17226 12460;;;;;; hi-lock-mode hi-lock-mode) "hi-lock" "hi-lock.el" (17277
12607;;;;;; 24576)) 12461;;;;;; 60154))
12608;;; Generated autoloads from hi-lock.el 12462;;; Generated autoloads from hi-lock.el
12609 12463
12610(defvar hi-lock-mode nil "\ 12464(defvar hi-lock-mode nil "\
@@ -13155,7 +13009,7 @@ Convert HTML to plain text in the current buffer.
13155;;;;;; ibuffer-backward-filter-group ibuffer-forward-filter-group 13009;;;;;; ibuffer-backward-filter-group ibuffer-forward-filter-group
13156;;;;;; ibuffer-toggle-filter-group ibuffer-mouse-toggle-filter-group 13010;;;;;; ibuffer-toggle-filter-group ibuffer-mouse-toggle-filter-group
13157;;;;;; ibuffer-interactive-filter-by-mode ibuffer-mouse-filter-by-mode 13011;;;;;; ibuffer-interactive-filter-by-mode ibuffer-mouse-filter-by-mode
13158;;;;;; ibuffer-auto-mode) "ibuf-ext" "ibuf-ext.el" (17229 28053)) 13012;;;;;; ibuffer-auto-mode) "ibuf-ext" "ibuf-ext.el" (17277 60154))
13159;;; Generated autoloads from ibuf-ext.el 13013;;; Generated autoloads from ibuf-ext.el
13160 13014
13161(autoload (quote ibuffer-auto-mode) "ibuf-ext" "\ 13015(autoload (quote ibuffer-auto-mode) "ibuf-ext" "\
@@ -13603,7 +13457,7 @@ bound to the current value of the filter.
13603;;;*** 13457;;;***
13604 13458
13605;;;### (autoloads (ibuffer ibuffer-other-window ibuffer-list-buffers) 13459;;;### (autoloads (ibuffer ibuffer-other-window ibuffer-list-buffers)
13606;;;;;; "ibuffer" "ibuffer.el" (17187 59901)) 13460;;;;;; "ibuffer" "ibuffer.el" (17263 27852))
13607;;; Generated autoloads from ibuffer.el 13461;;; Generated autoloads from ibuffer.el
13608 13462
13609(autoload (quote ibuffer-list-buffers) "ibuffer" "\ 13463(autoload (quote ibuffer-list-buffers) "ibuffer" "\
@@ -13644,7 +13498,7 @@ FORMATS is the value to use for `ibuffer-formats'.
13644 13498
13645;;;### (autoloads (icalendar-import-buffer icalendar-import-file 13499;;;### (autoloads (icalendar-import-buffer icalendar-import-file
13646;;;;;; icalendar-export-region icalendar-export-file) "icalendar" 13500;;;;;; icalendar-export-region icalendar-export-file) "icalendar"
13647;;;;;; "calendar/icalendar.el" (17254 64014)) 13501;;;;;; "calendar/icalendar.el" (17257 22482))
13648;;; Generated autoloads from calendar/icalendar.el 13502;;; Generated autoloads from calendar/icalendar.el
13649 13503
13650(autoload (quote icalendar-export-file) "icalendar" "\ 13504(autoload (quote icalendar-export-file) "icalendar" "\
@@ -13718,7 +13572,7 @@ With a numeric argument, turn Icomplete mode on iff ARG is positive.
13718 13572
13719;;;*** 13573;;;***
13720 13574
13721;;;### (autoloads (icon-mode) "icon" "progmodes/icon.el" (17187 59902)) 13575;;;### (autoloads (icon-mode) "icon" "progmodes/icon.el" (17277 60154))
13722;;; Generated autoloads from progmodes/icon.el 13576;;; Generated autoloads from progmodes/icon.el
13723 13577
13724(autoload (quote icon-mode) "icon" "\ 13578(autoload (quote icon-mode) "icon" "\
@@ -13785,7 +13639,7 @@ See also the variable `idlwave-shell-prompt-pattern'.
13785;;;*** 13639;;;***
13786 13640
13787;;;### (autoloads (idlwave-mode) "idlwave" "progmodes/idlwave.el" 13641;;;### (autoloads (idlwave-mode) "idlwave" "progmodes/idlwave.el"
13788;;;;;; (17226 24577)) 13642;;;;;; (17277 60154))
13789;;; Generated autoloads from progmodes/idlwave.el 13643;;; Generated autoloads from progmodes/idlwave.el
13790 13644
13791(autoload (quote idlwave-mode) "idlwave" "\ 13645(autoload (quote idlwave-mode) "idlwave" "\
@@ -14214,7 +14068,7 @@ Toggle inline image minor mode.
14214;;;### (autoloads (defimage find-image remove-images insert-sliced-image 14068;;;### (autoloads (defimage find-image remove-images insert-sliced-image
14215;;;;;; insert-image put-image create-image image-type-available-p 14069;;;;;; insert-image put-image create-image image-type-available-p
14216;;;;;; image-type-from-file-name image-type-from-file-header image-type-from-buffer 14070;;;;;; image-type-from-file-name image-type-from-file-header image-type-from-buffer
14217;;;;;; image-type-from-data) "image" "image.el" (17254 63790)) 14071;;;;;; image-type-from-data) "image" "image.el" (17257 22483))
14218;;; Generated autoloads from image.el 14072;;; Generated autoloads from image.el
14219 14073
14220(autoload (quote image-type-from-data) "image" "\ 14074(autoload (quote image-type-from-data) "image" "\
@@ -14696,7 +14550,7 @@ of `inferior-lisp-program'). Runs the hooks from
14696;;;### (autoloads (Info-speedbar-browser Info-goto-emacs-key-command-node 14550;;;### (autoloads (Info-speedbar-browser Info-goto-emacs-key-command-node
14697;;;;;; Info-goto-emacs-command-node Info-mode info-apropos Info-index 14551;;;;;; Info-goto-emacs-command-node Info-mode info-apropos Info-index
14698;;;;;; Info-directory info-standalone info-emacs-manual info info-other-window) 14552;;;;;; Info-directory info-standalone info-emacs-manual info info-other-window)
14699;;;;;; "info" "info.el" (17244 4913)) 14553;;;;;; "info" "info.el" (17263 27852))
14700;;; Generated autoloads from info.el 14554;;; Generated autoloads from info.el
14701 14555
14702(autoload (quote info-other-window) "info" "\ 14556(autoload (quote info-other-window) "info" "\
@@ -15136,7 +14990,7 @@ Add submenus to the File menu, to convert to and from various formats.
15136;;;;;; ispell-region ispell-change-dictionary ispell-kill-ispell 14990;;;;;; ispell-region ispell-change-dictionary ispell-kill-ispell
15137;;;;;; ispell-help ispell-pdict-save ispell-word ispell-local-dictionary-alist 14991;;;;;; ispell-help ispell-pdict-save ispell-word ispell-local-dictionary-alist
15138;;;;;; ispell-personal-dictionary) "ispell" "textmodes/ispell.el" 14992;;;;;; ispell-personal-dictionary) "ispell" "textmodes/ispell.el"
15139;;;;;; (17254 63791)) 14993;;;;;; (17263 27852))
15140;;; Generated autoloads from textmodes/ispell.el 14994;;; Generated autoloads from textmodes/ispell.el
15141 14995
15142(defvar ispell-personal-dictionary nil "\ 14996(defvar ispell-personal-dictionary nil "\
@@ -15160,11 +15014,11 @@ re-start emacs.")
15160 15014
15161(setq ispell-dictionary-alist-2 (quote (("czech" "[A-Za-z\301\311\314\315\323\332\331\335\256\251\310\330\317\253\322\341\351\354\355\363\372\371\375\276\271\350\370\357\273\362]" "[^A-Za-z\301\311\314\315\323\332\331\335\256\251\310\330\317\253\322\341\351\354\355\363\372\371\375\276\271\350\370\357\273\362]" "" nil ("-B") nil iso-8859-2) ("dansk" "[A-Z\306\330\305a-z\346\370\345]" "[^A-Z\306\330\305a-z\346\370\345]" "[']" nil ("-C") nil iso-8859-1) ("deutsch" "[a-zA-Z\"]" "[^a-zA-Z\"]" "[']" t ("-C") "~tex" iso-8859-1) ("deutsch8" "[a-zA-Z\304\326\334\344\366\337\374]" "[^a-zA-Z\304\326\334\344\366\337\374]" "[']" t ("-C" "-d" "deutsch") "~latin1" iso-8859-1) ("english" "[A-Za-z]" "[^A-Za-z]" "[']" nil ("-B") nil iso-8859-1)))) 15015(setq ispell-dictionary-alist-2 (quote (("czech" "[A-Za-z\301\311\314\315\323\332\331\335\256\251\310\330\317\253\322\341\351\354\355\363\372\371\375\276\271\350\370\357\273\362]" "[^A-Za-z\301\311\314\315\323\332\331\335\256\251\310\330\317\253\322\341\351\354\355\363\372\371\375\276\271\350\370\357\273\362]" "" nil ("-B") nil iso-8859-2) ("dansk" "[A-Z\306\330\305a-z\346\370\345]" "[^A-Z\306\330\305a-z\346\370\345]" "[']" nil ("-C") nil iso-8859-1) ("deutsch" "[a-zA-Z\"]" "[^a-zA-Z\"]" "[']" t ("-C") "~tex" iso-8859-1) ("deutsch8" "[a-zA-Z\304\326\334\344\366\337\374]" "[^a-zA-Z\304\326\334\344\366\337\374]" "[']" t ("-C" "-d" "deutsch") "~latin1" iso-8859-1) ("english" "[A-Za-z]" "[^A-Za-z]" "[']" nil ("-B") nil iso-8859-1))))
15162 15016
15163(setq ispell-dictionary-alist-3 (quote (("esperanto" "[A-Za-z\246\254\266\274\306\330\335\336\346\370\375\376]" "[^A-Za-z\246\254\266\274\306\330\335\336\346\370\375\376]" "[-']" t ("-C") "~latin3" iso-8859-1) ("esperanto-tex" "[A-Za-z^\\]" "[^A-Za-z^\\]" "[-'`\"]" t ("-C" "-d" "esperanto") "~tex" iso-8859-1) ("francais7" "[A-Za-z]" "[^A-Za-z]" "[`'^---]" t nil nil iso-8859-1) ("francais" "[A-Za-z\300\302\306\307\310\311\312\313\316\317\324\331\333\334\340\342\347\350\351\352\353\356\357\364\371\373\374]" "[^A-Za-z\300\302\306\307\310\311\312\313\316\317\324\331\333\334\340\342\347\350\351\352\353\356\357\364\371\373\374]" "[-']" t nil "~list" iso-8859-1) ("francais-tex" "[A-Za-z\300\302\306\307\310\311\312\313\316\317\324\331\333\334\340\342\347\350\351\352\353\356\357\364\371\373\374\\]" "[^A-Za-z\300\302\306\307\310\311\312\313\316\317\324\331\333\334\340\342\347\350\351\352\353\356\357\364\371\373\374\\]" "[-'^`\"]" t nil "~tex" iso-8859-1)))) 15017(setq ispell-dictionary-alist-3 (quote (("esperanto" "[A-Za-z\246\254\266\274\306\330\335\336\346\370\375\376]" "[^A-Za-z\246\254\266\274\306\330\335\336\346\370\375\376]" "[-']" t ("-C") "~latin3" iso-8859-1) ("esperanto-tex" "[A-Za-z^\\]" "[^A-Za-z^\\]" "[-'`\"]" t ("-C" "-d" "esperanto") "~tex" iso-8859-1) ("francais7" "[A-Za-z]" "[^A-Za-z]" "[`'^---]" t nil nil iso-8859-1) ("francais" "[A-Za-z\300\302\306\307\310\311\312\313\316\317\324\331\333\334\340\342\347\350\351\352\353\356\357\364\371\373\374]" "[^A-Za-z\300\302\306\307\310\311\312\313\316\317\324\331\333\334\340\342\347\350\351\352\353\356\357\364\371\373\374]" "[-'.@]" t nil "~list" iso-8859-1) ("francais-tex" "[A-Za-z\300\302\306\307\310\311\312\313\316\317\324\331\333\334\340\342\347\350\351\352\353\356\357\364\371\373\374\\]" "[^A-Za-z\300\302\306\307\310\311\312\313\316\317\324\331\333\334\340\342\347\350\351\352\353\356\357\364\371\373\374\\]" "[-'^`\".@]" t nil "~tex" iso-8859-1))))
15164 15018
15165(setq ispell-dictionary-alist-4 (quote (("german" "[a-zA-Z\"]" "[^a-zA-Z\"]" "[']" t ("-C") "~tex" iso-8859-1) ("german8" "[a-zA-Z\304\326\334\344\366\337\374]" "[^a-zA-Z\304\326\334\344\366\337\374]" "[']" t ("-C" "-d" "german") "~latin1" iso-8859-1) ("italiano" "[A-Z\300\301\310\311\314\315\322\323\331\332a-z\340\341\350\351\354\355\363\371\372]" "[^A-Z\300\301\310\311\314\315\322\323\331\332a-z\340\341\350\351\354\355\363\371\372]" "[-]" nil ("-B" "-d" "italian") "~tex" iso-8859-1) ("nederlands" "[A-Za-z\300\301\302\303\304\305\307\310\311\312\313\314\315\316\317\322\323\324\325\326\331\332\333\334\340\341\342\343\344\345\347\350\351\352\353\354\355\356\357\361\362\363\364\365\366\371\372\373\374]" "[^A-Za-z\300\301\302\303\304\305\307\310\311\312\313\314\315\316\317\322\323\324\325\326\331\332\333\334\340\341\342\343\344\345\347\350\351\352\353\354\355\356\357\361\362\363\364\365\366\371\372\373\374]" "[']" t ("-C") nil iso-8859-1) ("nederlands8" "[A-Za-z\300\301\302\303\304\305\307\310\311\312\313\314\315\316\317\322\323\324\325\326\331\332\333\334\340\341\342\343\344\345\347\350\351\352\353\354\355\356\357\361\362\363\364\365\366\371\372\373\374]" "[^A-Za-z\300\301\302\303\304\305\307\310\311\312\313\314\315\316\317\322\323\324\325\326\331\332\333\334\340\341\342\343\344\345\347\350\351\352\353\354\355\356\357\361\362\363\364\365\366\371\372\373\374]" "[']" t ("-C") nil iso-8859-1)))) 15019(setq ispell-dictionary-alist-4 (quote (("german" "[a-zA-Z\"]" "[^a-zA-Z\"]" "[']" t ("-C") "~tex" iso-8859-1) ("german8" "[a-zA-Z\304\326\334\344\366\337\374]" "[^a-zA-Z\304\326\334\344\366\337\374]" "[']" t ("-C" "-d" "german") "~latin1" iso-8859-1) ("italiano" "[A-Z\300\301\310\311\314\315\322\323\331\332a-z\340\341\350\351\354\355\363\371\372]" "[^A-Z\300\301\310\311\314\315\322\323\331\332a-z\340\341\350\351\354\355\363\371\372]" "[-.]" nil ("-B" "-d" "italian") "~tex" iso-8859-1) ("nederlands" "[A-Za-z\300\301\302\303\304\305\307\310\311\312\313\314\315\316\317\322\323\324\325\326\331\332\333\334\340\341\342\343\344\345\347\350\351\352\353\354\355\356\357\361\362\363\364\365\366\371\372\373\374]" "[^A-Za-z\300\301\302\303\304\305\307\310\311\312\313\314\315\316\317\322\323\324\325\326\331\332\333\334\340\341\342\343\344\345\347\350\351\352\353\354\355\356\357\361\362\363\364\365\366\371\372\373\374]" "[']" t ("-C") nil iso-8859-1) ("nederlands8" "[A-Za-z\300\301\302\303\304\305\307\310\311\312\313\314\315\316\317\322\323\324\325\326\331\332\333\334\340\341\342\343\344\345\347\350\351\352\353\354\355\356\357\361\362\363\364\365\366\371\372\373\374]" "[^A-Za-z\300\301\302\303\304\305\307\310\311\312\313\314\315\316\317\322\323\324\325\326\331\332\333\334\340\341\342\343\344\345\347\350\351\352\353\354\355\356\357\361\362\363\364\365\366\371\372\373\374]" "[']" t ("-C") nil iso-8859-1))))
15166 15020
15167(setq ispell-dictionary-alist-5 (quote (("norsk" "[A-Za-z\305\306\307\310\311\322\324\330\345\346\347\350\351\362\364\370]" "[^A-Za-z\305\306\307\310\311\322\324\330\345\346\347\350\351\362\364\370]" "[\"]" nil nil "~list" iso-8859-1) ("norsk7-tex" "[A-Za-z{}\\'^`]" "[^A-Za-z{}\\'^`]" "[\"]" nil ("-d" "norsk") "~plaintex" iso-8859-1) ("polish" "[A-Za-z\241\243\246\254\257\261\263\266\274\277\306\312\321\323\346\352\361\363]" "[^A-Za-z\241\243\246\254\257\261\263\266\274\277\306\312\321\323\346\352\361\363]" "" nil nil nil iso-8859-2) ("portugues" "[a-zA-Z\301\302\311\323\340\341\342\351\352\355\363\343\372]" "[^a-zA-Z\301\302\311\323\340\341\342\351\352\355\363\343\372]" "[']" t ("-C") "~latin1" iso-8859-1)))) 15021(setq ispell-dictionary-alist-5 (quote (("norsk" "[A-Za-z\305\306\307\310\311\322\324\330\345\346\347\350\351\362\364\370]" "[^A-Za-z\305\306\307\310\311\322\324\330\345\346\347\350\351\362\364\370]" "[\"]" nil nil "~list" iso-8859-1) ("norsk7-tex" "[A-Za-z{}\\'^`]" "[^A-Za-z{}\\'^`]" "[\"]" nil ("-d" "norsk") "~plaintex" iso-8859-1) ("polish" "[A-Za-z\241\243\246\254\257\261\263\266\274\277\306\312\321\323\346\352\361\363]" "[^A-Za-z\241\243\246\254\257\261\263\266\274\277\306\312\321\323\346\352\361\363]" "." nil nil nil iso-8859-2) ("portugues" "[a-zA-Z\301\302\311\323\340\341\342\351\352\355\363\343\372]" "[^a-zA-Z\301\302\311\323\340\341\342\351\352\355\363\343\372]" "[']" t ("-C") "~latin1" iso-8859-1))))
15168 15022
15169(setq ispell-dictionary-alist-6 (quote (("russian" "[\341\342\367\347\344\345\263\366\372\351\352\353\354\355\356\357\360\362\363\364\365\346\350\343\376\373\375\370\371\377\374\340\361\301\302\327\307\304\305\243\326\332\311\312\313\314\315\316\317\320\322\323\324\325\306\310\303\336\333\335\330\331\337\334\300\321]" "[^\341\342\367\347\344\345\263\366\372\351\352\353\354\355\356\357\360\362\363\364\365\346\350\343\376\373\375\370\371\377\374\340\361\301\302\327\307\304\305\243\326\332\311\312\313\314\315\316\317\320\322\323\324\325\306\310\303\336\333\335\330\331\337\334\300\321]" "" nil nil nil koi8-r) ("russianw" "[\300\301\302\303\304\305\250\306\307\310\311\312\313\314\315\316\317\320\321\322\323\324\325\326\327\330\331\334\333\332\335\336\337\340\341\342\343\344\345\270\346\347\350\351\352\353\354\355\356\357\360\361\362\363\364\365\366\367\370\371\374\373\372\375\376\377]" "[^\300\301\302\303\304\305\250\306\307\310\311\312\313\314\315\316\317\320\321\322\323\324\325\326\327\330\331\334\333\332\335\336\337\340\341\342\343\344\345\270\346\347\350\351\352\353\354\355\356\357\360\361\362\363\364\365\366\367\370\371\374\373\372\375\376\377]" "" nil nil nil windows-1251) ("slovak" "[A-Za-z\301\304\311\315\323\332\324\300\305\245\335\256\251\310\317\253\322\341\344\351\355\363\372\364\340\345\265\375\276\271\350\357\273\362]" "[^A-Za-z\301\304\311\315\323\332\324\300\305\245\335\256\251\310\317\253\322\341\344\351\355\363\372\364\340\345\265\375\276\271\350\357\273\362]" "" nil ("-B") nil iso-8859-2) ("slovenian" "[A-Za-z\301\304\311\315\323\332\324\300\305\245\335\256\251\310\317\253\322\341\344\351\355\363\372\364\340\345\265\375\276\271\350\357\273\362]" "[^A-Za-z\301\304\311\315\323\332\324\300\305\245\335\256\251\310\317\253\322\341\344\351\355\363\372\364\340\345\265\375\276\271\350\357\273\362]" "" nil ("-B" "-d" "slovenian") nil iso-8859-2) ("svenska" "[A-Za-z\345\344\366\351\340\374\350\346\370\347\305\304\326\311\300\334\310\306\330\307]" "[^A-Za-z\345\344\366\351\340\374\350\346\370\347\305\304\326\311\300\334\310\306\330\307]" "[']" nil ("-C") "~list" iso-8859-1)))) 15023(setq ispell-dictionary-alist-6 (quote (("russian" "[\341\342\367\347\344\345\263\366\372\351\352\353\354\355\356\357\360\362\363\364\365\346\350\343\376\373\375\370\371\377\374\340\361\301\302\327\307\304\305\243\326\332\311\312\313\314\315\316\317\320\322\323\324\325\306\310\303\336\333\335\330\331\337\334\300\321]" "[^\341\342\367\347\344\345\263\366\372\351\352\353\354\355\356\357\360\362\363\364\365\346\350\343\376\373\375\370\371\377\374\340\361\301\302\327\307\304\305\243\326\332\311\312\313\314\315\316\317\320\322\323\324\325\306\310\303\336\333\335\330\331\337\334\300\321]" "" nil nil nil koi8-r) ("russianw" "[\300\301\302\303\304\305\250\306\307\310\311\312\313\314\315\316\317\320\321\322\323\324\325\326\327\330\331\334\333\332\335\336\337\340\341\342\343\344\345\270\346\347\350\351\352\353\354\355\356\357\360\361\362\363\364\365\366\367\370\371\374\373\372\375\376\377]" "[^\300\301\302\303\304\305\250\306\307\310\311\312\313\314\315\316\317\320\321\322\323\324\325\326\327\330\331\334\333\332\335\336\337\340\341\342\343\344\345\270\346\347\350\351\352\353\354\355\356\357\360\361\362\363\364\365\366\367\370\371\374\373\372\375\376\377]" "" nil nil nil windows-1251) ("slovak" "[A-Za-z\301\304\311\315\323\332\324\300\305\245\335\256\251\310\317\253\322\341\344\351\355\363\372\364\340\345\265\375\276\271\350\357\273\362]" "[^A-Za-z\301\304\311\315\323\332\324\300\305\245\335\256\251\310\317\253\322\341\344\351\355\363\372\364\340\345\265\375\276\271\350\357\273\362]" "" nil ("-B") nil iso-8859-2) ("slovenian" "[A-Za-z\301\304\311\315\323\332\324\300\305\245\335\256\251\310\317\253\322\341\344\351\355\363\372\364\340\345\265\375\276\271\350\357\273\362]" "[^A-Za-z\301\304\311\315\323\332\324\300\305\245\335\256\251\310\317\253\322\341\344\351\355\363\372\364\340\345\265\375\276\271\350\357\273\362]" "" nil ("-B" "-d" "slovenian") nil iso-8859-2) ("svenska" "[A-Za-z\345\344\366\351\340\374\350\346\370\347\305\304\326\311\300\334\310\306\330\307]" "[^A-Za-z\345\344\366\351\340\374\350\346\370\347\305\304\326\311\300\334\310\306\330\307]" "[']" nil ("-C") "~list" iso-8859-1))))
15170 15024
@@ -15422,8 +15276,8 @@ You can bind this to the key C-c i in GNUS or mail by adding to
15422 15276
15423;;;*** 15277;;;***
15424 15278
15425;;;### (autoloads (iswitchb-mode) "iswitchb" "iswitchb.el" (17226 15279;;;### (autoloads (iswitchb-mode) "iswitchb" "iswitchb.el" (17263
15426;;;;;; 24576)) 15280;;;;;; 27852))
15427;;; Generated autoloads from iswitchb.el 15281;;; Generated autoloads from iswitchb.el
15428 15282
15429(defvar iswitchb-mode nil "\ 15283(defvar iswitchb-mode nil "\
@@ -15526,22 +15380,8 @@ If non-nil, second arg INITIAL-INPUT is a string to insert before reading.
15526 15380
15527;;;*** 15381;;;***
15528 15382
15529;;;### (autoloads (jit-lock-register) "jit-lock" "jit-lock.el" (17238
15530;;;;;; 21257))
15531;;; Generated autoloads from jit-lock.el
15532
15533(autoload (quote jit-lock-register) "jit-lock" "\
15534Register FUN as a fontification function to be called in this buffer.
15535FUN will be called with two arguments START and END indicating the region
15536that needs to be (re)fontified.
15537If non-nil, CONTEXTUAL means that a contextual fontification would be useful.
15538
15539\(fn FUN &optional CONTEXTUAL)" nil nil)
15540
15541;;;***
15542
15543;;;### (autoloads (jka-compr-uninstall jka-compr-handler) "jka-compr" 15383;;;### (autoloads (jka-compr-uninstall jka-compr-handler) "jka-compr"
15544;;;;;; "jka-compr.el" (17187 59901)) 15384;;;;;; "jka-compr.el" (17277 59649))
15545;;; Generated autoloads from jka-compr.el 15385;;; Generated autoloads from jka-compr.el
15546 15386
15547(defvar jka-compr-inhibit nil "\ 15387(defvar jka-compr-inhibit nil "\
@@ -16041,10 +15881,10 @@ Unconditionally turn on Lazy Lock mode.
16041;;;*** 15881;;;***
16042 15882
16043;;;### (autoloads (ld-script-mode) "ld-script" "progmodes/ld-script.el" 15883;;;### (autoloads (ld-script-mode) "ld-script" "progmodes/ld-script.el"
16044;;;;;; (17187 59902)) 15884;;;;;; (17263 27852))
16045;;; Generated autoloads from progmodes/ld-script.el 15885;;; Generated autoloads from progmodes/ld-script.el
16046 15886
16047(add-to-list (quote auto-mode-alist) (quote ("\\.lds" . ld-script-mode))) 15887(add-to-list (quote auto-mode-alist) (quote ("\\.ld[s]?\\(\\.in\\)?$" . ld-script-mode)))
16048 15888
16049(autoload (quote ld-script-mode) "ld-script" "\ 15889(autoload (quote ld-script-mode) "ld-script" "\
16050A major mode to edit GNU ld script files 15890A major mode to edit GNU ld script files
@@ -16125,7 +15965,7 @@ such as redefining an Emacs function.
16125;;;*** 15965;;;***
16126 15966
16127;;;### (autoloads (locate-with-filter locate locate-ls-subdir-switches) 15967;;;### (autoloads (locate-with-filter locate locate-ls-subdir-switches)
16128;;;;;; "locate" "locate.el" (17254 63790)) 15968;;;;;; "locate" "locate.el" (17257 22483))
16129;;; Generated autoloads from locate.el 15969;;; Generated autoloads from locate.el
16130 15970
16131(defvar locate-ls-subdir-switches "-al" "\ 15971(defvar locate-ls-subdir-switches "-al" "\
@@ -16182,8 +16022,8 @@ Major mode for browsing CVS log output.
16182 16022
16183;;;*** 16023;;;***
16184 16024
16185;;;### (autoloads (longlines-mode) "longlines" "longlines.el" (17238 16025;;;### (autoloads (longlines-mode) "longlines" "longlines.el" (17257
16186;;;;;; 21257)) 16026;;;;;; 22483))
16187;;; Generated autoloads from longlines.el 16027;;; Generated autoloads from longlines.el
16188 16028
16189(autoload (quote longlines-mode) "longlines" "\ 16029(autoload (quote longlines-mode) "longlines" "\
@@ -16324,8 +16164,8 @@ This function is suitable for execution in a .emacs file.
16324 16164
16325;;;*** 16165;;;***
16326 16166
16327;;;### (autoloads (m4-mode) "m4-mode" "progmodes/m4-mode.el" (17187 16167;;;### (autoloads (m4-mode) "m4-mode" "progmodes/m4-mode.el" (17277
16328;;;;;; 59902)) 16168;;;;;; 60154))
16329;;; Generated autoloads from progmodes/m4-mode.el 16169;;; Generated autoloads from progmodes/m4-mode.el
16330 16170
16331(autoload (quote m4-mode) "m4-mode" "\ 16171(autoload (quote m4-mode) "m4-mode" "\
@@ -16639,7 +16479,7 @@ The mail client is taken to be the handler of mailto URLs.
16639 16479
16640;;;### (autoloads (makefile-bsdmake-mode makefile-makepp-mode makefile-gmake-mode 16480;;;### (autoloads (makefile-bsdmake-mode makefile-makepp-mode makefile-gmake-mode
16641;;;;;; makefile-automake-mode makefile-mode) "make-mode" "progmodes/make-mode.el" 16481;;;;;; makefile-automake-mode makefile-mode) "make-mode" "progmodes/make-mode.el"
16642;;;;;; (17238 21257)) 16482;;;;;; (17277 60154))
16643;;; Generated autoloads from progmodes/make-mode.el 16483;;; Generated autoloads from progmodes/make-mode.el
16644 16484
16645(autoload (quote makefile-mode) "make-mode" "\ 16485(autoload (quote makefile-mode) "make-mode" "\
@@ -16763,7 +16603,7 @@ Previous contents of that buffer are killed first.
16763 16603
16764;;;*** 16604;;;***
16765 16605
16766;;;### (autoloads (man-follow man) "man" "man.el" (17238 21257)) 16606;;;### (autoloads (man-follow man) "man" "man.el" (17277 59650))
16767;;; Generated autoloads from man.el 16607;;; Generated autoloads from man.el
16768 16608
16769(defalias (quote manual-entry) (quote man)) 16609(defalias (quote manual-entry) (quote man))
@@ -16812,8 +16652,8 @@ yourself the value of `master-of' by calling `master-show-slave'.
16812 16652
16813;;;*** 16653;;;***
16814 16654
16815;;;### (autoloads (menu-bar-mode) "menu-bar" "menu-bar.el" (17254 16655;;;### (autoloads (menu-bar-mode) "menu-bar" "menu-bar.el" (17277
16816;;;;;; 63790)) 16656;;;;;; 59650))
16817;;; Generated autoloads from menu-bar.el 16657;;; Generated autoloads from menu-bar.el
16818 16658
16819(put (quote menu-bar-mode) (quote standard-value) (quote (t))) 16659(put (quote menu-bar-mode) (quote standard-value) (quote (t)))
@@ -16849,7 +16689,7 @@ turn on menu bars; otherwise, turn off menu bars.
16849;;;;;; message-cite-function message-yank-prefix message-citation-line-function 16689;;;;;; message-cite-function message-yank-prefix message-citation-line-function
16850;;;;;; message-send-mail-function message-user-organization-file 16690;;;;;; message-send-mail-function message-user-organization-file
16851;;;;;; message-signature-separator message-from-style) "message" 16691;;;;;; message-signature-separator message-from-style) "message"
16852;;;;;; "gnus/message.el" (17254 63788)) 16692;;;;;; "gnus/message.el" (17277 60154))
16853;;; Generated autoloads from gnus/message.el 16693;;; Generated autoloads from gnus/message.el
16854 16694
16855(defvar message-from-style (quote default) "\ 16695(defvar message-from-style (quote default) "\
@@ -17103,7 +16943,7 @@ which specify the range to operate on.
17103;;;*** 16943;;;***
17104 16944
17105;;;### (autoloads (metapost-mode metafont-mode) "meta-mode" "progmodes/meta-mode.el" 16945;;;### (autoloads (metapost-mode metafont-mode) "meta-mode" "progmodes/meta-mode.el"
17106;;;;;; (17238 21257)) 16946;;;;;; (17277 60154))
17107;;; Generated autoloads from progmodes/meta-mode.el 16947;;; Generated autoloads from progmodes/meta-mode.el
17108 16948
17109(autoload (quote metafont-mode) "meta-mode" "\ 16949(autoload (quote metafont-mode) "meta-mode" "\
@@ -17173,26 +17013,29 @@ redisplayed as output is inserted.
17173 17013
17174;;;*** 17014;;;***
17175 17015
17176;;;### (autoloads (mh-letter-mode mh-smail-other-window mh-user-agent-compose 17016;;;### (autoloads (mh-letter-mode mh-user-agent-compose mh-smail-batch
17177;;;;;; mh-smail-batch mh-smail) "mh-comp" "mh-e/mh-comp.el" (17254 17017;;;;;; mh-smail-other-window mh-smail) "mh-comp" "mh-e/mh-comp.el"
17178;;;;;; 63790)) 17018;;;;;; (17263 27852))
17179;;; Generated autoloads from mh-e/mh-comp.el 17019;;; Generated autoloads from mh-e/mh-comp.el
17180 17020
17181(autoload (quote mh-smail) "mh-comp" "\ 17021(autoload (quote mh-smail) "mh-comp" "\
17182Compose and send mail with the MH mail system. 17022Compose a message with the MH mail system.
17183This function is an entry point to MH-E, the Emacs interface to the MH mail 17023See `mh-send' for more details on composing mail.
17184system. 17024
17025\(fn)" t nil)
17185 17026
17027(autoload (quote mh-smail-other-window) "mh-comp" "\
17028Compose a message with the MH mail system in other window.
17186See `mh-send' for more details on composing mail. 17029See `mh-send' for more details on composing mail.
17187 17030
17188\(fn)" t nil) 17031\(fn)" t nil)
17189 17032
17190(autoload (quote mh-smail-batch) "mh-comp" "\ 17033(autoload (quote mh-smail-batch) "mh-comp" "\
17191Set up a mail composition draft with the MH mail system. 17034Compose a message with the MH mail system.
17192This function is an entry point to MH-E, the Emacs interface to the MH mail 17035
17193system. This function does not prompt the user for any header fields, and thus 17036This function does not prompt the user for any header fields, and thus
17194is suitable for use by programs that want to create a mail buffer. Users 17037is suitable for use by programs that want to create a mail buffer. Users
17195should use `mh-smail' to compose mail. 17038should use \\[mh-smail] to compose mail.
17196 17039
17197Optional arguments for setting certain fields include TO, SUBJECT, and 17040Optional arguments for setting certain fields include TO, SUBJECT, and
17198OTHER-HEADERS. Additional arguments are IGNORED. 17041OTHER-HEADERS. Additional arguments are IGNORED.
@@ -17214,15 +17057,6 @@ CONTINUE, SWITCH-FUNCTION, YANK-ACTION and SEND-ACTIONS are ignored.
17214 17057
17215\(fn &optional TO SUBJECT OTHER-HEADERS CONTINUE SWITCH-FUNCTION YANK-ACTION SEND-ACTIONS)" nil nil) 17058\(fn &optional TO SUBJECT OTHER-HEADERS CONTINUE SWITCH-FUNCTION YANK-ACTION SEND-ACTIONS)" nil nil)
17216 17059
17217(autoload (quote mh-smail-other-window) "mh-comp" "\
17218Compose and send mail in other window with the MH mail system.
17219This function is an entry point to MH-E, the Emacs interface to the MH mail
17220system.
17221
17222See `mh-send' for more details on composing mail.
17223
17224\(fn)" t nil)
17225
17226(autoload (quote mh-letter-mode) "mh-comp" "\ 17060(autoload (quote mh-letter-mode) "mh-comp" "\
17227Mode for composing letters in MH-E.\\<mh-letter-mode-map> 17061Mode for composing letters in MH-E.\\<mh-letter-mode-map>
17228 17062
@@ -17247,7 +17081,7 @@ When a message is composed, the hooks `text-mode-hook' and
17247;;;*** 17081;;;***
17248 17082
17249;;;### (autoloads (mh-folder-mode mh-version mh-nmail mh-rmail) "mh-e" 17083;;;### (autoloads (mh-folder-mode mh-version mh-nmail mh-rmail) "mh-e"
17250;;;;;; "mh-e/mh-e.el" (17254 63790)) 17084;;;;;; "mh-e/mh-e.el" (17263 27852))
17251;;; Generated autoloads from mh-e/mh-e.el 17085;;; Generated autoloads from mh-e/mh-e.el
17252 17086
17253(autoload (quote mh-rmail) "mh-e" "\ 17087(autoload (quote mh-rmail) "mh-e" "\
@@ -17325,7 +17159,7 @@ messages in that region.
17325 17159
17326;;;*** 17160;;;***
17327 17161
17328;;;### (autoloads nil "mh-init" "mh-e/mh-init.el" (17238 21257)) 17162;;;### (autoloads nil "mh-init" "mh-e/mh-init.el" (17263 27852))
17329;;; Generated autoloads from mh-e/mh-init.el 17163;;; Generated autoloads from mh-e/mh-init.el
17330 17164
17331(put (quote mh-progs) (quote risky-local-variable) t) 17165(put (quote mh-progs) (quote risky-local-variable) t)
@@ -17545,7 +17379,7 @@ Not documented
17545;;;*** 17379;;;***
17546 17380
17547;;;### (autoloads (modula-2-mode) "modula2" "progmodes/modula2.el" 17381;;;### (autoloads (modula-2-mode) "modula2" "progmodes/modula2.el"
17548;;;;;; (17187 59880)) 17382;;;;;; (17277 60154))
17549;;; Generated autoloads from progmodes/modula2.el 17383;;; Generated autoloads from progmodes/modula2.el
17550 17384
17551(autoload (quote modula-2-mode) "modula2" "\ 17385(autoload (quote modula-2-mode) "modula2" "\
@@ -17986,7 +17820,7 @@ basis, this may not be accurate.
17986;;;*** 17820;;;***
17987 17821
17988;;;### (autoloads (mwheel-install mouse-wheel-mode) "mwheel" "mwheel.el" 17822;;;### (autoloads (mwheel-install mouse-wheel-mode) "mwheel" "mwheel.el"
17989;;;;;; (17187 59902)) 17823;;;;;; (17263 27079))
17990;;; Generated autoloads from mwheel.el 17824;;; Generated autoloads from mwheel.el
17991 17825
17992(defvar mouse-wheel-mode nil "\ 17826(defvar mouse-wheel-mode nil "\
@@ -18112,7 +17946,7 @@ Open a network connection to HOST on PORT.
18112;;;;;; comment-kill comment-set-column comment-indent comment-indent-default 17946;;;;;; comment-kill comment-set-column comment-indent comment-indent-default
18113;;;;;; comment-normalize-vars comment-multi-line comment-padding 17947;;;;;; comment-normalize-vars comment-multi-line comment-padding
18114;;;;;; comment-style comment-column) "newcomment" "newcomment.el" 17948;;;;;; comment-style comment-column) "newcomment" "newcomment.el"
18115;;;;;; (17187 59902)) 17949;;;;;; (17263 27852))
18116;;; Generated autoloads from newcomment.el 17950;;; Generated autoloads from newcomment.el
18117 17951
18118(defalias (quote indent-for-comment) (quote comment-indent)) 17952(defalias (quote indent-for-comment) (quote comment-indent))
@@ -18293,8 +18127,9 @@ unless optional argument SOFT is non-nil.
18293 18127
18294;;;*** 18128;;;***
18295 18129
18296;;;### (autoloads (newsticker-show-news newsticker-start) "newsticker" 18130;;;### (autoloads (newsticker-ticker-running-p newsticker-running-p
18297;;;;;; "net/newsticker.el" (17229 28054)) 18131;;;;;; newsticker-show-news newsticker-start-ticker newsticker-start)
18132;;;;;; "newsticker" "net/newsticker.el" (17263 27852))
18298;;; Generated autoloads from net/newsticker.el 18133;;; Generated autoloads from net/newsticker.el
18299 18134
18300(autoload (quote newsticker-start) "newsticker" "\ 18135(autoload (quote newsticker-start) "newsticker" "\
@@ -18306,11 +18141,33 @@ Run `newsticker-start-hook' if newsticker was not running already.
18306 18141
18307\(fn &optional DO-NOT-COMPLAIN-IF-RUNNING)" t nil) 18142\(fn &optional DO-NOT-COMPLAIN-IF-RUNNING)" t nil)
18308 18143
18144(autoload (quote newsticker-start-ticker) "newsticker" "\
18145Start newsticker's ticker (but not the news retrieval).
18146Start display timer for the actual ticker if wanted and not
18147running already.
18148
18149\(fn)" t nil)
18150
18309(autoload (quote newsticker-show-news) "newsticker" "\ 18151(autoload (quote newsticker-show-news) "newsticker" "\
18310Switch to newsticker buffer. You may want to bind this to a key. 18152Switch to newsticker buffer. You may want to bind this to a key.
18311 18153
18312\(fn)" t nil) 18154\(fn)" t nil)
18313 18155
18156(autoload (quote newsticker-running-p) "newsticker" "\
18157Check whether newsticker is running.
18158Return t if newsticker is running, nil otherwise. Newsticker is
18159considered to be running if the newsticker timer list is not empty.
18160
18161\(fn)" nil nil)
18162
18163(autoload (quote newsticker-ticker-running-p) "newsticker" "\
18164Check whether newsticker's actual ticker is running.
18165Return t if ticker is running, nil otherwise. Newsticker is
18166considered to be running if the newsticker timer list is not
18167empty.
18168
18169\(fn)" nil nil)
18170
18314;;;*** 18171;;;***
18315 18172
18316;;;### (autoloads (nndiary-generate-nov-databases) "nndiary" "gnus/nndiary.el" 18173;;;### (autoloads (nndiary-generate-nov-databases) "nndiary" "gnus/nndiary.el"
@@ -18429,7 +18286,7 @@ to future sessions.
18429;;;*** 18286;;;***
18430 18287
18431;;;### (autoloads (nroff-mode) "nroff-mode" "textmodes/nroff-mode.el" 18288;;;### (autoloads (nroff-mode) "nroff-mode" "textmodes/nroff-mode.el"
18432;;;;;; (17187 59902)) 18289;;;;;; (17277 60154))
18433;;; Generated autoloads from textmodes/nroff-mode.el 18290;;; Generated autoloads from textmodes/nroff-mode.el
18434 18291
18435(autoload (quote nroff-mode) "nroff-mode" "\ 18292(autoload (quote nroff-mode) "nroff-mode" "\
@@ -18481,7 +18338,7 @@ startup file, `~/.emacs-octave'.
18481;;;*** 18338;;;***
18482 18339
18483;;;### (autoloads (octave-mode) "octave-mod" "progmodes/octave-mod.el" 18340;;;### (autoloads (octave-mode) "octave-mod" "progmodes/octave-mod.el"
18484;;;;;; (17238 21257)) 18341;;;;;; (17277 60154))
18485;;; Generated autoloads from progmodes/octave-mod.el 18342;;; Generated autoloads from progmodes/octave-mod.el
18486 18343
18487(autoload (quote octave-mode) "octave-mod" "\ 18344(autoload (quote octave-mode) "octave-mod" "\
@@ -18604,7 +18461,7 @@ The Custom feature is intended to make this obsolete.
18604;;;### (autoloads (org-export-icalendar-combine-agenda-files org-export-icalendar-all-agenda-files 18461;;;### (autoloads (org-export-icalendar-combine-agenda-files org-export-icalendar-all-agenda-files
18605;;;;;; orgtbl-mode turn-on-orgtbl org-remember-handler org-remember-annotation 18462;;;;;; orgtbl-mode turn-on-orgtbl org-remember-handler org-remember-annotation
18606;;;;;; org-store-link org-diary org-agenda org-agenda-mode org-mode) 18463;;;;;; org-store-link org-diary org-agenda org-agenda-mode org-mode)
18607;;;;;; "org" "textmodes/org.el" (17244 4914)) 18464;;;;;; "org" "textmodes/org.el" (17277 59650))
18608;;; Generated autoloads from textmodes/org.el 18465;;; Generated autoloads from textmodes/org.el
18609 18466
18610(autoload (quote org-mode) "org" "\ 18467(autoload (quote org-mode) "org" "\
@@ -18868,8 +18725,8 @@ unknown are returned as nil.
18868 18725
18869;;;*** 18726;;;***
18870 18727
18871;;;### (autoloads (pascal-mode) "pascal" "progmodes/pascal.el" (17238 18728;;;### (autoloads (pascal-mode) "pascal" "progmodes/pascal.el" (17277
18872;;;;;; 21257)) 18729;;;;;; 60154))
18873;;; Generated autoloads from progmodes/pascal.el 18730;;; Generated autoloads from progmodes/pascal.el
18874 18731
18875(autoload (quote pascal-mode) "pascal" "\ 18732(autoload (quote pascal-mode) "pascal" "\
@@ -19285,7 +19142,7 @@ The exact behavior is determined also by `cvs-dired-use-hook'." (when (stringp d
19285;;;*** 19142;;;***
19286 19143
19287;;;### (autoloads (perl-mode) "perl-mode" "progmodes/perl-mode.el" 19144;;;### (autoloads (perl-mode) "perl-mode" "progmodes/perl-mode.el"
19288;;;;;; (17187 59914)) 19145;;;;;; (17277 60154))
19289;;; Generated autoloads from progmodes/perl-mode.el 19146;;; Generated autoloads from progmodes/perl-mode.el
19290 19147
19291(autoload (quote perl-mode) "perl-mode" "\ 19148(autoload (quote perl-mode) "perl-mode" "\
@@ -19342,55 +19199,101 @@ Turning on Perl mode runs the normal hook `perl-mode-hook'.
19342 19199
19343;;;### (autoloads (pgg-snarf-keys pgg-snarf-keys-region pgg-insert-key 19200;;;### (autoloads (pgg-snarf-keys pgg-snarf-keys-region pgg-insert-key
19344;;;;;; pgg-verify pgg-verify-region pgg-sign pgg-sign-region pgg-decrypt 19201;;;;;; pgg-verify pgg-verify-region pgg-sign pgg-sign-region pgg-decrypt
19345;;;;;; pgg-decrypt-region pgg-encrypt pgg-encrypt-region) "pgg" 19202;;;;;; pgg-decrypt-region pgg-encrypt pgg-encrypt-symmetric pgg-encrypt-symmetric-region
19346;;;;;; "pgg.el" (17187 59901)) 19203;;;;;; pgg-encrypt-region) "pgg" "pgg.el" (17263 27852))
19347;;; Generated autoloads from pgg.el 19204;;; Generated autoloads from pgg.el
19348 19205
19349(autoload (quote pgg-encrypt-region) "pgg" "\ 19206(autoload (quote pgg-encrypt-region) "pgg" "\
19350Encrypt the current region between START and END for RCPTS. 19207Encrypt the current region between START and END for RCPTS.
19208
19351If optional argument SIGN is non-nil, do a combined sign and encrypt. 19209If optional argument SIGN is non-nil, do a combined sign and encrypt.
19352 19210
19353\(fn START END RCPTS &optional SIGN)" t nil) 19211If optional PASSPHRASE is not specified, it will be obtained from the
19212passphrase cache or user.
19213
19214\(fn START END RCPTS &optional SIGN PASSPHRASE)" t nil)
19215
19216(autoload (quote pgg-encrypt-symmetric-region) "pgg" "\
19217Encrypt the current region between START and END symmetric with passphrase.
19218
19219If optional PASSPHRASE is not specified, it will be obtained from the
19220cache or user.
19221
19222\(fn START END &optional PASSPHRASE)" t nil)
19223
19224(autoload (quote pgg-encrypt-symmetric) "pgg" "\
19225Encrypt the current buffer using a symmetric, rather than key-pair, cipher.
19226
19227If optional arguments START and END are specified, only encrypt within
19228the region.
19229
19230If optional PASSPHRASE is not specified, it will be obtained from the
19231passphrase cache or user.
19232
19233\(fn &optional START END PASSPHRASE)" t nil)
19354 19234
19355(autoload (quote pgg-encrypt) "pgg" "\ 19235(autoload (quote pgg-encrypt) "pgg" "\
19356Encrypt the current buffer for RCPTS. 19236Encrypt the current buffer for RCPTS.
19237
19357If optional argument SIGN is non-nil, do a combined sign and encrypt. 19238If optional argument SIGN is non-nil, do a combined sign and encrypt.
19239
19358If optional arguments START and END are specified, only encrypt within 19240If optional arguments START and END are specified, only encrypt within
19359the region. 19241the region.
19360 19242
19361\(fn RCPTS &optional SIGN START END)" t nil) 19243If optional PASSPHRASE is not specified, it will be obtained from the
19244passphrase cache or user.
19245
19246\(fn RCPTS &optional SIGN START END PASSPHRASE)" t nil)
19362 19247
19363(autoload (quote pgg-decrypt-region) "pgg" "\ 19248(autoload (quote pgg-decrypt-region) "pgg" "\
19364Decrypt the current region between START and END. 19249Decrypt the current region between START and END.
19365 19250
19366\(fn START END)" t nil) 19251If optional PASSPHRASE is not specified, it will be obtained from the
19252passphrase cache or user.
19253
19254\(fn START END &optional PASSPHRASE)" t nil)
19367 19255
19368(autoload (quote pgg-decrypt) "pgg" "\ 19256(autoload (quote pgg-decrypt) "pgg" "\
19369Decrypt the current buffer. 19257Decrypt the current buffer.
19258
19370If optional arguments START and END are specified, only decrypt within 19259If optional arguments START and END are specified, only decrypt within
19371the region. 19260the region.
19372 19261
19373\(fn &optional START END)" t nil) 19262If optional PASSPHRASE is not specified, it will be obtained from the
19263passphrase cache or user.
19264
19265\(fn &optional START END PASSPHRASE)" t nil)
19374 19266
19375(autoload (quote pgg-sign-region) "pgg" "\ 19267(autoload (quote pgg-sign-region) "pgg" "\
19376Make the signature from text between START and END. 19268Make the signature from text between START and END.
19269
19377If the optional 3rd argument CLEARTEXT is non-nil, it does not create 19270If the optional 3rd argument CLEARTEXT is non-nil, it does not create
19378a detached signature. 19271a detached signature.
19272
19379If this function is called interactively, CLEARTEXT is enabled 19273If this function is called interactively, CLEARTEXT is enabled
19380and the the output is displayed. 19274and the the output is displayed.
19381 19275
19382\(fn START END &optional CLEARTEXT)" t nil) 19276If optional PASSPHRASE is not specified, it will be obtained from the
19277passphrase cache or user.
19278
19279\(fn START END &optional CLEARTEXT PASSPHRASE)" t nil)
19383 19280
19384(autoload (quote pgg-sign) "pgg" "\ 19281(autoload (quote pgg-sign) "pgg" "\
19385Sign the current buffer. 19282Sign the current buffer.
19283
19386If the optional argument CLEARTEXT is non-nil, it does not create a 19284If the optional argument CLEARTEXT is non-nil, it does not create a
19387detached signature. 19285detached signature.
19286
19388If optional arguments START and END are specified, only sign data 19287If optional arguments START and END are specified, only sign data
19389within the region. 19288within the region.
19289
19390If this function is called interactively, CLEARTEXT is enabled 19290If this function is called interactively, CLEARTEXT is enabled
19391and the the output is displayed. 19291and the the output is displayed.
19392 19292
19393\(fn &optional CLEARTEXT START END)" t nil) 19293If optional PASSPHRASE is not specified, it will be obtained from the
19294passphrase cache or user.
19295
19296\(fn &optional CLEARTEXT START END PASSPHRASE)" t nil)
19394 19297
19395(autoload (quote pgg-verify-region) "pgg" "\ 19298(autoload (quote pgg-verify-region) "pgg" "\
19396Verify the current region between START and END. 19299Verify the current region between START and END.
@@ -19430,6 +19333,17 @@ Import public keys in the current buffer.
19430 19333
19431;;;*** 19334;;;***
19432 19335
19336;;;### (autoloads (pgg-gpg-symmetric-key-p) "pgg-gpg" "pgg-gpg.el"
19337;;;;;; (17263 27852))
19338;;; Generated autoloads from pgg-gpg.el
19339
19340(autoload (quote pgg-gpg-symmetric-key-p) "pgg-gpg" "\
19341True if decoded armor MESSAGE-KEYS has symmetric encryption indicator.
19342
19343\(fn MESSAGE-KEYS)" nil nil)
19344
19345;;;***
19346
19433;;;### (autoloads (picture-mode) "picture" "textmodes/picture.el" 19347;;;### (autoloads (picture-mode) "picture" "textmodes/picture.el"
19434;;;;;; (17187 59902)) 19348;;;;;; (17187 59902))
19435;;; Generated autoloads from textmodes/picture.el 19349;;; Generated autoloads from textmodes/picture.el
@@ -19589,7 +19503,7 @@ Ignores leading comment characters.
19589;;;;;; pr-ps-buffer-print pr-ps-buffer-using-ghostscript pr-ps-buffer-preview 19503;;;;;; pr-ps-buffer-print pr-ps-buffer-using-ghostscript pr-ps-buffer-preview
19590;;;;;; pr-ps-directory-ps-print pr-ps-directory-print pr-ps-directory-using-ghostscript 19504;;;;;; pr-ps-directory-ps-print pr-ps-directory-print pr-ps-directory-using-ghostscript
19591;;;;;; pr-ps-directory-preview pr-interface) "printing" "printing.el" 19505;;;;;; pr-ps-directory-preview pr-interface) "printing" "printing.el"
19592;;;;;; (17226 24577)) 19506;;;;;; (17277 59650))
19593;;; Generated autoloads from printing.el 19507;;; Generated autoloads from printing.el
19594 19508
19595(autoload (quote pr-interface) "printing" "\ 19509(autoload (quote pr-interface) "printing" "\
@@ -20177,7 +20091,7 @@ are both set to t.
20177;;;*** 20091;;;***
20178 20092
20179;;;### (autoloads (run-prolog prolog-mode) "prolog" "progmodes/prolog.el" 20093;;;### (autoloads (run-prolog prolog-mode) "prolog" "progmodes/prolog.el"
20180;;;;;; (17187 59902)) 20094;;;;;; (17277 60154))
20181;;; Generated autoloads from progmodes/prolog.el 20095;;; Generated autoloads from progmodes/prolog.el
20182 20096
20183(autoload (quote prolog-mode) "prolog" "\ 20097(autoload (quote prolog-mode) "prolog" "\
@@ -20206,8 +20120,8 @@ The default value is '(\"/usr/local/share/emacs/fonts/bdf\").")
20206 20120
20207;;;*** 20121;;;***
20208 20122
20209;;;### (autoloads (ps-mode) "ps-mode" "progmodes/ps-mode.el" (17226 20123;;;### (autoloads (ps-mode) "ps-mode" "progmodes/ps-mode.el" (17277
20210;;;;;; 24577)) 20124;;;;;; 60154))
20211;;; Generated autoloads from progmodes/ps-mode.el 20125;;; Generated autoloads from progmodes/ps-mode.el
20212 20126
20213(autoload (quote ps-mode) "ps-mode" "\ 20127(autoload (quote ps-mode) "ps-mode" "\
@@ -20662,7 +20576,7 @@ them into characters should be done separately.
20662;;;;;; quail-defrule quail-install-decode-map quail-install-map 20576;;;;;; quail-defrule quail-install-decode-map quail-install-map
20663;;;;;; quail-define-rules quail-show-keyboard-layout quail-set-keyboard-layout 20577;;;;;; quail-define-rules quail-show-keyboard-layout quail-set-keyboard-layout
20664;;;;;; quail-define-package quail-use-package quail-title) "quail" 20578;;;;;; quail-define-package quail-use-package quail-title) "quail"
20665;;;;;; "international/quail.el" (17226 24576)) 20579;;;;;; "international/quail.el" (17257 22483))
20666;;; Generated autoloads from international/quail.el 20580;;; Generated autoloads from international/quail.el
20667 20581
20668(autoload (quote quail-title) "quail" "\ 20582(autoload (quote quail-title) "quail" "\
@@ -20965,7 +20879,7 @@ Display `quickurl-list' as a formatted list using `quickurl-list-mode'.
20965 20879
20966;;;*** 20880;;;***
20967 20881
20968;;;### (autoloads (rcirc) "rcirc" "net/rcirc.el" (17244 4913)) 20882;;;### (autoloads (rcirc) "rcirc" "net/rcirc.el" (17263 27852))
20969;;; Generated autoloads from net/rcirc.el 20883;;; Generated autoloads from net/rcirc.el
20970 20884
20971(autoload (quote rcirc) "rcirc" "\ 20885(autoload (quote rcirc) "rcirc" "\
@@ -20973,7 +20887,7 @@ Connect to IRC.
20973 20887
20974If any of the the optional SERVER, PORT, NICK or CHANNELS are not 20888If any of the the optional SERVER, PORT, NICK or CHANNELS are not
20975supplied, they are taken from the variables `rcirc-server', 20889supplied, they are taken from the variables `rcirc-server',
20976`rcirc-port', `rcirc-nick', and `rcirc-startup-channels', 20890`rcirc-port', `rcirc-nick', and `rcirc-startup-channels-alist',
20977respectively. 20891respectively.
20978 20892
20979\(fn &optional SERVER PORT NICK CHANNELS)" t nil) 20893\(fn &optional SERVER PORT NICK CHANNELS)" t nil)
@@ -21177,7 +21091,7 @@ refilling if they would cause auto-filling.
21177;;;*** 21091;;;***
21178 21092
21179;;;### (autoloads (reftex-reset-scanning-information reftex-mode 21093;;;### (autoloads (reftex-reset-scanning-information reftex-mode
21180;;;;;; turn-on-reftex) "reftex" "textmodes/reftex.el" (17226 24578)) 21094;;;;;; turn-on-reftex) "reftex" "textmodes/reftex.el" (17277 59650))
21181;;; Generated autoloads from textmodes/reftex.el 21095;;; Generated autoloads from textmodes/reftex.el
21182 21096
21183(autoload (quote turn-on-reftex) "reftex" "\ 21097(autoload (quote turn-on-reftex) "reftex" "\
@@ -21436,7 +21350,7 @@ Clear out the file used for transmitting args when Emacs resumes.
21436;;;*** 21350;;;***
21437 21351
21438;;;### (autoloads (global-reveal-mode reveal-mode) "reveal" "reveal.el" 21352;;;### (autoloads (global-reveal-mode reveal-mode) "reveal" "reveal.el"
21439;;;;;; (17187 59902)) 21353;;;;;; (17277 59650))
21440;;; Generated autoloads from reveal.el 21354;;; Generated autoloads from reveal.el
21441 21355
21442(autoload (quote reveal-mode) "reveal" "\ 21356(autoload (quote reveal-mode) "reveal" "\
@@ -21471,52 +21385,6 @@ With zero or negative ARG turn mode off.
21471 21385
21472;;;*** 21386;;;***
21473 21387
21474;;;### (autoloads (file-name-shadow-mode file-name-shadow-tty-properties
21475;;;;;; file-name-shadow-properties) "rfn-eshadow" "rfn-eshadow.el"
21476;;;;;; (17187 59902))
21477;;; Generated autoloads from rfn-eshadow.el
21478
21479(defvar file-name-shadow-properties (quote (face file-name-shadow field shadow)) "\
21480Properties given to the `shadowed' part of a filename in the minibuffer.
21481Only used when `file-name-shadow-mode' is active.
21482If emacs is not running under a window system,
21483`file-name-shadow-tty-properties' is used instead.")
21484
21485(custom-autoload (quote file-name-shadow-properties) "rfn-eshadow")
21486
21487(defvar file-name-shadow-tty-properties (quote (before-string "{" after-string "} " field shadow)) "\
21488Properties given to the `shadowed' part of a filename in the minibuffer.
21489Only used when `file-name-shadow-mode' is active and emacs
21490is not running under a window-system; if emacs is running under a window
21491system, `file-name-shadow-properties' is used instead.")
21492
21493(custom-autoload (quote file-name-shadow-tty-properties) "rfn-eshadow")
21494
21495(defvar file-name-shadow-mode nil "\
21496Non-nil if File-Name-Shadow mode is enabled.
21497See the command `file-name-shadow-mode' for a description of this minor-mode.
21498Setting this variable directly does not take effect;
21499use either \\[customize] or the function `file-name-shadow-mode'.")
21500
21501(custom-autoload (quote file-name-shadow-mode) "rfn-eshadow")
21502
21503(put (quote file-name-shadow-mode) (quote custom-set) (quote custom-set-minor-mode))
21504
21505(autoload (quote file-name-shadow-mode) "rfn-eshadow" "\
21506Toggle File-Name Shadow mode.
21507When active, any part of a filename being read in the minibuffer
21508that would be ignored (because the result is passed through
21509`substitute-in-file-name') is given the properties in
21510`file-name-shadow-properties', which can be used to make
21511that portion dim, invisible, or otherwise less visually noticeable.
21512
21513With prefix argument ARG, turn on if positive, otherwise off.
21514Returns non-nil if the new state is enabled.
21515
21516\(fn &optional ARG)" t nil)
21517
21518;;;***
21519
21520;;;### (autoloads (make-ring ring-p) "ring" "emacs-lisp/ring.el" 21388;;;### (autoloads (make-ring ring-p) "ring" "emacs-lisp/ring.el"
21521;;;;;; (17187 59901)) 21389;;;;;; (17187 59901))
21522;;; Generated autoloads from emacs-lisp/ring.el 21390;;; Generated autoloads from emacs-lisp/ring.el
@@ -21908,7 +21776,7 @@ If FILE-NAME is empty, remove any existing inbox list.
21908 21776
21909;;;### (autoloads (rmail-output-body-to-file rmail-output rmail-fields-not-to-output 21777;;;### (autoloads (rmail-output-body-to-file rmail-output rmail-fields-not-to-output
21910;;;;;; rmail-output-to-rmail-file rmail-output-file-alist) "rmailout" 21778;;;;;; rmail-output-to-rmail-file rmail-output-file-alist) "rmailout"
21911;;;;;; "mail/rmailout.el" (17226 24576)) 21779;;;;;; "mail/rmailout.el" (17263 27852))
21912;;; Generated autoloads from mail/rmailout.el 21780;;; Generated autoloads from mail/rmailout.el
21913 21781
21914(defvar rmail-output-file-alist nil "\ 21782(defvar rmail-output-file-alist nil "\
@@ -21932,11 +21800,11 @@ appended in inbox format, the same way `rmail-output' does it.
21932The default file name comes from `rmail-default-rmail-file', 21800The default file name comes from `rmail-default-rmail-file',
21933which is updated to the name you use in this command. 21801which is updated to the name you use in this command.
21934 21802
21935A prefix argument N says to output N consecutive messages 21803A prefix argument COUNT says to output that many consecutive messages,
21936starting with the current one. Deleted messages are skipped and don't count. 21804starting with the current one. Deleted messages are skipped and don't count.
21937 21805
21938If optional argument STAY is non-nil, then leave the last filed 21806If the optional argument STAY is non-nil, then leave the last filed
21939mesasge up instead of moving forward to the next non-deleted message. 21807message up instead of moving forward to the next non-deleted message.
21940 21808
21941\(fn FILE-NAME &optional COUNT STAY)" t nil) 21809\(fn FILE-NAME &optional COUNT STAY)" t nil)
21942 21810
@@ -21947,9 +21815,9 @@ mesasge up instead of moving forward to the next non-deleted message.
21947 21815
21948(autoload (quote rmail-output) "rmailout" "\ 21816(autoload (quote rmail-output) "rmailout" "\
21949Append this message to system-inbox-format mail file named FILE-NAME. 21817Append this message to system-inbox-format mail file named FILE-NAME.
21950A prefix argument N says to output N consecutive messages 21818A prefix argument COUNT says to output that many consecutive messages,
21951starting with the current one. Deleted messages are skipped and don't count. 21819starting with the current one. Deleted messages are skipped and don't count.
21952When called from lisp code, N may be omitted. 21820When called from lisp code, COUNT may be omitted and defaults to 1.
21953 21821
21954If the pruned message header is shown on the current message, then 21822If the pruned message header is shown on the current message, then
21955messages will be appended with pruned headers; otherwise, messages 21823messages will be appended with pruned headers; otherwise, messages
@@ -22523,34 +22391,34 @@ enclosed in `(and ...)'.
22523 22391
22524;;;*** 22392;;;***
22525 22393
22526;;;### (autoloads (savehist-save savehist-load) "savehist" "savehist.el" 22394;;;### (autoloads (savehist-mode savehist-mode) "savehist" "savehist.el"
22527;;;;;; (17254 63791)) 22395;;;;;; (17277 59650))
22528;;; Generated autoloads from savehist.el 22396;;; Generated autoloads from savehist.el
22529 22397
22530(autoload (quote savehist-load) "savehist" "\ 22398(defvar savehist-mode nil "\
22531Load the minibuffer histories from `savehist-file'. 22399Mode for automatic saving of minibuffer history.
22532Unless NO-HOOK is specified, the function will also add the save function 22400Set this by calling the `savehist-mode' function or using the customize
22533to `kill-emacs-hook' and on a timer, ensuring that the minibuffer contents 22401interface.")
22534will be saved before leaving Emacs.
22535 22402
22536This function should be normally used from your Emacs init file. Since it 22403(custom-autoload (quote savehist-mode) "savehist")
22537removes your current minibuffer histories, it is unwise to call it at any
22538other time.
22539 22404
22540\(fn &optional NO-HOOK)" t nil) 22405(autoload (quote savehist-mode) "savehist" "\
22406Toggle savehist-mode.
22407Positive ARG turns on `savehist-mode'. When on, savehist-mode causes
22408minibuffer history to be saved periodically and when exiting Emacs.
22409When turned on for the first time in an Emacs session, it causes the
22410previous minibuffer history to be loaded from `savehist-file'.
22541 22411
22542(autoload (quote savehist-save) "savehist" "\ 22412This mode should normally be turned on from your Emacs init file.
22543Save the histories from `savehist-history-variables' to `savehist-file'. 22413Calling it at any other time replaces your current minibuffer histories,
22544Unbound symbols referenced in `savehist-history-variables' are ignored. 22414which is probably undesirable.
22545If AUTO-SAVE is non-nil, compare the saved contents to the one last saved,
22546 and don't save the buffer if they are the same.
22547 22415
22548\(fn &optional AUTO-SAVE)" t nil) 22416\(fn ARG)" t nil)
22549 22417
22550;;;*** 22418;;;***
22551 22419
22552;;;### (autoloads (dsssl-mode scheme-mode) "scheme" "progmodes/scheme.el" 22420;;;### (autoloads (dsssl-mode scheme-mode) "scheme" "progmodes/scheme.el"
22553;;;;;; (17226 24577)) 22421;;;;;; (17277 60154))
22554;;; Generated autoloads from progmodes/scheme.el 22422;;; Generated autoloads from progmodes/scheme.el
22555 22423
22556(autoload (quote scheme-mode) "scheme" "\ 22424(autoload (quote scheme-mode) "scheme" "\
@@ -22677,7 +22545,7 @@ during scrolling.
22677;;;;;; mail-alias-file mail-default-reply-to mail-archive-file-name 22545;;;;;; mail-alias-file mail-default-reply-to mail-archive-file-name
22678;;;;;; mail-header-separator send-mail-function mail-yank-ignored-headers 22546;;;;;; mail-header-separator send-mail-function mail-yank-ignored-headers
22679;;;;;; mail-interactive mail-self-blind mail-specify-envelope-from 22547;;;;;; mail-interactive mail-self-blind mail-specify-envelope-from
22680;;;;;; mail-from-style) "sendmail" "mail/sendmail.el" (17244 4913)) 22548;;;;;; mail-from-style) "sendmail" "mail/sendmail.el" (17277 60154))
22681;;; Generated autoloads from mail/sendmail.el 22549;;; Generated autoloads from mail/sendmail.el
22682 22550
22683(defvar mail-from-style (quote angles) "\ 22551(defvar mail-from-style (quote angles) "\
@@ -22977,23 +22845,10 @@ Like `mail' command, but display mail buffer in another frame.
22977 22845
22978;;;*** 22846;;;***
22979 22847
22980;;;### (autoloads (server-mode server-start server-getenv) "server" 22848;;;### (autoloads (server-mode server-start) "server" "server.el"
22981;;;;;; "server.el" (17254 64443)) 22849;;;;;; (17279 19612))
22982;;; Generated autoloads from server.el 22850;;; Generated autoloads from server.el
22983 22851
22984(autoload (quote server-getenv) "server" "\
22985Get the value of VARIABLE in the client environment of frame FRAME.
22986VARIABLE should be a string. Value is nil if VARIABLE is undefined in
22987the environment. Otherwise, value is a string.
22988
22989If FRAME is an emacsclient frame, then the variable is looked up
22990in the environment of the emacsclient process; otherwise the
22991function consults the environment of the Emacs process.
22992
22993If FRAME is nil or missing, then the selected frame is used.
22994
22995\(fn VARIABLE &optional FRAME)" nil nil)
22996
22997(autoload (quote server-start) "server" "\ 22852(autoload (quote server-start) "server" "\
22998Allow this Emacs process to be a server for client processes. 22853Allow this Emacs process to be a server for client processes.
22999This starts a server communications subprocess through which 22854This starts a server communications subprocess through which
@@ -23045,7 +22900,7 @@ These are active only in the minibuffer, when entering or editing a formula:
23045;;;*** 22900;;;***
23046 22901
23047;;;### (autoloads (html-mode sgml-mode) "sgml-mode" "textmodes/sgml-mode.el" 22902;;;### (autoloads (html-mode sgml-mode) "sgml-mode" "textmodes/sgml-mode.el"
23048;;;;;; (17187 59902)) 22903;;;;;; (17277 60154))
23049;;; Generated autoloads from textmodes/sgml-mode.el 22904;;; Generated autoloads from textmodes/sgml-mode.el
23050 22905
23051(autoload (quote sgml-mode) "sgml-mode" "\ 22906(autoload (quote sgml-mode) "sgml-mode" "\
@@ -23113,7 +22968,7 @@ To work around that, do:
23113;;;*** 22968;;;***
23114 22969
23115;;;### (autoloads (sh-mode) "sh-script" "progmodes/sh-script.el" 22970;;;### (autoloads (sh-mode) "sh-script" "progmodes/sh-script.el"
23116;;;;;; (17244 4914)) 22971;;;;;; (17277 60154))
23117;;; Generated autoloads from progmodes/sh-script.el 22972;;; Generated autoloads from progmodes/sh-script.el
23118 22973
23119(autoload (quote sh-mode) "sh-script" "\ 22974(autoload (quote sh-mode) "sh-script" "\
@@ -23361,8 +23216,8 @@ Turning on Sieve mode runs `sieve-mode-hook'.
23361 23216
23362;;;*** 23217;;;***
23363 23218
23364;;;### (autoloads (simula-mode) "simula" "progmodes/simula.el" (17187 23219;;;### (autoloads (simula-mode) "simula" "progmodes/simula.el" (17277
23365;;;;;; 59902)) 23220;;;;;; 60154))
23366;;; Generated autoloads from progmodes/simula.el 23221;;; Generated autoloads from progmodes/simula.el
23367 23222
23368(autoload (quote simula-mode) "simula" "\ 23223(autoload (quote simula-mode) "simula" "\
@@ -23521,7 +23376,7 @@ symmetrical ones, and the same character twice for the others.
23521;;;*** 23376;;;***
23522 23377
23523;;;### (autoloads (smerge-mode smerge-ediff) "smerge-mode" "smerge-mode.el" 23378;;;### (autoloads (smerge-mode smerge-ediff) "smerge-mode" "smerge-mode.el"
23524;;;;;; (17226 24577)) 23379;;;;;; (17257 22483))
23525;;; Generated autoloads from smerge-mode.el 23380;;; Generated autoloads from smerge-mode.el
23526 23381
23527(autoload (quote smerge-ediff) "smerge-mode" "\ 23382(autoload (quote smerge-ediff) "smerge-mode" "\
@@ -23558,7 +23413,7 @@ interactively. If there's no argument, do it at the current buffer
23558;;;*** 23413;;;***
23559 23414
23560;;;### (autoloads (smtpmail-send-queued-mail smtpmail-send-it) "smtpmail" 23415;;;### (autoloads (smtpmail-send-queued-mail smtpmail-send-it) "smtpmail"
23561;;;;;; "mail/smtpmail.el" (17187 59902)) 23416;;;;;; "mail/smtpmail.el" (17277 59650))
23562;;; Generated autoloads from mail/smtpmail.el 23417;;; Generated autoloads from mail/smtpmail.el
23563 23418
23564(autoload (quote smtpmail-send-it) "smtpmail" "\ 23419(autoload (quote smtpmail-send-it) "smtpmail" "\
@@ -24619,7 +24474,7 @@ Studlify-case the current buffer.
24619 24474
24620;;;*** 24475;;;***
24621 24476
24622;;;### (autoloads (locate-library) "subr" "subr.el" (17250 21630)) 24477;;;### (autoloads (locate-library) "subr" "subr.el" (17263 27852))
24623;;; Generated autoloads from subr.el 24478;;; Generated autoloads from subr.el
24624 24479
24625(autoload (quote locate-library) "subr" "\ 24480(autoload (quote locate-library) "subr" "\
@@ -24673,20 +24528,6 @@ before, and `sc-post-hook' is run after the guts of this function.
24673 24528
24674;;;*** 24529;;;***
24675 24530
24676;;;### (autoloads (syntax-ppss) "syntax" "emacs-lisp/syntax.el" (17244
24677;;;;;; 4913))
24678;;; Generated autoloads from emacs-lisp/syntax.el
24679
24680(autoload (quote syntax-ppss) "syntax" "\
24681Parse-Partial-Sexp State at POS.
24682The returned value is the same as `parse-partial-sexp' except that
24683the 2nd and 6th values of the returned state cannot be relied upon.
24684Point is at POS when this function returns.
24685
24686\(fn &optional POS)" nil nil)
24687
24688;;;***
24689
24690;;;### (autoloads (tabify untabify) "tabify" "tabify.el" (17187 59902)) 24531;;;### (autoloads (tabify untabify) "tabify" "tabify.el" (17187 59902))
24691;;; Generated autoloads from tabify.el 24532;;; Generated autoloads from tabify.el
24692 24533
@@ -25325,7 +25166,7 @@ Connect to the Emacs talk group from the current X display or tty frame.
25325 25166
25326;;;*** 25167;;;***
25327 25168
25328;;;### (autoloads (tar-mode) "tar-mode" "tar-mode.el" (17244 4914)) 25169;;;### (autoloads (tar-mode) "tar-mode" "tar-mode.el" (17277 59650))
25329;;; Generated autoloads from tar-mode.el 25170;;; Generated autoloads from tar-mode.el
25330 25171
25331(autoload (quote tar-mode) "tar-mode" "\ 25172(autoload (quote tar-mode) "tar-mode" "\
@@ -25337,7 +25178,7 @@ or click mouse-2 on the file's line in the Tar mode buffer.
25337Type `c' to copy an entry from the tar file into another file on disk. 25178Type `c' to copy an entry from the tar file into another file on disk.
25338 25179
25339If you edit a sub-file of this archive (as with the `e' command) and 25180If you edit a sub-file of this archive (as with the `e' command) and
25340save it with Control-x Control-s, the contents of that buffer will be 25181save it with \\[save-buffer], the contents of that buffer will be
25341saved back into the tar-file buffer; in this way you can edit a file 25182saved back into the tar-file buffer; in this way you can edit a file
25342inside of a tar archive without extracting it and re-archiving it. 25183inside of a tar archive without extracting it and re-archiving it.
25343 25184
@@ -25349,7 +25190,7 @@ See also: variables `tar-update-datestamp' and `tar-anal-blocksize'.
25349;;;*** 25190;;;***
25350 25191
25351;;;### (autoloads (tcl-help-on-word inferior-tcl tcl-mode) "tcl" 25192;;;### (autoloads (tcl-help-on-word inferior-tcl tcl-mode) "tcl"
25352;;;;;; "progmodes/tcl.el" (17187 59880)) 25193;;;;;; "progmodes/tcl.el" (17277 60154))
25353;;; Generated autoloads from progmodes/tcl.el 25194;;; Generated autoloads from progmodes/tcl.el
25354 25195
25355(autoload (quote tcl-mode) "tcl" "\ 25196(autoload (quote tcl-mode) "tcl" "\
@@ -25427,8 +25268,8 @@ Normally input is edited in Emacs and sent a line at a time.
25427 25268
25428;;;*** 25269;;;***
25429 25270
25430;;;### (autoloads (ansi-term term make-term) "term" "term.el" (17244 25271;;;### (autoloads (ansi-term term make-term) "term" "term.el" (17277
25431;;;;;; 4914)) 25272;;;;;; 59650))
25432;;; Generated autoloads from term.el 25273;;; Generated autoloads from term.el
25433 25274
25434(autoload (quote make-term) "term" "\ 25275(autoload (quote make-term) "term" "\
@@ -25877,7 +25718,7 @@ if large. You can use Info-split to do this manually.
25877;;;*** 25718;;;***
25878 25719
25879;;;### (autoloads (texinfo-mode texinfo-close-quote texinfo-open-quote) 25720;;;### (autoloads (texinfo-mode texinfo-close-quote texinfo-open-quote)
25880;;;;;; "texinfo" "textmodes/texinfo.el" (17244 4914)) 25721;;;;;; "texinfo" "textmodes/texinfo.el" (17277 60154))
25881;;; Generated autoloads from textmodes/texinfo.el 25722;;; Generated autoloads from textmodes/texinfo.el
25882 25723
25883(defvar texinfo-open-quote "``" "\ 25724(defvar texinfo-open-quote "``" "\
@@ -26065,7 +25906,7 @@ Not documented
26065 25906
26066;;;### (autoloads (thumbs-dired-setroot thumbs-dired-show-all thumbs-dired-show-marked 25907;;;### (autoloads (thumbs-dired-setroot thumbs-dired-show-all thumbs-dired-show-marked
26067;;;;;; thumbs-show-all-from-dir thumbs-find-thumb) "thumbs" "thumbs.el" 25908;;;;;; thumbs-show-all-from-dir thumbs-find-thumb) "thumbs" "thumbs.el"
26068;;;;;; (17187 59902)) 25909;;;;;; (17263 27852))
26069;;; Generated autoloads from thumbs.el 25910;;; Generated autoloads from thumbs.el
26070 25911
26071(autoload (quote thumbs-find-thumb) "thumbs" "\ 25912(autoload (quote thumbs-find-thumb) "thumbs" "\
@@ -26474,7 +26315,7 @@ relative only to the time worked today, and not to past time.
26474 26315
26475;;;### (autoloads (with-timeout run-with-idle-timer add-timeout run-with-timer 26316;;;### (autoloads (with-timeout run-with-idle-timer add-timeout run-with-timer
26476;;;;;; run-at-time cancel-function-timers cancel-timer) "timer" 26317;;;;;; run-at-time cancel-function-timers cancel-timer) "timer"
26477;;;;;; "emacs-lisp/timer.el" (17187 59901)) 26318;;;;;; "emacs-lisp/timer.el" (17263 27852))
26478;;; Generated autoloads from emacs-lisp/timer.el 26319;;; Generated autoloads from emacs-lisp/timer.el
26479 26320
26480(defalias (quote disable-timeout) (quote cancel-timer)) 26321(defalias (quote disable-timeout) (quote cancel-timer))
@@ -26693,29 +26534,10 @@ Show TODO list.
26693;;;*** 26534;;;***
26694 26535
26695;;;### (autoloads (tool-bar-local-item-from-menu tool-bar-add-item-from-menu 26536;;;### (autoloads (tool-bar-local-item-from-menu tool-bar-add-item-from-menu
26696;;;;;; tool-bar-local-item tool-bar-add-item tool-bar-mode) "tool-bar" 26537;;;;;; tool-bar-local-item tool-bar-add-item) "tool-bar" "tool-bar.el"
26697;;;;;; "tool-bar.el" (17238 21257)) 26538;;;;;; (17263 27852))
26698;;; Generated autoloads from tool-bar.el 26539;;; Generated autoloads from tool-bar.el
26699 26540
26700(defvar tool-bar-mode nil "\
26701Non-nil if Tool-Bar mode is enabled.
26702See the command `tool-bar-mode' for a description of this minor-mode.
26703Setting this variable directly does not take effect;
26704use either \\[customize] or the function `tool-bar-mode'.")
26705
26706(custom-autoload (quote tool-bar-mode) "tool-bar")
26707
26708(put (quote tool-bar-mode) (quote custom-set) (quote custom-set-minor-mode))
26709
26710(autoload (quote tool-bar-mode) "tool-bar" "\
26711Toggle use of the tool bar.
26712With numeric ARG, display the tool bar if and only if ARG is positive.
26713
26714See `tool-bar-add-item' and `tool-bar-add-item-from-menu' for
26715conveniently adding tool bar items.
26716
26717\(fn &optional ARG)" t nil)
26718
26719(put (quote tool-bar-mode) (quote standard-value) (quote (t))) 26541(put (quote tool-bar-mode) (quote standard-value) (quote (t)))
26720 26542
26721(autoload (quote tool-bar-add-item) "tool-bar" "\ 26543(autoload (quote tool-bar-add-item) "tool-bar" "\
@@ -26750,7 +26572,7 @@ ICON.xbm, using `find-image'.
26750\(fn ICON DEF KEY MAP &rest PROPS)" nil nil) 26572\(fn ICON DEF KEY MAP &rest PROPS)" nil nil)
26751 26573
26752(autoload (quote tool-bar-add-item-from-menu) "tool-bar" "\ 26574(autoload (quote tool-bar-add-item-from-menu) "tool-bar" "\
26753Define tool bar binding for COMMAND using the given ICON in keymap MAP. 26575Define tool bar binding for COMMAND in keymap MAP using the given ICON.
26754This makes a binding for COMMAND in `tool-bar-map', copying its 26576This makes a binding for COMMAND in `tool-bar-map', copying its
26755binding from the menu bar in MAP (which defaults to `global-map'), but 26577binding from the menu bar in MAP (which defaults to `global-map'), but
26756modifies the binding by adding an image specification for ICON. It 26578modifies the binding by adding an image specification for ICON. It
@@ -26760,19 +26582,20 @@ properties to add to the binding.
26760MAP must contain appropriate binding for `[menu-bar]' which holds a keymap. 26582MAP must contain appropriate binding for `[menu-bar]' which holds a keymap.
26761 26583
26762Use this function only to make bindings in the global value of `tool-bar-map'. 26584Use this function only to make bindings in the global value of `tool-bar-map'.
26763To define items in any other map, use `tool-bar-local-item'. 26585To define items in any other map, use `tool-bar-local-item-from-menu'.
26764 26586
26765\(fn COMMAND ICON &optional MAP &rest PROPS)" nil nil) 26587\(fn COMMAND ICON &optional MAP &rest PROPS)" nil nil)
26766 26588
26767(autoload (quote tool-bar-local-item-from-menu) "tool-bar" "\ 26589(autoload (quote tool-bar-local-item-from-menu) "tool-bar" "\
26768Define tool bar binding for COMMAND using the given ICON in keymap MAP. 26590Define local tool bar binding for COMMAND using the given ICON.
26769This makes a binding for COMMAND in IN-MAP, copying its binding from 26591This makes a binding for COMMAND in IN-MAP, copying its binding from
26770the menu bar in FROM-MAP (which defaults to `global-map'), but 26592the menu bar in FROM-MAP (which defaults to `global-map'), but
26771modifies the binding by adding an image specification for ICON. It 26593modifies the binding by adding an image specification for ICON. It
26772finds ICON just like `tool-bar-add-item'. PROPS are additional 26594finds ICON just like `tool-bar-add-item'. PROPS are additional
26773properties to add to the binding. 26595properties to add to the binding.
26774 26596
26775MAP must contain appropriate binding for `[menu-bar]' which holds a keymap. 26597FROM-MAP must contain appropriate binding for `[menu-bar]' which
26598holds a keymap.
26776 26599
26777\(fn COMMAND ICON IN-MAP &optional FROM-MAP &rest PROPS)" nil nil) 26600\(fn COMMAND ICON IN-MAP &optional FROM-MAP &rest PROPS)" nil nil)
26778 26601
@@ -26874,7 +26697,7 @@ the window or buffer configuration at all.
26874 26697
26875;;;### (autoloads (tramp-completion-file-name-handler tramp-file-name-handler 26698;;;### (autoloads (tramp-completion-file-name-handler tramp-file-name-handler
26876;;;;;; tramp-completion-file-name-regexp tramp-file-name-regexp) 26699;;;;;; tramp-completion-file-name-regexp tramp-file-name-regexp)
26877;;;;;; "tramp" "net/tramp.el" (17238 21257)) 26700;;;;;; "tramp" "net/tramp.el" (17263 27852))
26878;;; Generated autoloads from net/tramp.el 26701;;; Generated autoloads from net/tramp.el
26879 26702
26880(defvar tramp-unified-filenames (not (featurep (quote xemacs))) "\ 26703(defvar tramp-unified-filenames (not (featurep (quote xemacs))) "\
@@ -27427,8 +27250,8 @@ Will not make a connection if `url-gateway-unplugged' is non-nil.
27427;;;*** 27250;;;***
27428 27251
27429;;;### (autoloads (url-insert-file-contents url-file-local-copy url-copy-file 27252;;;### (autoloads (url-insert-file-contents url-file-local-copy url-copy-file
27430;;;;;; url-handler-mode) "url-handlers" "url/url-handlers.el" (17244 27253;;;;;; url-handler-mode) "url-handlers" "url/url-handlers.el" (17277
27431;;;;;; 4914)) 27254;;;;;; 59650))
27432;;; Generated autoloads from url/url-handlers.el 27255;;; Generated autoloads from url/url-handlers.el
27433 27256
27434(defvar url-handler-mode nil "\ 27257(defvar url-handler-mode nil "\
@@ -27869,13 +27692,7 @@ The buffer in question is current when this function is called.
27869 27692
27870;;;*** 27693;;;***
27871 27694
27872;;;### (autoloads nil "utf-7" "international/utf-7.el" (17254 64062)) 27695;;;### (autoloads nil "utf-7" "international/utf-7.el" (17257 22483))
27873;;; Generated autoloads from international/utf-7.el
27874(autoload-coding-system 'utf-7 '(require 'utf-7))
27875
27876;;;***
27877
27878;;;### (autoloads nil "utf-7" "international/utf-7.el" (17245 4870))
27879;;; Generated autoloads from international/utf-7.el 27696;;; Generated autoloads from international/utf-7.el
27880(autoload-coding-system 'utf-7 '(require 'utf-7)) 27697(autoload-coding-system 'utf-7 '(require 'utf-7))
27881 27698
@@ -27913,7 +27730,7 @@ If FILE-NAME is non-nil, save the result to FILE-NAME.
27913;;;;;; vc-directory vc-merge vc-insert-headers vc-version-other-window 27730;;;;;; vc-directory vc-merge vc-insert-headers vc-version-other-window
27914;;;;;; vc-diff vc-register vc-next-action vc-do-command edit-vc-file 27731;;;;;; vc-diff vc-register vc-next-action vc-do-command edit-vc-file
27915;;;;;; with-vc-file vc-branch-part vc-trunk-p vc-before-checkin-hook 27732;;;;;; with-vc-file vc-branch-part vc-trunk-p vc-before-checkin-hook
27916;;;;;; vc-checkin-hook vc-checkout-hook) "vc" "vc.el" (17254 63791)) 27733;;;;;; vc-checkin-hook vc-checkout-hook) "vc" "vc.el" (17263 27852))
27917;;; Generated autoloads from vc.el 27734;;; Generated autoloads from vc.el
27918 27735
27919(defvar vc-checkout-hook nil "\ 27736(defvar vc-checkout-hook nil "\
@@ -28210,7 +28027,7 @@ colors. `vc-annotate-background' specifies the background color.
28210 28027
28211;;;*** 28028;;;***
28212 28029
28213;;;### (autoloads nil "vc-cvs" "vc-cvs.el" (17187 59902)) 28030;;;### (autoloads nil "vc-cvs" "vc-cvs.el" (17263 27852))
28214;;; Generated autoloads from vc-cvs.el 28031;;; Generated autoloads from vc-cvs.el
28215 (defun vc-cvs-registered (f) 28032 (defun vc-cvs-registered (f)
28216 (when (file-readable-p (expand-file-name 28033 (when (file-readable-p (expand-file-name
@@ -28244,7 +28061,7 @@ For a description of possible values, see `vc-check-master-templates'.")
28244;;;*** 28061;;;***
28245 28062
28246;;;### (autoloads (vc-sccs-master-templates) "vc-sccs" "vc-sccs.el" 28063;;;### (autoloads (vc-sccs-master-templates) "vc-sccs" "vc-sccs.el"
28247;;;;;; (17187 59902)) 28064;;;;;; (17263 27852))
28248;;; Generated autoloads from vc-sccs.el 28065;;; Generated autoloads from vc-sccs.el
28249 28066
28250(defvar vc-sccs-master-templates (quote ("%sSCCS/s.%s" "%ss.%s" vc-sccs-search-project-dir)) "\ 28067(defvar vc-sccs-master-templates (quote ("%sSCCS/s.%s" "%ss.%s" vc-sccs-search-project-dir)) "\
@@ -28261,7 +28078,7 @@ find any project directory." (let ((project-dir (getenv "PROJECTDIR")) dirs dir)
28261 28078
28262;;;*** 28079;;;***
28263 28080
28264;;;### (autoloads nil "vc-svn" "vc-svn.el" (17187 59902)) 28081;;;### (autoloads nil "vc-svn" "vc-svn.el" (17277 59650))
28265;;; Generated autoloads from vc-svn.el 28082;;; Generated autoloads from vc-svn.el
28266 (defun vc-svn-registered (f) 28083 (defun vc-svn-registered (f)
28267 (when (file-readable-p (expand-file-name 28084 (when (file-readable-p (expand-file-name
@@ -28916,8 +28733,8 @@ Not documented
28916 28733
28917;;;### (autoloads (View-exit-and-edit view-mode-enter view-mode view-buffer-other-frame 28734;;;### (autoloads (View-exit-and-edit view-mode-enter view-mode view-buffer-other-frame
28918;;;;;; view-buffer-other-window view-buffer view-file-other-frame 28735;;;;;; view-buffer-other-window view-buffer view-file-other-frame
28919;;;;;; view-file-other-window view-file) "view" "view.el" (17187 28736;;;;;; view-file-other-window view-file) "view" "view.el" (17263
28920;;;;;; 59902)) 28737;;;;;; 27852))
28921;;; Generated autoloads from view.el 28738;;; Generated autoloads from view.el
28922 28739
28923(defvar view-mode nil "\ 28740(defvar view-mode nil "\
@@ -29141,7 +28958,7 @@ Turn on VIP emulation of VI.
29141;;;*** 28958;;;***
29142 28959
29143;;;### (autoloads (viper-mode toggle-viper-mode) "viper" "emulation/viper.el" 28960;;;### (autoloads (viper-mode toggle-viper-mode) "viper" "emulation/viper.el"
29144;;;;;; (17254 63790)) 28961;;;;;; (17277 59649))
29145;;; Generated autoloads from emulation/viper.el 28962;;; Generated autoloads from emulation/viper.el
29146 28963
29147(autoload (quote toggle-viper-mode) "viper" "\ 28964(autoload (quote toggle-viper-mode) "viper" "\
@@ -29313,7 +29130,7 @@ and off otherwise.
29313;;;;;; whitespace-buffer whitespace-toggle-ateol-check whitespace-toggle-spacetab-check 29130;;;;;; whitespace-buffer whitespace-toggle-ateol-check whitespace-toggle-spacetab-check
29314;;;;;; whitespace-toggle-indent-check whitespace-toggle-trailing-check 29131;;;;;; whitespace-toggle-indent-check whitespace-toggle-trailing-check
29315;;;;;; whitespace-toggle-leading-check) "whitespace" "whitespace.el" 29132;;;;;; whitespace-toggle-leading-check) "whitespace" "whitespace.el"
29316;;;;;; (17254 63791)) 29133;;;;;; (17257 22483))
29317;;; Generated autoloads from whitespace.el 29134;;; Generated autoloads from whitespace.el
29318 29135
29319(autoload (quote whitespace-toggle-leading-check) "whitespace" "\ 29136(autoload (quote whitespace-toggle-leading-check) "whitespace" "\
@@ -29430,8 +29247,8 @@ With arg, turn widget mode on if and only if arg is positive.
29430;;;*** 29247;;;***
29431 29248
29432;;;### (autoloads (widget-setup widget-insert widget-delete widget-create 29249;;;### (autoloads (widget-setup widget-insert widget-delete widget-create
29433;;;;;; widget-prompt-value widgetp) "wid-edit" "wid-edit.el" (17254 29250;;;;;; widget-prompt-value widgetp) "wid-edit" "wid-edit.el" (17277
29434;;;;;; 63791)) 29251;;;;;; 59650))
29435;;; Generated autoloads from wid-edit.el 29252;;; Generated autoloads from wid-edit.el
29436 29253
29437(autoload (quote widgetp) "wid-edit" "\ 29254(autoload (quote widgetp) "wid-edit" "\
@@ -29695,7 +29512,7 @@ The key bindings are:
29695;;;*** 29512;;;***
29696 29513
29697;;;### (autoloads (xml-parse-region xml-parse-file) "xml" "xml.el" 29514;;;### (autoloads (xml-parse-region xml-parse-file) "xml" "xml.el"
29698;;;;;; (17187 59902)) 29515;;;;;; (17263 27852))
29699;;; Generated autoloads from xml.el 29516;;; Generated autoloads from xml.el
29700 29517
29701(autoload (quote xml-parse-file) "xml" "\ 29518(autoload (quote xml-parse-file) "xml" "\
@@ -29855,23 +29672,24 @@ Zone-mode does two things:
29855;;;;;; "emacs-lisp/gulp.el" "emacs-lisp/levents.el" "emacs-lisp/lisp-mnt.el" 29672;;;;;; "emacs-lisp/gulp.el" "emacs-lisp/levents.el" "emacs-lisp/lisp-mnt.el"
29856;;;;;; "emacs-lisp/lisp-mode.el" "emacs-lisp/lisp.el" "emacs-lisp/lmenu.el" 29673;;;;;; "emacs-lisp/lisp-mode.el" "emacs-lisp/lisp.el" "emacs-lisp/lmenu.el"
29857;;;;;; "emacs-lisp/lselect.el" "emacs-lisp/lucid.el" "emacs-lisp/map-ynp.el" 29674;;;;;; "emacs-lisp/lselect.el" "emacs-lisp/lucid.el" "emacs-lisp/map-ynp.el"
29858;;;;;; "emacs-lisp/regi.el" "emacs-lisp/sregex.el" "emacs-lisp/tcover-ses.el" 29675;;;;;; "emacs-lisp/regi.el" "emacs-lisp/sregex.el" "emacs-lisp/syntax.el"
29859;;;;;; "emacs-lisp/tcover-unsafep.el" "emacs-lock.el" "emulation/cua-gmrk.el" 29676;;;;;; "emacs-lisp/tcover-ses.el" "emacs-lisp/tcover-unsafep.el"
29860;;;;;; "emulation/cua-rect.el" "emulation/edt-lk201.el" "emulation/edt-mapper.el" 29677;;;;;; "emacs-lock.el" "emulation/cua-gmrk.el" "emulation/cua-rect.el"
29861;;;;;; "emulation/edt-pc.el" "emulation/edt-vt100.el" "emulation/tpu-mapper.el" 29678;;;;;; "emulation/edt-lk201.el" "emulation/edt-mapper.el" "emulation/edt-pc.el"
29862;;;;;; "emulation/viper-cmd.el" "emulation/viper-ex.el" "emulation/viper-init.el" 29679;;;;;; "emulation/edt-vt100.el" "emulation/tpu-mapper.el" "emulation/viper-cmd.el"
29863;;;;;; "emulation/viper-keym.el" "emulation/viper-macs.el" "emulation/viper-mous.el" 29680;;;;;; "emulation/viper-ex.el" "emulation/viper-init.el" "emulation/viper-keym.el"
29864;;;;;; "emulation/viper-util.el" "env.el" "eshell/em-alias.el" "eshell/em-banner.el" 29681;;;;;; "emulation/viper-macs.el" "emulation/viper-mous.el" "emulation/viper-util.el"
29865;;;;;; "eshell/em-basic.el" "eshell/em-cmpl.el" "eshell/em-dirs.el" 29682;;;;;; "env.el" "eshell/em-alias.el" "eshell/em-banner.el" "eshell/em-basic.el"
29866;;;;;; "eshell/em-glob.el" "eshell/em-hist.el" "eshell/em-ls.el" 29683;;;;;; "eshell/em-cmpl.el" "eshell/em-dirs.el" "eshell/em-glob.el"
29867;;;;;; "eshell/em-pred.el" "eshell/em-prompt.el" "eshell/em-rebind.el" 29684;;;;;; "eshell/em-hist.el" "eshell/em-ls.el" "eshell/em-pred.el"
29868;;;;;; "eshell/em-script.el" "eshell/em-smart.el" "eshell/em-term.el" 29685;;;;;; "eshell/em-prompt.el" "eshell/em-rebind.el" "eshell/em-script.el"
29869;;;;;; "eshell/em-unix.el" "eshell/em-xtra.el" "eshell/esh-arg.el" 29686;;;;;; "eshell/em-smart.el" "eshell/em-term.el" "eshell/em-unix.el"
29870;;;;;; "eshell/esh-cmd.el" "eshell/esh-ext.el" "eshell/esh-groups.el" 29687;;;;;; "eshell/em-xtra.el" "eshell/esh-arg.el" "eshell/esh-cmd.el"
29871;;;;;; "eshell/esh-io.el" "eshell/esh-maint.el" "eshell/esh-module.el" 29688;;;;;; "eshell/esh-ext.el" "eshell/esh-groups.el" "eshell/esh-io.el"
29872;;;;;; "eshell/esh-opt.el" "eshell/esh-proc.el" "eshell/esh-util.el" 29689;;;;;; "eshell/esh-maint.el" "eshell/esh-module.el" "eshell/esh-opt.el"
29873;;;;;; "eshell/esh-var.el" "ezimage.el" "faces.el" "files.el" "finder-inf.el" 29690;;;;;; "eshell/esh-proc.el" "eshell/esh-util.el" "eshell/esh-var.el"
29874;;;;;; "foldout.el" "font-core.el" "format.el" "forms-d2.el" "forms-pass.el" 29691;;;;;; "ezimage.el" "faces.el" "files.el" "finder-inf.el" "foldout.el"
29692;;;;;; "font-core.el" "font-lock.el" "format.el" "forms-d2.el" "forms-pass.el"
29875;;;;;; "frame.el" "generic-x.el" "gnus/compface.el" "gnus/dig.el" 29693;;;;;; "frame.el" "generic-x.el" "gnus/compface.el" "gnus/dig.el"
29876;;;;;; "gnus/dns.el" "gnus/format-spec.el" "gnus/gnus-async.el" 29694;;;;;; "gnus/dns.el" "gnus/format-spec.el" "gnus/gnus-async.el"
29877;;;;;; "gnus/gnus-bcklg.el" "gnus/gnus-cite.el" "gnus/gnus-cus.el" 29695;;;;;; "gnus/gnus-bcklg.el" "gnus/gnus-cite.el" "gnus/gnus-cus.el"
@@ -29906,27 +29724,28 @@ Zone-mode does two things:
29906;;;;;; "international/subst-gb2312.el" "international/subst-jis.el" 29724;;;;;; "international/subst-gb2312.el" "international/subst-jis.el"
29907;;;;;; "international/subst-ksc.el" "international/ucs-tables.el" 29725;;;;;; "international/subst-ksc.el" "international/ucs-tables.el"
29908;;;;;; "international/utf-16.el" "international/utf-8.el" "isearch.el" 29726;;;;;; "international/utf-16.el" "international/utf-8.el" "isearch.el"
29909;;;;;; "jka-cmpr-hook.el" "kermit.el" "language/chinese.el" "language/cyrillic.el" 29727;;;;;; "jit-lock.el" "jka-cmpr-hook.el" "kermit.el" "language/chinese.el"
29910;;;;;; "language/czech.el" "language/devanagari.el" "language/english.el" 29728;;;;;; "language/cyrillic.el" "language/czech.el" "language/devanagari.el"
29911;;;;;; "language/ethiopic.el" "language/european.el" "language/georgian.el" 29729;;;;;; "language/english.el" "language/ethiopic.el" "language/european.el"
29912;;;;;; "language/greek.el" "language/hebrew.el" "language/indian.el" 29730;;;;;; "language/georgian.el" "language/greek.el" "language/hebrew.el"
29913;;;;;; "language/japanese.el" "language/kannada.el" "language/korean.el" 29731;;;;;; "language/indian.el" "language/japanese.el" "language/kannada.el"
29914;;;;;; "language/lao.el" "language/malayalam.el" "language/misc-lang.el" 29732;;;;;; "language/korean.el" "language/lao.el" "language/malayalam.el"
29915;;;;;; "language/romanian.el" "language/slovak.el" "language/tamil.el" 29733;;;;;; "language/misc-lang.el" "language/romanian.el" "language/slovak.el"
29916;;;;;; "language/thai-word.el" "language/thai.el" "language/tibetan.el" 29734;;;;;; "language/tamil.el" "language/thai-word.el" "language/thai.el"
29917;;;;;; "language/utf-8-lang.el" "language/vietnamese.el" "ldefs-boot.el" 29735;;;;;; "language/tibetan.el" "language/utf-8-lang.el" "language/vietnamese.el"
29918;;;;;; "loadup.el" "mail/blessmail.el" "mail/mailheader.el" "mail/mailpost.el" 29736;;;;;; "ldefs-boot.el" "loadup.el" "mail/blessmail.el" "mail/mailheader.el"
29919;;;;;; "mail/mspools.el" "mail/rfc2368.el" "mail/rfc822.el" "mail/rmail-spam-filter.el" 29737;;;;;; "mail/mailpost.el" "mail/mspools.el" "mail/rfc2368.el" "mail/rfc822.el"
29920;;;;;; "mail/uce.el" "mail/vms-pmail.el" "mh-e/mh-acros.el" "mh-e/mh-alias.el" 29738;;;;;; "mail/rmail-spam-filter.el" "mail/uce.el" "mail/vms-pmail.el"
29921;;;;;; "mh-e/mh-customize.el" "mh-e/mh-funcs.el" "mh-e/mh-gnus.el" 29739;;;;;; "mh-e/mh-acros.el" "mh-e/mh-alias.el" "mh-e/mh-customize.el"
29922;;;;;; "mh-e/mh-identity.el" "mh-e/mh-inc.el" "mh-e/mh-index.el" 29740;;;;;; "mh-e/mh-funcs.el" "mh-e/mh-gnus.el" "mh-e/mh-identity.el"
29923;;;;;; "mh-e/mh-junk.el" "mh-e/mh-loaddefs.el" "mh-e/mh-mime.el" 29741;;;;;; "mh-e/mh-inc.el" "mh-e/mh-index.el" "mh-e/mh-junk.el" "mh-e/mh-loaddefs.el"
29924;;;;;; "mh-e/mh-pick.el" "mh-e/mh-print.el" "mh-e/mh-seq.el" "mh-e/mh-speed.el" 29742;;;;;; "mh-e/mh-mime.el" "mh-e/mh-pick.el" "mh-e/mh-print.el" "mh-e/mh-seq.el"
29925;;;;;; "mh-e/mh-utils.el" "misc.el" "mouse-copy.el" "mouse-drag.el" 29743;;;;;; "mh-e/mh-speed.el" "mh-e/mh-utils.el" "misc.el" "mouse-copy.el"
29926;;;;;; "mouse.el" "net/eudc-vars.el" "net/eudcb-bbdb.el" "net/eudcb-ldap.el" 29744;;;;;; "mouse-drag.el" "mouse.el" "net/eudc-vars.el" "net/eudcb-bbdb.el"
29927;;;;;; "net/eudcb-ph.el" "net/ldap.el" "net/netrc.el" "net/tls.el" 29745;;;;;; "net/eudcb-ldap.el" "net/eudcb-mab.el" "net/eudcb-ph.el"
29928;;;;;; "net/tramp-ftp.el" "net/tramp-smb.el" "net/tramp-util.el" 29746;;;;;; "net/ldap.el" "net/netrc.el" "net/tls.el" "net/tramp-ftp.el"
29929;;;;;; "net/tramp-uu.el" "net/tramp-vc.el" "net/trampver.el" "obsolete/awk-mode.el" 29747;;;;;; "net/tramp-smb.el" "net/tramp-util.el" "net/tramp-uu.el"
29748;;;;;; "net/tramp-vc.el" "net/trampver.el" "obsolete/awk-mode.el"
29930;;;;;; "obsolete/bg-mouse.el" "obsolete/float.el" "obsolete/hilit19.el" 29749;;;;;; "obsolete/bg-mouse.el" "obsolete/float.el" "obsolete/hilit19.el"
29931;;;;;; "obsolete/iso-insert.el" "obsolete/iso-swed.el" "obsolete/keyswap.el" 29750;;;;;; "obsolete/iso-insert.el" "obsolete/iso-swed.el" "obsolete/keyswap.el"
29932;;;;;; "obsolete/mlsupport.el" "obsolete/ooutline.el" "obsolete/profile.el" 29751;;;;;; "obsolete/mlsupport.el" "obsolete/ooutline.el" "obsolete/profile.el"
@@ -29934,8 +29753,8 @@ Zone-mode does two things:
29934;;;;;; "obsolete/sun-fns.el" "obsolete/swedish.el" "obsolete/uncompress.el" 29753;;;;;; "obsolete/sun-fns.el" "obsolete/swedish.el" "obsolete/uncompress.el"
29935;;;;;; "obsolete/x-apollo.el" "obsolete/x-menu.el" "patcomp.el" 29754;;;;;; "obsolete/x-apollo.el" "obsolete/x-menu.el" "patcomp.el"
29936;;;;;; "paths.el" "pcvs-info.el" "pcvs-parse.el" "pcvs-util.el" 29755;;;;;; "paths.el" "pcvs-info.el" "pcvs-parse.el" "pcvs-util.el"
29937;;;;;; "pgg-def.el" "pgg-gpg.el" "pgg-parse.el" "pgg-pgp.el" "pgg-pgp5.el" 29756;;;;;; "pgg-def.el" "pgg-parse.el" "pgg-pgp.el" "pgg-pgp5.el" "play/gamegrid.el"
29938;;;;;; "play/gamegrid.el" "play/gametree.el" "play/meese.el" "progmodes/ada-prj.el" 29757;;;;;; "play/gametree.el" "play/meese.el" "progmodes/ada-prj.el"
29939;;;;;; "progmodes/cc-align.el" "progmodes/cc-awk.el" "progmodes/cc-bytecomp.el" 29758;;;;;; "progmodes/cc-align.el" "progmodes/cc-awk.el" "progmodes/cc-bytecomp.el"
29940;;;;;; "progmodes/cc-cmds.el" "progmodes/cc-compat.el" "progmodes/cc-defs.el" 29759;;;;;; "progmodes/cc-cmds.el" "progmodes/cc-compat.el" "progmodes/cc-defs.el"
29941;;;;;; "progmodes/cc-fonts.el" "progmodes/cc-langs.el" "progmodes/cc-menus.el" 29760;;;;;; "progmodes/cc-fonts.el" "progmodes/cc-langs.el" "progmodes/cc-menus.el"
@@ -29944,29 +29763,29 @@ Zone-mode does two things:
29944;;;;;; "progmodes/ebnf-otz.el" "progmodes/ebnf-yac.el" "progmodes/idlw-complete-structtag.el" 29763;;;;;; "progmodes/ebnf-otz.el" "progmodes/ebnf-yac.el" "progmodes/idlw-complete-structtag.el"
29945;;;;;; "progmodes/idlw-help.el" "progmodes/idlw-rinfo.el" "progmodes/idlw-toolbar.el" 29764;;;;;; "progmodes/idlw-help.el" "progmodes/idlw-rinfo.el" "progmodes/idlw-toolbar.el"
29946;;;;;; "progmodes/mantemp.el" "progmodes/xscheme.el" "register.el" 29765;;;;;; "progmodes/mantemp.el" "progmodes/xscheme.el" "register.el"
29947;;;;;; "replace.el" "s-region.el" "saveplace.el" "sb-image.el" "scroll-bar.el" 29766;;;;;; "replace.el" "rfn-eshadow.el" "s-region.el" "saveplace.el"
29948;;;;;; "select.el" "simple.el" "soundex.el" "startup.el" "subdirs.el" 29767;;;;;; "sb-image.el" "scroll-bar.el" "select.el" "simple.el" "soundex.el"
29949;;;;;; "tempo.el" "term/AT386.el" "term/apollo.el" "term/bobcat.el" 29768;;;;;; "startup.el" "subdirs.el" "tempo.el" "term/AT386.el" "term/apollo.el"
29950;;;;;; "term/cygwin.el" "term/internal.el" "term/iris-ansi.el" "term/linux.el" 29769;;;;;; "term/bobcat.el" "term/cygwin.el" "term/internal.el" "term/iris-ansi.el"
29951;;;;;; "term/lk201.el" "term/mac-win.el" "term/news.el" "term/pc-win.el" 29770;;;;;; "term/linux.el" "term/lk201.el" "term/mac-win.el" "term/news.el"
29952;;;;;; "term/rxvt.el" "term/sun-mouse.el" "term/sun.el" "term/sup-mouse.el" 29771;;;;;; "term/pc-win.el" "term/rxvt.el" "term/sun-mouse.el" "term/sun.el"
29953;;;;;; "term/tty-colors.el" "term/tvi970.el" "term/vt100.el" "term/vt102.el" 29772;;;;;; "term/sup-mouse.el" "term/tty-colors.el" "term/tvi970.el"
29954;;;;;; "term/vt125.el" "term/vt200.el" "term/vt201.el" "term/vt220.el" 29773;;;;;; "term/vt100.el" "term/vt102.el" "term/vt125.el" "term/vt200.el"
29955;;;;;; "term/vt240.el" "term/vt300.el" "term/vt320.el" "term/vt400.el" 29774;;;;;; "term/vt201.el" "term/vt220.el" "term/vt240.el" "term/vt300.el"
29956;;;;;; "term/vt420.el" "term/w32-win.el" "term/wyse50.el" "term/x-win.el" 29775;;;;;; "term/vt320.el" "term/vt400.el" "term/vt420.el" "term/w32-win.el"
29957;;;;;; "term/xterm.el" "textmodes/bib-mode.el" "textmodes/fill.el" 29776;;;;;; "term/wyse50.el" "term/x-win.el" "term/xterm.el" "textmodes/bib-mode.el"
29958;;;;;; "textmodes/makeinfo.el" "textmodes/page-ext.el" "textmodes/page.el" 29777;;;;;; "textmodes/fill.el" "textmodes/makeinfo.el" "textmodes/page-ext.el"
29959;;;;;; "textmodes/paragraphs.el" "textmodes/refbib.el" "textmodes/refer.el" 29778;;;;;; "textmodes/page.el" "textmodes/paragraphs.el" "textmodes/refbib.el"
29960;;;;;; "textmodes/reftex-auc.el" "textmodes/reftex-dcr.el" "textmodes/reftex-ref.el" 29779;;;;;; "textmodes/refer.el" "textmodes/reftex-auc.el" "textmodes/reftex-dcr.el"
29961;;;;;; "textmodes/reftex-sel.el" "textmodes/reftex-toc.el" "textmodes/reftex-vars.el" 29780;;;;;; "textmodes/reftex-ref.el" "textmodes/reftex-sel.el" "textmodes/reftex-toc.el"
29962;;;;;; "textmodes/texnfo-upd.el" "textmodes/text-mode.el" "timezone.el" 29781;;;;;; "textmodes/reftex-vars.el" "textmodes/texnfo-upd.el" "textmodes/text-mode.el"
29963;;;;;; "tooltip.el" "tree-widget.el" "uniquify.el" "url/url-about.el" 29782;;;;;; "timezone.el" "tooltip.el" "tree-widget.el" "uniquify.el"
29964;;;;;; "url/url-dired.el" "url/url-expand.el" "url/url-ftp.el" "url/url-https.el" 29783;;;;;; "url/url-about.el" "url/url-dired.el" "url/url-expand.el"
29965;;;;;; "url/url-imap.el" "url/url-methods.el" "url/url-nfs.el" "url/url-proxy.el" 29784;;;;;; "url/url-ftp.el" "url/url-https.el" "url/url-imap.el" "url/url-methods.el"
29966;;;;;; "url/url-vars.el" "url/vc-dav.el" "vc-hooks.el" "vcursor.el" 29785;;;;;; "url/url-nfs.el" "url/url-proxy.el" "url/url-vars.el" "url/vc-dav.el"
29967;;;;;; "version.el" "vms-patch.el" "vmsproc.el" "vt-control.el" 29786;;;;;; "vc-hooks.el" "vcursor.el" "version.el" "vms-patch.el" "vmsproc.el"
29968;;;;;; "vt100-led.el" "w32-fns.el" "w32-vars.el" "widget.el" "window.el" 29787;;;;;; "vt-control.el" "vt100-led.el" "w32-fns.el" "w32-vars.el"
29969;;;;;; "x-dnd.el") (17254 64782 199896)) 29788;;;;;; "widget.el" "window.el" "x-dnd.el") (17279 20072 750932))
29970 29789
29971;;;*** 29790;;;***
29972 29791
diff --git a/lisp/loadup.el b/lisp/loadup.el
index 9b3cae5ba37..370eeb8aa30 100644
--- a/lisp/loadup.el
+++ b/lisp/loadup.el
@@ -167,7 +167,6 @@
167 (load "vmsproc"))) 167 (load "vmsproc")))
168(load "abbrev") 168(load "abbrev")
169(load "buff-menu") 169(load "buff-menu")
170(load "server") ; server-getenv is used throughout the terminal initialization code
171 170
172(if (fboundp 'x-create-frame) 171(if (fboundp 'x-create-frame)
173 (progn 172 (progn
diff --git a/lisp/server.el b/lisp/server.el
index b313986d6a2..7aed300e99a 100644
--- a/lisp/server.el
+++ b/lisp/server.el
@@ -209,39 +209,36 @@ New clients have no properties."
209 (setq server-clients (cons (cons proc nil) 209 (setq server-clients (cons (cons proc nil)
210 server-clients)))) 210 server-clients))))
211 211
212;;;###autoload 212(defun server-getenv-from (env variable)
213(defun server-getenv (variable &optional frame) 213 "Get the value of VARIABLE in ENV.
214 "Get the value of VARIABLE in the client environment of frame FRAME. 214VARIABLE should be a string. Value is nil if VARIABLE is
215VARIABLE should be a string. Value is nil if VARIABLE is undefined in 215undefined in ENV. Otherwise, value is a string.
216the environment. Otherwise, value is a string. 216
217 217ENV should be in the same format as `process-environment'."
218If FRAME is an emacsclient frame, then the variable is looked up 218 (let (entry result)
219in the environment of the emacsclient process; otherwise the 219 (while (and env (null result))
220function consults the environment of the Emacs process. 220 (setq entry (car env)
221 221 env (cdr env))
222If FRAME is nil or missing, then the selected frame is used." 222 (if (and (> (length entry) (length variable))
223 (when (not frame) (setq frame (selected-frame))) 223 (eq ?= (aref entry (length variable)))
224 (let ((client (frame-parameter frame 'client)) env) 224 (equal variable (substring entry 0 (length variable))))
225 (if (null client) 225 (setq result (substring entry (+ (length variable) 1)))))
226 (getenv variable) 226 result))
227 (setq env (server-client-get client 'environment)) 227
228 (if (null env) 228(defmacro server-with-environment (env vars &rest body)
229 (getenv variable) 229 "Evaluate BODY with environment variables VARS set to those in ENV.
230 (cdr (assoc variable env))))))
231
232(defmacro server-with-client-environment (client vars &rest body)
233 "Evaluate BODY with environment variables VARS set to those of CLIENT.
234The environment variables are then restored to their previous values. 230The environment variables are then restored to their previous values.
235 231
236VARS should be a list of strings." 232VARS should be a list of strings.
233ENV should be in the same format as `process-environment'."
237 (declare (indent 2)) 234 (declare (indent 2))
238 (let ((oldvalues (make-symbol "oldvalues")) 235 (let ((oldvalues (make-symbol "oldvalues"))
239 (var (make-symbol "var")) 236 (var (make-symbol "var"))
240 (value (make-symbol "value")) 237 (value (make-symbol "value"))
241 (pair (make-symbol "pair"))) 238 (pair (make-symbol "pair")))
242 `(let (,oldvalues) 239 `(let (,oldvalues)
243 (dolist (,var (quote ,vars)) 240 (dolist (,var ,vars)
244 (let ((,value (cdr (assoc ,var (server-client-get ,client 'environment))))) 241 (let ((,value (server-getenv-from ,env ,var)))
245 (setq ,oldvalues (cons (cons ,var (getenv ,var)) ,oldvalues)) 242 (setq ,oldvalues (cons (cons ,var (getenv ,var)) ,oldvalues))
246 (setenv ,var ,value))) 243 (setenv ,var ,value)))
247 (unwind-protect 244 (unwind-protect
@@ -483,7 +480,7 @@ The following commands are accepted by the server:
483 error if there is a mismatch. The server replies with 480 error if there is a mismatch. The server replies with
484 `-good-version' to confirm the match. 481 `-good-version' to confirm the match.
485 482
486`-env NAME VALUE' 483`-env NAME=VALUE'
487 An environment variable on the client side. 484 An environment variable on the client side.
488 485
489`-current-frame' 486`-current-frame'
@@ -571,8 +568,9 @@ The following commands are accepted by the client:
571 current-frame 568 current-frame
572 nowait ; t if emacsclient does not want to wait for us. 569 nowait ; t if emacsclient does not want to wait for us.
573 frame ; The frame that was opened for the client (if any). 570 frame ; The frame that was opened for the client (if any).
574 display ; Open the frame on this display. 571 display ; Open the frame on this display.
575 dontkill ; t if the client should not be killed. 572 dontkill ; t if the client should not be killed.
573 env
576 (files nil) 574 (files nil)
577 (lineno 1) 575 (lineno 1)
578 (columnno 0)) 576 (columnno 0))
@@ -605,7 +603,7 @@ The following commands are accepted by the client:
605 ((equal "-current-frame" arg) (setq current-frame t)) 603 ((equal "-current-frame" arg) (setq current-frame t))
606 604
607 ;; -display DISPLAY: 605 ;; -display DISPLAY:
608 ;; Open X frames on the given instead of the default. 606 ;; Open X frames on the given display instead of the default.
609 ((and (equal "-display" arg) (string-match "\\([^ ]*\\) " request)) 607 ((and (equal "-display" arg) (string-match "\\([^ ]*\\) " request))
610 (setq display (match-string 1 request) 608 (setq display (match-string 1 request)
611 request (substring request (match-end 0)))) 609 request (substring request (match-end 0))))
@@ -639,6 +637,7 @@ The following commands are accepted by the client:
639 (select-frame frame) 637 (select-frame frame)
640 (server-client-set client 'frame frame) 638 (server-client-set client 'frame frame)
641 (server-client-set client 'device (frame-display frame)) 639 (server-client-set client 'device (frame-display frame))
640 (set-terminal-parameter frame 'environment env)
642 (setq dontkill t)) 641 (setq dontkill t))
643 ;; This emacs does not support X. 642 ;; This emacs does not support X.
644 (server-log "Window system unsupported" proc) 643 (server-log "Window system unsupported" proc)
@@ -675,13 +674,13 @@ The following commands are accepted by the client:
675 (unless (server-client-get client 'version) 674 (unless (server-client-get client 'version)
676 (error "Protocol error; make sure you use the correct version of emacsclient")) 675 (error "Protocol error; make sure you use the correct version of emacsclient"))
677 (unless current-frame 676 (unless current-frame
678 (server-with-client-environment proc 677 (server-with-environment env
679 ("LANG" "LC_CTYPE" "LC_ALL" 678 '("LANG" "LC_CTYPE" "LC_ALL"
680 ;; For tgetent(3); list according to ncurses(3). 679 ;; For tgetent(3); list according to ncurses(3).
681 "BAUDRATE" "COLUMNS" "ESCDELAY" "HOME" "LINES" 680 "BAUDRATE" "COLUMNS" "ESCDELAY" "HOME" "LINES"
682 "NCURSES_ASSUMED_COLORS" "NCURSES_NO_PADDING" 681 "NCURSES_ASSUMED_COLORS" "NCURSES_NO_PADDING"
683 "NCURSES_NO_SETBUF" "TERM" "TERMCAP" "TERMINFO" 682 "NCURSES_NO_SETBUF" "TERM" "TERMCAP" "TERMINFO"
684 "TERMINFO_DIRS" "TERMPATH") 683 "TERMINFO_DIRS" "TERMPATH")
685 (setq frame (make-frame-on-tty tty type 684 (setq frame (make-frame-on-tty tty type
686 ;; Ignore nowait here; we always need to clean 685 ;; Ignore nowait here; we always need to clean
687 ;; up opened ttys when the client dies. 686 ;; up opened ttys when the client dies.
@@ -690,6 +689,7 @@ The following commands are accepted by the client:
690 (server-client-set client 'frame frame) 689 (server-client-set client 'frame frame)
691 (server-client-set client 'tty (display-name frame)) 690 (server-client-set client 'tty (display-name frame))
692 (server-client-set client 'device (frame-display frame)) 691 (server-client-set client 'device (frame-display frame))
692 (set-terminal-parameter frame 'environment env)
693 693
694 ;; Reply with our pid. 694 ;; Reply with our pid.
695 (server-send-string proc (concat "-emacs-pid " (number-to-string (emacs-pid)) "\n")) 695 (server-send-string proc (concat "-emacs-pid " (number-to-string (emacs-pid)) "\n"))
@@ -737,18 +737,13 @@ The following commands are accepted by the client:
737 (setq lineno 1 737 (setq lineno 1
738 columnno 0))) 738 columnno 0)))
739 739
740 ;; -env NAME VALUE: An environment variable. 740 ;; -env NAME=VALUE: An environment variable.
741 ((and (equal "-env" arg) (string-match "\\([^ ]+\\) \\([^ ]+\\) " request)) 741 ((and (equal "-env" arg) (string-match "\\([^ ]+\\) " request))
742 (let ((name (server-unquote-arg (match-string 1 request))) 742 (let ((var (server-unquote-arg (match-string 1 request))))
743 (value (server-unquote-arg (match-string 2 request))))
744 (when coding-system 743 (when coding-system
745 (setq name (decode-coding-string name coding-system)) 744 (setq var (decode-coding-string var coding-system)))
746 (setq value (decode-coding-string value coding-system)))
747 (setq request (substring request (match-end 0))) 745 (setq request (substring request (match-end 0)))
748 (server-client-set 746 (setq env (cons var env))))
749 client 'environment
750 (cons (cons name value)
751 (server-client-get client 'environment)))))
752 747
753 ;; Unknown command. 748 ;; Unknown command.
754 (t (error "Unknown command: %s" arg))))) 749 (t (error "Unknown command: %s" arg)))))
@@ -1053,30 +1048,23 @@ done that."
1053 ;; a minibuffer/dedicated-window (if there's no other). 1048 ;; a minibuffer/dedicated-window (if there's no other).
1054 (error (pop-to-buffer next-buffer))))))))) 1049 (error (pop-to-buffer next-buffer)))))))))
1055 1050
1056(defun server-save-buffers-kill-display (&optional arg) 1051;;;###autoload
1057 "Offer to save each buffer, then kill the current connection. 1052(defun server-save-buffers-kill-display (proc &optional arg)
1058If the current frame has no client, kill Emacs itself. 1053 "Offer to save each buffer, then kill PROC.
1059 1054
1060With prefix arg, silently save all file-visiting buffers, then kill. 1055With prefix arg, silently save all file-visiting buffers, then kill.
1061 1056
1062If emacsclient was started with a list of filenames to edit, then 1057If emacsclient was started with a list of filenames to edit, then
1063only these files will be asked to be saved." 1058only these files will be asked to be saved."
1064 (interactive "P") 1059 (let ((buffers (server-client-get proc 'buffers)))
1065 (let ((proc (frame-parameter (selected-frame) 'client)) 1060 ;; If client is bufferless, emulate a normal Emacs session
1066 (frame (selected-frame))) 1061 ;; exit and offer to save all buffers. Otherwise, offer to
1067 (if proc 1062 ;; save only the buffers belonging to the client.
1068 (let ((buffers (server-client-get proc 'buffers))) 1063 (save-some-buffers arg
1069 ;; If client is bufferless, emulate a normal Emacs session 1064 (if buffers
1070 ;; exit and offer to save all buffers. Otherwise, offer to 1065 (lambda () (memq (current-buffer) buffers))
1071 ;; save only the buffers belonging to the client. 1066 t))
1072 (save-some-buffers arg 1067 (server-delete-client proc)))
1073 (if buffers
1074 (lambda () (memq (current-buffer) buffers))
1075 t))
1076 (server-delete-client proc)
1077 (when (frame-live-p frame)
1078 (delete-frame frame)))
1079 (save-buffers-kill-emacs))))
1080 1068
1081(define-key ctl-x-map "#" 'server-edit) 1069(define-key ctl-x-map "#" 'server-edit)
1082 1070
diff --git a/lisp/term/rxvt.el b/lisp/term/rxvt.el
index cb3d019d640..e7e92e70042 100644
--- a/lisp/term/rxvt.el
+++ b/lisp/term/rxvt.el
@@ -26,8 +26,6 @@
26 26
27;;; Code: 27;;; Code:
28 28
29(require 'server)
30
31(defvar rxvt-function-map nil 29(defvar rxvt-function-map nil
32 "Function key overrides for rxvt.") 30 "Function key overrides for rxvt.")
33 31
@@ -293,7 +291,7 @@ for the currently selected frame."
293;; intelligent way than the default guesswork in startup.el. 291;; intelligent way than the default guesswork in startup.el.
294(defun rxvt-set-background-mode () 292(defun rxvt-set-background-mode ()
295 "Set background mode as appropriate for the default rxvt colors." 293 "Set background mode as appropriate for the default rxvt colors."
296 (let ((fgbg (server-getenv "COLORFGBG")) 294 (let ((fgbg (terminal-getenv "COLORFGBG"))
297 bg rgb) 295 bg rgb)
298 (setq default-frame-background-mode 'light) 296 (setq default-frame-background-mode 'light)
299 (when (and fgbg 297 (when (and fgbg
diff --git a/lisp/term/x-win.el b/lisp/term/x-win.el
index ea55a708a6e..ff369140a46 100644
--- a/lisp/term/x-win.el
+++ b/lisp/term/x-win.el
@@ -82,7 +82,6 @@
82(require 'menu-bar) 82(require 'menu-bar)
83(require 'fontset) 83(require 'fontset)
84(require 'x-dnd) 84(require 'x-dnd)
85(require 'server)
86 85
87(defvar x-invocation-args) 86(defvar x-invocation-args)
88(defvar x-keysym-table) 87(defvar x-keysym-table)
@@ -2408,7 +2407,7 @@ order until succeed.")
2408 (aset x-resource-name i ?-)))) 2407 (aset x-resource-name i ?-))))
2409 2408
2410 (x-open-connection (or x-display-name 2409 (x-open-connection (or x-display-name
2411 (setq x-display-name (server-getenv "DISPLAY"))) 2410 (setq x-display-name (terminal-getenv "DISPLAY")))
2412 x-command-line-resources 2411 x-command-line-resources
2413 ;; Exit Emacs with fatal error if this fails and we 2412 ;; Exit Emacs with fatal error if this fails and we
2414 ;; are the initial display. 2413 ;; are the initial display.
diff --git a/lisp/term/xterm.el b/lisp/term/xterm.el
index aeaaeeba1ae..ecfeaba51fc 100644
--- a/lisp/term/xterm.el
+++ b/lisp/term/xterm.el
@@ -26,8 +26,6 @@
26 26
27;;; Code: 27;;; Code:
28 28
29(require 'server)
30
31(defvar xterm-function-map nil 29(defvar xterm-function-map nil
32 "Function key map overrides for xterm.") 30 "Function key map overrides for xterm.")
33 31
@@ -194,8 +192,8 @@
194 ;; rxvt terminals sometimes set the TERM variable to "xterm", but 192 ;; rxvt terminals sometimes set the TERM variable to "xterm", but
195 ;; rxvt's keybindings that are incompatible with xterm's. It is 193 ;; rxvt's keybindings that are incompatible with xterm's. It is
196 ;; better in that case to use rxvt's initializion function. 194 ;; better in that case to use rxvt's initializion function.
197 (if (and (server-getenv "COLORTERM") 195 (if (and (terminal-getenv "COLORTERM")
198 (string-match "\\`rxvt" (server-getenv "COLORTERM"))) 196 (string-match "\\`rxvt" (terminal-getenv "COLORTERM")))
199 (progn 197 (progn
200 (eval-and-compile (load "term/rxvt")) 198 (eval-and-compile (load "term/rxvt"))
201 (terminal-init-rxvt)) 199 (terminal-init-rxvt))