commit 59db4308b546cbe32d3bfe6e23dbc1899d511975 (HEAD, refs/remotes/origin/master) Merge: 9fcd66d 8b5f2f4 Author: Glenn Morris Date: Mon Jun 1 23:16:40 2015 -0700 Merge from origin/emacs-24 8b5f2f4 * doc/emacs/emacs.texi: Update the ISBN of the Emacs manual. commit 9fcd66daf819294168e86ea5eb50c241b1d9fa11 Merge: 9b97b04 82e2ce9 Author: Glenn Morris Date: Mon Jun 1 23:16:39 2015 -0700 ; Merge from origin/emacs-24 The following commits were skipped: 82e2ce9 Bump Emacs version to 24.5.50. 866501e * lisp/ChangeLog: Remove a duplicate 8272c1d lisp/ldefs-boot.el: Update for the 24.5 release 7cad9d5 Update the 24.5 release date in all ChangeLog files commit 9b97b0402cd42334b8b2ed98df58b83b0fd41221 Author: Glenn Morris Date: Mon Jun 1 23:16:03 2015 -0700 * admin/gitmerge.el (gitmerge-commit-message): Exclude "skipped" messages from ChangeLog. diff --git a/admin/gitmerge.el b/admin/gitmerge.el index 43773f5..c6a3446 100644 --- a/admin/gitmerge.el +++ b/admin/gitmerge.el @@ -314,7 +314,8 @@ Returns non-nil if conflicts remain." SKIP denotes whether those commits are actually skipped. If END is nil, only the single commit BEG is merged." (with-temp-buffer - (insert "Merge from " branch "\n\n" + (insert (if skip "; " "") + "Merge from " branch "\n\n" (if skip (concat "The following commit" (if end "s were " " was ") commit e3a0f3daf12e208e88d712b09ef82096849b9431 Author: Michael Albinus Date: Mon Jun 1 21:11:24 2015 +0200 Sync with Tramp repository * lisp/net/tramp.el (tramp-message): Dump connection buffer error messages. (tramp-handle-make-auto-save-file-name): When calling `make-auto-save-file-name' internally, make sure it uses Unix-like behavior, not Windows-like behavior. * lisp/net/tramp-sh.el (tramp-set-file-uid-gid): Add a timeout for the local case, because "chown" might fail on w32. * lisp/net/trampver.el (tramp-repository-get-version): Don't run for XEmacs. diff --git a/lisp/net/tramp-sh.el b/lisp/net/tramp-sh.el index 5864acd..fda5945 100644 --- a/lisp/net/tramp-sh.el +++ b/lisp/net/tramp-sh.el @@ -1459,12 +1459,14 @@ be non-negative integers." (tramp-shell-quote-argument localname)))))) ;; We handle also the local part, because there doesn't exist - ;; `set-file-uid-gid'. On W32 "chown" might not work. - (let ((uid (or (and (natnump uid) uid) (tramp-get-local-uid 'integer))) - (gid (or (and (natnump gid) gid) (tramp-get-local-gid 'integer)))) - (tramp-call-process - nil "chown" nil nil nil - (format "%d:%d" uid gid) (tramp-shell-quote-argument filename)))))) + ;; `set-file-uid-gid'. On W32 "chown" might not work. We add a + ;; timeout for this. + (with-timeout (5 nil) + (let ((uid (or (and (natnump uid) uid) (tramp-get-local-uid 'integer))) + (gid (or (and (natnump gid) gid) (tramp-get-local-gid 'integer)))) + (tramp-call-process + nil "chown" nil nil nil + (format "%d:%d" uid gid) (tramp-shell-quote-argument filename))))))) (defun tramp-remote-selinux-p (vec) "Check, whether SELINUX is enabled on the remote host." diff --git a/lisp/net/tramp.el b/lisp/net/tramp.el index 40bba14..fc23a0b 100644 --- a/lisp/net/tramp.el +++ b/lisp/net/tramp.el @@ -1530,6 +1530,12 @@ applicable)." (let ((tramp-verbose 0)) (setq vec-or-proc (tramp-get-connection-property vec-or-proc "vector" nil)))) + ;; Append connection buffer for error messages. + (when (= level 1) + (let ((tramp-verbose 0)) + (with-current-buffer (tramp-get-connection-buffer vec-or-proc) + (setq fmt-string (concat fmt-string "\n%s") + arguments (append arguments (list (buffer-string))))))) ;; Do it. (when (vectorp vec-or-proc) (apply 'tramp-debug-message @@ -4020,8 +4026,11 @@ this file, if that variable is non-nil." (file-exists-p tramp-auto-save-directory)) (make-directory tramp-auto-save-directory t)) - (let ((auto-save-file-name-transforms - (if (null tramp-auto-save-directory) auto-save-file-name-transforms)) + (let ((system-type 'not-windows) + (auto-save-file-name-transforms + (if (and (null tramp-auto-save-directory) + (boundp 'auto-save-file-name-transforms)) + (symbol-value 'auto-save-file-name-transforms))) (buffer-file-name (if (null tramp-auto-save-directory) buffer-file-name diff --git a/lisp/net/trampver.el b/lisp/net/trampver.el index c5e5705..eb22b60 100644 --- a/lisp/net/trampver.el +++ b/lisp/net/trampver.el @@ -40,15 +40,17 @@ (defun tramp-repository-get-version () "Try to return as a string the repository revision of the Tramp sources." - (let ((dir (funcall 'locate-dominating-file (locate-library "tramp") ".git"))) - (when dir - (with-temp-buffer - (let ((default-directory (file-name-as-directory dir))) - (and (zerop - (ignore-errors - (call-process "git" nil '(t nil) nil "rev-parse" "HEAD"))) - (not (zerop (buffer-size))) - (replace-regexp-in-string "\n" "" (buffer-string)))))))) + (unless (featurep 'xemacs) + (let ((dir + (funcall 'locate-dominating-file (locate-library "tramp") ".git"))) + (when dir + (with-temp-buffer + (let ((default-directory (file-name-as-directory dir))) + (and (zerop + (ignore-errors + (call-process "git" nil '(t nil) nil "rev-parse" "HEAD"))) + (not (zerop (buffer-size))) + (replace-regexp-in-string "\n" "" (buffer-string))))))))) ;; Check for (X)Emacs version. (let ((x (if (or (>= emacs-major-version 22) commit 40b33be830310726048dddaee3fdfba5c8a3480f Author: Eli Zaretskii Date: Mon Jun 1 18:17:28 2015 +0300 MS-Windows followup for batch stdout/stderr output changes * lisp/international/mule-cmds.el (set-locale-environment): In batch mode, use console codepages for keyboard and terminal encoding. (Bug#20545) diff --git a/lisp/international/mule-cmds.el b/lisp/international/mule-cmds.el index c8cd76f..474806d 100644 --- a/lisp/international/mule-cmds.el +++ b/lisp/international/mule-cmds.el @@ -2688,14 +2688,22 @@ See also `locale-charset-language-names', `locale-language-names', ;; On Windows, override locale-coding-system, ;; default-file-name-coding-system, keyboard-coding-system, - ;; terminal-coding-system with system codepage. + ;; terminal-coding-system with the ANSI or console codepage. (when (and (eq system-type 'windows-nt) (boundp 'w32-ansi-code-page)) - (let ((code-page-coding (intern (format "cp%d" w32-ansi-code-page)))) + (let* ((code-page-coding + (intern (format "cp%d" (if noninteractive + (w32-get-console-codepage) + w32-ansi-code-page)))) + (output-coding + (if noninteractive + (intern (format "cp%d" (w32-get-console-output-codepage))) + code-page-coding))) (when (coding-system-p code-page-coding) + (or output-coding (setq output-coding code-page-coding)) (unless frame (setq locale-coding-system code-page-coding)) (set-keyboard-coding-system code-page-coding frame) - (set-terminal-coding-system code-page-coding frame) + (set-terminal-coding-system output-coding frame) (setq default-file-name-coding-system code-page-coding)))) (when (eq system-type 'darwin) commit d0848f8ddee353c99409caf1dd25e003c8b5af98 Author: Eli Zaretskii Date: Mon Jun 1 18:01:49 2015 +0300 Update .gitattributes for DOS EOL files * .gitattributes: Use "whitespace=cr-at-eol" for files with DOS CRLF end-of-line format. diff --git a/.gitattributes b/.gitattributes index 4bcb7be..21af4e6 100644 --- a/.gitattributes +++ b/.gitattributes @@ -19,16 +19,16 @@ # A few files use CRLF endings, even on non-Microsoft platforms. # Do not warn about trailing whitespace with these files. -*.bat -whitespace -admin/charsets/mapfiles/PTCP154 -whitespace -leim/MISC-DIC/cangjie-table.b5 -whitespace -leim/MISC-DIC/cangjie-table.cns -whitespace -leim/MISC-DIC/pinyin.map -whitespace -lib-src/update-game-score.exe.manifest -whitespace -nt/nmake.defs -whitespace -test/etags/c-src/dostorture.c -whitespace -test/etags/cp-src/c.C -whitespace -test/etags/html-src/algrthms.html -whitespace +*.bat whitespace=cr-at-eol +admin/charsets/mapfiles/PTCP154 whitespace=cr-at-eol +leim/MISC-DIC/cangjie-table.b5 whitespace=cr-at-eol +leim/MISC-DIC/cangjie-table.cns whitespace=cr-at-eol +leim/MISC-DIC/pinyin.map whitespace=cr-at-eol +lib-src/update-game-score.exe.manifest whitespace=cr-at-eol +nt/nmake.defs whitespace=cr-at-eol +test/etags/c-src/dostorture.c whitespace=cr-at-eol +test/etags/cp-src/c.C whitespace=cr-at-eol +test/etags/html-src/algrthms.html whitespace=cr-at-eol # The upstream maintainer does not want to remove trailing whitespace. doc/misc/texinfo.tex -whitespace=blank-at-eol commit e8f586be329b7b7c324a14da8be0c6b8c890e34b Author: Glenn Morris Date: Mon Jun 1 06:21:38 2015 -0400 ; Auto-commit of loaddefs files. diff --git a/lisp/ldefs-boot.el b/lisp/ldefs-boot.el index a52a19e..0559f4c 100644 --- a/lisp/ldefs-boot.el +++ b/lisp/ldefs-boot.el @@ -96,8 +96,8 @@ Insert a descriptive header at the top of the file. ;;;*** -;;;### (autoloads nil "ada-xref" "progmodes/ada-xref.el" (21670 32331 -;;;;;; 385639 720000)) +;;;### (autoloads nil "ada-xref" "progmodes/ada-xref.el" (21855 577 +;;;;;; 357945 168000)) ;;; Generated autoloads from progmodes/ada-xref.el (autoload 'ada-find-file "ada-xref" "\ @@ -238,8 +238,8 @@ old-style time formats for entries are supported. ;;;*** -;;;### (autoloads nil "advice" "emacs-lisp/advice.el" (21670 32330 -;;;;;; 885624 725000)) +;;;### (autoloads nil "advice" "emacs-lisp/advice.el" (21853 45243 +;;;;;; 381515 341000)) ;;; Generated autoloads from emacs-lisp/advice.el (defvar ad-redefinition-action 'warn "\ @@ -477,7 +477,7 @@ A replacement function for `newline-and-indent', aligning as it goes. ;;;*** -;;;### (autoloads nil "allout" "allout.el" (21670 32330 885624 725000)) +;;;### (autoloads nil "allout" "allout.el" (21855 576 477946 398000)) ;;; Generated autoloads from allout.el (push (purecopy '(allout 2 3)) package--builtin-versions) @@ -837,8 +837,8 @@ for details on preparing Emacs for automatic allout activation. ;;;*** -;;;### (autoloads nil "allout-widgets" "allout-widgets.el" (21670 -;;;;;; 32330 885624 725000)) +;;;### (autoloads nil "allout-widgets" "allout-widgets.el" (21855 +;;;;;; 576 417950 874000)) ;;; Generated autoloads from allout-widgets.el (push (purecopy '(allout-widgets 1 0)) package--builtin-versions) @@ -896,8 +896,8 @@ outline hot-spot navigation (see `allout-mode'). ;;;*** -;;;### (autoloads nil "ange-ftp" "net/ange-ftp.el" (21696 56380 925320 -;;;;;; 624000)) +;;;### (autoloads nil "ange-ftp" "net/ange-ftp.el" (21855 577 137948 +;;;;;; 458000)) ;;; Generated autoloads from net/ange-ftp.el (defalias 'ange-ftp-re-read-dir 'ange-ftp-reread-dir) @@ -1153,8 +1153,8 @@ Returns list of symbols and documentation found. ;;;*** -;;;### (autoloads nil "arc-mode" "arc-mode.el" (21670 32330 885624 -;;;;;; 725000)) +;;;### (autoloads nil "arc-mode" "arc-mode.el" (21862 60209 608658 +;;;;;; 477000)) ;;; Generated autoloads from arc-mode.el (autoload 'archive-mode "arc-mode" "\ @@ -1245,8 +1245,8 @@ Entering array mode calls the function `array-mode-hook'. ;;;*** -;;;### (autoloads nil "artist" "textmodes/artist.el" (21750 59840 -;;;;;; 704617 663000)) +;;;### (autoloads nil "artist" "textmodes/artist.el" (21852 24382 +;;;;;; 57264 475000)) ;;; Generated autoloads from textmodes/artist.el (push (purecopy '(artist 1 2 6)) package--builtin-versions) @@ -1328,7 +1328,7 @@ Drawing with the mouse: * Cut copies, then clears the rectangle/square. * When drawing lines or poly-lines, you can set arrows. - See below under ``Arrows'' for more info. + See below under \"Arrows\" for more info. * The mode line shows the currently selected drawing operation. In addition, if it has an asterisk (*) at the end, you @@ -1436,8 +1436,8 @@ Variables artist-vaporize-fuzziness Tolerance when recognizing lines artist-spray-interval Seconds between repeated sprayings artist-spray-radius Size of the spray-area - artist-spray-chars The spray-``color'' - artist-spray-new-chars Initial spray-``color'' + artist-spray-chars The spray-\"color\" + artist-spray-new-chars Initial spray-\"color\" Hooks @@ -1604,8 +1604,8 @@ insert a template for the file depending on the mode of the buffer. ;;;*** -;;;### (autoloads nil "autoload" "emacs-lisp/autoload.el" (21802 -;;;;;; 17960 382855 287000)) +;;;### (autoloads nil "autoload" "emacs-lisp/autoload.el" (21853 +;;;;;; 45243 381515 341000)) ;;; Generated autoloads from emacs-lisp/autoload.el (put 'generated-autoload-file 'safe-local-variable 'stringp) @@ -1656,8 +1656,8 @@ should be non-nil). ;;;*** -;;;### (autoloads nil "autorevert" "autorevert.el" (21752 15166 568176 -;;;;;; 278000)) +;;;### (autoloads nil "autorevert" "autorevert.el" (21855 576 477946 +;;;;;; 398000)) ;;; Generated autoloads from autorevert.el (autoload 'auto-revert-mode "autorevert" "\ @@ -1680,7 +1680,7 @@ without being changed in the part that is already in the buffer. Turn on Auto-Revert Mode. This function is designed to be added to hooks, for example: - (add-hook 'c-mode-hook 'turn-on-auto-revert-mode) + (add-hook 'c-mode-hook #'turn-on-auto-revert-mode) \(fn)" nil nil) @@ -1708,7 +1708,7 @@ Use `auto-revert-mode' for changes other than appends! Turn on Auto-Revert Tail mode. This function is designed to be added to hooks, for example: - (add-hook 'my-logfile-mode-hook 'turn-on-auto-revert-tail-mode) + (add-hook 'my-logfile-mode-hook #'turn-on-auto-revert-tail-mode) \(fn)" nil nil) @@ -1875,8 +1875,8 @@ For non-interactive use see also `benchmark-run' and ;;;*** -;;;### (autoloads nil "bibtex" "textmodes/bibtex.el" (21822 37176 -;;;;;; 700494 564000)) +;;;### (autoloads nil "bibtex" "textmodes/bibtex.el" (21855 577 517944 +;;;;;; 90000)) ;;; Generated autoloads from textmodes/bibtex.el (autoload 'bibtex-initialize "bibtex" "\ @@ -2742,8 +2742,8 @@ Like `bug-reference-mode', but only buttonize in comments and strings. ;;;*** -;;;### (autoloads nil "bytecomp" "emacs-lisp/bytecomp.el" (21824 -;;;;;; 44973 370497 114000)) +;;;### (autoloads nil "bytecomp" "emacs-lisp/bytecomp.el" (21855 +;;;;;; 576 747949 136000)) ;;; Generated autoloads from emacs-lisp/bytecomp.el (put 'byte-compile-dynamic 'safe-local-variable 'booleanp) (put 'byte-compile-disable-print-circle 'safe-local-variable 'booleanp) @@ -2762,7 +2762,7 @@ else the global value will be modified. (autoload 'byte-compile-enable-warning "bytecomp" "\ Change `byte-compile-warnings' to enable WARNING. -If `byte-compile-warnings' is `t', do nothing. Otherwise, if the +If `byte-compile-warnings' is t, do nothing. Otherwise, if the first element is `not', remove WARNING, else add it. Normally you should let-bind `byte-compile-warnings' before calling this, else the global value will be modified. @@ -2898,7 +2898,7 @@ from the cursor position. ;;;*** -;;;### (autoloads nil "calc" "calc/calc.el" (21670 32330 885624 725000)) +;;;### (autoloads nil "calc" "calc/calc.el" (21855 576 517945 858000)) ;;; Generated autoloads from calc/calc.el (define-key ctl-x-map "*" 'calc-dispatch) @@ -2995,8 +2995,8 @@ See Info node `(calc)Defining Functions'. ;;;*** -;;;### (autoloads nil "calculator" "calculator.el" (21702 8774 274627 -;;;;;; 813000)) +;;;### (autoloads nil "calculator" "calculator.el" (21850 35126 597287 +;;;;;; 693000)) ;;; Generated autoloads from calculator.el (autoload 'calculator "calculator" "\ @@ -3007,8 +3007,8 @@ See the documentation for `calculator-mode' for more information. ;;;*** -;;;### (autoloads nil "calendar" "calendar/calendar.el" (21670 32330 -;;;;;; 885624 725000)) +;;;### (autoloads nil "calendar" "calendar/calendar.el" (21852 24381 +;;;;;; 457257 198000)) ;;; Generated autoloads from calendar/calendar.el (autoload 'calendar "calendar" "\ @@ -3051,8 +3051,8 @@ This function is suitable for execution in an init file. ;;;*** -;;;### (autoloads nil "canlock" "gnus/canlock.el" (21670 32330 885624 -;;;;;; 725000)) +;;;### (autoloads nil "canlock" "gnus/canlock.el" (21852 24381 567240 +;;;;;; 49000)) ;;; Generated autoloads from gnus/canlock.el (autoload 'canlock-insert-header "canlock" "\ @@ -3069,8 +3069,8 @@ it fails. ;;;*** -;;;### (autoloads nil "cc-engine" "progmodes/cc-engine.el" (21743 -;;;;;; 190 195328 729000)) +;;;### (autoloads nil "cc-engine" "progmodes/cc-engine.el" (21855 +;;;;;; 577 387944 393000)) ;;; Generated autoloads from progmodes/cc-engine.el (autoload 'c-guess-basic-syntax "cc-engine" "\ @@ -3080,8 +3080,8 @@ Return the syntactic context of the current line. ;;;*** -;;;### (autoloads nil "cc-guess" "progmodes/cc-guess.el" (21670 32331 -;;;;;; 385639 720000)) +;;;### (autoloads nil "cc-guess" "progmodes/cc-guess.el" (21855 577 +;;;;;; 397944 786000)) ;;; Generated autoloads from progmodes/cc-guess.el (defvar c-guess-guessed-offsets-alist nil "\ @@ -3179,8 +3179,8 @@ the absolute file name of the file if STYLE-NAME is nil. ;;;*** -;;;### (autoloads nil "cc-mode" "progmodes/cc-mode.el" (21814 50992 -;;;;;; 820503 761000)) +;;;### (autoloads nil "cc-mode" "progmodes/cc-mode.el" (21861 39358 +;;;;;; 537945 535000)) ;;; Generated autoloads from progmodes/cc-mode.el (autoload 'c-initialize-cc-mode "cc-mode" "\ @@ -3749,15 +3749,15 @@ Choose `cfengine2-mode' or `cfengine3-mode' by buffer contents. ;;;*** -;;;### (autoloads nil "chart" "emacs-lisp/chart.el" (21679 47292 -;;;;;; 556033 759000)) +;;;### (autoloads nil "chart" "emacs-lisp/chart.el" (21841 54062 +;;;;;; 162628 940000)) ;;; Generated autoloads from emacs-lisp/chart.el (push (purecopy '(chart 0 2)) package--builtin-versions) ;;;*** ;;;### (autoloads nil "check-declare" "emacs-lisp/check-declare.el" -;;;;;; (21826 50092 650494 96000)) +;;;;;; (21855 576 747949 136000)) ;;; Generated autoloads from emacs-lisp/check-declare.el (autoload 'check-declare-file "check-declare" "\ @@ -3774,8 +3774,8 @@ Returns non-nil if any false statements are found. ;;;*** -;;;### (autoloads nil "checkdoc" "emacs-lisp/checkdoc.el" (21779 -;;;;;; 56495 106033 935000)) +;;;### (autoloads nil "checkdoc" "emacs-lisp/checkdoc.el" (21862 +;;;;;; 60209 647465 565000)) ;;; Generated autoloads from emacs-lisp/checkdoc.el (push (purecopy '(checkdoc 0 6 2)) package--builtin-versions) (put 'checkdoc-force-docstrings-flag 'safe-local-variable #'booleanp) @@ -4053,8 +4053,8 @@ and runs the normal hook `command-history-hook'. ;;;*** -;;;### (autoloads nil "cl-indent" "emacs-lisp/cl-indent.el" (21765 -;;;;;; 23600 805241 145000)) +;;;### (autoloads nil "cl-indent" "emacs-lisp/cl-indent.el" (21855 +;;;;;; 576 767950 442000)) ;;; Generated autoloads from emacs-lisp/cl-indent.el (autoload 'common-lisp-indent-function "cl-indent" "\ @@ -4137,8 +4137,8 @@ instead. ;;;*** -;;;### (autoloads nil "cl-lib" "emacs-lisp/cl-lib.el" (21799 41766 -;;;;;; 961230 875000)) +;;;### (autoloads nil "cl-lib" "emacs-lisp/cl-lib.el" (21843 55159 +;;;;;; 639401 629000)) ;;; Generated autoloads from emacs-lisp/cl-lib.el (push (purecopy '(cl-lib 1 0)) package--builtin-versions) @@ -4156,8 +4156,8 @@ a future Emacs interpreter will be able to use it.") ;;;*** -;;;### (autoloads nil "cmacexp" "progmodes/cmacexp.el" (21670 32331 -;;;;;; 385639 720000)) +;;;### (autoloads nil "cmacexp" "progmodes/cmacexp.el" (21828 42028 +;;;;;; 650494 471000)) ;;; Generated autoloads from progmodes/cmacexp.el (autoload 'c-macro-expand "cmacexp" "\ @@ -4318,8 +4318,8 @@ REGEXP-GROUP is the regular expression group in REGEXP to use. ;;;*** -;;;### (autoloads nil "compare-w" "vc/compare-w.el" (21670 32331 -;;;;;; 885635 586000)) +;;;### (autoloads nil "compare-w" "vc/compare-w.el" (21855 577 527945 +;;;;;; 248000)) ;;; Generated autoloads from vc/compare-w.el (autoload 'compare-windows "compare-w" "\ @@ -4355,8 +4355,8 @@ on third call it again advances points to the next difference and so on. ;;;*** -;;;### (autoloads nil "compile" "progmodes/compile.el" (21798 49947 -;;;;;; 262665 54000)) +;;;### (autoloads nil "compile" "progmodes/compile.el" (21850 34915 +;;;;;; 107315 406000)) ;;; Generated autoloads from progmodes/compile.el (defvar compilation-mode-hook nil "\ @@ -4784,8 +4784,8 @@ If FIX is non-nil, run `copyright-fix-years' instead. ;;;*** -;;;### (autoloads nil "cperl-mode" "progmodes/cperl-mode.el" (21771 -;;;;;; 62389 36768 739000)) +;;;### (autoloads nil "cperl-mode" "progmodes/cperl-mode.el" (21862 +;;;;;; 60209 828658 75000)) ;;; Generated autoloads from progmodes/cperl-mode.el (put 'cperl-indent-level 'safe-local-variable 'integerp) (put 'cperl-brace-offset 'safe-local-variable 'integerp) @@ -5125,8 +5125,8 @@ entering the area covered by the text-property property or leaving it. ;;;*** -;;;### (autoloads nil "cus-edit" "cus-edit.el" (21815 59890 571208 -;;;;;; 933000)) +;;;### (autoloads nil "cus-edit" "cus-edit.el" (21855 576 647952 +;;;;;; 330000)) ;;; Generated autoloads from cus-edit.el (defvar custom-browse-sort-alphabetically nil "\ @@ -5445,8 +5445,8 @@ The format is suitable for use with `easy-menu-define'. ;;;*** -;;;### (autoloads nil "cus-theme" "cus-theme.el" (21670 32330 885624 -;;;;;; 725000)) +;;;### (autoloads nil "cus-theme" "cus-theme.el" (21862 60209 618658 +;;;;;; 448000)) ;;; Generated autoloads from cus-theme.el (autoload 'customize-create-theme "cus-theme" "\ @@ -5622,7 +5622,7 @@ Create a new data-debug buffer with NAME. ;;;*** -;;;### (autoloads nil "dbus" "net/dbus.el" (21799 41767 11212 472000)) +;;;### (autoloads nil "dbus" "net/dbus.el" (21855 577 147947 107000)) ;;; Generated autoloads from net/dbus.el (autoload 'dbus-handle-event "dbus" "\ @@ -5762,8 +5762,8 @@ There is some minimal font-lock support (see vars ;;;*** -;;;### (autoloads nil "debug" "emacs-lisp/debug.el" (21777 14770 -;;;;;; 397461 322000)) +;;;### (autoloads nil "debug" "emacs-lisp/debug.el" (21855 576 767950 +;;;;;; 442000)) ;;; Generated autoloads from emacs-lisp/debug.el (setq debugger 'debug) @@ -5958,8 +5958,8 @@ the first time the mode is used. ;;;*** -;;;### (autoloads nil "descr-text" "descr-text.el" (21695 35516 595262 -;;;;;; 313000)) +;;;### (autoloads nil "descr-text" "descr-text.el" (21862 60209 618658 +;;;;;; 448000)) ;;; Generated autoloads from descr-text.el (autoload 'describe-text-properties "descr-text" "\ @@ -6008,8 +6008,7 @@ This function is meant to be used as a value of ;;;*** -;;;### (autoloads nil "desktop" "desktop.el" (21799 41766 961230 -;;;;;; 875000)) +;;;### (autoloads nil "desktop" "desktop.el" (21860 18496 17962 857000)) ;;; Generated autoloads from desktop.el (defvar desktop-save-mode nil "\ @@ -6100,7 +6099,9 @@ code like (add-to-list 'desktop-buffer-mode-handlers '(foo-mode . foo-restore-desktop-buffer)) -Furthermore the major mode function must be autoloaded.") +The major mode function must either be autoloaded, or of the form +\"foobar-mode\" and defined in library \"foobar\", so that desktop +can guess how to load the mode's definition.") (put 'desktop-buffer-mode-handlers 'risky-local-variable t) @@ -6142,7 +6143,9 @@ code like (add-to-list 'desktop-minor-mode-handlers '(foo-mode . foo-desktop-restore)) -Furthermore the minor mode function must be autoloaded. +The minor mode function must either be autoloaded, or of the form +\"foobar-mode\" and defined in library \"foobar\", so that desktop +can guess how to load the mode's definition. See also `desktop-minor-mode-table'.") @@ -6214,8 +6217,8 @@ Revert to the last loaded desktop. ;;;*** -;;;### (autoloads nil "deuglify" "gnus/deuglify.el" (21795 44704 -;;;;;; 920702 722000)) +;;;### (autoloads nil "deuglify" "gnus/deuglify.el" (21855 576 877944 +;;;;;; 285000)) ;;; Generated autoloads from gnus/deuglify.el (autoload 'gnus-article-outlook-unwrap-lines "deuglify" "\ @@ -6247,8 +6250,8 @@ Deuglify broken Outlook (Express) articles and redisplay. ;;;*** -;;;### (autoloads nil "diary-lib" "calendar/diary-lib.el" (21670 -;;;;;; 32330 885624 725000)) +;;;### (autoloads nil "diary-lib" "calendar/diary-lib.el" (21855 +;;;;;; 576 517945 858000)) ;;; Generated autoloads from calendar/diary-lib.el (autoload 'diary "diary-lib" "\ @@ -6382,7 +6385,7 @@ Optional arguments are passed to `dig-invoke'. ;;;*** -;;;### (autoloads nil "dired" "dired.el" (21757 29489 158925 687000)) +;;;### (autoloads nil "dired" "dired.el" (21855 576 727950 398000)) ;;; Generated autoloads from dired.el (defvar dired-listing-switches (purecopy "-al") "\ @@ -6502,8 +6505,8 @@ Keybindings: ;;;*** -;;;### (autoloads nil "dirtrack" "dirtrack.el" (21670 32330 885624 -;;;;;; 725000)) +;;;### (autoloads nil "dirtrack" "dirtrack.el" (21855 576 727950 +;;;;;; 398000)) ;;; Generated autoloads from dirtrack.el (autoload 'dirtrack-mode "dirtrack" "\ @@ -6805,8 +6808,8 @@ strings when pressed twice. See `double-map' for details. ;;;*** -;;;### (autoloads nil "dunnet" "play/dunnet.el" (21670 32331 385639 -;;;;;; 720000)) +;;;### (autoloads nil "dunnet" "play/dunnet.el" (21841 54062 172628 +;;;;;; 227000)) ;;; Generated autoloads from play/dunnet.el (push (purecopy '(dunnet 2 1)) package--builtin-versions) @@ -7572,7 +7575,7 @@ With prefix arg NOCONFIRM, execute current line as-is without editing. ;;;*** -;;;### (autoloads nil "ede" "cedet/ede.el" (21715 20800 626041 761000)) +;;;### (autoloads nil "ede" "cedet/ede.el" (21834 29303 521933 754000)) ;;; Generated autoloads from cedet/ede.el (push (purecopy '(ede 1 2)) package--builtin-versions) @@ -7598,8 +7601,8 @@ an EDE controlled project. ;;;*** -;;;### (autoloads nil "edebug" "emacs-lisp/edebug.el" (21803 38822 -;;;;;; 934065 207000)) +;;;### (autoloads nil "edebug" "emacs-lisp/edebug.el" (21857 42300 +;;;;;; 387957 585000)) ;;; Generated autoloads from emacs-lisp/edebug.el (defvar edebug-all-defs nil "\ @@ -7935,8 +7938,8 @@ With optional NODE, goes to that node. ;;;*** -;;;### (autoloads nil "ediff-help" "vc/ediff-help.el" (21670 32331 -;;;;;; 885635 586000)) +;;;### (autoloads nil "ediff-help" "vc/ediff-help.el" (21861 5946 +;;;;;; 771514 868000)) ;;; Generated autoloads from vc/ediff-help.el (autoload 'ediff-customize "ediff-help" "\ @@ -7959,8 +7962,8 @@ Display Ediff's registry. ;;;*** -;;;### (autoloads nil "ediff-util" "vc/ediff-util.el" (21670 32331 -;;;;;; 885635 586000)) +;;;### (autoloads nil "ediff-util" "vc/ediff-util.el" (21852 24382 +;;;;;; 97237 703000)) ;;; Generated autoloads from vc/ediff-util.el (autoload 'ediff-toggle-multiframe "ediff-util" "\ @@ -8083,15 +8086,15 @@ BUFFER is put back into its original major mode. ;;;*** -;;;### (autoloads nil "eieio" "emacs-lisp/eieio.el" (21803 38822 -;;;;;; 944058 719000)) +;;;### (autoloads nil "eieio" "emacs-lisp/eieio.el" (21862 60482 +;;;;;; 430808 412000)) ;;; Generated autoloads from emacs-lisp/eieio.el (push (purecopy '(eieio 1 4)) package--builtin-versions) ;;;*** -;;;### (autoloads nil "eieio-core" "emacs-lisp/eieio-core.el" (21822 -;;;;;; 42786 590507 895000)) +;;;### (autoloads nil "eieio-core" "emacs-lisp/eieio-core.el" (21827 +;;;;;; 47608 610495 897000)) ;;; Generated autoloads from emacs-lisp/eieio-core.el (push (purecopy '(eieio-core 1 4)) package--builtin-versions) @@ -8165,8 +8168,8 @@ This is suitable as an entry on `find-file-hook' or appropriate mode hooks. ;;;*** -;;;### (autoloads nil "elint" "emacs-lisp/elint.el" (21814 9129 240503 -;;;;;; 291000)) +;;;### (autoloads nil "elint" "emacs-lisp/elint.el" (21853 45243 +;;;;;; 381515 341000)) ;;; Generated autoloads from emacs-lisp/elint.el (autoload 'elint-file "elint" "\ @@ -8720,7 +8723,7 @@ Look at CONFIG and try to expand GROUP. ;;;*** -;;;### (autoloads nil "erc" "erc/erc.el" (21779 56495 106033 935000)) +;;;### (autoloads nil "erc" "erc/erc.el" (21862 60209 688658 322000)) ;;; Generated autoloads from erc/erc.el (push (purecopy '(erc 5 3)) package--builtin-versions) @@ -8834,8 +8837,8 @@ that subcommand. ;;;*** -;;;### (autoloads nil "erc-ezbounce" "erc/erc-ezbounce.el" (21670 -;;;;;; 32330 885624 725000)) +;;;### (autoloads nil "erc-ezbounce" "erc/erc-ezbounce.el" (21855 +;;;;;; 576 787951 155000)) ;;; Generated autoloads from erc/erc-ezbounce.el (autoload 'erc-cmd-ezb "erc-ezbounce" "\ @@ -8846,7 +8849,7 @@ Send EZB commands to the EZBouncer verbatim. (autoload 'erc-ezb-get-login "erc-ezbounce" "\ Return an appropriate EZBounce login for SERVER and PORT. Look up entries in `erc-ezb-login-alist'. If the username or password -in the alist is `nil', prompt for the appropriate values. +in the alist is nil, prompt for the appropriate values. \(fn SERVER PORT)" nil nil) @@ -9097,8 +9100,8 @@ with args, toggle notify status of people. ;;;*** -;;;### (autoloads nil "erc-pcomplete" "erc/erc-pcomplete.el" (21808 -;;;;;; 56742 451927 765000)) +;;;### (autoloads nil "erc-pcomplete" "erc/erc-pcomplete.el" (21855 +;;;;;; 576 787951 155000)) ;;; Generated autoloads from erc/erc-pcomplete.el (autoload 'erc-completion-mode "erc-pcomplete" nil t) @@ -9162,8 +9165,8 @@ This will add a speedbar major display mode. ;;;*** -;;;### (autoloads nil "erc-stamp" "erc/erc-stamp.el" (21804 59688 -;;;;;; 164807 902000)) +;;;### (autoloads nil "erc-stamp" "erc/erc-stamp.el" (21860 18496 +;;;;;; 27951 644000)) ;;; Generated autoloads from erc/erc-stamp.el (autoload 'erc-timestamp-mode "erc-stamp" nil t) @@ -9227,8 +9230,8 @@ Add a file to `erc-xdcc-files'. ;;;*** -;;;### (autoloads nil "ert" "emacs-lisp/ert.el" (21826 54340 400495 -;;;;;; 677000)) +;;;### (autoloads nil "ert" "emacs-lisp/ert.el" (21843 54898 597238 +;;;;;; 876000)) ;;; Generated autoloads from emacs-lisp/ert.el (autoload 'ert-deftest "ert" "\ @@ -9310,8 +9313,8 @@ Kill all test buffers that are still live. ;;;*** -;;;### (autoloads nil "esh-mode" "eshell/esh-mode.el" (21812 53800 -;;;;;; 114093 251000)) +;;;### (autoloads nil "esh-mode" "eshell/esh-mode.el" (21861 39358 +;;;;;; 497944 643000)) ;;; Generated autoloads from eshell/esh-mode.el (autoload 'eshell-mode "esh-mode" "\ @@ -9357,8 +9360,8 @@ corresponding to a successful execution. ;;;*** -;;;### (autoloads nil "etags" "progmodes/etags.el" (21826 300 610486 -;;;;;; 122000)) +;;;### (autoloads nil "etags" "progmodes/etags.el" (21866 57262 677944 +;;;;;; 752000)) ;;; Generated autoloads from progmodes/etags.el (defvar tags-file-name nil "\ @@ -9505,6 +9508,8 @@ See documentation of variable `tags-file-name'. \(fn TAGNAME &optional NEXT-P REGEXP-P)" t nil) +(make-obsolete 'find-tag 'xref-find-definitions '"25.1") + (autoload 'find-tag-other-window "etags" "\ Find tag (in current tags table) whose name contains TAGNAME. Select the buffer containing the tag's definition in another window, and @@ -9673,8 +9678,8 @@ for \\[find-tag] (which see). ;;;*** -;;;### (autoloads nil "ethio-util" "language/ethio-util.el" (21824 -;;;;;; 5851 711914 99000)) +;;;### (autoloads nil "ethio-util" "language/ethio-util.el" (21862 +;;;;;; 60209 768658 443000)) ;;; Generated autoloads from language/ethio-util.el (autoload 'setup-ethiopic-environment-internal "ethio-util" "\ @@ -10125,8 +10130,8 @@ This is used only in conjunction with `expand-add-abbrevs'. ;;;*** -;;;### (autoloads nil "f90" "progmodes/f90.el" (21740 23998 526747 -;;;;;; 884000)) +;;;### (autoloads nil "f90" "progmodes/f90.el" (21862 60209 828658 +;;;;;; 75000)) ;;; Generated autoloads from progmodes/f90.el (autoload 'f90-mode "f90" "\ @@ -10137,7 +10142,7 @@ For fixed format code, use `fortran-mode'. \\[f90-indent-new-line] indents current line and creates a new indented line. \\[f90-indent-subprogram] indents the current subprogram. -Type `? or `\\[help-command] to display a list of built-in abbrevs for F90 keywords. +Type \\=`? or \\=`\\[help-command] to display a list of built-in abbrevs for F90 keywords. Key definitions: \\{f90-mode-map} @@ -10193,8 +10198,8 @@ with no args, if that value is non-nil. ;;;*** -;;;### (autoloads nil "face-remap" "face-remap.el" (21670 32330 885624 -;;;;;; 725000)) +;;;### (autoloads nil "face-remap" "face-remap.el" (21855 576 807944 +;;;;;; 863000)) ;;; Generated autoloads from face-remap.el (autoload 'face-remap-add-relative "face-remap" "\ @@ -10239,7 +10244,7 @@ of face attribute/value pairs, like in a `face' text property. If SPECS is empty, call `face-remap-reset-base' to use the normal definition of FACE as the base remapping; note that this is -different from SPECS containing a single value `nil', which means +different from SPECS containing a single value nil, which means not to inherit from the global definition of FACE at all. \(fn FACE &rest SPECS)" nil nil) @@ -10408,7 +10413,7 @@ you can set `feedmail-queue-reminder-alist' to nil. ;;;*** -;;;### (autoloads nil "ffap" "ffap.el" (21797 36 690506 232000)) +;;;### (autoloads nil "ffap" "ffap.el" (21837 20508 21231 579000)) ;;; Generated autoloads from ffap.el (autoload 'ffap-next "ffap" "\ @@ -10956,7 +10961,7 @@ Change the filter on a `find-lisp-find-dired' buffer to REGEXP. ;;;*** -;;;### (autoloads nil "finder" "finder.el" (21670 32330 885624 725000)) +;;;### (autoloads nil "finder" "finder.el" (21862 60209 708661 34000)) ;;; Generated autoloads from finder.el (push (purecopy '(finder 1 0)) package--builtin-versions) @@ -11213,7 +11218,7 @@ play around with the following keys: ;;;*** -;;;### (autoloads nil "forms" "forms.el" (21804 59688 164807 902000)) +;;;### (autoloads nil "forms" "forms.el" (21852 24381 567240 49000)) ;;; Generated autoloads from forms.el (autoload 'forms-mode "forms" "\ @@ -11570,8 +11575,8 @@ Interactively, reads the register using `register-read-with-preview'. ;;;*** -;;;### (autoloads nil "gdb-mi" "progmodes/gdb-mi.el" (21724 35774 -;;;;;; 954622 790000)) +;;;### (autoloads nil "gdb-mi" "progmodes/gdb-mi.el" (21852 24381 +;;;;;; 917233 10000)) ;;; Generated autoloads from progmodes/gdb-mi.el (defvar gdb-enable-debug nil "\ @@ -11940,8 +11945,8 @@ CLEAN is obsolete and ignored. ;;;*** -;;;### (autoloads nil "gnus-art" "gnus/gnus-art.el" (21804 59688 -;;;;;; 184805 112000)) +;;;### (autoloads nil "gnus-art" "gnus/gnus-art.el" (21864 15535 +;;;;;; 27945 734000)) ;;; Generated autoloads from gnus/gnus-art.el (autoload 'gnus-article-prepare-display "gnus-art" "\ @@ -12175,8 +12180,8 @@ If gravatars are already displayed, remove them. ;;;*** -;;;### (autoloads nil "gnus-group" "gnus/gnus-group.el" (21804 59688 -;;;;;; 184805 112000)) +;;;### (autoloads nil "gnus-group" "gnus/gnus-group.el" (21852 24381 +;;;;;; 597233 80000)) ;;; Generated autoloads from gnus/gnus-group.el (autoload 'gnus-fetch-group "gnus-group" "\ @@ -12550,8 +12555,8 @@ Declare back end NAME with ABILITIES as a Gnus back end. ;;;*** -;;;### (autoloads nil "gnus-sum" "gnus/gnus-sum.el" (21804 59688 -;;;;;; 194794 158000)) +;;;### (autoloads nil "gnus-sum" "gnus/gnus-sum.el" (21855 576 897951 +;;;;;; 62000)) ;;; Generated autoloads from gnus/gnus-sum.el (autoload 'gnus-summary-bookmark-jump "gnus-sum" "\ @@ -12562,8 +12567,8 @@ BOOKMARK is a bookmark name or a bookmark record. ;;;*** -;;;### (autoloads nil "gnus-sync" "gnus/gnus-sync.el" (21670 32330 -;;;;;; 885624 725000)) +;;;### (autoloads nil "gnus-sync" "gnus/gnus-sync.el" (21832 3452 +;;;;;; 581913 198000)) ;;; Generated autoloads from gnus/gnus-sync.el (autoload 'gnus-sync-initialize "gnus-sync" "\ @@ -13069,8 +13074,8 @@ binding mode. ;;;*** -;;;### (autoloads nil "handwrite" "play/handwrite.el" (21670 32331 -;;;;;; 385639 720000)) +;;;### (autoloads nil "handwrite" "play/handwrite.el" (21852 24381 +;;;;;; 887244 288000)) ;;; Generated autoloads from play/handwrite.el (autoload 'handwrite "handwrite" "\ @@ -13286,8 +13291,8 @@ different regions. With numeric argument ARG, behaves like ;;;*** -;;;### (autoloads nil "help-fns" "help-fns.el" (21818 36533 711220 -;;;;;; 766000)) +;;;### (autoloads nil "help-fns" "help-fns.el" (21862 60209 718658 +;;;;;; 824000)) ;;; Generated autoloads from help-fns.el (autoload 'describe-function "help-fns" "\ @@ -13388,8 +13393,8 @@ gives the window that lists the options.") ;;;*** -;;;### (autoloads nil "help-mode" "help-mode.el" (21733 50750 334730 -;;;;;; 5000)) +;;;### (autoloads nil "help-mode" "help-mode.el" (21862 60209 718658 +;;;;;; 824000)) ;;; Generated autoloads from help-mode.el (autoload 'help-mode "help-mode" "\ @@ -14016,8 +14021,8 @@ See `highlight-changes-mode' for more information on Highlight-Changes mode. ;;;*** -;;;### (autoloads nil "hippie-exp" "hippie-exp.el" (21670 32331 385639 -;;;;;; 720000)) +;;;### (autoloads nil "hippie-exp" "hippie-exp.el" (21850 34968 457268 +;;;;;; 630000)) ;;; Generated autoloads from hippie-exp.el (push (purecopy '(hippie-exp 1 6)) package--builtin-versions) @@ -14358,7 +14363,7 @@ bound to the current value of the filter. ;;;*** -;;;### (autoloads nil "ibuffer" "ibuffer.el" (21799 41767 11212 472000)) +;;;### (autoloads nil "ibuffer" "ibuffer.el" (21855 577 47945 133000)) ;;; Generated autoloads from ibuffer.el (autoload 'ibuffer-list-buffers "ibuffer" "\ @@ -14451,8 +14456,8 @@ buffer `*icalendar-errors*'. ;;;*** -;;;### (autoloads nil "icomplete" "icomplete.el" (21670 32331 385639 -;;;;;; 720000)) +;;;### (autoloads nil "icomplete" "icomplete.el" (21852 24381 607274 +;;;;;; 219000)) ;;; Generated autoloads from icomplete.el (defvar icomplete-mode nil "\ @@ -14532,8 +14537,8 @@ with no args, if that value is non-nil. ;;;*** -;;;### (autoloads nil "idlw-shell" "progmodes/idlw-shell.el" (21826 -;;;;;; 49523 450500 879000)) +;;;### (autoloads nil "idlw-shell" "progmodes/idlw-shell.el" (21855 +;;;;;; 577 397944 786000)) ;;; Generated autoloads from progmodes/idlw-shell.el (autoload 'idlwave-shell "idlw-shell" "\ @@ -14558,8 +14563,8 @@ See also the variable `idlwave-shell-prompt-pattern'. ;;;*** -;;;### (autoloads nil "idlwave" "progmodes/idlwave.el" (21670 32331 -;;;;;; 385639 720000)) +;;;### (autoloads nil "idlwave" "progmodes/idlwave.el" (21862 60209 +;;;;;; 838658 475000)) ;;; Generated autoloads from progmodes/idlwave.el (push (purecopy '(idlwave 6 1 22)) package--builtin-versions) @@ -14631,7 +14636,7 @@ The main features of this mode are 5. Code Templates and Abbreviations -------------------------------- Many Abbreviations are predefined to expand to code fragments and templates. - The abbreviations start generally with a `\\`. Some examples: + The abbreviations start generally with a `\\'. Some examples: \\pr PROCEDURE template \\fu FUNCTION template @@ -14688,7 +14693,7 @@ The main features of this mode are ;;;*** -;;;### (autoloads nil "ido" "ido.el" (21767 65327 504606 256000)) +;;;### (autoloads nil "ido" "ido.el" (21862 60209 728658 929000)) ;;; Generated autoloads from ido.el (defvar ido-mode nil "\ @@ -14950,7 +14955,7 @@ DEF, if non-nil, is the default value. ;;;*** -;;;### (autoloads nil "ielm" "ielm.el" (21695 35516 595262 313000)) +;;;### (autoloads nil "ielm" "ielm.el" (21855 577 47945 133000)) ;;; Generated autoloads from ielm.el (autoload 'ielm "ielm" "\ @@ -15608,7 +15613,7 @@ of `inferior-lisp-program'). Runs the hooks from ;;;*** -;;;### (autoloads nil "info" "info.el" (21822 3243 710497 966000)) +;;;### (autoloads nil "info" "info.el" (21862 60209 738095 873000)) ;;; Generated autoloads from info.el (defcustom Info-default-directory-list (let* ((config-dir (file-name-as-directory (or (and (featurep 'ns) (let ((dir (expand-file-name "../info" data-directory))) (if (file-directory-p dir) dir))) configure-info-directory))) (prefixes (prune-directory-list '("/usr/local/" "/usr/" "/opt/" "/"))) (suffixes '("share/" "" "gnu/" "gnu/lib/" "gnu/lib/emacs/" "emacs/" "lib/" "lib/emacs/")) (standard-info-dirs (apply #'nconc (mapcar (lambda (pfx) (let ((dirs (mapcar (lambda (sfx) (concat pfx sfx "info/")) suffixes))) (prune-directory-list dirs))) prefixes))) (dirs (if (member config-dir standard-info-dirs) (nconc standard-info-dirs (list config-dir)) (cons config-dir standard-info-dirs)))) (if (not (eq system-type 'windows-nt)) dirs (let* ((instdir (file-name-directory invocation-directory)) (dir1 (expand-file-name "../info/" instdir)) (dir2 (expand-file-name "../../../info/" instdir))) (cond ((file-exists-p dir1) (append dirs (list dir1))) ((file-exists-p dir2) (append dirs (list dir2))) (t dirs))))) "\ @@ -15820,8 +15825,8 @@ completion alternatives to currently visited manuals. ;;;*** -;;;### (autoloads nil "info-look" "info-look.el" (21814 9129 270507 -;;;;;; 521000)) +;;;### (autoloads nil "info-look" "info-look.el" (21862 60209 738095 +;;;;;; 873000)) ;;; Generated autoloads from info-look.el (autoload 'info-lookup-reset "info-look" "\ @@ -16154,15 +16159,15 @@ Add submenus to the File menu, to convert to and from various formats. ;;;*** ;;;### (autoloads nil "iso-transl" "international/iso-transl.el" -;;;;;; (21670 32331 385639 720000)) +;;;;;; (21840 19142 552627 956000)) ;;; Generated autoloads from international/iso-transl.el (define-key key-translation-map "\C-x8" 'iso-transl-ctl-x-8-map) (autoload 'iso-transl-ctl-x-8-map "iso-transl" "Keymap for C-x 8 prefix." t 'keymap) ;;;*** -;;;### (autoloads nil "ispell" "textmodes/ispell.el" (21824 5851 -;;;;;; 721914 174000)) +;;;### (autoloads nil "ispell" "textmodes/ispell.el" (21855 577 527945 +;;;;;; 248000)) ;;; Generated autoloads from textmodes/ispell.el (put 'ispell-check-comments 'safe-local-variable (lambda (a) (memq a '(nil t exclusive)))) @@ -16497,8 +16502,8 @@ by `jka-compr-installed'. ;;;*** -;;;### (autoloads nil "js" "progmodes/js.el" (21790 26797 438891 -;;;;;; 674000)) +;;;### (autoloads nil "js" "progmodes/js.el" (21833 59993 694773 +;;;;;; 201000)) ;;; Generated autoloads from progmodes/js.el (push (purecopy '(js 9)) package--builtin-versions) @@ -16954,7 +16959,7 @@ generations (this defaults to 1). ;;;*** -;;;### (autoloads nil "linum" "linum.el" (21670 32331 385639 720000)) +;;;### (autoloads nil "linum" "linum.el" (21855 577 57945 485000)) ;;; Generated autoloads from linum.el (push (purecopy '(linum 0 9 24)) package--builtin-versions) @@ -17075,8 +17080,8 @@ except that FILTER is not optional. ;;;*** -;;;### (autoloads nil "log-edit" "vc/log-edit.el" (21800 62630 983381 -;;;;;; 721000)) +;;;### (autoloads nil "log-edit" "vc/log-edit.el" (21852 24382 97237 +;;;;;; 703000)) ;;; Generated autoloads from vc/log-edit.el (autoload 'log-edit "log-edit" "\ @@ -17107,8 +17112,8 @@ done. Otherwise, it uses the current buffer. ;;;*** -;;;### (autoloads nil "log-view" "vc/log-view.el" (21814 9129 450497 -;;;;;; 666000)) +;;;### (autoloads nil "log-view" "vc/log-view.el" (21850 34915 117255 +;;;;;; 375000)) ;;; Generated autoloads from vc/log-view.el (autoload 'log-view-mode "log-view" "\ @@ -17213,8 +17218,7 @@ for further customization of the printer command. ;;;*** -;;;### (autoloads nil "ls-lisp" "ls-lisp.el" (21670 32331 385639 -;;;;;; 720000)) +;;;### (autoloads nil "ls-lisp" "ls-lisp.el" (21855 577 57945 485000)) ;;; Generated autoloads from ls-lisp.el (defvar ls-lisp-support-shell-wildcards t "\ @@ -17474,8 +17478,8 @@ matches may be returned from the message body. ;;;*** -;;;### (autoloads nil "mailabbrev" "mail/mailabbrev.el" (21670 32331 -;;;;;; 385639 720000)) +;;;### (autoloads nil "mailabbrev" "mail/mailabbrev.el" (21850 35149 +;;;;;; 497265 880000)) ;;; Generated autoloads from mail/mailabbrev.el (defvar mail-abbrevs-mode nil "\ @@ -17524,13 +17528,13 @@ double-quotes. ;;;*** -;;;### (autoloads nil "mailalias" "mail/mailalias.el" (21670 32331 -;;;;;; 385639 720000)) +;;;### (autoloads nil "mailalias" "mail/mailalias.el" (21855 577 +;;;;;; 57945 485000)) ;;; Generated autoloads from mail/mailalias.el (defvar mail-complete-style 'angles "\ Specifies how \\[mail-complete] formats the full name when it completes. -If `nil', they contain just the return address like: +If nil, they contain just the return address like: king@grassland.com If `parens', they look like: king@grassland.com (Elvis Parsley) @@ -17834,8 +17838,8 @@ recursion depth in the minibuffer prompt. This is only useful if ;;;*** -;;;### (autoloads nil "message" "gnus/message.el" (21822 37322 690488 -;;;;;; 175000)) +;;;### (autoloads nil "message" "gnus/message.el" (21855 576 917950 +;;;;;; 620000)) ;;; Generated autoloads from gnus/message.el (define-mail-user-agent 'message-user-agent 'message-mail 'message-send-and-exit 'message-kill-buffer 'message-send-hook) @@ -18613,8 +18617,8 @@ body) or \"attachment\" (separate from the body). ;;;*** -;;;### (autoloads nil "mode-local" "cedet/mode-local.el" (21670 32330 -;;;;;; 885624 725000)) +;;;### (autoloads nil "mode-local" "cedet/mode-local.el" (21862 60209 +;;;;;; 618658 448000)) ;;; Generated autoloads from cedet/mode-local.el (put 'define-overloadable-function 'doc-string-elt 3) @@ -18774,8 +18778,8 @@ different buffer menu using the function `msb'. ;;;*** -;;;### (autoloads nil "mule-diag" "international/mule-diag.el" (21670 -;;;;;; 32331 385639 720000)) +;;;### (autoloads nil "mule-diag" "international/mule-diag.el" (21862 +;;;;;; 60209 748658 481000)) ;;; Generated autoloads from international/mule-diag.el (autoload 'list-character-sets "mule-diag" "\ @@ -19147,8 +19151,8 @@ listed in the PORTS list. ;;;*** -;;;### (autoloads nil "network-stream" "net/network-stream.el" (21716 -;;;;;; 41663 456033 27000)) +;;;### (autoloads nil "network-stream" "net/network-stream.el" (21855 +;;;;;; 577 147947 107000)) ;;; Generated autoloads from net/network-stream.el (autoload 'open-network-stream "network-stream" "\ @@ -19221,7 +19225,7 @@ values: :client-certificate should either be a list where the first element is the certificate key file name, and the second - element is the certificate file name itself, or `t', which + element is the certificate file name itself, or t, which means that `auth-source' will be queried for the key and the certificate. This parameter will only be used when doing TLS or STARTTLS connections. @@ -19331,8 +19335,7 @@ Generate NOV databases in all nndiary directories. ;;;*** -;;;### (autoloads nil "nndoc" "gnus/nndoc.el" (21670 32331 385639 -;;;;;; 720000)) +;;;### (autoloads nil "nndoc" "gnus/nndoc.el" (21855 576 927958 586000)) ;;; Generated autoloads from gnus/nndoc.el (autoload 'nndoc-add-type "nndoc" "\ @@ -19582,7 +19585,7 @@ Coloring: ;;;*** -;;;### (autoloads nil "org" "org/org.el" (21814 9129 360494 26000)) +;;;### (autoloads nil "org" "org/org.el" (21866 57262 677944 752000)) ;;; Generated autoloads from org/org.el (autoload 'org-babel-do-load-languages "org" "\ @@ -19803,8 +19806,8 @@ Call the customize function with org as argument. ;;;*** -;;;### (autoloads nil "org-agenda" "org/org-agenda.el" (21670 32331 -;;;;;; 385639 720000)) +;;;### (autoloads nil "org-agenda" "org/org-agenda.el" (21862 60209 +;;;;;; 818658 502000)) ;;; Generated autoloads from org/org-agenda.el (autoload 'org-toggle-sticky-agenda "org-agenda" "\ @@ -20077,8 +20080,8 @@ to override `appt-message-warning-time'. ;;;*** -;;;### (autoloads nil "org-capture" "org/org-capture.el" (21670 32331 -;;;;;; 385639 720000)) +;;;### (autoloads nil "org-capture" "org/org-capture.el" (21855 577 +;;;;;; 287944 835000)) ;;; Generated autoloads from org/org-capture.el (autoload 'org-capture-string "org-capture" "\ @@ -20184,8 +20187,8 @@ Turn on or update column view in the agenda. ;;;*** -;;;### (autoloads nil "org-compat" "org/org-compat.el" (21670 32331 -;;;;;; 385639 720000)) +;;;### (autoloads nil "org-compat" "org/org-compat.el" (21852 24381 +;;;;;; 787238 943000)) ;;; Generated autoloads from org/org-compat.el (autoload 'org-check-version "org-compat" "\ @@ -20195,8 +20198,8 @@ Try very hard to provide sensible version strings. ;;;*** -;;;### (autoloads nil "org-macs" "org/org-macs.el" (21670 32331 385639 -;;;;;; 720000)) +;;;### (autoloads nil "org-macs" "org/org-macs.el" (21855 577 287944 +;;;;;; 835000)) ;;; Generated autoloads from org/org-macs.el (autoload 'org-load-noerror-mustsuffix "org-macs" "\ @@ -20268,8 +20271,8 @@ See the command `outline-mode' for more information on this mode. ;;;*** -;;;### (autoloads nil "package" "emacs-lisp/package.el" (21826 49900 -;;;;;; 450489 321000)) +;;;### (autoloads nil "package" "emacs-lisp/package.el" (21865 36399 +;;;;;; 18126 278000)) ;;; Generated autoloads from emacs-lisp/package.el (push (purecopy '(package 1 0 1)) package--builtin-versions) @@ -20315,14 +20318,11 @@ in an archive in `package-archives'. Interactively, prompt for its name. If called interactively or if DONT-SELECT nil, add PKG to `package-selected-packages'. -If ASYNC is non-nil, perform the downloads asynchronously. -If CALLBACK is non-nil, call it with no arguments once the -entire operation is done. If PKG is a package-desc and it is already installed, don't try to install it but still mark it as selected. -\(fn PKG &optional DONT-SELECT ASYNC CALLBACK)" t nil) +\(fn PKG &optional DONT-SELECT)" t nil) (autoload 'package-install-from-buffer "package" "\ Install a package from the current buffer. @@ -20495,25 +20495,25 @@ Check if KEY is in the cache. ;;;*** -;;;### (autoloads nil "pcase" "emacs-lisp/pcase.el" (21804 59688 -;;;;;; 164807 902000)) +;;;### (autoloads nil "pcase" "emacs-lisp/pcase.el" (21862 60209 +;;;;;; 658658 512000)) ;;; Generated autoloads from emacs-lisp/pcase.el (autoload 'pcase "pcase" "\ Perform ML-style pattern matching on EXP. -CASES is a list of elements of the form (UPATTERN CODE...). +CASES is a list of elements of the form (PATTERN CODE...). -UPatterns can take the following forms: +Patterns can take the following forms: _ matches anything. SELFQUOTING matches itself. This includes keywords, numbers, and strings. SYMBOL matches anything and binds it to SYMBOL. - (or UPAT...) matches if any of the patterns matches. - (and UPAT...) matches if all the patterns match. + (or PAT...) matches if any of the patterns matches. + (and PAT...) matches if all the patterns match. 'VAL matches if the object is `equal' to VAL (pred FUN) matches if FUN applied to the object returns non-nil. (guard BOOLEXP) matches if BOOLEXP evaluates to non-nil. - (let UPAT EXP) matches if EXP matches UPAT. - (app FUN UPAT) matches if FUN applied to the object matches UPAT. + (let PAT EXP) matches if EXP matches PAT. + (app FUN PAT) matches if FUN applied to the object matches PAT. If a SYMBOL is used twice in the same pattern (i.e. the pattern is \"non-linear\"), then the second occurrence is turned into an `eq'uality test. @@ -20526,8 +20526,8 @@ FUN can refer to variables bound earlier in the pattern. FUN is assumed to be pure, i.e. it can be dropped if its result is not used, and two identical calls can be merged into one. E.g. you can match pairs where the cdr is larger than the car with a pattern -like `(,a . ,(pred (< a))) or, with more checks: -`(,(and a (pred numberp)) . ,(and (pred numberp) (pred (< a)))) +like \\=`(,a . ,(pred (< a))) or, with more checks: +\\=`(,(and a (pred numberp)) . ,(and (pred numberp) (pred (< a)))) Additional patterns can be defined via `pcase-defmacro'. Currently, the following patterns are provided this way: @@ -20544,7 +20544,7 @@ The exhaustive version of `pcase' (which see). (function-put 'pcase-exhaustive 'lisp-indent-function '1) (autoload 'pcase-lambda "pcase" "\ -Like `lambda' but allow each argument to be a UPattern. +Like `lambda' but allow each argument to be a pattern. I.e. accepts the usual &optional and &rest keywords, but every formal argument can be any pattern accepted by `pcase' (a mere variable name being but a special case of it). @@ -20558,7 +20558,7 @@ variable name being but a special case of it). (autoload 'pcase-let* "pcase" "\ Like `let*' but where you can use `pcase' patterns for bindings. BODY should be an expression, and BINDINGS should be a list of bindings -of the form (UPAT EXP). +of the form (PAT EXP). \(fn BINDINGS &rest BODY)" nil t) @@ -20567,7 +20567,10 @@ of the form (UPAT EXP). (autoload 'pcase-let "pcase" "\ Like `let' but where you can use `pcase' patterns for bindings. BODY should be a list of expressions, and BINDINGS should be a list of bindings -of the form (UPAT EXP). +of the form (PAT EXP). +The macro is expanded and optimized under the assumption that those +patterns *will* match, so a mismatch may go undetected or may cause +any kind of error. \(fn BINDINGS &rest BODY)" nil t) @@ -20581,7 +20584,9 @@ of the form (UPAT EXP). (function-put 'pcase-dolist 'lisp-indent-function '1) (autoload 'pcase-defmacro "pcase" "\ -Define a pcase UPattern macro. +Define a new kind of pcase PATTERN, by macro expansion. +Patterns of the form (NAME ...) will be expanded according +to this macro. \(fn NAME ARGS &rest BODY)" nil t) @@ -20591,8 +20596,8 @@ Define a pcase UPattern macro. ;;;*** -;;;### (autoloads nil "pcmpl-cvs" "pcmpl-cvs.el" (21670 32331 385639 -;;;;;; 720000)) +;;;### (autoloads nil "pcmpl-cvs" "pcmpl-cvs.el" (21857 42300 397266 +;;;;;; 599000)) ;;; Generated autoloads from pcmpl-cvs.el (autoload 'pcomplete/cvs "pcmpl-cvs" "\ @@ -21862,8 +21867,8 @@ Typing \\\\[ps-run-goto-error] when the cursor is at the number ;;;*** -;;;### (autoloads nil "ps-print" "ps-print.el" (21670 32624 385626 -;;;;;; 484000)) +;;;### (autoloads nil "ps-print" "ps-print.el" (21855 577 457945 +;;;;;; 244000)) ;;; Generated autoloads from ps-print.el (push (purecopy '(ps-print 7 3 5)) package--builtin-versions) @@ -22060,15 +22065,27 @@ If EXTENSION is any other symbol, it is ignored. ;;;*** -;;;### (autoloads nil "pulse" "cedet/pulse.el" (21670 32330 885624 -;;;;;; 725000)) +;;;### (autoloads nil "pulse" "cedet/pulse.el" (21834 32653 960520 +;;;;;; 248000)) ;;; Generated autoloads from cedet/pulse.el (push (purecopy '(pulse 1 0)) package--builtin-versions) +(autoload 'pulse-momentary-highlight-one-line "pulse" "\ +Highlight the line around POINT, unhighlighting before next command. +Optional argument FACE specifies the face to do the highlighting. + +\(fn POINT &optional FACE)" nil nil) + +(autoload 'pulse-momentary-highlight-region "pulse" "\ +Highlight between START and END, unhighlighting before next command. +Optional argument FACE specifies the face to do the highlighting. + +\(fn START END &optional FACE)" nil nil) + ;;;*** -;;;### (autoloads nil "python" "progmodes/python.el" (21826 300 630487 -;;;;;; 331000)) +;;;### (autoloads nil "python" "progmodes/python.el" (21855 577 407510 +;;;;;; 166000)) ;;; Generated autoloads from progmodes/python.el (push (purecopy '(python 0 24 5)) package--builtin-versions) @@ -22124,8 +22141,8 @@ them into characters should be done separately. ;;;*** -;;;### (autoloads nil "quail" "international/quail.el" (21761 26543 -;;;;;; 734945 674000)) +;;;### (autoloads nil "quail" "international/quail.el" (21829 62890 +;;;;;; 321199 861000)) ;;; Generated autoloads from international/quail.el (autoload 'quail-title "quail" "\ @@ -22455,7 +22472,7 @@ Display `quickurl-list' as a formatted list using `quickurl-list-mode'. ;;;*** -;;;### (autoloads nil "rcirc" "net/rcirc.el" (21826 300 570503 812000)) +;;;### (autoloads nil "rcirc" "net/rcirc.el" (21855 577 167944 784000)) ;;; Generated autoloads from net/rcirc.el (autoload 'rcirc "rcirc" "\ @@ -22512,8 +22529,8 @@ matching parts of the target buffer will be highlighted. ;;;*** -;;;### (autoloads nil "recentf" "recentf.el" (21670 32331 885635 -;;;;;; 586000)) +;;;### (autoloads nil "recentf" "recentf.el" (21852 24381 997231 +;;;;;; 450000)) ;;; Generated autoloads from recentf.el (defvar recentf-mode nil "\ @@ -22700,8 +22717,8 @@ For true \"word wrap\" behavior, use `visual-line-mode' instead. ;;;*** -;;;### (autoloads nil "reftex" "textmodes/reftex.el" (21823 24169 -;;;;;; 100485 529000)) +;;;### (autoloads nil "reftex" "textmodes/reftex.el" (21833 60086 +;;;;;; 84775 646000)) ;;; Generated autoloads from textmodes/reftex.el (autoload 'reftex-citation "reftex-cite" nil t) (autoload 'reftex-all-document-files "reftex-parse") @@ -22989,8 +23006,8 @@ Make a ring that can contain SIZE elements. ;;;*** -;;;### (autoloads nil "rlogin" "net/rlogin.el" (21670 32331 385639 -;;;;;; 720000)) +;;;### (autoloads nil "rlogin" "net/rlogin.el" (21852 24381 727234 +;;;;;; 912000)) ;;; Generated autoloads from net/rlogin.el (autoload 'rlogin "rlogin" "\ @@ -23034,8 +23051,8 @@ variable. ;;;*** -;;;### (autoloads nil "rmail" "mail/rmail.el" (21824 45139 490498 -;;;;;; 458000)) +;;;### (autoloads nil "rmail" "mail/rmail.el" (21862 60482 540812 +;;;;;; 493000)) ;;; Generated autoloads from mail/rmail.el (defvar rmail-file-name (purecopy "~/RMAIL") "\ @@ -23451,8 +23468,8 @@ Toggle the use of ROT13 encoding for the current window. ;;;*** -;;;### (autoloads nil "rst" "textmodes/rst.el" (21670 32331 885635 -;;;;;; 586000)) +;;;### (autoloads nil "rst" "textmodes/rst.el" (21852 24382 77263 +;;;;;; 112000)) ;;; Generated autoloads from textmodes/rst.el (add-to-list 'auto-mode-alist (purecopy '("\\.re?st\\'" . rst-mode))) @@ -23482,8 +23499,8 @@ for modes derived from Text mode, like Mail mode. ;;;*** -;;;### (autoloads nil "ruby-mode" "progmodes/ruby-mode.el" (21814 -;;;;;; 9129 410518 16000)) +;;;### (autoloads nil "ruby-mode" "progmodes/ruby-mode.el" (21855 +;;;;;; 577 437945 800000)) ;;; Generated autoloads from progmodes/ruby-mode.el (push (purecopy '(ruby-mode 1 2)) package--builtin-versions) @@ -23990,8 +24007,8 @@ vertically fixed relative to window boundaries during scrolling. ;;;*** -;;;### (autoloads nil "secrets" "net/secrets.el" (21824 44973 380509 -;;;;;; 24000)) +;;;### (autoloads nil "secrets" "net/secrets.el" (21855 577 177946 +;;;;;; 739000)) ;;; Generated autoloads from net/secrets.el (when (featurep 'dbusbind) (autoload 'secrets-show-secrets "secrets" nil t)) @@ -24078,14 +24095,14 @@ Major mode for editing Wisent grammars. ;;;*** -;;;### (autoloads nil "sendmail" "mail/sendmail.el" (21786 29744 -;;;;;; 368212 633000)) +;;;### (autoloads nil "sendmail" "mail/sendmail.el" (21861 39358 +;;;;;; 517945 150000)) ;;; Generated autoloads from mail/sendmail.el (defvar mail-from-style 'default "\ Specifies how \"From:\" fields look. -If `nil', they contain just the return address like: +If nil, they contain just the return address like: king@grassland.com If `parens', they look like: king@grassland.com (Elvis Parsley) @@ -24360,14 +24377,14 @@ Like `mail' command, but display mail buffer in another frame. ;;;*** -;;;### (autoloads nil "seq" "emacs-lisp/seq.el" (21822 58098 20521 -;;;;;; 61000)) +;;;### (autoloads nil "seq" "emacs-lisp/seq.el" (21843 54898 597238 +;;;;;; 876000)) ;;; Generated autoloads from emacs-lisp/seq.el -(push (purecopy '(seq 1 5)) package--builtin-versions) +(push (purecopy '(seq 1 7)) package--builtin-versions) ;;;*** -;;;### (autoloads nil "server" "server.el" (21818 36774 564783 146000)) +;;;### (autoloads nil "server" "server.el" (21857 42300 487735 894000)) ;;; Generated autoloads from server.el (put 'server-host 'risky-local-variable t) @@ -24434,7 +24451,7 @@ only these files will be asked to be saved. ;;;*** -;;;### (autoloads nil "ses" "ses.el" (21804 59688 264800 604000)) +;;;### (autoloads nil "ses" "ses.el" (21855 577 487945 652000)) ;;; Generated autoloads from ses.el (autoload 'ses-mode "ses" "\ @@ -24478,8 +24495,8 @@ formula: ;;;*** -;;;### (autoloads nil "sgml-mode" "textmodes/sgml-mode.el" (21804 -;;;;;; 59688 284811 0)) +;;;### (autoloads nil "sgml-mode" "textmodes/sgml-mode.el" (21839 +;;;;;; 43859 371195 279000)) ;;; Generated autoloads from textmodes/sgml-mode.el (autoload 'sgml-mode "sgml-mode" "\ @@ -24544,8 +24561,8 @@ To work around that, do: ;;;*** -;;;### (autoloads nil "sh-script" "progmodes/sh-script.el" (21814 -;;;;;; 9129 410518 16000)) +;;;### (autoloads nil "sh-script" "progmodes/sh-script.el" (21862 +;;;;;; 60209 888659 15000)) ;;; Generated autoloads from progmodes/sh-script.el (push (purecopy '(sh-script 2 0 6)) package--builtin-versions) (put 'sh-shell 'safe-local-variable 'symbolp) @@ -24745,7 +24762,7 @@ Otherwise, one argument `-i' is passed to the shell. ;;;*** -;;;### (autoloads nil "shr" "net/shr.el" (21826 49834 1206 441000)) +;;;### (autoloads nil "shr" "net/shr.el" (21837 20530 521200 565000)) ;;; Generated autoloads from net/shr.el (autoload 'shr-render-region "shr" "\ @@ -24853,8 +24870,8 @@ with no arguments, if that value is non-nil. ;;;*** -;;;### (autoloads nil "skeleton" "skeleton.el" (21670 32331 885635 -;;;;;; 586000)) +;;;### (autoloads nil "skeleton" "skeleton.el" (21862 60209 898658 +;;;;;; 614000)) ;;; Generated autoloads from skeleton.el (defvar skeleton-filter-function 'identity "\ @@ -24965,8 +24982,9 @@ Pairing is also prohibited if we are right after a quoting character such as backslash. If a match is found in `skeleton-pair-alist', that is inserted, else -the defaults are used. These are (), [], {}, <> and `' for the -symmetrical ones, and the same character twice for the others. +the defaults are used. These are (), [], {}, <> and (grave +accent, apostrophe) for the paired ones, and the same character +twice for the others. \(fn ARG)" t nil) @@ -25088,8 +25106,8 @@ then `snmpv2-mode-hook'. ;;;*** -;;;### (autoloads nil "solar" "calendar/solar.el" (21735 6077 666769 -;;;;;; 364000)) +;;;### (autoloads nil "solar" "calendar/solar.el" (21849 48176 337264 +;;;;;; 443000)) ;;; Generated autoloads from calendar/solar.el (autoload 'sunrise-sunset "solar" "\ @@ -25355,7 +25373,7 @@ is non-nil, it also prints a message describing the number of deletions. ;;;*** -;;;### (autoloads nil "spam" "gnus/spam.el" (21670 32331 385639 720000)) +;;;### (autoloads nil "spam" "gnus/spam.el" (21832 3464 481922 546000)) ;;; Generated autoloads from gnus/spam.el (autoload 'spam-initialize "spam" "\ @@ -26192,8 +26210,8 @@ See `superword-mode' for more information on Superword mode. ;;;*** -;;;### (autoloads nil "supercite" "mail/supercite.el" (21670 32331 -;;;;;; 385639 720000)) +;;;### (autoloads nil "supercite" "mail/supercite.el" (21852 24381 +;;;;;; 697240 10000)) ;;; Generated autoloads from mail/supercite.el (autoload 'sc-cite-original "supercite" "\ @@ -26894,8 +26912,8 @@ See also: variables `tar-update-datestamp' and `tar-anal-blocksize'. ;;;*** -;;;### (autoloads nil "tcl" "progmodes/tcl.el" (21670 32331 885635 -;;;;;; 586000)) +;;;### (autoloads nil "tcl" "progmodes/tcl.el" (21842 42581 539414 +;;;;;; 570000)) ;;; Generated autoloads from progmodes/tcl.el (autoload 'tcl-mode "tcl" "\ @@ -26943,8 +26961,8 @@ Prefix argument means invert sense of `tcl-use-smart-word-finder'. ;;;*** -;;;### (autoloads nil "telnet" "net/telnet.el" (21670 32331 385639 -;;;;;; 720000)) +;;;### (autoloads nil "telnet" "net/telnet.el" (21852 24381 767239 +;;;;;; 782000)) ;;; Generated autoloads from net/telnet.el (autoload 'telnet "telnet" "\ @@ -27011,8 +27029,8 @@ use in that buffer. ;;;*** -;;;### (autoloads nil "testcover" "emacs-lisp/testcover.el" (21670 -;;;;;; 32330 885624 725000)) +;;;### (autoloads nil "testcover" "emacs-lisp/testcover.el" (21834 +;;;;;; 29303 521933 754000)) ;;; Generated autoloads from emacs-lisp/testcover.el (autoload 'testcover-this-defun "testcover" "\ @@ -27048,8 +27066,8 @@ tetris-mode keybindings: ;;;*** -;;;### (autoloads nil "tex-mode" "textmodes/tex-mode.el" (21822 3243 -;;;;;; 760493 958000)) +;;;### (autoloads nil "tex-mode" "textmodes/tex-mode.el" (21862 60209 +;;;;;; 908658 140000)) ;;; Generated autoloads from textmodes/tex-mode.el (defvar tex-shell-file-name nil "\ @@ -27211,7 +27229,7 @@ says which mode to use. (autoload 'plain-tex-mode "tex-mode" "\ Major mode for editing files of input for plain TeX. Makes $ and } display the characters they match. -Makes \" insert `` when it seems to be the beginning of a quotation, +Makes \" insert \\=`\\=` when it seems to be the beginning of a quotation, and '' when it appears to be the end; it inserts \" only after a \\. Use \\[tex-region] to run TeX on the current region, plus a \"header\" @@ -27254,7 +27272,7 @@ special subshell is initiated, the hook `tex-shell-hook' is run. (autoload 'latex-mode "tex-mode" "\ Major mode for editing files of input for LaTeX. Makes $ and } display the characters they match. -Makes \" insert `` when it seems to be the beginning of a quotation, +Makes \" insert \\=`\\=` when it seems to be the beginning of a quotation, and '' when it appears to be the end; it inserts \" only after a \\. Use \\[tex-region] to run LaTeX on the current region, plus the preamble @@ -27297,7 +27315,7 @@ subshell is initiated, `tex-shell-hook' is run. (autoload 'slitex-mode "tex-mode" "\ Major mode for editing files of input for SliTeX. Makes $ and } display the characters they match. -Makes \" insert `` when it seems to be the beginning of a quotation, +Makes \" insert \\=`\\=` when it seems to be the beginning of a quotation, and '' when it appears to be the end; it inserts \" only after a \\. Use \\[tex-region] to run SliTeX on the current region, plus the preamble @@ -27350,8 +27368,8 @@ Major mode to edit DocTeX files. ;;;*** -;;;### (autoloads nil "texinfmt" "textmodes/texinfmt.el" (21670 32331 -;;;;;; 885635 586000)) +;;;### (autoloads nil "texinfmt" "textmodes/texinfmt.el" (21862 60209 +;;;;;; 928657 362000)) ;;; Generated autoloads from textmodes/texinfmt.el (autoload 'texinfo-format-buffer "texinfmt" "\ @@ -27390,8 +27408,8 @@ if large. You can use `Info-split' to do this manually. ;;;*** -;;;### (autoloads nil "texinfo" "textmodes/texinfo.el" (21670 32331 -;;;;;; 885635 586000)) +;;;### (autoloads nil "texinfo" "textmodes/texinfo.el" (21862 60209 +;;;;;; 928657 362000)) ;;; Generated autoloads from textmodes/texinfo.el (defvar texinfo-open-quote (purecopy "``") "\ @@ -27676,8 +27694,8 @@ See also docstring of the function tibetan-compose-region. ;;;*** -;;;### (autoloads nil "tildify" "textmodes/tildify.el" (21695 35516 -;;;;;; 595262 313000)) +;;;### (autoloads nil "tildify" "textmodes/tildify.el" (21852 24382 +;;;;;; 87256 328000)) ;;; Generated autoloads from textmodes/tildify.el (push (purecopy '(tildify 4 6 1)) package--builtin-versions) @@ -28125,8 +28143,8 @@ Its value should be an event that has a binding in MENU. ;;;*** -;;;### (autoloads nil "todo-mode" "calendar/todo-mode.el" (21814 -;;;;;; 9129 220497 835000)) +;;;### (autoloads nil "todo-mode" "calendar/todo-mode.el" (21855 +;;;;;; 576 567563 758000)) ;;; Generated autoloads from calendar/todo-mode.el (autoload 'todo-show "todo-mode" "\ @@ -28324,8 +28342,7 @@ the output buffer or changing the window configuration. ;;;*** -;;;### (autoloads nil "tramp" "net/tramp.el" (21766 44463 655319 -;;;;;; 936000)) +;;;### (autoloads nil "tramp" "net/tramp.el" (21865 36399 47685 802000)) ;;; Generated autoloads from net/tramp.el (defvar tramp-mode t "\ @@ -28476,8 +28493,8 @@ resumed later. ;;;*** -;;;### (autoloads nil "tv-util" "language/tv-util.el" (21607 54478 -;;;;;; 300138 641000)) +;;;### (autoloads nil "tv-util" "language/tv-util.el" (21855 577 +;;;;;; 57945 485000)) ;;; Generated autoloads from language/tv-util.el (autoload 'tai-viet-composition-function "tv-util" "\ @@ -28535,8 +28552,8 @@ First column's text sSs Second column's text ;;;*** -;;;### (autoloads nil "type-break" "type-break.el" (21670 32331 885635 -;;;;;; 586000)) +;;;### (autoloads nil "type-break" "type-break.el" (21855 577 527945 +;;;;;; 248000)) ;;; Generated autoloads from type-break.el (defvar type-break-mode nil "\ @@ -28992,8 +29009,8 @@ overriding the value of `url-gateway-method'. ;;;*** -;;;### (autoloads nil "url-handlers" "url/url-handlers.el" (21766 -;;;;;; 44463 655319 936000)) +;;;### (autoloads nil "url-handlers" "url/url-handlers.el" (21841 +;;;;;; 54062 172628 227000)) ;;; Generated autoloads from url/url-handlers.el (defvar url-handler-mode nil "\ @@ -29047,8 +29064,8 @@ accessible. ;;;*** -;;;### (autoloads nil "url-http" "url/url-http.el" (21670 32331 885635 -;;;;;; 586000)) +;;;### (autoloads nil "url-http" "url/url-http.el" (21837 20526 641128 +;;;;;; 711000)) ;;; Generated autoloads from url/url-http.el (autoload 'url-default-expander "url-expand") @@ -29521,8 +29538,8 @@ Encode UTF-7 STRING. Use IMAP modification if FOR-IMAP is non-nil. ;;;*** -;;;### (autoloads nil "uudecode" "mail/uudecode.el" (21670 32331 -;;;;;; 385639 720000)) +;;;### (autoloads nil "uudecode" "mail/uudecode.el" (21855 577 67944 +;;;;;; 554000)) ;;; Generated autoloads from mail/uudecode.el (autoload 'uudecode-decode-region-external "uudecode" "\ @@ -29546,7 +29563,7 @@ If FILE-NAME is non-nil, save the result to FILE-NAME. ;;;*** -;;;### (autoloads nil "vc" "vc/vc.el" (21748 18111 534605 274000)) +;;;### (autoloads nil "vc" "vc/vc.el" (21850 34915 137255 549000)) ;;; Generated autoloads from vc/vc.el (defvar vc-checkout-hook nil "\ @@ -29784,6 +29801,16 @@ tip revision are merged into the working file. (defalias 'vc-update 'vc-pull) +(autoload 'vc-push "vc" "\ +Push the current branch. +You must be visiting a version controlled file, or in a `vc-dir' buffer. +On a distributed version control system, this runs a \"push\" +operation on the current branch, prompting for the precise command +if required. Optional prefix ARG non-nil forces a prompt. +On a non-distributed version control system, this signals an error. + +\(fn &optional ARG)" t nil) + (autoload 'vc-switch-backend "vc" "\ Make BACKEND the current version control system for FILE. FILE must already be registered in BACKEND. The change is not @@ -29843,8 +29870,8 @@ Return the branch part of a revision number REV. ;;;*** -;;;### (autoloads nil "vc-annotate" "vc/vc-annotate.el" (21670 32331 -;;;;;; 885635 586000)) +;;;### (autoloads nil "vc-annotate" "vc/vc-annotate.el" (21850 34915 +;;;;;; 127238 802000)) ;;; Generated autoloads from vc/vc-annotate.el (autoload 'vc-annotate "vc-annotate" "\ @@ -29883,8 +29910,8 @@ should be applied to the background or to the foreground. ;;;*** -;;;### (autoloads nil "vc-bzr" "vc/vc-bzr.el" (21826 49705 100508 -;;;;;; 896000)) +;;;### (autoloads nil "vc-bzr" "vc/vc-bzr.el" (21852 24382 97237 +;;;;;; 703000)) ;;; Generated autoloads from vc/vc-bzr.el (defconst vc-bzr-admin-dirname ".bzr" "\ @@ -29912,8 +29939,8 @@ Name of the format file in a .bzr directory.") ;;;*** -;;;### (autoloads nil "vc-dir" "vc/vc-dir.el" (21694 14651 747488 -;;;;;; 989000)) +;;;### (autoloads nil "vc-dir" "vc/vc-dir.el" (21842 40083 319216 +;;;;;; 272000)) ;;; Generated autoloads from vc/vc-dir.el (autoload 'vc-dir "vc-dir" "\ @@ -29937,8 +29964,8 @@ These are the commands available for use in the file status buffer: ;;;*** -;;;### (autoloads nil "vc-dispatcher" "vc/vc-dispatcher.el" (21800 -;;;;;; 62631 12543 671000)) +;;;### (autoloads nil "vc-dispatcher" "vc/vc-dispatcher.el" (21862 +;;;;;; 60209 928657 362000)) ;;; Generated autoloads from vc/vc-dispatcher.el (autoload 'vc-do-command "vc-dispatcher" "\ @@ -29961,8 +29988,8 @@ case, and the process object in the asynchronous case. ;;;*** -;;;### (autoloads nil "vc-git" "vc/vc-git.el" (21826 49709 140509 -;;;;;; 237000)) +;;;### (autoloads nil "vc-git" "vc/vc-git.el" (21850 34915 127238 +;;;;;; 802000)) ;;; Generated autoloads from vc/vc-git.el (defun vc-git-registered (file) "Return non-nil if FILE is registered with git." @@ -29973,7 +30000,7 @@ case, and the process object in the asynchronous case. ;;;*** -;;;### (autoloads nil "vc-hg" "vc/vc-hg.el" (21826 49710 734782 20000)) +;;;### (autoloads nil "vc-hg" "vc/vc-hg.el" (21842 40086 557968 381000)) ;;; Generated autoloads from vc/vc-hg.el (defun vc-hg-registered (file) "Return non-nil if FILE is registered with hg." @@ -30122,7 +30149,7 @@ Key bindings: ;;;*** ;;;### (autoloads nil "verilog-mode" "progmodes/verilog-mode.el" -;;;;;; (21735 54828 874639 640000)) +;;;;;; (21862 60209 898658 614000)) ;;; Generated autoloads from progmodes/verilog-mode.el (autoload 'verilog-mode "verilog-mode" "\ @@ -30157,7 +30184,7 @@ Variables controlling indentation/edit style: Set to 0 to get such code to lined up underneath the task or function keyword. `verilog-indent-level-directive' (default 1) - Indentation of `ifdef/`endif blocks. + Indentation of \\=`ifdef/\\=`endif blocks. `verilog-cexp-indent' (default 1) Indentation of Verilog statements broken across lines i.e.: if (a) @@ -30261,8 +30288,8 @@ Key bindings specific to `verilog-mode-map' are: ;;;*** -;;;### (autoloads nil "vhdl-mode" "progmodes/vhdl-mode.el" (21799 -;;;;;; 41767 71224 187000)) +;;;### (autoloads nil "vhdl-mode" "progmodes/vhdl-mode.el" (21866 +;;;;;; 57262 717944 751000)) ;;; Generated autoloads from progmodes/vhdl-mode.el (autoload 'vhdl-mode "vhdl-mode" "\ @@ -31292,8 +31319,8 @@ in certain major modes. ;;;*** -;;;### (autoloads nil "whitespace" "whitespace.el" (21670 32331 885635 -;;;;;; 586000)) +;;;### (autoloads nil "whitespace" "whitespace.el" (21828 42028 670509 +;;;;;; 602000)) ;;; Generated autoloads from whitespace.el (push (purecopy '(whitespace 13 2 2)) package--builtin-versions) @@ -31690,8 +31717,8 @@ if ARG is omitted or nil. ;;;*** -;;;### (autoloads nil "wid-edit" "wid-edit.el" (21816 50862 20497 -;;;;;; 333000)) +;;;### (autoloads nil "wid-edit" "wid-edit.el" (21862 60209 928657 +;;;;;; 362000)) ;;; Generated autoloads from wid-edit.el (autoload 'widgetp "wid-edit" "\ @@ -31733,8 +31760,8 @@ Setup current buffer so editing string widgets works. ;;;*** -;;;### (autoloads nil "windmove" "windmove.el" (21733 50750 334730 -;;;;;; 5000)) +;;;### (autoloads nil "windmove" "windmove.el" (21852 24382 97237 +;;;;;; 703000)) ;;; Generated autoloads from windmove.el (autoload 'windmove-left "windmove" "\ @@ -31809,7 +31836,7 @@ the mode if ARG is omitted or nil, and toggle it if ARG is `toggle'. ;;;*** -;;;### (autoloads nil "woman" "woman.el" (21670 32331 885635 586000)) +;;;### (autoloads nil "woman" "woman.el" (21855 577 547944 710000)) ;;; Generated autoloads from woman.el (push (purecopy '(woman 0 551)) package--builtin-versions) @@ -31933,8 +31960,8 @@ If LIMIT is non-nil, then do not consider characters beyond LIMIT. ;;;*** -;;;### (autoloads nil "xref" "progmodes/xref.el" (21826 300 640488 -;;;;;; 815000)) +;;;### (autoloads nil "xref" "progmodes/xref.el" (21861 5946 771514 +;;;;;; 868000)) ;;; Generated autoloads from progmodes/xref.el (autoload 'xref-pop-marker-stack "xref" "\ @@ -31970,6 +31997,11 @@ With prefix argument, prompt for the identifier. \(fn IDENTIFIER)" t nil) +(autoload 'xref-find-regexp "xref" "\ +Find all matches for REGEXP. + +\(fn REGEXP)" t nil) + (autoload 'xref-find-apropos "xref" "\ Find all meaningful symbols that match PATTERN. The argument has the same meaning as in `apropos'. @@ -31983,8 +32015,8 @@ The argument has the same meaning as in `apropos'. ;;;*** -;;;### (autoloads nil "xt-mouse" "xt-mouse.el" (21779 56495 106033 -;;;;;; 935000)) +;;;### (autoloads nil "xt-mouse" "xt-mouse.el" (21852 24382 117243 +;;;;;; 951000)) ;;; Generated autoloads from xt-mouse.el (defvar xterm-mouse-mode nil "\ @@ -32111,49 +32143,48 @@ Zone out, completely. ;;;;;; "dframe.el" "dired-aux.el" "dired-x.el" "dom.el" "dos-fns.el" ;;;;;; "dos-vars.el" "dos-w32.el" "dynamic-setting.el" "emacs-lisp/avl-tree.el" ;;;;;; "emacs-lisp/bindat.el" "emacs-lisp/byte-opt.el" "emacs-lisp/cl-extra.el" -;;;;;; "emacs-lisp/cl-generic.el" "emacs-lisp/cl-loaddefs.el" "emacs-lisp/cl-macs.el" -;;;;;; "emacs-lisp/cl-seq.el" "emacs-lisp/cl.el" "emacs-lisp/eieio-base.el" -;;;;;; "emacs-lisp/eieio-compat.el" "emacs-lisp/eieio-custom.el" -;;;;;; "emacs-lisp/eieio-datadebug.el" "emacs-lisp/eieio-opt.el" -;;;;;; "emacs-lisp/eieio-speedbar.el" "emacs-lisp/generator.el" -;;;;;; "emacs-lisp/lisp-mnt.el" "emacs-lisp/package-x.el" "emacs-lisp/smie.el" -;;;;;; "emacs-lisp/subr-x.el" "emacs-lisp/tcover-ses.el" "emacs-lisp/tcover-unsafep.el" -;;;;;; "emulation/cua-gmrk.el" "emulation/edt-lk201.el" "emulation/edt-mapper.el" -;;;;;; "emulation/edt-pc.el" "emulation/edt-vt100.el" "emulation/viper-cmd.el" -;;;;;; "emulation/viper-ex.el" "emulation/viper-init.el" "emulation/viper-keym.el" -;;;;;; "emulation/viper-macs.el" "emulation/viper-mous.el" "emulation/viper-util.el" -;;;;;; "erc/erc-backend.el" "erc/erc-goodies.el" "erc/erc-ibuffer.el" -;;;;;; "erc/erc-lang.el" "eshell/em-alias.el" "eshell/em-banner.el" -;;;;;; "eshell/em-basic.el" "eshell/em-cmpl.el" "eshell/em-dirs.el" -;;;;;; "eshell/em-glob.el" "eshell/em-hist.el" "eshell/em-ls.el" -;;;;;; "eshell/em-pred.el" "eshell/em-prompt.el" "eshell/em-rebind.el" -;;;;;; "eshell/em-script.el" "eshell/em-smart.el" "eshell/em-term.el" -;;;;;; "eshell/em-tramp.el" "eshell/em-unix.el" "eshell/em-xtra.el" -;;;;;; "eshell/esh-arg.el" "eshell/esh-cmd.el" "eshell/esh-ext.el" -;;;;;; "eshell/esh-groups.el" "eshell/esh-io.el" "eshell/esh-module.el" -;;;;;; "eshell/esh-opt.el" "eshell/esh-proc.el" "eshell/esh-util.el" -;;;;;; "eshell/esh-var.el" "ezimage.el" "format-spec.el" "fringe.el" -;;;;;; "generic-x.el" "gnus/compface.el" "gnus/gnus-async.el" "gnus/gnus-bcklg.el" -;;;;;; "gnus/gnus-cite.el" "gnus/gnus-cloud.el" "gnus/gnus-cus.el" -;;;;;; "gnus/gnus-demon.el" "gnus/gnus-dup.el" "gnus/gnus-eform.el" -;;;;;; "gnus/gnus-ems.el" "gnus/gnus-icalendar.el" "gnus/gnus-int.el" -;;;;;; "gnus/gnus-logic.el" "gnus/gnus-mh.el" "gnus/gnus-salt.el" -;;;;;; "gnus/gnus-score.el" "gnus/gnus-srvr.el" "gnus/gnus-topic.el" -;;;;;; "gnus/gnus-undo.el" "gnus/gnus-util.el" "gnus/gnus-uu.el" -;;;;;; "gnus/gnus-vm.el" "gnus/gssapi.el" "gnus/ietf-drums.el" "gnus/legacy-gnus-agent.el" -;;;;;; "gnus/mail-parse.el" "gnus/mail-prsvr.el" "gnus/mail-source.el" -;;;;;; "gnus/mailcap.el" "gnus/messcompat.el" "gnus/mm-archive.el" -;;;;;; "gnus/mm-bodies.el" "gnus/mm-decode.el" "gnus/mm-util.el" -;;;;;; "gnus/mm-view.el" "gnus/mml-sec.el" "gnus/mml-smime.el" "gnus/nnagent.el" -;;;;;; "gnus/nnbabyl.el" "gnus/nndir.el" "gnus/nndraft.el" "gnus/nneething.el" -;;;;;; "gnus/nngateway.el" "gnus/nnheader.el" "gnus/nnimap.el" "gnus/nnir.el" -;;;;;; "gnus/nnmail.el" "gnus/nnmaildir.el" "gnus/nnmairix.el" "gnus/nnmbox.el" -;;;;;; "gnus/nnmh.el" "gnus/nnnil.el" "gnus/nnoo.el" "gnus/nnregistry.el" -;;;;;; "gnus/nnrss.el" "gnus/nnspool.el" "gnus/nntp.el" "gnus/nnvirtual.el" -;;;;;; "gnus/nnweb.el" "gnus/registry.el" "gnus/rfc1843.el" "gnus/rfc2045.el" -;;;;;; "gnus/rfc2047.el" "gnus/rfc2231.el" "gnus/rtree.el" "gnus/sieve-manage.el" -;;;;;; "gnus/smime.el" "gnus/spam-stat.el" "gnus/spam-wash.el" "hex-util.el" -;;;;;; "hfy-cmap.el" "ibuf-ext.el" "international/cp51932.el" "international/eucjp-ms.el" +;;;;;; "emacs-lisp/cl-loaddefs.el" "emacs-lisp/cl-macs.el" "emacs-lisp/cl-seq.el" +;;;;;; "emacs-lisp/cl.el" "emacs-lisp/eieio-base.el" "emacs-lisp/eieio-compat.el" +;;;;;; "emacs-lisp/eieio-custom.el" "emacs-lisp/eieio-datadebug.el" +;;;;;; "emacs-lisp/eieio-opt.el" "emacs-lisp/eieio-speedbar.el" +;;;;;; "emacs-lisp/generator.el" "emacs-lisp/lisp-mnt.el" "emacs-lisp/package-x.el" +;;;;;; "emacs-lisp/smie.el" "emacs-lisp/subr-x.el" "emacs-lisp/tcover-ses.el" +;;;;;; "emacs-lisp/tcover-unsafep.el" "emulation/cua-gmrk.el" "emulation/edt-lk201.el" +;;;;;; "emulation/edt-mapper.el" "emulation/edt-pc.el" "emulation/edt-vt100.el" +;;;;;; "emulation/viper-cmd.el" "emulation/viper-ex.el" "emulation/viper-init.el" +;;;;;; "emulation/viper-keym.el" "emulation/viper-macs.el" "emulation/viper-mous.el" +;;;;;; "emulation/viper-util.el" "erc/erc-backend.el" "erc/erc-goodies.el" +;;;;;; "erc/erc-ibuffer.el" "erc/erc-lang.el" "eshell/em-alias.el" +;;;;;; "eshell/em-banner.el" "eshell/em-basic.el" "eshell/em-cmpl.el" +;;;;;; "eshell/em-dirs.el" "eshell/em-glob.el" "eshell/em-hist.el" +;;;;;; "eshell/em-ls.el" "eshell/em-pred.el" "eshell/em-prompt.el" +;;;;;; "eshell/em-rebind.el" "eshell/em-script.el" "eshell/em-smart.el" +;;;;;; "eshell/em-term.el" "eshell/em-tramp.el" "eshell/em-unix.el" +;;;;;; "eshell/em-xtra.el" "eshell/esh-arg.el" "eshell/esh-cmd.el" +;;;;;; "eshell/esh-ext.el" "eshell/esh-groups.el" "eshell/esh-io.el" +;;;;;; "eshell/esh-module.el" "eshell/esh-opt.el" "eshell/esh-proc.el" +;;;;;; "eshell/esh-util.el" "eshell/esh-var.el" "ezimage.el" "format-spec.el" +;;;;;; "fringe.el" "generic-x.el" "gnus/compface.el" "gnus/gnus-async.el" +;;;;;; "gnus/gnus-bcklg.el" "gnus/gnus-cite.el" "gnus/gnus-cloud.el" +;;;;;; "gnus/gnus-cus.el" "gnus/gnus-demon.el" "gnus/gnus-dup.el" +;;;;;; "gnus/gnus-eform.el" "gnus/gnus-ems.el" "gnus/gnus-icalendar.el" +;;;;;; "gnus/gnus-int.el" "gnus/gnus-logic.el" "gnus/gnus-mh.el" +;;;;;; "gnus/gnus-salt.el" "gnus/gnus-score.el" "gnus/gnus-srvr.el" +;;;;;; "gnus/gnus-topic.el" "gnus/gnus-undo.el" "gnus/gnus-util.el" +;;;;;; "gnus/gnus-uu.el" "gnus/gnus-vm.el" "gnus/gssapi.el" "gnus/ietf-drums.el" +;;;;;; "gnus/legacy-gnus-agent.el" "gnus/mail-parse.el" "gnus/mail-prsvr.el" +;;;;;; "gnus/mail-source.el" "gnus/mailcap.el" "gnus/messcompat.el" +;;;;;; "gnus/mm-archive.el" "gnus/mm-bodies.el" "gnus/mm-decode.el" +;;;;;; "gnus/mm-util.el" "gnus/mm-view.el" "gnus/mml-sec.el" "gnus/mml-smime.el" +;;;;;; "gnus/nnagent.el" "gnus/nnbabyl.el" "gnus/nndir.el" "gnus/nndraft.el" +;;;;;; "gnus/nneething.el" "gnus/nngateway.el" "gnus/nnheader.el" +;;;;;; "gnus/nnimap.el" "gnus/nnir.el" "gnus/nnmail.el" "gnus/nnmaildir.el" +;;;;;; "gnus/nnmairix.el" "gnus/nnmbox.el" "gnus/nnmh.el" "gnus/nnnil.el" +;;;;;; "gnus/nnoo.el" "gnus/nnregistry.el" "gnus/nnrss.el" "gnus/nnspool.el" +;;;;;; "gnus/nntp.el" "gnus/nnvirtual.el" "gnus/nnweb.el" "gnus/registry.el" +;;;;;; "gnus/rfc1843.el" "gnus/rfc2045.el" "gnus/rfc2047.el" "gnus/rfc2231.el" +;;;;;; "gnus/rtree.el" "gnus/sieve-manage.el" "gnus/smime.el" "gnus/spam-stat.el" +;;;;;; "gnus/spam-wash.el" "hex-util.el" "hfy-cmap.el" "ibuf-ext.el" ;;;;;; "international/fontset.el" "international/iso-ascii.el" "international/ja-dic-cnv.el" ;;;;;; "international/ja-dic-utl.el" "international/ogonek.el" "kermit.el" ;;;;;; "language/hanja-util.el" "language/thai-word.el" "ldefs-boot.el" @@ -32245,7 +32276,7 @@ Zone out, completely. ;;;;;; "vc/ediff-vers.el" "vc/ediff-wind.el" "vc/pcvs-info.el" "vc/pcvs-parse.el" ;;;;;; "vc/pcvs-util.el" "vc/vc-dav.el" "vc/vc-filewise.el" "vcursor.el" ;;;;;; "vt-control.el" "vt100-led.el" "w32-fns.el" "w32-vars.el" -;;;;;; "x-dnd.el") (21827 21192 518044 532000)) +;;;;;; "x-dnd.el") (21868 12847 464673 840000)) ;;;*** commit 2c656f7deb3b192a5063151368782c2715e81051 Author: Paul Eggert Date: Sun May 31 23:52:09 2015 -0700 Avoid grave accent quoting in stderr diagnostics A few Emacs diagnostics go directly to stderr, and so can't easily contain curved quotes (as non-UTF-8 locales might mishandle them). Instead of bothering to add support for this rarity, reword the diagnostics so that they don't use grave accent to quote. * src/alloc.c (mark_memory): Fix comment. * src/buffer.c (init_buffer): * src/dispnew.c (init_display): * src/emacs.c (main, sort_args): * src/lread.c (dir_warning): * src/term.c (init_tty): * src/unexmacosx.c (unexec): * src/xfns.c (select_visual): * src/xterm.c (cvt_string_to_pixel, x_io_error_quitter): Reword stderr diagnostics to avoid quoting `like this'. * src/unexmacosx.c: Include errno.h. * src/xfns.c (select_visual): Encode value for locale. diff --git a/src/alloc.c b/src/alloc.c index 14baf29..a956e95 100644 --- a/src/alloc.c +++ b/src/alloc.c @@ -4775,7 +4775,7 @@ mark_memory (void *start, void *end) Lisp_Object obj = build_string ("test"); struct Lisp_String *s = XSTRING (obj); Fgarbage_collect (); - fprintf (stderr, "test `%s'\n", s->data); + fprintf (stderr, "test '%s'\n", s->data); return Qnil; } diff --git a/src/buffer.c b/src/buffer.c index 13843a2..0b98431 100644 --- a/src/buffer.c +++ b/src/buffer.c @@ -5285,7 +5285,7 @@ init_buffer (int initialized) pwd = get_current_dir_name (); if (!pwd) - fatal ("`get_current_dir_name' failed: %s\n", strerror (errno)); + fatal ("get_current_dir_name: %s\n", strerror (errno)); /* Maybe this should really use some standard subroutine whose definition is filename syntax dependent. */ @@ -5295,7 +5295,7 @@ init_buffer (int initialized) /* Grow buffer to add directory separator and '\0'. */ pwd = realloc (pwd, len + 2); if (!pwd) - fatal ("`get_current_dir_name' failed: %s\n", strerror (errno)); + fatal ("get_current_dir_name: %s\n", strerror (errno)); pwd[len] = DIRECTORY_SEP; pwd[len + 1] = '\0'; len++; diff --git a/src/dispnew.c b/src/dispnew.c index 7e7afa7..1fc3cfe 100644 --- a/src/dispnew.c +++ b/src/dispnew.c @@ -6036,10 +6036,10 @@ init_display (void) { #ifdef HAVE_WINDOW_SYSTEM if (! inhibit_window_system) - fprintf (stderr, "Please set the environment variable DISPLAY or TERM (see `tset').\n"); + fprintf (stderr, "Please set the environment variable DISPLAY or TERM (see 'tset').\n"); else #endif /* HAVE_WINDOW_SYSTEM */ - fprintf (stderr, "Please set the environment variable TERM; see `tset'.\n"); + fprintf (stderr, "Please set the environment variable TERM; see 'tset'.\n"); exit (1); } diff --git a/src/emacs.c b/src/emacs.c index bba6806..8396f5d 100644 --- a/src/emacs.c +++ b/src/emacs.c @@ -776,12 +776,12 @@ main (int argc, char **argv) tem2 = Fsymbol_value (intern_c_string ("emacs-copyright")); if (!STRINGP (tem)) { - fprintf (stderr, "Invalid value of `emacs-version'\n"); + fprintf (stderr, "Invalid value of 'emacs-version'\n"); exit (1); } if (!STRINGP (tem2)) { - fprintf (stderr, "Invalid value of `emacs-copyright'\n"); + fprintf (stderr, "Invalid value of 'emacs-copyright'\n"); exit (1); } else @@ -1796,7 +1796,7 @@ sort_args (int argc, char **argv) options[from] = standard_args[i].nargs; priority[from] = standard_args[i].priority; if (from + standard_args[i].nargs >= argc) - fatal ("Option `%s' requires an argument\n", argv[from]); + fatal ("Option '%s' requires an argument\n", argv[from]); from += standard_args[i].nargs; goto done; } @@ -1833,7 +1833,7 @@ sort_args (int argc, char **argv) if (equals != 0) options[from] = 0; if (from + options[from] >= argc) - fatal ("Option `%s' requires an argument\n", argv[from]); + fatal ("Option '%s' requires an argument\n", argv[from]); from += options[from]; } /* FIXME When match < 0, shouldn't there be some error, diff --git a/src/lread.c b/src/lread.c index 26c19d8..11c8d00 100644 --- a/src/lread.c +++ b/src/lread.c @@ -4418,9 +4418,10 @@ init_lread (void) void dir_warning (char const *use, Lisp_Object dirname) { - static char const format[] = "Warning: %s `%s': %s\n"; + static char const format[] = "Warning: %s '%s': %s\n"; int access_errno = errno; - fprintf (stderr, format, use, SSDATA (dirname), strerror (access_errno)); + fprintf (stderr, format, use, SSDATA (ENCODE_SYSTEM (dirname)), + strerror (access_errno)); /* Don't log the warning before we've initialized!! */ if (initialized) diff --git a/src/term.c b/src/term.c index d2a9c3d..8ebb620 100644 --- a/src/term.c +++ b/src/term.c @@ -4028,12 +4028,12 @@ init_tty (const char *name, const char *terminal_type, bool must_succeed) "Terminal type %s is not defined", "Terminal type %s is not defined.\n\ If that is not the actual type of terminal you have,\n\ -use the Bourne shell command `TERM=... export TERM' (C-shell:\n\ -`setenv TERM ...') to specify the correct type. It may be necessary\n" +use the Bourne shell command 'TERM=...; export TERM' (C-shell:\n\ +'setenv TERM ...') to specify the correct type. It may be necessary\n" #ifdef TERMINFO -"to do `unset TERMINFO' (C-shell: `unsetenv TERMINFO') as well.", +"to do 'unset TERMINFO' (C-shell: 'unsetenv TERMINFO') as well.", #else -"to do `unset TERMCAP' (C-shell: `unsetenv TERMCAP') as well.", +"to do 'unset TERMCAP' (C-shell: 'unsetenv TERMCAP') as well.", #endif terminal_type); } @@ -4307,12 +4307,12 @@ use the Bourne shell command `TERM=... export TERM' (C-shell:\n\ "Terminal type \"%s\" is not powerful enough to run Emacs.\n\ It lacks the ability to position the cursor.\n\ If that is not the actual type of terminal you have,\n\ -use the Bourne shell command `TERM=... export TERM' (C-shell:\n\ -`setenv TERM ...') to specify the correct type. It may be necessary\n" +use the Bourne shell command 'TERM=...; export TERM' (C-shell:\n\ +'setenv TERM ...') to specify the correct type. It may be necessary\n" # ifdef TERMINFO -"to do `unset TERMINFO' (C-shell: `unsetenv TERMINFO') as well.", +"to do 'unset TERMINFO' (C-shell: 'unsetenv TERMINFO') as well.", # else /* TERMCAP */ -"to do `unset TERMCAP' (C-shell: `unsetenv TERMCAP') as well.", +"to do 'unset TERMCAP' (C-shell: 'unsetenv TERMCAP') as well.", # endif /* TERMINFO */ terminal_type); } diff --git a/src/unexmacosx.c b/src/unexmacosx.c index fe6637e..319ec79 100644 --- a/src/unexmacosx.c +++ b/src/unexmacosx.c @@ -99,6 +99,7 @@ along with GNU Emacs. If not, see . */ #include "unexec.h" #include "lisp.h" +#include #include #include #include @@ -1264,14 +1265,14 @@ unexec (const char *outfile, const char *infile) infd = emacs_open (infile, O_RDONLY, 0); if (infd < 0) { - unexec_error ("cannot open input file `%s'", infile); + unexec_error ("%s: %s", infile, strerror (errno)); } outfd = emacs_open (outfile, O_WRONLY | O_TRUNC | O_CREAT, 0777); if (outfd < 0) { emacs_close (infd); - unexec_error ("cannot open output file `%s'", outfile); + unexec_error ("%s: %s", outfile, strerror (errno)); } build_region_list (); diff --git a/src/xfns.c b/src/xfns.c index 16a568e..634881d 100644 --- a/src/xfns.c +++ b/src/xfns.c @@ -4519,7 +4519,8 @@ select_visual (struct x_display_info *dpyinfo) if (class == -1 || !XMatchVisualInfo (dpy, XScreenNumberOfScreen (screen), dpyinfo->n_planes, class, &vinfo)) - fatal ("Invalid visual specification `%s'", SDATA (value)); + fatal ("Invalid visual specification '%s'", + SSDATA (ENCODE_SYSTEM (value))); dpyinfo->visual = vinfo.visual; } diff --git a/src/xterm.c b/src/xterm.c index 4f5dfed..17c1a64 100644 --- a/src/xterm.c +++ b/src/xterm.c @@ -2091,7 +2091,7 @@ cvt_string_to_pixel (Display *dpy, XrmValue *args, Cardinal *nargs, params[0] = color_name; XtAppWarningMsg (XtDisplayToApplicationContext (dpy), "badValue", "cvt_string_to_pixel", - "XtToolkitError", "Invalid color `%s'", + "XtToolkitError", "Invalid color '%s'", params, &nparams); return False; } @@ -9388,7 +9388,7 @@ x_io_error_quitter (Display *display) { char buf[256]; - snprintf (buf, sizeof buf, "Connection lost to X server `%s'", + snprintf (buf, sizeof buf, "Connection lost to X server '%s'", DisplayString (display)); x_connection_closed (display, buf, true); return 0; commit 467af178f53798e4cd102e04eb2990121eb655df Author: Paul Eggert Date: Sun May 31 20:04:05 2015 -0700 Treat batch stdout/stderr like standard display Calls like (print FOO) could generate improperly encoded or hard-to-read output if FOO contains characters outside the system locale. Fix this by treating batch stdout and stderr like interactive standard display, when it comes to transliterating and encoding characters (Bug#20545). * doc/emacs/mule.texi (Communication Coding): * doc/lispref/display.texi (Active Display Table): * doc/lispref/nonascii.texi (Locales): * etc/NEWS: * src/coding.c (syms_of_coding): * src/dispnew.c (syms_of_display): Document this. * src/print.c: Include disptab.h. (printchar_to_stream): New function, with much of the guts of the old Fexternal_debugging_output, except this one also uses the standard display table. (printchar, strout, Fexternal_debugging_output): Use it. diff --git a/doc/emacs/mule.texi b/doc/emacs/mule.texi index 7336fdc..80b1384 100644 --- a/doc/emacs/mule.texi +++ b/doc/emacs/mule.texi @@ -1164,7 +1164,9 @@ current language environment. to use when encoding and decoding system strings such as system error messages and @code{format-time-string} formats and time stamps. That coding system is also used for decoding non-@acronym{ASCII} keyboard -input on the X Window System. You should choose a coding system that is compatible +input on the X Window System and for encoding text sent to the +standard output and error streams when in batch mode. You should +choose a coding system that is compatible with the underlying system's text representation, which is normally specified by one of the environment variables @env{LC_ALL}, @env{LC_CTYPE}, and @env{LANG}. (The first one, in the order diff --git a/doc/lispref/display.texi b/doc/lispref/display.texi index b12995b..357a3c3 100644 --- a/doc/lispref/display.texi +++ b/doc/lispref/display.texi @@ -6522,8 +6522,9 @@ no buffer display table. @defvar standard-display-table The value of this variable is the standard display table, which is used when Emacs is displaying a buffer in a window with neither a -window display table nor a buffer display table defined. Its default -is @code{nil}. +window display table nor a buffer display table defined, or when Emacs +is outputting text to the standard output or error streams. Its +default is @code{nil}. @end defvar The @file{disp-table} library defines several functions for changing diff --git a/doc/lispref/nonascii.texi b/doc/lispref/nonascii.texi index f160184..362c3a4 100644 --- a/doc/lispref/nonascii.texi +++ b/doc/lispref/nonascii.texi @@ -1959,6 +1959,7 @@ how Emacs interacts with these features. @cindex keyboard input decoding on X This variable specifies the coding system to use for decoding system error messages and---on X Window system only---keyboard input, for +sending batch output to the standard output and error streams, for encoding the format argument to @code{format-time-string}, and for decoding the return value of @code{format-time-string}. @end defvar diff --git a/etc/NEWS b/etc/NEWS index d07057e..57e63b1 100644 --- a/etc/NEWS +++ b/etc/NEWS @@ -947,6 +947,12 @@ integers. ** New function `set-binary-mode' allows to switch a standard stream of the Emacs process to binary I/O mode. +** In locales that cannot display curved quotes, ASCII approximations +are installed in standard-display-table. + +** Standard output and error streams now transliterate characters via +standard-display-table, and encode output using locale-coding-system. + ** Miscellaneous name change For consistency with the usual Emacs spelling, the Lisp variable diff --git a/src/coding.c b/src/coding.c index 776ecac..9342c38 100644 --- a/src/coding.c +++ b/src/coding.c @@ -11121,7 +11121,8 @@ See also the function `find-operation-coding-system'. */); DEFVAR_LISP ("locale-coding-system", Vlocale_coding_system, doc: /* Coding system to use with system messages. -Also used for decoding keyboard input on X Window system. */); +Also used for decoding keyboard input on X Window system, and for +encoding standard output and error streams. */); Vlocale_coding_system = Qnil; /* The eol mnemonics are reset in startup.el system-dependently. */ diff --git a/src/dispnew.c b/src/dispnew.c index 693dd49..7e7afa7 100644 --- a/src/dispnew.c +++ b/src/dispnew.c @@ -6245,6 +6245,7 @@ Each element can be: DEFVAR_LISP ("standard-display-table", Vstandard_display_table, doc: /* Display table to use for buffers that specify none. +It is also used for standard output and error streams. See `buffer-display-table' for more information. */); Vstandard_display_table = Qnil; diff --git a/src/print.c b/src/print.c index a182839..65c120d 100644 --- a/src/print.c +++ b/src/print.c @@ -31,6 +31,7 @@ along with GNU Emacs. If not, see . */ #include "window.h" #include "process.h" #include "dispextern.h" +#include "disptab.h" #include "termchar.h" #include "intervals.h" #include "blockinput.h" @@ -195,6 +196,61 @@ print_unwind (Lisp_Object saved_text) memcpy (print_buffer, SDATA (saved_text), SCHARS (saved_text)); } +/* Print character CH to the stdio stream STREAM. */ + +static void +printchar_to_stream (unsigned int ch, FILE *stream) +{ + Lisp_Object dv IF_LINT (= Qnil); + ptrdiff_t i = 0, n = 1; + + if (CHAR_VALID_P (ch) && DISP_TABLE_P (Vstandard_display_table)) + { + dv = DISP_CHAR_VECTOR (XCHAR_TABLE (Vstandard_display_table), ch); + if (VECTORP (dv)) + { + n = ASIZE (dv); + goto next_char; + } + } + + while (true) + { + if (ASCII_CHAR_P (ch)) + { + putc (ch, stream); +#ifdef WINDOWSNT + /* Send the output to a debugger (nothing happens if there + isn't one). */ + if (print_output_debug_flag && stream == stderr) + OutputDebugString ((char []) {ch, '\0'}); +#endif + } + else + { + unsigned char mbstr[MAX_MULTIBYTE_LENGTH]; + int len = CHAR_STRING (ch, mbstr); + Lisp_Object encoded_ch = + ENCODE_SYSTEM (make_multibyte_string ((char *) mbstr, 1, len)); + + fwrite (SSDATA (encoded_ch), 1, SBYTES (encoded_ch), stream); +#ifdef WINDOWSNT + if (print_output_debug_flag && stream == stderr) + OutputDebugString (SSDATA (encoded_ch)); +#endif + } + + i++; + + next_char: + for (; i < n; i++) + if (CHARACTERP (AREF (dv, i))) + break; + if (! (i < n)) + break; + ch = XFASTINT (AREF (dv, i)); + } +} /* Print character CH using method FUN. FUN nil means print to print_buffer. FUN t means print to echo area or stdout if @@ -226,7 +282,10 @@ printchar (unsigned int ch, Lisp_Object fun) else if (noninteractive) { printchar_stdout_last = ch; - fwrite (str, 1, len, stdout); + if (DISP_TABLE_P (Vstandard_display_table)) + printchar_to_stream (ch, stdout); + else + fwrite (str, 1, len, stdout); noninteractive_need_newline = 1; } else @@ -267,7 +326,19 @@ strout (const char *ptr, ptrdiff_t size, ptrdiff_t size_byte, } else if (noninteractive && EQ (printcharfun, Qt)) { - fwrite (ptr, 1, size_byte, stdout); + if (DISP_TABLE_P (Vstandard_display_table)) + { + int len; + for (ptrdiff_t i = 0; i < size_byte; i += len) + { + int ch = STRING_CHAR_AND_LENGTH ((const unsigned char *) ptr + i, + len); + printchar_to_stream (ch, stdout); + } + } + else + fwrite (ptr, 1, size_byte, stdout); + noninteractive_need_newline = 1; } else if (EQ (printcharfun, Qt)) @@ -688,37 +759,8 @@ You can call print while debugging emacs, and pass it this function to make it write to the debugging output. */) (Lisp_Object character) { - unsigned int ch; - CHECK_NUMBER (character); - ch = XINT (character); - if (ASCII_CHAR_P (ch)) - { - putc (ch, stderr); -#ifdef WINDOWSNT - /* Send the output to a debugger (nothing happens if there isn't - one). */ - if (print_output_debug_flag) - { - char buf[2] = {(char) XINT (character), '\0'}; - OutputDebugString (buf); - } -#endif - } - else - { - unsigned char mbstr[MAX_MULTIBYTE_LENGTH]; - ptrdiff_t len = CHAR_STRING (ch, mbstr); - Lisp_Object encoded_ch = - ENCODE_SYSTEM (make_multibyte_string ((char *) mbstr, 1, len)); - - fwrite (SSDATA (encoded_ch), SBYTES (encoded_ch), 1, stderr); -#ifdef WINDOWSNT - if (print_output_debug_flag) - OutputDebugString (SSDATA (encoded_ch)); -#endif - } - + printchar_to_stream (XINT (character), stderr); return character; } commit 21d13bce38c2160bf21b3428cd8e56daadcf4698 Author: Glenn Morris Date: Sun May 31 16:27:36 2015 -0700 * src/emacs.c (syms_of_emacs) : Doc fix. diff --git a/src/emacs.c b/src/emacs.c index 70db900..bba6806 100644 --- a/src/emacs.c +++ b/src/emacs.c @@ -2434,7 +2434,10 @@ hpux, irix, usg-unix-v) indicates some sort of Unix system. */); DEFVAR_LISP ("system-configuration-features", Vsystem_configuration_features, doc: /* String listing some of the main features this Emacs was compiled with. An element of the form \"FOO\" generally means that HAVE_FOO was -defined during the build. */); +defined during the build. + +This is mainly intended for diagnostic purposes in bug reports. +Don't rely on it for testing whether a feature you want to use is available. */); Vsystem_configuration_features = build_string (EMACS_CONFIG_FEATURES); DEFVAR_BOOL ("noninteractive", noninteractive1, commit 0c2a3cf62a0117586803513ef104ff3ef97c1c3f Author: Paul Eggert Date: Sun May 31 11:47:35 2015 -0700 Remove unused DEFSYMs Remove DEFSYMs that aren't used at the C level. Also: * src/decompress.c (Qzlib_dll): * src/font.c (Qunicode_sip): * src/frame.c (Qtip_frame): * src/ftfont.c (Qserif): * src/gnutls.c (Qgnutls_dll): * src/xml.c (Qlibxml2_dll): Move from here ... * src/w32fns.c (syms_of_w32fns): ... to here, as these are used only on MS-Windows. diff --git a/src/callint.c b/src/callint.c index cf50e0c..2ff2f80 100644 --- a/src/callint.c +++ b/src/callint.c @@ -904,7 +904,6 @@ syms_of_callint (void) DEFSYM (Qhandle_shift_selection, "handle-shift-selection"); DEFSYM (Qread_number, "read-number"); DEFSYM (Qfuncall_interactively, "funcall-interactively"); - DEFSYM (Qcommand_debug_status, "command-debug-status"); DEFSYM (Qenable_recursive_minibuffers, "enable-recursive-minibuffers"); DEFSYM (Qmouse_leave_buffer_hook, "mouse-leave-buffer-hook"); diff --git a/src/ccl.c b/src/ccl.c index 88307a3..bf2aa12 100644 --- a/src/ccl.c +++ b/src/ccl.c @@ -2283,10 +2283,6 @@ syms_of_ccl (void) DEFSYM (Qccl, "ccl"); DEFSYM (Qcclp, "cclp"); - /* This symbol is a property which associates with ccl program vector. - Ex: (get 'ccl-big5-encoder 'ccl-program) returns ccl program vector. */ - DEFSYM (Qccl_program, "ccl-program"); - /* Symbols of ccl program have this property, a value of the property is an index for Vccl_program_table. */ DEFSYM (Qccl_program_idx, "ccl-program-idx"); diff --git a/src/charset.c b/src/charset.c index f1aa074..b19e344 100644 --- a/src/charset.c +++ b/src/charset.c @@ -2339,10 +2339,6 @@ syms_of_charset (void) DEFSYM (Qeight_bit, "eight-bit"); DEFSYM (Qiso_8859_1, "iso-8859-1"); - /* Value of charset attribute `charset-iso-plane'. */ - DEFSYM (Qgl, "gl"); - DEFSYM (Qgr, "gr"); - staticpro (&Vcharset_ordered_list); Vcharset_ordered_list = Qnil; diff --git a/src/cmds.c b/src/cmds.c index 6f9982e..a975a8e 100644 --- a/src/cmds.c +++ b/src/cmds.c @@ -526,7 +526,6 @@ internal_self_insert (int c, EMACS_INT n) void syms_of_cmds (void) { - DEFSYM (Qkill_backward_chars, "kill-backward-chars"); DEFSYM (Qkill_forward_chars, "kill-forward-chars"); /* A possible value for a buffer's overwrite-mode variable. */ diff --git a/src/coding.c b/src/coding.c index 4b41355..776ecac 100644 --- a/src/coding.c +++ b/src/coding.c @@ -10828,18 +10828,11 @@ syms_of_coding (void) /* Target SERVICE is the fourth argument. */ Fput (Qopen_network_stream, Qtarget_idx, make_number (3)); - DEFSYM (Qcoding_system, "coding-system"); - DEFSYM (Qcoding_aliases, "coding-aliases"); - - DEFSYM (Qeol_type, "eol-type"); DEFSYM (Qunix, "unix"); DEFSYM (Qdos, "dos"); DEFSYM (Qmac, "mac"); DEFSYM (Qbuffer_file_coding_system, "buffer-file-coding-system"); - DEFSYM (Qpost_read_conversion, "post-read-conversion"); - DEFSYM (Qpre_write_conversion, "pre-write-conversion"); - DEFSYM (Qdefault_char, "default-char"); DEFSYM (Qundecided, "undecided"); DEFSYM (Qno_conversion, "no-conversion"); DEFSYM (Qraw_text, "raw-text"); @@ -10873,10 +10866,6 @@ syms_of_coding (void) DEFSYM (Qtranslation_table, "translation-table"); Fput (Qtranslation_table, Qchar_table_extra_slots, make_number (2)); DEFSYM (Qtranslation_table_id, "translation-table-id"); - DEFSYM (Qtranslation_table_for_decode, "translation-table-for-decode"); - DEFSYM (Qtranslation_table_for_encode, "translation-table-for-encode"); - - DEFSYM (Qvalid_codes, "valid-codes"); /* Coding system emacs-mule and raw-text are for converting only end-of-line format. */ diff --git a/src/composite.c b/src/composite.c index 577b979..1c9c62b 100644 --- a/src/composite.c +++ b/src/composite.c @@ -1930,7 +1930,6 @@ The default value is the function `compose-chars-after'. */); Vcompose_chars_after_function = intern_c_string ("compose-chars-after"); DEFSYM (Qauto_composed, "auto-composed"); - DEFSYM (Qauto_composition_function, "auto-composition-function"); DEFVAR_LISP ("auto-composition-mode", Vauto_composition_mode, doc: /* Non-nil if Auto-Composition mode is enabled. diff --git a/src/data.c b/src/data.c index 7bc080f..9b1c12a 100644 --- a/src/data.c +++ b/src/data.c @@ -3451,7 +3451,6 @@ syms_of_data (void) DEFSYM (Qlistp, "listp"); DEFSYM (Qconsp, "consp"); DEFSYM (Qsymbolp, "symbolp"); - DEFSYM (Qkeywordp, "keywordp"); DEFSYM (Qintegerp, "integerp"); DEFSYM (Qnatnump, "natnump"); DEFSYM (Qwholenump, "wholenump"); @@ -3465,7 +3464,6 @@ syms_of_data (void) DEFSYM (Qmarkerp, "markerp"); DEFSYM (Qbuffer_or_string_p, "buffer-or-string-p"); DEFSYM (Qinteger_or_marker_p, "integer-or-marker-p"); - DEFSYM (Qboundp, "boundp"); DEFSYM (Qfboundp, "fboundp"); DEFSYM (Qfloatp, "floatp"); @@ -3481,10 +3479,6 @@ syms_of_data (void) DEFSYM (Qcdr, "cdr"); - /* Handle automatic advice activation. */ - DEFSYM (Qad_advice_info, "ad-advice-info"); - DEFSYM (Qad_activate_internal, "ad-activate-internal"); - error_tail = pure_cons (Qerror, Qnil); /* ERROR is used as a signaler for random errors for which nothing else is @@ -3570,7 +3564,6 @@ syms_of_data (void) DEFSYM (Qchar_table, "char-table"); DEFSYM (Qbool_vector, "bool-vector"); DEFSYM (Qhash_table, "hash-table"); - DEFSYM (Qmisc, "misc"); DEFSYM (Qdefun, "defun"); diff --git a/src/dbusbind.c b/src/dbusbind.c index 54b0217..be1b890 100644 --- a/src/dbusbind.c +++ b/src/dbusbind.c @@ -1718,11 +1718,7 @@ init_dbusbind (void) void syms_of_dbusbind (void) { - - DEFSYM (Qdbus__init_bus, "dbus--init-bus"); defsubr (&Sdbus__init_bus); - - DEFSYM (Qdbus_get_unique_name, "dbus-get-unique-name"); defsubr (&Sdbus_get_unique_name); DEFSYM (Qdbus_message_internal, "dbus-message-internal"); diff --git a/src/decompress.c b/src/decompress.c index b14f0a2..460d4fe 100644 --- a/src/decompress.c +++ b/src/decompress.c @@ -209,7 +209,6 @@ This function can be called only in unibyte buffers. */) void syms_of_decompress (void) { - DEFSYM (Qzlib_dll, "zlib"); defsubr (&Szlib_decompress_region); defsubr (&Szlib_available_p); } diff --git a/src/eval.c b/src/eval.c index 4902261..4655095 100644 --- a/src/eval.c +++ b/src/eval.c @@ -3670,7 +3670,6 @@ before making `inhibit-quit' nil. */); DEFSYM (Qautoload, "autoload"); DEFSYM (Qinhibit_debugger, "inhibit-debugger"); DEFSYM (Qmacro, "macro"); - DEFSYM (Qdeclare, "declare"); /* Note that the process handling also uses Qexit, but we don't want to staticpro it twice, so we just do it here. */ diff --git a/src/fileio.c b/src/fileio.c index f0f862a..aad0270 100644 --- a/src/fileio.c +++ b/src/fileio.c @@ -5819,7 +5819,6 @@ syms_of_fileio (void) DEFSYM (Qcopy_file, "copy-file"); DEFSYM (Qmake_directory_internal, "make-directory-internal"); DEFSYM (Qmake_directory, "make-directory"); - DEFSYM (Qdelete_directory_internal, "delete-directory-internal"); DEFSYM (Qdelete_file, "delete-file"); DEFSYM (Qrename_file, "rename-file"); DEFSYM (Qadd_name_to_file, "add-name-to-file"); diff --git a/src/fns.c b/src/fns.c index 939760b..235a4f6 100644 --- a/src/fns.c +++ b/src/fns.c @@ -5073,8 +5073,6 @@ syms_of_fns (void) defsubr (&Sdefine_hash_table_test); DEFSYM (Qstring_lessp, "string-lessp"); - DEFSYM (Qstring_collate_lessp, "string-collate-lessp"); - DEFSYM (Qstring_collate_equalp, "string-collate-equalp"); DEFSYM (Qprovide, "provide"); DEFSYM (Qrequire, "require"); DEFSYM (Qyes_or_no_p_history, "yes-or-no-p-history"); diff --git a/src/font.c b/src/font.c index 2ccfd15..1405d43 100644 --- a/src/font.c +++ b/src/font.c @@ -5133,10 +5133,6 @@ syms_of_font (void) DEFSYM (Qiso8859_1, "iso8859-1"); DEFSYM (Qiso10646_1, "iso10646-1"); DEFSYM (Qunicode_bmp, "unicode-bmp"); - DEFSYM (Qunicode_sip, "unicode-sip"); - - /* Unicode category `Cf'. */ - DEFSYM (QCf, "Cf"); /* Symbols representing keys of font extra info. */ DEFSYM (QCotf, ":otf"); @@ -5151,7 +5147,6 @@ syms_of_font (void) DEFSYM (QCscalable, ":scalable"); DEFSYM (QCavgwidth, ":avgwidth"); DEFSYM (QCfont_entity, ":font-entity"); - DEFSYM (QCfc_unknown_spec, ":fc-unknown-spec"); /* Symbols representing values of font spacing property. */ DEFSYM (Qc, "c"); diff --git a/src/fontset.c b/src/fontset.c index 763d846..e957c38 100644 --- a/src/fontset.c +++ b/src/fontset.c @@ -2143,7 +2143,6 @@ syms_of_fontset (void) DEFSYM (Qfontset_info, "fontset-info"); Fput (Qfontset_info, Qchar_table_extra_slots, make_number (1)); - DEFSYM (Qprepend, "prepend"); DEFSYM (Qappend, "append"); DEFSYM (Qlatin, "latin"); diff --git a/src/frame.c b/src/frame.c index 478bb00..e3ad82f 100644 --- a/src/frame.c +++ b/src/frame.c @@ -4905,7 +4905,6 @@ syms_of_frame (void) DEFSYM (Qframe_inhibit_resize, "frame-inhibit-resize"); DEFSYM (Qx_set_fullscreen, "x-set-fullscreen"); DEFSYM (Qx_check_fullscreen, "x-check-fullscreen"); - DEFSYM (Qx_set_window_size_1, "x-set-window-size-1"); DEFSYM (Qxg_frame_resized, "xg-frame-resized"); DEFSYM (Qxg_frame_set_char_size_1, "xg-frame-set-char-size-1"); DEFSYM (Qxg_frame_set_char_size_2, "xg-frame-set-char-size-2"); @@ -4922,7 +4921,6 @@ syms_of_frame (void) DEFSYM (Qset_window_configuration, "set-window-configuration"); DEFSYM (Qx_create_frame_1, "x-create-frame-1"); DEFSYM (Qx_create_frame_2, "x-create-frame-2"); - DEFSYM (Qtip_frame, "tip-frame"); DEFSYM (Qterminal_frame, "terminal-frame"); #ifdef HAVE_NS @@ -5074,12 +5072,10 @@ The pointer becomes visible again when the mouse is moved. */); DEFVAR_LISP ("focus-in-hook", Vfocus_in_hook, doc: /* Normal hook run when a frame gains input focus. */); Vfocus_in_hook = Qnil; - DEFSYM (Qfocus_in_hook, "focus-in-hook"); DEFVAR_LISP ("focus-out-hook", Vfocus_out_hook, doc: /* Normal hook run when a frame loses input focus. */); Vfocus_out_hook = Qnil; - DEFSYM (Qfocus_out_hook, "focus-out-hook"); DEFVAR_LISP ("delete-frame-functions", Vdelete_frame_functions, doc: /* Functions run before deleting a frame. diff --git a/src/ftfont.c b/src/ftfont.c index f19933c..afeaeca 100644 --- a/src/ftfont.c +++ b/src/ftfont.c @@ -2674,7 +2674,6 @@ syms_of_ftfont (void) /* Fontconfig's generic families and their aliases. */ DEFSYM (Qmonospace, "monospace"); DEFSYM (Qsans_serif, "sans-serif"); - DEFSYM (Qserif, "serif"); DEFSYM (Qsans, "sans"); DEFSYM (Qsans__serif, "sans serif"); diff --git a/src/gfilenotify.c b/src/gfilenotify.c index e03bec9..08713a8 100644 --- a/src/gfilenotify.c +++ b/src/gfilenotify.c @@ -236,10 +236,7 @@ globals_of_gfilenotify (void) void syms_of_gfilenotify (void) { - DEFSYM (Qgfile_add_watch, "gfile-add-watch"); defsubr (&Sgfile_add_watch); - - DEFSYM (Qgfile_rm_watch, "gfile-rm-watch"); defsubr (&Sgfile_rm_watch); /* Filter objects. */ diff --git a/src/gnutls.c b/src/gnutls.c index 9c2d86e..cab2404 100644 --- a/src/gnutls.c +++ b/src/gnutls.c @@ -1658,7 +1658,6 @@ syms_of_gnutls (void) #ifdef HAVE_GNUTLS gnutls_global_initialized = 0; - DEFSYM (Qgnutls_dll, "gnutls"); DEFSYM (Qgnutls_code, "gnutls-code"); DEFSYM (Qgnutls_anon, "gnutls-anon"); DEFSYM (Qgnutls_x509pki, "gnutls-x509pki"); @@ -1669,7 +1668,6 @@ syms_of_gnutls (void) DEFSYM (QCgnutls_bootprop_trustfiles, ":trustfiles"); DEFSYM (QCgnutls_bootprop_keylist, ":keylist"); DEFSYM (QCgnutls_bootprop_crlfiles, ":crlfiles"); - DEFSYM (QCgnutls_bootprop_callbacks, ":callbacks"); DEFSYM (QCgnutls_bootprop_min_prime_bits, ":min-prime-bits"); DEFSYM (QCgnutls_bootprop_loglevel, ":loglevel"); DEFSYM (QCgnutls_bootprop_verify_flags, ":verify-flags"); diff --git a/src/image.c b/src/image.c index 87029bf..dfa8941 100644 --- a/src/image.c +++ b/src/image.c @@ -9773,7 +9773,6 @@ non-numeric, there is no explicit limit on the size of images. */); DEFSYM (QCcolor_symbols, ":color-symbols"); DEFSYM (QCheuristic_mask, ":heuristic-mask"); DEFSYM (QCindex, ":index"); - DEFSYM (QCgeometry, ":geometry"); DEFSYM (QCcrop, ":crop"); DEFSYM (QCrotation, ":rotation"); DEFSYM (QCmatrix, ":matrix"); @@ -9792,7 +9791,6 @@ non-numeric, there is no explicit limit on the size of images. */); #ifdef HAVE_GHOSTSCRIPT ADD_IMAGE_TYPE (Qpostscript); DEFSYM (QCloader, ":loader"); - DEFSYM (QCbounding_box, ":bounding-box"); DEFSYM (QCpt_width, ":pt-width"); DEFSYM (QCpt_height, ":pt-height"); #endif /* HAVE_GHOSTSCRIPT */ diff --git a/src/keyboard.c b/src/keyboard.c index eb66c44..ca589dd 100644 --- a/src/keyboard.c +++ b/src/keyboard.c @@ -11074,10 +11074,6 @@ syms_of_keyboard (void) tool_bar_items_vector = Qnil; DEFSYM (Qtimer_event_handler, "timer-event-handler"); - DEFSYM (Qdisabled_command_function, "disabled-command-function"); - DEFSYM (Qself_insert_command, "self-insert-command"); - DEFSYM (Qforward_char, "forward-char"); - DEFSYM (Qbackward_char, "backward-char"); /* Non-nil disable property on a command means do not execute it; call disabled-command-function's value instead. */ @@ -11185,7 +11181,6 @@ syms_of_keyboard (void) DEFSYM (Qhandle_switch_frame, "handle-switch-frame"); DEFSYM (Qhandle_select_window, "handle-select-window"); - DEFSYM (Qinput_method_function, "input-method-function"); DEFSYM (Qinput_method_exit_on_first_char, "input-method-exit-on-first-char"); DEFSYM (Qinput_method_use_echo_area, "input-method-use-echo-area"); diff --git a/src/keymap.c b/src/keymap.c index e989805..8f4ac0d 100644 --- a/src/keymap.c +++ b/src/keymap.c @@ -3739,9 +3739,6 @@ be preferred. */); intern_c_string ("mouse-4"), intern_c_string ("mouse-5")); - DEFSYM (Qsingle_key_description, "single-key-description"); - DEFSYM (Qkey_description, "key-description"); - /* Keymap used for minibuffers when doing completion. */ /* Keymap used for minibuffers when doing completion and require a match. */ DEFSYM (Qkeymapp, "keymapp"); diff --git a/src/macros.c b/src/macros.c index e5b8ab7..79ed5b5 100644 --- a/src/macros.c +++ b/src/macros.c @@ -358,8 +358,6 @@ init_macros (void) void syms_of_macros (void) { - DEFSYM (Qexecute_kbd_macro, "execute-kbd-macro"); - DEFVAR_LISP ("kbd-macro-termination-hook", Vkbd_macro_termination_hook, doc: /* Normal hook run whenever a keyboard macro terminates. This is run whether the macro ends normally or prematurely due to an error. */); diff --git a/src/minibuf.c b/src/minibuf.c index c033169..03be8d1 100644 --- a/src/minibuf.c +++ b/src/minibuf.c @@ -1910,13 +1910,10 @@ syms_of_minibuf (void) staticpro (&minibuf_save_list); DEFSYM (Qcompletion_ignore_case, "completion-ignore-case"); - DEFSYM (Qread_file_name_internal, "read-file-name-internal"); DEFSYM (Qminibuffer_default, "minibuffer-default"); Fset (Qminibuffer_default, Qnil); DEFSYM (Qminibuffer_completion_table, "minibuffer-completion-table"); - DEFSYM (Qminibuffer_completion_confirm, "minibuffer-completion-confirm"); - DEFSYM (Qminibuffer_completion_predicate, "minibuffer-completion-predicate"); staticpro (&last_minibuf_string); last_minibuf_string = Qnil; @@ -1944,8 +1941,6 @@ syms_of_minibuf (void) For example, `eval-expression' uses this. */); Vread_expression_history = Qnil; - DEFSYM (Qread_expression_history, "read-expression-history"); - DEFVAR_LISP ("read-buffer-function", Vread_buffer_function, doc: /* If this is non-nil, `read-buffer' does its work by calling this function. The function is called with the arguments passed to `read-buffer'. */); diff --git a/src/nsfont.m b/src/nsfont.m index 683ab17..d450df3 100644 --- a/src/nsfont.m +++ b/src/nsfont.m @@ -1528,7 +1528,6 @@ syms_of_nsfont (void) DEFSYM (Qcondensed, "condensed"); DEFSYM (Qexpanded, "expanded"); DEFSYM (Qapple, "apple"); - DEFSYM (Qroman, "roman"); DEFSYM (Qmedium, "medium"); DEFVAR_LISP ("ns-reg-to-script", Vns_reg_to_script, doc: /* Internal use: maps font registry to Unicode script. */); diff --git a/src/print.c b/src/print.c index 206466c..a182839 100644 --- a/src/print.c +++ b/src/print.c @@ -2174,7 +2174,6 @@ decimal point. 0 is not allowed with `e' or `g'. A value of nil means to use the shortest notation that represents the number without losing information. */); Vfloat_output_format = Qnil; - DEFSYM (Qfloat_output_format, "float-output-format"); DEFVAR_LISP ("print-length", Vprint_length, doc: /* Maximum length of list to print before abbreviating. diff --git a/src/process.c b/src/process.c index bb06894..17fe708 100644 --- a/src/process.c +++ b/src/process.c @@ -7574,7 +7574,6 @@ syms_of_process (void) DEFSYM (QClog, ":log"); DEFSYM (QCnoquery, ":noquery"); DEFSYM (QCstop, ":stop"); - DEFSYM (QCoptions, ":options"); DEFSYM (QCplist, ":plist"); DEFSYM (QCcommand, ":command"); DEFSYM (QCconnection_type, ":connection-type"); diff --git a/src/textprop.c b/src/textprop.c index 96d88ed..f6dbab0 100644 --- a/src/textprop.c +++ b/src/textprop.c @@ -2377,12 +2377,8 @@ inherits it if NONSTICKINESS is nil. The `front-sticky' and /* Common attributes one might give text. */ - DEFSYM (Qforeground, "foreground"); - DEFSYM (Qbackground, "background"); DEFSYM (Qfont, "font"); DEFSYM (Qface, "face"); - DEFSYM (Qstipple, "stipple"); - DEFSYM (Qunderline, "underline"); DEFSYM (Qread_only, "read-only"); DEFSYM (Qinvisible, "invisible"); DEFSYM (Qintangible, "intangible"); @@ -2395,8 +2391,6 @@ inherits it if NONSTICKINESS is nil. The `front-sticky' and /* Properties that text might use to specify certain actions. */ - DEFSYM (Qmouse_left, "mouse-left"); - DEFSYM (Qmouse_entered, "mouse-entered"); DEFSYM (Qpoint_left, "point-left"); DEFSYM (Qpoint_entered, "point-entered"); diff --git a/src/w32fns.c b/src/w32fns.c index 3a6fa62..c247a9b 100644 --- a/src/w32fns.c +++ b/src/w32fns.c @@ -8347,6 +8347,14 @@ syms_of_w32fns (void) DEFSYM (Qworkarea, "workarea"); DEFSYM (Qmm_size, "mm-size"); DEFSYM (Qframes, "frames"); + DEFSYM (Qtip_frame, "tip-frame"); + DEFSYM (Qunicode_sip, "unicode-sip"); + + /* Symbols used elsewhere, but only in MS-Windows-specific code. */ + DEFSYM (Qgnutls_dll, "gnutls"); + DEFSYM (Qlibxml2_dll, "libxml2"); + DEFSYM (Qserif, "serif"); + DEFSYM (Qzlib_dll, "zlib"); Fput (Qundefined_color, Qerror_conditions, listn (CONSTYPE_PURE, 2, Qundefined_color, Qerror)); diff --git a/src/window.c b/src/window.c index b828166..ad5ac79 100644 --- a/src/window.c +++ b/src/window.c @@ -7329,7 +7329,6 @@ syms_of_window (void) DEFSYM (Qwindow_size, "window-size"); DEFSYM (Qtemp_buffer_show_hook, "temp-buffer-show-hook"); DEFSYM (Qabove, "above"); - DEFSYM (Qbelow, "below"); DEFSYM (Qclone_of, "clone-of"); DEFSYM (Qfloor, "floor"); DEFSYM (Qceiling, "ceiling"); diff --git a/src/xdisp.c b/src/xdisp.c index 358d7b5..05862d2 100644 --- a/src/xdisp.c +++ b/src/xdisp.c @@ -30536,9 +30536,7 @@ They are still logged to the *Messages* buffer. */); DEFSYM (Qcircle, "circle"); DEFSYM (Qpoly, "poly"); - /* The symbol `inhibit-menubar-update' and its DEFVAR_BOOL variable. */ DEFSYM (Qinhibit_menubar_update, "inhibit-menubar-update"); - DEFSYM (Qmessage_truncate_lines, "message-truncate-lines"); DEFSYM (Qgrow_only, "grow-only"); DEFSYM (Qinhibit_eval_during_redisplay, "inhibit-eval-during-redisplay"); diff --git a/src/xfaces.c b/src/xfaces.c index d198c4b..f0b6d39 100644 --- a/src/xfaces.c +++ b/src/xfaces.c @@ -6378,7 +6378,6 @@ syms_of_xfaces (void) /* Names of basic faces. */ DEFSYM (Qdefault, "default"); DEFSYM (Qtool_bar, "tool-bar"); - DEFSYM (Qregion, "region"); DEFSYM (Qfringe, "fringe"); DEFSYM (Qheader_line, "header-line"); DEFSYM (Qscroll_bar, "scroll-bar"); @@ -6400,13 +6399,6 @@ syms_of_xfaces (void) /* The name of the function used to compute colors on TTYs. */ DEFSYM (Qtty_color_alist, "tty-color-alist"); - /* Allowed scalable fonts. A value of nil means don't allow any - scalable fonts. A value of t means allow the use of any scalable - font. Otherwise, value must be a list of regular expressions. A - font may be scaled if its name matches a regular expression in the - list. */ - DEFSYM (Qscalable_fonts_allowed, "scalable-fonts-allowed"); - Vparam_value_alist = list1 (Fcons (Qnil, Qnil)); staticpro (&Vparam_value_alist); Vface_alternative_font_family_alist = Qnil; diff --git a/src/xml.c b/src/xml.c index a3f9239..9e68fff 100644 --- a/src/xml.c +++ b/src/xml.c @@ -287,8 +287,6 @@ syms_of_xml (void) { defsubr (&Slibxml_parse_html_region); defsubr (&Slibxml_parse_xml_region); - - DEFSYM (Qlibxml2_dll, "libxml2"); } #endif /* HAVE_LIBXML2 */ diff --git a/src/xselect.c b/src/xselect.c index 2a865e7..19ace06 100644 --- a/src/xselect.c +++ b/src/xselect.c @@ -2687,11 +2687,9 @@ A value of 0 means wait as long as necessary. This is initialized from the DEFSYM (QEMACS_TMP, "_EMACS_TMP_"); DEFSYM (QTARGETS, "TARGETS"); DEFSYM (QATOM, "ATOM"); - DEFSYM (QATOM_PAIR, "ATOM_PAIR"); DEFSYM (QCLIPBOARD_MANAGER, "CLIPBOARD_MANAGER"); DEFSYM (QSAVE_TARGETS, "SAVE_TARGETS"); DEFSYM (QNULL, "NULL"); - DEFSYM (Qcompound_text_with_extensions, "compound-text-with-extensions"); DEFSYM (Qforeign_selection, "foreign-selection"); DEFSYM (Qx_lost_selection_functions, "x-lost-selection-functions"); DEFSYM (Qx_sent_selection_functions, "x-sent-selection-functions"); commit 1e04ea9879eefd0ce15a386f575bdf85cbd4d38d Author: Michael Albinus Date: Sun May 31 13:08:06 2015 +0200 Use another default value for tramp-histfile-override * lisp/net/tramp-sh.el (tramp-histfile-override): Use ".tramp_history" as default. Fixes: debbugs:#20446 diff --git a/lisp/net/tramp-sh.el b/lisp/net/tramp-sh.el index fb63d79..5864acd 100644 --- a/lisp/net/tramp-sh.el +++ b/lisp/net/tramp-sh.el @@ -67,7 +67,7 @@ files conditionalize this setup based on the TERM environment variable." :type 'string) ;;;###tramp-autoload -(defcustom tramp-histfile-override t +(defcustom tramp-histfile-override ".tramp_history" "When invoking a shell, override the HISTFILE with this value. When setting to a string, it redirects the shell history to that file. Be careful when setting to \"/dev/null\"; this might commit 5d56c284d3da47e6587a111f4df49bf7e50a801c Author: Glenn Morris Date: Sun May 31 06:23:02 2015 -0400 ; Auto-commit of ChangeLog files. diff --git a/ChangeLog.2 b/ChangeLog.2 index b612b52..115ccda 100644 --- a/ChangeLog.2 +++ b/ChangeLog.2 @@ -1,3 +1,659 @@ +2015-05-30 Dmitry Gutov + + Make sure there's no explicit tag name + * lisp/progmodes/etags.el (tag-implicit-name-match-p): Make sure + there's no explicit tag name (bug#20629). + +2015-05-30 Paul Eggert + + Remove format2 + * src/editfns.c, src/lisp.h (format2): Remove. + It is more trouble than it's worth, now that we have CALLN. + This is just a minor refactoring. + * src/buffer.c (Fkill_buffer): + * src/dbusbind.c (XD_OBJECT_TO_STRING): + * src/fileio.c (barf_or_query_if_file_exists): + Adjust to format2 going away. + + Don't misencode C-generated messages + Also, be more consistent about calls to 'Fmessage' vs 'message'. + * src/alloc.c (Fgc_status): + Prefer AUTO_STRING to build_string for Fmessage call. + * src/data.c (Fmake_variable_buffer_local) + (Fmake_local_variable, Fmake_variable_frame_local): + * src/doc.c (store_function_docstring): + Use Fmessage, not message, since the argument can contain + non-ASCII characters, and this can cause the resulting message + to be incorrectly encoded for the current environment. + * src/fns.c (maybe_resize_hash_table): + * src/xselect.c (x_clipboard_manager_save_all): + Use message, not Fmessage, since Fmessage's power isn't needed here. + * src/process.c (Fmake_network_process): Reword message to avoid %s. + * src/xdisp.c (vmessage): Document restrictions on message contents. + (message_nolog) [false]: Remove unused code. + + Use \r rather than ^M in string literals + This is less likely to cause problems on platforms that + use CRLF (or CR!) termination for lines. + + Update .gitattributes to match current sources + http://lists.gnu.org/archive/html/emacs-devel/2015-05/msg00879.html + * .gitattributes: Accommodate tests that insist on DOS format. + Remove test/automated/data/decompress/foo-gzipped. + Add etc/e/eterm-color. + +2015-05-30 Eli Zaretskii + + Document 'face-ignored-fonts' + * doc/emacs/mule.texi (Modifying Fontsets): Document + face-ignored-fonts. (Bug#20628) + + Merge branch 'master' of git.savannah.gnu.org:/srv/git/emacs + + Add etags test for the new -Q option + * test/etags/ETAGS.good_1, test/etags/ETAGS.good_2: + * test/etags/ETAGS.good_3, test/etags/ETAGS.good_4: + * test/etags/ETAGS.good_5, test/etags/CTAGS.good: Adjust to + test-case changes below. + * test/etags/ETAGS.good_6: New file. + * test/etags/cp-src/x.cc: New file. + * test/etags/Makefile (CPSRC): Add x.cc. + (check): Add one more test, for -Q. + +2015-05-30 Dmitry Gutov + + Use list for the tags completion table, not obarray + * lisp/progmodes/etags.el (etags-tags-completion-table): Return a + list instead of an obarray + (http://lists.gnu.org/archive/html/emacs-devel/2015-05/msg00876.html). + (tags-completion-table): Combine those lists. + (tags-completion-table): Update the docstring. + +2015-05-30 Eli Zaretskii + + Restore EOL format testing in etags + * test/etags/ETAGS.good_1, test/etags/ETAGS.good_2: + * test/etags/ETAGS.good_3, test/etags/ETAGS.good_4: + * test/etags/ETAGS.good_5, test/etags/CTAGS.good: Adjust to + test-case changes below. + * test/etags/html-src/algrthms.html: Convert back to DOS EOL format. + * test/etags/cp-src/c.C (B): Add back stray CR character. + * test/etags/c-src/dostorture.c: Add back. + * test/etags/Makefile (CSRC): Add back c-src/dostorture.c. + +2015-05-30 Vitaly Takmazov (tiny change) + + Declare Emacs on MS-Windows to be DPI-aware + * nt/emacs-x86.manifest (asmv3:windowsSettings): Add dpiAware. + * nt/emacs-x64.manifest (asmv3:windowsSettings): Add dpiAware. + This avoids Windows entering compatibility mode for Emacs, + which causes fonts to look less nice. + +2015-05-30 Michael Albinus + + Improve Tramp traces. + * lisp/net/trampver.el (tramp-repository-get-version): New defun. + * lisp/net/tramp.el (tramp-debug-message): Use it. + +2015-05-30 Paul Eggert + + backup-buffer minor reworking of internals + * lisp/files.el (backup-buffer): Rework to avoid a couple of + unused locals inadvertently introduced in the previous change. + + backup-buffer now reports .emacs.d/%backup% ills + * lisp/files.el (backup-buffer): If the write to .emacs.d/%backup% + fails due to disk space exhaustion or whatever, do not pretend + that it succeeded. More generally, do a better job of checking + for I/O failures, and limit the scope of the condition-case to + just the operations where file errors should be caught and ignored + (Bug#20595). Also, don't bother trying to delete later backups if + an earlier deletion fails, as this is a sign of trouble and it's + better to stop when there's trouble. + + copy-file now truncates output after writing + * src/fileio.c (Fcopy_file): Truncate output after writing rather + than before. This is more likely to work than truncation before + writing, if the file system is out of space or the user is over + disk quota (Bug#20595). Also, check for read errors. + +2015-05-29 Artur Malabarba + + * lisp/emacs-lisp/package.el: Don't load from parent dir + (package-load-all-descriptors): Don't load descriptors from + directories above the package directories. + +2015-05-29 Paul Eggert + + Merge from gnulib + This incorporates the following (Bug#20681): + 2015-05-29 acl-permissions: Fix build on Mac OS X and older AIX + 2015-05-29 acl-permissions: Fix build on Solaris and Cygwin + * lib/set-permissions.c: Copy from gnulib. + +2015-05-29 Michael Albinus + + Improve Tramp traces. + * lisp/net/tramp.el (tramp-call-process-region): New defun. + * lisp/net/tramp-sh.el (tramp-get-inline-coding): Use it. + +2015-05-29 Glenn Morris + + * test/automated/vc-tests.el: Try enabling tests on hydra.nixos.org. + +2015-05-29 Wolfgang Jenkner + + * src/xfns.c (x_set_menu_bar_lines): Fix calls to x_clear_area. + The signature was changed in the cairo branch, merged on 2015-05-23. + This oversight broke compiling only the non-toolkit X version. + +2015-05-29 Samer Masterson + + * doc/lispref/os.texi: Update initial-buffer-choice docs. + +2015-05-29 Glenn Morris + + * test/automated/vc-tests.el (vc-test-rcs04-checkout-model): + Mark as an expected failure. + +2015-05-29 Paul Eggert + + Change package test to look for curved quotes + * test/automated/package-test.el (package-test-describe-package) + (package-test-signed): Search for curved single quotes as well as + for grave accent and apostrophe. + +2015-05-28 Katsumi Yamaoka + + gnus-art.el: Re-revert last change + * lisp/gnus/gnus-art.el (gnus-button-alist): Re-revert last change. + cf. + +2015-05-28 Samer Masterson + + Show files when `initial-buffer-choice' is non-nil + * startup.el (command-line-1): When Emacs is given a file as an + argument and `initial-buffer-choice' is non-nil, display both the file + and `initial-buffer-choice'. For more than one file, show + `initial-buffer-choice' and *Buffer List*. Refactor display-changing + commands out of the command line arg parser. + (initial-buffer-choice): Clarify docstring. + +2015-05-28 Eli Zaretskii + + Fix last commit + * nt/gnulib.mk (libgnu_a_SOURCES): Add get-permissions.c back. + (gnulib module qcopy-acl): Add back, as it is harmless. This + minimizes differences wrt lib/gnulib.mk. + + Fix the MS-Windows build as followup to gnulib update + * nt/gnulib.mk (libgnu_a_SOURCES): Remove get-permissions.c and + set-permissions.c, as they don't compile on MinGW. + (gnulib module qcopy-acl): Remove, as it needs set-permissions.c. + +2015-05-28 Paul Eggert + + Revert my change to gnus-art.el + * lisp/gnus/gnus-art.el (gnus-button-alist): Revert last change. + It wasn't that important, and it caused a Gnus build to fail. See: + http://www.randomsample.de:4456/builders/emacs-devel/builds/734 + + New minor mode Electric Quote + This lets you easily insert quotes ‘like this’ by typing + quotes `like this', and similarly you can easily insert + quotes “like this” by typing quotes ``like this'' (Bug#20545). + * doc/emacs/basic.texi (Inserting Text): + * doc/emacs/modes.texi (Minor Modes): + * etc/NEWS: Document it. + * doc/emacs/text.texi (Quotation Marks): New section. + * lisp/electric.el (electric-quote-comment) + (electric-quote-string, electric-quote-paragraph): + New custom vars. + (electric--insertable-p) + (electric-quote-post-self-insert-function): New functions. + (electric-quote-mode, electric-quote-local-mode): New minor modes. + * lisp/progmodes/elisp-mode.el (emacs-lisp-mode): + Add curved single quotes to electric-pair-text-pairs. + Set electric-quote-string in this buffer. + + A few more doc string fixes (Bug#20385) + + Accept curved quotes in doc strings + * lisp/info-look.el (info-lookup-guess-custom-symbol): + (info-lookup-alist): Treat ‘’ like `' when parsing help buffers etc. + + Generate curved quotes in pseudo-info nodes + * lisp/info.el (Info-virtual-index-find-node) + (Info-virtual-index, Info-apropos-find-node, info-apropos): + Quote ‘like this’, not `like this', when generating pseudo-info nodes. + + Fix minor quoting problems in doc strings + Most of these fixes involve escaping grave accents that are + actually intended to be grave accents, not left quotes. + (Bug#20385) + + Support curved quotes in doc strings + Emacs's traditional doc string style has been to quote symbols + `like this'. This worked well on now-obsolete terminals where + ` and ' were symmetric quotes, but nowadays curved quotes + ‘like this’ look better. Support quoting the new way too. + (Bug#20385) + * doc/lispref/tips.texi (Documentation Tips): Symbols can be quoted + ‘like-this’ as well as `like-this'. + * etc/NEWS: Mention this. + * lisp/cedet/mode-local.el (overload-docstring-extension) + (mode-local-print-binding, mode-local-describe-bindings-2): + * lisp/cus-theme.el (describe-theme-1): + * lisp/descr-text.el (describe-text-properties-1, describe-char): + * lisp/emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine): + * lisp/emacs-lisp/cl-generic.el (cl--generic-describe): + * lisp/emacs-lisp/eieio-opt.el (eieio-help-class) + (eieio-help-constructor): + * lisp/emacs-lisp/package.el (describe-package-1): + * lisp/faces.el (describe-face): + * lisp/help-fns.el (help-fns--key-bindings) + (help-fns--compiler-macro, help-fns--parent-mode, help-fns--obsolete): + (help-fns--interactive-only, describe-function-1): + (describe-variable): + * lisp/help.el (describe-mode): + * lisp/international/mule-cmds.el (describe-input-method) + (describe-language-environment): + * lisp/international/mule-diag.el (describe-character-set) + (print-coding-system-briefly, list-input-methods) + (list-input-methods-1): + Insert curved quotes rather than grave accent and apostrophe. + * lisp/cedet/srecode/texi.el (srecode-texi-texify-docstring): + * lisp/emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine) + (checkdoc-proper-noun-region-engine): + * lisp/emacs-lisp/lisp-mode.el (lisp-el-font-lock-keywords-2) + (lisp-cl-font-lock-keywords-2): + * lisp/finder.el (finder-font-lock-keywords): + * lisp/gnus/gnus-art.el (gnus-button-alist): + * lisp/help-fns.el (help-do-arg-highlight) + (describe-function-1, describe-variable): + * lisp/help-mode.el (help-xref-symbol-regexp) + (help-xref-info-regexp, help-xref-url-regexp): + * lisp/help.el (describe-mode): + * lisp/international/mule-cmds.el (help-xref-mule-regexp-template): + * lisp/wid-edit.el (widget-documentation-link-regexp): + Parse symbols quoted ‘like-this’ as well as `like-this'. + * lisp/progmodes/elisp-mode.el (emacs-lisp-mode): + Add "‘" and "’" to electric-pair-text-pairs. + (elisp--form-quoted-p): Also allow "‘" as a quoting char. + (elisp-completion-at-point, elisp--preceding-sexp): + Also treat "‘" and "’" as quoting chars. + + substitute-command-keys now curves quotes + So, for example, it turns "`abc'" into "‘abc’" (Bug#20385). + * doc/lispref/help.texi (Keys in Documentation): + * etc/NEWS: Document this. + * src/doc.c (Fsubstitute_command_keys): Implement it. + +2015-05-28 Glenn Morris + + * lisp/mail/rmailsum.el (rmail-summary-by-recipients) + (rmail-summary-by-topic, rmail-summary-by-senders): + No longer strip leading/trailing whitespace. + + * lisp/progmodes/f90.el (f90-type-def-re): Add "type, extends". + (f90-no-block-limit): Add "enum". (Bug#20680) + * test/automated/f90.el (f90-test-bug20680, f90-test-bug20680b): + New tests. + +2015-05-27 Stefan Monnier + + * lisp/isearch.el (isearch--current-buffer): Give a default value. + + Un-revert changes mistakenly dropped by f9fabb2b + +2015-05-27 Paul Eggert + + Merge from gnulib + This incorporates: + 2015-05-27 qacl: Reimplement qset_acl and qcopy_acl (Bug#20666) + 2015-05-27 file-has-acl: Split feature tests again (Bug#20667) + 2015-05-27 string: fix build failure on BSD/OSX with FORTIFY_SOURCE + 2015-05-26 stdio: limit __gnu_printf__ witness to gcc 4.4+ + 2015-05-26 inttypes: force correct mingw PRIdMAX even without + 2015-05-26 stdio: fix probe on mingw under gcc 5.1 + * admin/merge-gnulib (GNULIB_MODULES): + Replace qacl with qcopy-acl, since we don't need the rest of qacl. + * doc/misc/texinfo.tex, lib/acl-internal.c, lib/acl-internal.h: + * lib/inttypes.in.h, lib/qcopy-acl.c, lib/qset-acl.c: + * lib/string.in.h, m4/acl.m4, m4/stdio_h.m4: + Get latest versions from gnulib. + * lib/get-permissions.c, lib/set-permissions.c: New files. + * lib/gnulib.mk, m4/gnulib-comp.m4: + Regenerate. + * nt/gnulib.mk: Merge lib/gnulib.mk changes by hand. + +2015-05-27 Dmitry Gutov + + Delete the old process in vc-setup-buffer + * lisp/vc/vc-dispatcher.el (vc-setup-buffer): Delete the old + process here. + (vc-do-command): Rather than here (bug#20608). + +2015-05-27 Ivan Shmakov + + Avoid gratuitous delete-dups in face-at-point. + * lisp/faces.el (face-at-point): Do not compute the properly + ordered, duplicate-free list if only a single value is + requested anyway. (Bug#20519) + + Show the exact C-x 8 RET invocation in describe-char. + * lisp/descr-text.el (describe-char): Show the exact C-x 8 RET + invocation instead of a template. (Bug#20522) + +2015-05-27 Artur Malabarba + + * lisp/emacs-lisp/package.el: Don't erase tags on refresh + (package-menu--post-refresh): Call `tabulated-list-print' with the + UPDATE argument. This only affects the refresh action, the revert + action still erases tags. + (package-menu-get-status): Change `assq' to `assoc'. + (package-menu--mark-upgrades-1): New function. + (package-menu--mark-upgrades-pending): New variable. + (package-menu-mark-upgrades): Use them to delay marking until + after refresh is done. + (package-menu--post-refresh): Call mark-upgrades-1 if + mark-upgrades-pending is non-nil. + +2015-05-27 Michael Albinus + + Merge branch 'master' of git.sv.gnu.org:/srv/git/emacs + Conflicts: + lisp/net/tramp.el + + Fix typo in commit 3953c4be2816537be95520605d45b866dc731f4b + +2015-05-27 Eli Zaretskii + + Merge branch 'master' of git.savannah.gnu.org:/srv/git/emacs + +2015-05-27 Stefan Monnier + + * lisp/isearch.el (isearch--current-buffer): New var + (isearch-update): Set cursor-sensor-inhibit here. + (isearch-done): Unset cursor-sensor-inhibit in the right buffer (bug#20532). + + Change inhibit-point-motion-hooks to t + * src/textprop.c (syms_of_textprop): Default Vinhibit_point_motion_hooks + to t and document it as obsolete. + +2015-05-27 Eli Zaretskii + + Support ZIP files that use Zip64 extensions + * lisp/arc-mode.el (archive-zip-summarize): Handle the new ZIP + format of central directory offsets used by Zip64 extensions. + (Bug#20665) + +2015-05-27 Michael Albinus + + New test tramp-test30-make-auto-save-file-name + * tramp-tests.el (tramp-test30-make-auto-save-file-name): New test. + (tramp-test31-special-characters) + (tramp-test31-special-characters-with-stat) + (tramp-test31-special-characters-with-perl) + (tramp-test31-special-characters-with-ls, tramp-test32-utf8) + (tramp-test32-utf8-with-stat, tramp-test32-utf8-with-perl) + (tramp-test32-utf8-with-ls, tramp-test33-asynchronous-requests) + (tramp-test34-recursive-load, tramp-test35-unload): Rename. + + Improve tramp-handle-make-auto-save-file-name + * tramp.el (tramp-auto-save-directory): Add :tags. + (tramp-handle-make-auto-save-file-name): Let native + `make-auto-save-file-name' use `auto-save-file-name-transforms', + if `tramp-auto-save-directory' is not set. + +2015-05-27 Glenn Morris + + No longer set dired-directory in eshell. (Bug#16477) + * lisp/eshell/esh-mode.el (eshell-mode): + * lisp/eshell/em-dirs.el (eshell/cd): No longer set dired-directory. + + * lisp/mail/sendmail.el (mail-position-on-field): Doc fix. + + Make c-submit-bug-report file reports at debbugs.gnu.org. (Bug#15784) + * lisp/progmodes/cc-mode.el (c-mode-help-address): + Change to submit@debbugs. + (c-mode-bug-package): New constant. + (mail-position-on-field): Declare. + (c-submit-bug-report): Insert X-Debbugs-Package header. + * doc/misc/cc-mode.texi (Mailing Lists and Bug Reports): + Mention debbugs.gnu.org. + +2015-05-26 Glenn Morris + + * lisp/mail/rmailsum.el: Commas no longer separate regexps. (Bug#19026) + (rmail-summary-by-recipients, rmail-summary-by-topic) + (rmail-summary-by-senders): No longer use mail-comma-list-regexp. + * doc/emacs/rmail.texi (Rmail Make Summary): Update for this change. + +2015-05-26 Paul Eggert + + Handle curved quotes in info files + * lisp/calc/calc-help.el (calc-describe-thing): + * lisp/info.el (Info-find-index-name) + (Info-try-follow-nearest-node, Info-fontify-node): + * lisp/vc/ediff-help.el (ediff-help-for-quick-help): + In info files, process quotes ‘like this’ the same way we process + quotes `like this'. This catches a few places we missed earlier. + +2015-05-26 Dmitry Gutov + + xref-prompt-for-identifier: Use a list value + * lisp/progmodes/xref.el (xref-prompt-for-identifier): Allow list + value, to be interpreted as a list of commands. + (xref--prompt-p): New function. + (xref--read-identifier): Use it. + +2015-05-26 Eli Zaretskii + + Teach MS-Windows font back-end return per-glyph ascent/descent + * src/w32font.h (struct w32_metric_cache): Add ascent and descent + values. + * src/w32font.c (w32font_text_extents): Compute, cache, and + accumulate per-glyph ascent and descent values, instead of copying + global values from the font. If the values are not available from + the font data, i.e., non-TTF fonts, fall back on font-global values. + (compute_metrics): Compute and return per-glyph ascent and descent + values, if returned by GetGlyphOutlineW, falling back on + font-global values. (Bug#20628) + * src/w32term.c (w32_draw_rectangle): Add 1 pixel to width and + height of rectangle to be drawn, to be compatible with + XDrawRectangle. Fixes glyphless-char display as hex codes in a + box, when per-glyph ascent/descent values are used. + +2015-05-26 Artur Malabarba + + * lisp/emacs-lisp/tabulated-list.el: Don't sort without sorter + (tabulated-list-print): Don't sort if sorter is nil + +2015-05-26 Michael Albinus + + Fix Bug#20621 + * lisp/net/tramp-sh.el (tramp-set-auto-save): Remove it. There + are major modes which set `auto-save-mode' on their own rules; + Tramp shall not overwrite such settings. + (Bug#20621) + +2015-05-26 Glenn Morris + + * lisp/desktop.el: If modes aren't autoloaded, try simple guesswork. + (desktop-load-file): Guess that "foobar" defines "foobar-mode". + (desktop-buffer-mode-handlers, desktop-minor-mode-handlers): + Doc updates. + (vc-dir-mode): Remove unnecessary autoload. + +2015-05-25 Philipp Stephani + + * lisp/term/xterm.el: Add gui-get-selection support via OSC-52 + (xterm--extra-capabilities-type): Add `getSelection'. + (xterm--query): Add `no-async' argument. + (xterm--init-activate-get-selection): New function. + (terminal-init-xterm): Use it. + (xterm--init-modify-other-keys): Rename from + terminal-init-xterm-modify-other-keys. + (xterm--init-bracketed-paste-mode): Rename from + terminal-init-xterm-bracketed-paste-mode. + (xterm--init-activate-set-selection): Rename from + terminal-init-xterm-activate-set-selection. + (xterm--selection-char): New function. + (gui-backend-set-selection): Use it. Use the &context to only apply + this method in terminals where we enabled the feature. + (gui-backend-get-selection): New method. + +2015-05-25 Daniel Colascione + + Add C-language keyword constants to C++ + * lisp/progmodes/cc-langs.el (c-constant-kwds): Add C-language + keyword constants to C++. + +2015-05-25 Paul Eggert + + Make TAGS files more portable to MS-Windows + * etc/NEWS: Document this. + * lib-src/etags.c (readline_internal) [DOS_NT]: + Don't treat CRs differently from GNUish hosts. + * lisp/progmodes/etags.el (etags-goto-tag-location): + Adjust STARTPOS to account for the skipped CRs in dos-style files. + +2015-05-25 Michael Albinus + + Improve fix of debbugs:20634 in tramp-sh.el + +2015-05-25 Eli Zaretskii + + Fix a typo in last commit + * lib-src/etags.c (C_entries): Fix a typo. + * test/etags/ETAGS.good_1: + * test/etags/ETAGS.good_2: + * test/etags/ETAGS.good_3: + * test/etags/ETAGS.good_4: + * test/etags/ETAGS.good_5: + * test/etags/CTAGS.good: Update due to the change in etags.c. + + Fix tagging of class members in C-like OO languages + * lib-src/etags.c (longopts): Add new option --class-qualify and + its shorthand -Q. + (print_help): Add help text for --class-qualify. + (main): Add handling of -Q. + (consider_token, C_entries) : Append argument types + to Objective C methods only if --class-qualify was specified. + Qualify C++, Objective C, and Java class members with their class + names only if --class-qualify was specified. + (C_entries): If --class-qualify was not specified, remove the + namespace and class qualifiers from tag names of C++ methods. + This allows to use etags.el as xref back-end without the + tag-symbol-match-p method, which greatly increases the number of + potentially false positives. (Bug#20629) + * doc/man/etags.1: Update to document the new --class-qualify + option. + * test/etags/ETAGS.good_1: + * test/etags/ETAGS.good_2: + * test/etags/ETAGS.good_3: + * test/etags/ETAGS.good_4: + * test/etags/ETAGS.good_5: + * test/etags/CTAGS.good: Update due to changes in etags.c. + +2015-05-25 Stefan Monnier + + (cl-generic-define-method): Side effects are evil (bug#20644) + * lisp/emacs-lisp/cl-generic.el (cl-generic-define-method): Don't reuse + cons-cells that might be used as keys in an `equal' hash-table. + +2015-05-25 Lars Magne Ingebrigtsen + + Make erc timestamps visible again + * lisp/erc/erc-stamp.el (erc-munge-invisibility-spec): Make + timestamps visible again (if requested). + +2015-05-25 Eli Zaretskii + + Fix last change in etags.c that broke tagging compresed files + * lib-src/etags.c (process_file_name) [MSDOS || DOS_NT]: Fix + quoting of decompression shell command for MS-Windows/MS-DOS. + +2015-05-25 Stefan Monnier + + * lisp/emacs-lisp/cl-macs.el (cl-tagbody): Scope cl--tagbody-alist + (Bug#20639) + +2015-05-25 Michael Albinus + + Fix typo in 89035e247591c8d688fce922b7079881aa110f33 + +2015-05-25 Orivej Desh (tiny change) + + Fix IPv6 addresses in Tramp + * lisp/net/tramp-sh.el (tramp-make-copy-program-file-name): + Add sqare brackets around host name. + +2015-05-25 Michael Albinus + + Inhibit `epa-file-handler' in Tramp + (Bug#20634) + * lisp/net/tramp-sh.el (tramp-do-copy-or-rename-file-via-buffer) + (tramp-sh-handle-insert-file-contents-literally): Inhibit also + `epa-file-handler'. + +2015-05-24 Stefan Monnier + + * lisp/emacs-lisp/pcase.el: Use PAT rather than UPAT in docstring + (pcase-let): Document the behavior in case the pattern doesn't match. + +2015-05-24 Artur Malabarba + + * lisp/emacs-lisp/tabulated-list.el: New optional print method + (tabulated-list-print): New optional argument, UPDATE. If + non-nil, the list is printed by only adding and deleting the + changed entries, instead of erasing the whole buffer. This method + is much faster when few or no entries have changed. + * doc/lispref/modes.texi (Tabulated List Mode): Document it. + * etc/NEWS: Document it. + + * lisp/emacs-lisp/tabulated-list.el: Improve printing + (tabulated-list--get-sorter): New function. + (tabulated-list-print): Restore window-line when remember-pos is + passed and optimize away the `nreverse'. + +2015-05-24 Paul Eggert + + Simpilify etags TEX mode scanning + * lib-src/etags.c (TEX_mode, TEX_esc, TEX_opgrp, TEX_clgrp): + Remove static vars. + (TeX_commands): Deduce escapes here instead. + (TEX_LESC, TEX_SESC, TEX_mode): Remove; all uses removed. + This removes the need for a reset_input call. + + Improve etags I/O error reporting + * lib-src/etags.c: + Don't include sys/types.h and sys/stat.h; no longer needed. + (infilename): New static var. + (process_file_name): Don't call 'stat'. Instead, just open the + file for reading and report any errors. Don't bother making + a copy of the file argument; it's not needed. Be more careful to + use the failing errno when reporting an error. + Quote the real name better (though no perfectly) + when passing it to the shell. + (reset_input): New function, which reports I/O errors. + All uses of 'rewind' changed to use this function. + (perhaps_more_input): New function, which also checks for + I/O errors. All uses of 'feof' changed to use this function. + (analyze_regex): Report an error if fclose fails. + (readline_internal): Report an error if getc fails. + (etags_mktmp): Return an error if close fails. + + etags.c: avoid side effects in 'if' + * lib-src/etags.c (process_file_name, Perl_functions) + (TEX_decode_env): Hoist side effects into previous statement. + + .gitignore tweaks + * .gitignore: Ignore all *.stamp files. Sort. + Ignore [0-9]*.txt (commonly used name for git patches) + and /vc-dwim-log-* (vc-dwim temporary). + 2015-05-24 Eli Zaretskii Fix last change in etags.c, which failed the test suite diff --git a/build-aux/gitlog-to-emacslog b/build-aux/gitlog-to-emacslog index c833721..e687708 100755 --- a/build-aux/gitlog-to-emacslog +++ b/build-aux/gitlog-to-emacslog @@ -23,7 +23,7 @@ LC_ALL=C export LC_ALL # The newest revision that should not appear in the generated ChangeLog. -gen_origin=b98a2ef74758f78831d7c6dd4ae13f3433d77869 +gen_origin=0700eb152da4c57419a391161107b48d81abdeb2 force= output=ChangeLog nmax=2 commit 8b5f2f439b835ad115ce084ba68e0ae38ea40dd8 (refs/remotes/origin/emacs-24) Author: Nicolas Petton Date: Fri May 29 12:36:29 2015 +0200 * doc/emacs/emacs.texi: Update the ISBN of the Emacs manual. diff --git a/doc/emacs/emacs.texi b/doc/emacs/emacs.texi index 5125510..76d7900 100644 --- a/doc/emacs/emacs.texi +++ b/doc/emacs/emacs.texi @@ -94,7 +94,7 @@ developing GNU and promoting software freedom.'' Published by the Free Software Foundation @* 51 Franklin Street, Fifth Floor @* Boston, MA 02110-1301 USA @* -ISBN 978-0-9831592-4-7 +ISBN 978-0-9831592-5-4 @sp 2 Cover art by Etienne Suvasa; cover design by Matt Lee. commit 82e2ce9d792e6bd76cd517589d5b89144497ecf8 Author: Ulrich Müller Date: Sat Apr 11 10:37:48 2015 +0200 Bump Emacs version to 24.5.50. diff --git a/README b/README index 51fb000..191eefd 100644 --- a/README +++ b/README @@ -2,7 +2,7 @@ Copyright (C) 2001-2015 Free Software Foundation, Inc. See the end of the file for license conditions. -This directory tree holds version 24.5 of GNU Emacs, the extensible, +This directory tree holds version 24.5.50 of GNU Emacs, the extensible, customizable, self-documenting real-time display editor. The file INSTALL in this directory says how to build and install GNU diff --git a/configure.ac b/configure.ac index 4291453..faa2b6d 100644 --- a/configure.ac +++ b/configure.ac @@ -22,7 +22,7 @@ dnl You should have received a copy of the GNU General Public License dnl along with GNU Emacs. If not, see . AC_PREREQ(2.65) -AC_INIT(emacs, 24.5) +AC_INIT(emacs, 24.5.50) dnl We get MINGW64 with MSYS2 if test "x$MSYSTEM" = "xMINGW32" -o "x$MSYSTEM" = "xMINGW64" diff --git a/doc/emacs/emacsver.texi b/doc/emacs/emacsver.texi index bdc3c03..1697a82 100644 --- a/doc/emacs/emacsver.texi +++ b/doc/emacs/emacsver.texi @@ -1,4 +1,4 @@ @c It would be nicer to generate this using configure and @version@. @c However, that would mean emacsver.texi would always be newer @c then the info files in release tarfiles. -@set EMACSVER 24.5 +@set EMACSVER 24.5.50 diff --git a/doc/man/emacs.1 b/doc/man/emacs.1 index 3fcec6b..f997875 100644 --- a/doc/man/emacs.1 +++ b/doc/man/emacs.1 @@ -1,5 +1,5 @@ .\" See section COPYING for copyright and redistribution information. -.TH EMACS 1 "2007 April 13" "GNU Emacs 24.5" +.TH EMACS 1 "2007 April 13" "GNU Emacs 24.5.50" . . .SH NAME diff --git a/msdos/sed2v2.inp b/msdos/sed2v2.inp index f931afb..20399f1 100644 --- a/msdos/sed2v2.inp +++ b/msdos/sed2v2.inp @@ -70,7 +70,7 @@ /^#undef PACKAGE_TARNAME/s/^.*$/#define PACKAGE_TARNAME ""/ /^#undef PACKAGE_VERSION/s/^.*$/#define PACKAGE_VERSION ""/ /^#undef PENDING_OUTPUT_COUNT/s/^.*$/#define PENDING_OUTPUT_COUNT(FILE) ((FILE)->_ptr - (FILE)->_base)/ -/^#undef VERSION/s/^.*$/#define VERSION "24.5"/ +/^#undef VERSION/s/^.*$/#define VERSION "24.5.50"/ /^#undef SYSTEM_TYPE/s/^.*$/#define SYSTEM_TYPE "ms-dos"/ /^#undef HAVE_DECL_GETENV/s/^.*$/#define HAVE_DECL_GETENV 1/ /^#undef SYS_SIGLIST_DECLARED/s/^.*$/#define SYS_SIGLIST_DECLARED 1/ diff --git a/nt/config.nt b/nt/config.nt index 7827b15..c06270c 100644 --- a/nt/config.nt +++ b/nt/config.nt @@ -1576,7 +1576,7 @@ along with GNU Emacs. If not, see . */ #undef USG_SUBTTY_WORKS /* Version number of package */ -#define VERSION "24.5" +#define VERSION "24.5.50" /* Define to 1 if unsetenv returns void instead of int. */ #undef VOID_UNSETENV diff --git a/nt/emacs.rc b/nt/emacs.rc index e007786..9426202 100644 --- a/nt/emacs.rc +++ b/nt/emacs.rc @@ -11,8 +11,8 @@ Emacs ICON icons/emacs.ico #endif VS_VERSION_INFO VERSIONINFO - FILEVERSION 24,5,0,0 - PRODUCTVERSION 24,5,0,0 + FILEVERSION 24,5,50,0 + PRODUCTVERSION 24,5,50,0 FILEFLAGSMASK 0x3FL #ifdef EMACSDEBUG FILEFLAGS 0x1L @@ -29,12 +29,12 @@ BEGIN BEGIN VALUE "CompanyName", "Free Software Foundation\0" VALUE "FileDescription", "GNU Emacs: The extensible self-documenting text editor\0" - VALUE "FileVersion", "24, 5, 0, 0\0" + VALUE "FileVersion", "24, 5, 50, 0\0" VALUE "InternalName", "Emacs\0" VALUE "LegalCopyright", "Copyright (C) 2001-2015\0" VALUE "OriginalFilename", "emacs.exe" VALUE "ProductName", "Emacs\0" - VALUE "ProductVersion", "24, 5, 0, 0\0" + VALUE "ProductVersion", "24, 5, 50, 0\0" VALUE "OLESelfRegister", "\0" END END diff --git a/nt/emacsclient.rc b/nt/emacsclient.rc index 15bdda1..9df550a 100644 --- a/nt/emacsclient.rc +++ b/nt/emacsclient.rc @@ -5,8 +5,8 @@ Emacs ICON icons\emacs.ico #endif VS_VERSION_INFO VERSIONINFO - FILEVERSION 24,5,0,0 - PRODUCTVERSION 24,5,0,0 + FILEVERSION 24,5,50,0 + PRODUCTVERSION 24,5,50,0 FILEFLAGSMASK 0x3FL #ifdef EMACSDEBUG FILEFLAGS 0x1L @@ -23,12 +23,12 @@ BEGIN BEGIN VALUE "CompanyName", "Free Software Foundation\0" VALUE "FileDescription", "GNU EmacsClient: Client for the extensible self-documenting text editor\0" - VALUE "FileVersion", "24, 5, 0, 0\0" + VALUE "FileVersion", "24, 5, 50, 0\0" VALUE "InternalName", "EmacsClient\0" VALUE "LegalCopyright", "Copyright (C) 2001-2015\0" VALUE "OriginalFilename", "emacsclientw.exe" VALUE "ProductName", "EmacsClient\0" - VALUE "ProductVersion", "24, 5, 0, 0\0" + VALUE "ProductVersion", "24, 5, 50, 0\0" VALUE "OLESelfRegister", "\0" END END diff --git a/nt/makefile.w32-in b/nt/makefile.w32-in index b374dc3..f0099ab 100644 --- a/nt/makefile.w32-in +++ b/nt/makefile.w32-in @@ -22,7 +22,7 @@ # FIXME: This file uses DOS EOLs. Convert to Unix after 22.1 is out # (and remove or replace this comment). -VERSION = 24.5 +VERSION = 24.5.50 TMP_DIST_DIR = emacs-$(VERSION) commit 866501efe0fdc0c29448e0aaf8696eb0a3c8fcd6 (tag: refs/tags/emacs-24.5-rc3-fixed, tag: refs/tags/emacs-24.5) Author: Nicolas Petton Date: Mon Apr 6 20:20:08 2015 +0200 * lisp/ChangeLog: Remove a duplicate diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 5b7c901..eb31d5f 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -12,10 +12,6 @@ * net/tramp.el (tramp-handle-unhandled-file-name-directory): Return nil when required by the spec. (Bug#20233) -2015-04-01 Nicolas Petton - - * Version 24.5 released. - 2015-03-26 Stefan Monnier * emacs-lisp/smie.el (smie-backward-sexp-command) commit 8272c1dbe96b14930a91807dce7a2a67c09fff4d (tag: refs/tags/emacs-24.5-rc3) Author: Nicolas Petton Date: Sun Apr 5 17:23:28 2015 +0200 lisp/ldefs-boot.el: Update for the 24.5 release diff --git a/lisp/ldefs-boot.el b/lisp/ldefs-boot.el index d43f877..83ea84d 100644 --- a/lisp/ldefs-boot.el +++ b/lisp/ldefs-boot.el @@ -65,8 +65,8 @@ should return a grid vector array that is the new solution. ;;;*** -;;;### (autoloads nil "ada-mode" "progmodes/ada-mode.el" (21781 3656 -;;;;;; 19151 849000)) +;;;### (autoloads nil "ada-mode" "progmodes/ada-mode.el" (21788 61018 +;;;;;; 575424 873000)) ;;; Generated autoloads from progmodes/ada-mode.el (autoload 'ada-add-extensions "ada-mode" "\ @@ -96,8 +96,8 @@ Insert a descriptive header at the top of the file. ;;;*** -;;;### (autoloads nil "ada-xref" "progmodes/ada-xref.el" (21781 3656 -;;;;;; 19151 849000)) +;;;### (autoloads nil "ada-xref" "progmodes/ada-xref.el" (21788 61018 +;;;;;; 575424 873000)) ;;; Generated autoloads from progmodes/ada-xref.el (autoload 'ada-find-file "ada-xref" "\ @@ -108,8 +108,8 @@ Completion is available. ;;;*** -;;;### (autoloads nil "add-log" "vc/add-log.el" (21781 3656 81152 -;;;;;; 93000)) +;;;### (autoloads nil "add-log" "vc/add-log.el" (21788 61018 636424 +;;;;;; 907000)) ;;; Generated autoloads from vc/add-log.el (put 'change-log-default-name 'safe-local-variable 'string-or-null-p) @@ -837,8 +837,8 @@ for details on preparing Emacs for automatic allout activation. ;;;*** -;;;### (autoloads nil "allout-widgets" "allout-widgets.el" (21781 -;;;;;; 3655 842151 152000)) +;;;### (autoloads nil "allout-widgets" "allout-widgets.el" (21788 +;;;;;; 61018 408424 778000)) ;;; Generated autoloads from allout-widgets.el (push (purecopy '(allout-widgets 1 0)) package--builtin-versions) @@ -896,8 +896,8 @@ outline hot-spot navigation (see `allout-mode'). ;;;*** -;;;### (autoloads nil "ange-ftp" "net/ange-ftp.el" (21781 3655 981151 -;;;;;; 699000)) +;;;### (autoloads nil "ange-ftp" "net/ange-ftp.el" (21788 61018 535424 +;;;;;; 850000)) ;;; Generated autoloads from net/ange-ftp.el (defalias 'ange-ftp-re-read-dir 'ange-ftp-reread-dir) @@ -1015,8 +1015,8 @@ Used in `antlr-mode'. Also a useful function in `java-mode-hook'. ;;;*** -;;;### (autoloads nil "appt" "calendar/appt.el" (21781 3655 850151 -;;;;;; 183000)) +;;;### (autoloads nil "appt" "calendar/appt.el" (21788 61018 415424 +;;;;;; 782000)) ;;; Generated autoloads from calendar/appt.el (autoload 'appt-add "appt" "\ @@ -1037,7 +1037,8 @@ ARG is positive, otherwise off. ;;;*** -;;;### (autoloads nil "apropos" "apropos.el" (21781 3655 842151 152000)) +;;;### (autoloads nil "apropos" "apropos.el" (21788 61018 409424 +;;;;;; 778000)) ;;; Generated autoloads from apropos.el (autoload 'apropos-read-pattern "apropos" "\ @@ -1152,8 +1153,8 @@ Returns list of symbols and documentation found. ;;;*** -;;;### (autoloads nil "arc-mode" "arc-mode.el" (21781 3655 842151 -;;;;;; 152000)) +;;;### (autoloads nil "arc-mode" "arc-mode.el" (21788 61018 409424 +;;;;;; 778000)) ;;; Generated autoloads from arc-mode.el (autoload 'archive-mode "arc-mode" "\ @@ -1479,8 +1480,8 @@ Special commands: ;;;*** -;;;### (autoloads nil "auth-source" "gnus/auth-source.el" (21781 -;;;;;; 3655 921151 463000)) +;;;### (autoloads nil "auth-source" "gnus/auth-source.el" (21788 +;;;;;; 61018 479424 818000)) ;;; Generated autoloads from gnus/auth-source.el (defvar auth-source-cache-expiry 7200 "\ @@ -1564,8 +1565,8 @@ Major mode for editing Autoconf configure.ac files. ;;;*** -;;;### (autoloads nil "autoinsert" "autoinsert.el" (21781 3655 842151 -;;;;;; 152000)) +;;;### (autoloads nil "autoinsert" "autoinsert.el" (21788 61018 409424 +;;;;;; 778000)) ;;; Generated autoloads from autoinsert.el (autoload 'auto-insert "autoinsert" "\ @@ -1603,8 +1604,8 @@ insert a template for the file depending on the mode of the buffer. ;;;*** -;;;### (autoloads nil "autoload" "emacs-lisp/autoload.el" (21781 -;;;;;; 3655 881151 305000)) +;;;### (autoloads nil "autoload" "emacs-lisp/autoload.el" (21788 +;;;;;; 61018 442424 797000)) ;;; Generated autoloads from emacs-lisp/autoload.el (put 'generated-autoload-file 'safe-local-variable 'stringp) @@ -1653,8 +1654,8 @@ should be non-nil). ;;;*** -;;;### (autoloads nil "autorevert" "autorevert.el" (21781 3655 844151 -;;;;;; 160000)) +;;;### (autoloads nil "autorevert" "autorevert.el" (21788 61018 409424 +;;;;;; 778000)) ;;; Generated autoloads from autorevert.el (autoload 'auto-revert-mode "autorevert" "\ @@ -1799,7 +1800,8 @@ Run script using `bat-run' and `bat-run-args'. ;;;*** -;;;### (autoloads nil "battery" "battery.el" (21781 3655 844151 160000)) +;;;### (autoloads nil "battery" "battery.el" (21788 61018 410424 +;;;;;; 779000)) ;;; Generated autoloads from battery.el (put 'battery-mode-line-string 'risky-local-variable t) @@ -1871,8 +1873,8 @@ For non-interactive use see also `benchmark-run' and ;;;*** -;;;### (autoloads nil "bibtex" "textmodes/bibtex.el" (21781 3656 -;;;;;; 69152 46000)) +;;;### (autoloads nil "bibtex" "textmodes/bibtex.el" (21788 61018 +;;;;;; 623424 900000)) ;;; Generated autoloads from textmodes/bibtex.el (autoload 'bibtex-initialize "bibtex" "\ @@ -2119,8 +2121,8 @@ a reflection. ;;;*** -;;;### (autoloads nil "bookmark" "bookmark.el" (21781 3655 845151 -;;;;;; 164000)) +;;;### (autoloads nil "bookmark" "bookmark.el" (21788 61018 410424 +;;;;;; 779000)) ;;; Generated autoloads from bookmark.el (define-key ctl-x-r-map "b" 'bookmark-jump) (define-key ctl-x-r-map "m" 'bookmark-set) @@ -2312,8 +2314,8 @@ Incremental search of bookmarks, hiding the non-matches as we go. ;;;*** -;;;### (autoloads nil "browse-url" "net/browse-url.el" (21781 3670 -;;;;;; 701209 684000)) +;;;### (autoloads nil "browse-url" "net/browse-url.el" (21788 61018 +;;;;;; 536424 851000)) ;;; Generated autoloads from net/browse-url.el (defvar browse-url-browser-function 'browse-url-default-browser "\ @@ -2622,7 +2624,7 @@ from `browse-url-elinks-wrapper'. ;;;*** -;;;### (autoloads nil "bs" "bs.el" (21781 3655 845151 164000)) +;;;### (autoloads nil "bs" "bs.el" (21788 61018 410424 779000)) ;;; Generated autoloads from bs.el (push (purecopy '(bs 1 17)) package--builtin-versions) @@ -2663,8 +2665,8 @@ name of buffer configuration. ;;;*** -;;;### (autoloads nil "bubbles" "play/bubbles.el" (21781 3656 13151 -;;;;;; 825000)) +;;;### (autoloads nil "bubbles" "play/bubbles.el" (21788 61018 570424 +;;;;;; 870000)) ;;; Generated autoloads from play/bubbles.el (autoload 'bubbles "bubbles" "\ @@ -2706,8 +2708,8 @@ Like `bug-reference-mode', but only buttonize in comments and strings. ;;;*** -;;;### (autoloads nil "bytecomp" "emacs-lisp/bytecomp.el" (21781 -;;;;;; 3655 883151 313000)) +;;;### (autoloads nil "bytecomp" "emacs-lisp/bytecomp.el" (21788 +;;;;;; 61018 445424 799000)) ;;; Generated autoloads from emacs-lisp/bytecomp.el (put 'byte-compile-dynamic 'safe-local-variable 'booleanp) (put 'byte-compile-disable-print-circle 'safe-local-variable 'booleanp) @@ -2827,8 +2829,8 @@ and corresponding effects. ;;;*** -;;;### (autoloads nil "cal-china" "calendar/cal-china.el" (21781 -;;;;;; 3655 851151 187000)) +;;;### (autoloads nil "cal-china" "calendar/cal-china.el" (21788 +;;;;;; 61018 415424 782000)) ;;; Generated autoloads from calendar/cal-china.el (put 'calendar-chinese-time-zone 'risky-local-variable t) @@ -2837,8 +2839,8 @@ and corresponding effects. ;;;*** -;;;### (autoloads nil "cal-dst" "calendar/cal-dst.el" (21781 3655 -;;;;;; 851151 187000)) +;;;### (autoloads nil "cal-dst" "calendar/cal-dst.el" (21788 61018 +;;;;;; 415424 782000)) ;;; Generated autoloads from calendar/cal-dst.el (put 'calendar-daylight-savings-starts 'risky-local-variable t) @@ -2849,8 +2851,8 @@ and corresponding effects. ;;;*** -;;;### (autoloads nil "cal-hebrew" "calendar/cal-hebrew.el" (21781 -;;;;;; 3655 851151 187000)) +;;;### (autoloads nil "cal-hebrew" "calendar/cal-hebrew.el" (21788 +;;;;;; 61018 416424 782000)) ;;; Generated autoloads from calendar/cal-hebrew.el (autoload 'calendar-hebrew-list-yahrzeits "cal-hebrew" "\ @@ -2864,7 +2866,7 @@ from the cursor position. ;;;*** -;;;### (autoloads nil "calc" "calc/calc.el" (21781 3655 850151 183000)) +;;;### (autoloads nil "calc" "calc/calc.el" (21788 61018 414424 781000)) ;;; Generated autoloads from calc/calc.el (define-key ctl-x-map "*" 'calc-dispatch) @@ -2959,8 +2961,8 @@ See Info node `(calc)Defining Functions'. ;;;*** -;;;### (autoloads nil "calculator" "calculator.el" (21781 3655 850151 -;;;;;; 183000)) +;;;### (autoloads nil "calculator" "calculator.el" (21788 61018 415424 +;;;;;; 782000)) ;;; Generated autoloads from calculator.el (autoload 'calculator "calculator" "\ @@ -2971,8 +2973,8 @@ See the documentation for `calculator-mode' for more information. ;;;*** -;;;### (autoloads nil "calendar" "calendar/calendar.el" (21781 3655 -;;;;;; 852151 191000)) +;;;### (autoloads nil "calendar" "calendar/calendar.el" (21788 61018 +;;;;;; 417424 783000)) ;;; Generated autoloads from calendar/calendar.el (autoload 'calendar "calendar" "\ @@ -3033,8 +3035,8 @@ it fails. ;;;*** -;;;### (autoloads nil "cap-words" "progmodes/cap-words.el" (21781 -;;;;;; 3656 19151 849000)) +;;;### (autoloads nil "cap-words" "progmodes/cap-words.el" (21788 +;;;;;; 61018 575424 873000)) ;;; Generated autoloads from progmodes/cap-words.el (autoload 'capitalized-words-mode "cap-words" "\ @@ -3073,8 +3075,8 @@ Obsoletes `c-forward-into-nomenclature'. ;;;*** -;;;### (autoloads nil "cc-engine" "progmodes/cc-engine.el" (21781 -;;;;;; 3656 25151 873000)) +;;;### (autoloads nil "cc-engine" "progmodes/cc-engine.el" (21788 +;;;;;; 61018 580424 875000)) ;;; Generated autoloads from progmodes/cc-engine.el (autoload 'c-guess-basic-syntax "cc-engine" "\ @@ -3084,8 +3086,8 @@ Return the syntactic context of the current line. ;;;*** -;;;### (autoloads nil "cc-guess" "progmodes/cc-guess.el" (21781 3656 -;;;;;; 26151 877000)) +;;;### (autoloads nil "cc-guess" "progmodes/cc-guess.el" (21788 61018 +;;;;;; 582424 877000)) ;;; Generated autoloads from progmodes/cc-guess.el (defvar c-guess-guessed-offsets-alist nil "\ @@ -3183,8 +3185,8 @@ the absolute file name of the file if STYLE-NAME is nil. ;;;*** -;;;### (autoloads nil "cc-mode" "progmodes/cc-mode.el" (21781 3670 -;;;;;; 711209 723000)) +;;;### (autoloads nil "cc-mode" "progmodes/cc-mode.el" (21793 5616 +;;;;;; 770619 164000)) ;;; Generated autoloads from progmodes/cc-mode.el (autoload 'c-initialize-cc-mode "cc-mode" "\ @@ -3341,8 +3343,8 @@ Key bindings: ;;;*** -;;;### (autoloads nil "cc-styles" "progmodes/cc-styles.el" (21781 -;;;;;; 3656 29151 888000)) +;;;### (autoloads nil "cc-styles" "progmodes/cc-styles.el" (21788 +;;;;;; 61018 585424 878000)) ;;; Generated autoloads from progmodes/cc-styles.el (autoload 'c-set-style "cc-styles" "\ @@ -3393,8 +3395,8 @@ and exists only for compatibility reasons. ;;;*** -;;;### (autoloads nil "cc-vars" "progmodes/cc-vars.el" (21781 3656 -;;;;;; 29151 888000)) +;;;### (autoloads nil "cc-vars" "progmodes/cc-vars.el" (21788 61018 +;;;;;; 586424 879000)) ;;; Generated autoloads from progmodes/cc-vars.el (put 'c-basic-offset 'safe-local-variable 'integerp) (put 'c-backslash-column 'safe-local-variable 'integerp) @@ -3402,8 +3404,8 @@ and exists only for compatibility reasons. ;;;*** -;;;### (autoloads nil "ccl" "international/ccl.el" (21781 3655 958151 -;;;;;; 609000)) +;;;### (autoloads nil "ccl" "international/ccl.el" (21788 61018 512424 +;;;;;; 837000)) ;;; Generated autoloads from international/ccl.el (autoload 'ccl-compile "ccl" "\ @@ -3663,8 +3665,8 @@ See the documentation of `define-ccl-program' for the detail of CCL program. ;;;*** -;;;### (autoloads nil "cconv" "emacs-lisp/cconv.el" (21781 3655 884151 -;;;;;; 317000)) +;;;### (autoloads nil "cconv" "emacs-lisp/cconv.el" (21788 61018 +;;;;;; 446424 799000)) ;;; Generated autoloads from emacs-lisp/cconv.el (autoload 'cconv-closure-convert "cconv" "\ @@ -3690,8 +3692,8 @@ Add the warnings that closure conversion would encounter. ;;;*** -;;;### (autoloads nil "cfengine" "progmodes/cfengine.el" (21781 3656 -;;;;;; 30151 892000)) +;;;### (autoloads nil "cfengine" "progmodes/cfengine.el" (21788 61018 +;;;;;; 586424 879000)) ;;; Generated autoloads from progmodes/cfengine.el (push (purecopy '(cfengine 1 3)) package--builtin-versions) @@ -3721,15 +3723,15 @@ on the buffer contents ;;;*** -;;;### (autoloads nil "chart" "emacs-lisp/chart.el" (21781 3655 885151 -;;;;;; 321000)) +;;;### (autoloads nil "chart" "emacs-lisp/chart.el" (21788 61018 +;;;;;; 446424 799000)) ;;; Generated autoloads from emacs-lisp/chart.el (push (purecopy '(chart 0 2)) package--builtin-versions) ;;;*** ;;;### (autoloads nil "check-declare" "emacs-lisp/check-declare.el" -;;;;;; (21781 3655 886151 325000)) +;;;;;; (21788 61018 446424 799000)) ;;; Generated autoloads from emacs-lisp/check-declare.el (autoload 'check-declare-file "check-declare" "\ @@ -3746,8 +3748,8 @@ Returns non-nil if any false statements are found. ;;;*** -;;;### (autoloads nil "checkdoc" "emacs-lisp/checkdoc.el" (21781 -;;;;;; 3655 886151 325000)) +;;;### (autoloads nil "checkdoc" "emacs-lisp/checkdoc.el" (21788 +;;;;;; 61018 446424 799000)) ;;; Generated autoloads from emacs-lisp/checkdoc.el (push (purecopy '(checkdoc 0 6 2)) package--builtin-versions) (put 'checkdoc-force-docstrings-flag 'safe-local-variable #'booleanp) @@ -4025,8 +4027,8 @@ and runs the normal hook `command-history-hook'. ;;;*** -;;;### (autoloads nil "cl-indent" "emacs-lisp/cl-indent.el" (21781 -;;;;;; 3655 886151 325000)) +;;;### (autoloads nil "cl-indent" "emacs-lisp/cl-indent.el" (21788 +;;;;;; 61018 447424 800000)) ;;; Generated autoloads from emacs-lisp/cl-indent.el (autoload 'common-lisp-indent-function "cl-indent" "\ @@ -4104,8 +4106,8 @@ For example, the function `case' has an indent property ;;;*** -;;;### (autoloads nil "cl-lib" "emacs-lisp/cl-lib.el" (21781 3655 -;;;;;; 887151 329000)) +;;;### (autoloads nil "cl-lib" "emacs-lisp/cl-lib.el" (21788 61018 +;;;;;; 447424 800000)) ;;; Generated autoloads from emacs-lisp/cl-lib.el (push (purecopy '(cl-lib 1 0)) package--builtin-versions) @@ -4196,7 +4198,7 @@ If FRAME cannot display COLOR, return nil. ;;;*** -;;;### (autoloads nil "comint" "comint.el" (21781 3670 684209 617000)) +;;;### (autoloads nil "comint" "comint.el" (21788 61018 435424 793000)) ;;; Generated autoloads from comint.el (defvar comint-output-filter-functions '(ansi-color-process-output comint-postoutput-scroll-to-bottom comint-watch-for-password-prompt) "\ @@ -4295,8 +4297,8 @@ REGEXP-GROUP is the regular expression group in REGEXP to use. ;;;*** -;;;### (autoloads nil "compare-w" "vc/compare-w.el" (21781 3656 81152 -;;;;;; 93000)) +;;;### (autoloads nil "compare-w" "vc/compare-w.el" (21788 61018 +;;;;;; 636424 907000)) ;;; Generated autoloads from vc/compare-w.el (autoload 'compare-windows "compare-w" "\ @@ -4329,8 +4331,8 @@ on third call it again advances points to the next difference and so on. ;;;*** -;;;### (autoloads nil "compile" "progmodes/compile.el" (21781 3656 -;;;;;; 30151 892000)) +;;;### (autoloads nil "compile" "progmodes/compile.el" (21788 61018 +;;;;;; 587424 879000)) ;;; Generated autoloads from progmodes/compile.el (defvar compilation-mode-hook nil "\ @@ -4511,8 +4513,8 @@ This is the value of `next-error-function' in Compilation buffers. ;;;*** -;;;### (autoloads nil "completion" "completion.el" (21781 3655 877151 -;;;;;; 290000)) +;;;### (autoloads nil "completion" "completion.el" (21788 61018 436424 +;;;;;; 794000)) ;;; Generated autoloads from completion.el (defvar dynamic-completion-mode nil "\ @@ -4534,8 +4536,8 @@ if ARG is omitted or nil. ;;;*** -;;;### (autoloads nil "conf-mode" "textmodes/conf-mode.el" (21781 -;;;;;; 3656 69152 46000)) +;;;### (autoloads nil "conf-mode" "textmodes/conf-mode.el" (21788 +;;;;;; 61018 623424 900000)) ;;; Generated autoloads from textmodes/conf-mode.el (autoload 'conf-mode "conf-mode" "\ @@ -4758,8 +4760,8 @@ If FIX is non-nil, run `copyright-fix-years' instead. ;;;*** -;;;### (autoloads nil "cperl-mode" "progmodes/cperl-mode.el" (21781 -;;;;;; 3656 32151 900000)) +;;;### (autoloads nil "cperl-mode" "progmodes/cperl-mode.el" (21788 +;;;;;; 61018 588424 880000)) ;;; Generated autoloads from progmodes/cperl-mode.el (put 'cperl-indent-level 'safe-local-variable 'integerp) (put 'cperl-brace-offset 'safe-local-variable 'integerp) @@ -5003,8 +5005,8 @@ with empty strings removed. ;;;*** -;;;### (autoloads nil "css-mode" "textmodes/css-mode.el" (21781 3656 -;;;;;; 69152 46000)) +;;;### (autoloads nil "css-mode" "textmodes/css-mode.el" (21788 61018 +;;;;;; 623424 900000)) ;;; Generated autoloads from textmodes/css-mode.el (autoload 'css-mode "css-mode" "\ @@ -5014,8 +5016,8 @@ Major mode to edit Cascading Style Sheets. ;;;*** -;;;### (autoloads nil "cua-base" "emulation/cua-base.el" (21781 3655 -;;;;;; 899151 376000)) +;;;### (autoloads nil "cua-base" "emulation/cua-base.el" (21788 61018 +;;;;;; 456424 805000)) ;;; Generated autoloads from emulation/cua-base.el (defvar cua-mode nil "\ @@ -5072,8 +5074,8 @@ Activates the region if needed. Only lasts until the region is deactivated. ;;;*** -;;;### (autoloads nil "cus-edit" "cus-edit.el" (21781 3655 878151 -;;;;;; 294000)) +;;;### (autoloads nil "cus-edit" "cus-edit.el" (21788 61018 437424 +;;;;;; 794000)) ;;; Generated autoloads from cus-edit.el (defvar custom-browse-sort-alphabetically nil "\ @@ -5430,8 +5432,8 @@ Mode used for cvs status output. ;;;*** -;;;### (autoloads nil "cwarn" "progmodes/cwarn.el" (21781 3656 32151 -;;;;;; 900000)) +;;;### (autoloads nil "cwarn" "progmodes/cwarn.el" (21788 61018 588424 +;;;;;; 880000)) ;;; Generated autoloads from progmodes/cwarn.el (push (purecopy '(cwarn 1 3 1)) package--builtin-versions) @@ -5562,7 +5564,7 @@ Create a new data-debug buffer with NAME. ;;;*** -;;;### (autoloads nil "dbus" "net/dbus.el" (21781 3655 981151 699000)) +;;;### (autoloads nil "dbus" "net/dbus.el" (21788 61018 536424 851000)) ;;; Generated autoloads from net/dbus.el (autoload 'dbus-handle-event "dbus" "\ @@ -5702,8 +5704,8 @@ There is some minimal font-lock support (see vars ;;;*** -;;;### (autoloads nil "debug" "emacs-lisp/debug.el" (21781 4629 991468 -;;;;;; 664000)) +;;;### (autoloads nil "debug" "emacs-lisp/debug.el" (21788 61018 +;;;;;; 448424 801000)) ;;; Generated autoloads from emacs-lisp/debug.el (setq debugger 'debug) @@ -5801,7 +5803,7 @@ START and END delimits the corners of text rectangle. ;;;*** -;;;### (autoloads nil "delsel" "delsel.el" (21781 3655 878151 294000)) +;;;### (autoloads nil "delsel" "delsel.el" (21788 61018 438424 795000)) ;;; Generated autoloads from delsel.el (defalias 'pending-delete-mode 'delete-selection-mode) @@ -5829,8 +5831,8 @@ point regardless of any selection. ;;;*** -;;;### (autoloads nil "derived" "emacs-lisp/derived.el" (21781 3655 -;;;;;; 889151 337000)) +;;;### (autoloads nil "derived" "emacs-lisp/derived.el" (21788 61018 +;;;;;; 448424 801000)) ;;; Generated autoloads from emacs-lisp/derived.el (autoload 'define-derived-mode "derived" "\ @@ -5896,8 +5898,8 @@ the first time the mode is used. ;;;*** -;;;### (autoloads nil "descr-text" "descr-text.el" (21781 3655 878151 -;;;;;; 294000)) +;;;### (autoloads nil "descr-text" "descr-text.el" (21788 61018 439424 +;;;;;; 795000)) ;;; Generated autoloads from descr-text.el (autoload 'describe-text-properties "descr-text" "\ @@ -5931,7 +5933,8 @@ relevant to POS. ;;;*** -;;;### (autoloads nil "desktop" "desktop.el" (21781 3655 879151 298000)) +;;;### (autoloads nil "desktop" "desktop.el" (21788 61018 440424 +;;;;;; 796000)) ;;; Generated autoloads from desktop.el (defvar desktop-save-mode nil "\ @@ -6169,8 +6172,8 @@ Deuglify broken Outlook (Express) articles and redisplay. ;;;*** -;;;### (autoloads nil "diary-lib" "calendar/diary-lib.el" (21781 -;;;;;; 3655 853151 195000)) +;;;### (autoloads nil "diary-lib" "calendar/diary-lib.el" (21788 +;;;;;; 61018 418424 784000)) ;;; Generated autoloads from calendar/diary-lib.el (autoload 'diary "diary-lib" "\ @@ -6260,8 +6263,8 @@ This requires the external program `diff' to be in your `exec-path'. ;;;*** -;;;### (autoloads nil "diff-mode" "vc/diff-mode.el" (21781 3656 82152 -;;;;;; 97000)) +;;;### (autoloads nil "diff-mode" "vc/diff-mode.el" (21788 61018 +;;;;;; 637424 908000)) ;;; Generated autoloads from vc/diff-mode.el (autoload 'diff-mode "diff-mode" "\ @@ -6304,7 +6307,7 @@ Optional arguments are passed to `dig-invoke'. ;;;*** -;;;### (autoloads nil "dired" "dired.el" (21781 3670 685209 621000)) +;;;### (autoloads nil "dired" "dired.el" (21788 61018 441424 797000)) ;;; Generated autoloads from dired.el (defvar dired-listing-switches (purecopy "-al") "\ @@ -6609,7 +6612,7 @@ Default is 2. ;;;*** -;;;### (autoloads nil "dnd" "dnd.el" (21781 3655 880151 301000)) +;;;### (autoloads nil "dnd" "dnd.el" (21788 61018 441424 797000)) ;;; Generated autoloads from dnd.el (defvar dnd-protocol-alist `((,(purecopy "^file:///") . dnd-open-local-file) (,(purecopy "^file://") . dnd-open-file) (,(purecopy "^file:") . dnd-open-local-file) (,(purecopy "^\\(https?\\|ftp\\|file\\|nfs\\)://") . dnd-open-file)) "\ @@ -6653,8 +6656,8 @@ Locate SOA record and increment the serial field. ;;;*** -;;;### (autoloads nil "doc-view" "doc-view.el" (21781 3655 880151 -;;;;;; 301000)) +;;;### (autoloads nil "doc-view" "doc-view.el" (21788 61018 442424 +;;;;;; 797000)) ;;; Generated autoloads from doc-view.el (autoload 'doc-view-mode-p "doc-view" "\ @@ -6727,8 +6730,8 @@ strings when pressed twice. See `double-map' for details. ;;;*** -;;;### (autoloads nil "dunnet" "play/dunnet.el" (21781 3656 13151 -;;;;;; 825000)) +;;;### (autoloads nil "dunnet" "play/dunnet.el" (21788 61018 571424 +;;;;;; 870000)) ;;; Generated autoloads from play/dunnet.el (push (purecopy '(dunnet 2 1)) package--builtin-versions) @@ -6739,8 +6742,8 @@ Switch to *dungeon* buffer and start game. ;;;*** -;;;### (autoloads nil "easy-mmode" "emacs-lisp/easy-mmode.el" (21781 -;;;;;; 3655 889151 337000)) +;;;### (autoloads nil "easy-mmode" "emacs-lisp/easy-mmode.el" (21788 +;;;;;; 61018 448424 801000)) ;;; Generated autoloads from emacs-lisp/easy-mmode.el (defalias 'easy-mmode-define-minor-mode 'define-minor-mode) @@ -7489,7 +7492,7 @@ With prefix arg NOCONFIRM, execute current line as-is without editing. ;;;*** -;;;### (autoloads nil "ede" "cedet/ede.el" (21781 3655 857151 211000)) +;;;### (autoloads nil "ede" "cedet/ede.el" (21788 61018 421424 785000)) ;;; Generated autoloads from cedet/ede.el (push (purecopy '(ede 1 2)) package--builtin-versions) @@ -7515,8 +7518,8 @@ an EDE controlled project. ;;;*** -;;;### (autoloads nil "edebug" "emacs-lisp/edebug.el" (21781 3655 -;;;;;; 889151 337000)) +;;;### (autoloads nil "edebug" "emacs-lisp/edebug.el" (21788 61018 +;;;;;; 449424 801000)) ;;; Generated autoloads from emacs-lisp/edebug.el (defvar edebug-all-defs nil "\ @@ -7876,8 +7879,8 @@ Display Ediff's registry. ;;;*** -;;;### (autoloads nil "ediff-util" "vc/ediff-util.el" (21781 3656 -;;;;;; 84152 105000)) +;;;### (autoloads nil "ediff-util" "vc/ediff-util.el" (21788 61018 +;;;;;; 639424 909000)) ;;; Generated autoloads from vc/ediff-util.el (autoload 'ediff-toggle-multiframe "ediff-util" "\ @@ -7946,8 +7949,8 @@ or nil, use a compact 80-column format. ;;;*** -;;;### (autoloads nil "edt" "emulation/edt.el" (21781 3655 899151 -;;;;;; 376000)) +;;;### (autoloads nil "edt" "emulation/edt.el" (21788 61018 456424 +;;;;;; 805000)) ;;; Generated autoloads from emulation/edt.el (autoload 'edt-set-scroll-margins "edt" "\ @@ -8000,15 +8003,15 @@ BUFFER is put back into its original major mode. ;;;*** -;;;### (autoloads nil "eieio" "emacs-lisp/eieio.el" (21781 3655 893151 -;;;;;; 353000)) +;;;### (autoloads nil "eieio" "emacs-lisp/eieio.el" (21788 61018 +;;;;;; 451424 802000)) ;;; Generated autoloads from emacs-lisp/eieio.el (push (purecopy '(eieio 1 4)) package--builtin-versions) ;;;*** -;;;### (autoloads nil "eieio-core" "emacs-lisp/eieio-core.el" (21781 -;;;;;; 3655 890151 341000)) +;;;### (autoloads nil "eieio-core" "emacs-lisp/eieio-core.el" (21788 +;;;;;; 61018 450424 802000)) ;;; Generated autoloads from emacs-lisp/eieio-core.el (push (purecopy '(eieio-core 1 4)) package--builtin-versions) @@ -8024,8 +8027,8 @@ It creates an autoload function for CNAME's constructor. ;;;*** -;;;### (autoloads nil "eldoc" "emacs-lisp/eldoc.el" (21781 3655 893151 -;;;;;; 353000)) +;;;### (autoloads nil "eldoc" "emacs-lisp/eldoc.el" (21788 61018 +;;;;;; 451424 802000)) ;;; Generated autoloads from emacs-lisp/eldoc.el (defvar eldoc-minor-mode-string (purecopy " ElDoc") "\ @@ -8068,8 +8071,8 @@ Emacs Lisp mode) that support ElDoc.") ;;;*** -;;;### (autoloads nil "elec-pair" "elec-pair.el" (21710 25077 507663 -;;;;;; 230000)) +;;;### (autoloads nil "elec-pair" "elec-pair.el" (21788 61018 442424 +;;;;;; 797000)) ;;; Generated autoloads from elec-pair.el (defvar electric-pair-text-pairs '((34 . 34)) "\ @@ -8219,8 +8222,8 @@ Other values are interpreted as usual. ;;;*** -;;;### (autoloads nil "emacsbug" "mail/emacsbug.el" (21781 3655 972151 -;;;;;; 664000)) +;;;### (autoloads nil "emacsbug" "mail/emacsbug.el" (21788 61018 +;;;;;; 524424 844000)) ;;; Generated autoloads from mail/emacsbug.el (autoload 'report-emacs-bug "emacsbug" "\ @@ -8233,7 +8236,8 @@ Prompts for bug subject. Leaves you in a mail buffer. ;;;*** -;;;### (autoloads nil "emerge" "vc/emerge.el" (21781 3656 85152 109000)) +;;;### (autoloads nil "emerge" "vc/emerge.el" (21788 61018 639424 +;;;;;; 909000)) ;;; Generated autoloads from vc/emerge.el (autoload 'emerge-files "emerge" "\ @@ -8293,8 +8297,8 @@ Emerge two RCS revisions of a file, with another revision as ancestor. ;;;*** -;;;### (autoloads nil "enriched" "textmodes/enriched.el" (21781 3656 -;;;;;; 70152 50000)) +;;;### (autoloads nil "enriched" "textmodes/enriched.el" (21788 61018 +;;;;;; 623424 900000)) ;;; Generated autoloads from textmodes/enriched.el (autoload 'enriched-mode "enriched" "\ @@ -8329,7 +8333,7 @@ Commands: ;;;*** -;;;### (autoloads nil "epa" "epa.el" (21781 3655 902151 388000)) +;;;### (autoloads nil "epa" "epa.el" (21788 61018 457424 806000)) ;;; Generated autoloads from epa.el (autoload 'epa-list-keys "epa" "\ @@ -8533,8 +8537,8 @@ Encrypt marked files. ;;;*** -;;;### (autoloads nil "epa-file" "epa-file.el" (21781 3655 902151 -;;;;;; 388000)) +;;;### (autoloads nil "epa-file" "epa-file.el" (21788 61018 457424 +;;;;;; 806000)) ;;; Generated autoloads from epa-file.el (autoload 'epa-file-handler "epa-file" "\ @@ -8554,8 +8558,8 @@ Encrypt marked files. ;;;*** -;;;### (autoloads nil "epa-mail" "epa-mail.el" (21781 3655 902151 -;;;;;; 388000)) +;;;### (autoloads nil "epa-mail" "epa-mail.el" (21788 61018 457424 +;;;;;; 806000)) ;;; Generated autoloads from epa-mail.el (autoload 'epa-mail-mode "epa-mail" "\ @@ -8632,7 +8636,7 @@ if ARG is omitted or nil. ;;;*** -;;;### (autoloads nil "epg" "epg.el" (21781 3655 902151 388000)) +;;;### (autoloads nil "epg" "epg.el" (21788 61018 458424 806000)) ;;; Generated autoloads from epg.el (push (purecopy '(epg 1 0 0)) package--builtin-versions) @@ -8664,7 +8668,7 @@ Look at CONFIG and try to expand GROUP. ;;;*** -;;;### (autoloads nil "erc" "erc/erc.el" (21781 3670 689209 637000)) +;;;### (autoloads nil "erc" "erc/erc.el" (21788 61018 462424 809000)) ;;; Generated autoloads from erc/erc.el (push (purecopy '(erc 5 3)) package--builtin-versions) @@ -8741,8 +8745,8 @@ Otherwise, connect to HOST:PORT as USER and /join CHANNEL. ;;;*** -;;;### (autoloads nil "erc-dcc" "erc/erc-dcc.el" (21781 3655 904151 -;;;;;; 396000)) +;;;### (autoloads nil "erc-dcc" "erc/erc-dcc.el" (21788 61018 460424 +;;;;;; 807000)) ;;; Generated autoloads from erc/erc-dcc.el (autoload 'erc-dcc-mode "erc-dcc") @@ -8772,7 +8776,7 @@ that subcommand. ;;;*** ;;;### (autoloads nil "erc-desktop-notifications" "erc/erc-desktop-notifications.el" -;;;;;; (21781 3655 904151 396000)) +;;;;;; (21788 61018 460424 807000)) ;;; Generated autoloads from erc/erc-desktop-notifications.el (autoload 'erc-notifications-mode "erc-desktop-notifications" "" t) @@ -9099,8 +9103,8 @@ This will add a speedbar major display mode. ;;;*** -;;;### (autoloads nil "erc-spelling" "erc/erc-spelling.el" (21781 -;;;;;; 3655 905151 400000)) +;;;### (autoloads nil "erc-spelling" "erc/erc-spelling.el" (21788 +;;;;;; 61018 460424 807000)) ;;; Generated autoloads from erc/erc-spelling.el (autoload 'erc-spelling-mode "erc-spelling" nil t) @@ -9171,8 +9175,8 @@ Add a file to `erc-xdcc-files'. ;;;*** -;;;### (autoloads nil "ert" "emacs-lisp/ert.el" (21781 3655 894151 -;;;;;; 357000)) +;;;### (autoloads nil "ert" "emacs-lisp/ert.el" (21788 61018 451424 +;;;;;; 802000)) ;;; Generated autoloads from emacs-lisp/ert.el (autoload 'ert-deftest "ert" "\ @@ -9250,8 +9254,8 @@ Kill all test buffers that are still live. ;;;*** -;;;### (autoloads nil "esh-mode" "eshell/esh-mode.el" (21781 3655 -;;;;;; 908151 412000)) +;;;### (autoloads nil "esh-mode" "eshell/esh-mode.el" (21788 61018 +;;;;;; 463424 809000)) ;;; Generated autoloads from eshell/esh-mode.el (autoload 'eshell-mode "esh-mode" "\ @@ -9261,8 +9265,8 @@ Emacs shell interactive mode. ;;;*** -;;;### (autoloads nil "eshell" "eshell/eshell.el" (21781 3655 908151 -;;;;;; 412000)) +;;;### (autoloads nil "eshell" "eshell/eshell.el" (21788 61018 463424 +;;;;;; 809000)) ;;; Generated autoloads from eshell/eshell.el (push (purecopy '(eshell 2 4 2)) package--builtin-versions) @@ -9297,8 +9301,8 @@ corresponding to a successful execution. ;;;*** -;;;### (autoloads nil "etags" "progmodes/etags.el" (21781 3656 32151 -;;;;;; 900000)) +;;;### (autoloads nil "etags" "progmodes/etags.el" (21788 61018 589424 +;;;;;; 881000)) ;;; Generated autoloads from progmodes/etags.el (defvar tags-file-name nil "\ @@ -9775,7 +9779,7 @@ With ARG, insert that many delimiters. ;;;*** -;;;### (autoloads nil "eudc" "net/eudc.el" (21781 3655 982151 703000)) +;;;### (autoloads nil "eudc" "net/eudc.el" (21788 61018 537424 851000)) ;;; Generated autoloads from net/eudc.el (autoload 'eudc-set-server "eudc" "\ @@ -9829,8 +9833,8 @@ This does nothing except loading eudc by autoload side-effect. ;;;*** -;;;### (autoloads nil "eudc-bob" "net/eudc-bob.el" (21781 3655 982151 -;;;;;; 703000)) +;;;### (autoloads nil "eudc-bob" "net/eudc-bob.el" (21788 61018 536424 +;;;;;; 851000)) ;;; Generated autoloads from net/eudc-bob.el (autoload 'eudc-display-generic-binary "eudc-bob" "\ @@ -9865,8 +9869,8 @@ Display a button for the JPEG DATA. ;;;*** -;;;### (autoloads nil "eudc-export" "net/eudc-export.el" (21781 3655 -;;;;;; 982151 703000)) +;;;### (autoloads nil "eudc-export" "net/eudc-export.el" (21788 61018 +;;;;;; 536424 851000)) ;;; Generated autoloads from net/eudc-export.el (autoload 'eudc-insert-record-at-point-into-bbdb "eudc-export" "\ @@ -9882,8 +9886,8 @@ Call `eudc-insert-record-at-point-into-bbdb' if on a record. ;;;*** -;;;### (autoloads nil "eudc-hotlist" "net/eudc-hotlist.el" (21781 -;;;;;; 3655 982151 703000)) +;;;### (autoloads nil "eudc-hotlist" "net/eudc-hotlist.el" (21788 +;;;;;; 61018 536424 851000)) ;;; Generated autoloads from net/eudc-hotlist.el (autoload 'eudc-edit-hotlist "eudc-hotlist" "\ @@ -9920,7 +9924,7 @@ fourth arg NOSEP non-nil inhibits this. ;;;*** -;;;### (autoloads nil "eww" "net/eww.el" (21781 3655 983151 707000)) +;;;### (autoloads nil "eww" "net/eww.el" (21788 61018 537424 851000)) ;;; Generated autoloads from net/eww.el (autoload 'eww "eww" "\ @@ -10034,8 +10038,8 @@ This is used only in conjunction with `expand-add-abbrevs'. ;;;*** -;;;### (autoloads nil "f90" "progmodes/f90.el" (21781 3656 33151 -;;;;;; 904000)) +;;;### (autoloads nil "f90" "progmodes/f90.el" (21788 61018 589424 +;;;;;; 881000)) ;;; Generated autoloads from progmodes/f90.el (autoload 'f90-mode "f90" "\ @@ -10317,7 +10321,7 @@ you can set `feedmail-queue-reminder-alist' to nil. ;;;*** -;;;### (autoloads nil "ffap" "ffap.el" (21781 3655 909151 416000)) +;;;### (autoloads nil "ffap" "ffap.el" (21788 61018 465424 810000)) ;;; Generated autoloads from ffap.el (autoload 'ffap-next "ffap" "\ @@ -10380,8 +10384,8 @@ Evaluate the forms in variable `ffap-bindings'. ;;;*** -;;;### (autoloads nil "filecache" "filecache.el" (21781 3655 909151 -;;;;;; 416000)) +;;;### (autoloads nil "filecache" "filecache.el" (21788 61018 465424 +;;;;;; 810000)) ;;; Generated autoloads from filecache.el (autoload 'file-cache-add-directory "filecache" "\ @@ -10532,8 +10536,8 @@ Set up hooks, load the cache file -- if existing -- and build the menu. ;;;*** -;;;### (autoloads nil "find-cmd" "find-cmd.el" (21781 3655 911151 -;;;;;; 424000)) +;;;### (autoloads nil "find-cmd" "find-cmd.el" (21788 61018 467424 +;;;;;; 811000)) ;;; Generated autoloads from find-cmd.el (push (purecopy '(find-cmd 0 6)) package--builtin-versions) @@ -10685,8 +10689,8 @@ Visit the file you click on in another window. ;;;*** -;;;### (autoloads nil "find-func" "emacs-lisp/find-func.el" (21781 -;;;;;; 3655 894151 357000)) +;;;### (autoloads nil "find-func" "emacs-lisp/find-func.el" (21788 +;;;;;; 61018 452424 803000)) ;;; Generated autoloads from emacs-lisp/find-func.el (autoload 'find-library "find-func" "\ @@ -10956,8 +10960,8 @@ Turn flymake mode off. ;;;*** -;;;### (autoloads nil "flyspell" "textmodes/flyspell.el" (21781 3670 -;;;;;; 716209 743000)) +;;;### (autoloads nil "flyspell" "textmodes/flyspell.el" (21788 61018 +;;;;;; 625424 901000)) ;;; Generated autoloads from textmodes/flyspell.el (autoload 'flyspell-prog-mode "flyspell" "\ @@ -11285,8 +11289,8 @@ and choose the directory as the fortune-file. ;;;*** -;;;### (autoloads nil "frameset" "frameset.el" (21781 3655 912151 -;;;;;; 428000)) +;;;### (autoloads nil "frameset" "frameset.el" (21788 61018 468424 +;;;;;; 812000)) ;;; Generated autoloads from frameset.el (defvar frameset-session-filter-alist '((name . :never) (left . frameset-filter-iconified) (minibuffer . frameset-filter-minibuffer) (top . frameset-filter-iconified)) "\ @@ -11466,15 +11470,15 @@ Interactively, reads the register using `register-read-with-preview'. ;;;*** -;;;### (autoloads nil "gamegrid" "play/gamegrid.el" (21781 3656 15151 -;;;;;; 833000)) +;;;### (autoloads nil "gamegrid" "play/gamegrid.el" (21788 61018 +;;;;;; 571424 870000)) ;;; Generated autoloads from play/gamegrid.el (push (purecopy '(gamegrid 1 2)) package--builtin-versions) ;;;*** -;;;### (autoloads nil "gdb-mi" "progmodes/gdb-mi.el" (21781 3656 -;;;;;; 35151 912000)) +;;;### (autoloads nil "gdb-mi" "progmodes/gdb-mi.el" (21788 61018 +;;;;;; 591424 882000)) ;;; Generated autoloads from progmodes/gdb-mi.el (defvar gdb-enable-debug nil "\ @@ -11647,8 +11651,8 @@ add virtual separators (like underscores) at places they belong to. ;;;*** -;;;### (autoloads nil "gmm-utils" "gnus/gmm-utils.el" (21781 3655 -;;;;;; 921151 463000)) +;;;### (autoloads nil "gmm-utils" "gnus/gmm-utils.el" (21788 61018 +;;;;;; 479424 818000)) ;;; Generated autoloads from gnus/gmm-utils.el (autoload 'gmm-regexp-concat "gmm-utils" "\ @@ -11702,7 +11706,7 @@ DEFAULT-MAP specifies the default key map for ICON-LIST. ;;;*** -;;;### (autoloads nil "gnus" "gnus/gnus.el" (21781 3655 932151 506000)) +;;;### (autoloads nil "gnus" "gnus/gnus.el" (21788 61018 490424 824000)) ;;; Generated autoloads from gnus/gnus.el (push (purecopy '(gnus 5 13)) package--builtin-versions) (when (fboundp 'custom-autoload) @@ -11843,8 +11847,8 @@ CLEAN is obsolete and ignored. ;;;*** -;;;### (autoloads nil "gnus-art" "gnus/gnus-art.el" (21781 3655 922151 -;;;;;; 467000)) +;;;### (autoloads nil "gnus-art" "gnus/gnus-art.el" (21788 61018 +;;;;;; 481424 819000)) ;;; Generated autoloads from gnus/gnus-art.el (autoload 'gnus-article-prepare-display "gnus-art" "\ @@ -11854,8 +11858,8 @@ Make the current buffer look like a nice article. ;;;*** -;;;### (autoloads nil "gnus-bookmark" "gnus/gnus-bookmark.el" (21781 -;;;;;; 3655 924151 475000)) +;;;### (autoloads nil "gnus-bookmark" "gnus/gnus-bookmark.el" (21788 +;;;;;; 61018 481424 819000)) ;;; Generated autoloads from gnus/gnus-bookmark.el (autoload 'gnus-bookmark-set "gnus-bookmark" "\ @@ -11878,8 +11882,8 @@ deletion, or > if it is flagged for displaying. ;;;*** -;;;### (autoloads nil "gnus-cache" "gnus/gnus-cache.el" (21781 3655 -;;;;;; 924151 475000)) +;;;### (autoloads nil "gnus-cache" "gnus/gnus-cache.el" (21788 61018 +;;;;;; 481424 819000)) ;;; Generated autoloads from gnus/gnus-cache.el (autoload 'gnus-jog-cache "gnus-cache" "\ @@ -11920,8 +11924,8 @@ supported. ;;;*** -;;;### (autoloads nil "gnus-delay" "gnus/gnus-delay.el" (21781 3655 -;;;;;; 925151 479000)) +;;;### (autoloads nil "gnus-delay" "gnus/gnus-delay.el" (21788 61018 +;;;;;; 481424 819000)) ;;; Generated autoloads from gnus/gnus-delay.el (autoload 'gnus-delay-article "gnus-delay" "\ @@ -11994,8 +11998,8 @@ Reminder user if there are unsent drafts. ;;;*** -;;;### (autoloads nil "gnus-fun" "gnus/gnus-fun.el" (21781 3655 925151 -;;;;;; 479000)) +;;;### (autoloads nil "gnus-fun" "gnus/gnus-fun.el" (21788 61018 +;;;;;; 482424 820000)) ;;; Generated autoloads from gnus/gnus-fun.el (autoload 'gnus-random-x-face "gnus-fun" "\ @@ -12057,8 +12061,8 @@ If gravatars are already displayed, remove them. ;;;*** -;;;### (autoloads nil "gnus-group" "gnus/gnus-group.el" (21781 3655 -;;;;;; 926151 483000)) +;;;### (autoloads nil "gnus-group" "gnus/gnus-group.el" (21788 61018 +;;;;;; 482424 820000)) ;;; Generated autoloads from gnus/gnus-group.el (autoload 'gnus-fetch-group "gnus-group" "\ @@ -12075,8 +12079,8 @@ Pop up a frame and enter GROUP. ;;;*** -;;;### (autoloads nil "gnus-html" "gnus/gnus-html.el" (21781 3655 -;;;;;; 926151 483000)) +;;;### (autoloads nil "gnus-html" "gnus/gnus-html.el" (21788 61018 +;;;;;; 482424 820000)) ;;; Generated autoloads from gnus/gnus-html.el (autoload 'gnus-article-html "gnus-html" "\ @@ -12129,8 +12133,8 @@ Minor mode for providing mailing-list commands. ;;;*** -;;;### (autoloads nil "gnus-mlspl" "gnus/gnus-mlspl.el" (21781 3655 -;;;;;; 927151 487000)) +;;;### (autoloads nil "gnus-mlspl" "gnus/gnus-mlspl.el" (21788 61018 +;;;;;; 484424 821000)) ;;; Generated autoloads from gnus/gnus-mlspl.el (autoload 'gnus-group-split-setup "gnus-mlspl" "\ @@ -12230,8 +12234,8 @@ Calling (gnus-group-split-fancy nil nil \"mail.others\") returns: ;;;*** -;;;### (autoloads nil "gnus-msg" "gnus/gnus-msg.el" (21781 3655 928151 -;;;;;; 491000)) +;;;### (autoloads nil "gnus-msg" "gnus/gnus-msg.el" (21788 61018 +;;;;;; 485424 822000)) ;;; Generated autoloads from gnus/gnus-msg.el (autoload 'gnus-msg-mail "gnus-msg" "\ @@ -12258,7 +12262,7 @@ Like `message-reply'. ;;;*** ;;;### (autoloads nil "gnus-notifications" "gnus/gnus-notifications.el" -;;;;;; (21781 3655 928151 491000)) +;;;;;; (21788 61018 485424 822000)) ;;; Generated autoloads from gnus/gnus-notifications.el (autoload 'gnus-notifications "gnus-notifications" "\ @@ -12274,8 +12278,8 @@ This is typically a function to add in ;;;*** -;;;### (autoloads nil "gnus-picon" "gnus/gnus-picon.el" (21781 3655 -;;;;;; 928151 491000)) +;;;### (autoloads nil "gnus-picon" "gnus/gnus-picon.el" (21788 61018 +;;;;;; 485424 822000)) ;;; Generated autoloads from gnus/gnus-picon.el (autoload 'gnus-treat-from-picon "gnus-picon" "\ @@ -12366,8 +12370,8 @@ Add NUM into sorted LIST by side effect. ;;;*** -;;;### (autoloads nil "gnus-registry" "gnus/gnus-registry.el" (21781 -;;;;;; 3655 928151 491000)) +;;;### (autoloads nil "gnus-registry" "gnus/gnus-registry.el" (21788 +;;;;;; 61018 485424 822000)) ;;; Generated autoloads from gnus/gnus-registry.el (autoload 'gnus-registry-initialize "gnus-registry" "\ @@ -12410,8 +12414,8 @@ See the documentation for these variables and functions for details. ;;;*** -;;;### (autoloads nil "gnus-spec" "gnus/gnus-spec.el" (21781 3655 -;;;;;; 928151 491000)) +;;;### (autoloads nil "gnus-spec" "gnus/gnus-spec.el" (21788 61018 +;;;;;; 486424 822000)) ;;; Generated autoloads from gnus/gnus-spec.el (autoload 'gnus-update-format "gnus-spec" "\ @@ -12421,8 +12425,8 @@ Update the format specification near point. ;;;*** -;;;### (autoloads nil "gnus-start" "gnus/gnus-start.el" (21781 3655 -;;;;;; 929151 494000)) +;;;### (autoloads nil "gnus-start" "gnus/gnus-start.el" (21788 61018 +;;;;;; 486424 822000)) ;;; Generated autoloads from gnus/gnus-start.el (autoload 'gnus-declare-backend "gnus-start" "\ @@ -12432,8 +12436,8 @@ Declare back end NAME with ABILITIES as a Gnus back end. ;;;*** -;;;### (autoloads nil "gnus-sum" "gnus/gnus-sum.el" (21781 3655 931151 -;;;;;; 502000)) +;;;### (autoloads nil "gnus-sum" "gnus/gnus-sum.el" (21788 61018 +;;;;;; 489424 824000)) ;;; Generated autoloads from gnus/gnus-sum.el (autoload 'gnus-summary-bookmark-jump "gnus-sum" "\ @@ -12471,8 +12475,8 @@ Add the window configuration CONF to `gnus-buffer-configuration'. ;;;*** -;;;### (autoloads nil "gnutls" "net/gnutls.el" (21781 3655 983151 -;;;;;; 707000)) +;;;### (autoloads nil "gnutls" "net/gnutls.el" (21788 61018 538424 +;;;;;; 852000)) ;;; Generated autoloads from net/gnutls.el (defvar gnutls-min-prime-bits 256 "\ @@ -12557,8 +12561,8 @@ Like `goto-address-mode', but only for comments and strings. ;;;*** -;;;### (autoloads nil "gravatar" "gnus/gravatar.el" (21781 3655 932151 -;;;;;; 506000)) +;;;### (autoloads nil "gravatar" "gnus/gravatar.el" (21788 61018 +;;;;;; 490424 824000)) ;;; Generated autoloads from gnus/gravatar.el (autoload 'gravatar-retrieve "gravatar" "\ @@ -12574,8 +12578,8 @@ Retrieve MAIL-ADDRESS gravatar and returns it. ;;;*** -;;;### (autoloads nil "grep" "progmodes/grep.el" (21781 3656 35151 -;;;;;; 912000)) +;;;### (autoloads nil "grep" "progmodes/grep.el" (21788 61018 591424 +;;;;;; 882000)) ;;; Generated autoloads from progmodes/grep.el (defvar grep-window-height nil "\ @@ -12752,8 +12756,8 @@ the form \"WINDOW-ID PIXMAP-ID\". Value is non-nil if successful. ;;;*** -;;;### (autoloads nil "gud" "progmodes/gud.el" (21781 3656 36151 -;;;;;; 916000)) +;;;### (autoloads nil "gud" "progmodes/gud.el" (21788 61018 592424 +;;;;;; 882000)) ;;; Generated autoloads from progmodes/gud.el (autoload 'gud-gdb "gud" "\ @@ -12841,8 +12845,8 @@ it if ARG is omitted or nil. ;;;*** -;;;### (autoloads nil "gv" "emacs-lisp/gv.el" (21781 3655 894151 -;;;;;; 357000)) +;;;### (autoloads nil "gv" "emacs-lisp/gv.el" (21788 61018 452424 +;;;;;; 803000)) ;;; Generated autoloads from emacs-lisp/gv.el (autoload 'gv-get "gv" "\ @@ -12989,8 +12993,8 @@ to be updated. ;;;*** -;;;### (autoloads nil "hashcash" "mail/hashcash.el" (21781 3655 972151 -;;;;;; 664000)) +;;;### (autoloads nil "hashcash" "mail/hashcash.el" (21788 61018 +;;;;;; 524424 844000)) ;;; Generated autoloads from mail/hashcash.el (autoload 'hashcash-insert-payment "hashcash" "\ @@ -13160,8 +13164,8 @@ different regions. With numeric argument ARG, behaves like ;;;*** -;;;### (autoloads nil "help-fns" "help-fns.el" (21781 3655 948151 -;;;;;; 569000)) +;;;### (autoloads nil "help-fns" "help-fns.el" (21788 61018 503424 +;;;;;; 832000)) ;;; Generated autoloads from help-fns.el (autoload 'describe-function "help-fns" "\ @@ -13255,8 +13259,8 @@ gives the window that lists the options.") ;;;*** -;;;### (autoloads nil "help-mode" "help-mode.el" (21781 3655 950151 -;;;;;; 577000)) +;;;### (autoloads nil "help-mode" "help-mode.el" (21788 61018 505424 +;;;;;; 833000)) ;;; Generated autoloads from help-mode.el (autoload 'help-mode "help-mode" "\ @@ -13371,7 +13375,7 @@ Provide help for current mode. ;;;*** -;;;### (autoloads nil "hexl" "hexl.el" (21781 3655 951151 581000)) +;;;### (autoloads nil "hexl" "hexl.el" (21788 61018 505424 833000)) ;;; Generated autoloads from hexl.el (autoload 'hexl-mode "hexl" "\ @@ -13465,7 +13469,8 @@ This discards the buffer's undo information. ;;;*** -;;;### (autoloads nil "hi-lock" "hi-lock.el" (21781 3655 951151 581000)) +;;;### (autoloads nil "hi-lock" "hi-lock.el" (21788 61018 505424 +;;;;;; 833000)) ;;; Generated autoloads from hi-lock.el (autoload 'hi-lock-mode "hi-lock" "\ @@ -13632,8 +13637,8 @@ be found in variable `hi-lock-interactive-patterns'. ;;;*** -;;;### (autoloads nil "hideif" "progmodes/hideif.el" (21781 3656 -;;;;;; 36151 916000)) +;;;### (autoloads nil "hideif" "progmodes/hideif.el" (21788 61018 +;;;;;; 592424 882000)) ;;; Generated autoloads from progmodes/hideif.el (autoload 'hide-ifdef-mode "hideif" "\ @@ -13676,8 +13681,8 @@ Several variables affect how the hiding is done: ;;;*** -;;;### (autoloads nil "hideshow" "progmodes/hideshow.el" (21781 3656 -;;;;;; 36151 916000)) +;;;### (autoloads nil "hideshow" "progmodes/hideshow.el" (21788 61018 +;;;;;; 592424 882000)) ;;; Generated autoloads from progmodes/hideshow.el (defvar hs-special-modes-alist (mapcar 'purecopy '((c-mode "{" "}" "/[*/]" nil nil) (c++-mode "{" "}" "/[*/]" nil nil) (bibtex-mode ("@\\S(*\\(\\s(\\)" 1)) (java-mode "{" "}" "/[*/]" nil nil) (js-mode "{" "}" "/[*/]" nil))) "\ @@ -13871,8 +13876,8 @@ See `highlight-changes-mode' for more information on Highlight-Changes mode. ;;;*** -;;;### (autoloads nil "hippie-exp" "hippie-exp.el" (21781 3655 951151 -;;;;;; 581000)) +;;;### (autoloads nil "hippie-exp" "hippie-exp.el" (21788 61018 505424 +;;;;;; 833000)) ;;; Generated autoloads from hippie-exp.el (push (purecopy '(hippie-exp 1 6)) package--builtin-versions) @@ -13954,8 +13959,8 @@ Global-Hl-Line mode uses the functions `global-hl-line-unhighlight' and ;;;*** -;;;### (autoloads nil "holidays" "calendar/holidays.el" (21781 3655 -;;;;;; 853151 195000)) +;;;### (autoloads nil "holidays" "calendar/holidays.el" (21788 61018 +;;;;;; 418424 784000)) ;;; Generated autoloads from calendar/holidays.el (define-obsolete-variable-alias 'general-holidays 'holiday-general-holidays "23.1") @@ -14114,8 +14119,8 @@ Convert HTML to plain text in the current buffer. ;;;*** -;;;### (autoloads nil "htmlfontify" "htmlfontify.el" (21781 3655 -;;;;;; 952151 585000)) +;;;### (autoloads nil "htmlfontify" "htmlfontify.el" (21788 61018 +;;;;;; 506424 834000)) ;;; Generated autoloads from htmlfontify.el (push (purecopy '(htmlfontify 0 21)) package--builtin-versions) @@ -14148,8 +14153,8 @@ You may also want to set `hfy-page-header' and `hfy-page-footer'. ;;;*** -;;;### (autoloads nil "ibuf-macs" "ibuf-macs.el" (21781 3655 953151 -;;;;;; 589000)) +;;;### (autoloads nil "ibuf-macs" "ibuf-macs.el" (21788 61018 506424 +;;;;;; 834000)) ;;; Generated autoloads from ibuf-macs.el (autoload 'define-ibuffer-column "ibuf-macs" "\ @@ -14237,7 +14242,8 @@ bound to the current value of the filter. ;;;*** -;;;### (autoloads nil "ibuffer" "ibuffer.el" (21781 3655 953151 589000)) +;;;### (autoloads nil "ibuffer" "ibuffer.el" (21788 61018 507424 +;;;;;; 834000)) ;;; Generated autoloads from ibuffer.el (autoload 'ibuffer-list-buffers "ibuffer" "\ @@ -14276,8 +14282,8 @@ FORMATS is the value to use for `ibuffer-formats'. ;;;*** -;;;### (autoloads nil "icalendar" "calendar/icalendar.el" (21781 -;;;;;; 3655 853151 195000)) +;;;### (autoloads nil "icalendar" "calendar/icalendar.el" (21788 +;;;;;; 61018 418424 784000)) ;;; Generated autoloads from calendar/icalendar.el (push (purecopy '(icalendar 0 19)) package--builtin-versions) @@ -14330,8 +14336,8 @@ buffer `*icalendar-errors*'. ;;;*** -;;;### (autoloads nil "icomplete" "icomplete.el" (21781 3655 953151 -;;;;;; 589000)) +;;;### (autoloads nil "icomplete" "icomplete.el" (21788 61018 507424 +;;;;;; 834000)) ;;; Generated autoloads from icomplete.el (defvar icomplete-mode nil "\ @@ -14407,8 +14413,8 @@ with no args, if that value is non-nil. ;;;*** -;;;### (autoloads nil "idlw-shell" "progmodes/idlw-shell.el" (21781 -;;;;;; 3656 37151 920000)) +;;;### (autoloads nil "idlw-shell" "progmodes/idlw-shell.el" (21788 +;;;;;; 61018 593424 883000)) ;;; Generated autoloads from progmodes/idlw-shell.el (autoload 'idlwave-shell "idlw-shell" "\ @@ -14433,8 +14439,8 @@ See also the variable `idlwave-shell-prompt-pattern'. ;;;*** -;;;### (autoloads nil "idlwave" "progmodes/idlwave.el" (21781 3656 -;;;;;; 39151 928000)) +;;;### (autoloads nil "idlwave" "progmodes/idlwave.el" (21788 61018 +;;;;;; 595424 884000)) ;;; Generated autoloads from progmodes/idlwave.el (push (purecopy '(idlwave 6 1 22)) package--builtin-versions) @@ -14563,7 +14569,7 @@ The main features of this mode are ;;;*** -;;;### (autoloads nil "ido" "ido.el" (21781 3655 954151 593000)) +;;;### (autoloads nil "ido" "ido.el" (21788 61018 509424 835000)) ;;; Generated autoloads from ido.el (defvar ido-mode nil "\ @@ -14825,7 +14831,7 @@ DEF, if non-nil, is the default value. ;;;*** -;;;### (autoloads nil "ielm" "ielm.el" (21781 3655 954151 593000)) +;;;### (autoloads nil "ielm" "ielm.el" (21788 61018 509424 835000)) ;;; Generated autoloads from ielm.el (autoload 'ielm "ielm" "\ @@ -15247,8 +15253,8 @@ An image file is one whose name has an extension in ;;;*** -;;;### (autoloads nil "image-mode" "image-mode.el" (21781 3655 955151 -;;;;;; 597000)) +;;;### (autoloads nil "image-mode" "image-mode.el" (21788 61018 509424 +;;;;;; 835000)) ;;; Generated autoloads from image-mode.el (autoload 'image-mode "image-mode" "\ @@ -15295,7 +15301,7 @@ on these modes. ;;;*** -;;;### (autoloads nil "imenu" "imenu.el" (21781 3655 955151 597000)) +;;;### (autoloads nil "imenu" "imenu.el" (21788 61018 510424 836000)) ;;; Generated autoloads from imenu.el (defvar imenu-sort-function nil "\ @@ -15464,8 +15470,8 @@ Convert old Emacs Devanagari characters to UCS. ;;;*** -;;;### (autoloads nil "inf-lisp" "progmodes/inf-lisp.el" (21781 3656 -;;;;;; 39151 928000)) +;;;### (autoloads nil "inf-lisp" "progmodes/inf-lisp.el" (21788 61018 +;;;;;; 595424 884000)) ;;; Generated autoloads from progmodes/inf-lisp.el (autoload 'inferior-lisp "inf-lisp" "\ @@ -15483,7 +15489,7 @@ of `inferior-lisp-program'). Runs the hooks from ;;;*** -;;;### (autoloads nil "info" "info.el" (21781 3655 956151 601000)) +;;;### (autoloads nil "info" "info.el" (21788 61018 511424 836000)) ;;; Generated autoloads from info.el (defcustom Info-default-directory-list (let* ((config-dir (file-name-as-directory (or (and (featurep 'ns) (let ((dir (expand-file-name "../info" data-directory))) (if (file-directory-p dir) dir))) configure-info-directory))) (prefixes (prune-directory-list '("/usr/local/" "/usr/" "/opt/" "/"))) (suffixes '("share/" "" "gnu/" "gnu/lib/" "gnu/lib/emacs/" "emacs/" "lib/" "lib/emacs/")) (standard-info-dirs (apply #'nconc (mapcar (lambda (pfx) (let ((dirs (mapcar (lambda (sfx) (concat pfx sfx "info/")) suffixes))) (prune-directory-list dirs))) prefixes))) (dirs (if (member config-dir standard-info-dirs) (nconc standard-info-dirs (list config-dir)) (cons config-dir standard-info-dirs)))) (if (not (eq system-type 'windows-nt)) dirs (let* ((instdir (file-name-directory invocation-directory)) (dir1 (expand-file-name "../info/" instdir)) (dir2 (expand-file-name "../../../info/" instdir))) (cond ((file-exists-p dir1) (append dirs (list dir1))) ((file-exists-p dir2) (append dirs (list dir2))) (t dirs))))) "\ @@ -15693,8 +15699,8 @@ Otherwise, visit the manual in a new Info buffer. ;;;*** -;;;### (autoloads nil "info-look" "info-look.el" (21781 3655 955151 -;;;;;; 597000)) +;;;### (autoloads nil "info-look" "info-look.el" (21788 61018 510424 +;;;;;; 836000)) ;;; Generated autoloads from info-look.el (autoload 'info-lookup-reset "info-look" "\ @@ -15905,8 +15911,8 @@ Toggle input method in interactive search. ;;;*** -;;;### (autoloads nil "isearchb" "isearchb.el" (21781 3655 962151 -;;;;;; 624000)) +;;;### (autoloads nil "isearchb" "isearchb.el" (21788 61018 516424 +;;;;;; 839000)) ;;; Generated autoloads from isearchb.el (push (purecopy '(isearchb 1 5)) package--builtin-versions) @@ -16019,8 +16025,8 @@ Add submenus to the File menu, to convert to and from various formats. ;;;*** -;;;### (autoloads nil "ispell" "textmodes/ispell.el" (21781 3670 -;;;;;; 717209 747000)) +;;;### (autoloads nil "ispell" "textmodes/ispell.el" (21788 61018 +;;;;;; 626424 902000)) ;;; Generated autoloads from textmodes/ispell.el (put 'ispell-check-comments 'safe-local-variable (lambda (a) (memq a '(nil t exclusive)))) @@ -16355,7 +16361,8 @@ by `jka-compr-installed'. ;;;*** -;;;### (autoloads nil "js" "progmodes/js.el" (21781 3656 39151 928000)) +;;;### (autoloads nil "js" "progmodes/js.el" (21788 61018 596424 +;;;;;; 885000)) ;;; Generated autoloads from progmodes/js.el (push (purecopy '(js 9)) package--builtin-versions) @@ -16367,7 +16374,7 @@ Major mode for editing JavaScript. ;;;*** -;;;### (autoloads nil "json" "json.el" (21781 3655 963151 628000)) +;;;### (autoloads nil "json" "json.el" (21788 61018 516424 839000)) ;;; Generated autoloads from json.el (push (purecopy '(json 1 4)) package--builtin-versions) @@ -16601,8 +16608,8 @@ The kind of Korean keyboard for Korean input method. ;;;*** -;;;### (autoloads nil "landmark" "play/landmark.el" (21781 3656 15151 -;;;;;; 833000)) +;;;### (autoloads nil "landmark" "play/landmark.el" (21788 61018 +;;;;;; 571424 870000)) ;;; Generated autoloads from play/landmark.el (defalias 'landmark-repeat 'landmark-test-run) @@ -16768,7 +16775,7 @@ generations (this defaults to 1). ;;;*** -;;;### (autoloads nil "linum" "linum.el" (21781 3655 969151 652000)) +;;;### (autoloads nil "linum" "linum.el" (21788 61018 524424 844000)) ;;; Generated autoloads from linum.el (push (purecopy '(linum 0 9 24)) package--builtin-versions) @@ -17027,7 +17034,8 @@ for further customization of the printer command. ;;;*** -;;;### (autoloads nil "ls-lisp" "ls-lisp.el" (21781 3655 972151 664000)) +;;;### (autoloads nil "ls-lisp" "ls-lisp.el" (21788 61018 524424 +;;;;;; 844000)) ;;; Generated autoloads from ls-lisp.el (defvar ls-lisp-support-shell-wildcards t "\ @@ -17038,8 +17046,8 @@ Otherwise they are treated as Emacs regexps (for backward compatibility).") ;;;*** -;;;### (autoloads nil "lunar" "calendar/lunar.el" (21781 3655 853151 -;;;;;; 195000)) +;;;### (autoloads nil "lunar" "calendar/lunar.el" (21788 61018 418424 +;;;;;; 784000)) ;;; Generated autoloads from calendar/lunar.el (autoload 'lunar-phases "lunar" "\ @@ -17053,8 +17061,8 @@ This function is suitable for execution in an init file. ;;;*** -;;;### (autoloads nil "m4-mode" "progmodes/m4-mode.el" (21781 3656 -;;;;;; 40151 932000)) +;;;### (autoloads nil "m4-mode" "progmodes/m4-mode.el" (21788 61018 +;;;;;; 596424 885000)) ;;; Generated autoloads from progmodes/m4-mode.el (autoload 'm4-mode "m4-mode" "\ @@ -17536,7 +17544,7 @@ Previous contents of that buffer are killed first. ;;;*** -;;;### (autoloads nil "man" "man.el" (21781 3655 976151 680000)) +;;;### (autoloads nil "man" "man.el" (21788 61018 529424 847000)) ;;; Generated autoloads from man.el (defalias 'manual-entry 'man) @@ -17647,8 +17655,8 @@ recursion depth in the minibuffer prompt. This is only useful if ;;;*** -;;;### (autoloads nil "message" "gnus/message.el" (21781 3655 935151 -;;;;;; 518000)) +;;;### (autoloads nil "message" "gnus/message.el" (21788 61018 493424 +;;;;;; 826000)) ;;; Generated autoloads from gnus/message.el (define-mail-user-agent 'message-user-agent 'message-mail 'message-send-and-exit 'message-kill-buffer 'message-send-hook) @@ -17965,7 +17973,7 @@ delete the draft message. ;;;*** -;;;### (autoloads nil "mh-e" "mh-e/mh-e.el" (21781 3655 978151 688000)) +;;;### (autoloads nil "mh-e" "mh-e/mh-e.el" (21788 61018 532424 848000)) ;;; Generated autoloads from mh-e/mh-e.el (push (purecopy '(mh-e 8 6)) package--builtin-versions) @@ -18149,8 +18157,8 @@ The return value is always nil. ;;;*** -;;;### (autoloads nil "misearch" "misearch.el" (21781 3655 979151 -;;;;;; 691000)) +;;;### (autoloads nil "misearch" "misearch.el" (21788 61018 533424 +;;;;;; 849000)) ;;; Generated autoloads from misearch.el (add-hook 'isearch-mode-hook 'multi-isearch-setup) @@ -18254,8 +18262,8 @@ Return a default encoding for FILE. ;;;*** -;;;### (autoloads nil "mm-extern" "gnus/mm-extern.el" (21781 3655 -;;;;;; 936151 522000)) +;;;### (autoloads nil "mm-extern" "gnus/mm-extern.el" (21788 61018 +;;;;;; 494424 827000)) ;;; Generated autoloads from gnus/mm-extern.el (autoload 'mm-extern-cache-contents "mm-extern" "\ @@ -18287,8 +18295,8 @@ If NO-DISPLAY is nil, display it. Otherwise, do nothing after replacing. ;;;*** -;;;### (autoloads nil "mm-url" "gnus/mm-url.el" (21781 3655 936151 -;;;;;; 522000)) +;;;### (autoloads nil "mm-url" "gnus/mm-url.el" (21788 61018 494424 +;;;;;; 827000)) ;;; Generated autoloads from gnus/mm-url.el (autoload 'mm-url-insert-file-contents "mm-url" "\ @@ -18304,8 +18312,8 @@ Insert file contents of URL using `mm-url-program'. ;;;*** -;;;### (autoloads nil "mm-uu" "gnus/mm-uu.el" (21781 3655 936151 -;;;;;; 522000)) +;;;### (autoloads nil "mm-uu" "gnus/mm-uu.el" (21788 61018 495424 +;;;;;; 827000)) ;;; Generated autoloads from gnus/mm-uu.el (autoload 'mm-uu-dissect "mm-uu" "\ @@ -18324,7 +18332,7 @@ Assume text has been decoded if DECODED is non-nil. ;;;*** -;;;### (autoloads nil "mml" "gnus/mml.el" (21781 3655 937151 526000)) +;;;### (autoloads nil "mml" "gnus/mml.el" (21788 61018 495424 827000)) ;;; Generated autoloads from gnus/mml.el (autoload 'mml-to-mime "mml" "\ @@ -18349,8 +18357,8 @@ body) or \"attachment\" (separate from the body). ;;;*** -;;;### (autoloads nil "mml1991" "gnus/mml1991.el" (21781 3655 937151 -;;;;;; 526000)) +;;;### (autoloads nil "mml1991" "gnus/mml1991.el" (21788 61018 496424 +;;;;;; 828000)) ;;; Generated autoloads from gnus/mml1991.el (autoload 'mml1991-encrypt "mml1991" "\ @@ -18365,8 +18373,8 @@ body) or \"attachment\" (separate from the body). ;;;*** -;;;### (autoloads nil "mml2015" "gnus/mml2015.el" (21781 3655 937151 -;;;;;; 526000)) +;;;### (autoloads nil "mml2015" "gnus/mml2015.el" (21788 61018 496424 +;;;;;; 828000)) ;;; Generated autoloads from gnus/mml2015.el (autoload 'mml2015-decrypt "mml2015" "\ @@ -18448,7 +18456,8 @@ followed by the first character of the construct. ;;;*** -;;;### (autoloads nil "morse" "play/morse.el" (21781 3656 15151 833000)) +;;;### (autoloads nil "morse" "play/morse.el" (21788 61018 571424 +;;;;;; 870000)) ;;; Generated autoloads from play/morse.el (autoload 'morse-region "morse" "\ @@ -18521,7 +18530,7 @@ To test this function, evaluate: ;;;*** -;;;### (autoloads nil "mpc" "mpc.el" (21781 3655 980151 695000)) +;;;### (autoloads nil "mpc" "mpc.el" (21788 61018 534424 849000)) ;;; Generated autoloads from mpc.el (autoload 'mpc "mpc" "\ @@ -18541,7 +18550,7 @@ Multiplication puzzle with GNU Emacs. ;;;*** -;;;### (autoloads nil "msb" "msb.el" (21781 3655 980151 695000)) +;;;### (autoloads nil "msb" "msb.el" (21788 61018 534424 849000)) ;;; Generated autoloads from msb.el (defvar msb-mode nil "\ @@ -18566,8 +18575,8 @@ different buffer menu using the function `msb'. ;;;*** -;;;### (autoloads nil "mule-diag" "international/mule-diag.el" (21781 -;;;;;; 3655 959151 613000)) +;;;### (autoloads nil "mule-diag" "international/mule-diag.el" (21788 +;;;;;; 61018 513424 837000)) ;;; Generated autoloads from international/mule-diag.el (autoload 'list-character-sets "mule-diag" "\ @@ -18699,8 +18708,8 @@ The default is 20. If LIMIT is negative, do not limit the listing. ;;;*** -;;;### (autoloads nil "mule-util" "international/mule-util.el" (21781 -;;;;;; 3655 959151 613000)) +;;;### (autoloads nil "mule-util" "international/mule-util.el" (21788 +;;;;;; 61018 513424 837000)) ;;; Generated autoloads from international/mule-util.el (defsubst string-to-list (string) "\ @@ -18939,8 +18948,8 @@ listed in the PORTS list. ;;;*** -;;;### (autoloads nil "network-stream" "net/network-stream.el" (21781 -;;;;;; 3670 701209 684000)) +;;;### (autoloads nil "network-stream" "net/network-stream.el" (21788 +;;;;;; 61018 539424 852000)) ;;; Generated autoloads from net/network-stream.el (autoload 'open-network-stream "network-stream" "\ @@ -19033,8 +19042,8 @@ a greeting from the server. ;;;*** -;;;### (autoloads nil "newst-backend" "net/newst-backend.el" (21781 -;;;;;; 3655 983151 707000)) +;;;### (autoloads nil "newst-backend" "net/newst-backend.el" (21788 +;;;;;; 61018 540424 853000)) ;;; Generated autoloads from net/newst-backend.el (autoload 'newsticker-running-p "newst-backend" "\ @@ -19056,7 +19065,7 @@ Run `newsticker-start-hook' if newsticker was not running already. ;;;*** ;;;### (autoloads nil "newst-plainview" "net/newst-plainview.el" -;;;;;; (21781 3655 984151 711000)) +;;;;;; (21788 61018 540424 853000)) ;;; Generated autoloads from net/newst-plainview.el (autoload 'newsticker-plainview "newst-plainview" "\ @@ -19066,8 +19075,8 @@ Start newsticker plainview. ;;;*** -;;;### (autoloads nil "newst-reader" "net/newst-reader.el" (21781 -;;;;;; 3655 984151 711000)) +;;;### (autoloads nil "newst-reader" "net/newst-reader.el" (21788 +;;;;;; 61018 541424 853000)) ;;; Generated autoloads from net/newst-reader.el (autoload 'newsticker-show-news "newst-reader" "\ @@ -19077,8 +19086,8 @@ Start reading news. You may want to bind this to a key. ;;;*** -;;;### (autoloads nil "newst-ticker" "net/newst-ticker.el" (21781 -;;;;;; 3655 984151 711000)) +;;;### (autoloads nil "newst-ticker" "net/newst-ticker.el" (21788 +;;;;;; 61018 541424 853000)) ;;; Generated autoloads from net/newst-ticker.el (autoload 'newsticker-ticker-running-p "newst-ticker" "\ @@ -19098,8 +19107,8 @@ running already. ;;;*** -;;;### (autoloads nil "newst-treeview" "net/newst-treeview.el" (21781 -;;;;;; 3655 984151 711000)) +;;;### (autoloads nil "newst-treeview" "net/newst-treeview.el" (21788 +;;;;;; 61018 541424 853000)) ;;; Generated autoloads from net/newst-treeview.el (autoload 'newsticker-treeview "newst-treeview" "\ @@ -19109,8 +19118,8 @@ Start newsticker treeview. ;;;*** -;;;### (autoloads nil "newsticker" "net/newsticker.el" (21781 3655 -;;;;;; 984151 711000)) +;;;### (autoloads nil "newsticker" "net/newsticker.el" (21788 61018 +;;;;;; 541424 853000)) ;;; Generated autoloads from net/newsticker.el (push (purecopy '(newsticker 1 99)) package--builtin-versions) @@ -19142,8 +19151,8 @@ symbol in the alist. ;;;*** -;;;### (autoloads nil "nnfolder" "gnus/nnfolder.el" (21781 3655 939151 -;;;;;; 534000)) +;;;### (autoloads nil "nnfolder" "gnus/nnfolder.el" (21788 61018 +;;;;;; 496424 828000)) ;;; Generated autoloads from gnus/nnfolder.el (autoload 'nnfolder-generate-active-file "nnfolder" "\ @@ -19211,7 +19220,7 @@ closing requests for requests that are used in matched pairs. ;;;*** -;;;### (autoloads nil "ntlm" "net/ntlm.el" (21781 3655 984151 711000)) +;;;### (autoloads nil "ntlm" "net/ntlm.el" (21788 61018 542424 854000)) ;;; Generated autoloads from net/ntlm.el (push (purecopy '(ntlm 1 0)) package--builtin-versions) @@ -19230,8 +19239,8 @@ Return nil if the face cannot display a glyph for N. ;;;*** -;;;### (autoloads nil "nxml-mode" "nxml/nxml-mode.el" (21781 3655 -;;;;;; 992151 743000)) +;;;### (autoloads nil "nxml-mode" "nxml/nxml-mode.el" (21788 61018 +;;;;;; 548424 857000)) ;;; Generated autoloads from nxml/nxml-mode.el (autoload 'nxml-mode "nxml-mode" "\ @@ -19304,8 +19313,8 @@ the variable `nxml-enabled-unicode-blocks'. ;;;*** -;;;### (autoloads nil "octave" "progmodes/octave.el" (21781 3656 -;;;;;; 40151 932000)) +;;;### (autoloads nil "octave" "progmodes/octave.el" (21788 61018 +;;;;;; 596424 885000)) ;;; Generated autoloads from progmodes/octave.el (autoload 'octave-mode "octave" "\ @@ -19342,8 +19351,8 @@ startup file, `~/.emacs-octave'. ;;;*** -;;;### (autoloads nil "opascal" "progmodes/opascal.el" (21781 3656 -;;;;;; 40151 932000)) +;;;### (autoloads nil "opascal" "progmodes/opascal.el" (21788 61018 +;;;;;; 597424 885000)) ;;; Generated autoloads from progmodes/opascal.el (define-obsolete-function-alias 'delphi-mode 'opascal-mode "24.4") @@ -19378,7 +19387,7 @@ Coloring: ;;;*** -;;;### (autoloads nil "org" "org/org.el" (21781 3656 10151 814000)) +;;;### (autoloads nil "org" "org/org.el" (21788 61018 567424 868000)) ;;; Generated autoloads from org/org.el (autoload 'org-babel-do-load-languages "org" "\ @@ -19980,8 +19989,8 @@ Turn on or update column view in the agenda. ;;;*** -;;;### (autoloads nil "org-compat" "org/org-compat.el" (21781 3656 -;;;;;; 5151 794000)) +;;;### (autoloads nil "org-compat" "org/org-compat.el" (21788 61018 +;;;;;; 560424 864000)) ;;; Generated autoloads from org/org-compat.el (autoload 'org-check-version "org-compat" "\ @@ -20020,7 +20029,8 @@ The Git version of org-mode. ;;;*** -;;;### (autoloads nil "outline" "outline.el" (21781 3656 12151 821000)) +;;;### (autoloads nil "outline" "outline.el" (21788 61018 570424 +;;;;;; 870000)) ;;; Generated autoloads from outline.el (put 'outline-regexp 'safe-local-variable 'stringp) (put 'outline-heading-end-regexp 'safe-local-variable 'stringp) @@ -20081,8 +20091,8 @@ See the command `outline-mode' for more information on this mode. ;;;*** -;;;### (autoloads nil "package" "emacs-lisp/package.el" (21781 3655 -;;;;;; 897151 368000)) +;;;### (autoloads nil "package" "emacs-lisp/package.el" (21788 61018 +;;;;;; 453424 803000)) ;;; Generated autoloads from emacs-lisp/package.el (push (purecopy '(package 1 0 1)) package--builtin-versions) @@ -20154,7 +20164,7 @@ The list is displayed in a buffer named `*Packages*'. ;;;*** -;;;### (autoloads nil "paren" "paren.el" (21781 3656 13151 825000)) +;;;### (autoloads nil "paren" "paren.el" (21788 61018 570424 870000)) ;;; Generated autoloads from paren.el (defvar show-paren-mode nil "\ @@ -20180,8 +20190,8 @@ matching parenthesis is highlighted in `show-paren-style' after ;;;*** -;;;### (autoloads nil "parse-time" "calendar/parse-time.el" (21781 -;;;;;; 3655 854151 199000)) +;;;### (autoloads nil "parse-time" "calendar/parse-time.el" (21788 +;;;;;; 61018 419424 784000)) ;;; Generated autoloads from calendar/parse-time.el (put 'parse-time-rules 'risky-local-variable t) @@ -20266,8 +20276,8 @@ Check if KEY is in the cache. ;;;*** -;;;### (autoloads nil "pcase" "emacs-lisp/pcase.el" (21781 3655 897151 -;;;;;; 368000)) +;;;### (autoloads nil "pcase" "emacs-lisp/pcase.el" (21788 61018 +;;;;;; 453424 803000)) ;;; Generated autoloads from emacs-lisp/pcase.el (autoload 'pcase "pcase" "\ @@ -20339,8 +20349,8 @@ Completion rules for the `cvs' command. ;;;*** -;;;### (autoloads nil "pcmpl-gnu" "pcmpl-gnu.el" (21781 3656 13151 -;;;;;; 825000)) +;;;### (autoloads nil "pcmpl-gnu" "pcmpl-gnu.el" (21788 61018 570424 +;;;;;; 870000)) ;;; Generated autoloads from pcmpl-gnu.el (autoload 'pcomplete/gzip "pcmpl-gnu" "\ @@ -20622,8 +20632,8 @@ Global menu used by PCL-CVS.") ;;;*** -;;;### (autoloads nil "perl-mode" "progmodes/perl-mode.el" (21781 -;;;;;; 3656 40151 932000)) +;;;### (autoloads nil "perl-mode" "progmodes/perl-mode.el" (21788 +;;;;;; 61018 597424 885000)) ;;; Generated autoloads from progmodes/perl-mode.el (put 'perl-indent-level 'safe-local-variable 'integerp) (put 'perl-continued-statement-offset 'safe-local-variable 'integerp) @@ -20765,8 +20775,8 @@ they are not by default assigned to keys. ;;;*** -;;;### (autoloads nil "plstore" "gnus/plstore.el" (21710 25077 571662 -;;;;;; 944000)) +;;;### (autoloads nil "plstore" "gnus/plstore.el" (21788 61018 501424 +;;;;;; 831000)) ;;; Generated autoloads from gnus/plstore.el (autoload 'plstore-open "plstore" "\ @@ -20809,7 +20819,7 @@ pong-mode keybindings:\\ ;;;*** -;;;### (autoloads nil "pop3" "gnus/pop3.el" (21781 3655 945151 558000)) +;;;### (autoloads nil "pop3" "gnus/pop3.el" (21788 61018 501424 831000)) ;;; Generated autoloads from gnus/pop3.el (autoload 'pop3-movemail "pop3" "\ @@ -20820,8 +20830,8 @@ Use streaming commands. ;;;*** -;;;### (autoloads nil "pp" "emacs-lisp/pp.el" (21781 3655 897151 -;;;;;; 368000)) +;;;### (autoloads nil "pp" "emacs-lisp/pp.el" (21788 61018 453424 +;;;;;; 803000)) ;;; Generated autoloads from emacs-lisp/pp.el (autoload 'pp-to-string "pp" "\ @@ -20871,8 +20881,8 @@ Ignores leading comment characters. ;;;*** -;;;### (autoloads nil "printing" "printing.el" (21781 3656 16151 -;;;;;; 837000)) +;;;### (autoloads nil "printing" "printing.el" (21788 61018 572424 +;;;;;; 871000)) ;;; Generated autoloads from printing.el (push (purecopy '(printing 6 9 3)) package--builtin-versions) @@ -21460,7 +21470,7 @@ are both set to t. ;;;*** -;;;### (autoloads nil "proced" "proced.el" (21781 3656 17151 841000)) +;;;### (autoloads nil "proced" "proced.el" (21788 61018 572424 871000)) ;;; Generated autoloads from proced.el (autoload 'proced "proced" "\ @@ -21507,8 +21517,8 @@ Open profile FILENAME. ;;;*** -;;;### (autoloads nil "prolog" "progmodes/prolog.el" (21781 3656 -;;;;;; 41151 936000)) +;;;### (autoloads nil "prolog" "progmodes/prolog.el" (21788 61018 +;;;;;; 598424 886000)) ;;; Generated autoloads from progmodes/prolog.el (autoload 'prolog-mode "prolog" "\ @@ -21552,8 +21562,8 @@ The default value is '(\"/usr/local/share/emacs/fonts/bdf\").") ;;;*** -;;;### (autoloads nil "ps-mode" "progmodes/ps-mode.el" (21781 3656 -;;;;;; 41151 936000)) +;;;### (autoloads nil "ps-mode" "progmodes/ps-mode.el" (21788 61018 +;;;;;; 598424 886000)) ;;; Generated autoloads from progmodes/ps-mode.el (push (purecopy '(ps-mode 1 1 9)) package--builtin-versions) @@ -21600,8 +21610,8 @@ Typing \\\\[ps-run-goto-error] when the cursor is at the number ;;;*** -;;;### (autoloads nil "ps-print" "ps-print.el" (21781 3656 55151 -;;;;;; 991000)) +;;;### (autoloads nil "ps-print" "ps-print.el" (21788 61018 610424 +;;;;;; 893000)) ;;; Generated autoloads from ps-print.el (push (purecopy '(ps-print 7 3 5)) package--builtin-versions) @@ -21798,15 +21808,15 @@ If EXTENSION is any other symbol, it is ignored. ;;;*** -;;;### (autoloads nil "pulse" "cedet/pulse.el" (21781 3655 863151 -;;;;;; 235000)) +;;;### (autoloads nil "pulse" "cedet/pulse.el" (21788 61018 424424 +;;;;;; 787000)) ;;; Generated autoloads from cedet/pulse.el (push (purecopy '(pulse 1 0)) package--builtin-versions) ;;;*** -;;;### (autoloads nil "python" "progmodes/python.el" (21781 3670 -;;;;;; 712209 727000)) +;;;### (autoloads nil "python" "progmodes/python.el" (21788 61018 +;;;;;; 599424 886000)) ;;; Generated autoloads from progmodes/python.el (push (purecopy '(python 0 24 5)) package--builtin-versions) @@ -21859,8 +21869,8 @@ them into characters should be done separately. ;;;*** -;;;### (autoloads nil "quail" "international/quail.el" (21781 3655 -;;;;;; 962151 624000)) +;;;### (autoloads nil "quail" "international/quail.el" (21788 61018 +;;;;;; 515424 839000)) ;;; Generated autoloads from international/quail.el (autoload 'quail-title "quail" "\ @@ -22090,8 +22100,8 @@ of each directory. ;;;*** -;;;### (autoloads nil "quail/hangul" "leim/quail/hangul.el" (21781 -;;;;;; 3655 969151 652000)) +;;;### (autoloads nil "quail/hangul" "leim/quail/hangul.el" (21788 +;;;;;; 61018 523424 843000)) ;;; Generated autoloads from leim/quail/hangul.el (autoload 'hangul-input-method-activate "quail/hangul" "\ @@ -22190,7 +22200,8 @@ Display `quickurl-list' as a formatted list using `quickurl-list-mode'. ;;;*** -;;;### (autoloads nil "rcirc" "net/rcirc.el" (21781 3655 985151 715000)) +;;;### (autoloads nil "rcirc" "net/rcirc.el" (21788 61018 542424 +;;;;;; 854000)) ;;; Generated autoloads from net/rcirc.el (autoload 'rcirc "rcirc" "\ @@ -22274,7 +22285,7 @@ were operated on recently. ;;;*** -;;;### (autoloads nil "rect" "rect.el" (21781 3656 56151 995000)) +;;;### (autoloads nil "rect" "rect.el" (21788 61018 610424 893000)) ;;; Generated autoloads from rect.el (autoload 'delete-rectangle "rect" "\ @@ -22435,8 +22446,8 @@ For true \"word wrap\" behavior, use `visual-line-mode' instead. ;;;*** -;;;### (autoloads nil "reftex" "textmodes/reftex.el" (21781 3656 -;;;;;; 75152 70000)) +;;;### (autoloads nil "reftex" "textmodes/reftex.el" (21788 61018 +;;;;;; 630424 904000)) ;;; Generated autoloads from textmodes/reftex.el (autoload 'turn-on-reftex "reftex" "\ @@ -22485,8 +22496,8 @@ This enforces rescanning the buffer on next use. ;;;*** -;;;### (autoloads nil "reftex-cite" "textmodes/reftex-cite.el" (21781 -;;;;;; 3656 72152 58000)) +;;;### (autoloads nil "reftex-cite" "textmodes/reftex-cite.el" (21788 +;;;;;; 61018 626424 902000)) ;;; Generated autoloads from textmodes/reftex-cite.el (autoload 'reftex-citation "reftex-cite" "\ @@ -22516,7 +22527,7 @@ While entering the regexp, completion on knows citation keys is possible. ;;;*** ;;;### (autoloads nil "reftex-global" "textmodes/reftex-global.el" -;;;;;; (21781 3656 72152 58000)) +;;;;;; (21788 61018 626424 902000)) ;;; Generated autoloads from textmodes/reftex-global.el (autoload 'reftex-isearch-minor-mode "reftex-global" "\ @@ -22533,7 +22544,7 @@ With no argument, this command toggles ;;;*** ;;;### (autoloads nil "reftex-index" "textmodes/reftex-index.el" -;;;;;; (21781 3656 72152 58000)) +;;;;;; (21788 61018 627424 902000)) ;;; Generated autoloads from textmodes/reftex-index.el (autoload 'reftex-index-phrases-mode "reftex-index" "\ @@ -22566,7 +22577,7 @@ Here are all local bindings. ;;;*** ;;;### (autoloads nil "reftex-parse" "textmodes/reftex-parse.el" -;;;;;; (21781 3656 73152 62000)) +;;;;;; (21788 61018 627424 902000)) ;;; Generated autoloads from textmodes/reftex-parse.el (autoload 'reftex-all-document-files "reftex-parse" "\ @@ -22578,8 +22589,8 @@ of master file. ;;;*** -;;;### (autoloads nil "reftex-vars" "textmodes/reftex-vars.el" (21781 -;;;;;; 3656 74152 66000)) +;;;### (autoloads nil "reftex-vars" "textmodes/reftex-vars.el" (21788 +;;;;;; 61018 629424 903000)) ;;; Generated autoloads from textmodes/reftex-vars.el (put 'reftex-vref-is-default 'safe-local-variable (lambda (x) (or (stringp x) (symbolp x)))) (put 'reftex-fref-is-default 'safe-local-variable (lambda (x) (or (stringp x) (symbolp x)))) @@ -22588,8 +22599,8 @@ of master file. ;;;*** -;;;### (autoloads nil "regexp-opt" "emacs-lisp/regexp-opt.el" (21781 -;;;;;; 3655 898151 372000)) +;;;### (autoloads nil "regexp-opt" "emacs-lisp/regexp-opt.el" (21788 +;;;;;; 61018 453424 803000)) ;;; Generated autoloads from emacs-lisp/regexp-opt.el (autoload 'regexp-opt "regexp-opt" "\ @@ -22625,8 +22636,8 @@ This means the number of non-shy regexp grouping constructs ;;;*** -;;;### (autoloads nil "remember" "textmodes/remember.el" (21781 3656 -;;;;;; 75152 70000)) +;;;### (autoloads nil "remember" "textmodes/remember.el" (21788 61018 +;;;;;; 630424 904000)) ;;; Generated autoloads from textmodes/remember.el (push (purecopy '(remember 2 0)) package--builtin-versions) @@ -22762,7 +22773,7 @@ first comment line visible (if point is in a comment). ;;;*** -;;;### (autoloads nil "reveal" "reveal.el" (21781 3656 56151 995000)) +;;;### (autoloads nil "reveal" "reveal.el" (21788 61018 611424 893000)) ;;; Generated autoloads from reveal.el (autoload 'reveal-mode "reveal" "\ @@ -22858,8 +22869,8 @@ variable. ;;;*** -;;;### (autoloads nil "rmail" "mail/rmail.el" (21781 3655 974151 -;;;;;; 672000)) +;;;### (autoloads nil "rmail" "mail/rmail.el" (21788 61018 525424 +;;;;;; 844000)) ;;; Generated autoloads from mail/rmail.el (defvar rmail-file-name (purecopy "~/RMAIL") "\ @@ -23275,8 +23286,8 @@ Toggle the use of ROT13 encoding for the current window. ;;;*** -;;;### (autoloads nil "rst" "textmodes/rst.el" (21781 3656 75152 -;;;;;; 70000)) +;;;### (autoloads nil "rst" "textmodes/rst.el" (21788 61018 631424 +;;;;;; 904000)) ;;; Generated autoloads from textmodes/rst.el (add-to-list 'auto-mode-alist (purecopy '("\\.re?st\\'" . rst-mode))) @@ -23306,8 +23317,8 @@ for modes derived from Text mode, like Mail mode. ;;;*** -;;;### (autoloads nil "ruby-mode" "progmodes/ruby-mode.el" (21781 -;;;;;; 4629 998468 633000)) +;;;### (autoloads nil "ruby-mode" "progmodes/ruby-mode.el" (21788 +;;;;;; 61018 599424 886000)) ;;; Generated autoloads from progmodes/ruby-mode.el (push (purecopy '(ruby-mode 1 2)) package--builtin-versions) @@ -23324,8 +23335,8 @@ Major mode for editing Ruby code. ;;;*** -;;;### (autoloads nil "ruler-mode" "ruler-mode.el" (21781 3656 57151 -;;;;;; 999000)) +;;;### (autoloads nil "ruler-mode" "ruler-mode.el" (21788 61018 611424 +;;;;;; 893000)) ;;; Generated autoloads from ruler-mode.el (push (purecopy '(ruler-mode 1 6)) package--builtin-versions) @@ -23662,8 +23673,8 @@ enclosed in `(and ...)'. ;;;*** -;;;### (autoloads nil "savehist" "savehist.el" (21781 3656 57151 -;;;;;; 999000)) +;;;### (autoloads nil "savehist" "savehist.el" (21788 61018 611424 +;;;;;; 893000)) ;;; Generated autoloads from savehist.el (push (purecopy '(savehist 24)) package--builtin-versions) @@ -23695,8 +23706,8 @@ histories, which is probably undesirable. ;;;*** -;;;### (autoloads nil "scheme" "progmodes/scheme.el" (21781 3656 -;;;;;; 44151 948000)) +;;;### (autoloads nil "scheme" "progmodes/scheme.el" (21788 61018 +;;;;;; 600424 887000)) ;;; Generated autoloads from progmodes/scheme.el (autoload 'scheme-mode "scheme" "\ @@ -23749,8 +23760,8 @@ This mode is an extended emacs-lisp mode. ;;;*** -;;;### (autoloads nil "scroll-all" "scroll-all.el" (21781 3656 57151 -;;;;;; 999000)) +;;;### (autoloads nil "scroll-all" "scroll-all.el" (21788 61018 611424 +;;;;;; 893000)) ;;; Generated autoloads from scroll-all.el (defvar scroll-all-mode nil "\ @@ -23800,8 +23811,8 @@ vertically fixed relative to window boundaries during scrolling. ;;;*** -;;;### (autoloads nil "semantic" "cedet/semantic.el" (21781 3655 -;;;;;; 863151 235000)) +;;;### (autoloads nil "semantic" "cedet/semantic.el" (21788 61018 +;;;;;; 424424 787000)) ;;; Generated autoloads from cedet/semantic.el (push (purecopy '(semantic 2 2)) package--builtin-versions) @@ -23859,7 +23870,7 @@ Semantic mode. ;;;*** ;;;### (autoloads nil "semantic/bovine/grammar" "cedet/semantic/bovine/grammar.el" -;;;;;; (21781 3655 864151 238000)) +;;;;;; (21788 61018 425424 788000)) ;;; Generated autoloads from cedet/semantic/bovine/grammar.el (autoload 'bovine-grammar-mode "semantic/bovine/grammar" "\ @@ -23880,8 +23891,8 @@ Major mode for editing Wisent grammars. ;;;*** -;;;### (autoloads nil "sendmail" "mail/sendmail.el" (21710 25077 -;;;;;; 604662 798000)) +;;;### (autoloads nil "sendmail" "mail/sendmail.el" (21788 61018 +;;;;;; 526424 845000)) ;;; Generated autoloads from mail/sendmail.el (defvar mail-from-style 'default "\ @@ -24162,7 +24173,7 @@ Like `mail' command, but display mail buffer in another frame. ;;;*** -;;;### (autoloads nil "server" "server.el" (21781 3656 57151 999000)) +;;;### (autoloads nil "server" "server.el" (21788 61018 613424 894000)) ;;; Generated autoloads from server.el (put 'server-host 'risky-local-variable t) @@ -24229,7 +24240,7 @@ only these files will be asked to be saved. ;;;*** -;;;### (autoloads nil "ses" "ses.el" (21781 3656 58152 3000)) +;;;### (autoloads nil "ses" "ses.el" (21788 61018 614424 895000)) ;;; Generated autoloads from ses.el (autoload 'ses-mode "ses" "\ @@ -24273,8 +24284,8 @@ formula: ;;;*** -;;;### (autoloads nil "sgml-mode" "textmodes/sgml-mode.el" (21781 -;;;;;; 3656 76152 74000)) +;;;### (autoloads nil "sgml-mode" "textmodes/sgml-mode.el" (21788 +;;;;;; 61018 631424 904000)) ;;; Generated autoloads from textmodes/sgml-mode.el (autoload 'sgml-mode "sgml-mode" "\ @@ -24339,8 +24350,8 @@ To work around that, do: ;;;*** -;;;### (autoloads nil "sh-script" "progmodes/sh-script.el" (21781 -;;;;;; 3656 45151 951000)) +;;;### (autoloads nil "sh-script" "progmodes/sh-script.el" (21788 +;;;;;; 61018 600424 887000)) ;;; Generated autoloads from progmodes/sh-script.el (push (purecopy '(sh-script 2 0 6)) package--builtin-versions) (put 'sh-shell 'safe-local-variable 'symbolp) @@ -24492,7 +24503,7 @@ Set up file shadowing. ;;;*** -;;;### (autoloads nil "shell" "shell.el" (21781 3656 58152 3000)) +;;;### (autoloads nil "shell" "shell.el" (21788 61018 614424 895000)) ;;; Generated autoloads from shell.el (defvar shell-dumb-shell-regexp (purecopy "cmd\\(proxy\\)?\\.exe") "\ @@ -24540,7 +24551,7 @@ Otherwise, one argument `-i' is passed to the shell. ;;;*** -;;;### (autoloads nil "shr" "net/shr.el" (21781 3655 987151 723000)) +;;;### (autoloads nil "shr" "net/shr.el" (21788 61018 543424 854000)) ;;; Generated autoloads from net/shr.el (autoload 'shr-render-region "shr" "\ @@ -24648,8 +24659,8 @@ with no arguments, if that value is non-nil. ;;;*** -;;;### (autoloads nil "skeleton" "skeleton.el" (21781 3656 60152 -;;;;;; 11000)) +;;;### (autoloads nil "skeleton" "skeleton.el" (21788 61018 616424 +;;;;;; 896000)) ;;; Generated autoloads from skeleton.el (defvar skeleton-filter-function 'identity "\ @@ -24767,8 +24778,8 @@ symmetrical ones, and the same character twice for the others. ;;;*** -;;;### (autoloads nil "smerge-mode" "vc/smerge-mode.el" (21781 3656 -;;;;;; 85152 109000)) +;;;### (autoloads nil "smerge-mode" "vc/smerge-mode.el" (21788 61018 +;;;;;; 640424 910000)) ;;; Generated autoloads from vc/smerge-mode.el (autoload 'smerge-ediff "smerge-mode" "\ @@ -24813,8 +24824,8 @@ interactively. If there's no argument, do it at the current buffer. ;;;*** -;;;### (autoloads nil "smtpmail" "mail/smtpmail.el" (21781 3655 975151 -;;;;;; 676000)) +;;;### (autoloads nil "smtpmail" "mail/smtpmail.el" (21788 61018 +;;;;;; 527424 845000)) ;;; Generated autoloads from mail/smtpmail.el (autoload 'smtpmail-send-it "smtpmail" "\ @@ -24883,8 +24894,8 @@ then `snmpv2-mode-hook'. ;;;*** -;;;### (autoloads nil "solar" "calendar/solar.el" (21781 3655 854151 -;;;;;; 199000)) +;;;### (autoloads nil "solar" "calendar/solar.el" (21788 61018 419424 +;;;;;; 784000)) ;;; Generated autoloads from calendar/solar.el (autoload 'sunrise-sunset "solar" "\ @@ -25150,7 +25161,7 @@ is non-nil, it also prints a message describing the number of deletions. ;;;*** -;;;### (autoloads nil "spam" "gnus/spam.el" (21781 3655 948151 569000)) +;;;### (autoloads nil "spam" "gnus/spam.el" (21788 61018 503424 832000)) ;;; Generated autoloads from gnus/spam.el (autoload 'spam-initialize "spam" "\ @@ -25207,8 +25218,8 @@ Spam reports will be queued with the method used when ;;;*** -;;;### (autoloads nil "speedbar" "speedbar.el" (21781 3656 61152 -;;;;;; 14000)) +;;;### (autoloads nil "speedbar" "speedbar.el" (21788 61018 617424 +;;;;;; 896000)) ;;; Generated autoloads from speedbar.el (defalias 'speedbar 'speedbar-frame-mode) @@ -25248,8 +25259,8 @@ Return a vector containing the lines from `spook-phrases-file'. ;;;*** -;;;### (autoloads nil "sql" "progmodes/sql.el" (21781 3656 47151 -;;;;;; 959000)) +;;;### (autoloads nil "sql" "progmodes/sql.el" (21788 61018 602424 +;;;;;; 888000)) ;;; Generated autoloads from progmodes/sql.el (push (purecopy '(sql 3 4)) package--builtin-versions) @@ -25718,7 +25729,7 @@ buffer. ;;;*** ;;;### (autoloads nil "srecode/srt-mode" "cedet/srecode/srt-mode.el" -;;;;;; (21781 3655 875151 282000)) +;;;;;; (21788 61018 435424 793000)) ;;; Generated autoloads from cedet/srecode/srt-mode.el (autoload 'srecode-template-mode "srecode/srt-mode" "\ @@ -25889,8 +25900,8 @@ Studlify-case the current buffer. ;;;*** -;;;### (autoloads nil "subword" "progmodes/subword.el" (21781 3656 -;;;;;; 47151 959000)) +;;;### (autoloads nil "subword" "progmodes/subword.el" (21788 61018 +;;;;;; 603424 889000)) ;;; Generated autoloads from progmodes/subword.el (autoload 'subword-mode "subword" "\ @@ -26683,8 +26694,8 @@ Connect to the Emacs talk group from the current X display or tty frame. ;;;*** -;;;### (autoloads nil "tar-mode" "tar-mode.el" (21781 3656 63152 -;;;;;; 22000)) +;;;### (autoloads nil "tar-mode" "tar-mode.el" (21788 61018 618424 +;;;;;; 897000)) ;;; Generated autoloads from tar-mode.el (autoload 'tar-mode "tar-mode" "\ @@ -26782,7 +26793,7 @@ Normally input is edited in Emacs and sent a line at a time. ;;;*** -;;;### (autoloads nil "term" "term.el" (21781 3656 64152 26000)) +;;;### (autoloads nil "term" "term.el" (21788 61018 619424 898000)) ;;; Generated autoloads from term.el (autoload 'make-term "term" "\ @@ -26861,8 +26872,8 @@ tetris-mode keybindings: ;;;*** -;;;### (autoloads nil "tex-mode" "textmodes/tex-mode.el" (21781 3656 -;;;;;; 77152 77000)) +;;;### (autoloads nil "tex-mode" "textmodes/tex-mode.el" (21788 61018 +;;;;;; 632424 905000)) ;;; Generated autoloads from textmodes/tex-mode.el (defvar tex-shell-file-name nil "\ @@ -27489,8 +27500,8 @@ See also docstring of the function tibetan-compose-region. ;;;*** -;;;### (autoloads nil "tildify" "textmodes/tildify.el" (21781 3656 -;;;;;; 79152 85000)) +;;;### (autoloads nil "tildify" "textmodes/tildify.el" (21788 61018 +;;;;;; 632424 905000)) ;;; Generated autoloads from textmodes/tildify.el (push (purecopy '(tildify 4 5)) package--builtin-versions) @@ -27576,8 +27587,8 @@ Return a string giving the duration of the Emacs initialization. ;;;*** -;;;### (autoloads nil "time-date" "calendar/time-date.el" (21781 -;;;;;; 3655 854151 199000)) +;;;### (autoloads nil "time-date" "calendar/time-date.el" (21788 +;;;;;; 61018 419424 784000)) ;;; Generated autoloads from calendar/time-date.el (autoload 'date-to-time "time-date" "\ @@ -27729,8 +27740,8 @@ With ARG, turn time stamping on if and only if arg is positive. ;;;*** -;;;### (autoloads nil "timeclock" "calendar/timeclock.el" (21781 -;;;;;; 3655 854151 199000)) +;;;### (autoloads nil "timeclock" "calendar/timeclock.el" (21788 +;;;;;; 61018 419424 784000)) ;;; Generated autoloads from calendar/timeclock.el (push (purecopy '(timeclock 2 6 1)) package--builtin-versions) @@ -27862,7 +27873,7 @@ To get complete usage, invoke \"emacs -batch -f batch-titdic-convert -h\". ;;;*** -;;;### (autoloads nil "tmm" "tmm.el" (21781 3656 79152 85000)) +;;;### (autoloads nil "tmm" "tmm.el" (21788 61018 633424 906000)) ;;; Generated autoloads from tmm.el (define-key global-map "\M-`" 'tmm-menubar) (define-key global-map [menu-bar mouse-1] 'tmm-menubar-mouse) @@ -28103,7 +28114,8 @@ the output buffer or changing the window configuration. ;;;*** -;;;### (autoloads nil "tramp" "net/tramp.el" (21781 3670 703209 692000)) +;;;### (autoloads nil "tramp" "net/tramp.el" (21788 61018 547424 +;;;;;; 857000)) ;;; Generated autoloads from net/tramp.el (defvar tramp-mode t "\ @@ -28313,8 +28325,8 @@ First column's text sSs Second column's text ;;;*** -;;;### (autoloads nil "type-break" "type-break.el" (21781 3656 79152 -;;;;;; 85000)) +;;;### (autoloads nil "type-break" "type-break.el" (21788 61018 633424 +;;;;;; 906000)) ;;; Generated autoloads from type-break.el (defvar type-break-mode nil "\ @@ -28580,7 +28592,7 @@ UNSAFEP-VARS is a list of symbols with local bindings. ;;;*** -;;;### (autoloads nil "url" "url/url.el" (21781 3656 81152 93000)) +;;;### (autoloads nil "url" "url/url.el" (21788 61018 636424 907000)) ;;; Generated autoloads from url/url.el (autoload 'url-retrieve "url" "\ @@ -28669,8 +28681,8 @@ RATING a rating between 1 and 10 of the strength of the authentication. ;;;*** -;;;### (autoloads nil "url-cache" "url/url-cache.el" (21781 3656 -;;;;;; 80152 89000)) +;;;### (autoloads nil "url-cache" "url/url-cache.el" (21788 61018 +;;;;;; 634424 906000)) ;;; Generated autoloads from url/url-cache.el (autoload 'url-store-in-cache "url-cache" "\ @@ -28702,8 +28714,8 @@ Extract FNAM from the local disk cache. ;;;*** -;;;### (autoloads nil "url-dav" "url/url-dav.el" (21781 3656 80152 -;;;;;; 89000)) +;;;### (autoloads nil "url-dav" "url/url-dav.el" (21788 61018 634424 +;;;;;; 906000)) ;;; Generated autoloads from url/url-dav.el (autoload 'url-dav-supported-p "url-dav" "\ @@ -28748,8 +28760,8 @@ Handle file: and ftp: URLs. ;;;*** -;;;### (autoloads nil "url-gw" "url/url-gw.el" (21781 3656 80152 -;;;;;; 89000)) +;;;### (autoloads nil "url-gw" "url/url-gw.el" (21788 61018 634424 +;;;;;; 906000)) ;;; Generated autoloads from url/url-gw.el (autoload 'url-gateway-nslookup-host "url-gw" "\ @@ -28767,8 +28779,8 @@ Might do a non-blocking connection; use `process-status' to check. ;;;*** -;;;### (autoloads nil "url-handlers" "url/url-handlers.el" (21781 -;;;;;; 4630 1468 620000)) +;;;### (autoloads nil "url-handlers" "url/url-handlers.el" (21788 +;;;;;; 61018 635424 907000)) ;;; Generated autoloads from url/url-handlers.el (defvar url-handler-mode nil "\ @@ -28822,8 +28834,8 @@ accessible. ;;;*** -;;;### (autoloads nil "url-http" "url/url-http.el" (21781 3656 81152 -;;;;;; 93000)) +;;;### (autoloads nil "url-http" "url/url-http.el" (21788 61018 635424 +;;;;;; 907000)) ;;; Generated autoloads from url/url-http.el (autoload 'url-default-expander "url-expand") @@ -29028,8 +29040,8 @@ Setup variables that expose info about you and your system. ;;;*** -;;;### (autoloads nil "url-queue" "url/url-queue.el" (21781 3656 -;;;;;; 81152 93000)) +;;;### (autoloads nil "url-queue" "url/url-queue.el" (21788 61018 +;;;;;; 635424 907000)) ;;; Generated autoloads from url/url-queue.el (autoload 'url-queue-retrieve "url-queue" "\ @@ -29043,8 +29055,8 @@ The variable `url-queue-timeout' sets a timeout. ;;;*** -;;;### (autoloads nil "url-util" "url/url-util.el" (21781 3656 81152 -;;;;;; 93000)) +;;;### (autoloads nil "url-util" "url/url-util.el" (21788 61018 636424 +;;;;;; 907000)) ;;; Generated autoloads from url/url-util.el (defvar url-debug nil "\ @@ -29302,7 +29314,7 @@ If FILE-NAME is non-nil, save the result to FILE-NAME. ;;;*** -;;;### (autoloads nil "vc" "vc/vc.el" (21781 3656 89152 125000)) +;;;### (autoloads nil "vc" "vc/vc.el" (21788 61018 645424 912000)) ;;; Generated autoloads from vc/vc.el (defvar vc-checkout-hook nil "\ @@ -29587,8 +29599,8 @@ Return the branch part of a revision number REV. ;;;*** -;;;### (autoloads nil "vc-annotate" "vc/vc-annotate.el" (21781 3656 -;;;;;; 86152 113000)) +;;;### (autoloads nil "vc-annotate" "vc/vc-annotate.el" (21788 61018 +;;;;;; 640424 910000)) ;;; Generated autoloads from vc/vc-annotate.el (autoload 'vc-annotate "vc-annotate" "\ @@ -29625,8 +29637,8 @@ mode-specific menu. `vc-annotate-color-map' and ;;;*** -;;;### (autoloads nil "vc-arch" "vc/vc-arch.el" (21781 3656 86152 -;;;;;; 113000)) +;;;### (autoloads nil "vc-arch" "vc/vc-arch.el" (21788 61018 640424 +;;;;;; 910000)) ;;; Generated autoloads from vc/vc-arch.el (defun vc-arch-registered (file) (if (vc-find-root file "{arch}/=tagging-method") @@ -29636,7 +29648,8 @@ mode-specific menu. `vc-annotate-color-map' and ;;;*** -;;;### (autoloads nil "vc-bzr" "vc/vc-bzr.el" (21781 3656 86152 113000)) +;;;### (autoloads nil "vc-bzr" "vc/vc-bzr.el" (21788 61018 641424 +;;;;;; 910000)) ;;; Generated autoloads from vc/vc-bzr.el (defconst vc-bzr-admin-dirname ".bzr" "\ @@ -29652,7 +29665,8 @@ Name of the format file in a .bzr directory.") ;;;*** -;;;### (autoloads nil "vc-cvs" "vc/vc-cvs.el" (21781 3656 86152 113000)) +;;;### (autoloads nil "vc-cvs" "vc/vc-cvs.el" (21788 61018 641424 +;;;;;; 910000)) ;;; Generated autoloads from vc/vc-cvs.el (defun vc-cvs-registered (f) "Return non-nil if file F is registered with CVS." @@ -29663,7 +29677,8 @@ Name of the format file in a .bzr directory.") ;;;*** -;;;### (autoloads nil "vc-dir" "vc/vc-dir.el" (21781 3656 87152 117000)) +;;;### (autoloads nil "vc-dir" "vc/vc-dir.el" (21788 61018 642424 +;;;;;; 911000)) ;;; Generated autoloads from vc/vc-dir.el (autoload 'vc-dir "vc-dir" "\ @@ -29687,8 +29702,8 @@ These are the commands available for use in the file status buffer: ;;;*** -;;;### (autoloads nil "vc-dispatcher" "vc/vc-dispatcher.el" (21781 -;;;;;; 3656 87152 117000)) +;;;### (autoloads nil "vc-dispatcher" "vc/vc-dispatcher.el" (21788 +;;;;;; 61018 642424 911000)) ;;; Generated autoloads from vc/vc-dispatcher.el (autoload 'vc-do-command "vc-dispatcher" "\ @@ -29711,7 +29726,8 @@ case, and the process object in the asynchronous case. ;;;*** -;;;### (autoloads nil "vc-git" "vc/vc-git.el" (21781 3656 87152 117000)) +;;;### (autoloads nil "vc-git" "vc/vc-git.el" (21788 61018 642424 +;;;;;; 911000)) ;;; Generated autoloads from vc/vc-git.el (defun vc-git-registered (file) "Return non-nil if FILE is registered with git." @@ -29722,7 +29738,7 @@ case, and the process object in the asynchronous case. ;;;*** -;;;### (autoloads nil "vc-hg" "vc/vc-hg.el" (21781 3656 87152 117000)) +;;;### (autoloads nil "vc-hg" "vc/vc-hg.el" (21788 61018 642424 911000)) ;;; Generated autoloads from vc/vc-hg.el (defun vc-hg-registered (file) "Return non-nil if FILE is registered with hg." @@ -29733,7 +29749,8 @@ case, and the process object in the asynchronous case. ;;;*** -;;;### (autoloads nil "vc-mtn" "vc/vc-mtn.el" (21781 3656 88152 121000)) +;;;### (autoloads nil "vc-mtn" "vc/vc-mtn.el" (21788 61018 643424 +;;;;;; 911000)) ;;; Generated autoloads from vc/vc-mtn.el (defconst vc-mtn-admin-dir "_MTN" "\ @@ -29749,7 +29766,8 @@ Name of the monotone directory's format file.") ;;;*** -;;;### (autoloads nil "vc-rcs" "vc/vc-rcs.el" (21781 3656 88152 121000)) +;;;### (autoloads nil "vc-rcs" "vc/vc-rcs.el" (21788 61018 643424 +;;;;;; 911000)) ;;; Generated autoloads from vc/vc-rcs.el (defvar vc-rcs-master-templates (purecopy '("%sRCS/%s,v" "%s%s,v" "%sRCS/%s")) "\ @@ -29762,8 +29780,8 @@ For a description of possible values, see `vc-check-master-templates'.") ;;;*** -;;;### (autoloads nil "vc-sccs" "vc/vc-sccs.el" (21781 3656 88152 -;;;;;; 121000)) +;;;### (autoloads nil "vc-sccs" "vc/vc-sccs.el" (21788 61018 643424 +;;;;;; 911000)) ;;; Generated autoloads from vc/vc-sccs.el (defvar vc-sccs-master-templates (purecopy '("%sSCCS/s.%s" "%ss.%s" vc-sccs-search-project-dir)) "\ @@ -29781,7 +29799,8 @@ find any project directory." (let ((project-dir (getenv "PROJECTDIR")) dirs dir) ;;;*** -;;;### (autoloads nil "vc-svn" "vc/vc-svn.el" (21781 3656 88152 121000)) +;;;### (autoloads nil "vc-svn" "vc/vc-svn.el" (21788 61018 645424 +;;;;;; 912000)) ;;; Generated autoloads from vc/vc-svn.el (defun vc-svn-registered (f) (let ((admin-dir (cond ((and (eq system-type 'windows-nt) @@ -29794,8 +29813,8 @@ find any project directory." (let ((project-dir (getenv "PROJECTDIR")) dirs dir) ;;;*** -;;;### (autoloads nil "vera-mode" "progmodes/vera-mode.el" (21781 -;;;;;; 3656 48151 963000)) +;;;### (autoloads nil "vera-mode" "progmodes/vera-mode.el" (21788 +;;;;;; 61018 603424 889000)) ;;; Generated autoloads from progmodes/vera-mode.el (push (purecopy '(vera-mode 2 28)) package--builtin-versions) (add-to-list 'auto-mode-alist (cons (purecopy "\\.vr[hi]?\\'") 'vera-mode)) @@ -29854,7 +29873,7 @@ Key bindings: ;;;*** ;;;### (autoloads nil "verilog-mode" "progmodes/verilog-mode.el" -;;;;;; (21781 3656 51151 975000)) +;;;;;; (21788 61018 605424 890000)) ;;; Generated autoloads from progmodes/verilog-mode.el (autoload 'verilog-mode "verilog-mode" "\ @@ -29993,8 +30012,8 @@ Key bindings specific to `verilog-mode-map' are: ;;;*** -;;;### (autoloads nil "vhdl-mode" "progmodes/vhdl-mode.el" (21781 -;;;;;; 3656 54151 987000)) +;;;### (autoloads nil "vhdl-mode" "progmodes/vhdl-mode.el" (21788 +;;;;;; 61018 608424 891000)) ;;; Generated autoloads from progmodes/vhdl-mode.el (autoload 'vhdl-mode "vhdl-mode" "\ @@ -30993,8 +31012,8 @@ Please submit bug reports and other feedback to the author, Neil W. Van Dyke ;;;*** -;;;### (autoloads nil "which-func" "progmodes/which-func.el" (21781 -;;;;;; 3656 54151 987000)) +;;;### (autoloads nil "which-func" "progmodes/which-func.el" (21788 +;;;;;; 61018 609424 892000)) ;;; Generated autoloads from progmodes/which-func.el (put 'which-func-format 'risky-local-variable t) (put 'which-func-current 'risky-local-variable t) @@ -31024,8 +31043,8 @@ in certain major modes. ;;;*** -;;;### (autoloads nil "whitespace" "whitespace.el" (21781 3656 91152 -;;;;;; 133000)) +;;;### (autoloads nil "whitespace" "whitespace.el" (21788 61018 646424 +;;;;;; 913000)) ;;; Generated autoloads from whitespace.el (push (purecopy '(whitespace 13 2 2)) package--builtin-versions) @@ -31453,8 +31472,8 @@ if ARG is omitted or nil. ;;;*** -;;;### (autoloads nil "wid-edit" "wid-edit.el" (21781 3656 91152 -;;;;;; 133000)) +;;;### (autoloads nil "wid-edit" "wid-edit.el" (21788 61018 647424 +;;;;;; 914000)) ;;; Generated autoloads from wid-edit.el (autoload 'widgetp "wid-edit" "\ @@ -31496,8 +31515,8 @@ Setup current buffer so editing string widgets works. ;;;*** -;;;### (autoloads nil "windmove" "windmove.el" (21781 3656 93152 -;;;;;; 141000)) +;;;### (autoloads nil "windmove" "windmove.el" (21788 61018 647424 +;;;;;; 914000)) ;;; Generated autoloads from windmove.el (autoload 'windmove-left "windmove" "\ @@ -31549,7 +31568,7 @@ Default MODIFIER is 'shift. ;;;*** -;;;### (autoloads nil "winner" "winner.el" (21781 3656 95152 148000)) +;;;### (autoloads nil "winner" "winner.el" (21788 61018 648424 914000)) ;;; Generated autoloads from winner.el (defvar winner-mode nil "\ @@ -31572,7 +31591,7 @@ the mode if ARG is omitted or nil, and toggle it if ARG is `toggle'. ;;;*** -;;;### (autoloads nil "woman" "woman.el" (21781 3656 95152 148000)) +;;;### (autoloads nil "woman" "woman.el" (21788 61018 649424 915000)) ;;; Generated autoloads from woman.el (push (purecopy '(woman 0 551)) package--builtin-versions) @@ -31696,8 +31715,8 @@ If LIMIT is non-nil, then do not consider characters beyond LIMIT. ;;;*** -;;;### (autoloads nil "xt-mouse" "xt-mouse.el" (21781 3656 96152 -;;;;;; 152000)) +;;;### (autoloads nil "xt-mouse" "xt-mouse.el" (21788 61018 649424 +;;;;;; 915000)) ;;; Generated autoloads from xt-mouse.el (defvar xterm-mouse-mode nil "\ @@ -31967,8 +31986,8 @@ Zone out, completely. ;;;;;; "vc/ediff-ptch.el" "vc/ediff-vers.el" "vc/ediff-wind.el" ;;;;;; "vc/pcvs-info.el" "vc/pcvs-parse.el" "vc/pcvs-util.el" "vc/vc-dav.el" ;;;;;; "vcursor.el" "vt-control.el" "vt100-led.el" "w32-common-fns.el" -;;;;;; "w32-fns.el" "w32-vars.el" "x-dnd.el") (21781 6189 419818 -;;;;;; 127000)) +;;;;;; "w32-fns.el" "w32-vars.el" "x-dnd.el") (21793 9339 497325 +;;;;;; 252000)) ;;;*** commit 7cad9d5e0cfb1e916402192b3d724e74b92fdbee Author: Nicolas Petton Date: Thu Apr 2 09:36:15 2015 +0200 Update the 24.5 release date in all ChangeLog files diff --git a/ChangeLog b/ChangeLog index 9019b55..93b361a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,12 +1,12 @@ +2015-04-10 Nicolas Petton + + * Version 24.5 released. + 2015-03-29 Eli Zaretskii * build-aux/dir_top (File): Fix the description of selecting a menu item by its number. (Bug#20213) -2015-04-01 Nicolas Petton - - * Version 24.5 released. - 2015-03-23 Andreas Schwab * configure.ac: Fix jpeg version check to work with gcc >= 5. diff --git a/admin/ChangeLog b/admin/ChangeLog index 3615998..cb5d44d 100644 --- a/admin/ChangeLog +++ b/admin/ChangeLog @@ -1,4 +1,4 @@ -2015-04-01 Nicolas Petton +2015-04-10 Nicolas Petton * Version 24.5 released. diff --git a/doc/emacs/ChangeLog b/doc/emacs/ChangeLog index 7cbc4dc..bcf4827 100644 --- a/doc/emacs/ChangeLog +++ b/doc/emacs/ChangeLog @@ -1,4 +1,4 @@ -2015-04-01 Nicolas Petton +2015-04-10 Nicolas Petton * Version 24.5 released. diff --git a/doc/lispintro/ChangeLog b/doc/lispintro/ChangeLog index 310527e..985ad60 100644 --- a/doc/lispintro/ChangeLog +++ b/doc/lispintro/ChangeLog @@ -1,4 +1,4 @@ -2015-04-01 Nicolas Petton +2015-04-10 Nicolas Petton * Version 24.5 released. diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index 3598c35..2748347 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog @@ -1,4 +1,4 @@ -2015-04-01 Nicolas Petton +2015-04-10 Nicolas Petton * Version 24.5 released. diff --git a/doc/man/ChangeLog b/doc/man/ChangeLog index 35a746f..80fa3ab 100644 --- a/doc/man/ChangeLog +++ b/doc/man/ChangeLog @@ -1,4 +1,4 @@ -2015-04-01 Nicolas Petton +2015-04-10 Nicolas Petton * Version 24.5 released. diff --git a/doc/misc/ChangeLog b/doc/misc/ChangeLog index da42344..73cfc71 100644 --- a/doc/misc/ChangeLog +++ b/doc/misc/ChangeLog @@ -1,4 +1,4 @@ -2015-04-01 Nicolas Petton +2015-04-10 Nicolas Petton * Version 24.5 released. diff --git a/etc/ChangeLog b/etc/ChangeLog index cd23eb3..7fb1373 100644 --- a/etc/ChangeLog +++ b/etc/ChangeLog @@ -1,4 +1,4 @@ -2015-04-01 Nicolas Petton +2015-04-10 Nicolas Petton * Version 24.5 released. diff --git a/leim/ChangeLog b/leim/ChangeLog index 7be558c..7001d85 100644 --- a/leim/ChangeLog +++ b/leim/ChangeLog @@ -1,4 +1,4 @@ -2015-04-01 Nicolas Petton +2015-04-10 Nicolas Petton * Version 24.5 released. diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog index 100800c..9e752d6 100644 --- a/lib-src/ChangeLog +++ b/lib-src/ChangeLog @@ -1,4 +1,4 @@ -2015-04-01 Nicolas Petton +2015-04-10 Nicolas Petton * Version 24.5 released. diff --git a/lisp/ChangeLog b/lisp/ChangeLog index da54070..5b7c901 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2015-04-10 Nicolas Petton + + * Version 24.5 released. + 2015-04-03 Alan Mackenzie * progmodes/cc-mode.el (c-font-lock-init): Revert 2015-02-01 change diff --git a/lisp/cedet/ChangeLog b/lisp/cedet/ChangeLog index c016abf..b07043b 100644 --- a/lisp/cedet/ChangeLog +++ b/lisp/cedet/ChangeLog @@ -1,4 +1,4 @@ -2015-04-01 Nicolas Petton +2015-04-10 Nicolas Petton * Version 24.5 released. diff --git a/lisp/erc/ChangeLog b/lisp/erc/ChangeLog index 6b8994c..52ca21f 100644 --- a/lisp/erc/ChangeLog +++ b/lisp/erc/ChangeLog @@ -1,4 +1,4 @@ -2015-04-01 Nicolas Petton +2015-04-10 Nicolas Petton * Version 24.5 released. diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index 2ac2ba6..2f04d1d 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog @@ -1,4 +1,4 @@ -2015-04-01 Nicolas Petton +2015-04-10 Nicolas Petton * Version 24.5 released. diff --git a/lisp/mh-e/ChangeLog b/lisp/mh-e/ChangeLog index c9c17e2..4f3d56b 100644 --- a/lisp/mh-e/ChangeLog +++ b/lisp/mh-e/ChangeLog @@ -1,4 +1,4 @@ -2015-04-01 Nicolas Petton +2015-04-10 Nicolas Petton * Version 24.5 released. diff --git a/lisp/org/ChangeLog b/lisp/org/ChangeLog index a2b95a0..190e9a3 100644 --- a/lisp/org/ChangeLog +++ b/lisp/org/ChangeLog @@ -1,4 +1,4 @@ -2015-04-01 Nicolas Petton +2015-04-10 Nicolas Petton * Version 24.5 released. diff --git a/lisp/url/ChangeLog b/lisp/url/ChangeLog index 99621b6..6010862 100644 --- a/lisp/url/ChangeLog +++ b/lisp/url/ChangeLog @@ -1,4 +1,4 @@ -2015-04-01 Nicolas Petton +2015-04-10 Nicolas Petton * Version 24.5 released. diff --git a/lwlib/ChangeLog b/lwlib/ChangeLog index 26d4daf..1ea0ba7 100644 --- a/lwlib/ChangeLog +++ b/lwlib/ChangeLog @@ -1,4 +1,4 @@ -2015-04-01 Nicolas Petton +2015-04-10 Nicolas Petton * Version 24.5 released. diff --git a/msdos/ChangeLog b/msdos/ChangeLog index 0969682..be3261c 100644 --- a/msdos/ChangeLog +++ b/msdos/ChangeLog @@ -1,4 +1,4 @@ -2015-04-01 Nicolas Petton +2015-04-10 Nicolas Petton * Version 24.5 released. diff --git a/nextstep/ChangeLog b/nextstep/ChangeLog index 3dcc15c..5d70831 100644 --- a/nextstep/ChangeLog +++ b/nextstep/ChangeLog @@ -1,4 +1,4 @@ -2015-04-01 Nicolas Petton +2015-04-10 Nicolas Petton * Version 24.5 released. diff --git a/nt/ChangeLog b/nt/ChangeLog index fb2b9b6..4ee7139 100644 --- a/nt/ChangeLog +++ b/nt/ChangeLog @@ -1,4 +1,4 @@ -2015-04-01 Nicolas Petton +2015-04-10 Nicolas Petton * Version 24.5 released. diff --git a/oldXMenu/ChangeLog b/oldXMenu/ChangeLog index 2c8fe6e..b24192b 100644 --- a/oldXMenu/ChangeLog +++ b/oldXMenu/ChangeLog @@ -1,4 +1,4 @@ -2015-04-01 Nicolas Petton +2015-04-10 Nicolas Petton * Version 24.5 released. diff --git a/src/ChangeLog b/src/ChangeLog index 39b3c9f..f95a763 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,13 +1,13 @@ +2015-04-10 Nicolas Petton + + * Version 24.5 released. + 2015-03-29 Jan Djärv * gtkutil.c (xg_display_open): * xterm.c (x_display_ok, x_term_init): Block SIGIO when opening a display (Bug#19175). -2015-04-01 Nicolas Petton - - * Version 24.5 released. - 2015-03-25 Martin Rudalics * gtkutil.c (update_theme_scrollbar_width): Don't round up diff --git a/test/ChangeLog b/test/ChangeLog index fa3c45d..bea32e9 100644 --- a/test/ChangeLog +++ b/test/ChangeLog @@ -1,12 +1,12 @@ +2015-04-10 Nicolas Petton + + * Version 24.5 released. + 2015-04-01 Michael Albinus * automated/tramp-tests.el (tramp-test06-directory-file-name): Fix docstring and last test. -2015-04-01 Nicolas Petton - - * Version 24.5 released. - 2015-01-30 Fabián Ezequiel Gallina * automated/python-tests.el