commit e43557e6845dbd6fda921d0a433782506af58b6f (HEAD, refs/remotes/origin/master) Author: Michael Albinus Date: Mon Apr 25 08:45:54 2016 +0200 ; * admin/MAINTAINERS: Remove entry diff --git a/admin/MAINTAINERS b/admin/MAINTAINERS index f8baddd..5aff824 100644 --- a/admin/MAINTAINERS +++ b/admin/MAINTAINERS @@ -212,7 +212,6 @@ Michael Albinus lisp/eshell/em-tramp.el lisp/notifications.el test/lisp/autorevert-tests.el - test/lisp/vc/vc-tests.el test/src/inotify-test.el Nicolas Petton commit 1face76ba6d19b269310ddbb0a6a618a3bfe54a2 Author: Dmitry Gutov Date: Sun Apr 24 23:32:48 2016 +0300 Revert the disputed VC change and update the tests * lisp/vc/vc-hooks.el (vc-working-revision): Remove the previous change. (vc-state): Same. And update the old, incorrect comment about unregistered files (http://lists.gnu.org/archive/html/emacs-devel/2016-04/msg00526.html). * test/lisp/vc/vc-tests.el (vc-test--state): Remove the check calling `vc-state' on default-directory (VC state is undefined for directories). Check that `vc-state' returns nil where it returned `unregistered' before. Remove all checks comparing invocations with the backend passed in explictly and without. (vc-test--working-revision): Remove all checks comparing invocations with the backend passed in explictly and without. Update comments, and add a new one. diff --git a/lisp/vc/vc-hooks.el b/lisp/vc/vc-hooks.el index 4047bca..6b4cd6a 100644 --- a/lisp/vc/vc-hooks.el +++ b/lisp/vc/vc-hooks.el @@ -468,18 +468,21 @@ status of this file. Otherwise, the value returned is one of: `unregistered' The file is not under version control." - ;; Note: in Emacs 22 and older, return of nil meant the file was - ;; unregistered. This is potentially a source of - ;; backward-compatibility bugs. + ;; Note: we usually return nil here for unregistered files anyway + ;; when called with only one argument. This doesn't seem to cause + ;; any problems. But if we wanted to change that, we should + ;; probably opt for redefining the `registered' command to return + ;; non-nil even for unregistered files (maybe also rename it), and + ;; then make sure that all `state' implementations handle + ;; unregistered file appropriately. ;; FIXME: New (sub)states needed (?): ;; - `copied' and `moved' (might be handled by `removed' and `added') (or (vc-file-getprop file 'vc-state) - (and (not (vc-registered file)) 'unregistered) (when (> (length file) 0) ;Why?? --Stef - (setq backend (or backend (vc-responsible-backend file))) - (when backend - (vc-state-refresh file backend))))) + (setq backend (or backend (vc-backend file))) + (when backend + (vc-state-refresh file backend))))) (defun vc-state-refresh (file backend) "Quickly recompute the `state' of FILE." @@ -495,13 +498,12 @@ status of this file. Otherwise, the value returned is one of: "Return the repository version from which FILE was checked out. If FILE is not registered, this function always returns nil." (or (vc-file-getprop file 'vc-working-revision) - (and (vc-registered file) - (progn - (setq backend (or backend (vc-responsible-backend file))) - (when backend - (vc-file-setprop file 'vc-working-revision - (vc-call-backend - backend 'working-revision file))))))) + (progn + (setq backend (or backend (vc-backend file))) + (when backend + (vc-file-setprop file 'vc-working-revision + (vc-call-backend + backend 'working-revision file)))))) ;; Backward compatibility. (define-obsolete-function-alias diff --git a/test/lisp/vc/vc-tests.el b/test/lisp/vc/vc-tests.el index 793ad82..ac10ce2 100644 --- a/test/lisp/vc/vc-tests.el +++ b/test/lisp/vc/vc-tests.el @@ -316,46 +316,31 @@ This checks also `vc-backend' and `vc-responsible-backend'." 'vc-test--cleanup-hook `(lambda () (delete-directory ,default-directory 'recursive))) - ;; Create empty repository. Check repository state. + ;; Create empty repository. (make-directory default-directory) (vc-test--create-repo-function backend) - ;; FIXME: The state shall be unregistered only. - ;; nil: RCS - ;; unregistered: Bzr CVS Git Hg Mtn SCCS SRC - ;; up-to-date: SVN - (message "vc-state1 %s" (vc-state default-directory)) - (should (eq (vc-state default-directory) - (vc-state default-directory backend))) - (should (memq (vc-state default-directory) - '(nil unregistered up-to-date))) - (let ((tmp-name (expand-file-name "foo" default-directory))) ;; Check state of a nonexistent file. - ;; unregistered: Bzr CVS Git Hg Mtn RCS SCCS SRC SVN (message "vc-state2 %s" (vc-state tmp-name)) - (should (eq (vc-state tmp-name) (vc-state tmp-name backend))) - (should (eq (vc-state tmp-name) 'unregistered)) + (should (null (vc-state tmp-name))) ;; Write a new file. Check state. (write-region "foo" nil tmp-name nil 'nomessage) - ;; unregistered: Bzr CVS Git Hg Mtn RCS SCCS SRC SVN (message "vc-state3 %s" (vc-state tmp-name)) - (should (eq (vc-state tmp-name) (vc-state tmp-name backend))) - (should (eq (vc-state tmp-name) 'unregistered)) + (should (null (vc-state tmp-name))) ;; Register a file. Check state. (vc-register (list backend (list (file-name-nondirectory tmp-name)))) - ;; FIXME: nil seems to be wrong. + ;; FIXME: nil is definitely wrong. ;; nil: SRC ;; added: Bzr CVS Git Hg Mtn SVN ;; up-to-date: RCS SCCS (message "vc-state4 %s" (vc-state tmp-name)) - (should (eq (vc-state tmp-name) (vc-state tmp-name backend))) (should (memq (vc-state tmp-name) '(nil added up-to-date))) ;; Unregister the file. Check state. @@ -363,11 +348,10 @@ This checks also `vc-backend' and `vc-responsible-backend'." 'vc-test--unregister-function backend tmp-name) 'vc-not-supported) (message "vc-state5 unsupported") - ;; unregistered: Bzr Git Hg RCS + ;; nil: Bzr Git Hg RCS ;; unsupported: CVS Mtn SCCS SRC SVN (message "vc-state5 %s" (vc-state tmp-name)) - (should (eq (vc-state tmp-name) (vc-state tmp-name backend))) - (should (memq (vc-state tmp-name) '(unregistered)))))) + (should (null (vc-state tmp-name)))))) ;; Save exit. (ignore-errors (run-hooks 'vc-test--cleanup-hook))))) @@ -399,41 +383,36 @@ This checks also `vc-backend' and `vc-responsible-backend'." ;; "0": SVN (message "vc-working-revision1 %s" (vc-working-revision default-directory)) - (should (eq (vc-working-revision default-directory) - (vc-working-revision default-directory backend))) - (should (member (vc-working-revision default-directory) '(nil "0"))) + (should (member (vc-working-revision default-directory) '(nil "0"))) (let ((tmp-name (expand-file-name "foo" default-directory))) ;; Check initial working revision, should be nil until ;; it's registered. - ;; nil: Bzr CVS Git Hg Mtn RCS SCCS SRC SVN (message "vc-working-revision2 %s" (vc-working-revision tmp-name)) - (should (eq (vc-working-revision tmp-name) - (vc-working-revision tmp-name backend))) - (should-not (vc-working-revision tmp-name)) + (should-not (vc-working-revision tmp-name)) ;; Write a new file. Check working revision. (write-region "foo" nil tmp-name nil 'nomessage) - ;; nil: Bzr CVS Git Hg Mtn RCS SCCS SRC SVN (message "vc-working-revision3 %s" (vc-working-revision tmp-name)) - (should (eq (vc-working-revision tmp-name) - (vc-working-revision tmp-name backend))) - (should-not (vc-working-revision tmp-name)) + (should-not (vc-working-revision tmp-name)) ;; Register a file. Check working revision. (vc-register (list backend (list (file-name-nondirectory tmp-name)))) - ;; FIXME: nil doesn't seem to be proper. + ;; XXX: nil is fine, at least in Git's case, because + ;; `vc-register' only makes the file `added' in this case. ;; nil: Git Mtn ;; "0": Bzr CVS Hg SRC SVN ;; "1.1": RCS SCCS (message "vc-working-revision4 %s" (vc-working-revision tmp-name)) - (should (eq (vc-working-revision tmp-name) - (vc-working-revision tmp-name backend))) - (should (member (vc-working-revision tmp-name) '(nil "0" "1.1"))) + (should (member (vc-working-revision tmp-name) '(nil "0" "1.1"))) + + ;; TODO: Call `vc-checkin', and check the resulting + ;; working revision. None of the return values should be + ;; nil then. ;; Unregister the file. Check working revision. (if (eq (vc-test--run-maybe-unsupported-function @@ -443,8 +422,6 @@ This checks also `vc-backend' and `vc-responsible-backend'." ;; nil: Bzr Git Hg RCS ;; unsupported: CVS Mtn SCCS SRC SVN (message "vc-working-revision5 %s" (vc-working-revision tmp-name)) - (should (eq (vc-working-revision tmp-name) - (vc-working-revision tmp-name backend))) (should-not (vc-working-revision tmp-name))))) ;; Save exit. commit dba65ec99361a534042e3a1ade4d08b0f40481d1 Author: Paul Eggert Date: Sun Apr 24 13:17:25 2016 -0700 * etc/NEWS: Grammar and punctuation improvements. diff --git a/etc/NEWS b/etc/NEWS index 3cf88c1..f964e71 100644 --- a/etc/NEWS +++ b/etc/NEWS @@ -57,21 +57,21 @@ affected by this, as SGI stopped supporting IRIX in December 2013. * Changes in Emacs 25.2 -- -** `process-attributes' on Darwin systems now return more information. +** 'process-attributes' on Darwin systems now returns more information. +++ -** A number of accessors for the value returned by 'file-attributes' -has been added. They are: 'file-attribute-type', +** Several accessors for the value returned by 'file-attributes' +have been added. They are: 'file-attribute-type', 'file-attribute-link-number', 'file-attribute-user-id', 'file-attribute-group-id', 'file-attribute-access-time', 'file-attribute-modification-time', 'file-attribute-status-change-time', 'file-attribute-size', 'file-attribute-modes', 'file-attribute-inode-number', and -'file-attribute-device-number' +'file-attribute-device-number'. +++ -** The new function 'buffer-hash' has been added, and can be used to -compute a fash, non-consing hash of the contents of a buffer. +** The new function 'buffer-hash' computes compute a fast, non-consing +hash of a buffer's contents. --- ** 'fill-paragraph' no longer marks the buffer as changed unless it @@ -82,9 +82,9 @@ actually changed something. environment 'Catalan', which has been added. --- -** 'align-regexp' has a separate history for its interactive argument +** 'align-regexp' has a separate history for its interactive argument. 'align-regexp' no longer shares its history with all other -history-less functions that use 'read-string' +history-less functions that use 'read-string'. +++ ** The networking code has been reworked so that it's more @@ -107,9 +107,9 @@ from a process sentinel. required an integer (e.g., :service 993). This difference has been eliminated, and integer strings work everywhere. -** It is possible to disable attempted recovery on fatal signals +** It is possible to disable attempted recovery on fatal signals. -Two new variables allow to disable attempts to recover from stack +Two new variables support disabling attempts to recover from stack overflow and to avoid automatic auto-save when Emacs is delivered a fatal signal. 'attempt-stack-overflow-recovery', if set to 'nil', will disable attempts to recover from C stack overflows; Emacs will @@ -131,12 +131,12 @@ See the variable 'dir-locals-file-2' for more information. puny.el library, so that one can visit web sites with non-ASCII URLs. +++ -** The new 'timer-list' command lists all active timers in a buffer +** The new 'timer-list' command lists all active timers in a buffer, where you can cancel them with the 'c' command. +++ -** New function 'read-multiple-choice' use to prompt for -multiple-choice questions, with a handy way to display help texts. +** The new function 'read-multiple-choice' prompts for multiple-choice +questions, with a handy way to display help texts. * Editing Changes in Emacs 25.2 @@ -158,9 +158,8 @@ multiple-choice questions, with a handy way to display help texts. +++ *** In wdired, when editing files to contain slash characters, -the resulting directories are automatically created. Whether -to do this or not is controlled by the -'wdired-create-parent-directories' variable. +the resulting directories are automatically created. Whether to do +this is controlled by the 'wdired-create-parent-directories' variable. +++ *** 'W' is now bound to 'browse-url-of-dired-file', and is useful for @@ -181,7 +180,7 @@ whether to use the HTML-specified colors or not. The user can also customize the 'shr-use-colors' variable. --- -*** Images that are being loaded are now marked with grey +*** Images that are being loaded are now marked with gray "placeholder" images of the size specified by the HTML. They are then replaced by the real images asynchronously, which will also now respect width/height HTML specs (unless they specify widths/heights @@ -221,7 +220,7 @@ for the ChangeLog file, if none already exists. Customize ** Message --- -*** `message-use-idna' now defaults to t (because Emacs comes with +*** 'message-use-idna' now defaults to t (because Emacs comes with built-in IDNA support now). --- @@ -238,7 +237,7 @@ header's value. ** Tramp +++ -*** New connection method "sg", which allows to edit files under +*** New connection method "sg", which supports editing files under a different group ID. +++ @@ -282,11 +281,11 @@ servers. programmatically delete all cookies, or cookies from a specific domain. -*** The URL package now support https over proxies supporting CONNECT. +*** The URL package now support HTTPS over proxies supporting CONNECT. +++ -*** `url-user-agent' now defaults to `default', and the User-Agent -string is computed dynamically based on `url-privacy-level'. +*** 'url-user-agent' now defaults to 'default', and the User-Agent +string is computed dynamically based on 'url-privacy-level'. ** VC and related modes @@ -311,7 +310,7 @@ things like forward-word in readline work. --- ** hideshow mode got four key bindings that are analogous to outline -mode bindings: 'C-c @ C-a', 'C-c @ C-t', 'C-c @ C-d', and 'C-c @ C-e.' +mode bindings: 'C-c @ C-a', 'C-c @ C-t', 'C-c @ C-d', and 'C-c @ C-e.' ** The grep/rgrep/lgrep functions will now ask about saving files before running. This is controlled by the 'grep-save-buffers' @@ -320,7 +319,7 @@ variable. * Lisp Changes in Emacs 25.2 -** New var syntax-ppss-table to control the syntax-table used in syntax-ppss +** New var syntax-ppss-table to control the syntax-table used in syntax-ppss. ** Autoload files can be generated without timestamps, by setting 'autoload-timestamps' to nil. @@ -336,8 +335,8 @@ that negotiation should complete even on non-blocking sockets. +++ ** New functions 'window-pixel-width-before-size-change' and -'window-pixel-height-before-size-change' allow to detect which window -changed size when 'window-size-change-functions' are run. +'window-pixel-height-before-size-change' support detecting which +window changed size when 'window-size-change-functions' are run. +++ ** New function 'display-buffer-reuse-mode-window' is an action function @@ -359,15 +358,14 @@ fortunes in the echo area. +++ ** New function 'func-arity' returns information about the argument list -of an arbitrary function. -This is a generalization of 'subr-arity' for functions that are not -built-in primitives. We recommend using this new function instead of -'subr-arity'. +of an arbitrary function. This generalizes 'subr-arity' for functions +that are not built-in primitives. We recommend using this new +function instead of 'subr-arity'. +++ ** 'parse-partial-sexp' state has a new element. Element 10 is non-nil when the last character scanned might be the first character -of a two character construct, i.e. a comment delimiter or escaped +of a two character construct, i.e., a comment delimiter or escaped character. Its value is the syntax of that last character. +++ commit 169043d6625acab49a9a12fb046321d96036cb7d Merge: 77f497d 9daf1cf Author: Paul Eggert Date: Sun Apr 24 12:49:22 2016 -0700 Merge from origin/emacs-25 9daf1cf * etc/NEWS: Improve wording of vc-git-log-output-coding-syste... 0cd2e92 Don't kill ~/ if it's the top level directory 4f40f5f describe-char: fix insert char documentation 87ee542 (vc-git-mode-line-string): Don't use `replace-regexp-in-string' commit 77f497d292ace3e841827a7b12a18be5f78fe425 Merge: 8833692 5c587fd Author: Paul Eggert Date: Sun Apr 24 12:49:21 2016 -0700 ; Merge from origin/emacs-25 The following commit was skipped: 5c587fd Bump version to 25.0.93 commit 8833692b29ba11c34413d6793cf6d222ccdd930b Merge: 0941415 960f90d Author: Paul Eggert Date: Sun Apr 24 12:49:21 2016 -0700 Merge from origin/emacs-25 960f90d * etc/AUTHORS: Update the AUTHORS file b21e9d4 * admin/update_autogen: Use #!/usr/bin/env bash commit 09414150731a80ba41c105ee636108d71e1b0f39 Merge: f779446 cf14218 Author: Paul Eggert Date: Sun Apr 24 12:49:21 2016 -0700 ; Merge from origin/emacs-25 The following commit was skipped: cf14218 ; Auto-commit of loaddefs files. commit f7794460e8e9e0c514b0cb01dd010b531c21169c Merge: e6d6a99 78f9af7 Author: Paul Eggert Date: Sun Apr 24 12:48:34 2016 -0700 Merge from origin/emacs-25 78f9af7 ; ChangeLog fixes 162e549 * admin/authors.el (authors-ignored-files): Additions. 2b31a0c In x_set_window_size restore do_pending_window_change calls 401857e Fix Alt-modified keys on some European MS-Windows keyboards a77cf24 Document 'help-go-forward' 1ba947f Revert "Allow to customize names of executables used by grep.el" 570e0fa Revert "Don't use 'find-program'" 645f4ef Revert "Use 'grep-find-program' in check-declare.el" aa03257 Clarify documentation of 'dired-mark-files-containing-regexp' ce0d8c7 Make tmm-menubar work in correct order again b8d5a8f Remove the Meta-CVS VC backend commit 9daf1cf1dd9e1025b615a0fea4dae81871e081da Author: Paul Eggert Date: Sun Apr 24 12:42:02 2016 -0700 * etc/NEWS: Improve wording of vc-git-log-output-coding-system etc. diff --git a/etc/NEWS b/etc/NEWS index 8e78b72..42f54f3 100644 --- a/etc/NEWS +++ b/etc/NEWS @@ -989,13 +989,13 @@ background or to the foreground. --- *** New options for customizing encoding of Git commit log messages. -The new options `vc-git-commits-coding-system' and -`vc-git-log-output-coding-system' allow to customize the encoding of -the log messages sent to Git when committing, and the decoding of the -log messages read from Git history commands. Both default to UTF-8; -if you customize them, make sure they are consistent with the Git -config variables i18n.commitEncoding and i18n.logOutputEncoding. -(`vc-git-commits-coding-system' existed previously, but was a +The new user options 'vc-git-commits-coding-system' and +'vc-git-log-output-coding-system' specify the encoding of log messages +sent to Git when committing, and the decoding of log messages read +from Git history commands. These options default to UTF-8; if +customized, they should be consistent with the Git config variables +i18n.commitEncoding and i18n.logOutputEncoding. +('vc-git-commits-coding-system' existed previously, but was a variable, not a user option.) +++ commit e6d6a99455183bca5074b7601ad11d424da6442e Author: Simen Heggestøyl Date: Sun Apr 24 19:57:42 2016 +0200 Don't let `css--property-values' return duplicates * lisp/textmodes/css-mode.el (css--property-values): Don't return duplicate values. * test/lisp/textmodes/css-mode-tests.el (css-test-property-values): Take the above into account. (css-test-property-values-no-duplicates): Test that duplicates aren't returned by `css--property-values'. diff --git a/lisp/textmodes/css-mode.el b/lisp/textmodes/css-mode.el index 8a4daac..608462b 100644 --- a/lisp/textmodes/css-mode.el +++ b/lisp/textmodes/css-mode.el @@ -793,13 +793,14 @@ Completion candidates are looked up in `css-property-alist' by the string PROPERTY." (or (gethash property css--property-value-cache) (let ((values - (seq-mapcat - (lambda (value) - (if (stringp value) - (list value) - (or (css--value-class-lookup value) - (css--property-values (symbol-name value))))) - (cdr (assoc property css-property-alist))))) + (seq-uniq + (seq-mapcat + (lambda (value) + (if (stringp value) + (list value) + (or (css--value-class-lookup value) + (css--property-values (symbol-name value))))) + (cdr (assoc property css-property-alist)))))) (puthash property values css--property-value-cache)))) (defun css--complete-property-value () diff --git a/test/lisp/textmodes/css-mode-tests.el b/test/lisp/textmodes/css-mode-tests.el index 805364c..5d5873b 100644 --- a/test/lisp/textmodes/css-mode-tests.el +++ b/test/lisp/textmodes/css-mode-tests.el @@ -24,8 +24,9 @@ ;;; Code: -(require 'ert) (require 'css-mode) +(require 'ert) +(require 'seq) (ert-deftest css-test-property-values () ;; The `float' property has a flat value list. @@ -36,9 +37,10 @@ ;; The `list-style' property refers to several other properties. (should (equal (sort (css--property-values "list-style") #'string-lessp) - (sort (append (css--property-values "list-style-type") - (css--property-values "list-style-position") - (css--property-values "list-style-image")) + (sort (seq-uniq + (append (css--property-values "list-style-type") + (css--property-values "list-style-position") + (css--property-values "list-style-image"))) #'string-lessp))) ;; The `position' property is tricky because it's also the name of a @@ -64,6 +66,14 @@ (should (equal (gethash "word-wrap" css--property-value-cache) word-wrap-values)))) +(ert-deftest css-test-property-values-no-duplicates () + "Test that `css--property-values' returns no duplicates." + ;; The `flex' property is prone to duplicate values; if they aren't + ;; removed, it'll contain at least two instances of `auto'. + (should + (equal (sort (css--property-values "flex") #'string-lessp) + '("auto" "content" "none")))) + (ert-deftest css-test-value-class-lookup () (should (equal (sort (css--value-class-lookup 'position) #'string-lessp) commit 12846626bfae795a173fdedf2850dfbd24065534 Author: Lars Magne Ingebrigtsen Date: Sun Apr 24 17:21:18 2016 +0200 Call `make-composed-keymap' correctly * lisp/image-mode.el (image-mode-map): Call `make-composed-keymap' correctly. diff --git a/lisp/image-mode.el b/lisp/image-mode.el index f4a17b2..a18b07e 100644 --- a/lisp/image-mode.el +++ b/lisp/image-mode.el @@ -371,7 +371,7 @@ call." "Internal variable to keep the previous non-image major mode.") (defvar image-mode-map - (let ((map (make-composed-keymap image-map special-mode-map))) + (let ((map (make-sparse-keymap))) (define-key map "\C-c\C-c" 'image-toggle-display) (define-key map "\C-c\C-x" 'image-toggle-hex-display) (define-key map (kbd "SPC") 'image-scroll-up) @@ -476,7 +476,7 @@ call." ["Goto Frame..." image-goto-frame :active image-multi-frame :help "Show a specific frame of this image"] )) - map) + (make-composed-keymap (list map image-map) special-mode-map)) "Mode keymap for `image-mode'.") (defvar image-minor-mode-map commit b7a21984cc4543139c69d8ff8c2430913fc0e6fc Author: Lars Magne Ingebrigtsen Date: Sun Apr 24 17:11:23 2016 +0200 Use `make-composed-keymap' instead of copying the keymap * lisp/image-mode.el (image-mode-map): Use `make-composed-keymap' instead of copying the keymap. diff --git a/lisp/image-mode.el b/lisp/image-mode.el index e887e29..f4a17b2 100644 --- a/lisp/image-mode.el +++ b/lisp/image-mode.el @@ -371,8 +371,7 @@ call." "Internal variable to keep the previous non-image major mode.") (defvar image-mode-map - (let ((map (copy-keymap image-map))) - (set-keymap-parent map special-mode-map) + (let ((map (make-composed-keymap image-map special-mode-map))) (define-key map "\C-c\C-c" 'image-toggle-display) (define-key map "\C-c\C-x" 'image-toggle-hex-display) (define-key map (kbd "SPC") 'image-scroll-up) commit 0cd2e923dba8d8c7128b0c084ce6af22069e8db5 Author: Tino Calancha Date: Sun Apr 24 17:05:33 2016 +0200 Don't kill ~/ if it's the top level directory * lisp/dired-aux.el (dired-kill-subdir): Don't kill ~/ if it's the top level directory (bug#23017). diff --git a/lisp/dired-aux.el b/lisp/dired-aux.el index d29abf3..08db187 100644 --- a/lisp/dired-aux.el +++ b/lisp/dired-aux.el @@ -2486,8 +2486,8 @@ Lower levels are unaffected." (cur-dir (dired-current-directory)) (cons (assoc-string cur-dir dired-switches-alist)) buffer-read-only) - (if (equal cur-dir default-directory) - (error "Attempt to kill top level directory")) + (when (equal cur-dir (expand-file-name default-directory)) + (error "Attempt to kill top level directory")) (prog1 (if remember-marks (dired-remember-marks beg end)) (delete-region beg end) commit 43cc5d8bdf614aeb79acf691efe7e883112ddac9 Author: Lars Magne Ingebrigtsen Date: Sun Apr 24 16:22:31 2016 +0200 Make `q' etc work in image mode again * lisp/image-mode.el (image-mode-map): Restore special-mode-map as the parent keymap of image-mode-map (bug#23167). diff --git a/lisp/image-mode.el b/lisp/image-mode.el index 3334d6a..e887e29 100644 --- a/lisp/image-mode.el +++ b/lisp/image-mode.el @@ -371,9 +371,8 @@ call." "Internal variable to keep the previous non-image major mode.") (defvar image-mode-map - (let ((map (make-sparse-keymap))) + (let ((map (copy-keymap image-map))) (set-keymap-parent map special-mode-map) - (set-keymap-parent map image-map) (define-key map "\C-c\C-c" 'image-toggle-display) (define-key map "\C-c\C-x" 'image-toggle-hex-display) (define-key map (kbd "SPC") 'image-scroll-up) commit d1c75d827b3628c864384d35fe03b2415a766aae Author: Lars Magne Ingebrigtsen Date: Sun Apr 24 15:44:15 2016 +0200 Fix typo in last url.texi checkin diff --git a/doc/misc/url.texi b/doc/misc/url.texi index 0a96a54..62b1d74 100644 --- a/doc/misc/url.texi +++ b/doc/misc/url.texi @@ -1339,7 +1339,7 @@ Connect directly. @defopt url-user-agent The User Agent string used for sending @acronym{HTTP}/@acronym{HTTPS} requests. The value should be @code{nil}, which means that no -@samo{User-Agent} header is generated, @code{default}, which means +@samp{User-Agent} header is generated, @code{default}, which means that a string is generated based on the setting of @code{url-privacy-leve}, a string or a function of no arguments that returns a string. commit 04355ac0595cde56af485b5ebebe246d7d96d762 Author: Lars Magne Ingebrigtsen Date: Sun Apr 24 15:39:44 2016 +0200 Make STARTTLS error messages better * lisp/net/network-stream.el (network-stream-open-starttls): Output a better error message when TLS negotiation fails while doing STARTTLS (bug#23027). diff --git a/lisp/net/network-stream.el b/lisp/net/network-stream.el index 5ddaef5..c2845d9 100644 --- a/lisp/net/network-stream.el +++ b/lisp/net/network-stream.el @@ -312,6 +312,9 @@ gnutls-boot (as returned by `gnutls-boot-parameters')." :host (puny-encode-domain host) :service service)) (network-stream-get-response stream start eoc))) + (unless (process-live-p stream) + (error "Unable to negotiate a TLS connection with %s/%s" + host service)) ;; Re-get the capabilities, which may have now changed. (setq capabilities (network-stream-command stream capability-command eo-capa)))) commit 331f4a638150c1ab8ae5bea86b901f32263b9192 Author: Lars Magne Ingebrigtsen Date: Sun Apr 24 15:18:22 2016 +0200 Encode the shr tests files with trailing white space diff --git a/.gitattributes b/.gitattributes index 24fe4c7..13e58a8 100644 --- a/.gitattributes +++ b/.gitattributes @@ -33,9 +33,6 @@ 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 -# The shr test files can have trailing whitespace. -test/data/shr/*.txt -whitespace=blank-at-eol - # Some files should not be treated as text when diffing or merging. *.cur binary *.gpg binary diff --git a/test/data/shr/li-empty.txt b/test/data/shr/li-empty.txt index 8320bc0..906fd8d 100644 --- a/test/data/shr/li-empty.txt +++ b/test/data/shr/li-empty.txt @@ -1,3 +1,3 @@ -1 -2 -3 +1%20 +2%20 +3%20 diff --git a/test/lisp/net/shr-tests.el b/test/lisp/net/shr-tests.el index 6606ec5..ab6fc93 100644 --- a/test/lisp/net/shr-tests.el +++ b/test/lisp/net/shr-tests.el @@ -36,6 +36,9 @@ (cons (buffer-substring-no-properties (point-min) (point-max)) (with-temp-buffer (insert-file-contents (format "data/shr/%s.txt" name)) + (while (re-search-forward "%\\([0-9A-F][0-9A-F]\\)" nil t) + (replace-match (string (string-to-number (match-string 1) 16)) + t t)) (buffer-string)))))) (ert-deftest rendering () commit 8e2e252932faf3320f72a0b62136c4606e09ebc3 Author: Simen Heggestøyl Date: Sun Apr 24 11:03:22 2016 +0200 Cache results of `css--property-values' * lisp/textmodes/css-mode.el (css--property-values): Cache computed values. * test/lisp/textmodes/css-mode-tests.el (css-test-property-value-cache): New regression test for the above. diff --git a/lisp/textmodes/css-mode.el b/lisp/textmodes/css-mode.el index 2a61fe3..8a4daac 100644 --- a/lisp/textmodes/css-mode.el +++ b/lisp/textmodes/css-mode.el @@ -792,13 +792,15 @@ the symbol VALUE-CLASS." Completion candidates are looked up in `css-property-alist' by the string PROPERTY." (or (gethash property css--property-value-cache) - (seq-mapcat - (lambda (value) - (if (stringp value) - (list value) - (or (css--value-class-lookup value) - (css--property-values (symbol-name value))))) - (cdr (assoc property css-property-alist))))) + (let ((values + (seq-mapcat + (lambda (value) + (if (stringp value) + (list value) + (or (css--value-class-lookup value) + (css--property-values (symbol-name value))))) + (cdr (assoc property css-property-alist))))) + (puthash property values css--property-value-cache)))) (defun css--complete-property-value () "Complete property value at point." diff --git a/test/lisp/textmodes/css-mode-tests.el b/test/lisp/textmodes/css-mode-tests.el index 9c5953d..805364c 100644 --- a/test/lisp/textmodes/css-mode-tests.el +++ b/test/lisp/textmodes/css-mode-tests.el @@ -57,6 +57,13 @@ ;; because it refers to the value class of the same name. (should (= (length (css--property-values "color")) 18))) +(ert-deftest css-test-property-value-cache () + "Test that `css--property-value-cache' is in use." + (should-not (gethash "word-wrap" css--property-value-cache)) + (let ((word-wrap-values (css--property-values "word-wrap"))) + (should (equal (gethash "word-wrap" css--property-value-cache) + word-wrap-values)))) + (ert-deftest css-test-value-class-lookup () (should (equal (sort (css--value-class-lookup 'position) #'string-lessp) commit 5cb7620027f78a3a0f473972a0584c8ea1791398 Author: Michael Albinus Date: Sun Apr 24 14:59:05 2016 +0200 Some improvements in vc * lisp/vc/vc-hooks.el (vc-state, vc-working-revision): Check, whether FILE is registered. * lisp/vc/vc-rcs.el (vc-rcs-checkout-model): Return `locking' for nonexistent files. * test/lisp/vc/vc-tests.el (w32-application-type): Declare. (vc-test--revision-granularity-function) (vc-test--unregister-function): Use `vc-call-backend'. (vc-test--run-maybe-unsupported-function): New defmacro. (vc-test--register, vc-test--state, vc-test--working-revision) (vc-test--checkout-model): Use it. Fix also expected results. (vc-test-src02-state, vc-test-rcs04-checkout-model): They pass now. diff --git a/lisp/vc/vc-hooks.el b/lisp/vc/vc-hooks.el index 4c0161d..0535565 100644 --- a/lisp/vc/vc-hooks.el +++ b/lisp/vc/vc-hooks.el @@ -475,10 +475,11 @@ status of this file. Otherwise, the value returned is one of: ;; FIXME: New (sub)states needed (?): ;; - `copied' and `moved' (might be handled by `removed' and `added') (or (vc-file-getprop file 'vc-state) + (and (not (vc-registered file)) 'unregistered) (when (> (length file) 0) ;Why?? --Stef (setq backend (or backend (vc-responsible-backend file))) (when backend - (vc-state-refresh file backend))))) + (vc-state-refresh file backend))))) (defun vc-state-refresh (file backend) "Quickly recompute the `state' of FILE." @@ -494,11 +495,13 @@ status of this file. Otherwise, the value returned is one of: "Return the repository version from which FILE was checked out. If FILE is not registered, this function always returns nil." (or (vc-file-getprop file 'vc-working-revision) - (progn - (setq backend (or backend (vc-responsible-backend file))) - (when backend - (vc-file-setprop file 'vc-working-revision - (vc-call-backend backend 'working-revision file)))))) + (and (vc-registered file) + (progn + (setq backend (or backend (vc-responsible-backend file))) + (when backend + (vc-file-setprop file 'vc-working-revision + (vc-call-backend + backend 'working-revision file))))))) ;; Backward compatibility. (define-obsolete-function-alias diff --git a/lisp/vc/vc-rcs.el b/lisp/vc/vc-rcs.el index 8d58611..b972956 100644 --- a/lisp/vc/vc-rcs.el +++ b/lisp/vc/vc-rcs.el @@ -120,7 +120,9 @@ For a description of possible values, see `vc-check-master-templates'." (setq result (vc-file-getprop file 'vc-checkout-model))) (or result (progn (vc-rcs-fetch-master-state file) - (vc-file-getprop file 'vc-checkout-model))))) + (vc-file-getprop file 'vc-checkout-model)) + ;; For non-existing files we assume strict locking. + 'locking))) ;;; ;;; State-querying functions diff --git a/test/lisp/vc/vc-tests.el b/test/lisp/vc/vc-tests.el index 1a3e8e0..793ad82 100644 --- a/test/lisp/vc/vc-tests.el +++ b/test/lisp/vc/vc-tests.el @@ -109,6 +109,8 @@ (require 'ert) (require 'vc) +(declare-function w32-application-type "w32proc") + ;; The working horses. (defvar vc-test--cleanup-hook nil @@ -117,7 +119,7 @@ Don't set it globally, the functions shall be let-bound.") (defun vc-test--revision-granularity-function (backend) "Run the `vc-revision-granularity' backend function." - (funcall (intern (downcase (format "vc-%s-revision-granularity" backend))))) + (vc-call-backend backend 'revision-granularity)) (defun vc-test--create-repo-function (backend) "Run the `vc-create-repo' backend function. @@ -137,7 +139,7 @@ For backends which dont support it, it is emulated." (tdir tmp-dir)) ;; If CVS executable is an MSYS program, reformat the file ;; name of TMP-DIR to have the /d/foo/bar form supported by - ;; MSYS programs. (FIXME What about Cygwin cvs.exe?) + ;; MSYS programs. (FIXME: What about Cygwin cvs.exe?) (if (eq (w32-application-type cvs-prog) 'msys) (setq tdir (concat "/" (substring tmp-dir 0 1) (substring tmp-dir 2)))) @@ -201,21 +203,25 @@ For backends which dont support it, it is emulated." ;; Save exit. (ignore-errors (run-hooks 'vc-test--cleanup-hook))))) -;; FIXME Why isn't there `vc-unregister'? +;; FIXME: Why isn't there `vc-unregister'? (defun vc-test--unregister-function (backend file) "Run the `vc-unregister' backend function. -For backends which dont support it, `vc-not-supported' is signalled." - - (unwind-protect - (let ((symbol (intern (downcase (format "vc-%s-unregister" backend))))) - (if (functionp symbol) - (funcall symbol file) - ;; CVS, SVN, SCCS, SRC and Mtn are not supported. - (signal 'vc-not-supported (list 'unregister backend)))) - - ;; FIXME This shall be called in `vc-unregister'. +For backends which don't support it, `vc-not-supported' is signalled." + ;; CVS, SVN, SCCS, SRC and Mtn are not supported, and will signal + ;; `vc-not-supported'. + (prog1 + (vc-call-backend backend 'unregister file) (vc-file-clearprops file))) +(defmacro vc-test--run-maybe-unsupported-function (func &rest args) + "Run FUNC withs ARGS as arguments. +Catch the `vc-not-supported' error." + `(let (err) + (condition-case err + (funcall ,func ,@args) + (vc-not-supported 'vc-not-supported) + (t (signal (car err) (cdr err)))))) + (defun vc-test--register (backend) "Register and unregister a file. This checks also `vc-backend' and `vc-responsible-backend'." @@ -239,7 +245,6 @@ This checks also `vc-backend' and `vc-responsible-backend'." (vc-test--create-repo-function backend) ;; For file oriented backends CVS, RCS and SVN the backend is ;; returned, and the directory is registered already. - ;; FIXME is this correct? (should (if (vc-backend default-directory) (vc-registered default-directory) (not (vc-registered default-directory)))) @@ -271,22 +276,21 @@ This checks also `vc-backend' and `vc-responsible-backend'." (should (eq (vc-responsible-backend tmp-name2) backend)) (should (vc-registered tmp-name2)) - ;; FIXME `vc-backend' accepts also a list of files, - ;; `vc-responsible-backend' doesn't. Is this right? + ;; `vc-backend' accepts also a list of files, + ;; `vc-responsible-backend' doesn't. (should (vc-backend (list tmp-name1 tmp-name2))) ;; Unregister the files. - (condition-case err - (progn - (vc-test--unregister-function backend tmp-name1) - (should-not (vc-backend tmp-name1)) - (should-not (vc-registered tmp-name1)) - (vc-test--unregister-function backend tmp-name2) - (should-not (vc-backend tmp-name2)) - (should-not (vc-registered tmp-name2))) - ;; CVS, SVN, SCCS, SRC and Mtn are not supported. - (vc-not-supported t) - (t (signal (car err) (cdr err)))) + (unless (eq (vc-test--run-maybe-unsupported-function + 'vc-test--unregister-function backend tmp-name1) + 'vc-not-supported) + (should-not (vc-backend tmp-name1)) + (should-not (vc-registered tmp-name1))) + (unless (eq (vc-test--run-maybe-unsupported-function + 'vc-test--unregister-function backend tmp-name2) + 'vc-not-supported) + (should-not (vc-backend tmp-name2)) + (should-not (vc-registered tmp-name2))) ;; The files shall still exist. (should (file-exists-p tmp-name1)) @@ -316,66 +320,54 @@ This checks also `vc-backend' and `vc-responsible-backend'." (make-directory default-directory) (vc-test--create-repo-function backend) - ;; nil: Hg Mtn RCS - ;; added: Git - ;; unregistered: CVS SCCS SRC - ;; up-to-date: Bzr SVN + ;; FIXME: The state shall be unregistered only. + ;; nil: RCS + ;; unregistered: Bzr CVS Git Hg Mtn SCCS SRC + ;; up-to-date: SVN (message "vc-state1 %s" (vc-state default-directory)) (should (eq (vc-state default-directory) (vc-state default-directory backend))) (should (memq (vc-state default-directory) - '(nil added unregistered up-to-date))) + '(nil unregistered up-to-date))) (let ((tmp-name (expand-file-name "foo" default-directory))) - ;; Check state of an empty file. + ;; Check state of a nonexistent file. - ;; nil: Hg Mtn SRC SVN - ;; added: Git - ;; unregistered: RCS SCCS - ;; up-to-date: Bzr CVS + ;; unregistered: Bzr CVS Git Hg Mtn RCS SCCS SRC SVN (message "vc-state2 %s" (vc-state tmp-name)) (should (eq (vc-state tmp-name) (vc-state tmp-name backend))) - (should (memq (vc-state tmp-name) - '(nil added unregistered up-to-date))) + (should (eq (vc-state tmp-name) 'unregistered)) ;; Write a new file. Check state. (write-region "foo" nil tmp-name nil 'nomessage) - ;; nil: Mtn - ;; added: Git - ;; unregistered: Hg RCS SCCS SRC SVN - ;; up-to-date: Bzr CVS + ;; unregistered: Bzr CVS Git Hg Mtn RCS SCCS SRC SVN (message "vc-state3 %s" (vc-state tmp-name)) (should (eq (vc-state tmp-name) (vc-state tmp-name backend))) - (should (memq (vc-state tmp-name) - '(nil added unregistered up-to-date))) + (should (eq (vc-state tmp-name) 'unregistered)) ;; Register a file. Check state. (vc-register (list backend (list (file-name-nondirectory tmp-name)))) - ;; added: Git Mtn - ;; unregistered: Hg RCS SCCS SRC SVN - ;; up-to-date: Bzr CVS + ;; FIXME: nil seems to be wrong. + ;; nil: SRC + ;; added: Bzr CVS Git Hg Mtn SVN + ;; up-to-date: RCS SCCS (message "vc-state4 %s" (vc-state tmp-name)) (should (eq (vc-state tmp-name) (vc-state tmp-name backend))) - (should (memq (vc-state tmp-name) '(added unregistered up-to-date))) + (should (memq (vc-state tmp-name) '(nil added up-to-date))) ;; Unregister the file. Check state. - (condition-case err - (progn - (vc-test--unregister-function backend tmp-name) - - ;; added: Git - ;; unregistered: Hg RCS - ;; unsupported: CVS Mtn SCCS SRC SVN - ;; up-to-date: Bzr - (message "vc-state5 %s" (vc-state tmp-name)) - (should (eq (vc-state tmp-name) (vc-state tmp-name backend))) - (should (memq (vc-state tmp-name) - '(added unregistered up-to-date)))) - (vc-not-supported (message "vc-state5 unsupported")) - (t (signal (car err) (cdr err)))))) + (if (eq (vc-test--run-maybe-unsupported-function + 'vc-test--unregister-function backend tmp-name) + 'vc-not-supported) + (message "vc-state5 unsupported") + ;; unregistered: Bzr Git Hg RCS + ;; unsupported: CVS Mtn SCCS SRC SVN + (message "vc-state5 %s" (vc-state tmp-name)) + (should (eq (vc-state tmp-name) (vc-state tmp-name backend))) + (should (memq (vc-state tmp-name) '(unregistered)))))) ;; Save exit. (ignore-errors (run-hooks 'vc-test--cleanup-hook))))) @@ -402,8 +394,9 @@ This checks also `vc-backend' and `vc-responsible-backend'." (make-directory default-directory) (vc-test--create-repo-function backend) - ;; nil: CVS Git Mtn RCS SCCS - ;; "0": Bzr Hg SRC SVN + ;; FIXME: Is the value for SVN correct? + ;; nil: Bzr CVS Git Hg Mtn RCS SCCS SRC + ;; "0": SVN (message "vc-working-revision1 %s" (vc-working-revision default-directory)) (should (eq (vc-working-revision default-directory) @@ -414,50 +407,45 @@ This checks also `vc-backend' and `vc-responsible-backend'." ;; Check initial working revision, should be nil until ;; it's registered. - ;; nil: CVS Git Mtn RCS SCCS SVN - ;; "0": Bzr Hg SRC + ;; nil: Bzr CVS Git Hg Mtn RCS SCCS SRC SVN (message "vc-working-revision2 %s" (vc-working-revision tmp-name)) (should (eq (vc-working-revision tmp-name) (vc-working-revision tmp-name backend))) - (should (member (vc-working-revision tmp-name) '(nil "0"))) + (should-not (vc-working-revision tmp-name)) ;; Write a new file. Check working revision. (write-region "foo" nil tmp-name nil 'nomessage) - ;; nil: CVS Git Mtn RCS SCCS SVN - ;; "0": Bzr Hg SRC + ;; nil: Bzr CVS Git Hg Mtn RCS SCCS SRC SVN (message "vc-working-revision3 %s" (vc-working-revision tmp-name)) (should (eq (vc-working-revision tmp-name) (vc-working-revision tmp-name backend))) - (should (member (vc-working-revision tmp-name) '(nil "0"))) + (should-not (vc-working-revision tmp-name)) ;; Register a file. Check working revision. (vc-register (list backend (list (file-name-nondirectory tmp-name)))) - ;; nil: Mtn Git + ;; FIXME: nil doesn't seem to be proper. + ;; nil: Git Mtn ;; "0": Bzr CVS Hg SRC SVN - ;; "1.1" RCS SCCS + ;; "1.1": RCS SCCS (message "vc-working-revision4 %s" (vc-working-revision tmp-name)) (should (eq (vc-working-revision tmp-name) (vc-working-revision tmp-name backend))) (should (member (vc-working-revision tmp-name) '(nil "0" "1.1"))) ;; Unregister the file. Check working revision. - (condition-case err - (progn - (vc-test--unregister-function backend tmp-name) - - ;; nil: Git RCS - ;; "0": Bzr Hg - ;; unsupported: CVS Mtn SCCS SRC SVN - (message - "vc-working-revision5 %s" (vc-working-revision tmp-name)) - (should (eq (vc-working-revision tmp-name) - (vc-working-revision tmp-name backend))) - (should (member (vc-working-revision tmp-name) '(nil "0")))) - (vc-not-supported (message "vc-working-revision5 unsupported")) - (t (signal (car err) (cdr err)))))) + (if (eq (vc-test--run-maybe-unsupported-function + 'vc-test--unregister-function backend tmp-name) + 'vc-not-supported) + (message "vc-working-revision5 unsupported") + ;; nil: Bzr Git Hg RCS + ;; unsupported: CVS Mtn SCCS SRC SVN + (message "vc-working-revision5 %s" (vc-working-revision tmp-name)) + (should (eq (vc-working-revision tmp-name) + (vc-working-revision tmp-name backend))) + (should-not (vc-working-revision tmp-name))))) ;; Save exit. (ignore-errors (run-hooks 'vc-test--cleanup-hook))))) @@ -484,9 +472,8 @@ This checks also `vc-backend' and `vc-responsible-backend'." (vc-test--create-repo-function backend) ;; Surprisingly, none of the backends returns 'announce. - ;; nil: RCS ;; implicit: Bzr CVS Git Hg Mtn SRC SVN - ;; locking: SCCS + ;; locking: RCS SCCS (message "vc-checkout-model1 %s" (vc-checkout-model backend default-directory)) @@ -494,11 +481,10 @@ This checks also `vc-backend' and `vc-responsible-backend'." '(announce implicit locking))) (let ((tmp-name (expand-file-name "foo" default-directory))) - ;; Check checkout model of an empty file. + ;; Check checkout model of a nonexistent file. - ;; nil: RCS ;; implicit: Bzr CVS Git Hg Mtn SRC SVN - ;; locking: SCCS + ;; locking: RCS SCCS (message "vc-checkout-model2 %s" (vc-checkout-model backend tmp-name)) (should (memq (vc-checkout-model backend tmp-name) @@ -507,9 +493,8 @@ This checks also `vc-backend' and `vc-responsible-backend'." ;; Write a new file. Check checkout model. (write-region "foo" nil tmp-name nil 'nomessage) - ;; nil: RCS ;; implicit: Bzr CVS Git Hg Mtn SRC SVN - ;; locking: SCCS + ;; locking: RCS SCCS (message "vc-checkout-model3 %s" (vc-checkout-model backend tmp-name)) (should (memq (vc-checkout-model backend tmp-name) @@ -519,28 +504,25 @@ This checks also `vc-backend' and `vc-responsible-backend'." (vc-register (list backend (list (file-name-nondirectory tmp-name)))) - ;; nil: RCS ;; implicit: Bzr CVS Git Hg Mtn SRC SVN - ;; locking: SCCS + ;; locking: RCS SCCS (message "vc-checkout-model4 %s" (vc-checkout-model backend tmp-name)) (should (memq (vc-checkout-model backend tmp-name) '(announce implicit locking))) ;; Unregister the file. Check checkout model. - (condition-case err - (progn - (vc-test--unregister-function backend tmp-name) - - ;; nil: RCS - ;; implicit: Bzr Git Hg - ;; unsupported: CVS Mtn SCCS SRC SVN - (message - "vc-checkout-model5 %s" (vc-checkout-model backend tmp-name)) - (should (memq (vc-checkout-model backend tmp-name) - '(announce implicit locking)))) - (vc-not-supported (message "vc-checkout-model5 unsupported")) - (t (signal (car err) (cdr err)))))) + (if (eq (vc-test--run-maybe-unsupported-function + 'vc-test--unregister-function backend tmp-name) + 'vc-not-supported) + (message "vc-checkout-model5 unsupported") + ;; implicit: Bzr Git Hg + ;; locking: RCS + ;; unsupported: CVS Mtn SCCS SRC SVN + (message + "vc-checkout-model5 %s" (vc-checkout-model backend tmp-name)) + (should (memq (vc-checkout-model backend tmp-name) + '(announce implicit locking)))))) ;; Save exit. (ignore-errors (run-hooks 'vc-test--cleanup-hook))))) @@ -615,8 +597,6 @@ This checks also `vc-backend' and `vc-responsible-backend'." (ert-deftest ,(intern (format "vc-test-%s02-state" backend-string)) () ,(format "Check `vc-state' for the %s backend." backend-string) - ;; FIXME make this pass. - :expected-result ,(if (equal backend 'SRC) :failed :passed) (skip-unless (ert-test-passed-p (ert-test-most-recent-result @@ -641,8 +621,6 @@ This checks also `vc-backend' and `vc-responsible-backend'." ,(intern (format "vc-test-%s04-checkout-model" backend-string)) () ,(format "Check `vc-checkout-model' for the %s backend." backend-string) - ;; FIXME make this pass. - :expected-result ,(if (equal backend 'RCS) :failed :passed) (skip-unless (ert-test-passed-p (ert-test-most-recent-result commit b876ee8971a8a040e14251f9733e4209ef7ad637 Author: Lars Magne Ingebrigtsen Date: Sun Apr 24 14:55:15 2016 +0200 Document the nil/default values of url-user-agent * doc/misc/url.texi (Customization): Document the nil/default values of url-user-agent. diff --git a/doc/misc/url.texi b/doc/misc/url.texi index 14a4c96..0a96a54 100644 --- a/doc/misc/url.texi +++ b/doc/misc/url.texi @@ -1337,10 +1337,16 @@ Connect directly. @end defopt @defopt url-user-agent -The User Agent string used for sending HTTP/HTTPS requests. The value -should be a string or a function of no arguments that returns a -string. The default value is @w{@samp{User-Agent: @var{package-name} -URL/Emacs}}, where @var{package-name} is the value of +The User Agent string used for sending @acronym{HTTP}/@acronym{HTTPS} +requests. The value should be @code{nil}, which means that no +@samo{User-Agent} header is generated, @code{default}, which means +that a string is generated based on the setting of +@code{url-privacy-leve}, a string or a function of no arguments that +returns a string. + +The default is @code{default}, which means that the +@w{@samp{User-Agent: @var{package-name} URL/Emacs}} string will be +generated, where @var{package-name} is the value of @code{url-package-name} and its version, if they are non-@code{nil}. @end defopt diff --git a/etc/NEWS b/etc/NEWS index d0afb84..6c7c9de 100644 --- a/etc/NEWS +++ b/etc/NEWS @@ -284,7 +284,7 @@ domain. *** The URL package now support https over proxies supporting CONNECT. ---- ++++ *** `url-user-agent' now defaults to `default', and the User-Agent string is computed dynamically based on `url-privacy-level'. commit 234ef3b432b7dff6629a12be5dd03a163b8e8619 Author: Clément Pit--Claudel Date: Sun Apr 24 14:51:33 2016 +0200 Compute User-Agent dynamically in url-http * url-http.el (url-http-user-agent-string): Compute User-Agent string dynamically. (url-http--user-agent-default-string): New function. * url-vars.el (url-privacy-level): Allow `emacs' in list of information not to send. (url-user-agent): Add nil and `default' options; do not pre-compute value. diff --git a/etc/NEWS b/etc/NEWS index 0a2641f..d0afb84 100644 --- a/etc/NEWS +++ b/etc/NEWS @@ -284,6 +284,10 @@ domain. *** The URL package now support https over proxies supporting CONNECT. +--- +*** `url-user-agent' now defaults to `default', and the User-Agent +string is computed dynamically based on `url-privacy-level'. + ** VC and related modes --- diff --git a/lisp/url/url-http.el b/lisp/url/url-http.el index 1fe9ac2..23cd695 100644 --- a/lisp/url/url-http.el +++ b/lisp/url/url-http.el @@ -222,15 +222,36 @@ request.") (if connection (url-http-mark-connection-as-busy host port connection)))) +(defun url-http--user-agent-default-string () + "Compute a default User-Agent string based on `url-privacy-level'." + (let ((package-info (when url-package-name + (format "%s/%s" url-package-name url-package-version))) + (emacs-info (unless (and (listp url-privacy-level) + (memq 'emacs url-privacy-level)) + (format "Emacs/%s" emacs-version))) + (os-info (unless (and (listp url-privacy-level) + (memq 'os url-privacy-level)) + (format "(%s; %s)" url-system-type url-os-type))) + (url-info (format "URL/%s" url-version))) + (string-join (delq nil (list package-info url-info + emacs-info os-info)) + " "))) + ;; Building an HTTP request (defun url-http-user-agent-string () - (if (or (eq url-privacy-level 'paranoid) - (and (listp url-privacy-level) - (memq 'agent url-privacy-level))) - "" - (if (functionp url-user-agent) - (funcall url-user-agent) - url-user-agent))) + "Compute a User-Agent string. +The string is based on `url-privacy-level' and `url-user-agent'." + (let* ((hide-ua + (or (eq url-privacy-level 'paranoid) + (and (listp url-privacy-level) + (memq 'agent url-privacy-level)))) + (ua-string + (and (not hide-ua) + (cond + ((functionp url-user-agent) (funcall url-user-agent)) + ((stringp url-user-agent) url-user-agent) + ((eq url-user-agent 'default) (url-http--user-agent-default-string)))))) + (if ua-string (format "User-Agent: %s\r\n" (string-trim ua-string)) ""))) (defun url-http-create-request (&optional ref-url) "Create an HTTP request for `url-http-target-url', referred to by REF-URL." diff --git a/lisp/url/url-vars.el b/lisp/url/url-vars.el index 960a04a..f6aae21 100644 --- a/lisp/url/url-vars.el +++ b/lisp/url/url-vars.el @@ -116,6 +116,7 @@ If a list, this should be a list of symbols of what NOT to send. Valid symbols are: email -- the email address os -- the operating system info +emacs -- the version of Emacs lastloc -- the last location agent -- do not send the User-Agent string cookies -- never accept HTTP cookies @@ -143,6 +144,7 @@ variable." (checklist :tag "Custom" (const :tag "Email address" :value email) (const :tag "Operating system" :value os) + (const :tag "Emacs version" :value emacs) (const :tag "Last location" :value lastloc) (const :tag "Browser identification" :value agent) (const :tag "No cookies" :value cookie))) @@ -357,16 +359,21 @@ Currently supported methods: (const :tag "Direct connection" :value native)) :group 'url-hairy) -(defcustom url-user-agent (format "User-Agent: %sURL/%s\r\n" - (if url-package-name - (concat url-package-name "/" - url-package-version " ") - "") url-version) - "User Agent used by the URL package for HTTP/HTTPS requests -Should be a string or a function of no arguments returning a string." - :type '(choice (string :tag "A static User-Agent string") - (function :tag "Call a function to get the User-Agent string")) - :version "25.1" +(defcustom url-user-agent 'default + "User Agent used by the URL package for HTTP/HTTPS requests. +Should be one of: +* A string (not including the \"User-Agent:\" prefix) +* A function of no arguments, returning a string +* `default' (to compute a value according to `url-privacy-level') +* nil (to omit the User-Agent header entirely)" + :type + '(choice + (string :tag "A static User-Agent string") + (function :tag "Call a function to get the User-Agent string") + (const :tag "No User-Agent at all" :value nil) + (const :tag "An string auto-generated according to `url-privacy-level'" + :value default)) + :version "25.2" :group 'url) (defvar url-setup-done nil "Has setup configuration been done?") commit 97ecff0783128edeb6fe5f6e441993c9bbf2a25a Author: Jun Hao Date: Sun Apr 24 14:43:06 2016 +0200 Handle auth-source items with special characters on OS X * lisp/auth-source.el (auth-source-macos-keychain-search-items): Handle keychain output correctly when has special chararcters (bug#22824). diff --git a/lisp/auth-source.el b/lisp/auth-source.el index cfd21a5..d691b54 100644 --- a/lisp/auth-source.el +++ b/lisp/auth-source.el @@ -1758,12 +1758,28 @@ entries for git.gnus.org: items))) items)) + +(defun auth-source--decode-octal-string (string) + "Convert octal string to utf-8 string. E.g: 'a\134b' to 'a\b'" + (let ((list (string-to-list string)) + (size (length string))) + (decode-coding-string + (apply #'unibyte-string + (loop for i = 0 then (+ i (if (eq (nth i list) ?\\) 4 1)) + for var = (nth i list) + while (< i size) + if (eq var ?\\) + collect (string-to-number + (concat (cl-subseq list (+ i 1) (+ i 4))) 8) + else + collect var)) + 'utf-8))) + (defun* auth-source-macos-keychain-search-items (coll _type _max host port &key label type user &allow-other-keys) - (let* ((keychain-generic (eq type 'macos-keychain-generic)) (args `(,(if keychain-generic "find-generic-password" @@ -1792,29 +1808,32 @@ entries for git.gnus.org: (goto-char (point-min)) (while (not (eobp)) (cond - ((looking-at "^password: \"\\(.+\\)\"$") + ((looking-at "^password: \\(?:0x[0-9A-F]+\\)? *\"\\(.+\\)\"") (setq ret (auth-source-macos-keychain-result-append ret keychain-generic "secret" - (lexical-let ((v (match-string 1))) + (lexical-let ((v (auth-source--decode-octal-string + (match-string 1)))) (lambda () v))))) ;; TODO: check if this is really the label ;; match 0x00000007 ="AppleID" - ((looking-at "^[ ]+0x00000007 =\"\\(.+\\)\"") + ((looking-at + "^[ ]+0x00000007 =\\(?:0x[0-9A-F]+\\)? *\"\\(.+\\)\"") (setq ret (auth-source-macos-keychain-result-append ret keychain-generic "label" - (match-string 1)))) + (auth-source--decode-octal-string (match-string 1))))) ;; match "crtr"="aapl" ;; match "svce"="AppleID" - ((looking-at "^[ ]+\"\\([a-z]+\\)\"[^=]+=\"\\(.+\\)\"") + ((looking-at + "^[ ]+\"\\([a-z]+\\)\"[^=]+=\\(?:0x[0-9A-F]+\\)? *\"\\(.+\\)\"") (setq ret (auth-source-macos-keychain-result-append ret keychain-generic - (match-string 1) - (match-string 2))))) + (auth-source--decode-octal-string (match-string 1)) + (auth-source--decode-octal-string (match-string 2)))))) (forward-line))) ;; return `ret' iff it has the :secret key (and (plist-get ret :secret) (list ret)))) commit ef4ed84e72a323b3d29dc34df92d3f89ad4fc322 Author: Magnus Henoch Date: Sun Apr 24 14:33:05 2016 +0200 Implement process-attributes for Darwin * src/sysdep.c (timeval_to_timespec, make_lisp_timeval) (system_process_attributes): Implement process-attributes for Darwin (bug#16579). diff --git a/etc/NEWS b/etc/NEWS index 1ad8451..0a2641f 100644 --- a/etc/NEWS +++ b/etc/NEWS @@ -56,6 +56,9 @@ affected by this, as SGI stopped supporting IRIX in December 2013. * Changes in Emacs 25.2 +-- +** `process-attributes' on Darwin systems now return more information. + +++ ** A number of accessors for the value returned by 'file-attributes' has been added. They are: 'file-attribute-type', diff --git a/src/sysdep.c b/src/sysdep.c index 3faa696..53affbf 100644 --- a/src/sysdep.c +++ b/src/sysdep.c @@ -3567,6 +3567,146 @@ system_process_attributes (Lisp_Object pid) return attrs; } +#elif defined DARWIN_OS + +static struct timespec +timeval_to_timespec (struct timeval t) +{ + return make_timespec (t.tv_sec, t.tv_usec * 1000); +} + +static Lisp_Object +make_lisp_timeval (struct timeval t) +{ + return make_lisp_time (timeval_to_timespec (t)); +} + +Lisp_Object +system_process_attributes (Lisp_Object pid) +{ + int proc_id; + int pagesize = getpagesize (); + unsigned long npages; + int fscale; + struct passwd *pw; + struct group *gr; + char *ttyname; + size_t len; + char args[MAXPATHLEN]; + struct timeval starttime; + struct timespec t, now; + struct rusage *rusage; + dev_t tdev; + uid_t uid; + gid_t gid; + + int mib[4] = {CTL_KERN, KERN_PROC, KERN_PROC_PID}; + struct kinfo_proc proc; + size_t proclen = sizeof proc; + + Lisp_Object attrs = Qnil; + Lisp_Object decoded_comm; + + CHECK_NUMBER_OR_FLOAT (pid); + CONS_TO_INTEGER (pid, int, proc_id); + mib[3] = proc_id; + + if (sysctl (mib, 4, &proc, &proclen, NULL, 0) != 0) + return attrs; + + uid = proc.kp_eproc.e_ucred.cr_uid; + attrs = Fcons (Fcons (Qeuid, make_fixnum_or_float (uid)), attrs); + + block_input (); + pw = getpwuid (uid); + unblock_input (); + if (pw) + attrs = Fcons (Fcons (Quser, build_string (pw->pw_name)), attrs); + + gid = proc.kp_eproc.e_pcred.p_svgid; + attrs = Fcons (Fcons (Qegid, make_fixnum_or_float (gid)), attrs); + + block_input (); + gr = getgrgid (gid); + unblock_input (); + if (gr) + attrs = Fcons (Fcons (Qgroup, build_string (gr->gr_name)), attrs); + + decoded_comm = (code_convert_string_norecord + (build_unibyte_string (proc.kp_proc.p_comm), + Vlocale_coding_system, 0)); + + attrs = Fcons (Fcons (Qcomm, decoded_comm), attrs); + { + char state[2] = {'\0', '\0'}; + switch (proc.kp_proc.p_stat) + { + case SRUN: + state[0] = 'R'; + break; + + case SSLEEP: + state[0] = 'S'; + break; + + case SZOMB: + state[0] = 'Z'; + break; + + case SSTOP: + state[0] = 'T'; + break; + + case SIDL: + state[0] = 'I'; + break; + } + attrs = Fcons (Fcons (Qstate, build_string (state)), attrs); + } + + attrs = Fcons (Fcons (Qppid, make_fixnum_or_float (proc.kp_eproc.e_ppid)), + attrs); + attrs = Fcons (Fcons (Qpgrp, make_fixnum_or_float (proc.kp_eproc.e_pgid)), + attrs); + + tdev = proc.kp_eproc.e_tdev; + block_input (); + ttyname = tdev == NODEV ? NULL : devname (tdev, S_IFCHR); + unblock_input (); + if (ttyname) + attrs = Fcons (Fcons (Qtty, build_string (ttyname)), attrs); + + attrs = Fcons (Fcons (Qtpgid, make_fixnum_or_float (proc.kp_eproc.e_tpgid)), + attrs); + + rusage = proc.kp_proc.p_ru; + if (rusage) + { + attrs = Fcons (Fcons (Qminflt, make_fixnum_or_float (rusage->ru_minflt)), + attrs); + attrs = Fcons (Fcons (Qmajflt, make_fixnum_or_float (rusage->ru_majflt)), + attrs); + + attrs = Fcons (Fcons (Qutime, make_lisp_timeval (rusage->ru_utime)), + attrs); + attrs = Fcons (Fcons (Qstime, make_lisp_timeval (rusage->ru_stime)), + attrs); + t = timespec_add (timeval_to_timespec (rusage->ru_utime), + timeval_to_timespec (rusage->ru_stime)); + attrs = Fcons (Fcons (Qtime, make_lisp_time (t)), attrs); + } + + starttime = proc.kp_proc.p_starttime; + attrs = Fcons (Fcons (Qnice, make_number (proc.kp_proc.p_nice)), attrs); + attrs = Fcons (Fcons (Qstart, make_lisp_timeval (starttime)), attrs); + + now = current_timespec (); + t = timespec_sub (now, timeval_to_timespec (starttime)); + attrs = Fcons (Fcons (Qetime, make_lisp_time (t)), attrs); + + return attrs; +} + /* The WINDOWSNT implementation is in w32.c. The MSDOS implementation is in dosfns.c. */ #elif !defined (WINDOWSNT) && !defined (MSDOS) commit 2a28ba3db9bf4827a2b4a42d9eed018edf6711a3 Author: Lars Magne Ingebrigtsen Date: Sun Apr 24 14:13:22 2016 +0200 Use Unicode literals instead of hex values * lisp/net/shr.el (shr-tag-bdo): Use Unicode literals instead of hex values for greater readability. (shr-tag-bdi): Ditto. diff --git a/lisp/net/shr.el b/lisp/net/shr.el index 3adc573..bf05fe9 100644 --- a/lisp/net/shr.el +++ b/lisp/net/shr.el @@ -1690,19 +1690,19 @@ The preference is a float determined from `shr-prefer-media-type'." (let* ((direction (dom-attr dom 'dir)) (char (cond ((equal direction "ltr") - #x202d) ; LRO + ?\N{LEFT-TO-RIGHT OVERRIDE}) ((equal direction "rtl") - #x202e)))) ; RLO + ?\N{RIGHT-TO-LEFT OVERRIDE})))) (when char - (insert #x2068 char)) ; FSI + LRO/RLO + (insert ?\N{FIRST STRONG ISOLATE} char)) (shr-generic dom) (when char - (insert #x202c #x2069)))) ; PDF + PDI + (insert ?\N{POP DIRECTIONAL FORMATTING} ?\N{POP DIRECTIONAL ISOLATE})))) (defun shr-tag-bdi (dom) - (insert #x2068) ; FSI + (insert ?\N{FIRST STRONG ISOLATE}) (shr-generic dom) - (insert #x2069)) ; PDI + (insert ?\N{POP DIRECTIONAL ISOLATE})) ;;; Table rendering algorithm. commit cf80294ae13deaf2dc27f3e28134477b05643d0c Author: Michael Albinus Date: Sun Apr 24 13:55:56 2016 +0200 ; NEWS: Move entries where they belong to diff --git a/etc/NEWS b/etc/NEWS index 91e5419..1ad8451 100644 --- a/etc/NEWS +++ b/etc/NEWS @@ -119,9 +119,30 @@ These variables are for users who would like to avoid the small probability of data corruption due to techniques Emacs uses to recover in these situations. ++++ +** A second dir-local file (.dir-locals-2.el) is now accepted. +See the variable 'dir-locals-file-2' for more information. + +--- +** International domain names (IDNA) are now encoded via the new +puny.el library, so that one can visit web sites with non-ASCII URLs. + ++++ +** The new 'timer-list' command lists all active timers in a buffer +where you can cancel them with the 'c' command. + ++++ +** New function 'read-multiple-choice' use to prompt for +multiple-choice questions, with a handy way to display help texts. + * Editing Changes in Emacs 25.2 ++++ +** New bindings for 'query-replace-map'. +'undo', undo the last replacement; bound to 'u'. +'undo-all', undo all replacements; bound to 'U'. + * Changes in Specialized Modes and Packages in Emacs 25.2 @@ -130,6 +151,18 @@ in these situations. --- *** Messages from CMake are now recognized. +** Dired + ++++ +*** In wdired, when editing files to contain slash characters, +the resulting directories are automatically created. Whether +to do this or not is controlled by the +'wdired-create-parent-directories' variable. + ++++ +*** 'W' is now bound to 'browse-url-of-dired-file', and is useful for +viewing HTML files and the like. + ** eww +++ @@ -140,6 +173,41 @@ in these situations. with the 'o' command from 'image-map'. +++ +*** A new command 'C' ('eww-toggle-colors') can be used to toggle +whether to use the HTML-specified colors or not. The user can also +customize the 'shr-use-colors' variable. + +--- +*** Images that are being loaded are now marked with grey +"placeholder" images of the size specified by the HTML. They are then +replaced by the real images asynchronously, which will also now +respect width/height HTML specs (unless they specify widths/heights +bigger than the current window). + +** Images + ++++ +*** Images are automatically scaled before displaying based on the +'image-scaling-factor' variable (if Emacs supports scaling the images +in question). + ++++ +*** Images inserted with 'insert-image' and related functions get a +keymap put into the text properties (or overlays) that span the +image. This keymap binds keystrokes for manipulating size and +rotation, as well as saving the image to a file. These commands are +also available in 'image-mode'. + ++++ +*** A new library for creating and manipulating SVG images has been +added. See the "SVG Images" section in the lispref manual for +details. + ++++ +*** New setf-able function to access and set image parameters is +provided: 'image-property'. + ++++ ** The commands that add ChangeLog entries now prefer a VCS root directory for the ChangeLog file, if none already exists. Customize 'change-log-directory-files' to nil for the old behavior. @@ -147,14 +215,25 @@ for the ChangeLog file, if none already exists. Customize --- ** Support for non-string values of 'time-stamp-format' has been removed. -** Tramp - ** Message --- *** `message-use-idna' now defaults to t (because Emacs comes with built-in IDNA support now). +--- +*** The 'message-valid-fqdn-regexp' variable has been removed, since +there are now top-level domains added all the time. Message will no +longer warn about sending emails to top-level domains it hasn't heard +about. + +*** 'message-beginning-of-line' (bound to C-a) understands folded headers. +In 'visual-line-mode' it will look for the true beginning of a header +while in non-'visual-line-mode' it will move the point to the indented +header's value. + +** Tramp + +++ *** New connection method "sg", which allows to edit files under different group ID. @@ -176,6 +255,39 @@ different group ID. string literals. The syntax variants \N{character name} and \N{U+code} are supported. ++++ +** Prog mode has some support for multi-mode indentation. +This allows better indentation support in modes that support multiple +programming languages in the same buffer, like literate programming +environments or ANTLR programs with embedded Python code. + +A major mode can provide indentation context for a sub-mode through +the 'prog-indentation-context' variable. To support this, modes that +provide indentation should use 'prog-widen' instead of 'widen' and +'prog-first-column' instead of a literal zero. See the node +"Mode-Specific Indent" in the ELisp manual for more details. + +** ERC + +*** New variable 'erc-default-port-tls' used to connect to TLS IRC +servers. + +** URL + ++++ +*** The new function 'url-cookie-delete-cookie' can be used to +programmatically delete all cookies, or cookies from a specific +domain. + +*** The URL package now support https over proxies supporting CONNECT. + +** VC and related modes + +--- +*** The VC state indicator in the mode line now defaults to more +colorful faces to make it more obvious to the user what the state is. +See the 'vc-faces' customization group. + * New Modes and Packages in Emacs 25.2 @@ -186,6 +298,18 @@ string literals. The syntax variants \N{character name} and ** Resizing a frame no longer runs 'window-configuration-change-hook'. Put your function on 'window-size-change-functions' instead. +** 'C-up', 'C-down', 'C-left' and 'C-right' are now defined in term +mode to send the same escape sequences that xterm does. This makes +things like forward-word in readline work. + +--- +** hideshow mode got four key bindings that are analogous to outline +mode bindings: 'C-c @ C-a', 'C-c @ C-t', 'C-c @ C-d', and 'C-c @ C-e.' + +** The grep/rgrep/lgrep functions will now ask about saving files +before running. This is controlled by the 'grep-save-buffers' +variable. + * Lisp Changes in Emacs 25.2 @@ -218,6 +342,14 @@ a new window when opening man pages when there's already one, use (inhibit-same-window . nil) (mode . Man-mode)))) +--- +** There is now a new variable 'flyspell-sort-corrections-function' +that allows changing the way corrections are sorted. + +--- +** The new command 'fortune-message' has been added, which displays +fortunes in the echo area. + +++ ** New function 'func-arity' returns information about the argument list of an arbitrary function. @@ -237,10 +369,20 @@ permanent and documented, and may be used by Lisp programs. Its value is a list of currently open parenthesis positions, starting with the outermost parenthesis. +--- +** 'read-color' will now display the color names using the color itself +as the background color. + ** The function 'redirect-debugging-output' now works on platforms other than GNU/Linux. +++ +** The new function 'string-version-lessp' compares strings by +interpreting consecutive runs of numerical characters as numbers, and +compares their numerical values. According to this predicate, +"foo2.png" is smaller than "foo12.png". + ++++ ** New functions 'sxhash-eq' and 'sxhash-eql' return hash codes of a Lisp object suitable for use with 'eq' and 'eql' correspondingly. If two objects are 'eq' ('eql'), then the result of 'sxhash-eq' @@ -436,31 +578,16 @@ by default, and must be enabled by using the '--with-modules' option at configure time. +++ -** A second dir-local file (.dir-locals-2.el) is now accepted. -See the variable 'dir-locals-file-2' for more information. - -+++ ** Network security (TLS/SSL certificate validity and the like) is added via the new Network Security Manager (NSM) and controlled via the 'network-security-level' variable. ---- -** International domain names (IDNA) are now encoded via the new -puny.el library, so that one can visit web sites with non-ASCII URLs. - +++ ** C-h l now also lists the commands that were run. -** The new M-s M-w key binding uses eww to search the web for the -text in the region. - +++ -** The new 'timer-list' command lists all active timers in a buffer -where you can cancel them with the 'c' command. - -** M-x suggests shorthands and ignores obsolete commands for completion. -** x-select-enable-clipboard is renamed select-enable-clipboard. -x-select-enable-primary and renamed select-enable-primary. +** x-select-enable-clipboard is renamed select-enable-clipboard +and x-select-enable-primary is renamed select-enable-primary. Additionally they both now apply to all systems (OSX, GNUstep, Windows, you name it), with the proviso that on some systems (e.g. Windows) select-enable-primary is ineffective since the system doesn't @@ -476,10 +603,6 @@ selected window is strongly dedicated to its buffer. 'even-window-sizes' and now handles window widths as well. +++ -** New function 'read-multiple-choice' use to prompt for -multiple-choice questions, with a handy way to display help texts. - -+++ ** terpri gets an optional arg ENSURE to conditionally output a newline. +++ @@ -601,11 +724,6 @@ is intended for adding to 'kill-emacs-query-functions'. in favor of the global 'M-s h' bindings introduced in Emacs-23.1. They'll disappear soon. -+++ -** New bindings for 'query-replace-map'. -'undo', undo the last replacement; bound to 'u'. -'undo-all', undo all replacements; bound to 'U'. - * Changes in Specialized Modes and Packages in Emacs 25.1 @@ -669,18 +787,6 @@ the ordering of object keys by default. 'json-pretty-print-buffer-ordered' pretty prints JSON objects with object keys sorted alphabetically. -+++ -** Prog mode has some support for multi-mode indentation. -This allows better indentation support in modes that support multiple -programming languages in the same buffer, like literate programming -environments or ANTLR programs with embedded Python code. - -A major mode can provide indentation context for a sub-mode through -the 'prog-indentation-context' variable. To support this, modes that -provide indentation should use 'prog-widen' instead of 'widen' and -'prog-first-column' instead of a literal zero. See the node -"Mode-Specific Indent" in the ELisp manual for more details. - ** Prettify Symbols mode +++ @@ -736,9 +842,6 @@ obsolete alias for the new 'save-place-local-mode' command. 'erc-network-hide-list' and 'erc-channel-hide-list' will only hide the specified message types for the respective specified targets. -*** New variable 'erc-default-port-tls' used to connect to TLS IRC -servers. - --- *** Reconnection is now asynchronous. @@ -990,11 +1093,6 @@ whether to use variable-pitch fonts or not. The user can also customize the 'shr-use-fonts' variable. +++ -*** A new command 'C' ('eww-toggle-colors') can be used to toggle -whether to use the HTML-specified colors or not. The user can also -customize the 'shr-use-colors' variable. - -+++ *** A new command 'R' ('eww-readable') will try do identify the main textual parts of a web page and display only that, leaving menus and the like off the page. @@ -1004,13 +1102,6 @@ the like off the page. toggle the paragraph direction between left-to-right and right-to-left. --- -*** Images that are being loaded are now marked with grey -"placeholder" images of the size specified by the HTML. They are then -replaced by the real images asynchronously, which will also now -respect width/height HTML specs (unless they specify widths/heights -bigger than the current window). - ---- *** You can now use several eww buffers in parallel by renaming eww buffers you want to keep separate. @@ -1049,17 +1140,6 @@ invalid certificates are marked in red. *** text/html messages that contain inline image parts will be transformed into multipart/related messages before sending. ---- -*** The 'message-valid-fqdn-regexp' variable has been removed, since -there are now top-level domains added all the time. Message will no -longer warn about sending emails to top-level domains it hasn't heard -about. - -*** 'message-beginning-of-line' (bound to C-a) understands folded headers. -In 'visual-line-mode' it will look for the true beginning of a header -while in non-'visual-line-mode' it will move the point to the indented -header's value. - +++ ** In Show Paren Mode, a parenthesis can be highlighted when point stands inside it, and certain parens can be highlighted when point is @@ -1071,30 +1151,6 @@ respectively, 'show-paren-when-point-inside-paren' or ** If gpg2 exists on the system, it is now used as the default value of 'epg-gpg-program' (instead of gpg). -** Images - -+++ -*** Images are automatically scaled before displaying based on the -'image-scaling-factor' variable (if Emacs supports scaling the images -in question). - -+++ -*** Images inserted with 'insert-image' and related functions get a -keymap put into the text properties (or overlays) that span the -image. This keymap binds keystrokes for manipulating size and -rotation, as well as saving the image to a file. These commands are -also available in 'image-mode'. - -+++ -*** A new library for creating and manipulating SVG images has been -added. See the "SVG Images" section in the lispref manual for -details. - -+++ -*** New setf-able function to access and set image parameters is -provided: 'image-property'. - - ** Lisp mode --- @@ -1268,13 +1324,6 @@ variable, meaning you can bind it around an 'url-retrieve' call. plist will contain a :peer element that has the output of 'gnutls-peer-status' (if Emacs is built with GnuTLS support). -+++ -*** The new function 'url-cookie-delete-cookie' can be used to -programmatically delete all cookies, or cookies from a specific -domain. - -*** The URL package now support https over proxies supporting CONNECT. - ** Tramp +++ @@ -1324,11 +1373,6 @@ This command is useful when you perform version control commands outside Emacs (e.g., from the shell prompt), or if you switch the VC back-end for the buffer's file, or remove it from version control. ---- -*** The VC state indicator in the mode line now defaults to more -colorful faces to make it more obvious to the user what the state is. -See the 'vc-faces' customization group. - +++ *** New option 'vc-annotate-background-mode' controls whether the color range from 'vc-annotate-color-map' is applied to the @@ -1617,15 +1661,6 @@ compression command is determined from the new 'dired-compress-files-alist' variable. +++ -*** In wdired, when editing files to contain slash characters, -the resulting directories are automatically created. Whether -to do this or not is controlled by the -'wdired-create-parent-directories' variable. - -+++ -*** 'W' is now bound to 'browse-url-of-dired-file', and is useful for -viewing HTML files and the like. - *** New user interface for the 'A' and 'Q' commands. These keys, now bound to 'dired-do-find-regexp' and 'dired-do-find-regexp-and-replace', work similarly to 'xref-find-apropos' @@ -1771,14 +1806,6 @@ Although M-x term still sets EMACS for compatibility with Bash 4.3 and earlier, this is deprecated and will be phased out when Bash 4.4 or later takes over. Use the INSIDE_EMACS environment variable instead. -** 'C-up', 'C-down', 'C-left' and 'C-right' are now defined in term -mode to send the same escape sequences that xterm does. This makes -things like forward-word in readline work. - ---- -** hideshow mode got four key bindings that are analogous to outline -mode bindings: 'C-c @ C-a', 'C-c @ C-t', 'C-c @ C-d', and 'C-c @ C-e.' - +++ ** 'save-excursion' does not save&restore the mark any more. Use 'save-mark-and-excursion' if you want the old behavior. @@ -1873,10 +1900,6 @@ behavior, set 'diff-switches' to '-c'. dynamically. Any third-party code that changes these templates should be updated accordingly. -** The grep/rgrep/lgrep functions will now ask about saving files -before running. This is controlled by the 'grep-save-buffers' -variable. - +++ ** '(/ N)' is now equivalent to '(/ 1 N)' rather than to '(/ N 1)'. The new behavior is compatible with Common Lisp and with XEmacs. @@ -1982,10 +2005,6 @@ details. It should be placed right where the docstring would be, and FORM is then evaluated (and should return a string) when the closure is built. ---- -** The new command 'fortune-message' has been added, which displays -fortunes in the echo area. - +++ ** define-inline provides a new way to define inlinable functions. @@ -2012,12 +2031,6 @@ environment. For the time being this is implemented for modern POSIX systems and for MS-Windows, for other systems they fall back to their counterparts 'string-lessp' and 'string-equal'. -+++ -** The new function 'string-version-lessp' compares strings by -interpreting consecutive runs of numerical characters as numbers, and -compares their numerical values. According to this predicate, -"foo2.png" is smaller than "foo12.png". - --- *** The ls-lisp package uses 'string-collate-lessp' to sort file names. The effect is that, on systems that use ls-lisp for Dired, the default @@ -2212,14 +2225,6 @@ coding-system of your choice when invoking functions like 'prin1' and ** New possible value for 'system-type': 'nacl'. This is used by Google's Native Client (NaCl). ---- -** 'read-color' will now display the color names using the color itself -as the background color. - ---- -** There is now a new variable 'flyspell-sort-corrections-function' -that allows changing the way corrections are sorted. - ** Miscellaneous name change --- commit a28873ce734b3618b0e8f6892e65db24d2f18da8 Author: Steve Purcell Date: Sun Apr 24 13:44:37 2016 +0200 Allow _ characters in SQL prompts * lisp/progmodes/sql.el (sql-product-alist): Allow _ characters in SQL prompts (bug#22596). Fixes issue 22596, whereby "_" is now not considered a word constituent character in sql-interactive-mode, so prompts like "foo_dev# " are not correctly detected. Rather than piggy-back on the symbol table, we explicitly match against alphanumeric chars or "_". diff --git a/lisp/progmodes/sql.el b/lisp/progmodes/sql.el index fd59f46..be7c4dd 100644 --- a/lisp/progmodes/sql.el +++ b/lisp/progmodes/sql.el @@ -462,9 +462,9 @@ file. Since that is a plaintext file, this could be dangerous." :list-all ("\\d+" . "\\dS+") :list-table ("\\d+ %s" . "\\dS+ %s") :completion-object sql-postgres-completion-object - :prompt-regexp "^\\w*=[#>] " + :prompt-regexp "^[[:alnum:]_]*=[#>] " :prompt-length 5 - :prompt-cont-regexp "^\\w*[-(][#>] " + :prompt-cont-regexp "^[[:alnum:]_]*[-(][#>] " :input-filter sql-remove-tabs-filter :terminator ("\\(^\\s-*\\\\g$\\|;\\)" . "\\g")) @@ -514,9 +514,9 @@ file. Since that is a plaintext file, this could be dangerous." :sqli-comint-func sql-comint-vertica :list-all ("\\d" . "\\dS") :list-table "\\d %s" - :prompt-regexp "^\\w*=[#>] " + :prompt-regexp "^[[:alnum:]_]*=[#>] " :prompt-length 5 - :prompt-cont-regexp "^\\w*[-(][#>] ") + :prompt-cont-regexp "^[[:alnum:]_]*[-(][#>] ") ) "An alist of product specific configuration settings. commit 4f40f5f63aaf2948a7b99c3a2eed0e50b2aa3a47 Author: Tino Calancha Date: Sat Apr 23 12:41:28 2016 -0700 describe-char: fix insert char documentation * lisp/descr-text.el (describe-char): Only 'ucs-names' entries can be inserted by unicode name (Bug#23325). Copyright-paperwork-exempt: yes diff --git a/lisp/descr-text.el b/lisp/descr-text.el index a352ed0..5f1a430 100644 --- a/lisp/descr-text.el +++ b/lisp/descr-text.el @@ -619,7 +619,7 @@ relevant to POS." (let ((name (or (get-char-code-property char 'name) (get-char-code-property char 'old-name)))) - (if name + (if (and name (assoc-string name (ucs-names))) (format "type \"C-x 8 RET %x\" or \"C-x 8 RET %s\"" char name) commit 87ee542fbc93e172d10fb742a15b2a9fdc526992 Author: Dmitry Gutov Date: Sat Apr 23 22:16:27 2016 +0300 (vc-git-mode-line-string): Don't use `replace-regexp-in-string' * lisp/vc/vc-git.el (vc-git-mode-line-string): Use `substring' instead of `replace-regexp-in-string', because REV can be nil (e.g. when FILE is a directory, bug#23344), and we actually know we only need the first 4 characters. diff --git a/lisp/vc/vc-git.el b/lisp/vc/vc-git.el index f8b0b6f..5d06bf7 100644 --- a/lisp/vc/vc-git.el +++ b/lisp/vc/vc-git.el @@ -284,7 +284,7 @@ Should be consistent with the Git config value i18n.logOutputEncoding." (def-ml (vc-default-mode-line-string 'Git file)) (help-echo (get-text-property 0 'help-echo def-ml)) (face (get-text-property 0 'face def-ml))) - (propertize (replace-regexp-in-string (concat rev "\\'") disp-rev def-ml t t) + (propertize (concat (substring def-ml 0 4) disp-rev) 'face face 'help-echo (concat help-echo "\nCurrent revision: " rev)))) commit 5c587fdff164e8b90beb47f6da64b4884290e40a (tag: refs/tags/emacs-25.0.93) Author: Nicolas Petton Date: Fri Apr 22 19:00:05 2016 +0200 Bump version to 25.0.93 * README: * configure.ac: * msdos/sed2v2.inp: Bump Emacs version to 25.0.93. diff --git a/README b/README index f5ea1dd..915d290 100644 --- a/README +++ b/README @@ -2,7 +2,7 @@ Copyright (C) 2001-2016 Free Software Foundation, Inc. See the end of the file for license conditions. -This directory tree holds version 25.0.92 of GNU Emacs, the extensible, +This directory tree holds version 25.0.93 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 7184d68..4f169b6 100644 --- a/configure.ac +++ b/configure.ac @@ -23,7 +23,7 @@ dnl along with GNU Emacs. If not, see . AC_PREREQ(2.65) dnl Note this is parsed by (at least) make-dist and lisp/cedet/ede/emacs.el. -AC_INIT(GNU Emacs, 25.0.92, bug-gnu-emacs@gnu.org) +AC_INIT(GNU Emacs, 25.0.93, bug-gnu-emacs@gnu.org) dnl Set emacs_config_options to the options of 'configure', quoted for the shell, dnl and then quoted again for a C string. Separate options with spaces. diff --git a/msdos/sed2v2.inp b/msdos/sed2v2.inp index 3b316c2..aa948fd 100644 --- a/msdos/sed2v2.inp +++ b/msdos/sed2v2.inp @@ -66,7 +66,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 "25.0.92"/ +/^#undef VERSION/s/^.*$/#define VERSION "25.0.93"/ /^#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/ commit 960f90d057aa3b09f6f6f287e8996a6e9444c803 Author: Nicolas Petton Date: Fri Apr 22 18:59:44 2016 +0200 * etc/AUTHORS: Update the AUTHORS file diff --git a/etc/AUTHORS b/etc/AUTHORS index ea21953..14e4fd3 100644 --- a/etc/AUTHORS +++ b/etc/AUTHORS @@ -59,7 +59,7 @@ Adrian Robert: co-wrote ns-win.el and changed nsterm.m nsfns.m nsfont.m nsterm.h nsmenu.m configure.ac src/Makefile.in macos.texi README config.in emacs.c font.c keyboard.c nsgui.h nsimage.m xdisp.c image.c lib-src/Makefile.in lisp.h menu.c - Makefile.in and 79 other files + Makefile.in and 78 other files Ævar Arnfjörð Bjarmason: changed rcirc.el @@ -105,7 +105,8 @@ Alan Shutko: changed diary-lib.el calendar.el bindings.el cal-hebrew.el easy-mmode.el gnus-sum.el ibuf-ext.el ibuffer.el lunar.el macros.el solar.el -Alan Third: changed emacs.c nsterm.h nsterm.m +Alan Third: wrote dabbrev-tests.el +and changed emacs.c nsterm.h nsterm.m Alastair Burt: changed gnus-art.el smiley.el @@ -396,10 +397,10 @@ Barry O'Reilly: changed simple.el lisp.h undo-tests.el keyboard.c Bastien Guerry: wrote gnus-bookmark.el and co-wrote org-bibtex.el org-list.el org-protocol.el org-src.el and changed org.el org-agenda.el org.texi ox-html.el org-clock.el - org-capture.el org-table.el ox-latex.el org-exp.el ox-odt.el - org-compat.el ob.el org-mobile.el org-colview.el org-publish.el ox.el - org-macs.el org-pcomplete.el org-timer.el org-faces.el ox-ascii.el - and 119 other files + org-capture.el org-table.el ox-latex.el ox.el ox-odt.el org-compat.el + ox-publish.el ob.el org-mobile.el org-colview.el org-macs.el + org-pcomplete.el org-timer.el org-faces.el ox-ascii.el org-archive.el + and 116 other files Ben A. Mesander: co-wrote erc-dcc.el @@ -587,11 +588,11 @@ Carsten Dominik: wrote idlw-complete-structtag.el idlw-toolbar.el and co-wrote idlw-help.el idlw-shell.el idlwave.el org-bbdb.el org-bibtex.el org-entities.el org-gnus.el org-list.el org-pcomplete.el org-src.el ox-beamer.el ox-html.el ox-icalendar.el -and changed org-exp.el ox-latex.el org.texi org-publish.el - org-remember.el orgcard.tex org-export-latex.el org-docbook.el - ox-ascii.el org-attach.el org-protocol.el org-mouse.el org-jsinfo.el - org-mac-message.el org-wl.el org-crypt.el org-freemind.el idlw-rinfo.el - org-exp-blocks.el org-habit.el org-mhe.el and 35 other files +and changed ox.el ox-latex.el org.texi org-remember.el orgcard.tex + ox-publish.el org-docbook.el ox-ascii.el org-attach.el org-protocol.el + org-mouse.el org-mac-message.el org-wl.el ox-jsinfo.el org-crypt.el + org-freemind.el idlw-rinfo.el org-exp-blocks.el org-habit.el org-mhe.el + org-plot.el and 35 other files Caveh Jalali: changed configure.ac intel386.h sol2-4.h @@ -708,7 +709,7 @@ Christopher Allan Webber: changed gamegrid.el org-agenda.el tetris.el Christopher Genovese: changed assoc.el help-fns.el -Christophe Rhodes: changed org-exp.el ox-latex.el +Christophe Rhodes: changed ox-latex.el ox.el Christopher J. Madsen: wrote decipher.el and changed replace.el files.el ispell.el time.el @@ -805,10 +806,10 @@ Dan Christensen: changed gnus-sum.el nndoc.el nnfolder.el gnus-art.el Dan Davison: wrote ob-matlab.el ob-octave.el and co-wrote ob-R.el ob-core.el ob-exp.el ob-lob.el ob-perl.el ob-python.el ob-ref.el org-src.el -and changed ob.el ob-sh.el org-exp.el org.el ox-latex.el ob-tangle.el - ob-C.el ob-asymptote.el ob-clojure.el ob-haskell.el ob-ruby.el - ob-scheme.el ob-table.el ob-ditaa.el ob-dot.el ob-gnuplot.el ob-js.el - ob-mscgen.el ob-ocaml.el ob-org.el ob-plantuml.el and 14 other files +and changed ob.el ob-sh.el org.el ox.el ox-latex.el ob-tangle.el ob-C.el + ob-asymptote.el ob-clojure.el ob-haskell.el ob-ruby.el ob-scheme.el + ob-table.el ob-ditaa.el ob-dot.el ob-gnuplot.el ob-js.el ob-mscgen.el + ob-ocaml.el ob-org.el ob-plantuml.el and 14 other files Daniel Bergey: changed indian.el @@ -825,7 +826,7 @@ and changed w32fns.c alloc.c emacs.c cl-macs.el image.c keyboard.c lisp.h unexw32.c w32.c and 154 other files Daniel Dehennin: changed mml2015.el gnus-mlspl.el gnus-msg.el - mm-decode.el org-exp.el + mm-decode.el ox.el Daniel E. Doherty: changed calc.texi @@ -1009,9 +1010,9 @@ David Lawrence: changed comint.el simple.el files.el c++-mode.el David Lord: changed timeclock.el -David Maus: changed org.el org-agenda.el org-exp.el org-feed.el org-wl.el +David Maus: changed org.el org-agenda.el ox.el org-feed.el org-wl.el org-macs.el ox-html.el org-capture.el org.texi org-gnus.el org-bbdb.el - org-clock.el org-protocol.el org-publish.el ob-haskell.el ob.el + org-clock.el org-protocol.el ox-publish.el ob-haskell.el ob.el org-bibtex.el org-compat.el org-footnote.el org-id.el org-list.el and 20 other files @@ -1340,7 +1341,7 @@ Eric Schulte: wrote ob-C.el ob-asymptote.el ob-awk.el ob-calc.el and co-wrote ob-R.el ob-clojure.el ob-core.el ob-exp.el ob-fortran.el ob-lisp.el ob-lob.el ob-maxima.el ob-perl.el ob-picolisp.el ob-python.el ob-ref.el ob-scheme.el org-bibtex.el -and changed org.texi org.el org-exp-blocks.el org-exp.el ox-latex.el +and changed org.texi org.el org-exp-blocks.el ox.el ox-latex.el org-src.el ob-plantuml.el ob-screen.el org-macs.el org-table.el org-agenda.el org-mouse.el orgcard.tex ob-lilypond.el ob-mscgen.el ob-octave.el org-clock.el org-compat.el org-footnote.el ox-ascii.el @@ -1429,8 +1430,7 @@ Felix S. T. Wu: co-wrote vi.el (public domain) Feng Li: changed calc-ext.el pascal.el which-func.el -Feng Shu: changed org.el org.texi org-exp.el ox-html.el ox-latex.el - ox-odt.el ox.el +Feng Shu: changed org.el org.texi ox.el ox-html.el ox-latex.el ox-odt.el Ferenc Wagner: changed nnweb.el @@ -1693,7 +1693,7 @@ Harald Maier: changed w32heap.c Harald Meland: changed gnus-art.el gnus-salt.el gnus-score.el gnus-util.el gnus-win.el mail-source.el -Harri Kiiskinen: changed org-protocol.el org-publish.el +Harri Kiiskinen: changed org-protocol.el ox-publish.el H. Dieter Wilhelm: changed calc-help.el maintaining.texi @@ -1814,8 +1814,7 @@ Istvan Marko: changed gnus-agent.el xfns.c Itai Zukerman: changed mm-decode.el Ivan Andrus: changed epg.el ffap.el find-file.el ibuf-ext.el ibuffer.el - newcomment.el nextstep/templates/Info.plist.in nxml-mode.el - progmodes/python.el + newcomment.el nxml-mode.el progmodes/python.el Ivan Boldyrev: changed mml1991.el @@ -1862,7 +1861,7 @@ Jaeyoun Chung: changed hangul3.el hanja3.el gnus-mule.el hangul.el Jambunathan K: wrote ox-odt.el and co-wrote ox-html.el -and changed org-lparse.el org.el org-exp.el org.texi icomplete.el +and changed org-lparse.el org.el org.texi ox.el icomplete.el OrgOdtContentTemplate.xml OrgOdtStyles.xml hi-lock.el replace.el minibuffer.el org-footnote.el org-inlinetask.el register.el doc-view.el etags.el htmlfontify.el ido.el indian.el iswitchb.el org-bbdb.el @@ -1924,7 +1923,7 @@ Jan Rychter: changed gnus-msg.el Jan Schormann: wrote solitaire.el -Jan Seeger: changed org-publish.el parse-time.el +Jan Seeger: changed ox-publish.el parse-time.el Jan Tatarik: wrote gnus-icalendar.el and changed gnus-score.el gnus-logic.el @@ -2230,7 +2229,7 @@ John Williams: changed etags.el John Yates: changed hideshow.el -Jon Anders Skorpen: changed org-publish.el +Jon Anders Skorpen: changed ox-publish.el Jonas Bernoulli: changed eieio.el button.el ido.el lisp-mnt.el tabulated-list.el tips.texi @@ -2376,7 +2375,7 @@ and changed message.el gnus-agent.el gnus-sum.el files.el nnmail.el Kailash C. Chowksey: changed HELLO ind-util.el kannada.el knd-util.el lisp/Makefile.in loadup.el -Kai Tetzlaff: changed org-publish.el url-http.el +Kai Tetzlaff: changed ox-publish.el url-http.el Kalle Kankare: changed image.c @@ -2412,7 +2411,7 @@ and changed simple.el files.el simple-test.el vc-svn.el doc-view.el Karl Heuer: changed keyboard.c lisp.h xdisp.c buffer.c xfns.c xterm.c alloc.c files.el frame.c configure.ac window.c data.c minibuf.c editfns.c fns.c process.c Makefile.in fileio.c simple.el keymap.c - indent.c and 445 other files + indent.c and 446 other files Karl Kleinpaste: changed gnus-sum.el gnus-art.el gnus-picon.el gnus-score.el gnus-uu.el gnus-xmas.el gnus.el mm-uu.el mml.el nnmail.el @@ -2672,11 +2671,10 @@ Lasse Rasinen: changed gnus-start.el Laurent Martelli: changed mm-decode.el Lawrence Mitchell: wrote erc-backend.el erc-log.el -and changed erc.el ox-latex.el org.el erc-match.el erc-nets.el - erc-nickserv.el org-exp.el ox-html.el browse-url.el erc-button.el - erc-compat.el erc-dcc.el erc-fill.el erc-list.el erc-track.el ielm.el - ob.el Makefile cl-macs.el erc-autoaway.el erc-autojoin.el - and 26 other files +and changed erc.el ox-latex.el org.el ox.el erc-match.el erc-nets.el + erc-nickserv.el ox-html.el browse-url.el erc-button.el erc-compat.el + erc-dcc.el erc-fill.el erc-list.el erc-track.el ielm.el ob.el Makefile + cl-macs.el erc-autoaway.el erc-autojoin.el and 25 other files Lawrence R. Dodd: co-wrote dired-x.el and changed fortran.el ispell.el sendmail.el cmuscheme.el comint.el @@ -2757,7 +2755,7 @@ Lukas Huonker: changed tetris.el Łukasz Demianiuk: changed erc.el Łukasz Stelmach: changed cookie1.el gtkutil.c message.el org-agenda.el - org-bbdb.el org-exp.el org.el ox-html.el ps-print.el + org-bbdb.el org.el ox-html.el ox.el ps-print.el Luke Lee: changed hideif.el @@ -2785,7 +2783,7 @@ Malcolm Purvis: changed spam-stat.el Manoj Srivastava: wrote manoj-dark-theme.el -Manuel Giraud: changed ox-html.el org-publish.el org.texi +Manuel Giraud: changed ox-html.el ox-publish.el org.texi Manuel Gómez: changed speedbar.el @@ -3309,7 +3307,7 @@ Nicholas Maniscalco: changed term.el Nick Alcock: changed gnus.el -Nick Dokos: changed org-exp.el org-table.el icalendar.el mh-search.el +Nick Dokos: changed org-table.el ox.el icalendar.el mh-search.el org-mobile.el org.el ox-ascii.el url-cache.el Nick Roberts: wrote gdb-mi.el t-mouse.el @@ -3328,10 +3326,10 @@ Nicolas Goaziou: wrote org-element.el org-macro.el ox-ascii.el ox-latex.el ox-md.el ox-org.el ox.el and co-wrote ox-beamer.el ox-icalendar.el ox-man.el and changed org-list.el org.el ox-html.el org-footnote.el ox-texinfo.el - org-exp.el org.texi ox-publish.el ox-odt.el org-inlinetask.el - org-indent.el org-docbook.el ob-exp.el org-agenda.el org-timer.el ob.el + org.texi ox-publish.el ox-odt.el org-inlinetask.el org-indent.el + org-docbook.el ob-exp.el org-agenda.el org-timer.el ob.el org-capture.el ob-asymptote.el org-clock.el org-macs.el - org-pcomplete.el and 25 other files + org-pcomplete.el org-table.el and 22 other files Nicolas Graner: changed message.el @@ -3370,7 +3368,7 @@ Nils Ackermann: changed message.el nnmh.el reftex-vars.el Noah Friedman: wrote eldoc.el rlogin.el type-break.el and co-wrote erc-dcc.el -and changed rsz-mini.el comint.el emacs-buffer.gdb files.el Makefile +and changed rsz-mini.el emacs-buffer.gdb comint.el files.el Makefile mailabbrev.el sendmail.el subr.el timer.el yow.el apropos.el battery.el bytecomp.el calc.el coding.c complete.el config.in configure.ac copyright.h fns.c gnu-linux.h and 20 other files @@ -3482,7 +3480,7 @@ and co-wrote cal-dst.el and changed lisp.h configure.ac alloc.c process.c xdisp.c fileio.c sysdep.c keyboard.c image.c editfns.c emacs.c xterm.c lread.c data.c callproc.c fns.c Makefile.in eval.c buffer.c dispnew.c gnulib.mk - and 1473 other files + and 1472 other files Paul Fisher: changed fns.c @@ -3644,10 +3642,10 @@ Philipp Haselwarter: changed gnus-agent.el gnus-sum.el gnus-sync.el Philipp Rumpf: changed electric.el -Philipp Stephani: changed emacs-module.c lisp.h mod-test.c Makefile - alloc.c configure.ac dynlib.c dynlib.h emacs-module.h eval.c fns.c - modhelp.py src/Makefile.in test.el xterm.el src/emacs-module.c - whitespace.el +Philipp Stephani: wrote xt-mouse-tests.el +and changed emacs-module.c lisp.h mod-test.c Makefile alloc.c + configure.ac dynlib.c dynlib.h emacs-module.h eval.c fns.c modhelp.py + src/Makefile.in test.el xterm.el src/emacs-module.c whitespace.el Phillip Lord: changed undo.c simple.el cmds.c keyboard.c automated/Makefile.in htmlfontify.el insdel.c keyboard.h simple-test.el @@ -3689,8 +3687,8 @@ Przemyslaw Wojnowski: changed cl-lib-tests.el Przemysław Wojnowski: wrote obarray-tests.el sgml-mode-tests.el and changed obarray.el sgml-mode.el -Puneeth Chaganti: changed org.texi org-exp.el org-agenda.el - org-capture.el ox-html.el +Puneeth Chaganti: changed org.texi ox.el org-agenda.el org-capture.el + ox-html.el Rafael Laboissiere: changed org-remember.el org-bibtex.el org.el org.texi @@ -3880,7 +3878,7 @@ Roger Breitenstein: changed smtpmail.el Roland B. Roberts: changed buffer.h callproc.c dired.c files.el gnus-group.el gnus-sum.el process.c sort.el sysdep.c systty.h -Roland Kaufmann: changed org-exp.el +Roland Kaufmann: changed ox.el Roland McGrath: wrote autoload.el etags.el map-ynp.el progmodes/grep.el and co-wrote find-dired.el progmodes/compile.el @@ -4038,7 +4036,7 @@ and co-wrote dired-x.el find-dired.el and changed add-log.el Sebastian Rose: co-wrote org-protocol.el -and changed org-publish.el ftfont.c org-jsinfo.el +and changed ox-publish.el ftfont.c ox-jsinfo.el Sebastian Tennant: changed desktop.el @@ -4055,9 +4053,8 @@ Sébastien Vauban: changed org.el org-agenda.el ox-latex.el ob-core.el org-clock.el ox-ascii.el ox-html.el Seiji Zenitani: changed nsfns.m frame.c xterm.c PkgInfo document.icns - find-func.el frame.h help-fns.el macfns.c - nextstep/templates/Info.plist.in nsfont.m nsterm.m w32fns.c xdisp.c - xfns.c + find-func.el frame.h help-fns.el macfns.c nsfont.m nsterm.m w32fns.c + xdisp.c xfns.c Sen Nagata: wrote crm.el rfc2368.el @@ -4296,8 +4293,7 @@ and changed emacsclient.c server.el Sun Yijiang: changed TUTORIAL.cn -Suvayu Ali: changed org.texi org-exp.el org-inlinetask.el org-src.el - org.el +Suvayu Ali: changed org.texi org-inlinetask.el org-src.el org.el ox.el Svend Tollak Munkejord: changed deuglify.el @@ -4375,7 +4371,7 @@ Tetsuo Tsukamoto: changed nnrss.el Tetsurou Okazaki: changed Makefile.in byte-opt.el lib-src/Makefile.in log-edit.el lread.c xterm.c -T.F. Torrey: changed org-exp.el org-rmail.el +T.F. Torrey: changed org-rmail.el ox.el Thamer Mahmoud: changed arabic.el @@ -4549,8 +4545,6 @@ Toru Tsuneyoshi: changed ange-ftp.el buff-menu.el cus-start.el fileio.c Toshiaki Nomura: changed uxpds.h -Travis Jeffery: changed nextstep/templates/Info.plist.in - Trent W. Buck: changed rcirc.el remember.el rx.el Trevor Murphy: changed gnus.texi nnimap.el org.el @@ -4792,7 +4786,7 @@ and changed macterm.c macfns.c mac-win.el mac.c macterm.h macmenu.c Yann Dirson: changed imenu.el -Yann Hodique: changed org-publish.el package.el rcirc.el +Yann Hodique: changed ox-publish.el package.el rcirc.el Yasushi Shoji: changed org-clock.el org.texi ox-ascii.el commit b21e9d4df22c674ce4287d6262322a6d888deb12 Author: Nicolas Petton Date: Fri Apr 22 18:58:57 2016 +0200 * admin/update_autogen: Use #!/usr/bin/env bash diff --git a/admin/update_autogen b/admin/update_autogen index 199a3aa..82ad622 100755 --- a/admin/update_autogen +++ b/admin/update_autogen @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash ### update_autogen - update some auto-generated files in the Emacs tree ## Copyright (C) 2011-2016 Free Software Foundation, Inc. commit cf14218c6816c2ad46423a169ce24de054a6309f Author: Nicolas Petton Date: Fri Apr 22 18:57:36 2016 +0200 ; Auto-commit of loaddefs files. diff --git a/lisp/ldefs-boot.el b/lisp/ldefs-boot.el index 4a36812..7a70aa1 100644 --- a/lisp/ldefs-boot.el +++ b/lisp/ldefs-boot.el @@ -3,7 +3,7 @@ ;;; Code: -;;;### (autoloads nil "5x5" "play/5x5.el" (22230 48822 858219 256000)) +;;;### (autoloads nil "5x5" "play/5x5.el" (22230 48822 858219 0)) ;;; Generated autoloads from play/5x5.el (autoload '5x5 "5x5" "\ @@ -65,8 +65,8 @@ should return a grid vector array that is the new solution. ;;;*** -;;;### (autoloads nil "ada-mode" "progmodes/ada-mode.el" (22230 48822 -;;;;;; 864219 229000)) +;;;### (autoloads nil "ada-mode" "progmodes/ada-mode.el" (22266 10298 +;;;;;; 442370 0)) ;;; Generated autoloads from progmodes/ada-mode.el (autoload 'ada-add-extensions "ada-mode" "\ @@ -86,7 +86,7 @@ Ada mode is the major mode for editing Ada code. ;;;*** ;;;### (autoloads nil "ada-stmt" "progmodes/ada-stmt.el" (22230 48822 -;;;;;; 865219 224000)) +;;;;;; 865219 0)) ;;; Generated autoloads from progmodes/ada-stmt.el (autoload 'ada-header "ada-stmt" "\ @@ -97,7 +97,7 @@ Insert a descriptive header at the top of the file. ;;;*** ;;;### (autoloads nil "ada-xref" "progmodes/ada-xref.el" (22230 48822 -;;;;;; 865219 224000)) +;;;;;; 865219 0)) ;;; 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" (22230 48822 932218 -;;;;;; 922000)) +;;;### (autoloads nil "add-log" "vc/add-log.el" (22290 3781 435180 +;;;;;; 179000)) ;;; Generated autoloads from vc/add-log.el (put 'change-log-default-name 'safe-local-variable 'string-or-null-p) @@ -239,7 +239,7 @@ old-style time formats for entries are supported. ;;;*** ;;;### (autoloads nil "advice" "emacs-lisp/advice.el" (22230 48822 -;;;;;; 683220 46000)) +;;;;;; 683220 0)) ;;; Generated autoloads from emacs-lisp/advice.el (defvar ad-redefinition-action 'warn "\ @@ -374,7 +374,7 @@ usage: (defadvice FUNCTION (CLASS NAME [POSITION] [ARGLIST] FLAG...) ;;;*** -;;;### (autoloads nil "align" "align.el" (22230 48822 634220 267000)) +;;;### (autoloads nil "align" "align.el" (22290 3771 143246 695000)) ;;; Generated autoloads from align.el (autoload 'align "align" "\ @@ -477,7 +477,7 @@ A replacement function for `newline-and-indent', aligning as it goes. ;;;*** -;;;### (autoloads nil "allout" "allout.el" (22230 48822 636220 258000)) +;;;### (autoloads nil "allout" "allout.el" (22230 48822 636220 0)) ;;; Generated autoloads from allout.el (push (purecopy '(allout 2 3)) package--builtin-versions) @@ -838,7 +838,7 @@ for details on preparing Emacs for automatic allout activation. ;;;*** ;;;### (autoloads nil "allout-widgets" "allout-widgets.el" (22230 -;;;;;; 48822 635220 263000)) +;;;;;; 48822 635220 0)) ;;; Generated autoloads from allout-widgets.el (push (purecopy '(allout-widgets 1 0)) package--builtin-versions) @@ -897,7 +897,7 @@ outline hot-spot navigation (see `allout-mode'). ;;;*** ;;;### (autoloads nil "ange-ftp" "net/ange-ftp.el" (22230 48822 805219 -;;;;;; 495000)) +;;;;;; 0)) ;;; Generated autoloads from net/ange-ftp.el (defalias 'ange-ftp-re-read-dir 'ange-ftp-reread-dir) @@ -919,7 +919,7 @@ directory, so that Emacs will know its current contents. ;;;*** ;;;### (autoloads nil "animate" "play/animate.el" (22230 48822 858219 -;;;;;; 256000)) +;;;;;; 0)) ;;; Generated autoloads from play/animate.el (autoload 'animate-string "animate" "\ @@ -952,7 +952,7 @@ the buffer *Birthday-Present-for-Name*. ;;;*** ;;;### (autoloads nil "ansi-color" "ansi-color.el" (22230 48822 636220 -;;;;;; 258000)) +;;;;;; 0)) ;;; Generated autoloads from ansi-color.el (push (purecopy '(ansi-color 3 4 2)) package--builtin-versions) @@ -979,7 +979,7 @@ This is a good function to put in `comint-output-filter-functions'. ;;;*** ;;;### (autoloads nil "antlr-mode" "progmodes/antlr-mode.el" (22230 -;;;;;; 48822 865219 224000)) +;;;;;; 48822 865219 0)) ;;; Generated autoloads from progmodes/antlr-mode.el (push (purecopy '(antlr-mode 2 2 3)) package--builtin-versions) @@ -1015,8 +1015,8 @@ Used in `antlr-mode'. Also a useful function in `java-mode-hook'. ;;;*** -;;;### (autoloads nil "appt" "calendar/appt.el" (22230 48822 649220 -;;;;;; 199000)) +;;;### (autoloads nil "appt" "calendar/appt.el" (22290 3771 146246 +;;;;;; 676000)) ;;; Generated autoloads from calendar/appt.el (autoload 'appt-add "appt" "\ @@ -1037,8 +1037,8 @@ ARG is positive, otherwise off. ;;;*** -;;;### (autoloads nil "apropos" "apropos.el" (22230 48822 636220 -;;;;;; 258000)) +;;;### (autoloads nil "apropos" "apropos.el" (22266 10298 385370 +;;;;;; 0)) ;;; Generated autoloads from apropos.el (autoload 'apropos-read-pattern "apropos" "\ @@ -1155,7 +1155,7 @@ Returns list of symbols and documentation found. ;;;*** ;;;### (autoloads nil "arc-mode" "arc-mode.el" (22230 48822 637220 -;;;;;; 254000)) +;;;;;; 0)) ;;; Generated autoloads from arc-mode.el (autoload 'archive-mode "arc-mode" "\ @@ -1175,7 +1175,7 @@ archive. ;;;*** -;;;### (autoloads nil "array" "array.el" (22230 48822 637220 254000)) +;;;### (autoloads nil "array" "array.el" (22230 48822 637220 0)) ;;; Generated autoloads from array.el (autoload 'array-mode "array" "\ @@ -1247,7 +1247,7 @@ Entering array mode calls the function `array-mode-hook'. ;;;*** ;;;### (autoloads nil "artist" "textmodes/artist.el" (22230 48822 -;;;;;; 914219 3000)) +;;;;;; 914219 0)) ;;; Generated autoloads from textmodes/artist.el (push (purecopy '(artist 1 2 6)) package--builtin-versions) @@ -1454,7 +1454,7 @@ Keymap summary ;;;*** ;;;### (autoloads nil "asm-mode" "progmodes/asm-mode.el" (22230 48822 -;;;;;; 866219 220000)) +;;;;;; 866219 0)) ;;; Generated autoloads from progmodes/asm-mode.el (autoload 'asm-mode "asm-mode" "\ @@ -1481,8 +1481,8 @@ Special commands: ;;;*** -;;;### (autoloads nil "auth-source" "gnus/auth-source.el" (22230 -;;;;;; 48822 728219 843000)) +;;;### (autoloads nil "auth-source" "gnus/auth-source.el" (22290 +;;;;;; 3771 182246 444000)) ;;; Generated autoloads from gnus/auth-source.el (defvar auth-source-cache-expiry 7200 "\ @@ -1495,7 +1495,7 @@ let-binding.") ;;;*** ;;;### (autoloads nil "autoarg" "autoarg.el" (22230 48822 637220 -;;;;;; 254000)) +;;;;;; 0)) ;;; Generated autoloads from autoarg.el (defvar autoarg-mode nil "\ @@ -1556,7 +1556,7 @@ This is similar to `autoarg-mode' but rebinds the keypad keys ;;;*** ;;;### (autoloads nil "autoconf" "progmodes/autoconf.el" (22230 48822 -;;;;;; 866219 220000)) +;;;;;; 866219 0)) ;;; Generated autoloads from progmodes/autoconf.el (autoload 'autoconf-mode "autoconf" "\ @@ -1567,7 +1567,7 @@ Major mode for editing Autoconf configure.ac files. ;;;*** ;;;### (autoloads nil "autoinsert" "autoinsert.el" (22230 48822 637220 -;;;;;; 254000)) +;;;;;; 0)) ;;; Generated autoloads from autoinsert.el (autoload 'auto-insert "autoinsert" "\ @@ -1605,8 +1605,8 @@ insert a template for the file depending on the mode of the buffer. ;;;*** -;;;### (autoloads nil "autoload" "emacs-lisp/autoload.el" (22230 -;;;;;; 48822 683220 46000)) +;;;### (autoloads nil "autoload" "emacs-lisp/autoload.el" (22290 +;;;;;; 3771 155246 618000)) ;;; Generated autoloads from emacs-lisp/autoload.el (put 'generated-autoload-file 'safe-local-variable 'stringp) @@ -1657,8 +1657,8 @@ should be non-nil). ;;;*** -;;;### (autoloads nil "autorevert" "autorevert.el" (22230 48822 637220 -;;;;;; 254000)) +;;;### (autoloads nil "autorevert" "autorevert.el" (22298 5692 409287 +;;;;;; 963000)) ;;; Generated autoloads from autorevert.el (autoload 'auto-revert-mode "autorevert" "\ @@ -1746,7 +1746,7 @@ specifies in the mode line. ;;;*** -;;;### (autoloads nil "avoid" "avoid.el" (22230 48822 638220 249000)) +;;;### (autoloads nil "avoid" "avoid.el" (22230 48822 638220 0)) ;;; Generated autoloads from avoid.el (defvar mouse-avoidance-mode nil "\ @@ -1785,7 +1785,7 @@ definition of \"random distance\".) ;;;*** ;;;### (autoloads nil "bat-mode" "progmodes/bat-mode.el" (22230 48822 -;;;;;; 866219 220000)) +;;;;;; 866219 0)) ;;; Generated autoloads from progmodes/bat-mode.el (add-to-list 'auto-mode-alist '("\\.\\(bat\\|cmd\\)\\'" . bat-mode)) @@ -1803,8 +1803,8 @@ Run script using `bat-run' and `bat-run-args'. ;;;*** -;;;### (autoloads nil "battery" "battery.el" (22230 48822 638220 -;;;;;; 249000)) +;;;### (autoloads nil "battery" "battery.el" (22261 18214 489021 +;;;;;; 0)) ;;; Generated autoloads from battery.el (put 'battery-mode-line-string 'risky-local-variable t) @@ -1840,7 +1840,7 @@ seconds. ;;;*** ;;;### (autoloads nil "benchmark" "emacs-lisp/benchmark.el" (22230 -;;;;;; 48822 683220 46000)) +;;;;;; 48822 683220 0)) ;;; Generated autoloads from emacs-lisp/benchmark.el (autoload 'benchmark-run "benchmark" "\ @@ -1877,7 +1877,7 @@ For non-interactive use see also `benchmark-run' and ;;;*** ;;;### (autoloads nil "bibtex" "textmodes/bibtex.el" (22230 48822 -;;;;;; 916218 994000)) +;;;;;; 916218 0)) ;;; Generated autoloads from textmodes/bibtex.el (autoload 'bibtex-initialize "bibtex" "\ @@ -1969,7 +1969,7 @@ A prefix arg negates the value of `bibtex-search-entry-globally'. ;;;*** ;;;### (autoloads nil "bibtex-style" "textmodes/bibtex-style.el" -;;;;;; (22230 48822 914219 3000)) +;;;;;; (22230 48822 914219 0)) ;;; Generated autoloads from textmodes/bibtex-style.el (autoload 'bibtex-style-mode "bibtex-style" "\ @@ -1980,7 +1980,7 @@ Major mode for editing BibTeX style files. ;;;*** ;;;### (autoloads nil "binhex" "mail/binhex.el" (22230 48822 787219 -;;;;;; 577000)) +;;;;;; 0)) ;;; Generated autoloads from mail/binhex.el (defconst binhex-begin-line "^:...............................................................$" "\ @@ -2005,7 +2005,7 @@ Binhex decode region between START and END. ;;;*** ;;;### (autoloads nil "blackbox" "play/blackbox.el" (22230 48822 -;;;;;; 858219 256000)) +;;;;;; 858219 0)) ;;; Generated autoloads from play/blackbox.el (autoload 'blackbox "blackbox" "\ @@ -2125,7 +2125,7 @@ a reflection. ;;;*** ;;;### (autoloads nil "bookmark" "bookmark.el" (22230 48822 638220 -;;;;;; 249000)) +;;;;;; 0)) ;;; Generated autoloads from bookmark.el (define-key ctl-x-r-map "b" 'bookmark-jump) (define-key ctl-x-r-map "m" 'bookmark-set) @@ -2350,7 +2350,7 @@ Incremental search of bookmarks, hiding the non-matches as we go. ;;;*** ;;;### (autoloads nil "browse-url" "net/browse-url.el" (22230 48822 -;;;;;; 806219 491000)) +;;;;;; 806219 0)) ;;; Generated autoloads from net/browse-url.el (defvar browse-url-browser-function 'browse-url-default-browser "\ @@ -2698,7 +2698,7 @@ from `browse-url-elinks-wrapper'. ;;;*** -;;;### (autoloads nil "bs" "bs.el" (22230 48822 639220 244000)) +;;;### (autoloads nil "bs" "bs.el" (22230 48822 639220 0)) ;;; Generated autoloads from bs.el (push (purecopy '(bs 1 17)) package--builtin-versions) @@ -2740,7 +2740,7 @@ name of buffer configuration. ;;;*** ;;;### (autoloads nil "bubbles" "play/bubbles.el" (22230 48822 859219 -;;;;;; 251000)) +;;;;;; 0)) ;;; Generated autoloads from play/bubbles.el (autoload 'bubbles "bubbles" "\ @@ -2762,7 +2762,7 @@ columns on its right towards the left. ;;;*** ;;;### (autoloads nil "bug-reference" "progmodes/bug-reference.el" -;;;;;; (22230 48822 866219 220000)) +;;;;;; (22230 48822 866219 0)) ;;; Generated autoloads from progmodes/bug-reference.el (put 'bug-reference-url-format 'safe-local-variable (lambda (s) (or (stringp s) (and (symbolp s) (get s 'bug-reference-url-format))))) @@ -2782,8 +2782,8 @@ Like `bug-reference-mode', but only buttonize in comments and strings. ;;;*** -;;;### (autoloads nil "bytecomp" "emacs-lisp/bytecomp.el" (22230 -;;;;;; 48822 685220 37000)) +;;;### (autoloads nil "bytecomp" "emacs-lisp/bytecomp.el" (22290 +;;;;;; 3771 157246 605000)) ;;; 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) @@ -2904,7 +2904,7 @@ and corresponding effects. ;;;*** ;;;### (autoloads nil "cal-china" "calendar/cal-china.el" (22230 -;;;;;; 48822 649220 199000)) +;;;;;; 48822 649220 0)) ;;; Generated autoloads from calendar/cal-china.el (put 'calendar-chinese-time-zone 'risky-local-variable t) @@ -2912,7 +2912,7 @@ and corresponding effects. ;;;*** ;;;### (autoloads nil "cal-dst" "calendar/cal-dst.el" (22230 48822 -;;;;;; 650220 195000)) +;;;;;; 650220 0)) ;;; Generated autoloads from calendar/cal-dst.el (put 'calendar-daylight-savings-starts 'risky-local-variable t) @@ -2923,8 +2923,8 @@ and corresponding effects. ;;;*** -;;;### (autoloads nil "cal-hebrew" "calendar/cal-hebrew.el" (22230 -;;;;;; 48822 650220 195000)) +;;;### (autoloads nil "cal-hebrew" "calendar/cal-hebrew.el" (22290 +;;;;;; 3771 147246 670000)) ;;; Generated autoloads from calendar/cal-hebrew.el (autoload 'calendar-hebrew-list-yahrzeits "cal-hebrew" "\ @@ -2936,7 +2936,7 @@ from the cursor position. ;;;*** -;;;### (autoloads nil "calc" "calc/calc.el" (22230 48822 647220 208000)) +;;;### (autoloads nil "calc" "calc/calc.el" (22230 48822 647220 0)) ;;; Generated autoloads from calc/calc.el (define-key ctl-x-map "*" 'calc-dispatch) @@ -3023,7 +3023,7 @@ See Info node `(calc)Defining Functions'. ;;;*** ;;;### (autoloads nil "calc-undo" "calc/calc-undo.el" (22230 48822 -;;;;;; 646220 213000)) +;;;;;; 646220 0)) ;;; Generated autoloads from calc/calc-undo.el (autoload 'calc-undo "calc-undo" "\ @@ -3033,8 +3033,8 @@ See Info node `(calc)Defining Functions'. ;;;*** -;;;### (autoloads nil "calculator" "calculator.el" (22230 48822 649220 -;;;;;; 199000)) +;;;### (autoloads nil "calculator" "calculator.el" (22290 3771 146246 +;;;;;; 676000)) ;;; Generated autoloads from calculator.el (autoload 'calculator "calculator" "\ @@ -3046,7 +3046,7 @@ See the documentation for `calculator-mode' for more information. ;;;*** ;;;### (autoloads nil "calendar" "calendar/calendar.el" (22230 48822 -;;;;;; 652220 186000)) +;;;;;; 652220 0)) ;;; Generated autoloads from calendar/calendar.el (autoload 'calendar "calendar" "\ @@ -3089,8 +3089,8 @@ This function is suitable for execution in an init file. ;;;*** -;;;### (autoloads nil "canlock" "gnus/canlock.el" (22230 48822 728219 -;;;;;; 843000)) +;;;### (autoloads nil "canlock" "gnus/canlock.el" (22290 3771 183246 +;;;;;; 437000)) ;;; Generated autoloads from gnus/canlock.el (autoload 'canlock-insert-header "canlock" "\ @@ -3107,8 +3107,8 @@ it fails. ;;;*** -;;;### (autoloads nil "cc-engine" "progmodes/cc-engine.el" (22230 -;;;;;; 48822 870219 202000)) +;;;### (autoloads nil "cc-engine" "progmodes/cc-engine.el" (22290 +;;;;;; 3781 429180 218000)) ;;; Generated autoloads from progmodes/cc-engine.el (autoload 'c-guess-basic-syntax "cc-engine" "\ @@ -3119,7 +3119,7 @@ Return the syntactic context of the current line. ;;;*** ;;;### (autoloads nil "cc-guess" "progmodes/cc-guess.el" (22230 48822 -;;;;;; 870219 202000)) +;;;;;; 870219 0)) ;;; Generated autoloads from progmodes/cc-guess.el (defvar c-guess-guessed-offsets-alist nil "\ @@ -3217,8 +3217,8 @@ the absolute file name of the file if STYLE-NAME is nil. ;;;*** -;;;### (autoloads nil "cc-mode" "progmodes/cc-mode.el" (22230 48822 -;;;;;; 871219 197000)) +;;;### (autoloads nil "cc-mode" "progmodes/cc-mode.el" (22290 3771 +;;;;;; 292245 733000)) ;;; Generated autoloads from progmodes/cc-mode.el (autoload 'c-initialize-cc-mode "cc-mode" "\ @@ -3377,7 +3377,7 @@ Key bindings: ;;;*** ;;;### (autoloads nil "cc-styles" "progmodes/cc-styles.el" (22230 -;;;;;; 48822 872219 193000)) +;;;;;; 48822 872219 0)) ;;; Generated autoloads from progmodes/cc-styles.el (autoload 'c-set-style "cc-styles" "\ @@ -3428,8 +3428,8 @@ and exists only for compatibility reasons. ;;;*** -;;;### (autoloads nil "cc-vars" "progmodes/cc-vars.el" (22230 48822 -;;;;;; 872219 193000)) +;;;### (autoloads nil "cc-vars" "progmodes/cc-vars.el" (22290 3771 +;;;;;; 293245 726000)) ;;; Generated autoloads from progmodes/cc-vars.el (put 'c-basic-offset 'safe-local-variable 'integerp) (put 'c-backslash-column 'safe-local-variable 'integerp) @@ -3438,7 +3438,7 @@ and exists only for compatibility reasons. ;;;*** ;;;### (autoloads nil "ccl" "international/ccl.el" (22230 48822 763219 -;;;;;; 685000)) +;;;;;; 0)) ;;; Generated autoloads from international/ccl.el (autoload 'ccl-compile "ccl" "\ @@ -3732,7 +3732,7 @@ See the documentation of `define-ccl-program' for the detail of CCL program. ;;;*** ;;;### (autoloads nil "cconv" "emacs-lisp/cconv.el" (22230 48822 -;;;;;; 685220 37000)) +;;;;;; 685220 0)) ;;; Generated autoloads from emacs-lisp/cconv.el (autoload 'cconv-closure-convert "cconv" "\ @@ -3752,14 +3752,14 @@ Add the warnings that closure conversion would encounter. ;;;*** ;;;### (autoloads nil "cedet" "cedet/cedet.el" (22230 48822 656220 -;;;;;; 168000)) +;;;;;; 0)) ;;; Generated autoloads from cedet/cedet.el (push (purecopy '(cedet 2 0)) package--builtin-versions) ;;;*** ;;;### (autoloads nil "cfengine" "progmodes/cfengine.el" (22230 48822 -;;;;;; 872219 193000)) +;;;;;; 872219 0)) ;;; Generated autoloads from progmodes/cfengine.el (push (purecopy '(cfengine 1 4)) package--builtin-versions) @@ -3789,7 +3789,7 @@ Choose `cfengine2-mode' or `cfengine3-mode' by buffer contents. ;;;*** ;;;### (autoloads nil "character-fold" "character-fold.el" (22230 -;;;;;; 48822 674220 87000)) +;;;;;; 48822 674220 0)) ;;; Generated autoloads from character-fold.el (autoload 'character-fold-to-regexp "character-fold" "\ @@ -3809,14 +3809,14 @@ from which to start. ;;;*** ;;;### (autoloads nil "chart" "emacs-lisp/chart.el" (22230 48822 -;;;;;; 685220 37000)) +;;;;;; 685220 0)) ;;; Generated autoloads from emacs-lisp/chart.el (push (purecopy '(chart 0 2)) package--builtin-versions) ;;;*** ;;;### (autoloads nil "check-declare" "emacs-lisp/check-declare.el" -;;;;;; (22230 48822 685220 37000)) +;;;;;; (22230 48822 685220 0)) ;;; Generated autoloads from emacs-lisp/check-declare.el (autoload 'check-declare-file "check-declare" "\ @@ -3833,8 +3833,8 @@ Returns non-nil if any false statements are found. ;;;*** -;;;### (autoloads nil "checkdoc" "emacs-lisp/checkdoc.el" (22230 -;;;;;; 48822 686220 32000)) +;;;### (autoloads nil "checkdoc" "emacs-lisp/checkdoc.el" (22290 +;;;;;; 3771 157246 605000)) ;;; 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) @@ -4045,7 +4045,7 @@ Find package keywords that aren't in `finder-known-keywords'. ;;;*** ;;;### (autoloads nil "china-util" "language/china-util.el" (22230 -;;;;;; 48822 769219 658000)) +;;;;;; 48822 769219 0)) ;;; Generated autoloads from language/china-util.el (autoload 'decode-hz-region "china-util" "\ @@ -4083,7 +4083,7 @@ Encode the text in the current buffer to HZ. ;;;*** ;;;### (autoloads nil "chistory" "chistory.el" (22230 48822 674220 -;;;;;; 87000)) +;;;;;; 0)) ;;; Generated autoloads from chistory.el (autoload 'repeat-matching-complex-command "chistory" "\ @@ -4123,7 +4123,7 @@ and runs the normal hook `command-history-hook'. ;;;*** ;;;### (autoloads nil "cl-indent" "emacs-lisp/cl-indent.el" (22230 -;;;;;; 48822 687220 28000)) +;;;;;; 48822 687220 0)) ;;; Generated autoloads from emacs-lisp/cl-indent.el (autoload 'common-lisp-indent-function "cl-indent" "\ @@ -4206,8 +4206,8 @@ instead. ;;;*** -;;;### (autoloads nil "cl-lib" "emacs-lisp/cl-lib.el" (22230 48822 -;;;;;; 687220 28000)) +;;;### (autoloads nil "cl-lib" "emacs-lisp/cl-lib.el" (22266 10298 +;;;;;; 392370 0)) ;;; Generated autoloads from emacs-lisp/cl-lib.el (push (purecopy '(cl-lib 1 0)) package--builtin-versions) @@ -4226,7 +4226,7 @@ a future Emacs interpreter will be able to use it.") ;;;*** ;;;### (autoloads nil "cmacexp" "progmodes/cmacexp.el" (22230 48822 -;;;;;; 872219 193000)) +;;;;;; 872219 0)) ;;; Generated autoloads from progmodes/cmacexp.el (autoload 'c-macro-expand "cmacexp" "\ @@ -4247,7 +4247,7 @@ For use inside Lisp programs, see also `c-macro-expansion'. ;;;*** ;;;### (autoloads nil "cmuscheme" "cmuscheme.el" (22230 48822 674220 -;;;;;; 87000)) +;;;;;; 0)) ;;; Generated autoloads from cmuscheme.el (autoload 'run-scheme "cmuscheme" "\ @@ -4267,7 +4267,7 @@ is run). ;;;*** -;;;### (autoloads nil "color" "color.el" (22230 48822 674220 87000)) +;;;### (autoloads nil "color" "color.el" (22230 48822 674220 0)) ;;; Generated autoloads from color.el (autoload 'color-name-to-rgb "color" "\ @@ -4286,7 +4286,7 @@ If FRAME cannot display COLOR, return nil. ;;;*** -;;;### (autoloads nil "comint" "comint.el" (22230 48822 675220 82000)) +;;;### (autoloads nil "comint" "comint.el" (22290 3781 415180 308000)) ;;; Generated autoloads from comint.el (defvar comint-output-filter-functions '(ansi-color-process-output comint-postoutput-scroll-to-bottom comint-watch-for-password-prompt) "\ @@ -4388,7 +4388,7 @@ REGEXP-GROUP is the regular expression group in REGEXP to use. ;;;*** ;;;### (autoloads nil "compare-w" "vc/compare-w.el" (22230 48822 -;;;;;; 932218 922000)) +;;;;;; 932218 0)) ;;; Generated autoloads from vc/compare-w.el (autoload 'compare-windows "compare-w" "\ @@ -4424,8 +4424,8 @@ on third call it again advances points to the next difference and so on. ;;;*** -;;;### (autoloads nil "compile" "progmodes/compile.el" (22230 48822 -;;;;;; 873219 188000)) +;;;### (autoloads nil "compile" "progmodes/compile.el" (22290 3781 +;;;;;; 430180 211000)) ;;; Generated autoloads from progmodes/compile.el (defvar compilation-mode-hook nil "\ @@ -4606,8 +4606,8 @@ This is the value of `next-error-function' in Compilation buffers. ;;;*** -;;;### (autoloads nil "completion" "completion.el" (22230 48822 675220 -;;;;;; 82000)) +;;;### (autoloads nil "completion" "completion.el" (22266 10298 387370 +;;;;;; 0)) ;;; Generated autoloads from completion.el (defvar dynamic-completion-mode nil "\ @@ -4630,7 +4630,7 @@ if ARG is omitted or nil. ;;;*** ;;;### (autoloads nil "conf-mode" "textmodes/conf-mode.el" (22230 -;;;;;; 48822 916218 994000)) +;;;;;; 48822 916218 0)) ;;; Generated autoloads from textmodes/conf-mode.el (autoload 'conf-mode "conf-mode" "\ @@ -4786,7 +4786,7 @@ For details see `conf-mode'. Example: ;;;*** ;;;### (autoloads nil "cookie1" "play/cookie1.el" (22230 48822 859219 -;;;;;; 251000)) +;;;;;; 0)) ;;; Generated autoloads from play/cookie1.el (autoload 'cookie "cookie1" "\ @@ -4815,7 +4815,7 @@ and subsequent calls on the same file won't go to disk. ;;;*** ;;;### (autoloads nil "copyright" "emacs-lisp/copyright.el" (22230 -;;;;;; 48822 688220 23000)) +;;;;;; 48822 688220 0)) ;;; Generated autoloads from emacs-lisp/copyright.el (put 'copyright-at-end-flag 'safe-local-variable 'booleanp) (put 'copyright-names-regexp 'safe-local-variable 'stringp) @@ -4853,8 +4853,8 @@ If FIX is non-nil, run `copyright-fix-years' instead. ;;;*** -;;;### (autoloads nil "cperl-mode" "progmodes/cperl-mode.el" (22230 -;;;;;; 48822 874219 184000)) +;;;### (autoloads nil "cperl-mode" "progmodes/cperl-mode.el" (22266 +;;;;;; 10298 455370 0)) ;;; Generated autoloads from progmodes/cperl-mode.el (put 'cperl-indent-level 'safe-local-variable 'integerp) (put 'cperl-brace-offset 'safe-local-variable 'integerp) @@ -5053,7 +5053,7 @@ Run a `perldoc' on the word around point. ;;;*** ;;;### (autoloads nil "cpp" "progmodes/cpp.el" (22230 48822 875219 -;;;;;; 179000)) +;;;;;; 0)) ;;; Generated autoloads from progmodes/cpp.el (autoload 'cpp-highlight-buffer "cpp" "\ @@ -5072,7 +5072,7 @@ Edit display information for cpp conditionals. ;;;*** ;;;### (autoloads nil "crm" "emacs-lisp/crm.el" (22230 48822 688220 -;;;;;; 23000)) +;;;;;; 0)) ;;; Generated autoloads from emacs-lisp/crm.el (autoload 'completing-read-multiple "crm" "\ @@ -5098,8 +5098,8 @@ with empty strings removed. ;;;*** -;;;### (autoloads nil "css-mode" "textmodes/css-mode.el" (22230 48822 -;;;;;; 916218 994000)) +;;;### (autoloads nil "css-mode" "textmodes/css-mode.el" (22290 3771 +;;;;;; 321245 545000)) ;;; Generated autoloads from textmodes/css-mode.el (autoload 'css-mode "css-mode" "\ @@ -5116,7 +5116,7 @@ Major mode to edit \"Sassy CSS\" files. ;;;*** ;;;### (autoloads nil "cua-base" "emulation/cua-base.el" (22230 48822 -;;;;;; 698219 978000)) +;;;;;; 698219 0)) ;;; Generated autoloads from emulation/cua-base.el (defvar cua-mode nil "\ @@ -5162,7 +5162,7 @@ Enable CUA selection mode without the C-z/C-x/C-c/C-v bindings. ;;;*** ;;;### (autoloads nil "cua-rect" "emulation/cua-rect.el" (22230 48822 -;;;;;; 699219 974000)) +;;;;;; 699219 0)) ;;; Generated autoloads from emulation/cua-rect.el (autoload 'cua-rectangle-mark-mode "cua-rect" "\ @@ -5174,7 +5174,7 @@ Activates the region if needed. Only lasts until the region is deactivated. ;;;*** ;;;### (autoloads nil "cursor-sensor" "emacs-lisp/cursor-sensor.el" -;;;;;; (22230 48822 688220 23000)) +;;;;;; (22266 10298 393370 0)) ;;; Generated autoloads from emacs-lisp/cursor-sensor.el (autoload 'cursor-intangible-mode "cursor-sensor" "\ @@ -5194,8 +5194,8 @@ is entering the area covered by the text-property property or leaving it. ;;;*** -;;;### (autoloads nil "cus-edit" "cus-edit.el" (22230 48822 676220 -;;;;;; 77000)) +;;;### (autoloads nil "cus-edit" "cus-edit.el" (22290 3771 151246 +;;;;;; 644000)) ;;; Generated autoloads from cus-edit.el (defvar custom-browse-sort-alphabetically nil "\ @@ -5515,7 +5515,7 @@ The format is suitable for use with `easy-menu-define'. ;;;*** ;;;### (autoloads nil "cus-theme" "cus-theme.el" (22230 48822 677220 -;;;;;; 73000)) +;;;;;; 0)) ;;; Generated autoloads from cus-theme.el (autoload 'customize-create-theme "cus-theme" "\ @@ -5549,7 +5549,7 @@ omitted, a buffer named *Custom Themes* is used. ;;;*** ;;;### (autoloads nil "cvs-status" "vc/cvs-status.el" (22230 48822 -;;;;;; 933218 917000)) +;;;;;; 933218 0)) ;;; Generated autoloads from vc/cvs-status.el (autoload 'cvs-status-mode "cvs-status" "\ @@ -5560,7 +5560,7 @@ Mode used for cvs status output. ;;;*** ;;;### (autoloads nil "cwarn" "progmodes/cwarn.el" (22230 48822 875219 -;;;;;; 179000)) +;;;;;; 0)) ;;; Generated autoloads from progmodes/cwarn.el (push (purecopy '(cwarn 1 3 1)) package--builtin-versions) @@ -5605,7 +5605,7 @@ See `cwarn-mode' for more information on Cwarn mode. ;;;*** ;;;### (autoloads nil "cyril-util" "language/cyril-util.el" (22230 -;;;;;; 48822 770219 653000)) +;;;;;; 48822 770219 0)) ;;; Generated autoloads from language/cyril-util.el (autoload 'cyrillic-encode-koi8-r-char "cyril-util" "\ @@ -5633,8 +5633,8 @@ If the argument is nil, we return the display table to its standard state. ;;;*** -;;;### (autoloads nil "dabbrev" "dabbrev.el" (22230 48822 677220 -;;;;;; 73000)) +;;;### (autoloads nil "dabbrev" "dabbrev.el" (22266 10298 387370 +;;;;;; 0)) ;;; Generated autoloads from dabbrev.el (put 'dabbrev-case-fold-search 'risky-local-variable t) (put 'dabbrev-case-replace 'risky-local-variable t) @@ -5681,7 +5681,7 @@ See also `dabbrev-abbrev-char-regexp' and \\[dabbrev-completion]. ;;;*** ;;;### (autoloads nil "data-debug" "cedet/data-debug.el" (22230 48822 -;;;;;; 656220 168000)) +;;;;;; 656220 0)) ;;; Generated autoloads from cedet/data-debug.el (autoload 'data-debug-new-buffer "data-debug" "\ @@ -5691,7 +5691,7 @@ Create a new data-debug buffer with NAME. ;;;*** -;;;### (autoloads nil "dbus" "net/dbus.el" (22230 48822 806219 491000)) +;;;### (autoloads nil "dbus" "net/dbus.el" (22230 48822 806219 0)) ;;; Generated autoloads from net/dbus.el (autoload 'dbus-handle-event "dbus" "\ @@ -5705,7 +5705,7 @@ If the HANDLER returns a `dbus-error', it is propagated as return message. ;;;*** ;;;### (autoloads nil "dcl-mode" "progmodes/dcl-mode.el" (22230 48822 -;;;;;; 875219 179000)) +;;;;;; 875219 0)) ;;; Generated autoloads from progmodes/dcl-mode.el (autoload 'dcl-mode "dcl-mode" "\ @@ -5832,7 +5832,7 @@ There is some minimal font-lock support (see vars ;;;*** ;;;### (autoloads nil "debug" "emacs-lisp/debug.el" (22230 48822 -;;;;;; 688220 23000)) +;;;;;; 688220 0)) ;;; Generated autoloads from emacs-lisp/debug.el (setq debugger 'debug) @@ -5876,7 +5876,7 @@ To specify a nil argument interactively, exit with an empty minibuffer. ;;;*** ;;;### (autoloads nil "decipher" "play/decipher.el" (22230 48822 -;;;;;; 859219 251000)) +;;;;;; 859219 0)) ;;; Generated autoloads from play/decipher.el (autoload 'decipher "decipher" "\ @@ -5905,7 +5905,7 @@ The most useful commands are: ;;;*** ;;;### (autoloads nil "delim-col" "delim-col.el" (22230 48822 677220 -;;;;;; 73000)) +;;;;;; 0)) ;;; Generated autoloads from delim-col.el (push (purecopy '(delim-col 2 1)) package--builtin-versions) @@ -5930,7 +5930,7 @@ START and END delimits the corners of text rectangle. ;;;*** -;;;### (autoloads nil "delsel" "delsel.el" (22230 48822 677220 73000)) +;;;### (autoloads nil "delsel" "delsel.el" (22230 48822 677220 0)) ;;; Generated autoloads from delsel.el (defalias 'pending-delete-mode 'delete-selection-mode) @@ -5962,8 +5962,8 @@ information on adapting behavior of commands in Delete Selection mode. ;;;*** -;;;### (autoloads nil "derived" "emacs-lisp/derived.el" (22230 48822 -;;;;;; 688220 23000)) +;;;### (autoloads nil "derived" "emacs-lisp/derived.el" (22266 10298 +;;;;;; 393370 0)) ;;; Generated autoloads from emacs-lisp/derived.el (autoload 'define-derived-mode "derived" "\ @@ -6030,7 +6030,7 @@ the first time the mode is used. ;;;*** ;;;### (autoloads nil "descr-text" "descr-text.el" (22230 48822 678220 -;;;;;; 68000)) +;;;;;; 0)) ;;; Generated autoloads from descr-text.el (autoload 'describe-text-properties "descr-text" "\ @@ -6080,7 +6080,7 @@ This function is meant to be used as a value of ;;;*** ;;;### (autoloads nil "desktop" "desktop.el" (22230 48822 678220 -;;;;;; 68000)) +;;;;;; 0)) ;;; Generated autoloads from desktop.el (defvar desktop-save-mode nil "\ @@ -6308,7 +6308,7 @@ Revert to the last loaded desktop. ;;;*** ;;;### (autoloads nil "deuglify" "gnus/deuglify.el" (22230 48822 -;;;;;; 729219 838000)) +;;;;;; 729219 0)) ;;; Generated autoloads from gnus/deuglify.el (autoload 'gnus-article-outlook-unwrap-lines "deuglify" "\ @@ -6341,7 +6341,7 @@ Deuglify broken Outlook (Express) articles and redisplay. ;;;*** ;;;### (autoloads nil "diary-lib" "calendar/diary-lib.el" (22230 -;;;;;; 48822 652220 186000)) +;;;;;; 48822 652220 0)) ;;; Generated autoloads from calendar/diary-lib.el (autoload 'diary "diary-lib" "\ @@ -6383,7 +6383,7 @@ Major mode for editing the diary file. ;;;*** -;;;### (autoloads nil "diff" "vc/diff.el" (22230 48822 933218 917000)) +;;;### (autoloads nil "diff" "vc/diff.el" (22230 48822 933218 0)) ;;; Generated autoloads from vc/diff.el (defvar diff-switches (purecopy "-u") "\ @@ -6432,7 +6432,7 @@ This requires the external program `diff' to be in your `exec-path'. ;;;*** ;;;### (autoloads nil "diff-mode" "vc/diff-mode.el" (22230 48822 -;;;;;; 933218 917000)) +;;;;;; 933218 0)) ;;; Generated autoloads from vc/diff-mode.el (autoload 'diff-mode "diff-mode" "\ @@ -6464,7 +6464,7 @@ the mode if ARG is omitted or nil. ;;;*** -;;;### (autoloads nil "dig" "net/dig.el" (22230 48822 806219 491000)) +;;;### (autoloads nil "dig" "net/dig.el" (22230 48822 806219 0)) ;;; Generated autoloads from net/dig.el (autoload 'dig "dig" "\ @@ -6475,7 +6475,7 @@ Optional arguments are passed to `dig-invoke'. ;;;*** -;;;### (autoloads nil "dired" "dired.el" (22230 48822 680220 60000)) +;;;### (autoloads nil "dired" "dired.el" (22298 5692 411287 954000)) ;;; Generated autoloads from dired.el (defvar dired-listing-switches (purecopy "-al") "\ @@ -6602,7 +6602,7 @@ Keybindings: ;;;*** ;;;### (autoloads nil "dirtrack" "dirtrack.el" (22230 48822 680220 -;;;;;; 60000)) +;;;;;; 0)) ;;; Generated autoloads from dirtrack.el (autoload 'dirtrack-mode "dirtrack" "\ @@ -6632,8 +6632,8 @@ from `default-directory'. ;;;*** -;;;### (autoloads nil "disass" "emacs-lisp/disass.el" (22230 48822 -;;;;;; 689220 19000)) +;;;### (autoloads nil "disass" "emacs-lisp/disass.el" (22290 3781 +;;;;;; 416180 302000)) ;;; Generated autoloads from emacs-lisp/disass.el (autoload 'disassemble "disass" "\ @@ -6648,7 +6648,7 @@ redefine OBJECT if it is a symbol. ;;;*** ;;;### (autoloads nil "disp-table" "disp-table.el" (22230 48822 680220 -;;;;;; 60000)) +;;;;;; 0)) ;;; Generated autoloads from disp-table.el (autoload 'make-display-table "disp-table" "\ @@ -6770,7 +6770,7 @@ in `.emacs'. ;;;*** ;;;### (autoloads nil "dissociate" "play/dissociate.el" (22230 48822 -;;;;;; 859219 251000)) +;;;;;; 859219 0)) ;;; Generated autoloads from play/dissociate.el (autoload 'dissociated-press "dissociate" "\ @@ -6786,7 +6786,7 @@ Default is 2. ;;;*** -;;;### (autoloads nil "dnd" "dnd.el" (22230 48822 680220 60000)) +;;;### (autoloads nil "dnd" "dnd.el" (22230 48822 680220 0)) ;;; 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)) "\ @@ -6807,7 +6807,7 @@ if some action was made, or nil if the URL is ignored.") ;;;*** ;;;### (autoloads nil "dns-mode" "textmodes/dns-mode.el" (22230 48822 -;;;;;; 916218 994000)) +;;;;;; 916218 0)) ;;; Generated autoloads from textmodes/dns-mode.el (autoload 'dns-mode "dns-mode" "\ @@ -6830,8 +6830,8 @@ Locate SOA record and increment the serial field. ;;;*** -;;;### (autoloads nil "doc-view" "doc-view.el" (22230 48822 681220 -;;;;;; 55000)) +;;;### (autoloads nil "doc-view" "doc-view.el" (22266 10298 388370 +;;;;;; 0)) ;;; Generated autoloads from doc-view.el (autoload 'doc-view-mode-p "doc-view" "\ @@ -6878,7 +6878,7 @@ See the command `doc-view-mode' for more information on this mode. ;;;*** ;;;### (autoloads nil "doctor" "play/doctor.el" (22230 48822 859219 -;;;;;; 251000)) +;;;;;; 0)) ;;; Generated autoloads from play/doctor.el (autoload 'doctor "doctor" "\ @@ -6888,7 +6888,7 @@ Switch to *doctor* buffer and start giving psychotherapy. ;;;*** -;;;### (autoloads nil "double" "double.el" (22230 48822 681220 55000)) +;;;### (autoloads nil "double" "double.el" (22230 48822 681220 0)) ;;; Generated autoloads from double.el (autoload 'double-mode "double" "\ @@ -6905,7 +6905,7 @@ strings when pressed twice. See `double-map' for details. ;;;*** ;;;### (autoloads nil "dunnet" "play/dunnet.el" (22230 48822 860219 -;;;;;; 247000)) +;;;;;; 0)) ;;; Generated autoloads from play/dunnet.el (push (purecopy '(dunnet 2 2)) package--builtin-versions) @@ -6916,8 +6916,8 @@ Switch to *dungeon* buffer and start game. ;;;*** -;;;### (autoloads nil "easy-mmode" "emacs-lisp/easy-mmode.el" (22230 -;;;;;; 48822 689220 19000)) +;;;### (autoloads nil "easy-mmode" "emacs-lisp/easy-mmode.el" (22261 +;;;;;; 18214 495021 0)) ;;; Generated autoloads from emacs-lisp/easy-mmode.el (defalias 'easy-mmode-define-minor-mode 'define-minor-mode) @@ -7060,7 +7060,7 @@ CSS contains a list of syntax specifications of the form (CHAR . SYNTAX). ;;;*** ;;;### (autoloads nil "easymenu" "emacs-lisp/easymenu.el" (22230 -;;;;;; 48822 689220 19000)) +;;;;;; 48822 689220 0)) ;;; Generated autoloads from emacs-lisp/easymenu.el (autoload 'easy-menu-define "easymenu" "\ @@ -7199,7 +7199,7 @@ To implement dynamic menus, either call this from ;;;*** ;;;### (autoloads nil "ebnf2ps" "progmodes/ebnf2ps.el" (22230 48822 -;;;;;; 877219 170000)) +;;;;;; 877219 0)) ;;; Generated autoloads from progmodes/ebnf2ps.el (push (purecopy '(ebnf2ps 4 4)) package--builtin-versions) @@ -7465,7 +7465,7 @@ See `ebnf-style-database' documentation. ;;;*** ;;;### (autoloads nil "ebrowse" "progmodes/ebrowse.el" (22230 48822 -;;;;;; 878219 166000)) +;;;;;; 878219 0)) ;;; Generated autoloads from progmodes/ebrowse.el (autoload 'ebrowse-tree-mode "ebrowse" "\ @@ -7614,7 +7614,7 @@ Display statistics for a class tree. ;;;*** ;;;### (autoloads nil "ebuff-menu" "ebuff-menu.el" (22230 48822 681220 -;;;;;; 55000)) +;;;;;; 0)) ;;; Generated autoloads from ebuff-menu.el (autoload 'electric-buffer-list "ebuff-menu" "\ @@ -7647,7 +7647,7 @@ Run hooks in `electric-buffer-menu-mode-hook' on entry. ;;;*** ;;;### (autoloads nil "echistory" "echistory.el" (22230 48822 681220 -;;;;;; 55000)) +;;;;;; 0)) ;;; Generated autoloads from echistory.el (autoload 'Electric-command-history-redo-expression "echistory" "\ @@ -7658,8 +7658,8 @@ With prefix arg NOCONFIRM, execute current line as-is without editing. ;;;*** -;;;### (autoloads nil "ecomplete" "gnus/ecomplete.el" (22230 48822 -;;;;;; 729219 838000)) +;;;### (autoloads nil "ecomplete" "gnus/ecomplete.el" (22290 3771 +;;;;;; 183246 437000)) ;;; Generated autoloads from gnus/ecomplete.el (autoload 'ecomplete-setup "ecomplete" "\ @@ -7669,7 +7669,7 @@ With prefix arg NOCONFIRM, execute current line as-is without editing. ;;;*** -;;;### (autoloads nil "ede" "cedet/ede.el" (22230 48822 656220 168000)) +;;;### (autoloads nil "ede" "cedet/ede.el" (22230 48822 656220 0)) ;;; Generated autoloads from cedet/ede.el (push (purecopy '(ede 1 2)) package--builtin-versions) @@ -7696,7 +7696,7 @@ an EDE controlled project. ;;;*** ;;;### (autoloads nil "edebug" "emacs-lisp/edebug.el" (22230 48822 -;;;;;; 690220 14000)) +;;;;;; 690220 0)) ;;; Generated autoloads from emacs-lisp/edebug.el (defvar edebug-all-defs nil "\ @@ -7760,7 +7760,7 @@ Toggle edebugging of all forms. ;;;*** -;;;### (autoloads nil "ediff" "vc/ediff.el" (22230 48822 936218 904000)) +;;;### (autoloads nil "ediff" "vc/ediff.el" (22290 3771 334245 461000)) ;;; Generated autoloads from vc/ediff.el (push (purecopy '(ediff 2 81 4)) package--builtin-versions) @@ -8033,7 +8033,7 @@ With optional NODE, goes to that node. ;;;*** ;;;### (autoloads nil "ediff-help" "vc/ediff-help.el" (22230 48822 -;;;;;; 933218 917000)) +;;;;;; 933218 0)) ;;; Generated autoloads from vc/ediff-help.el (autoload 'ediff-customize "ediff-help" "\ @@ -8044,7 +8044,7 @@ With optional NODE, goes to that node. ;;;*** ;;;### (autoloads nil "ediff-mult" "vc/ediff-mult.el" (22230 48822 -;;;;;; 934218 913000)) +;;;;;; 934218 0)) ;;; Generated autoloads from vc/ediff-mult.el (autoload 'ediff-show-registry "ediff-mult" "\ @@ -8056,8 +8056,8 @@ Display Ediff's registry. ;;;*** -;;;### (autoloads nil "ediff-util" "vc/ediff-util.el" (22230 48822 -;;;;;; 935218 908000)) +;;;### (autoloads nil "ediff-util" "vc/ediff-util.el" (22290 3771 +;;;;;; 334245 461000)) ;;; Generated autoloads from vc/ediff-util.el (autoload 'ediff-toggle-multiframe "ediff-util" "\ @@ -8077,7 +8077,7 @@ To change the default, set the variable `ediff-use-toolbar-p', which see. ;;;*** ;;;### (autoloads nil "edmacro" "edmacro.el" (22230 48822 682220 -;;;;;; 50000)) +;;;;;; 0)) ;;; Generated autoloads from edmacro.el (push (purecopy '(edmacro 2 1)) package--builtin-versions) @@ -8126,8 +8126,8 @@ or nil, use a compact 80-column format. ;;;*** -;;;### (autoloads nil "edt" "emulation/edt.el" (22230 48822 699219 -;;;;;; 974000)) +;;;### (autoloads nil "edt" "emulation/edt.el" (22261 18214 497021 +;;;;;; 0)) ;;; Generated autoloads from emulation/edt.el (autoload 'edt-set-scroll-margins "edt" "\ @@ -8144,7 +8144,7 @@ Turn on EDT Emulation. ;;;*** -;;;### (autoloads nil "ehelp" "ehelp.el" (22230 48822 682220 50000)) +;;;### (autoloads nil "ehelp" "ehelp.el" (22230 48822 682220 0)) ;;; Generated autoloads from ehelp.el (autoload 'with-electric-help "ehelp" "\ @@ -8180,15 +8180,15 @@ BUFFER is put back into its original major mode. ;;;*** -;;;### (autoloads nil "eieio" "emacs-lisp/eieio.el" (22230 48822 -;;;;;; 691220 10000)) +;;;### (autoloads nil "eieio" "emacs-lisp/eieio.el" (22290 3771 161246 +;;;;;; 579000)) ;;; Generated autoloads from emacs-lisp/eieio.el (push (purecopy '(eieio 1 4)) package--builtin-versions) ;;;*** -;;;### (autoloads nil "eieio-core" "emacs-lisp/eieio-core.el" (22230 -;;;;;; 48822 690220 14000)) +;;;### (autoloads nil "eieio-core" "emacs-lisp/eieio-core.el" (22290 +;;;;;; 3771 160246 586000)) ;;; Generated autoloads from emacs-lisp/eieio-core.el (push (purecopy '(eieio-core 1 4)) package--builtin-versions) @@ -8205,7 +8205,7 @@ It creates an autoload function for CNAME's constructor. ;;;*** ;;;### (autoloads nil "elec-pair" "elec-pair.el" (22230 48822 682220 -;;;;;; 50000)) +;;;;;; 0)) ;;; Generated autoloads from elec-pair.el (defvar electric-pair-text-pairs '((34 . 34)) "\ @@ -8247,7 +8247,7 @@ Toggle `electric-pair-mode' only in this buffer. ;;;*** ;;;### (autoloads nil "elide-head" "elide-head.el" (22230 48822 682220 -;;;;;; 50000)) +;;;;;; 0)) ;;; Generated autoloads from elide-head.el (autoload 'elide-head "elide-head" "\ @@ -8263,7 +8263,7 @@ This is suitable as an entry on `find-file-hook' or appropriate mode hooks. ;;;*** ;;;### (autoloads nil "elint" "emacs-lisp/elint.el" (22230 48822 -;;;;;; 691220 10000)) +;;;;;; 691220 0)) ;;; Generated autoloads from emacs-lisp/elint.el (autoload 'elint-file "elint" "\ @@ -8299,7 +8299,7 @@ optional prefix argument REINIT is non-nil. ;;;*** ;;;### (autoloads nil "elp" "emacs-lisp/elp.el" (22230 48822 691220 -;;;;;; 10000)) +;;;;;; 0)) ;;; Generated autoloads from emacs-lisp/elp.el (autoload 'elp-instrument-function "elp" "\ @@ -8334,7 +8334,7 @@ displayed. ;;;*** ;;;### (autoloads nil "emacs-lock" "emacs-lock.el" (22230 48822 698219 -;;;;;; 978000)) +;;;;;; 0)) ;;; Generated autoloads from emacs-lock.el (autoload 'emacs-lock-mode "emacs-lock" "\ @@ -8362,7 +8362,7 @@ Other values are interpreted as usual. ;;;*** ;;;### (autoloads nil "emacsbug" "mail/emacsbug.el" (22230 48822 -;;;;;; 787219 577000)) +;;;;;; 787219 0)) ;;; Generated autoloads from mail/emacsbug.el (autoload 'report-emacs-bug "emacsbug" "\ @@ -8376,7 +8376,7 @@ Prompts for bug subject. Leaves you in a mail buffer. ;;;*** ;;;### (autoloads nil "emerge" "vc/emerge.el" (22230 48822 936218 -;;;;;; 904000)) +;;;;;; 0)) ;;; Generated autoloads from vc/emerge.el (autoload 'emerge-files "emerge" "\ @@ -8437,7 +8437,7 @@ Emerge two RCS revisions of a file, with another revision as ancestor. ;;;*** ;;;### (autoloads nil "enriched" "textmodes/enriched.el" (22230 48822 -;;;;;; 916218 994000)) +;;;;;; 916218 0)) ;;; Generated autoloads from textmodes/enriched.el (autoload 'enriched-mode "enriched" "\ @@ -8472,7 +8472,7 @@ Commands: ;;;*** -;;;### (autoloads nil "epa" "epa.el" (22230 48822 702219 960000)) +;;;### (autoloads nil "epa" "epa.el" (22290 3771 165246 553000)) ;;; Generated autoloads from epa.el (autoload 'epa-list-keys "epa" "\ @@ -8661,7 +8661,7 @@ Insert selected KEYS after the point. ;;;*** ;;;### (autoloads nil "epa-dired" "epa-dired.el" (22230 48822 702219 -;;;;;; 960000)) +;;;;;; 0)) ;;; Generated autoloads from epa-dired.el (autoload 'epa-dired-do-decrypt "epa-dired" "\ @@ -8687,7 +8687,7 @@ Encrypt marked files. ;;;*** ;;;### (autoloads nil "epa-file" "epa-file.el" (22230 48822 702219 -;;;;;; 960000)) +;;;;;; 0)) ;;; Generated autoloads from epa-file.el (autoload 'epa-file-handler "epa-file" "\ @@ -8708,7 +8708,7 @@ Encrypt marked files. ;;;*** ;;;### (autoloads nil "epa-mail" "epa-mail.el" (22230 48822 702219 -;;;;;; 960000)) +;;;;;; 0)) ;;; Generated autoloads from epa-mail.el (autoload 'epa-mail-mode "epa-mail" "\ @@ -8785,7 +8785,7 @@ if ARG is omitted or nil. ;;;*** -;;;### (autoloads nil "epg" "epg.el" (22230 48822 703219 956000)) +;;;### (autoloads nil "epg" "epg.el" (22261 18214 497021 0)) ;;; Generated autoloads from epg.el (push (purecopy '(epg 1 0 0)) package--builtin-versions) @@ -8796,8 +8796,8 @@ Return a context object. ;;;*** -;;;### (autoloads nil "epg-config" "epg-config.el" (22230 48822 702219 -;;;;;; 960000)) +;;;### (autoloads nil "epg-config" "epg-config.el" (22261 18214 497021 +;;;;;; 0)) ;;; Generated autoloads from epg-config.el (autoload 'epg-find-configuration "epg-config" "\ @@ -8831,7 +8831,7 @@ Look at CONFIG and try to expand GROUP. ;;;*** -;;;### (autoloads nil "erc" "erc/erc.el" (22230 48822 710219 924000)) +;;;### (autoloads nil "erc" "erc/erc.el" (22290 3771 173246 502000)) ;;; Generated autoloads from erc/erc.el (push (purecopy '(erc 5 3)) package--builtin-versions) @@ -8881,35 +8881,35 @@ Otherwise, connect to HOST:PORT as USER and /join CHANNEL. ;;;*** ;;;### (autoloads nil "erc-autoaway" "erc/erc-autoaway.el" (22230 -;;;;;; 48822 705219 947000)) +;;;;;; 48822 705219 0)) ;;; Generated autoloads from erc/erc-autoaway.el (autoload 'erc-autoaway-mode "erc-autoaway") ;;;*** -;;;### (autoloads nil "erc-button" "erc/erc-button.el" (22230 48822 -;;;;;; 705219 947000)) +;;;### (autoloads nil "erc-button" "erc/erc-button.el" (22290 3771 +;;;;;; 167246 540000)) ;;; Generated autoloads from erc/erc-button.el (autoload 'erc-button-mode "erc-button" nil t) ;;;*** -;;;### (autoloads nil "erc-capab" "erc/erc-capab.el" (22230 48822 -;;;;;; 705219 947000)) +;;;### (autoloads nil "erc-capab" "erc/erc-capab.el" (22290 3771 +;;;;;; 167246 540000)) ;;; Generated autoloads from erc/erc-capab.el (autoload 'erc-capab-identify-mode "erc-capab" nil t) ;;;*** -;;;### (autoloads nil "erc-compat" "erc/erc-compat.el" (22230 48822 -;;;;;; 705219 947000)) +;;;### (autoloads nil "erc-compat" "erc/erc-compat.el" (22290 3771 +;;;;;; 169246 527000)) ;;; Generated autoloads from erc/erc-compat.el (autoload 'erc-define-minor-mode "erc-compat") ;;;*** -;;;### (autoloads nil "erc-dcc" "erc/erc-dcc.el" (22230 48822 706219 -;;;;;; 942000)) +;;;### (autoloads nil "erc-dcc" "erc/erc-dcc.el" (22290 3771 169246 +;;;;;; 527000)) ;;; Generated autoloads from erc/erc-dcc.el (autoload 'erc-dcc-mode "erc-dcc") @@ -8939,14 +8939,14 @@ that subcommand. ;;;*** ;;;### (autoloads nil "erc-desktop-notifications" "erc/erc-desktop-notifications.el" -;;;;;; (22230 48822 706219 942000)) +;;;;;; (22230 48822 706219 0)) ;;; Generated autoloads from erc/erc-desktop-notifications.el (autoload 'erc-notifications-mode "erc-desktop-notifications" "" t) ;;;*** ;;;### (autoloads nil "erc-ezbounce" "erc/erc-ezbounce.el" (22230 -;;;;;; 48822 706219 942000)) +;;;;;; 48822 706219 0)) ;;; Generated autoloads from erc/erc-ezbounce.el (autoload 'erc-cmd-ezb "erc-ezbounce" "\ @@ -9009,7 +9009,7 @@ Add EZBouncer convenience functions to ERC. ;;;*** ;;;### (autoloads nil "erc-fill" "erc/erc-fill.el" (22230 48822 706219 -;;;;;; 942000)) +;;;;;; 0)) ;;; Generated autoloads from erc/erc-fill.el (autoload 'erc-fill-mode "erc-fill" nil t) @@ -9022,7 +9022,7 @@ You can put this on `erc-insert-modify-hook' and/or `erc-send-modify-hook'. ;;;*** ;;;### (autoloads nil "erc-identd" "erc/erc-identd.el" (22230 48822 -;;;;;; 706219 942000)) +;;;;;; 706219 0)) ;;; Generated autoloads from erc/erc-identd.el (autoload 'erc-identd-mode "erc-identd") @@ -9044,7 +9044,7 @@ system. ;;;*** ;;;### (autoloads nil "erc-imenu" "erc/erc-imenu.el" (22230 48822 -;;;;;; 706219 942000)) +;;;;;; 706219 0)) ;;; Generated autoloads from erc/erc-imenu.el (autoload 'erc-create-imenu-index "erc-imenu" "\ @@ -9055,21 +9055,21 @@ system. ;;;*** ;;;### (autoloads nil "erc-join" "erc/erc-join.el" (22230 48822 706219 -;;;;;; 942000)) +;;;;;; 0)) ;;; Generated autoloads from erc/erc-join.el (autoload 'erc-autojoin-mode "erc-join" nil t) ;;;*** ;;;### (autoloads nil "erc-list" "erc/erc-list.el" (22230 48822 706219 -;;;;;; 942000)) +;;;;;; 0)) ;;; Generated autoloads from erc/erc-list.el (autoload 'erc-list-mode "erc-list") ;;;*** ;;;### (autoloads nil "erc-log" "erc/erc-log.el" (22230 48822 707219 -;;;;;; 938000)) +;;;;;; 0)) ;;; Generated autoloads from erc/erc-log.el (autoload 'erc-log-mode "erc-log" nil t) @@ -9098,8 +9098,8 @@ You can save every individual message by putting this function on ;;;*** -;;;### (autoloads nil "erc-match" "erc/erc-match.el" (22230 48822 -;;;;;; 707219 938000)) +;;;### (autoloads nil "erc-match" "erc/erc-match.el" (22290 3771 +;;;;;; 170246 521000)) ;;; Generated autoloads from erc/erc-match.el (autoload 'erc-match-mode "erc-match") @@ -9146,14 +9146,14 @@ Delete dangerous-host interactively to `erc-dangerous-hosts'. ;;;*** ;;;### (autoloads nil "erc-menu" "erc/erc-menu.el" (22230 48822 707219 -;;;;;; 938000)) +;;;;;; 0)) ;;; Generated autoloads from erc/erc-menu.el (autoload 'erc-menu-mode "erc-menu" nil t) ;;;*** ;;;### (autoloads nil "erc-netsplit" "erc/erc-netsplit.el" (22230 -;;;;;; 48822 707219 938000)) +;;;;;; 48822 707219 0)) ;;; Generated autoloads from erc/erc-netsplit.el (autoload 'erc-netsplit-mode "erc-netsplit") @@ -9165,7 +9165,7 @@ Show who's gone. ;;;*** ;;;### (autoloads nil "erc-networks" "erc/erc-networks.el" (22230 -;;;;;; 48822 707219 938000)) +;;;;;; 48822 707219 0)) ;;; Generated autoloads from erc/erc-networks.el (autoload 'erc-determine-network "erc-networks" "\ @@ -9183,7 +9183,7 @@ Interactively select a server to connect to using `erc-server-alist'. ;;;*** ;;;### (autoloads nil "erc-notify" "erc/erc-notify.el" (22230 48822 -;;;;;; 707219 938000)) +;;;;;; 707219 0)) ;;; Generated autoloads from erc/erc-notify.el (autoload 'erc-notify-mode "erc-notify" nil t) @@ -9202,35 +9202,35 @@ with args, toggle notify status of people. ;;;*** ;;;### (autoloads nil "erc-page" "erc/erc-page.el" (22230 48822 707219 -;;;;;; 938000)) +;;;;;; 0)) ;;; Generated autoloads from erc/erc-page.el (autoload 'erc-page-mode "erc-page") ;;;*** ;;;### (autoloads nil "erc-pcomplete" "erc/erc-pcomplete.el" (22230 -;;;;;; 48822 707219 938000)) +;;;;;; 48822 707219 0)) ;;; Generated autoloads from erc/erc-pcomplete.el (autoload 'erc-completion-mode "erc-pcomplete" nil t) ;;;*** ;;;### (autoloads nil "erc-replace" "erc/erc-replace.el" (22230 48822 -;;;;;; 707219 938000)) +;;;;;; 707219 0)) ;;; Generated autoloads from erc/erc-replace.el (autoload 'erc-replace-mode "erc-replace") ;;;*** ;;;### (autoloads nil "erc-ring" "erc/erc-ring.el" (22230 48822 707219 -;;;;;; 938000)) +;;;;;; 0)) ;;; Generated autoloads from erc/erc-ring.el (autoload 'erc-ring-mode "erc-ring" nil t) ;;;*** ;;;### (autoloads nil "erc-services" "erc/erc-services.el" (22230 -;;;;;; 48822 708219 933000)) +;;;;;; 48822 708219 0)) ;;; Generated autoloads from erc/erc-services.el (autoload 'erc-services-mode "erc-services" nil t) @@ -9248,14 +9248,14 @@ When called interactively, read the password using `read-passwd'. ;;;*** ;;;### (autoloads nil "erc-sound" "erc/erc-sound.el" (22230 48822 -;;;;;; 708219 933000)) +;;;;;; 708219 0)) ;;; Generated autoloads from erc/erc-sound.el (autoload 'erc-sound-mode "erc-sound") ;;;*** ;;;### (autoloads nil "erc-speedbar" "erc/erc-speedbar.el" (22230 -;;;;;; 48822 708219 933000)) +;;;;;; 48822 708219 0)) ;;; Generated autoloads from erc/erc-speedbar.el (autoload 'erc-speedbar-browser "erc-speedbar" "\ @@ -9267,21 +9267,21 @@ This will add a speedbar major display mode. ;;;*** ;;;### (autoloads nil "erc-spelling" "erc/erc-spelling.el" (22230 -;;;;;; 48822 708219 933000)) +;;;;;; 48822 708219 0)) ;;; Generated autoloads from erc/erc-spelling.el (autoload 'erc-spelling-mode "erc-spelling" nil t) ;;;*** -;;;### (autoloads nil "erc-stamp" "erc/erc-stamp.el" (22230 48822 -;;;;;; 708219 933000)) +;;;### (autoloads nil "erc-stamp" "erc/erc-stamp.el" (22290 3771 +;;;;;; 170246 521000)) ;;; Generated autoloads from erc/erc-stamp.el (autoload 'erc-timestamp-mode "erc-stamp" nil t) ;;;*** -;;;### (autoloads nil "erc-track" "erc/erc-track.el" (22230 48822 -;;;;;; 708219 933000)) +;;;### (autoloads nil "erc-track" "erc/erc-track.el" (22290 3771 +;;;;;; 170246 521000)) ;;; Generated autoloads from erc/erc-track.el (defvar erc-track-minor-mode nil "\ @@ -9307,7 +9307,7 @@ keybindings will not do anything useful. ;;;*** ;;;### (autoloads nil "erc-truncate" "erc/erc-truncate.el" (22230 -;;;;;; 48822 708219 933000)) +;;;;;; 48822 708219 0)) ;;; Generated autoloads from erc/erc-truncate.el (autoload 'erc-truncate-mode "erc-truncate" nil t) @@ -9327,7 +9327,7 @@ Meant to be used in hooks, like `erc-insert-post-hook'. ;;;*** ;;;### (autoloads nil "erc-xdcc" "erc/erc-xdcc.el" (22230 48822 708219 -;;;;;; 933000)) +;;;;;; 0)) ;;; Generated autoloads from erc/erc-xdcc.el (autoload 'erc-xdcc-mode "erc-xdcc") @@ -9339,7 +9339,7 @@ Add a file to `erc-xdcc-files'. ;;;*** ;;;### (autoloads nil "ert" "emacs-lisp/ert.el" (22230 48822 692220 -;;;;;; 5000)) +;;;;;; 0)) ;;; Generated autoloads from emacs-lisp/ert.el (autoload 'ert-deftest "ert" "\ @@ -9408,8 +9408,8 @@ Display the documentation for TEST-OR-TEST-NAME (a symbol or ert-test). ;;;*** -;;;### (autoloads nil "ert-x" "emacs-lisp/ert-x.el" (22230 48822 -;;;;;; 691220 10000)) +;;;### (autoloads nil "ert-x" "emacs-lisp/ert-x.el" (22290 3771 161246 +;;;;;; 579000)) ;;; Generated autoloads from emacs-lisp/ert-x.el (put 'ert-with-test-buffer 'lisp-indent-function 1) @@ -9421,8 +9421,8 @@ Kill all test buffers that are still live. ;;;*** -;;;### (autoloads nil "esh-mode" "eshell/esh-mode.el" (22230 48822 -;;;;;; 712219 915000)) +;;;### (autoloads nil "esh-mode" "eshell/esh-mode.el" (22290 3771 +;;;;;; 174246 495000)) ;;; Generated autoloads from eshell/esh-mode.el (autoload 'eshell-mode "esh-mode" "\ @@ -9432,8 +9432,8 @@ Emacs shell interactive mode. ;;;*** -;;;### (autoloads nil "eshell" "eshell/eshell.el" (22230 48822 713219 -;;;;;; 910000)) +;;;### (autoloads nil "eshell" "eshell/eshell.el" (22290 3771 174246 +;;;;;; 495000)) ;;; Generated autoloads from eshell/eshell.el (push (purecopy '(eshell 2 4 2)) package--builtin-versions) @@ -9469,7 +9469,7 @@ corresponding to a successful execution. ;;;*** ;;;### (autoloads nil "etags" "progmodes/etags.el" (22230 48822 878219 -;;;;;; 166000)) +;;;;;; 0)) ;;; Generated autoloads from progmodes/etags.el (defvar tags-file-name nil "\ @@ -9785,7 +9785,7 @@ for \\[find-tag] (which see). ;;;*** ;;;### (autoloads nil "ethio-util" "language/ethio-util.el" (22230 -;;;;;; 48822 770219 653000)) +;;;;;; 48822 770219 0)) ;;; Generated autoloads from language/ethio-util.el (autoload 'setup-ethiopic-environment-internal "ethio-util" "\ @@ -9953,7 +9953,7 @@ With ARG, insert that many delimiters. ;;;*** -;;;### (autoloads nil "eudc" "net/eudc.el" (22230 48822 807219 486000)) +;;;### (autoloads nil "eudc" "net/eudc.el" (22230 48822 807219 0)) ;;; Generated autoloads from net/eudc.el (autoload 'eudc-set-server "eudc" "\ @@ -10008,7 +10008,7 @@ This does nothing except loading eudc by autoload side-effect. ;;;*** ;;;### (autoloads nil "eudc-bob" "net/eudc-bob.el" (22230 48822 806219 -;;;;;; 491000)) +;;;;;; 0)) ;;; Generated autoloads from net/eudc-bob.el (autoload 'eudc-display-generic-binary "eudc-bob" "\ @@ -10044,7 +10044,7 @@ Display a button for the JPEG DATA. ;;;*** ;;;### (autoloads nil "eudc-export" "net/eudc-export.el" (22230 48822 -;;;;;; 806219 491000)) +;;;;;; 806219 0)) ;;; Generated autoloads from net/eudc-export.el (autoload 'eudc-insert-record-at-point-into-bbdb "eudc-export" "\ @@ -10061,7 +10061,7 @@ Call `eudc-insert-record-at-point-into-bbdb' if on a record. ;;;*** ;;;### (autoloads nil "eudc-hotlist" "net/eudc-hotlist.el" (22230 -;;;;;; 48822 806219 491000)) +;;;;;; 48822 806219 0)) ;;; Generated autoloads from net/eudc-hotlist.el (autoload 'eudc-edit-hotlist "eudc-hotlist" "\ @@ -10072,7 +10072,7 @@ Edit the hotlist of directory servers in a specialized buffer. ;;;*** ;;;### (autoloads nil "ewoc" "emacs-lisp/ewoc.el" (22230 48822 692220 -;;;;;; 5000)) +;;;;;; 0)) ;;; Generated autoloads from emacs-lisp/ewoc.el (autoload 'ewoc-create "ewoc" "\ @@ -10098,7 +10098,7 @@ fourth arg NOSEP non-nil inhibits this. ;;;*** -;;;### (autoloads nil "eww" "net/eww.el" (22230 48822 807219 486000)) +;;;### (autoloads nil "eww" "net/eww.el" (22290 3771 251245 997000)) ;;; Generated autoloads from net/eww.el (defvar eww-suggest-uris '(eww-links-at-point url-get-url-at-point eww-current-url) "\ @@ -10146,7 +10146,7 @@ Display the bookmarks. ;;;*** ;;;### (autoloads nil "executable" "progmodes/executable.el" (22230 -;;;;;; 48822 879219 161000)) +;;;;;; 48822 879219 0)) ;;; Generated autoloads from progmodes/executable.el (autoload 'executable-command-find-posix-p "executable" "\ @@ -10181,7 +10181,7 @@ file modes. ;;;*** -;;;### (autoloads nil "expand" "expand.el" (22230 48822 713219 910000)) +;;;### (autoloads nil "expand" "expand.el" (22230 48822 713219 0)) ;;; Generated autoloads from expand.el (autoload 'expand-add-abbrevs "expand" "\ @@ -10230,8 +10230,8 @@ This is used only in conjunction with `expand-add-abbrevs'. ;;;*** -;;;### (autoloads nil "f90" "progmodes/f90.el" (22230 48822 879219 -;;;;;; 161000)) +;;;### (autoloads nil "f90" "progmodes/f90.el" (22266 10298 456370 +;;;;;; 0)) ;;; Generated autoloads from progmodes/f90.el (autoload 'f90-mode "f90" "\ @@ -10298,8 +10298,8 @@ with no args, if that value is non-nil. ;;;*** -;;;### (autoloads nil "face-remap" "face-remap.el" (22230 48822 713219 -;;;;;; 910000)) +;;;### (autoloads nil "face-remap" "face-remap.el" (22290 3781 417180 +;;;;;; 295000)) ;;; Generated autoloads from face-remap.el (autoload 'face-remap-add-relative "face-remap" "\ @@ -10459,7 +10459,7 @@ Besides the choice of face, it is the same as `buffer-face-mode'. ;;;*** ;;;### (autoloads nil "feedmail" "mail/feedmail.el" (22230 48822 -;;;;;; 788219 572000)) +;;;;;; 788219 0)) ;;; Generated autoloads from mail/feedmail.el (push (purecopy '(feedmail 11)) package--builtin-versions) @@ -10513,7 +10513,7 @@ you can set `feedmail-queue-reminder-alist' to nil. ;;;*** -;;;### (autoloads nil "ffap" "ffap.el" (22230 48822 714219 906000)) +;;;### (autoloads nil "ffap" "ffap.el" (22290 3781 417180 295000)) ;;; Generated autoloads from ffap.el (autoload 'ffap-next "ffap" "\ @@ -10577,7 +10577,7 @@ Evaluate the forms in variable `ffap-bindings'. ;;;*** ;;;### (autoloads nil "filecache" "filecache.el" (22230 48822 714219 -;;;;;; 906000)) +;;;;;; 0)) ;;; Generated autoloads from filecache.el (autoload 'file-cache-add-directory "filecache" "\ @@ -10634,8 +10634,8 @@ the name is considered already unique; only the second substitution ;;;*** -;;;### (autoloads nil "filenotify" "filenotify.el" (22230 57497 649234 -;;;;;; 943000)) +;;;### (autoloads nil "filenotify" "filenotify.el" (22266 10298 401370 +;;;;;; 0)) ;;; Generated autoloads from filenotify.el (autoload 'file-notify-handle-event "filenotify" "\ @@ -10650,8 +10650,7 @@ Otherwise, signal a `file-notify-error'. ;;;*** -;;;### (autoloads nil "files-x" "files-x.el" (22230 48822 715219 -;;;;;; 901000)) +;;;### (autoloads nil "files-x" "files-x.el" (22290 3771 176246 482000)) ;;; Generated autoloads from files-x.el (autoload 'add-file-local-variable "files-x" "\ @@ -10717,7 +10716,7 @@ Copy directory-local variables to the -*- line. ;;;*** ;;;### (autoloads nil "filesets" "filesets.el" (22230 48822 717219 -;;;;;; 892000)) +;;;;;; 0)) ;;; Generated autoloads from filesets.el (autoload 'filesets-init "filesets" "\ @@ -10729,7 +10728,7 @@ Set up hooks, load the cache file -- if existing -- and build the menu. ;;;*** ;;;### (autoloads nil "find-cmd" "find-cmd.el" (22230 48822 717219 -;;;;;; 892000)) +;;;;;; 0)) ;;; Generated autoloads from find-cmd.el (push (purecopy '(find-cmd 0 6)) package--builtin-versions) @@ -10749,8 +10748,8 @@ result is a string that should be ready for the command line. ;;;*** -;;;### (autoloads nil "find-dired" "find-dired.el" (22230 48822 717219 -;;;;;; 892000)) +;;;### (autoloads nil "find-dired" "find-dired.el" (22290 3771 179246 +;;;;;; 463000)) ;;; Generated autoloads from find-dired.el (autoload 'find-dired "find-dired" "\ @@ -10790,8 +10789,8 @@ use in place of \"-ls\" as the final argument. ;;;*** -;;;### (autoloads nil "find-file" "find-file.el" (22230 48822 717219 -;;;;;; 892000)) +;;;### (autoloads nil "find-file" "find-file.el" (22290 3771 179246 +;;;;;; 463000)) ;;; Generated autoloads from find-file.el (defvar ff-special-constructs `((,(purecopy "^#\\s *\\(include\\|import\\)\\s +[<\"]\\(.*\\)[>\"]") lambda nil (buffer-substring (match-beginning 2) (match-end 2)))) "\ @@ -10882,7 +10881,7 @@ Visit the file you click on in another window. ;;;*** ;;;### (autoloads nil "find-func" "emacs-lisp/find-func.el" (22230 -;;;;;; 48822 692220 5000)) +;;;;;; 48822 692220 0)) ;;; Generated autoloads from emacs-lisp/find-func.el (autoload 'find-library "find-func" "\ @@ -11053,7 +11052,7 @@ Define some key bindings for the find-function family of functions. ;;;*** ;;;### (autoloads nil "find-lisp" "find-lisp.el" (22230 48822 717219 -;;;;;; 892000)) +;;;;;; 0)) ;;; Generated autoloads from find-lisp.el (autoload 'find-lisp-find-dired "find-lisp" "\ @@ -11073,7 +11072,7 @@ Change the filter on a `find-lisp-find-dired' buffer to REGEXP. ;;;*** -;;;### (autoloads nil "finder" "finder.el" (22230 48822 717219 892000)) +;;;### (autoloads nil "finder" "finder.el" (22230 48822 717219 0)) ;;; Generated autoloads from finder.el (push (purecopy '(finder 1 0)) package--builtin-versions) @@ -11096,7 +11095,7 @@ Find packages matching a given keyword. ;;;*** ;;;### (autoloads nil "flow-ctrl" "flow-ctrl.el" (22230 48822 717219 -;;;;;; 892000)) +;;;;;; 0)) ;;; Generated autoloads from flow-ctrl.el (autoload 'enable-flow-control "flow-ctrl" "\ @@ -11117,8 +11116,8 @@ to get the effect of a C-q. ;;;*** -;;;### (autoloads nil "flow-fill" "gnus/flow-fill.el" (22230 48822 -;;;;;; 729219 838000)) +;;;### (autoloads nil "flow-fill" "gnus/flow-fill.el" (22290 3771 +;;;;;; 183246 437000)) ;;; Generated autoloads from gnus/flow-fill.el (autoload 'fill-flowed-encode "flow-fill" "\ @@ -11134,7 +11133,7 @@ to get the effect of a C-q. ;;;*** ;;;### (autoloads nil "flymake" "progmodes/flymake.el" (22230 48822 -;;;;;; 880219 157000)) +;;;;;; 880219 0)) ;;; Generated autoloads from progmodes/flymake.el (push (purecopy '(flymake 0 3)) package--builtin-versions) @@ -11164,8 +11163,8 @@ Turn flymake mode off. ;;;*** -;;;### (autoloads nil "flyspell" "textmodes/flyspell.el" (22230 48822 -;;;;;; 917218 990000)) +;;;### (autoloads nil "flyspell" "textmodes/flyspell.el" (22290 3771 +;;;;;; 322245 539000)) ;;; Generated autoloads from textmodes/flyspell.el (autoload 'flyspell-prog-mode "flyspell" "\ @@ -11236,13 +11235,13 @@ Flyspell whole buffer. ;;;*** ;;;### (autoloads nil "foldout" "foldout.el" (22230 48822 717219 -;;;;;; 892000)) +;;;;;; 0)) ;;; Generated autoloads from foldout.el (push (purecopy '(foldout 1 10)) package--builtin-versions) ;;;*** -;;;### (autoloads nil "follow" "follow.el" (22230 48822 718219 888000)) +;;;### (autoloads nil "follow" "follow.el" (22230 48822 718219 0)) ;;; Generated autoloads from follow.el (autoload 'turn-on-follow-mode "follow" "\ @@ -11337,7 +11336,7 @@ selected if the original window is the first one in the frame. ;;;*** ;;;### (autoloads nil "footnote" "mail/footnote.el" (22230 48822 -;;;;;; 788219 572000)) +;;;;;; 788219 0)) ;;; Generated autoloads from mail/footnote.el (push (purecopy '(footnote 0 19)) package--builtin-versions) @@ -11356,7 +11355,7 @@ play around with the following keys: ;;;*** -;;;### (autoloads nil "forms" "forms.el" (22230 48822 719219 884000)) +;;;### (autoloads nil "forms" "forms.el" (22266 10298 403370 0)) ;;; Generated autoloads from forms.el (autoload 'forms-mode "forms" "\ @@ -11393,7 +11392,7 @@ Visit a file in Forms mode in other window. ;;;*** ;;;### (autoloads nil "fortran" "progmodes/fortran.el" (22230 48822 -;;;;;; 880219 157000)) +;;;;;; 880219 0)) ;;; Generated autoloads from progmodes/fortran.el (autoload 'fortran-mode "fortran" "\ @@ -11470,8 +11469,8 @@ with no args, if that value is non-nil. ;;;*** -;;;### (autoloads nil "fortune" "play/fortune.el" (22230 48822 860219 -;;;;;; 247000)) +;;;### (autoloads nil "fortune" "play/fortune.el" (22290 3771 283245 +;;;;;; 791000)) ;;; Generated autoloads from play/fortune.el (autoload 'fortune-add-fortune "fortune" "\ @@ -11520,7 +11519,7 @@ and choose the directory as the fortune-file. ;;;*** ;;;### (autoloads nil "frameset" "frameset.el" (22230 48822 720219 -;;;;;; 879000)) +;;;;;; 0)) ;;; Generated autoloads from frameset.el (defvar frameset-session-filter-alist '((name . :never) (left . frameset-filter-iconified) (minibuffer . frameset-filter-minibuffer) (top . frameset-filter-iconified)) "\ @@ -11707,14 +11706,14 @@ Interactively, reads the register using `register-read-with-preview'. ;;;*** ;;;### (autoloads nil "gamegrid" "play/gamegrid.el" (22230 48822 -;;;;;; 860219 247000)) +;;;;;; 860219 0)) ;;; Generated autoloads from play/gamegrid.el (push (purecopy '(gamegrid 1 2)) package--builtin-versions) ;;;*** ;;;### (autoloads nil "gdb-mi" "progmodes/gdb-mi.el" (22230 48822 -;;;;;; 881219 152000)) +;;;;;; 881219 0)) ;;; Generated autoloads from progmodes/gdb-mi.el (defvar gdb-enable-debug nil "\ @@ -11792,7 +11791,7 @@ detailed description of this mode. ;;;*** ;;;### (autoloads nil "generic" "emacs-lisp/generic.el" (22230 48822 -;;;;;; 693220 1000)) +;;;;;; 693220 0)) ;;; Generated autoloads from emacs-lisp/generic.el (defvar generic-mode-list nil "\ @@ -11873,7 +11872,7 @@ regular expression that can be used as an element of ;;;*** ;;;### (autoloads nil "glasses" "progmodes/glasses.el" (22230 48822 -;;;;;; 881219 152000)) +;;;;;; 881219 0)) ;;; Generated autoloads from progmodes/glasses.el (autoload 'glasses-mode "glasses" "\ @@ -11887,8 +11886,8 @@ add virtual separators (like underscores) at places they belong to. ;;;*** -;;;### (autoloads nil "gmm-utils" "gnus/gmm-utils.el" (22230 48822 -;;;;;; 729219 838000)) +;;;### (autoloads nil "gmm-utils" "gnus/gmm-utils.el" (22290 3781 +;;;;;; 418180 289000)) ;;; Generated autoloads from gnus/gmm-utils.el (autoload 'gmm-regexp-concat "gmm-utils" "\ @@ -11942,7 +11941,7 @@ DEFAULT-MAP specifies the default key map for ICON-LIST. ;;;*** -;;;### (autoloads nil "gnus" "gnus/gnus.el" (22230 48822 742219 780000)) +;;;### (autoloads nil "gnus" "gnus/gnus.el" (22290 3771 204246 301000)) ;;; Generated autoloads from gnus/gnus.el (push (purecopy '(gnus 5 13)) package--builtin-versions) (when (fboundp 'custom-autoload) @@ -11992,8 +11991,8 @@ prompt the user for the name of an NNTP server to use. ;;;*** -;;;### (autoloads nil "gnus-agent" "gnus/gnus-agent.el" (22230 48822 -;;;;;; 730219 834000)) +;;;### (autoloads nil "gnus-agent" "gnus/gnus-agent.el" (22290 3771 +;;;;;; 185246 424000)) ;;; Generated autoloads from gnus/gnus-agent.el (autoload 'gnus-unplugged "gnus-agent" "\ @@ -12083,8 +12082,8 @@ CLEAN is obsolete and ignored. ;;;*** -;;;### (autoloads nil "gnus-art" "gnus/gnus-art.el" (22230 48822 -;;;;;; 731219 829000)) +;;;### (autoloads nil "gnus-art" "gnus/gnus-art.el" (22290 3781 419180 +;;;;;; 283000)) ;;; Generated autoloads from gnus/gnus-art.el (autoload 'gnus-article-prepare-display "gnus-art" "\ @@ -12094,8 +12093,8 @@ Make the current buffer look like a nice article. ;;;*** -;;;### (autoloads nil "gnus-bookmark" "gnus/gnus-bookmark.el" (22230 -;;;;;; 48822 731219 829000)) +;;;### (autoloads nil "gnus-bookmark" "gnus/gnus-bookmark.el" (22290 +;;;;;; 3771 188246 405000)) ;;; Generated autoloads from gnus/gnus-bookmark.el (autoload 'gnus-bookmark-set "gnus-bookmark" "\ @@ -12118,8 +12117,8 @@ deletion, or > if it is flagged for displaying. ;;;*** -;;;### (autoloads nil "gnus-cache" "gnus/gnus-cache.el" (22230 48822 -;;;;;; 731219 829000)) +;;;### (autoloads nil "gnus-cache" "gnus/gnus-cache.el" (22290 3771 +;;;;;; 188246 405000)) ;;; Generated autoloads from gnus/gnus-cache.el (autoload 'gnus-jog-cache "gnus-cache" "\ @@ -12160,8 +12159,8 @@ supported. ;;;*** -;;;### (autoloads nil "gnus-delay" "gnus/gnus-delay.el" (22230 48822 -;;;;;; 732219 825000)) +;;;### (autoloads nil "gnus-delay" "gnus/gnus-delay.el" (22290 3771 +;;;;;; 189246 398000)) ;;; Generated autoloads from gnus/gnus-delay.el (autoload 'gnus-delay-article "gnus-delay" "\ @@ -12196,8 +12195,8 @@ Checking delayed messages is skipped if optional arg NO-CHECK is non-nil. ;;;*** -;;;### (autoloads nil "gnus-diary" "gnus/gnus-diary.el" (22230 48822 -;;;;;; 732219 825000)) +;;;### (autoloads nil "gnus-diary" "gnus/gnus-diary.el" (22290 3771 +;;;;;; 189246 398000)) ;;; Generated autoloads from gnus/gnus-diary.el (autoload 'gnus-user-format-function-d "gnus-diary" "\ @@ -12212,8 +12211,8 @@ Checking delayed messages is skipped if optional arg NO-CHECK is non-nil. ;;;*** -;;;### (autoloads nil "gnus-dired" "gnus/gnus-dired.el" (22230 48822 -;;;;;; 732219 825000)) +;;;### (autoloads nil "gnus-dired" "gnus/gnus-dired.el" (22290 3771 +;;;;;; 189246 398000)) ;;; Generated autoloads from gnus/gnus-dired.el (autoload 'turn-on-gnus-dired-mode "gnus-dired" "\ @@ -12223,8 +12222,8 @@ Convenience method to turn on gnus-dired-mode. ;;;*** -;;;### (autoloads nil "gnus-draft" "gnus/gnus-draft.el" (22230 48822 -;;;;;; 733219 820000)) +;;;### (autoloads nil "gnus-draft" "gnus/gnus-draft.el" (22290 3771 +;;;;;; 189246 398000)) ;;; Generated autoloads from gnus/gnus-draft.el (autoload 'gnus-draft-reminder "gnus-draft" "\ @@ -12234,8 +12233,8 @@ Reminder user if there are unsent drafts. ;;;*** -;;;### (autoloads nil "gnus-fun" "gnus/gnus-fun.el" (22230 48822 -;;;;;; 733219 820000)) +;;;### (autoloads nil "gnus-fun" "gnus/gnus-fun.el" (22290 3771 189246 +;;;;;; 398000)) ;;; Generated autoloads from gnus/gnus-fun.el (autoload 'gnus--random-face-with-type "gnus-fun" "\ @@ -12300,8 +12299,8 @@ Insert a random Face header from `gnus-face-directory'. ;;;*** -;;;### (autoloads nil "gnus-gravatar" "gnus/gnus-gravatar.el" (22230 -;;;;;; 48822 733219 820000)) +;;;### (autoloads nil "gnus-gravatar" "gnus/gnus-gravatar.el" (22290 +;;;;;; 3771 190246 392000)) ;;; Generated autoloads from gnus/gnus-gravatar.el (autoload 'gnus-treat-from-gravatar "gnus-gravatar" "\ @@ -12318,8 +12317,8 @@ If gravatars are already displayed, remove them. ;;;*** -;;;### (autoloads nil "gnus-group" "gnus/gnus-group.el" (22230 48822 -;;;;;; 734219 816000)) +;;;### (autoloads nil "gnus-group" "gnus/gnus-group.el" (22290 3771 +;;;;;; 192246 379000)) ;;; Generated autoloads from gnus/gnus-group.el (autoload 'gnus-fetch-group "gnus-group" "\ @@ -12336,8 +12335,8 @@ Pop up a frame and enter GROUP. ;;;*** -;;;### (autoloads nil "gnus-html" "gnus/gnus-html.el" (22230 48822 -;;;;;; 734219 816000)) +;;;### (autoloads nil "gnus-html" "gnus/gnus-html.el" (22290 3771 +;;;;;; 192246 379000)) ;;; Generated autoloads from gnus/gnus-html.el (autoload 'gnus-article-html "gnus-html" "\ @@ -12353,7 +12352,7 @@ Pop up a frame and enter GROUP. ;;;*** ;;;### (autoloads nil "gnus-kill" "gnus/gnus-kill.el" (22230 48822 -;;;;;; 734219 816000)) +;;;;;; 734219 0)) ;;; Generated autoloads from gnus/gnus-kill.el (defalias 'gnus-batch-kill 'gnus-batch-score) @@ -12366,8 +12365,8 @@ Usage: emacs -batch -l ~/.emacs -l gnus -f gnus-batch-score ;;;*** -;;;### (autoloads nil "gnus-ml" "gnus/gnus-ml.el" (22230 48822 735219 -;;;;;; 811000)) +;;;### (autoloads nil "gnus-ml" "gnus/gnus-ml.el" (22290 3771 193246 +;;;;;; 372000)) ;;; Generated autoloads from gnus/gnus-ml.el (autoload 'turn-on-gnus-mailing-list-mode "gnus-ml" "\ @@ -12391,7 +12390,7 @@ Minor mode for providing mailing-list commands. ;;;*** ;;;### (autoloads nil "gnus-mlspl" "gnus/gnus-mlspl.el" (22230 48822 -;;;;;; 735219 811000)) +;;;;;; 735219 0)) ;;; Generated autoloads from gnus/gnus-mlspl.el (autoload 'gnus-group-split-setup "gnus-mlspl" "\ @@ -12491,8 +12490,8 @@ Calling (gnus-group-split-fancy nil nil \"mail.others\") returns: ;;;*** -;;;### (autoloads nil "gnus-msg" "gnus/gnus-msg.el" (22230 48822 -;;;;;; 735219 811000)) +;;;### (autoloads nil "gnus-msg" "gnus/gnus-msg.el" (22290 3771 193246 +;;;;;; 372000)) ;;; Generated autoloads from gnus/gnus-msg.el (autoload 'gnus-msg-mail "gnus-msg" "\ @@ -12519,7 +12518,7 @@ Like `message-reply'. ;;;*** ;;;### (autoloads nil "gnus-notifications" "gnus/gnus-notifications.el" -;;;;;; (22230 48822 735219 811000)) +;;;;;; (22290 3771 193246 372000)) ;;; Generated autoloads from gnus/gnus-notifications.el (autoload 'gnus-notifications "gnus-notifications" "\ @@ -12535,8 +12534,8 @@ This is typically a function to add in ;;;*** -;;;### (autoloads nil "gnus-picon" "gnus/gnus-picon.el" (22230 48822 -;;;;;; 735219 811000)) +;;;### (autoloads nil "gnus-picon" "gnus/gnus-picon.el" (22290 3771 +;;;;;; 193246 372000)) ;;; Generated autoloads from gnus/gnus-picon.el (autoload 'gnus-treat-from-picon "gnus-picon" "\ @@ -12560,7 +12559,7 @@ If picons are already displayed, remove them. ;;;*** ;;;### (autoloads nil "gnus-range" "gnus/gnus-range.el" (22230 48822 -;;;;;; 735219 811000)) +;;;;;; 735219 0)) ;;; Generated autoloads from gnus/gnus-range.el (autoload 'gnus-sorted-difference "gnus-range" "\ @@ -12627,8 +12626,8 @@ Add NUM into sorted LIST by side effect. ;;;*** -;;;### (autoloads nil "gnus-registry" "gnus/gnus-registry.el" (22230 -;;;;;; 48822 736219 807000)) +;;;### (autoloads nil "gnus-registry" "gnus/gnus-registry.el" (22290 +;;;;;; 3771 194246 366000)) ;;; Generated autoloads from gnus/gnus-registry.el (autoload 'gnus-registry-initialize "gnus-registry" "\ @@ -12644,7 +12643,7 @@ Install the registry hooks. ;;;*** ;;;### (autoloads nil "gnus-sieve" "gnus/gnus-sieve.el" (22230 48822 -;;;;;; 736219 807000)) +;;;;;; 736219 0)) ;;; Generated autoloads from gnus/gnus-sieve.el (autoload 'gnus-sieve-update "gnus-sieve" "\ @@ -12671,8 +12670,8 @@ See the documentation for these variables and functions for details. ;;;*** -;;;### (autoloads nil "gnus-spec" "gnus/gnus-spec.el" (22230 48822 -;;;;;; 737219 802000)) +;;;### (autoloads nil "gnus-spec" "gnus/gnus-spec.el" (22290 3771 +;;;;;; 194246 366000)) ;;; Generated autoloads from gnus/gnus-spec.el (autoload 'gnus-update-format "gnus-spec" "\ @@ -12682,8 +12681,8 @@ Update the format specification near point. ;;;*** -;;;### (autoloads nil "gnus-start" "gnus/gnus-start.el" (22230 48822 -;;;;;; 737219 802000)) +;;;### (autoloads nil "gnus-start" "gnus/gnus-start.el" (22290 3771 +;;;;;; 197246 347000)) ;;; Generated autoloads from gnus/gnus-start.el (autoload 'gnus-declare-backend "gnus-start" "\ @@ -12693,8 +12692,8 @@ Declare back end NAME with ABILITIES as a Gnus back end. ;;;*** -;;;### (autoloads nil "gnus-sum" "gnus/gnus-sum.el" (22230 48822 -;;;;;; 739219 793000)) +;;;### (autoloads nil "gnus-sum" "gnus/gnus-sum.el" (22290 3771 200246 +;;;;;; 327000)) ;;; Generated autoloads from gnus/gnus-sum.el (autoload 'gnus-summary-bookmark-jump "gnus-sum" "\ @@ -12705,8 +12704,8 @@ BOOKMARK is a bookmark name or a bookmark record. ;;;*** -;;;### (autoloads nil "gnus-sync" "gnus/gnus-sync.el" (22230 48822 -;;;;;; 740219 789000)) +;;;### (autoloads nil "gnus-sync" "gnus/gnus-sync.el" (22290 3771 +;;;;;; 201246 321000)) ;;; Generated autoloads from gnus/gnus-sync.el (autoload 'gnus-sync-initialize "gnus-sync" "\ @@ -12721,8 +12720,8 @@ Install the sync hooks. ;;;*** -;;;### (autoloads nil "gnus-win" "gnus/gnus-win.el" (22230 48822 -;;;;;; 741219 784000)) +;;;### (autoloads nil "gnus-win" "gnus/gnus-win.el" (22290 3771 204246 +;;;;;; 301000)) ;;; Generated autoloads from gnus/gnus-win.el (autoload 'gnus-add-configuration "gnus-win" "\ @@ -12732,8 +12731,8 @@ Add the window configuration CONF to `gnus-buffer-configuration'. ;;;*** -;;;### (autoloads nil "gnutls" "net/gnutls.el" (22230 48822 807219 -;;;;;; 486000)) +;;;### (autoloads nil "gnutls" "net/gnutls.el" (22290 3771 251245 +;;;;;; 997000)) ;;; Generated autoloads from net/gnutls.el (defvar gnutls-min-prime-bits 256 "\ @@ -12750,7 +12749,7 @@ A value of nil says to use the default GnuTLS value.") ;;;*** ;;;### (autoloads nil "gomoku" "play/gomoku.el" (22230 48822 860219 -;;;;;; 247000)) +;;;;;; 0)) ;;; Generated autoloads from play/gomoku.el (autoload 'gomoku "gomoku" "\ @@ -12777,7 +12776,7 @@ Use \\[describe-mode] for more info. ;;;*** ;;;### (autoloads nil "goto-addr" "net/goto-addr.el" (22230 48822 -;;;;;; 807219 486000)) +;;;;;; 807219 0)) ;;; Generated autoloads from net/goto-addr.el (define-obsolete-function-alias 'goto-address-at-mouse 'goto-address-at-point "22.1") @@ -12818,8 +12817,8 @@ Like `goto-address-mode', but only for comments and strings. ;;;*** -;;;### (autoloads nil "gravatar" "gnus/gravatar.el" (22230 48822 -;;;;;; 742219 780000)) +;;;### (autoloads nil "gravatar" "gnus/gravatar.el" (22290 3771 204246 +;;;;;; 301000)) ;;; Generated autoloads from gnus/gravatar.el (autoload 'gravatar-retrieve "gravatar" "\ @@ -12835,8 +12834,8 @@ Retrieve MAIL-ADDRESS gravatar and returns it. ;;;*** -;;;### (autoloads nil "grep" "progmodes/grep.el" (22230 48822 881219 -;;;;;; 152000)) +;;;### (autoloads nil "grep" "progmodes/grep.el" (22298 5692 411287 +;;;;;; 954000)) ;;; Generated autoloads from progmodes/grep.el (defvar grep-window-height nil "\ @@ -13003,7 +13002,7 @@ file name to `*.gz', and sets `grep-highlight-matches' to `always'. ;;;*** -;;;### (autoloads nil "gs" "gs.el" (22230 48822 755219 721000)) +;;;### (autoloads nil "gs" "gs.el" (22230 48822 755219 0)) ;;; Generated autoloads from gs.el (autoload 'gs-load-image "gs" "\ @@ -13016,8 +13015,8 @@ the form \"WINDOW-ID PIXMAP-ID\". Value is non-nil if successful. ;;;*** -;;;### (autoloads nil "gud" "progmodes/gud.el" (22230 48822 882219 -;;;;;; 148000)) +;;;### (autoloads nil "gud" "progmodes/gud.el" (22290 3771 297245 +;;;;;; 700000)) ;;; Generated autoloads from progmodes/gud.el (autoload 'gud-gdb "gud" "\ @@ -13113,7 +13112,7 @@ it if ARG is omitted or nil. ;;;*** ;;;### (autoloads nil "gv" "emacs-lisp/gv.el" (22230 48822 693220 -;;;;;; 1000)) +;;;;;; 0)) ;;; Generated autoloads from emacs-lisp/gv.el (autoload 'gv-get "gv" "\ @@ -13216,7 +13215,7 @@ binding mode. ;;;*** ;;;### (autoloads nil "handwrite" "play/handwrite.el" (22230 48822 -;;;;;; 861219 243000)) +;;;;;; 861219 0)) ;;; Generated autoloads from play/handwrite.el (autoload 'handwrite "handwrite" "\ @@ -13234,7 +13233,7 @@ Variables: `handwrite-linespace' (default 12) ;;;*** ;;;### (autoloads nil "hanoi" "play/hanoi.el" (22230 48822 861219 -;;;;;; 243000)) +;;;;;; 0)) ;;; Generated autoloads from play/hanoi.el (autoload 'hanoi "hanoi" "\ @@ -13262,7 +13261,7 @@ to be updated. ;;;*** ;;;### (autoloads nil "hashcash" "mail/hashcash.el" (22230 48822 -;;;;;; 788219 572000)) +;;;;;; 788219 0)) ;;; Generated autoloads from mail/hashcash.el (autoload 'hashcash-insert-payment "hashcash" "\ @@ -13305,7 +13304,7 @@ Prefix arg sets default accept amount temporarily. ;;;*** ;;;### (autoloads nil "help-at-pt" "help-at-pt.el" (22230 48822 755219 -;;;;;; 721000)) +;;;;;; 0)) ;;; Generated autoloads from help-at-pt.el (autoload 'help-at-pt-string "help-at-pt" "\ @@ -13432,8 +13431,8 @@ different regions. With numeric argument ARG, behaves like ;;;*** -;;;### (autoloads nil "help-fns" "help-fns.el" (22230 48822 755219 -;;;;;; 721000)) +;;;### (autoloads nil "help-fns" "help-fns.el" (22290 3771 224246 +;;;;;; 172000)) ;;; Generated autoloads from help-fns.el (autoload 'describe-function "help-fns" "\ @@ -13521,7 +13520,7 @@ Produce a texinfo buffer with sorted doc-strings from the DOC file. ;;;*** ;;;### (autoloads nil "help-macro" "help-macro.el" (22230 48822 755219 -;;;;;; 721000)) +;;;;;; 0)) ;;; Generated autoloads from help-macro.el (defvar three-step-help nil "\ @@ -13535,8 +13534,8 @@ gives the window that lists the options.") ;;;*** -;;;### (autoloads nil "help-mode" "help-mode.el" (22230 48822 755219 -;;;;;; 721000)) +;;;### (autoloads nil "help-mode" "help-mode.el" (22261 18214 508021 +;;;;;; 0)) ;;; Generated autoloads from help-mode.el (autoload 'help-mode "help-mode" "\ @@ -13638,7 +13637,7 @@ BOOKMARK is a bookmark name or a bookmark record. ;;;*** ;;;### (autoloads nil "helper" "emacs-lisp/helper.el" (22230 48822 -;;;;;; 693220 1000)) +;;;;;; 693220 0)) ;;; Generated autoloads from emacs-lisp/helper.el (autoload 'Helper-describe-bindings "helper" "\ @@ -13653,7 +13652,7 @@ Provide help for current mode. ;;;*** -;;;### (autoloads nil "hexl" "hexl.el" (22230 48822 756219 716000)) +;;;### (autoloads nil "hexl" "hexl.el" (22230 48822 756219 0)) ;;; Generated autoloads from hexl.el (autoload 'hexl-mode "hexl" "\ @@ -13748,7 +13747,7 @@ This discards the buffer's undo information. ;;;*** ;;;### (autoloads nil "hi-lock" "hi-lock.el" (22230 48822 756219 -;;;;;; 716000)) +;;;;;; 0)) ;;; Generated autoloads from hi-lock.el (autoload 'hi-lock-mode "hi-lock" "\ @@ -13915,8 +13914,8 @@ be found in variable `hi-lock-interactive-patterns'. ;;;*** -;;;### (autoloads nil "hideif" "progmodes/hideif.el" (22230 48822 -;;;;;; 882219 148000)) +;;;### (autoloads nil "hideif" "progmodes/hideif.el" (22266 10298 +;;;;;; 457370 0)) ;;; Generated autoloads from progmodes/hideif.el (autoload 'hide-ifdef-mode "hideif" "\ @@ -13963,8 +13962,8 @@ Several variables affect how the hiding is done: ;;;*** -;;;### (autoloads nil "hideshow" "progmodes/hideshow.el" (22230 48822 -;;;;;; 882219 148000)) +;;;### (autoloads nil "hideshow" "progmodes/hideshow.el" (22290 3771 +;;;;;; 297245 700000)) ;;; 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))) "\ @@ -14027,7 +14026,7 @@ Unconditionally turn off `hs-minor-mode'. ;;;*** ;;;### (autoloads nil "hilit-chg" "hilit-chg.el" (22230 48822 757219 -;;;;;; 712000)) +;;;;;; 0)) ;;; Generated autoloads from hilit-chg.el (autoload 'highlight-changes-mode "hilit-chg" "\ @@ -14159,7 +14158,7 @@ See `highlight-changes-mode' for more information on Highlight-Changes mode. ;;;*** ;;;### (autoloads nil "hippie-exp" "hippie-exp.el" (22230 48822 757219 -;;;;;; 712000)) +;;;;;; 0)) ;;; Generated autoloads from hippie-exp.el (push (purecopy '(hippie-exp 1 6)) package--builtin-versions) @@ -14192,7 +14191,7 @@ argument VERBOSE non-nil makes the function verbose. ;;;*** ;;;### (autoloads nil "hl-line" "hl-line.el" (22230 48822 757219 -;;;;;; 712000)) +;;;;;; 0)) ;;; Generated autoloads from hl-line.el (autoload 'hl-line-mode "hl-line" "\ @@ -14242,7 +14241,7 @@ Global-Hl-Line mode uses the functions `global-hl-line-unhighlight' and ;;;*** ;;;### (autoloads nil "holidays" "calendar/holidays.el" (22230 48822 -;;;;;; 652220 186000)) +;;;;;; 652220 0)) ;;; Generated autoloads from calendar/holidays.el (defvar holiday-general-holidays (mapcar 'purecopy '((holiday-fixed 1 1 "New Year's Day") (holiday-float 1 1 3 "Martin Luther King Day") (holiday-fixed 2 2 "Groundhog Day") (holiday-fixed 2 14 "Valentine's Day") (holiday-float 2 1 3 "President's Day") (holiday-fixed 3 17 "St. Patrick's Day") (holiday-fixed 4 1 "April Fools' Day") (holiday-float 5 0 2 "Mother's Day") (holiday-float 5 1 -1 "Memorial Day") (holiday-fixed 6 14 "Flag Day") (holiday-float 6 0 3 "Father's Day") (holiday-fixed 7 4 "Independence Day") (holiday-float 9 1 1 "Labor Day") (holiday-float 10 1 2 "Columbus Day") (holiday-fixed 10 31 "Halloween") (holiday-fixed 11 11 "Veteran's Day") (holiday-float 11 4 4 "Thanksgiving"))) "\ @@ -14352,8 +14351,8 @@ The optional LABEL is used to label the buffer created. ;;;*** -;;;### (autoloads nil "html2text" "gnus/html2text.el" (22230 48822 -;;;;;; 742219 780000)) +;;;### (autoloads nil "html2text" "gnus/html2text.el" (22290 3771 +;;;;;; 204246 301000)) ;;; Generated autoloads from gnus/html2text.el (autoload 'html2text "html2text" "\ @@ -14363,8 +14362,8 @@ Convert HTML to plain text in the current buffer. ;;;*** -;;;### (autoloads nil "htmlfontify" "htmlfontify.el" (22230 48822 -;;;;;; 757219 712000)) +;;;### (autoloads nil "htmlfontify" "htmlfontify.el" (22290 3771 +;;;;;; 229246 140000)) ;;; Generated autoloads from htmlfontify.el (push (purecopy '(htmlfontify 0 21)) package--builtin-versions) @@ -14398,7 +14397,7 @@ You may also want to set `hfy-page-header' and `hfy-page-footer'. ;;;*** ;;;### (autoloads nil "ibuf-macs" "ibuf-macs.el" (22230 48822 758219 -;;;;;; 707000)) +;;;;;; 0)) ;;; Generated autoloads from ibuf-macs.el (autoload 'define-ibuffer-column "ibuf-macs" "\ @@ -14500,8 +14499,7 @@ bound to the current value of the filter. ;;;*** -;;;### (autoloads nil "ibuffer" "ibuffer.el" (22230 48822 758219 -;;;;;; 707000)) +;;;### (autoloads nil "ibuffer" "ibuffer.el" (22290 3771 230246 133000)) ;;; Generated autoloads from ibuffer.el (autoload 'ibuffer-list-buffers "ibuffer" "\ @@ -14541,7 +14539,7 @@ FORMATS is the value to use for `ibuffer-formats'. ;;;*** ;;;### (autoloads nil "icalendar" "calendar/icalendar.el" (22230 -;;;;;; 48822 653220 181000)) +;;;;;; 48822 653220 0)) ;;; Generated autoloads from calendar/icalendar.el (push (purecopy '(icalendar 0 19)) package--builtin-versions) @@ -14595,7 +14593,7 @@ buffer `*icalendar-errors*'. ;;;*** ;;;### (autoloads nil "icomplete" "icomplete.el" (22230 48822 758219 -;;;;;; 707000)) +;;;;;; 0)) ;;; Generated autoloads from icomplete.el (defvar icomplete-mode nil "\ @@ -14634,8 +14632,8 @@ completions: ;;;*** -;;;### (autoloads nil "icon" "progmodes/icon.el" (22230 48822 883219 -;;;;;; 143000)) +;;;### (autoloads nil "icon" "progmodes/icon.el" (22266 10298 457370 +;;;;;; 0)) ;;; Generated autoloads from progmodes/icon.el (autoload 'icon-mode "icon" "\ @@ -14676,7 +14674,7 @@ with no args, if that value is non-nil. ;;;*** ;;;### (autoloads nil "idlw-shell" "progmodes/idlw-shell.el" (22230 -;;;;;; 48822 884219 139000)) +;;;;;; 48822 884219 0)) ;;; Generated autoloads from progmodes/idlw-shell.el (autoload 'idlwave-shell "idlw-shell" "\ @@ -14701,8 +14699,8 @@ See also the variable `idlwave-shell-prompt-pattern'. ;;;*** -;;;### (autoloads nil "idlwave" "progmodes/idlwave.el" (22230 48822 -;;;;;; 885219 134000)) +;;;### (autoloads nil "idlwave" "progmodes/idlwave.el" (22266 10298 +;;;;;; 459370 0)) ;;; Generated autoloads from progmodes/idlwave.el (push (purecopy '(idlwave 6 1 22)) package--builtin-versions) @@ -14831,7 +14829,7 @@ The main features of this mode are ;;;*** -;;;### (autoloads nil "ido" "ido.el" (22230 48822 759219 703000)) +;;;### (autoloads nil "ido" "ido.el" (22230 48822 759219 0)) ;;; Generated autoloads from ido.el (defvar ido-mode nil "\ @@ -15093,7 +15091,7 @@ DEF, if non-nil, is the default value. ;;;*** -;;;### (autoloads nil "ielm" "ielm.el" (22230 48822 759219 703000)) +;;;### (autoloads nil "ielm" "ielm.el" (22230 48822 759219 0)) ;;; Generated autoloads from ielm.el (autoload 'ielm "ielm" "\ @@ -15105,7 +15103,7 @@ See `inferior-emacs-lisp-mode' for details. ;;;*** -;;;### (autoloads nil "iimage" "iimage.el" (22230 48822 760219 698000)) +;;;### (autoloads nil "iimage" "iimage.el" (22230 48822 760219 0)) ;;; Generated autoloads from iimage.el (define-obsolete-function-alias 'turn-on-iimage-mode 'iimage-mode "24.1") @@ -15121,7 +15119,7 @@ the mode if ARG is omitted or nil, and toggle it if ARG is `toggle'. ;;;*** -;;;### (autoloads nil "image" "image.el" (22230 48822 761219 694000)) +;;;### (autoloads nil "image" "image.el" (22290 3771 231246 127000)) ;;; Generated autoloads from image.el (autoload 'image-type-from-data "image" "\ @@ -15314,8 +15312,8 @@ If Emacs is compiled without ImageMagick support, this does nothing. ;;;*** -;;;### (autoloads nil "image-dired" "image-dired.el" (22230 48822 -;;;;;; 760219 698000)) +;;;### (autoloads nil "image-dired" "image-dired.el" (22290 3771 +;;;;;; 230246 133000)) ;;; Generated autoloads from image-dired.el (push (purecopy '(image-dired 0 4 11)) package--builtin-versions) @@ -15453,7 +15451,7 @@ easy-to-use form. ;;;*** ;;;### (autoloads nil "image-file" "image-file.el" (22230 48822 760219 -;;;;;; 698000)) +;;;;;; 0)) ;;; Generated autoloads from image-file.el (defvar image-file-name-extensions (purecopy '("png" "jpeg" "jpg" "gif" "tiff" "tif" "xbm" "xpm" "pbm" "pgm" "ppm" "pnm" "svg")) "\ @@ -15515,8 +15513,8 @@ An image file is one whose name has an extension in ;;;*** -;;;### (autoloads nil "image-mode" "image-mode.el" (22230 48822 760219 -;;;;;; 698000)) +;;;### (autoloads nil "image-mode" "image-mode.el" (22290 3771 230246 +;;;;;; 133000)) ;;; Generated autoloads from image-mode.el (autoload 'image-mode "image-mode" "\ @@ -15563,7 +15561,7 @@ on these modes. ;;;*** -;;;### (autoloads nil "imenu" "imenu.el" (22230 48822 761219 694000)) +;;;### (autoloads nil "imenu" "imenu.el" (22230 48822 761219 0)) ;;; Generated autoloads from imenu.el (defvar imenu-sort-function nil "\ @@ -15702,7 +15700,7 @@ for more information. ;;;*** ;;;### (autoloads nil "ind-util" "language/ind-util.el" (22230 48822 -;;;;;; 773219 640000)) +;;;;;; 773219 0)) ;;; Generated autoloads from language/ind-util.el (autoload 'indian-compose-region "ind-util" "\ @@ -15733,7 +15731,7 @@ Convert old Emacs Devanagari characters to UCS. ;;;*** ;;;### (autoloads nil "inf-lisp" "progmodes/inf-lisp.el" (22230 48822 -;;;;;; 886219 130000)) +;;;;;; 886219 0)) ;;; Generated autoloads from progmodes/inf-lisp.el (autoload 'inferior-lisp "inf-lisp" "\ @@ -15751,7 +15749,7 @@ of `inferior-lisp-program'). Runs the hooks from ;;;*** -;;;### (autoloads nil "info" "info.el" (22230 48822 762219 689000)) +;;;### (autoloads nil "info" "info.el" (22230 48822 762219 0)) ;;; 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))))) "\ @@ -15963,8 +15961,8 @@ completion alternatives to currently visited manuals. ;;;*** -;;;### (autoloads nil "info-look" "info-look.el" (22230 48822 761219 -;;;;;; 694000)) +;;;### (autoloads nil "info-look" "info-look.el" (22298 5692 411287 +;;;;;; 954000)) ;;; Generated autoloads from info-look.el (autoload 'info-lookup-reset "info-look" "\ @@ -16012,7 +16010,7 @@ Perform completion on file preceding point. ;;;*** ;;;### (autoloads nil "info-xref" "info-xref.el" (22230 48822 761219 -;;;;;; 694000)) +;;;;;; 0)) ;;; Generated autoloads from info-xref.el (push (purecopy '(info-xref 3)) package--builtin-versions) @@ -16096,7 +16094,7 @@ the sources handy. ;;;*** ;;;### (autoloads nil "informat" "informat.el" (22230 48822 762219 -;;;;;; 689000)) +;;;;;; 0)) ;;; Generated autoloads from informat.el (autoload 'Info-tagify "informat" "\ @@ -16142,7 +16140,7 @@ For example, invoke \"emacs -batch -f batch-info-validate $info/ ~/*.info\" ;;;*** ;;;### (autoloads nil "inline" "emacs-lisp/inline.el" (22230 48822 -;;;;;; 693220 1000)) +;;;;;; 693220 0)) ;;; Generated autoloads from emacs-lisp/inline.el (autoload 'define-inline "inline" "\ @@ -16157,7 +16155,7 @@ For example, invoke \"emacs -batch -f batch-info-validate $info/ ~/*.info\" ;;;*** ;;;### (autoloads nil "inversion" "cedet/inversion.el" (22230 48822 -;;;;;; 660220 150000)) +;;;;;; 660220 0)) ;;; Generated autoloads from cedet/inversion.el (push (purecopy '(inversion 1 3)) package--builtin-versions) @@ -16170,7 +16168,7 @@ Only checks one based on which kind of Emacs is being run. ;;;*** ;;;### (autoloads nil "isearch-x" "international/isearch-x.el" (22230 -;;;;;; 48822 763219 685000)) +;;;;;; 48822 763219 0)) ;;; Generated autoloads from international/isearch-x.el (autoload 'isearch-toggle-specified-input-method "isearch-x" "\ @@ -16191,7 +16189,7 @@ Toggle input method in interactive search. ;;;*** ;;;### (autoloads nil "isearchb" "isearchb.el" (22230 48822 768219 -;;;;;; 662000)) +;;;;;; 0)) ;;; Generated autoloads from isearchb.el (push (purecopy '(isearchb 1 5)) package--builtin-versions) @@ -16206,7 +16204,7 @@ accessed via isearchb. ;;;*** ;;;### (autoloads nil "iso-cvt" "international/iso-cvt.el" (22230 -;;;;;; 48822 764219 680000)) +;;;;;; 48822 764219 0)) ;;; Generated autoloads from international/iso-cvt.el (autoload 'iso-spanish "iso-cvt" "\ @@ -16297,7 +16295,7 @@ Add submenus to the File menu, to convert to and from various formats. ;;;*** ;;;### (autoloads nil "iso-transl" "international/iso-transl.el" -;;;;;; (22230 48822 764219 680000)) +;;;;;; (22230 48822 764219 0)) ;;; 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) @@ -16305,7 +16303,7 @@ Add submenus to the File menu, to convert to and from various formats. ;;;*** ;;;### (autoloads nil "ispell" "textmodes/ispell.el" (22230 48822 -;;;;;; 918218 985000)) +;;;;;; 918218 0)) ;;; Generated autoloads from textmodes/ispell.el (put 'ispell-check-comments 'safe-local-variable (lambda (a) (memq a '(nil t exclusive)))) @@ -16539,7 +16537,7 @@ You can bind this to the key C-c i in GNUS or mail by adding to ;;;*** ;;;### (autoloads nil "japan-util" "language/japan-util.el" (22230 -;;;;;; 48822 773219 640000)) +;;;;;; 48822 773219 0)) ;;; Generated autoloads from language/japan-util.el (autoload 'setup-japanese-environment-internal "japan-util" "\ @@ -16617,7 +16615,7 @@ If non-nil, second arg INITIAL-INPUT is a string to insert before reading. ;;;*** ;;;### (autoloads nil "jka-compr" "jka-compr.el" (22230 48822 769219 -;;;;;; 658000)) +;;;;;; 0)) ;;; Generated autoloads from jka-compr.el (defvar jka-compr-inhibit nil "\ @@ -16640,8 +16638,7 @@ by `jka-compr-installed'. ;;;*** -;;;### (autoloads nil "js" "progmodes/js.el" (22230 48822 886219 -;;;;;; 130000)) +;;;### (autoloads nil "js" "progmodes/js.el" (22290 3781 431180 205000)) ;;; Generated autoloads from progmodes/js.el (push (purecopy '(js 9)) package--builtin-versions) @@ -16668,14 +16665,14 @@ locally, like so: ;;;*** -;;;### (autoloads nil "json" "json.el" (22230 48822 769219 658000)) +;;;### (autoloads nil "json" "json.el" (22266 10298 409370 0)) ;;; Generated autoloads from json.el (push (purecopy '(json 1 4)) package--builtin-versions) ;;;*** ;;;### (autoloads nil "keypad" "emulation/keypad.el" (22230 48822 -;;;;;; 699219 974000)) +;;;;;; 699219 0)) ;;; Generated autoloads from emulation/keypad.el (defvar keypad-setup nil "\ @@ -16731,7 +16728,7 @@ the decimal key on the keypad is mapped to DECIMAL instead of `.' ;;;*** ;;;### (autoloads nil "kinsoku" "international/kinsoku.el" (22230 -;;;;;; 48822 764219 680000)) +;;;;;; 48822 764219 0)) ;;; Generated autoloads from international/kinsoku.el (autoload 'kinsoku "kinsoku" "\ @@ -16753,7 +16750,7 @@ the context of text formatting. ;;;*** ;;;### (autoloads nil "kkc" "international/kkc.el" (22230 48822 764219 -;;;;;; 680000)) +;;;;;; 0)) ;;; Generated autoloads from international/kkc.el (defvar kkc-after-update-conversion-functions nil "\ @@ -16775,7 +16772,7 @@ and the return value is the length of the conversion. ;;;*** -;;;### (autoloads nil "kmacro" "kmacro.el" (22230 48822 769219 658000)) +;;;### (autoloads nil "kmacro" "kmacro.el" (22230 48822 769219 0)) ;;; Generated autoloads from kmacro.el (global-set-key "\C-x(" 'kmacro-start-macro) (global-set-key "\C-x)" 'kmacro-end-macro) @@ -16888,7 +16885,7 @@ If kbd macro currently being defined end it before activating it. ;;;*** ;;;### (autoloads nil "korea-util" "language/korea-util.el" (22230 -;;;;;; 48822 773219 640000)) +;;;;;; 48822 773219 0)) ;;; Generated autoloads from language/korea-util.el (defvar default-korean-keyboard (purecopy (if (string-match "3" (or (getenv "HANGUL_KEYBOARD_TYPE") "")) "3" "")) "\ @@ -16903,7 +16900,7 @@ The kind of Korean keyboard for Korean input method. ;;;*** ;;;### (autoloads nil "lao-util" "language/lao-util.el" (22230 48822 -;;;;;; 774219 635000)) +;;;;;; 774219 0)) ;;; Generated autoloads from language/lao-util.el (autoload 'lao-compose-string "lao-util" "\ @@ -16941,7 +16938,7 @@ Transcribe Romanized Lao string STR to Lao character string. ;;;*** ;;;### (autoloads nil "latexenc" "international/latexenc.el" (22230 -;;;;;; 48822 764219 680000)) +;;;;;; 48822 764219 0)) ;;; Generated autoloads from international/latexenc.el (defvar latex-inputenc-coding-alist (purecopy '(("ansinew" . windows-1252) ("applemac" . mac-roman) ("ascii" . us-ascii) ("cp1250" . windows-1250) ("cp1252" . windows-1252) ("cp1257" . cp1257) ("cp437de" . cp437) ("cp437" . cp437) ("cp850" . cp850) ("cp852" . cp852) ("cp858" . cp858) ("cp865" . cp865) ("latin1" . iso-8859-1) ("latin2" . iso-8859-2) ("latin3" . iso-8859-3) ("latin4" . iso-8859-4) ("latin5" . iso-8859-5) ("latin9" . iso-8859-15) ("next" . next) ("utf8" . utf-8) ("utf8x" . utf-8))) "\ @@ -16973,7 +16970,7 @@ coding system names is determined from `latex-inputenc-coding-alist'. ;;;*** ;;;### (autoloads nil "latin1-disp" "international/latin1-disp.el" -;;;;;; (22230 48822 764219 680000)) +;;;;;; (22230 48822 764219 0)) ;;; Generated autoloads from international/latin1-disp.el (defvar latin1-display nil "\ @@ -17015,7 +17012,7 @@ use either \\[customize] or the function `latin1-display'.") ;;;*** ;;;### (autoloads nil "ld-script" "progmodes/ld-script.el" (22230 -;;;;;; 48822 886219 130000)) +;;;;;; 48822 886219 0)) ;;; Generated autoloads from progmodes/ld-script.el (autoload 'ld-script-mode "ld-script" "\ @@ -17025,8 +17022,8 @@ A major mode to edit GNU ld script files ;;;*** -;;;### (autoloads nil "let-alist" "emacs-lisp/let-alist.el" (22230 -;;;;;; 48822 693220 1000)) +;;;### (autoloads nil "let-alist" "emacs-lisp/let-alist.el" (22290 +;;;;;; 3771 161246 579000)) ;;; Generated autoloads from emacs-lisp/let-alist.el (push (purecopy '(let-alist 1 0 4)) package--builtin-versions) @@ -17065,7 +17062,7 @@ displayed in the example above. ;;;*** -;;;### (autoloads nil "life" "play/life.el" (22230 48822 861219 243000)) +;;;### (autoloads nil "life" "play/life.el" (22230 48822 861219 0)) ;;; Generated autoloads from play/life.el (autoload 'life "life" "\ @@ -17078,7 +17075,7 @@ generations (this defaults to 1). ;;;*** -;;;### (autoloads nil "linum" "linum.el" (22230 48822 786219 581000)) +;;;### (autoloads nil "linum" "linum.el" (22290 3771 242246 56000)) ;;; Generated autoloads from linum.el (push (purecopy '(linum 0 9 24)) package--builtin-versions) @@ -17116,7 +17113,7 @@ See `linum-mode' for more information on Linum mode. ;;;*** ;;;### (autoloads nil "loadhist" "loadhist.el" (22230 48822 786219 -;;;;;; 581000)) +;;;;;; 0)) ;;; Generated autoloads from loadhist.el (autoload 'unload-feature "loadhist" "\ @@ -17147,7 +17144,7 @@ something strange, such as redefining an Emacs function. ;;;*** -;;;### (autoloads nil "locate" "locate.el" (22230 48822 786219 581000)) +;;;### (autoloads nil "locate" "locate.el" (22230 48822 786219 0)) ;;; Generated autoloads from locate.el (defvar locate-ls-subdir-switches (purecopy "-al") "\ @@ -17200,7 +17197,7 @@ except that FILTER is not optional. ;;;*** ;;;### (autoloads nil "log-edit" "vc/log-edit.el" (22230 48822 937218 -;;;;;; 899000)) +;;;;;; 0)) ;;; Generated autoloads from vc/log-edit.el (autoload 'log-edit "log-edit" "\ @@ -17231,8 +17228,8 @@ done. Otherwise, it uses the current buffer. ;;;*** -;;;### (autoloads nil "log-view" "vc/log-view.el" (22230 48822 937218 -;;;;;; 899000)) +;;;### (autoloads nil "log-view" "vc/log-view.el" (22298 5692 419287 +;;;;;; 921000)) ;;; Generated autoloads from vc/log-view.el (autoload 'log-view-mode "log-view" "\ @@ -17242,7 +17239,7 @@ Major mode for browsing CVS log output. ;;;*** -;;;### (autoloads nil "lpr" "lpr.el" (22230 48822 786219 581000)) +;;;### (autoloads nil "lpr" "lpr.el" (22290 3771 242246 56000)) ;;; Generated autoloads from lpr.el (defvar lpr-windows-system (memq system-type '(ms-dos windows-nt)) "\ @@ -17337,8 +17334,7 @@ for further customization of the printer command. ;;;*** -;;;### (autoloads nil "ls-lisp" "ls-lisp.el" (22230 48822 787219 -;;;;;; 577000)) +;;;### (autoloads nil "ls-lisp" "ls-lisp.el" (22290 3771 243246 49000)) ;;; Generated autoloads from ls-lisp.el (defvar ls-lisp-support-shell-wildcards t "\ @@ -17350,7 +17346,7 @@ Otherwise they are treated as Emacs regexps (for backward compatibility).") ;;;*** ;;;### (autoloads nil "lunar" "calendar/lunar.el" (22230 48822 653220 -;;;;;; 181000)) +;;;;;; 0)) ;;; Generated autoloads from calendar/lunar.el (autoload 'lunar-phases "lunar" "\ @@ -17363,7 +17359,7 @@ This function is suitable for execution in an init file. ;;;*** ;;;### (autoloads nil "m4-mode" "progmodes/m4-mode.el" (22230 48822 -;;;;;; 887219 125000)) +;;;;;; 887219 0)) ;;; Generated autoloads from progmodes/m4-mode.el (autoload 'm4-mode "m4-mode" "\ @@ -17373,7 +17369,7 @@ A major mode to edit m4 macro files. ;;;*** -;;;### (autoloads nil "macros" "macros.el" (22230 48822 787219 577000)) +;;;### (autoloads nil "macros" "macros.el" (22230 48822 787219 0)) ;;; Generated autoloads from macros.el (autoload 'name-last-kbd-macro "macros" "\ @@ -17462,8 +17458,8 @@ and then select the region of un-tablified names and use ;;;*** -;;;### (autoloads nil "mail-extr" "mail/mail-extr.el" (22230 48822 -;;;;;; 788219 572000)) +;;;### (autoloads nil "mail-extr" "mail/mail-extr.el" (22290 3771 +;;;;;; 243246 49000)) ;;; Generated autoloads from mail/mail-extr.el (autoload 'mail-extract-address-components "mail-extr" "\ @@ -17494,7 +17490,7 @@ Convert mail domain DOMAIN to the country it corresponds to. ;;;*** ;;;### (autoloads nil "mail-hist" "mail/mail-hist.el" (22230 48822 -;;;;;; 788219 572000)) +;;;;;; 788219 0)) ;;; Generated autoloads from mail/mail-hist.el (autoload 'mail-hist-define-keys "mail-hist" "\ @@ -17524,7 +17520,7 @@ This function normally would be called when the message is sent. ;;;*** ;;;### (autoloads nil "mail-utils" "mail/mail-utils.el" (22230 48822 -;;;;;; 788219 572000)) +;;;;;; 788219 0)) ;;; Generated autoloads from mail/mail-utils.el (defvar mail-use-rfc822 nil "\ @@ -17598,8 +17594,8 @@ matches may be returned from the message body. ;;;*** -;;;### (autoloads nil "mailabbrev" "mail/mailabbrev.el" (22230 48822 -;;;;;; 789219 567000)) +;;;### (autoloads nil "mailabbrev" "mail/mailabbrev.el" (22266 10298 +;;;;;; 410370 0)) ;;; Generated autoloads from mail/mailabbrev.el (defvar mail-abbrevs-mode nil "\ @@ -17649,7 +17645,7 @@ double-quotes. ;;;*** ;;;### (autoloads nil "mailalias" "mail/mailalias.el" (22230 48822 -;;;;;; 789219 567000)) +;;;;;; 789219 0)) ;;; Generated autoloads from mail/mailalias.el (defvar mail-complete-style 'angles "\ @@ -17703,7 +17699,7 @@ current header, calls `mail-complete-function' and passes prefix ARG if any. ;;;*** ;;;### (autoloads nil "mailclient" "mail/mailclient.el" (22230 48822 -;;;;;; 789219 567000)) +;;;;;; 789219 0)) ;;; Generated autoloads from mail/mailclient.el (autoload 'mailclient-send-it "mailclient" "\ @@ -17715,8 +17711,8 @@ The mail client is taken to be the handler of mailto URLs. ;;;*** -;;;### (autoloads nil "make-mode" "progmodes/make-mode.el" (22230 -;;;;;; 48822 887219 125000)) +;;;### (autoloads nil "make-mode" "progmodes/make-mode.el" (22261 +;;;;;; 18214 528020 0)) ;;; Generated autoloads from progmodes/make-mode.el (autoload 'makefile-mode "make-mode" "\ @@ -17834,7 +17830,7 @@ An adapted `makefile-mode' that knows about imake. ;;;*** ;;;### (autoloads nil "makesum" "makesum.el" (22230 48822 793219 -;;;;;; 549000)) +;;;;;; 0)) ;;; Generated autoloads from makesum.el (autoload 'make-command-summary "makesum" "\ @@ -17845,7 +17841,7 @@ Previous contents of that buffer are killed first. ;;;*** -;;;### (autoloads nil "man" "man.el" (22230 48822 794219 545000)) +;;;### (autoloads nil "man" "man.el" (22230 48822 794219 0)) ;;; Generated autoloads from man.el (defalias 'manual-entry 'man) @@ -17901,14 +17897,14 @@ Default bookmark handler for Man buffers. ;;;*** -;;;### (autoloads nil "map" "emacs-lisp/map.el" (22230 48822 694219 -;;;;;; 996000)) +;;;### (autoloads nil "map" "emacs-lisp/map.el" (22274 39275 441023 +;;;;;; 0)) ;;; Generated autoloads from emacs-lisp/map.el (push (purecopy '(map 1 0)) package--builtin-versions) ;;;*** -;;;### (autoloads nil "master" "master.el" (22230 48822 794219 545000)) +;;;### (autoloads nil "master" "master.el" (22230 48822 794219 0)) ;;; Generated autoloads from master.el (push (purecopy '(master 1 0 2)) package--builtin-versions) @@ -17932,7 +17928,7 @@ yourself the value of `master-of' by calling `master-show-slave'. ;;;*** ;;;### (autoloads nil "mb-depth" "mb-depth.el" (22230 48822 794219 -;;;;;; 545000)) +;;;;;; 0)) ;;; Generated autoloads from mb-depth.el (defvar minibuffer-depth-indicate-mode nil "\ @@ -17959,14 +17955,14 @@ recursion depth in the minibuffer prompt. This is only useful if ;;;*** -;;;### (autoloads nil "md4" "md4.el" (22230 48822 794219 545000)) +;;;### (autoloads nil "md4" "md4.el" (22230 48822 794219 0)) ;;; Generated autoloads from md4.el (push (purecopy '(md4 1 0)) package--builtin-versions) ;;;*** -;;;### (autoloads nil "message" "gnus/message.el" (22230 48822 744219 -;;;;;; 770000)) +;;;### (autoloads nil "message" "gnus/message.el" (22290 3771 206246 +;;;;;; 288000)) ;;; 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) @@ -18132,7 +18128,7 @@ which specify the range to operate on. ;;;*** ;;;### (autoloads nil "meta-mode" "progmodes/meta-mode.el" (22230 -;;;;;; 48822 887219 125000)) +;;;;;; 48822 887219 0)) ;;; Generated autoloads from progmodes/meta-mode.el (push (purecopy '(meta-mode 1 0)) package--builtin-versions) @@ -18149,7 +18145,7 @@ Major mode for editing MetaPost sources. ;;;*** ;;;### (autoloads nil "metamail" "mail/metamail.el" (22230 48822 -;;;;;; 789219 567000)) +;;;;;; 789219 0)) ;;; Generated autoloads from mail/metamail.el (autoload 'metamail-interpret-header "metamail" "\ @@ -18192,8 +18188,8 @@ redisplayed as output is inserted. ;;;*** -;;;### (autoloads nil "mh-comp" "mh-e/mh-comp.el" (22230 48822 797219 -;;;;;; 531000)) +;;;### (autoloads nil "mh-comp" "mh-e/mh-comp.el" (22290 3771 249246 +;;;;;; 10000)) ;;; Generated autoloads from mh-e/mh-comp.el (autoload 'mh-smail "mh-comp" "\ @@ -18283,7 +18279,7 @@ delete the draft message. ;;;*** -;;;### (autoloads nil "mh-e" "mh-e/mh-e.el" (22230 48822 798219 527000)) +;;;### (autoloads nil "mh-e" "mh-e/mh-e.el" (22290 3771 250246 4000)) ;;; Generated autoloads from mh-e/mh-e.el (push (purecopy '(mh-e 8 6)) package--builtin-versions) @@ -18301,7 +18297,7 @@ Display version information about MH-E and the MH mail handling system. ;;;*** ;;;### (autoloads nil "mh-folder" "mh-e/mh-folder.el" (22230 48822 -;;;;;; 799219 522000)) +;;;;;; 799219 0)) ;;; Generated autoloads from mh-e/mh-folder.el (autoload 'mh-rmail "mh-folder" "\ @@ -18382,8 +18378,8 @@ perform the operation on all messages in that region. ;;;*** -;;;### (autoloads nil "midnight" "midnight.el" (22230 48822 802219 -;;;;;; 509000)) +;;;### (autoloads nil "midnight" "midnight.el" (22290 3781 420180 +;;;;;; 276000)) ;;; Generated autoloads from midnight.el (defvar midnight-mode nil "\ @@ -18424,7 +18420,7 @@ to its second argument TM. ;;;*** ;;;### (autoloads nil "minibuf-eldef" "minibuf-eldef.el" (22230 48822 -;;;;;; 802219 509000)) +;;;;;; 802219 0)) ;;; Generated autoloads from minibuf-eldef.el (defvar minibuffer-electric-default-mode nil "\ @@ -18453,7 +18449,7 @@ is modified to remove the default indication. ;;;*** -;;;### (autoloads nil "misc" "misc.el" (22230 48822 803219 504000)) +;;;### (autoloads nil "misc" "misc.el" (22230 48822 803219 0)) ;;; Generated autoloads from misc.el (autoload 'butterfly "misc" "\ @@ -18482,7 +18478,7 @@ The return value is always nil. ;;;*** ;;;### (autoloads nil "misearch" "misearch.el" (22230 48822 803219 -;;;;;; 504000)) +;;;;;; 0)) ;;; Generated autoloads from misearch.el (add-hook 'isearch-mode-hook 'multi-isearch-setup) @@ -18571,7 +18567,7 @@ whose file names match the specified wildcard. ;;;*** ;;;### (autoloads nil "mixal-mode" "progmodes/mixal-mode.el" (22230 -;;;;;; 48822 887219 125000)) +;;;;;; 48822 887219 0)) ;;; Generated autoloads from progmodes/mixal-mode.el (push (purecopy '(mixal-mode 0 1)) package--builtin-versions) @@ -18583,7 +18579,7 @@ Major mode for the mixal asm language. ;;;*** ;;;### (autoloads nil "mm-encode" "gnus/mm-encode.el" (22230 48822 -;;;;;; 745219 766000)) +;;;;;; 745219 0)) ;;; Generated autoloads from gnus/mm-encode.el (autoload 'mm-default-file-encoding "mm-encode" "\ @@ -18594,7 +18590,7 @@ Return a default encoding for FILE. ;;;*** ;;;### (autoloads nil "mm-extern" "gnus/mm-extern.el" (22230 48822 -;;;;;; 745219 766000)) +;;;;;; 745219 0)) ;;; Generated autoloads from gnus/mm-extern.el (autoload 'mm-extern-cache-contents "mm-extern" "\ @@ -18612,8 +18608,8 @@ If NO-DISPLAY is nil, display it. Otherwise, do nothing after replacing. ;;;*** -;;;### (autoloads nil "mm-partial" "gnus/mm-partial.el" (22230 48822 -;;;;;; 745219 766000)) +;;;### (autoloads nil "mm-partial" "gnus/mm-partial.el" (22290 3771 +;;;;;; 209246 269000)) ;;; Generated autoloads from gnus/mm-partial.el (autoload 'mm-inline-partial "mm-partial" "\ @@ -18626,8 +18622,8 @@ If NO-DISPLAY is nil, display it. Otherwise, do nothing after replacing. ;;;*** -;;;### (autoloads nil "mm-url" "gnus/mm-url.el" (22230 48822 745219 -;;;;;; 766000)) +;;;### (autoloads nil "mm-url" "gnus/mm-url.el" (22290 3771 209246 +;;;;;; 269000)) ;;; Generated autoloads from gnus/mm-url.el (autoload 'mm-url-insert-file-contents "mm-url" "\ @@ -18643,8 +18639,8 @@ Insert file contents of URL using `mm-url-program'. ;;;*** -;;;### (autoloads nil "mm-uu" "gnus/mm-uu.el" (22230 48822 745219 -;;;;;; 766000)) +;;;### (autoloads nil "mm-uu" "gnus/mm-uu.el" (22290 3771 211246 +;;;;;; 256000)) ;;; Generated autoloads from gnus/mm-uu.el (autoload 'mm-uu-dissect "mm-uu" "\ @@ -18663,7 +18659,7 @@ Assume text has been decoded if DECODED is non-nil. ;;;*** -;;;### (autoloads nil "mml" "gnus/mml.el" (22230 48822 746219 762000)) +;;;### (autoloads nil "mml" "gnus/mml.el" (22290 3771 212246 250000)) ;;; Generated autoloads from gnus/mml.el (autoload 'mml-to-mime "mml" "\ @@ -18688,8 +18684,8 @@ body) or \"attachment\" (separate from the body). ;;;*** -;;;### (autoloads nil "mml1991" "gnus/mml1991.el" (22230 48822 746219 -;;;;;; 762000)) +;;;### (autoloads nil "mml1991" "gnus/mml1991.el" (22290 3771 212246 +;;;;;; 250000)) ;;; Generated autoloads from gnus/mml1991.el (autoload 'mml1991-encrypt "mml1991" "\ @@ -18704,8 +18700,8 @@ body) or \"attachment\" (separate from the body). ;;;*** -;;;### (autoloads nil "mml2015" "gnus/mml2015.el" (22230 48822 746219 -;;;;;; 762000)) +;;;### (autoloads nil "mml2015" "gnus/mml2015.el" (22290 3771 212246 +;;;;;; 250000)) ;;; Generated autoloads from gnus/mml2015.el (autoload 'mml2015-decrypt "mml2015" "\ @@ -18745,8 +18741,8 @@ body) or \"attachment\" (separate from the body). ;;;*** -;;;### (autoloads nil "mode-local" "cedet/mode-local.el" (22230 48822 -;;;;;; 660220 150000)) +;;;### (autoloads nil "mode-local" "cedet/mode-local.el" (22290 3781 +;;;;;; 414180 315000)) ;;; Generated autoloads from cedet/mode-local.el (put 'define-overloadable-function 'doc-string-elt 3) @@ -18754,7 +18750,7 @@ body) or \"attachment\" (separate from the body). ;;;*** ;;;### (autoloads nil "modula2" "progmodes/modula2.el" (22230 48822 -;;;;;; 887219 125000)) +;;;;;; 887219 0)) ;;; Generated autoloads from progmodes/modula2.el (defalias 'modula-2-mode 'm2-mode) @@ -18788,7 +18784,7 @@ followed by the first character of the construct. ;;;*** ;;;### (autoloads nil "morse" "play/morse.el" (22230 48822 861219 -;;;;;; 243000)) +;;;;;; 0)) ;;; Generated autoloads from play/morse.el (autoload 'morse-region "morse" "\ @@ -18814,7 +18810,7 @@ Convert NATO phonetic alphabet in region to ordinary ASCII text. ;;;*** ;;;### (autoloads nil "mouse-drag" "mouse-drag.el" (22230 48822 803219 -;;;;;; 504000)) +;;;;;; 0)) ;;; Generated autoloads from mouse-drag.el (autoload 'mouse-drag-throw "mouse-drag" "\ @@ -18861,7 +18857,7 @@ To test this function, evaluate: ;;;*** -;;;### (autoloads nil "mpc" "mpc.el" (22230 48822 804219 500000)) +;;;### (autoloads nil "mpc" "mpc.el" (22290 3771 251245 997000)) ;;; Generated autoloads from mpc.el (autoload 'mpc "mpc" "\ @@ -18871,7 +18867,7 @@ Main entry point for MPC. ;;;*** -;;;### (autoloads nil "mpuz" "play/mpuz.el" (22230 48822 861219 243000)) +;;;### (autoloads nil "mpuz" "play/mpuz.el" (22230 48822 861219 0)) ;;; Generated autoloads from play/mpuz.el (autoload 'mpuz "mpuz" "\ @@ -18881,7 +18877,7 @@ Multiplication puzzle with GNU Emacs. ;;;*** -;;;### (autoloads nil "msb" "msb.el" (22230 48822 804219 500000)) +;;;### (autoloads nil "msb" "msb.el" (22230 48822 804219 0)) ;;; Generated autoloads from msb.el (defvar msb-mode nil "\ @@ -18907,7 +18903,7 @@ different buffer menu using the function `msb'. ;;;*** ;;;### (autoloads nil "mule-diag" "international/mule-diag.el" (22230 -;;;;;; 48822 765219 676000)) +;;;;;; 48822 765219 0)) ;;; Generated autoloads from international/mule-diag.el (autoload 'list-character-sets "mule-diag" "\ @@ -19040,7 +19036,7 @@ The default is 20. If LIMIT is negative, do not limit the listing. ;;;*** ;;;### (autoloads nil "mule-util" "international/mule-util.el" (22230 -;;;;;; 48822 766219 671000)) +;;;;;; 48822 766219 0)) ;;; Generated autoloads from international/mule-util.el (defsubst string-to-list (string) "\ @@ -19199,8 +19195,8 @@ QUALITY can be: ;;;*** -;;;### (autoloads nil "net-utils" "net/net-utils.el" (22230 48822 -;;;;;; 809219 477000)) +;;;### (autoloads nil "net-utils" "net/net-utils.el" (22290 3771 +;;;;;; 252245 991000)) ;;; Generated autoloads from net/net-utils.el (autoload 'ifconfig "net-utils" "\ @@ -19295,7 +19291,7 @@ Open a network connection to HOST on PORT. ;;;*** ;;;### (autoloads nil "netrc" "net/netrc.el" (22230 48822 809219 -;;;;;; 477000)) +;;;;;; 0)) ;;; Generated autoloads from net/netrc.el (autoload 'netrc-credentials "netrc" "\ @@ -19307,8 +19303,8 @@ listed in the PORTS list. ;;;*** -;;;### (autoloads nil "network-stream" "net/network-stream.el" (22230 -;;;;;; 48822 809219 477000)) +;;;### (autoloads nil "network-stream" "net/network-stream.el" (22290 +;;;;;; 3771 253245 985000)) ;;; Generated autoloads from net/network-stream.el (autoload 'open-network-stream "network-stream" "\ @@ -19405,7 +19401,7 @@ asynchronously, if possible. ;;;*** ;;;### (autoloads nil "newst-backend" "net/newst-backend.el" (22230 -;;;;;; 48822 809219 477000)) +;;;;;; 48822 809219 0)) ;;; Generated autoloads from net/newst-backend.el (autoload 'newsticker-running-p "newst-backend" "\ @@ -19427,7 +19423,7 @@ Run `newsticker-start-hook' if newsticker was not running already. ;;;*** ;;;### (autoloads nil "newst-plainview" "net/newst-plainview.el" -;;;;;; (22230 48822 810219 473000)) +;;;;;; (22230 48822 810219 0)) ;;; Generated autoloads from net/newst-plainview.el (autoload 'newsticker-plainview "newst-plainview" "\ @@ -19438,7 +19434,7 @@ Start newsticker plainview. ;;;*** ;;;### (autoloads nil "newst-reader" "net/newst-reader.el" (22230 -;;;;;; 48822 810219 473000)) +;;;;;; 48822 810219 0)) ;;; Generated autoloads from net/newst-reader.el (autoload 'newsticker-show-news "newst-reader" "\ @@ -19449,7 +19445,7 @@ Start reading news. You may want to bind this to a key. ;;;*** ;;;### (autoloads nil "newst-ticker" "net/newst-ticker.el" (22230 -;;;;;; 48822 810219 473000)) +;;;;;; 48822 810219 0)) ;;; Generated autoloads from net/newst-ticker.el (autoload 'newsticker-ticker-running-p "newst-ticker" "\ @@ -19470,7 +19466,7 @@ running already. ;;;*** ;;;### (autoloads nil "newst-treeview" "net/newst-treeview.el" (22230 -;;;;;; 48822 810219 473000)) +;;;;;; 48822 810219 0)) ;;; Generated autoloads from net/newst-treeview.el (autoload 'newsticker-treeview "newst-treeview" "\ @@ -19480,8 +19476,8 @@ Start newsticker treeview. ;;;*** -;;;### (autoloads nil "nndiary" "gnus/nndiary.el" (22230 48822 747219 -;;;;;; 757000)) +;;;### (autoloads nil "nndiary" "gnus/nndiary.el" (22290 3771 213246 +;;;;;; 243000)) ;;; Generated autoloads from gnus/nndiary.el (autoload 'nndiary-generate-nov-databases "nndiary" "\ @@ -19491,8 +19487,8 @@ Generate NOV databases in all nndiary directories. ;;;*** -;;;### (autoloads nil "nndoc" "gnus/nndoc.el" (22230 48822 747219 -;;;;;; 757000)) +;;;### (autoloads nil "nndoc" "gnus/nndoc.el" (22290 3771 213246 +;;;;;; 243000)) ;;; Generated autoloads from gnus/nndoc.el (autoload 'nndoc-add-type "nndoc" "\ @@ -19506,8 +19502,8 @@ symbol in the alist. ;;;*** -;;;### (autoloads nil "nnfolder" "gnus/nnfolder.el" (22230 48822 -;;;;;; 748219 753000)) +;;;### (autoloads nil "nnfolder" "gnus/nnfolder.el" (22290 3771 213246 +;;;;;; 243000)) ;;; Generated autoloads from gnus/nnfolder.el (autoload 'nnfolder-generate-active-file "nnfolder" "\ @@ -19518,7 +19514,7 @@ This command does not work if you use short group names. ;;;*** -;;;### (autoloads nil "nnml" "gnus/nnml.el" (22230 48822 750219 744000)) +;;;### (autoloads nil "nnml" "gnus/nnml.el" (22290 3771 219246 204000)) ;;; Generated autoloads from gnus/nnml.el (autoload 'nnml-generate-nov-databases "nnml" "\ @@ -19528,7 +19524,7 @@ Generate NOV databases in all nnml directories. ;;;*** -;;;### (autoloads nil "novice" "novice.el" (22230 48822 818219 437000)) +;;;### (autoloads nil "novice" "novice.el" (22230 48822 818219 0)) ;;; Generated autoloads from novice.el (define-obsolete-variable-alias 'disabled-command-hook 'disabled-command-function "22.1") @@ -19561,7 +19557,7 @@ future sessions. ;;;*** ;;;### (autoloads nil "nroff-mode" "textmodes/nroff-mode.el" (22230 -;;;;;; 48822 918218 985000)) +;;;;;; 48822 918218 0)) ;;; Generated autoloads from textmodes/nroff-mode.el (autoload 'nroff-mode "nroff-mode" "\ @@ -19575,14 +19571,14 @@ closing requests for requests that are used in matched pairs. ;;;*** -;;;### (autoloads nil "ntlm" "net/ntlm.el" (22230 48822 811219 468000)) +;;;### (autoloads nil "ntlm" "net/ntlm.el" (22230 48822 811219 0)) ;;; Generated autoloads from net/ntlm.el (push (purecopy '(ntlm 2 0 0)) package--builtin-versions) ;;;*** -;;;### (autoloads nil "nxml-glyph" "nxml/nxml-glyph.el" (22230 48822 -;;;;;; 818219 437000)) +;;;### (autoloads nil "nxml-glyph" "nxml/nxml-glyph.el" (22290 3771 +;;;;;; 261245 933000)) ;;; Generated autoloads from nxml/nxml-glyph.el (autoload 'nxml-glyph-display-string "nxml-glyph" "\ @@ -19594,8 +19590,8 @@ Return nil if the face cannot display a glyph for N. ;;;*** -;;;### (autoloads nil "nxml-mode" "nxml/nxml-mode.el" (22230 48822 -;;;;;; 819219 432000)) +;;;### (autoloads nil "nxml-mode" "nxml/nxml-mode.el" (22290 3771 +;;;;;; 262245 926000)) ;;; Generated autoloads from nxml/nxml-mode.el (autoload 'nxml-mode "nxml-mode" "\ @@ -19655,8 +19651,8 @@ Many aspects this mode can be customized using ;;;*** -;;;### (autoloads nil "nxml-uchnm" "nxml/nxml-uchnm.el" (22230 48822 -;;;;;; 819219 432000)) +;;;### (autoloads nil "nxml-uchnm" "nxml/nxml-uchnm.el" (22290 3771 +;;;;;; 263245 920000)) ;;; Generated autoloads from nxml/nxml-uchnm.el (autoload 'nxml-enable-unicode-char-name-sets "nxml-uchnm" "\ @@ -19668,8 +19664,8 @@ the variable `nxml-enabled-unicode-blocks'. ;;;*** -;;;### (autoloads nil "octave" "progmodes/octave.el" (22230 48822 -;;;;;; 888219 121000)) +;;;### (autoloads nil "octave" "progmodes/octave.el" (22266 10298 +;;;;;; 460370 0)) ;;; Generated autoloads from progmodes/octave.el (autoload 'octave-mode "octave" "\ @@ -19707,7 +19703,7 @@ startup file, `~/.emacs-octave'. ;;;*** ;;;### (autoloads nil "opascal" "progmodes/opascal.el" (22230 48822 -;;;;;; 888219 121000)) +;;;;;; 888219 0)) ;;; Generated autoloads from progmodes/opascal.el (define-obsolete-function-alias 'delphi-mode 'opascal-mode "24.4") @@ -19742,7 +19738,7 @@ Coloring: ;;;*** -;;;### (autoloads nil "org" "org/org.el" (22230 48822 852219 283000)) +;;;### (autoloads nil "org" "org/org.el" (22290 3781 426180 237000)) ;;; Generated autoloads from org/org.el (autoload 'org-babel-do-load-languages "org" "\ @@ -19964,7 +19960,7 @@ Call the customize function with org as argument. ;;;*** ;;;### (autoloads nil "org-agenda" "org/org-agenda.el" (22230 48822 -;;;;;; 840219 337000)) +;;;;;; 840219 0)) ;;; Generated autoloads from org/org-agenda.el (autoload 'org-toggle-sticky-agenda "org-agenda" "\ @@ -20238,7 +20234,7 @@ to override `appt-message-warning-time'. ;;;*** ;;;### (autoloads nil "org-capture" "org/org-capture.el" (22230 48822 -;;;;;; 841219 333000)) +;;;;;; 841219 0)) ;;; Generated autoloads from org/org-capture.el (autoload 'org-capture-string "org-capture" "\ @@ -20281,7 +20277,7 @@ Set `org-capture-templates' to be similar to `org-remember-templates'. ;;;*** ;;;### (autoloads nil "org-colview" "org/org-colview.el" (22230 48822 -;;;;;; 842219 328000)) +;;;;;; 842219 0)) ;;; Generated autoloads from org/org-colview.el (autoload 'org-columns-remove-overlays "org-colview" "\ @@ -20345,7 +20341,7 @@ Turn on or update column view in the agenda. ;;;*** ;;;### (autoloads nil "org-compat" "org/org-compat.el" (22230 48822 -;;;;;; 842219 328000)) +;;;;;; 842219 0)) ;;; Generated autoloads from org/org-compat.el (autoload 'org-check-version "org-compat" "\ @@ -20356,7 +20352,7 @@ Try very hard to provide sensible version strings. ;;;*** ;;;### (autoloads nil "org-macs" "org/org-macs.el" (22230 48822 846219 -;;;;;; 310000)) +;;;;;; 0)) ;;; Generated autoloads from org/org-macs.el (autoload 'org-load-noerror-mustsuffix "org-macs" "\ @@ -20367,7 +20363,7 @@ Load FILE with optional arguments NOERROR and MUSTSUFFIX. Drop the MUSTSUFFIX a ;;;*** ;;;### (autoloads nil "org-version" "org/org-version.el" (22230 48822 -;;;;;; 848219 301000)) +;;;;;; 848219 0)) ;;; Generated autoloads from org/org-version.el (autoload 'org-release "org-version" "\ @@ -20385,7 +20381,7 @@ The Git version of org-mode. ;;;*** ;;;### (autoloads nil "outline" "outline.el" (22230 48822 857219 -;;;;;; 260000)) +;;;;;; 0)) ;;; Generated autoloads from outline.el (put 'outline-regexp 'safe-local-variable 'stringp) (put 'outline-heading-end-regexp 'safe-local-variable 'stringp) @@ -20428,8 +20424,8 @@ See the command `outline-mode' for more information on this mode. ;;;*** -;;;### (autoloads nil "package" "emacs-lisp/package.el" (22230 48822 -;;;;;; 695219 992000)) +;;;### (autoloads nil "package" "emacs-lisp/package.el" (22290 3781 +;;;;;; 417180 295000)) ;;; Generated autoloads from emacs-lisp/package.el (push (purecopy '(package 1 1 0)) package--builtin-versions) @@ -20544,7 +20540,7 @@ The list is displayed in a buffer named `*Packages*'. ;;;*** -;;;### (autoloads nil "paren" "paren.el" (22230 48822 857219 260000)) +;;;### (autoloads nil "paren" "paren.el" (22230 48822 857219 0)) ;;; Generated autoloads from paren.el (defvar show-paren-mode nil "\ @@ -20570,8 +20566,8 @@ matching parenthesis is highlighted in `show-paren-style' after ;;;*** -;;;### (autoloads nil "parse-time" "calendar/parse-time.el" (22230 -;;;;;; 48822 653220 181000)) +;;;### (autoloads nil "parse-time" "calendar/parse-time.el" (22290 +;;;;;; 3771 148246 663000)) ;;; Generated autoloads from calendar/parse-time.el (put 'parse-time-rules 'risky-local-variable t) @@ -20584,8 +20580,8 @@ unknown are returned as nil. ;;;*** -;;;### (autoloads nil "pascal" "progmodes/pascal.el" (22230 48822 -;;;;;; 888219 121000)) +;;;### (autoloads nil "pascal" "progmodes/pascal.el" (22266 10298 +;;;;;; 460370 0)) ;;; Generated autoloads from progmodes/pascal.el (autoload 'pascal-mode "pascal" "\ @@ -20635,7 +20631,7 @@ See also the user variables `pascal-type-keywords', `pascal-start-keywords' and ;;;*** ;;;### (autoloads nil "password-cache" "password-cache.el" (22230 -;;;;;; 48822 857219 260000)) +;;;;;; 48822 857219 0)) ;;; Generated autoloads from password-cache.el (defvar password-cache t "\ @@ -20657,7 +20653,7 @@ Check if KEY is in the cache. ;;;*** ;;;### (autoloads nil "pcase" "emacs-lisp/pcase.el" (22230 48822 -;;;;;; 695219 992000)) +;;;;;; 695219 0)) ;;; Generated autoloads from emacs-lisp/pcase.el (autoload 'pcase "pcase" "\ @@ -20778,7 +20774,7 @@ to this macro. ;;;*** ;;;### (autoloads nil "pcmpl-cvs" "pcmpl-cvs.el" (22230 48822 857219 -;;;;;; 260000)) +;;;;;; 0)) ;;; Generated autoloads from pcmpl-cvs.el (autoload 'pcomplete/cvs "pcmpl-cvs" "\ @@ -20788,8 +20784,8 @@ Completion rules for the `cvs' command. ;;;*** -;;;### (autoloads nil "pcmpl-gnu" "pcmpl-gnu.el" (22230 48822 857219 -;;;;;; 260000)) +;;;### (autoloads nil "pcmpl-gnu" "pcmpl-gnu.el" (22290 3771 282245 +;;;;;; 797000)) ;;; Generated autoloads from pcmpl-gnu.el (autoload 'pcomplete/gzip "pcmpl-gnu" "\ @@ -20817,7 +20813,7 @@ Completion for the GNU tar utility. ;;;*** ;;;### (autoloads nil "pcmpl-linux" "pcmpl-linux.el" (22230 48822 -;;;;;; 857219 260000)) +;;;;;; 857219 0)) ;;; Generated autoloads from pcmpl-linux.el (autoload 'pcomplete/kill "pcmpl-linux" "\ @@ -20838,7 +20834,7 @@ Completion for GNU/Linux `mount'. ;;;*** ;;;### (autoloads nil "pcmpl-rpm" "pcmpl-rpm.el" (22230 48822 858219 -;;;;;; 256000)) +;;;;;; 0)) ;;; Generated autoloads from pcmpl-rpm.el (autoload 'pcomplete/rpm "pcmpl-rpm" "\ @@ -20849,7 +20845,7 @@ Completion for the `rpm' command. ;;;*** ;;;### (autoloads nil "pcmpl-unix" "pcmpl-unix.el" (22230 48822 858219 -;;;;;; 256000)) +;;;;;; 0)) ;;; Generated autoloads from pcmpl-unix.el (autoload 'pcomplete/cd "pcmpl-unix" "\ @@ -20905,7 +20901,7 @@ Includes files as well as host names followed by a colon. ;;;*** ;;;### (autoloads nil "pcmpl-x" "pcmpl-x.el" (22230 48822 858219 -;;;;;; 256000)) +;;;;;; 0)) ;;; Generated autoloads from pcmpl-x.el (autoload 'pcomplete/tlmgr "pcmpl-x" "\ @@ -20930,7 +20926,7 @@ Completion for the `ag' command. ;;;*** ;;;### (autoloads nil "pcomplete" "pcomplete.el" (22230 48822 858219 -;;;;;; 256000)) +;;;;;; 0)) ;;; Generated autoloads from pcomplete.el (autoload 'pcomplete "pcomplete" "\ @@ -20987,7 +20983,7 @@ Setup `shell-mode' to use pcomplete. ;;;*** -;;;### (autoloads nil "pcvs" "vc/pcvs.el" (22230 48822 938218 895000)) +;;;### (autoloads nil "pcvs" "vc/pcvs.el" (22230 48822 938218 0)) ;;; Generated autoloads from vc/pcvs.el (autoload 'cvs-checkout "pcvs" "\ @@ -21063,7 +21059,7 @@ The exact behavior is determined also by `cvs-dired-use-hook'." (when (stringp d ;;;*** ;;;### (autoloads nil "pcvs-defs" "vc/pcvs-defs.el" (22230 48822 -;;;;;; 937218 899000)) +;;;;;; 937218 0)) ;;; Generated autoloads from vc/pcvs-defs.el (defvar cvs-global-menu (let ((m (make-sparse-keymap "PCL-CVS"))) (define-key m [status] `(menu-item ,(purecopy "Directory Status") cvs-status :help ,(purecopy "A more verbose status of a workarea"))) (define-key m [checkout] `(menu-item ,(purecopy "Checkout Module") cvs-checkout :help ,(purecopy "Check out a module from the repository"))) (define-key m [update] `(menu-item ,(purecopy "Update Directory") cvs-update :help ,(purecopy "Fetch updates from the repository"))) (define-key m [examine] `(menu-item ,(purecopy "Examine Directory") cvs-examine :help ,(purecopy "Examine the current state of a workarea"))) (fset 'cvs-global-menu m)) "\ @@ -21071,8 +21067,8 @@ Global menu used by PCL-CVS.") ;;;*** -;;;### (autoloads nil "perl-mode" "progmodes/perl-mode.el" (22230 -;;;;;; 48822 889219 116000)) +;;;### (autoloads nil "perl-mode" "progmodes/perl-mode.el" (22266 +;;;;;; 10298 461370 0)) ;;; Generated autoloads from progmodes/perl-mode.el (put 'perl-indent-level 'safe-local-variable 'integerp) (put 'perl-continued-statement-offset 'safe-local-variable 'integerp) @@ -21133,8 +21129,8 @@ Turning on Perl mode runs the normal hook `perl-mode-hook'. ;;;*** -;;;### (autoloads nil "picture" "textmodes/picture.el" (22230 48822 -;;;;;; 919218 981000)) +;;;### (autoloads nil "picture" "textmodes/picture.el" (22266 10298 +;;;;;; 485370 0)) ;;; Generated autoloads from textmodes/picture.el (autoload 'picture-mode "picture" "\ @@ -21214,8 +21210,8 @@ they are not by default assigned to keys. ;;;*** -;;;### (autoloads nil "pinentry" "net/pinentry.el" (22230 48822 811219 -;;;;;; 468000)) +;;;### (autoloads nil "pinentry" "net/pinentry.el" (22261 18214 518021 +;;;;;; 0)) ;;; Generated autoloads from net/pinentry.el (push (purecopy '(pinentry 0 1)) package--builtin-versions) @@ -21232,8 +21228,8 @@ will not be shown. ;;;*** -;;;### (autoloads nil "plstore" "gnus/plstore.el" (22230 48822 752219 -;;;;;; 734000)) +;;;### (autoloads nil "plstore" "gnus/plstore.el" (22290 3771 222246 +;;;;;; 185000)) ;;; Generated autoloads from gnus/plstore.el (autoload 'plstore-open "plstore" "\ @@ -21249,7 +21245,7 @@ Major mode for editing PLSTORE files. ;;;*** ;;;### (autoloads nil "po" "textmodes/po.el" (22230 48822 919218 -;;;;;; 981000)) +;;;;;; 0)) ;;; Generated autoloads from textmodes/po.el (autoload 'po-find-file-coding-system "po" "\ @@ -21260,7 +21256,7 @@ Called through `file-coding-system-alist', before the file is visited for real. ;;;*** -;;;### (autoloads nil "pong" "play/pong.el" (22230 48822 861219 243000)) +;;;### (autoloads nil "pong" "play/pong.el" (22230 48822 861219 0)) ;;; Generated autoloads from play/pong.el (autoload 'pong "pong" "\ @@ -21276,7 +21272,7 @@ pong-mode keybindings:\\ ;;;*** -;;;### (autoloads nil "pop3" "gnus/pop3.el" (22230 48822 752219 734000)) +;;;### (autoloads nil "pop3" "gnus/pop3.el" (22290 3771 222246 185000)) ;;; Generated autoloads from gnus/pop3.el (autoload 'pop3-movemail "pop3" "\ @@ -21288,7 +21284,7 @@ Use streaming commands. ;;;*** ;;;### (autoloads nil "pp" "emacs-lisp/pp.el" (22230 48822 695219 -;;;;;; 992000)) +;;;;;; 0)) ;;; Generated autoloads from emacs-lisp/pp.el (autoload 'pp-to-string "pp" "\ @@ -21339,7 +21335,7 @@ Ignores leading comment characters. ;;;*** ;;;### (autoloads nil "printing" "printing.el" (22230 48822 863219 -;;;;;; 234000)) +;;;;;; 0)) ;;; Generated autoloads from printing.el (push (purecopy '(printing 6 9 3)) package--builtin-versions) @@ -21927,7 +21923,7 @@ are both set to t. ;;;*** -;;;### (autoloads nil "proced" "proced.el" (22230 48822 863219 234000)) +;;;### (autoloads nil "proced" "proced.el" (22290 3771 284245 784000)) ;;; Generated autoloads from proced.el (autoload 'proced "proced" "\ @@ -21946,7 +21942,7 @@ Proced buffers. ;;;*** ;;;### (autoloads nil "profiler" "profiler.el" (22230 48822 863219 -;;;;;; 234000)) +;;;;;; 0)) ;;; Generated autoloads from profiler.el (autoload 'profiler-start "profiler" "\ @@ -21974,14 +21970,16 @@ Open profile FILENAME. ;;;*** -;;;### (autoloads nil "project" "progmodes/project.el" (22230 48822 -;;;;;; 889219 116000)) +;;;### (autoloads nil "project" "progmodes/project.el" (22298 5692 +;;;;;; 412287 950000)) ;;; Generated autoloads from progmodes/project.el (autoload 'project-current "project" "\ Return the project instance in DIR or `default-directory'. When no project found in DIR, and MAYBE-PROMPT is non-nil, ask -the user for a different directory to look in. +the user for a different directory to look in. If that directory +is not a part of a detectable project either, return a +`transient' project instance rooted in it. \(fn &optional MAYBE-PROMPT DIR)" nil nil) @@ -22015,8 +22013,8 @@ recognized. ;;;*** -;;;### (autoloads nil "prolog" "progmodes/prolog.el" (22230 48822 -;;;;;; 890219 112000)) +;;;### (autoloads nil "prolog" "progmodes/prolog.el" (22290 3781 +;;;;;; 432180 198000)) ;;; Generated autoloads from progmodes/prolog.el (autoload 'prolog-mode "prolog" "\ @@ -22049,7 +22047,7 @@ With prefix argument ARG, restart the Prolog process if running before. ;;;*** -;;;### (autoloads nil "ps-bdf" "ps-bdf.el" (22230 48822 900219 67000)) +;;;### (autoloads nil "ps-bdf" "ps-bdf.el" (22230 48822 900219 0)) ;;; Generated autoloads from ps-bdf.el (defvar bdf-directory-list (if (memq system-type '(ms-dos windows-nt)) (list (expand-file-name "fonts/bdf" installation-directory)) '("/usr/local/share/emacs/fonts/bdf")) "\ @@ -22060,8 +22058,8 @@ The default value is (\"/usr/local/share/emacs/fonts/bdf\").") ;;;*** -;;;### (autoloads nil "ps-mode" "progmodes/ps-mode.el" (22230 48822 -;;;;;; 890219 112000)) +;;;### (autoloads nil "ps-mode" "progmodes/ps-mode.el" (22290 3771 +;;;;;; 299245 687000)) ;;; Generated autoloads from progmodes/ps-mode.el (push (purecopy '(ps-mode 1 1 9)) package--builtin-versions) @@ -22107,8 +22105,8 @@ Typing \\\\[ps-run-goto-error] when the cursor is at the number ;;;*** -;;;### (autoloads nil "ps-print" "ps-print.el" (22230 48822 901219 -;;;;;; 62000)) +;;;### (autoloads nil "ps-print" "ps-print.el" (22290 3771 311245 +;;;;;; 610000)) ;;; Generated autoloads from ps-print.el (push (purecopy '(ps-print 7 3 5)) package--builtin-versions) @@ -22306,7 +22304,7 @@ If EXTENSION is any other symbol, it is ignored. ;;;*** ;;;### (autoloads nil "pulse" "cedet/pulse.el" (22230 48822 660220 -;;;;;; 150000)) +;;;;;; 0)) ;;; Generated autoloads from cedet/pulse.el (push (purecopy '(pulse 1 0)) package--builtin-versions) @@ -22324,8 +22322,8 @@ Optional argument FACE specifies the face to do the highlighting. ;;;*** -;;;### (autoloads nil "python" "progmodes/python.el" (22230 48822 -;;;;;; 891219 107000)) +;;;### (autoloads nil "python" "progmodes/python.el" (22290 3781 +;;;;;; 432180 198000)) ;;; Generated autoloads from progmodes/python.el (push (purecopy '(python 0 25 1)) package--builtin-versions) @@ -22362,7 +22360,7 @@ Major mode for editing Python files. ;;;*** -;;;### (autoloads nil "qp" "gnus/qp.el" (22230 48822 752219 734000)) +;;;### (autoloads nil "qp" "gnus/qp.el" (22290 3771 222246 185000)) ;;; Generated autoloads from gnus/qp.el (autoload 'quoted-printable-decode-region "qp" "\ @@ -22382,7 +22380,7 @@ them into characters should be done separately. ;;;*** ;;;### (autoloads nil "quail" "international/quail.el" (22230 48822 -;;;;;; 767219 667000)) +;;;;;; 767219 0)) ;;; Generated autoloads from international/quail.el (autoload 'quail-title "quail" "\ @@ -22613,7 +22611,7 @@ of each directory. ;;;*** ;;;### (autoloads nil "quail/hangul" "leim/quail/hangul.el" (22230 -;;;;;; 48822 782219 599000)) +;;;;;; 48822 782219 0)) ;;; Generated autoloads from leim/quail/hangul.el (autoload 'hangul-input-method-activate "quail/hangul" "\ @@ -22626,7 +22624,7 @@ HELP-TEXT is a text set in `hangul-input-method-help-text'. ;;;*** ;;;### (autoloads nil "quail/uni-input" "leim/quail/uni-input.el" -;;;;;; (22230 48822 785219 586000)) +;;;;;; (22230 48822 785219 0)) ;;; Generated autoloads from leim/quail/uni-input.el (autoload 'ucs-input-activate "quail/uni-input" "\ @@ -22640,8 +22638,8 @@ While this input method is active, the variable ;;;*** -;;;### (autoloads nil "quickurl" "net/quickurl.el" (22230 48822 811219 -;;;;;; 468000)) +;;;### (autoloads nil "quickurl" "net/quickurl.el" (22266 10298 427370 +;;;;;; 0)) ;;; Generated autoloads from net/quickurl.el (defconst quickurl-reread-hook-postfix "\n;; Local Variables:\n;; eval: (progn (require 'quickurl) (add-hook 'local-write-file-hooks (lambda () (quickurl-read) nil)))\n;; End:\n" "\ @@ -22712,8 +22710,7 @@ Display `quickurl-list' as a formatted list using `quickurl-list-mode'. ;;;*** -;;;### (autoloads nil "rcirc" "net/rcirc.el" (22230 48822 811219 -;;;;;; 468000)) +;;;### (autoloads nil "rcirc" "net/rcirc.el" (22290 3771 254245 978000)) ;;; Generated autoloads from net/rcirc.el (autoload 'rcirc "rcirc" "\ @@ -22752,7 +22749,7 @@ if ARG is omitted or nil. ;;;*** ;;;### (autoloads nil "re-builder" "emacs-lisp/re-builder.el" (22230 -;;;;;; 48822 695219 992000)) +;;;;;; 48822 695219 0)) ;;; Generated autoloads from emacs-lisp/re-builder.el (defalias 'regexp-builder 're-builder) @@ -22771,7 +22768,7 @@ matching parts of the target buffer will be highlighted. ;;;*** ;;;### (autoloads nil "recentf" "recentf.el" (22230 48822 901219 -;;;;;; 62000)) +;;;;;; 0)) ;;; Generated autoloads from recentf.el (defvar recentf-mode nil "\ @@ -22797,7 +22794,7 @@ were operated on recently. ;;;*** -;;;### (autoloads nil "rect" "rect.el" (22230 48822 902219 57000)) +;;;### (autoloads nil "rect" "rect.el" (22298 5692 418287 925000)) ;;; Generated autoloads from rect.el (autoload 'delete-rectangle "rect" "\ @@ -22938,7 +22935,7 @@ Activates the region if needed. Only lasts until the region is deactivated. ;;;*** ;;;### (autoloads nil "refill" "textmodes/refill.el" (22230 48822 -;;;;;; 919218 981000)) +;;;;;; 919218 0)) ;;; Generated autoloads from textmodes/refill.el (autoload 'refill-mode "refill" "\ @@ -22958,8 +22955,8 @@ For true \"word wrap\" behavior, use `visual-line-mode' instead. ;;;*** -;;;### (autoloads nil "reftex" "textmodes/reftex.el" (22230 48822 -;;;;;; 922218 967000)) +;;;### (autoloads nil "reftex" "textmodes/reftex.el" (22290 3771 +;;;;;; 326245 513000)) ;;; Generated autoloads from textmodes/reftex.el (autoload 'reftex-citation "reftex-cite" nil t) (autoload 'reftex-all-document-files "reftex-parse") @@ -23013,7 +23010,7 @@ This enforces rescanning the buffer on next use. ;;;*** ;;;### (autoloads nil "reftex-vars" "textmodes/reftex-vars.el" (22230 -;;;;;; 48822 921218 972000)) +;;;;;; 48822 921218 0)) ;;; 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)))) @@ -23023,7 +23020,7 @@ This enforces rescanning the buffer on next use. ;;;*** ;;;### (autoloads nil "regexp-opt" "emacs-lisp/regexp-opt.el" (22230 -;;;;;; 48822 695219 992000)) +;;;;;; 48822 695219 0)) ;;; Generated autoloads from emacs-lisp/regexp-opt.el (autoload 'regexp-opt "regexp-opt" "\ @@ -23053,14 +23050,14 @@ This means the number of non-shy regexp grouping constructs ;;;*** ;;;### (autoloads nil "regi" "emacs-lisp/regi.el" (22230 48822 696219 -;;;;;; 987000)) +;;;;;; 0)) ;;; Generated autoloads from emacs-lisp/regi.el (push (purecopy '(regi 1 8)) package--builtin-versions) ;;;*** ;;;### (autoloads nil "remember" "textmodes/remember.el" (22230 48822 -;;;;;; 922218 967000)) +;;;;;; 922218 0)) ;;; Generated autoloads from textmodes/remember.el (push (purecopy '(remember 2 0)) package--builtin-versions) @@ -23114,7 +23111,7 @@ to turn the *scratch* buffer into your notes buffer. ;;;*** -;;;### (autoloads nil "repeat" "repeat.el" (22230 48822 902219 57000)) +;;;### (autoloads nil "repeat" "repeat.el" (22230 48822 902219 0)) ;;; Generated autoloads from repeat.el (push (purecopy '(repeat 0 51)) package--builtin-versions) @@ -23138,7 +23135,7 @@ recently executed command not bound to an input event\". ;;;*** ;;;### (autoloads nil "reporter" "mail/reporter.el" (22230 48822 -;;;;;; 789219 567000)) +;;;;;; 789219 0)) ;;; Generated autoloads from mail/reporter.el (autoload 'reporter-submit-bug-report "reporter" "\ @@ -23170,7 +23167,7 @@ mail-sending package is used for editing and sending the message. ;;;*** ;;;### (autoloads nil "reposition" "reposition.el" (22230 48822 903219 -;;;;;; 53000)) +;;;;;; 0)) ;;; Generated autoloads from reposition.el (autoload 'reposition-window "reposition" "\ @@ -23196,7 +23193,7 @@ first comment line visible (if point is in a comment). ;;;*** -;;;### (autoloads nil "reveal" "reveal.el" (22230 48822 903219 53000)) +;;;### (autoloads nil "reveal" "reveal.el" (22230 48822 903219 0)) ;;; Generated autoloads from reveal.el (autoload 'reveal-mode "reveal" "\ @@ -23232,7 +23229,7 @@ the mode if ARG is omitted or nil. ;;;*** ;;;### (autoloads nil "ring" "emacs-lisp/ring.el" (22230 48822 696219 -;;;;;; 987000)) +;;;;;; 0)) ;;; Generated autoloads from emacs-lisp/ring.el (autoload 'ring-p "ring" "\ @@ -23248,7 +23245,7 @@ Make a ring that can contain SIZE elements. ;;;*** ;;;### (autoloads nil "rlogin" "net/rlogin.el" (22230 48822 812219 -;;;;;; 464000)) +;;;;;; 0)) ;;; Generated autoloads from net/rlogin.el (autoload 'rlogin "rlogin" "\ @@ -23292,8 +23289,8 @@ variable. ;;;*** -;;;### (autoloads nil "rmail" "mail/rmail.el" (22230 48822 790219 -;;;;;; 563000)) +;;;### (autoloads nil "rmail" "mail/rmail.el" (22290 3771 244246 +;;;;;; 43000)) ;;; Generated autoloads from mail/rmail.el (defvar rmail-file-name (purecopy "~/RMAIL") "\ @@ -23491,7 +23488,7 @@ Set PASSWORD to be used for retrieving mail from a POP or IMAP server. ;;;*** ;;;### (autoloads nil "rmailout" "mail/rmailout.el" (22230 48822 -;;;;;; 791219 558000)) +;;;;;; 791219 0)) ;;; Generated autoloads from mail/rmailout.el (put 'rmail-output-file-alist 'risky-local-variable t) @@ -23555,8 +23552,8 @@ than appending to it. Deletes the message after writing if ;;;*** -;;;### (autoloads nil "rng-cmpct" "nxml/rng-cmpct.el" (22230 48822 -;;;;;; 819219 432000)) +;;;### (autoloads nil "rng-cmpct" "nxml/rng-cmpct.el" (22290 3771 +;;;;;; 263245 920000)) ;;; Generated autoloads from nxml/rng-cmpct.el (autoload 'rng-c-load-schema "rng-cmpct" "\ @@ -23567,8 +23564,8 @@ Return a pattern. ;;;*** -;;;### (autoloads nil "rng-nxml" "nxml/rng-nxml.el" (22230 48822 -;;;;;; 820219 427000)) +;;;### (autoloads nil "rng-nxml" "nxml/rng-nxml.el" (22290 3771 264245 +;;;;;; 913000)) ;;; Generated autoloads from nxml/rng-nxml.el (autoload 'rng-nxml-mode-init "rng-nxml" "\ @@ -23580,8 +23577,8 @@ Validation will be enabled if `rng-nxml-auto-validate-flag' is non-nil. ;;;*** -;;;### (autoloads nil "rng-valid" "nxml/rng-valid.el" (22230 48822 -;;;;;; 821219 423000)) +;;;### (autoloads nil "rng-valid" "nxml/rng-valid.el" (22290 3771 +;;;;;; 264245 913000)) ;;; Generated autoloads from nxml/rng-valid.el (autoload 'rng-validate-mode "rng-valid" "\ @@ -23611,8 +23608,8 @@ to use for finding the schema. ;;;*** -;;;### (autoloads nil "rng-xsd" "nxml/rng-xsd.el" (22230 48822 821219 -;;;;;; 423000)) +;;;### (autoloads nil "rng-xsd" "nxml/rng-xsd.el" (22290 3771 264245 +;;;;;; 913000)) ;;; Generated autoloads from nxml/rng-xsd.el (put 'http://www\.w3\.org/2001/XMLSchema-datatypes 'rng-dt-compile 'rng-xsd-compile) @@ -23640,7 +23637,7 @@ must be equal. ;;;*** ;;;### (autoloads nil "robin" "international/robin.el" (22230 48822 -;;;;;; 767219 667000)) +;;;;;; 767219 0)) ;;; Generated autoloads from international/robin.el (autoload 'robin-define-package "robin" "\ @@ -23672,7 +23669,7 @@ Start using robin package NAME, which is a string. ;;;*** -;;;### (autoloads nil "rot13" "rot13.el" (22230 48822 903219 53000)) +;;;### (autoloads nil "rot13" "rot13.el" (22230 48822 903219 0)) ;;; Generated autoloads from rot13.el (autoload 'rot13 "rot13" "\ @@ -23710,7 +23707,7 @@ Toggle the use of ROT13 encoding for the current window. ;;;*** ;;;### (autoloads nil "rst" "textmodes/rst.el" (22230 48822 923218 -;;;;;; 963000)) +;;;;;; 0)) ;;; Generated autoloads from textmodes/rst.el (add-to-list 'auto-mode-alist (purecopy '("\\.re?st\\'" . rst-mode))) @@ -23740,8 +23737,8 @@ for modes derived from Text mode, like Mail mode. ;;;*** -;;;### (autoloads nil "ruby-mode" "progmodes/ruby-mode.el" (22230 -;;;;;; 48822 891219 107000)) +;;;### (autoloads nil "ruby-mode" "progmodes/ruby-mode.el" (22266 +;;;;;; 10298 462370 0)) ;;; Generated autoloads from progmodes/ruby-mode.el (push (purecopy '(ruby-mode 1 2)) package--builtin-versions) @@ -23759,7 +23756,7 @@ Major mode for editing Ruby code. ;;;*** ;;;### (autoloads nil "ruler-mode" "ruler-mode.el" (22230 48822 903219 -;;;;;; 53000)) +;;;;;; 0)) ;;; Generated autoloads from ruler-mode.el (push (purecopy '(ruler-mode 1 6)) package--builtin-versions) @@ -23778,7 +23775,7 @@ if ARG is omitted or nil. ;;;*** ;;;### (autoloads nil "rx" "emacs-lisp/rx.el" (22230 48822 696219 -;;;;;; 987000)) +;;;;;; 0)) ;;; Generated autoloads from emacs-lisp/rx.el (autoload 'rx-to-string "rx" "\ @@ -24090,14 +24087,14 @@ enclosed in `(and ...)'. ;;;*** ;;;### (autoloads nil "sasl-ntlm" "net/sasl-ntlm.el" (22230 48822 -;;;;;; 812219 464000)) +;;;;;; 812219 0)) ;;; Generated autoloads from net/sasl-ntlm.el (push (purecopy '(sasl 1 0)) package--builtin-versions) ;;;*** ;;;### (autoloads nil "savehist" "savehist.el" (22230 48822 903219 -;;;;;; 53000)) +;;;;;; 0)) ;;; Generated autoloads from savehist.el (push (purecopy '(savehist 24)) package--builtin-versions) @@ -24129,8 +24126,8 @@ histories, which is probably undesirable. ;;;*** -;;;### (autoloads nil "saveplace" "saveplace.el" (22230 48822 903219 -;;;;;; 53000)) +;;;### (autoloads nil "saveplace" "saveplace.el" (22266 10298 479370 +;;;;;; 0)) ;;; Generated autoloads from saveplace.el (defvar save-place-mode nil "\ @@ -24167,8 +24164,8 @@ file: ;;;*** -;;;### (autoloads nil "scheme" "progmodes/scheme.el" (22230 48822 -;;;;;; 891219 107000)) +;;;### (autoloads nil "scheme" "progmodes/scheme.el" (22290 3771 +;;;;;; 302245 668000)) ;;; Generated autoloads from progmodes/scheme.el (autoload 'scheme-mode "scheme" "\ @@ -24208,7 +24205,7 @@ that variable's value is a string. ;;;*** ;;;### (autoloads nil "score-mode" "gnus/score-mode.el" (22230 48822 -;;;;;; 753219 730000)) +;;;;;; 753219 0)) ;;; Generated autoloads from gnus/score-mode.el (autoload 'gnus-score-mode "score-mode" "\ @@ -24222,7 +24219,7 @@ This mode is an extended emacs-lisp mode. ;;;*** ;;;### (autoloads nil "scroll-all" "scroll-all.el" (22230 48822 903219 -;;;;;; 53000)) +;;;;;; 0)) ;;; Generated autoloads from scroll-all.el (defvar scroll-all-mode nil "\ @@ -24248,7 +24245,7 @@ one window apply to all visible windows in the same frame. ;;;*** ;;;### (autoloads nil "scroll-lock" "scroll-lock.el" (22230 48822 -;;;;;; 903219 53000)) +;;;;;; 903219 0)) ;;; Generated autoloads from scroll-lock.el (autoload 'scroll-lock-mode "scroll-lock" "\ @@ -24265,7 +24262,7 @@ vertically fixed relative to window boundaries during scrolling. ;;;*** ;;;### (autoloads nil "secrets" "net/secrets.el" (22230 48822 812219 -;;;;;; 464000)) +;;;;;; 0)) ;;; Generated autoloads from net/secrets.el (when (featurep 'dbusbind) (autoload 'secrets-show-secrets "secrets" nil t)) @@ -24273,7 +24270,7 @@ vertically fixed relative to window boundaries during scrolling. ;;;*** ;;;### (autoloads nil "semantic" "cedet/semantic.el" (22230 48822 -;;;;;; 660220 150000)) +;;;;;; 660220 0)) ;;; Generated autoloads from cedet/semantic.el (push (purecopy '(semantic 2 2)) package--builtin-versions) @@ -24331,7 +24328,7 @@ Semantic mode. ;;;*** ;;;### (autoloads nil "semantic/bovine/grammar" "cedet/semantic/bovine/grammar.el" -;;;;;; (22230 48822 662220 141000)) +;;;;;; (22230 48822 662220 0)) ;;; Generated autoloads from cedet/semantic/bovine/grammar.el (autoload 'bovine-grammar-mode "semantic/bovine/grammar" "\ @@ -24342,7 +24339,7 @@ Major mode for editing Bovine grammars. ;;;*** ;;;### (autoloads nil "semantic/wisent/grammar" "cedet/semantic/wisent/grammar.el" -;;;;;; (22230 48822 671220 100000)) +;;;;;; (22230 48822 671220 0)) ;;; Generated autoloads from cedet/semantic/wisent/grammar.el (autoload 'wisent-grammar-mode "semantic/wisent/grammar" "\ @@ -24352,8 +24349,8 @@ Major mode for editing Wisent grammars. ;;;*** -;;;### (autoloads nil "sendmail" "mail/sendmail.el" (22230 48822 -;;;;;; 792219 554000)) +;;;### (autoloads nil "sendmail" "mail/sendmail.el" (22266 10298 +;;;;;; 419370 0)) ;;; Generated autoloads from mail/sendmail.el (defvar mail-from-style 'default "\ @@ -24634,14 +24631,14 @@ Like `mail' command, but display mail buffer in another frame. ;;;*** -;;;### (autoloads nil "seq" "emacs-lisp/seq.el" (22230 48822 696219 -;;;;;; 987000)) +;;;### (autoloads nil "seq" "emacs-lisp/seq.el" (22290 3781 417180 +;;;;;; 295000)) ;;; Generated autoloads from emacs-lisp/seq.el (push (purecopy '(seq 2 3)) package--builtin-versions) ;;;*** -;;;### (autoloads nil "server" "server.el" (22230 48822 904219 48000)) +;;;### (autoloads nil "server" "server.el" (22230 48822 904219 0)) ;;; Generated autoloads from server.el (put 'server-host 'risky-local-variable t) @@ -24708,7 +24705,7 @@ only these files will be asked to be saved. ;;;*** -;;;### (autoloads nil "ses" "ses.el" (22230 48822 905219 44000)) +;;;### (autoloads nil "ses" "ses.el" (22290 3771 312245 603000)) ;;; Generated autoloads from ses.el (autoload 'ses-mode "ses" "\ @@ -24752,8 +24749,8 @@ formula: ;;;*** -;;;### (autoloads nil "sgml-mode" "textmodes/sgml-mode.el" (22230 -;;;;;; 48822 923218 963000)) +;;;### (autoloads nil "sgml-mode" "textmodes/sgml-mode.el" (22290 +;;;;;; 3771 326245 513000)) ;;; Generated autoloads from textmodes/sgml-mode.el (autoload 'sgml-mode "sgml-mode" "\ @@ -24818,8 +24815,8 @@ To work around that, do: ;;;*** -;;;### (autoloads nil "sh-script" "progmodes/sh-script.el" (22230 -;;;;;; 48822 892219 103000)) +;;;### (autoloads nil "sh-script" "progmodes/sh-script.el" (22298 +;;;;;; 5692 413287 946000)) ;;; Generated autoloads from progmodes/sh-script.el (push (purecopy '(sh-script 2 0 6)) package--builtin-versions) (put 'sh-shell 'safe-local-variable 'symbolp) @@ -24868,7 +24865,8 @@ buffer indents as it currently is indented. \\[sh-execute-region] Have optional header and region be executed in a subshell. `sh-electric-here-document-mode' controls whether insertion of two -unquoted < insert a here document. +unquoted < insert a here document. You can control this behavior by +modifying `sh-mode-hook'. If you generally program a shell different from your login shell you can set `sh-shell-file' accordingly. If your shell's file name doesn't correctly @@ -24884,7 +24882,7 @@ with your script for an edit-interpret-debug cycle. ;;;*** ;;;### (autoloads nil "shadow" "emacs-lisp/shadow.el" (22230 48822 -;;;;;; 696219 987000)) +;;;;;; 696219 0)) ;;; Generated autoloads from emacs-lisp/shadow.el (autoload 'list-load-path-shadows "shadow" "\ @@ -24934,7 +24932,7 @@ function, `load-path-shadows-find'. ;;;*** ;;;### (autoloads nil "shadowfile" "shadowfile.el" (22230 48822 905219 -;;;;;; 44000)) +;;;;;; 0)) ;;; Generated autoloads from shadowfile.el (autoload 'shadow-define-cluster "shadowfile" "\ @@ -24972,7 +24970,7 @@ Set up file shadowing. ;;;*** -;;;### (autoloads nil "shell" "shell.el" (22230 48822 905219 44000)) +;;;### (autoloads nil "shell" "shell.el" (22230 48822 905219 0)) ;;; Generated autoloads from shell.el (defvar shell-dumb-shell-regexp (purecopy "cmd\\(proxy\\)?\\.exe") "\ @@ -25020,7 +25018,7 @@ Otherwise, one argument `-i' is passed to the shell. ;;;*** -;;;### (autoloads nil "shr" "net/shr.el" (22230 48822 813219 459000)) +;;;### (autoloads nil "shr" "net/shr.el" (22290 3771 255245 972000)) ;;; Generated autoloads from net/shr.el (autoload 'shr-render-region "shr" "\ @@ -25037,8 +25035,8 @@ DOM should be a parse tree as generated by ;;;*** -;;;### (autoloads nil "sieve" "gnus/sieve.el" (22230 48822 753219 -;;;;;; 730000)) +;;;### (autoloads nil "sieve" "gnus/sieve.el" (22290 3771 223246 +;;;;;; 178000)) ;;; Generated autoloads from gnus/sieve.el (autoload 'sieve-manage "sieve" "\ @@ -25063,8 +25061,8 @@ DOM should be a parse tree as generated by ;;;*** -;;;### (autoloads nil "sieve-mode" "gnus/sieve-mode.el" (22230 48822 -;;;;;; 753219 730000)) +;;;### (autoloads nil "sieve-mode" "gnus/sieve-mode.el" (22290 3771 +;;;;;; 223246 178000)) ;;; Generated autoloads from gnus/sieve-mode.el (autoload 'sieve-mode "sieve-mode" "\ @@ -25079,8 +25077,8 @@ Turning on Sieve mode runs `sieve-mode-hook'. ;;;*** -;;;### (autoloads nil "simula" "progmodes/simula.el" (22230 48822 -;;;;;; 892219 103000)) +;;;### (autoloads nil "simula" "progmodes/simula.el" (22266 10298 +;;;;;; 471370 0)) ;;; Generated autoloads from progmodes/simula.el (autoload 'simula-mode "simula" "\ @@ -25128,8 +25126,8 @@ with no arguments, if that value is non-nil. ;;;*** -;;;### (autoloads nil "skeleton" "skeleton.el" (22230 48822 907219 -;;;;;; 35000)) +;;;### (autoloads nil "skeleton" "skeleton.el" (22266 10298 480370 +;;;;;; 0)) ;;; Generated autoloads from skeleton.el (defvar skeleton-filter-function 'identity "\ @@ -25248,8 +25246,8 @@ twice for the others. ;;;*** -;;;### (autoloads nil "smerge-mode" "vc/smerge-mode.el" (22230 48822 -;;;;;; 938218 895000)) +;;;### (autoloads nil "smerge-mode" "vc/smerge-mode.el" (22290 3771 +;;;;;; 334245 461000)) ;;; Generated autoloads from vc/smerge-mode.el (autoload 'smerge-ediff "smerge-mode" "\ @@ -25276,8 +25274,8 @@ If no conflict maker is found, turn off `smerge-mode'. ;;;*** -;;;### (autoloads nil "smiley" "gnus/smiley.el" (22230 48822 754219 -;;;;;; 725000)) +;;;### (autoloads nil "smiley" "gnus/smiley.el" (22290 3771 223246 +;;;;;; 178000)) ;;; Generated autoloads from gnus/smiley.el (autoload 'smiley-region "smiley" "\ @@ -25295,7 +25293,7 @@ interactively. If there's no argument, do it at the current buffer. ;;;*** ;;;### (autoloads nil "smtpmail" "mail/smtpmail.el" (22230 48822 -;;;;;; 792219 554000)) +;;;;;; 792219 0)) ;;; Generated autoloads from mail/smtpmail.el (autoload 'smtpmail-send-it "smtpmail" "\ @@ -25310,8 +25308,8 @@ Send mail that was queued as a result of setting `smtpmail-queue-mail'. ;;;*** -;;;### (autoloads nil "snake" "play/snake.el" (22230 48822 861219 -;;;;;; 243000)) +;;;### (autoloads nil "snake" "play/snake.el" (22290 3771 283245 +;;;;;; 791000)) ;;; Generated autoloads from play/snake.el (autoload 'snake "snake" "\ @@ -25335,7 +25333,7 @@ Snake mode keybindings: ;;;*** ;;;### (autoloads nil "snmp-mode" "net/snmp-mode.el" (22230 48822 -;;;;;; 813219 459000)) +;;;;;; 813219 0)) ;;; Generated autoloads from net/snmp-mode.el (autoload 'snmp-mode "snmp-mode" "\ @@ -25364,15 +25362,15 @@ then `snmpv2-mode-hook'. ;;;*** -;;;### (autoloads nil "soap-client" "net/soap-client.el" (22230 48822 -;;;;;; 813219 459000)) +;;;### (autoloads nil "soap-client" "net/soap-client.el" (22290 3771 +;;;;;; 255245 972000)) ;;; Generated autoloads from net/soap-client.el (push (purecopy '(soap-client 3 0 2)) package--builtin-versions) ;;;*** -;;;### (autoloads nil "solar" "calendar/solar.el" (22230 48822 653220 -;;;;;; 181000)) +;;;### (autoloads nil "solar" "calendar/solar.el" (22290 3781 413180 +;;;;;; 321000)) ;;; Generated autoloads from calendar/solar.el (autoload 'sunrise-sunset "solar" "\ @@ -25388,7 +25386,7 @@ This function is suitable for execution in an init file. ;;;*** ;;;### (autoloads nil "solitaire" "play/solitaire.el" (22230 48822 -;;;;;; 862219 238000)) +;;;;;; 862219 0)) ;;; Generated autoloads from play/solitaire.el (autoload 'solitaire "solitaire" "\ @@ -25463,7 +25461,7 @@ Pick your favorite shortcuts: ;;;*** -;;;### (autoloads nil "sort" "sort.el" (22230 48822 907219 35000)) +;;;### (autoloads nil "sort" "sort.el" (22230 48822 907219 0)) ;;; Generated autoloads from sort.el (put 'sort-fold-case 'safe-local-variable 'booleanp) @@ -25638,7 +25636,7 @@ is non-nil, it also prints a message describing the number of deletions. ;;;*** -;;;### (autoloads nil "spam" "gnus/spam.el" (22230 48822 754219 725000)) +;;;### (autoloads nil "spam" "gnus/spam.el" (22290 3771 224246 172000)) ;;; Generated autoloads from gnus/spam.el (autoload 'spam-initialize "spam" "\ @@ -25652,8 +25650,8 @@ installed through `spam-necessary-extra-headers'. ;;;*** -;;;### (autoloads nil "spam-report" "gnus/spam-report.el" (22230 -;;;;;; 48822 754219 725000)) +;;;### (autoloads nil "spam-report" "gnus/spam-report.el" (22290 +;;;;;; 3771 223246 178000)) ;;; Generated autoloads from gnus/spam-report.el (autoload 'spam-report-process-queue "spam-report" "\ @@ -25696,7 +25694,7 @@ Spam reports will be queued with the method used when ;;;*** ;;;### (autoloads nil "speedbar" "speedbar.el" (22230 48822 908219 -;;;;;; 30000)) +;;;;;; 0)) ;;; Generated autoloads from speedbar.el (defalias 'speedbar 'speedbar-frame-mode) @@ -25721,7 +25719,7 @@ selected. If the speedbar frame is active, then select the attached frame. ;;;*** ;;;### (autoloads nil "spook" "play/spook.el" (22230 48822 862219 -;;;;;; 238000)) +;;;;;; 0)) ;;; Generated autoloads from play/spook.el (autoload 'spook "spook" "\ @@ -25737,7 +25735,7 @@ Return a vector containing the lines from `spook-phrases-file'. ;;;*** ;;;### (autoloads nil "sql" "progmodes/sql.el" (22230 48822 893219 -;;;;;; 98000)) +;;;;;; 0)) ;;; Generated autoloads from progmodes/sql.el (push (purecopy '(sql 3 5)) package--builtin-versions) @@ -26204,14 +26202,14 @@ Run vsql as an inferior process. ;;;*** ;;;### (autoloads nil "srecode" "cedet/srecode.el" (22230 48822 671220 -;;;;;; 100000)) +;;;;;; 0)) ;;; Generated autoloads from cedet/srecode.el (push (purecopy '(srecode 1 2)) package--builtin-versions) ;;;*** ;;;### (autoloads nil "srecode/srt-mode" "cedet/srecode/srt-mode.el" -;;;;;; (22230 48822 673220 91000)) +;;;;;; (22230 48822 673220 0)) ;;; Generated autoloads from cedet/srecode/srt-mode.el (autoload 'srecode-template-mode "srecode/srt-mode" "\ @@ -26223,8 +26221,8 @@ Major-mode for writing SRecode macros. ;;;*** -;;;### (autoloads nil "starttls" "gnus/starttls.el" (22230 48822 -;;;;;; 755219 721000)) +;;;### (autoloads nil "starttls" "gnus/starttls.el" (22290 3771 224246 +;;;;;; 172000)) ;;; Generated autoloads from gnus/starttls.el (autoload 'starttls-open-stream "starttls" "\ @@ -26248,7 +26246,7 @@ GnuTLS requires a port number. ;;;*** ;;;### (autoloads nil "strokes" "strokes.el" (22230 48822 909219 -;;;;;; 26000)) +;;;;;; 0)) ;;; Generated autoloads from strokes.el (autoload 'strokes-global-set-stroke "strokes" "\ @@ -26361,8 +26359,8 @@ Read a complex stroke and insert its glyph into the current buffer. ;;;*** -;;;### (autoloads nil "studly" "play/studly.el" (22230 48822 862219 -;;;;;; 238000)) +;;;### (autoloads nil "studly" "play/studly.el" (22290 3781 426180 +;;;;;; 237000)) ;;; Generated autoloads from play/studly.el (autoload 'studlify-region "studly" "\ @@ -26383,7 +26381,7 @@ Studlify-case the current buffer. ;;;*** ;;;### (autoloads nil "subword" "progmodes/subword.el" (22230 48822 -;;;;;; 893219 98000)) +;;;;;; 893219 0)) ;;; Generated autoloads from progmodes/subword.el (define-obsolete-function-alias 'capitalized-words-mode 'subword-mode "25.1") @@ -26476,7 +26474,7 @@ See `superword-mode' for more information on Superword mode. ;;;*** ;;;### (autoloads nil "supercite" "mail/supercite.el" (22230 48822 -;;;;;; 793219 549000)) +;;;;;; 793219 0)) ;;; Generated autoloads from mail/supercite.el (autoload 'sc-cite-original "supercite" "\ @@ -26508,8 +26506,8 @@ and `sc-post-hook' is run after the guts of this function. ;;;*** -;;;### (autoloads nil "t-mouse" "t-mouse.el" (22230 48822 910219 -;;;;;; 21000)) +;;;### (autoloads nil "t-mouse" "t-mouse.el" (22261 18214 533020 +;;;;;; 0)) ;;; Generated autoloads from t-mouse.el (define-obsolete-function-alias 't-mouse-mode 'gpm-mouse-mode "23.1") @@ -26541,7 +26539,7 @@ GPM. This is due to limitations in GPM and the Linux kernel. ;;;*** -;;;### (autoloads nil "tabify" "tabify.el" (22230 48822 910219 21000)) +;;;### (autoloads nil "tabify" "tabify.el" (22230 48822 910219 0)) ;;; Generated autoloads from tabify.el (autoload 'untabify "tabify" "\ @@ -26571,7 +26569,7 @@ The variable `tab-width' controls the spacing of tab stops. ;;;*** ;;;### (autoloads nil "table" "textmodes/table.el" (22230 48822 924218 -;;;;;; 958000)) +;;;;;; 0)) ;;; Generated autoloads from textmodes/table.el (autoload 'table-insert "table" "\ @@ -27142,7 +27140,7 @@ converts a table into plain text without frames. It is a companion to ;;;*** -;;;### (autoloads nil "talk" "talk.el" (22230 48822 910219 21000)) +;;;### (autoloads nil "talk" "talk.el" (22230 48822 910219 0)) ;;; Generated autoloads from talk.el (autoload 'talk-connect "talk" "\ @@ -27158,7 +27156,7 @@ Connect to the Emacs talk group from the current X display or tty frame. ;;;*** ;;;### (autoloads nil "tar-mode" "tar-mode.el" (22230 48822 910219 -;;;;;; 21000)) +;;;;;; 0)) ;;; Generated autoloads from tar-mode.el (autoload 'tar-mode "tar-mode" "\ @@ -27182,7 +27180,7 @@ See also: variables `tar-update-datestamp' and `tar-anal-blocksize'. ;;;*** ;;;### (autoloads nil "tcl" "progmodes/tcl.el" (22230 48822 894219 -;;;;;; 94000)) +;;;;;; 0)) ;;; Generated autoloads from progmodes/tcl.el (autoload 'tcl-mode "tcl" "\ @@ -27231,7 +27229,7 @@ Prefix argument means invert sense of `tcl-use-smart-word-finder'. ;;;*** ;;;### (autoloads nil "telnet" "net/telnet.el" (22230 48822 814219 -;;;;;; 455000)) +;;;;;; 0)) ;;; Generated autoloads from net/telnet.el (autoload 'telnet "telnet" "\ @@ -27256,7 +27254,7 @@ Normally input is edited in Emacs and sent a line at a time. ;;;*** -;;;### (autoloads nil "term" "term.el" (22230 48822 911219 17000)) +;;;### (autoloads nil "term" "term.el" (22298 5692 419287 921000)) ;;; Generated autoloads from term.el (autoload 'make-term "term" "\ @@ -27299,7 +27297,7 @@ use in that buffer. ;;;*** ;;;### (autoloads nil "testcover" "emacs-lisp/testcover.el" (22230 -;;;;;; 48822 697219 983000)) +;;;;;; 48822 697219 0)) ;;; Generated autoloads from emacs-lisp/testcover.el (autoload 'testcover-this-defun "testcover" "\ @@ -27310,7 +27308,7 @@ Start coverage on function under point. ;;;*** ;;;### (autoloads nil "tetris" "play/tetris.el" (22230 48822 862219 -;;;;;; 238000)) +;;;;;; 0)) ;;; Generated autoloads from play/tetris.el (push (purecopy '(tetris 2 1)) package--builtin-versions) @@ -27335,8 +27333,8 @@ tetris-mode keybindings: ;;;*** -;;;### (autoloads nil "tex-mode" "textmodes/tex-mode.el" (22230 48822 -;;;;;; 925218 954000)) +;;;### (autoloads nil "tex-mode" "textmodes/tex-mode.el" (22290 3771 +;;;;;; 328245 500000)) ;;; Generated autoloads from textmodes/tex-mode.el (defvar tex-shell-file-name nil "\ @@ -27637,8 +27635,8 @@ Major mode to edit DocTeX files. ;;;*** -;;;### (autoloads nil "texinfmt" "textmodes/texinfmt.el" (22230 48822 -;;;;;; 926218 949000)) +;;;### (autoloads nil "texinfmt" "textmodes/texinfmt.el" (22266 10298 +;;;;;; 487370 0)) ;;; Generated autoloads from textmodes/texinfmt.el (autoload 'texinfo-format-buffer "texinfmt" "\ @@ -27677,8 +27675,8 @@ if large. You can use `Info-split' to do this manually. ;;;*** -;;;### (autoloads nil "texinfo" "textmodes/texinfo.el" (22230 48822 -;;;;;; 926218 949000)) +;;;### (autoloads nil "texinfo" "textmodes/texinfo.el" (22290 3771 +;;;;;; 328245 500000)) ;;; Generated autoloads from textmodes/texinfo.el (defvar texinfo-open-quote (purecopy "``") "\ @@ -27763,7 +27761,7 @@ value of `texinfo-mode-hook'. ;;;*** ;;;### (autoloads nil "thai-util" "language/thai-util.el" (22230 -;;;;;; 48822 774219 635000)) +;;;;;; 48822 774219 0)) ;;; Generated autoloads from language/thai-util.el (autoload 'thai-compose-region "thai-util" "\ @@ -27790,8 +27788,8 @@ Compose Thai characters in the current buffer. ;;;*** -;;;### (autoloads nil "thingatpt" "thingatpt.el" (22230 48822 927218 -;;;;;; 945000)) +;;;### (autoloads nil "thingatpt" "thingatpt.el" (22266 10298 488370 +;;;;;; 0)) ;;; Generated autoloads from thingatpt.el (autoload 'forward-thing "thingatpt" "\ @@ -27855,7 +27853,7 @@ Return the Lisp list at point, or nil if none is found. ;;;*** -;;;### (autoloads nil "thumbs" "thumbs.el" (22230 48822 927218 945000)) +;;;### (autoloads nil "thumbs" "thumbs.el" (22230 48822 927218 0)) ;;; Generated autoloads from thumbs.el (autoload 'thumbs-find-thumb "thumbs" "\ @@ -27890,14 +27888,14 @@ In dired, call the setroot program on the image at point. ;;;*** ;;;### (autoloads nil "thunk" "emacs-lisp/thunk.el" (22230 48822 -;;;;;; 697219 983000)) +;;;;;; 697219 0)) ;;; Generated autoloads from emacs-lisp/thunk.el (push (purecopy '(thunk 1 0)) package--builtin-versions) ;;;*** ;;;### (autoloads nil "tibet-util" "language/tibet-util.el" (22230 -;;;;;; 48822 775219 631000)) +;;;;;; 48822 775219 0)) ;;; Generated autoloads from language/tibet-util.el (autoload 'tibetan-char-p "tibet-util" "\ @@ -27971,7 +27969,7 @@ See also docstring of the function tibetan-compose-region. ;;;*** ;;;### (autoloads nil "tildify" "textmodes/tildify.el" (22230 48822 -;;;;;; 926218 949000)) +;;;;;; 926218 0)) ;;; Generated autoloads from textmodes/tildify.el (push (purecopy '(tildify 4 6 1)) package--builtin-versions) @@ -28037,7 +28035,7 @@ variable will be set to the representation. ;;;*** -;;;### (autoloads nil "time" "time.el" (22230 48822 927218 945000)) +;;;### (autoloads nil "time" "time.el" (22230 48822 927218 0)) ;;; Generated autoloads from time.el (defvar display-time-day-and-date nil "\ @@ -28100,7 +28098,7 @@ Return a string giving the duration of the Emacs initialization. ;;;*** ;;;### (autoloads nil "time-date" "calendar/time-date.el" (22230 -;;;;;; 48822 653220 181000)) +;;;;;; 48822 653220 0)) ;;; Generated autoloads from calendar/time-date.el (autoload 'date-to-time "time-date" "\ @@ -28203,8 +28201,8 @@ Convert the time interval in seconds to a short string. ;;;*** -;;;### (autoloads nil "time-stamp" "time-stamp.el" (22230 48822 927218 -;;;;;; 945000)) +;;;### (autoloads nil "time-stamp" "time-stamp.el" (22290 3771 329245 +;;;;;; 493000)) ;;; Generated autoloads from time-stamp.el (put 'time-stamp-format 'safe-local-variable 'stringp) (put 'time-stamp-time-zone 'safe-local-variable 'string-or-null-p) @@ -28245,7 +28243,7 @@ With ARG, turn time stamping on if and only if arg is positive. ;;;*** ;;;### (autoloads nil "timeclock" "calendar/timeclock.el" (22230 -;;;;;; 48822 654220 177000)) +;;;;;; 48822 654220 0)) ;;; Generated autoloads from calendar/timeclock.el (push (purecopy '(timeclock 2 6 1)) package--builtin-versions) @@ -28355,7 +28353,7 @@ relative only to the time worked today, and not to past time. ;;;*** ;;;### (autoloads nil "titdic-cnv" "international/titdic-cnv.el" -;;;;;; (22230 48822 767219 667000)) +;;;;;; (22230 48822 767219 0)) ;;; Generated autoloads from international/titdic-cnv.el (autoload 'titdic-convert "titdic-cnv" "\ @@ -28377,7 +28375,7 @@ To get complete usage, invoke \"emacs -batch -f batch-titdic-convert -h\". ;;;*** -;;;### (autoloads nil "tmm" "tmm.el" (22230 48822 928218 940000)) +;;;### (autoloads nil "tmm" "tmm.el" (22298 5692 419287 921000)) ;;; Generated autoloads from tmm.el (define-key global-map "\M-`" 'tmm-menubar) (define-key global-map [menu-bar mouse-1] 'tmm-menubar-mouse) @@ -28419,8 +28417,8 @@ Its value should be an event that has a binding in MENU. ;;;*** -;;;### (autoloads nil "todo-mode" "calendar/todo-mode.el" (22230 -;;;;;; 48822 655220 172000)) +;;;### (autoloads nil "todo-mode" "calendar/todo-mode.el" (22290 +;;;;;; 3781 414180 315000)) ;;; Generated autoloads from calendar/todo-mode.el (autoload 'todo-show "todo-mode" "\ @@ -28488,7 +28486,7 @@ Mode for displaying and reprioritizing top priority Todo. ;;;*** ;;;### (autoloads nil "tool-bar" "tool-bar.el" (22230 48822 928218 -;;;;;; 940000)) +;;;;;; 0)) ;;; Generated autoloads from tool-bar.el (autoload 'toggle-tool-bar-mode-from-frame "tool-bar" "\ @@ -28559,7 +28557,7 @@ holds a keymap. ;;;*** ;;;### (autoloads nil "tq" "emacs-lisp/tq.el" (22230 48822 698219 -;;;;;; 978000)) +;;;;;; 0)) ;;; Generated autoloads from emacs-lisp/tq.el (autoload 'tq-create "tq" "\ @@ -28573,7 +28571,7 @@ to a tcp server on another machine. ;;;*** ;;;### (autoloads nil "trace" "emacs-lisp/trace.el" (22230 48822 -;;;;;; 698219 978000)) +;;;;;; 698219 0)) ;;; Generated autoloads from emacs-lisp/trace.el (defvar trace-buffer "*trace-output*" "\ @@ -28618,8 +28616,7 @@ the output buffer or changing the window configuration. ;;;*** -;;;### (autoloads nil "tramp" "net/tramp.el" (22230 48822 817219 -;;;;;; 441000)) +;;;### (autoloads nil "tramp" "net/tramp.el" (22290 3781 421180 270000)) ;;; Generated autoloads from net/tramp.el (defvar tramp-mode t "\ @@ -28734,8 +28731,8 @@ Discard Tramp from loading remote files. ;;;*** -;;;### (autoloads nil "tramp-ftp" "net/tramp-ftp.el" (22230 48822 -;;;;;; 814219 455000)) +;;;### (autoloads nil "tramp-ftp" "net/tramp-ftp.el" (22290 3771 +;;;;;; 257245 959000)) ;;; Generated autoloads from net/tramp-ftp.el (autoload 'tramp-ftp-enable-ange-ftp "tramp-ftp" "\ @@ -28745,15 +28742,15 @@ Discard Tramp from loading remote files. ;;;*** -;;;### (autoloads nil "trampver" "net/trampver.el" (22230 48822 817219 -;;;;;; 441000)) +;;;### (autoloads nil "trampver" "net/trampver.el" (22290 3771 261245 +;;;;;; 933000)) ;;; Generated autoloads from net/trampver.el (push (purecopy '(tramp 2 2 13 25 1)) package--builtin-versions) ;;;*** ;;;### (autoloads nil "tutorial" "tutorial.el" (22230 48822 928218 -;;;;;; 940000)) +;;;;;; 0)) ;;; Generated autoloads from tutorial.el (autoload 'help-with-tutorial "tutorial" "\ @@ -28778,7 +28775,7 @@ resumed later. ;;;*** ;;;### (autoloads nil "tv-util" "language/tv-util.el" (22230 48822 -;;;;;; 775219 631000)) +;;;;;; 775219 0)) ;;; Generated autoloads from language/tv-util.el (autoload 'tai-viet-composition-function "tv-util" "\ @@ -28789,7 +28786,7 @@ resumed later. ;;;*** ;;;### (autoloads nil "two-column" "textmodes/two-column.el" (22230 -;;;;;; 48822 927218 945000)) +;;;;;; 48822 927218 0)) ;;; Generated autoloads from textmodes/two-column.el (autoload '2C-command "two-column" () t 'keymap) (global-set-key "\C-x6" '2C-command) @@ -28837,7 +28834,7 @@ First column's text sSs Second column's text ;;;*** ;;;### (autoloads nil "type-break" "type-break.el" (22230 48822 928218 -;;;;;; 940000)) +;;;;;; 0)) ;;; Generated autoloads from type-break.el (defvar type-break-mode nil "\ @@ -28969,7 +28966,7 @@ FRAC should be the inverse of the fractional value; for example, a value of ;;;*** -;;;### (autoloads nil "uce" "mail/uce.el" (22230 48822 793219 549000)) +;;;### (autoloads nil "uce" "mail/uce.el" (22230 48822 793219 0)) ;;; Generated autoloads from mail/uce.el (autoload 'uce-reply-to-uce "uce" "\ @@ -28983,7 +28980,7 @@ You might need to set `uce-mail-reader' before using this. ;;;*** ;;;### (autoloads nil "ucs-normalize" "international/ucs-normalize.el" -;;;;;; (22230 48822 767219 667000)) +;;;;;; (22230 48822 767219 0)) ;;; Generated autoloads from international/ucs-normalize.el (autoload 'ucs-normalize-NFD-region "ucs-normalize" "\ @@ -29049,7 +29046,7 @@ Normalize the string STR by the Unicode NFC and Mac OS's HFS Plus. ;;;*** ;;;### (autoloads nil "underline" "textmodes/underline.el" (22230 -;;;;;; 48822 927218 945000)) +;;;;;; 48822 927218 0)) ;;; Generated autoloads from textmodes/underline.el (autoload 'underline-region "underline" "\ @@ -29070,7 +29067,7 @@ which specify the range to operate on. ;;;*** ;;;### (autoloads nil "unrmail" "mail/unrmail.el" (22230 48822 793219 -;;;;;; 549000)) +;;;;;; 0)) ;;; Generated autoloads from mail/unrmail.el (autoload 'batch-unrmail "unrmail" "\ @@ -29091,7 +29088,7 @@ The variable `unrmail-mbox-format' controls which mbox format to use. ;;;*** ;;;### (autoloads nil "unsafep" "emacs-lisp/unsafep.el" (22230 48822 -;;;;;; 698219 978000)) +;;;;;; 698219 0)) ;;; Generated autoloads from emacs-lisp/unsafep.el (autoload 'unsafep "unsafep" "\ @@ -29103,7 +29100,7 @@ UNSAFEP-VARS is a list of symbols with local bindings. ;;;*** -;;;### (autoloads nil "url" "url/url.el" (22230 48822 932218 922000)) +;;;### (autoloads nil "url" "url/url.el" (22230 48822 932218 0)) ;;; Generated autoloads from url/url.el (autoload 'url-retrieve "url" "\ @@ -29151,7 +29148,7 @@ no further processing). URL is either a string or a parsed URL. ;;;*** ;;;### (autoloads nil "url-auth" "url/url-auth.el" (22230 48822 929218 -;;;;;; 936000)) +;;;;;; 0)) ;;; Generated autoloads from url/url-auth.el (autoload 'url-get-authentication "url-auth" "\ @@ -29193,7 +29190,7 @@ RATING a rating between 1 and 10 of the strength of the authentication. ;;;*** ;;;### (autoloads nil "url-cache" "url/url-cache.el" (22230 48822 -;;;;;; 929218 936000)) +;;;;;; 929218 0)) ;;; Generated autoloads from url/url-cache.el (autoload 'url-store-in-cache "url-cache" "\ @@ -29215,7 +29212,7 @@ Extract FNAM from the local disk cache. ;;;*** ;;;### (autoloads nil "url-cid" "url/url-cid.el" (22230 48822 929218 -;;;;;; 936000)) +;;;;;; 0)) ;;; Generated autoloads from url/url-cid.el (autoload 'url-cid "url-cid" "\ @@ -29226,7 +29223,7 @@ Extract FNAM from the local disk cache. ;;;*** ;;;### (autoloads nil "url-dav" "url/url-dav.el" (22230 48822 930218 -;;;;;; 931000)) +;;;;;; 0)) ;;; Generated autoloads from url/url-dav.el (autoload 'url-dav-supported-p "url-dav" "\ @@ -29261,7 +29258,7 @@ added to this list, so most requests can just pass in nil. ;;;*** ;;;### (autoloads nil "url-file" "url/url-file.el" (22230 48822 930218 -;;;;;; 931000)) +;;;;;; 0)) ;;; Generated autoloads from url/url-file.el (autoload 'url-file "url-file" "\ @@ -29271,8 +29268,8 @@ Handle file: and ftp: URLs. ;;;*** -;;;### (autoloads nil "url-gw" "url/url-gw.el" (22230 48822 930218 -;;;;;; 931000)) +;;;### (autoloads nil "url-gw" "url/url-gw.el" (22290 3771 330245 +;;;;;; 487000)) ;;; Generated autoloads from url/url-gw.el (autoload 'url-gateway-nslookup-host "url-gw" "\ @@ -29293,8 +29290,8 @@ overriding the value of `url-gateway-method'. ;;;*** -;;;### (autoloads nil "url-handlers" "url/url-handlers.el" (22230 -;;;;;; 48822 930218 931000)) +;;;### (autoloads nil "url-handlers" "url/url-handlers.el" (22290 +;;;;;; 3771 330245 487000)) ;;; Generated autoloads from url/url-handlers.el (defvar url-handler-mode nil "\ @@ -29355,8 +29352,8 @@ if it had been inserted from a file named URL. ;;;*** -;;;### (autoloads nil "url-http" "url/url-http.el" (22230 48822 931218 -;;;;;; 927000)) +;;;### (autoloads nil "url-http" "url/url-http.el" (22290 3771 331245 +;;;;;; 481000)) ;;; Generated autoloads from url/url-http.el (autoload 'url-default-expander "url-expand") @@ -29369,7 +29366,7 @@ if it had been inserted from a file named URL. ;;;*** ;;;### (autoloads nil "url-irc" "url/url-irc.el" (22230 48822 931218 -;;;;;; 927000)) +;;;;;; 0)) ;;; Generated autoloads from url/url-irc.el (autoload 'url-irc "url-irc" "\ @@ -29380,7 +29377,7 @@ if it had been inserted from a file named URL. ;;;*** ;;;### (autoloads nil "url-ldap" "url/url-ldap.el" (22230 48822 931218 -;;;;;; 927000)) +;;;;;; 0)) ;;; Generated autoloads from url/url-ldap.el (autoload 'url-ldap "url-ldap" "\ @@ -29394,7 +29391,7 @@ URL can be a URL string, or a URL vector of the type returned by ;;;*** ;;;### (autoloads nil "url-mailto" "url/url-mailto.el" (22230 48822 -;;;;;; 931218 927000)) +;;;;;; 931218 0)) ;;; Generated autoloads from url/url-mailto.el (autoload 'url-mail "url-mailto" "\ @@ -29410,7 +29407,7 @@ Handle the mailto: URL syntax. ;;;*** ;;;### (autoloads nil "url-misc" "url/url-misc.el" (22230 48822 931218 -;;;;;; 927000)) +;;;;;; 0)) ;;; Generated autoloads from url/url-misc.el (autoload 'url-man "url-misc" "\ @@ -29442,7 +29439,7 @@ Fetch a data URL (RFC 2397). ;;;*** ;;;### (autoloads nil "url-news" "url/url-news.el" (22230 48822 931218 -;;;;;; 927000)) +;;;;;; 0)) ;;; Generated autoloads from url/url-news.el (autoload 'url-news "url-news" "\ @@ -29458,7 +29455,7 @@ Fetch a data URL (RFC 2397). ;;;*** ;;;### (autoloads nil "url-ns" "url/url-ns.el" (22230 48822 931218 -;;;;;; 927000)) +;;;;;; 0)) ;;; Generated autoloads from url/url-ns.el (autoload 'isPlainHostName "url-ns" "\ @@ -29499,7 +29496,7 @@ Fetch a data URL (RFC 2397). ;;;*** ;;;### (autoloads nil "url-parse" "url/url-parse.el" (22230 48822 -;;;;;; 931218 927000)) +;;;;;; 931218 0)) ;;; Generated autoloads from url/url-parse.el (autoload 'url-recreate-url "url-parse" "\ @@ -29551,7 +29548,7 @@ parses to ;;;*** ;;;### (autoloads nil "url-privacy" "url/url-privacy.el" (22230 48822 -;;;;;; 931218 927000)) +;;;;;; 931218 0)) ;;; Generated autoloads from url/url-privacy.el (autoload 'url-setup-privacy-info "url-privacy" "\ @@ -29561,8 +29558,8 @@ Setup variables that expose info about you and your system. ;;;*** -;;;### (autoloads nil "url-queue" "url/url-queue.el" (22230 48822 -;;;;;; 932218 922000)) +;;;### (autoloads nil "url-queue" "url/url-queue.el" (22290 3771 +;;;;;; 331245 481000)) ;;; Generated autoloads from url/url-queue.el (autoload 'url-queue-retrieve "url-queue" "\ @@ -29577,7 +29574,7 @@ The variable `url-queue-timeout' sets a timeout. ;;;*** ;;;### (autoloads nil "url-tramp" "url/url-tramp.el" (22230 48822 -;;;;;; 932218 922000)) +;;;;;; 932218 0)) ;;; Generated autoloads from url/url-tramp.el (defvar url-tramp-protocols '("ftp" "ssh" "scp" "rsync" "telnet") "\ @@ -29595,8 +29592,8 @@ would have been passed to OPERATION. ;;;*** -;;;### (autoloads nil "url-util" "url/url-util.el" (22230 48822 932218 -;;;;;; 922000)) +;;;### (autoloads nil "url-util" "url/url-util.el" (22290 3771 332245 +;;;;;; 474000)) ;;; Generated autoloads from url/url-util.el (defvar url-debug nil "\ @@ -29765,7 +29762,7 @@ This uses `url-current-object', set locally to the buffer. ;;;*** ;;;### (autoloads nil "userlock" "userlock.el" (22230 48822 932218 -;;;;;; 922000)) +;;;;;; 0)) ;;; Generated autoloads from userlock.el (autoload 'ask-user-about-lock "userlock" "\ @@ -29794,7 +29791,7 @@ The buffer in question is current when this function is called. ;;;*** ;;;### (autoloads nil "utf-7" "international/utf-7.el" (22230 48822 -;;;;;; 767219 667000)) +;;;;;; 767219 0)) ;;; Generated autoloads from international/utf-7.el (autoload 'utf-7-post-read-conversion "utf-7" "\ @@ -29819,7 +29816,7 @@ The buffer in question is current when this function is called. ;;;*** -;;;### (autoloads nil "utf7" "gnus/utf7.el" (22230 48822 755219 721000)) +;;;### (autoloads nil "utf7" "gnus/utf7.el" (22290 3771 224246 172000)) ;;; Generated autoloads from gnus/utf7.el (autoload 'utf7-encode "utf7" "\ @@ -29830,7 +29827,7 @@ Encode UTF-7 STRING. Use IMAP modification if FOR-IMAP is non-nil. ;;;*** ;;;### (autoloads nil "uudecode" "mail/uudecode.el" (22230 48822 -;;;;;; 793219 549000)) +;;;;;; 793219 0)) ;;; Generated autoloads from mail/uudecode.el (autoload 'uudecode-decode-region-external "uudecode" "\ @@ -29854,7 +29851,7 @@ If FILE-NAME is non-nil, save the result to FILE-NAME. ;;;*** -;;;### (autoloads nil "vc" "vc/vc.el" (22230 48822 941218 881000)) +;;;### (autoloads nil "vc" "vc/vc.el" (22230 48822 941218 0)) ;;; Generated autoloads from vc/vc.el (defvar vc-checkout-hook nil "\ @@ -30170,8 +30167,8 @@ Return the branch part of a revision number REV. ;;;*** -;;;### (autoloads nil "vc-annotate" "vc/vc-annotate.el" (22230 48822 -;;;;;; 938218 895000)) +;;;### (autoloads nil "vc-annotate" "vc/vc-annotate.el" (22290 3781 +;;;;;; 435180 179000)) ;;; Generated autoloads from vc/vc-annotate.el (autoload 'vc-annotate "vc-annotate" "\ @@ -30211,7 +30208,7 @@ should be applied to the background or to the foreground. ;;;*** ;;;### (autoloads nil "vc-bzr" "vc/vc-bzr.el" (22230 48822 938218 -;;;;;; 895000)) +;;;;;; 0)) ;;; Generated autoloads from vc/vc-bzr.el (defconst vc-bzr-admin-dirname ".bzr" "\ @@ -30228,7 +30225,7 @@ Name of the format file in a .bzr directory.") ;;;*** ;;;### (autoloads nil "vc-cvs" "vc/vc-cvs.el" (22230 48822 939218 -;;;;;; 890000)) +;;;;;; 0)) ;;; Generated autoloads from vc/vc-cvs.el (defun vc-cvs-registered (f) "Return non-nil if file F is registered with CVS." @@ -30240,7 +30237,7 @@ Name of the format file in a .bzr directory.") ;;;*** ;;;### (autoloads nil "vc-dir" "vc/vc-dir.el" (22230 48822 939218 -;;;;;; 890000)) +;;;;;; 0)) ;;; Generated autoloads from vc/vc-dir.el (autoload 'vc-dir "vc-dir" "\ @@ -30264,8 +30261,8 @@ These are the commands available for use in the file status buffer: ;;;*** -;;;### (autoloads nil "vc-dispatcher" "vc/vc-dispatcher.el" (22230 -;;;;;; 48822 939218 890000)) +;;;### (autoloads nil "vc-dispatcher" "vc/vc-dispatcher.el" (22290 +;;;;;; 3771 335245 455000)) ;;; Generated autoloads from vc/vc-dispatcher.el (autoload 'vc-do-command "vc-dispatcher" "\ @@ -30288,8 +30285,8 @@ case, and the process object in the asynchronous case. ;;;*** -;;;### (autoloads nil "vc-git" "vc/vc-git.el" (22230 48822 940218 -;;;;;; 886000)) +;;;### (autoloads nil "vc-git" "vc/vc-git.el" (22290 3781 435180 +;;;;;; 179000)) ;;; Generated autoloads from vc/vc-git.el (defun vc-git-registered (file) "Return non-nil if FILE is registered with git." @@ -30300,7 +30297,7 @@ case, and the process object in the asynchronous case. ;;;*** -;;;### (autoloads nil "vc-hg" "vc/vc-hg.el" (22230 48822 940218 886000)) +;;;### (autoloads nil "vc-hg" "vc/vc-hg.el" (22290 3771 336245 448000)) ;;; Generated autoloads from vc/vc-hg.el (defun vc-hg-registered (file) "Return non-nil if FILE is registered with hg." @@ -30312,7 +30309,7 @@ case, and the process object in the asynchronous case. ;;;*** ;;;### (autoloads nil "vc-mtn" "vc/vc-mtn.el" (22230 48822 940218 -;;;;;; 886000)) +;;;;;; 0)) ;;; Generated autoloads from vc/vc-mtn.el (defconst vc-mtn-admin-dir "_MTN" "\ @@ -30329,7 +30326,7 @@ Name of the monotone directory's format file.") ;;;*** ;;;### (autoloads nil "vc-rcs" "vc/vc-rcs.el" (22230 48822 940218 -;;;;;; 886000)) +;;;;;; 0)) ;;; Generated autoloads from vc/vc-rcs.el (defvar vc-rcs-master-templates (purecopy '("%sRCS/%s,v" "%s%s,v" "%sRCS/%s")) "\ @@ -30343,7 +30340,7 @@ For a description of possible values, see `vc-check-master-templates'.") ;;;*** ;;;### (autoloads nil "vc-sccs" "vc/vc-sccs.el" (22230 48822 941218 -;;;;;; 881000)) +;;;;;; 0)) ;;; Generated autoloads from vc/vc-sccs.el (defvar vc-sccs-master-templates (purecopy '("%sSCCS/s.%s" "%ss.%s" vc-sccs-search-project-dir)) "\ @@ -30362,7 +30359,7 @@ find any project directory." (let ((project-dir (getenv "PROJECTDIR")) dirs dir) ;;;*** ;;;### (autoloads nil "vc-src" "vc/vc-src.el" (22230 48822 941218 -;;;;;; 881000)) +;;;;;; 0)) ;;; Generated autoloads from vc/vc-src.el (defvar vc-src-master-templates (purecopy '("%s.src/%s,v")) "\ @@ -30376,7 +30373,7 @@ For a description of possible values, see `vc-check-master-templates'.") ;;;*** ;;;### (autoloads nil "vc-svn" "vc/vc-svn.el" (22230 48822 941218 -;;;;;; 881000)) +;;;;;; 0)) ;;; Generated autoloads from vc/vc-svn.el (defun vc-svn-registered (f) (let ((admin-dir (cond ((and (eq system-type 'windows-nt) @@ -30389,8 +30386,8 @@ For a description of possible values, see `vc-check-master-templates'.") ;;;*** -;;;### (autoloads nil "vera-mode" "progmodes/vera-mode.el" (22230 -;;;;;; 48822 894219 94000)) +;;;### (autoloads nil "vera-mode" "progmodes/vera-mode.el" (22266 +;;;;;; 10298 472370 0)) ;;; 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)) @@ -30449,7 +30446,7 @@ Key bindings: ;;;*** ;;;### (autoloads nil "verilog-mode" "progmodes/verilog-mode.el" -;;;;;; (22230 48822 896219 84000)) +;;;;;; (22290 3771 307245 635000)) ;;; Generated autoloads from progmodes/verilog-mode.el (autoload 'verilog-mode "verilog-mode" "\ @@ -30588,8 +30585,8 @@ Key bindings specific to `verilog-mode-map' are: ;;;*** -;;;### (autoloads nil "vhdl-mode" "progmodes/vhdl-mode.el" (22230 -;;;;;; 48822 899219 71000)) +;;;### (autoloads nil "vhdl-mode" "progmodes/vhdl-mode.el" (22298 +;;;;;; 5692 417287 929000)) ;;; Generated autoloads from progmodes/vhdl-mode.el (autoload 'vhdl-mode "vhdl-mode" "\ @@ -31144,7 +31141,7 @@ Key bindings: ;;;*** ;;;### (autoloads nil "viet-util" "language/viet-util.el" (22230 -;;;;;; 48822 776219 626000)) +;;;;;; 48822 776219 0)) ;;; Generated autoloads from language/viet-util.el (autoload 'viet-encode-viscii-char "viet-util" "\ @@ -31188,7 +31185,7 @@ Convert Vietnamese characters of the current buffer to `VIQR' mnemonics. ;;;*** -;;;### (autoloads nil "view" "view.el" (22230 48822 942218 877000)) +;;;### (autoloads nil "view" "view.el" (22230 48822 942218 0)) ;;; Generated autoloads from view.el (defvar view-remove-frame-by-deleting t "\ @@ -31445,7 +31442,7 @@ Exit View mode and make the current buffer editable. ;;;*** ;;;### (autoloads nil "viper" "emulation/viper.el" (22230 48822 702219 -;;;;;; 960000)) +;;;;;; 0)) ;;; Generated autoloads from emulation/viper.el (push (purecopy '(viper 3 14 1)) package--builtin-versions) @@ -31463,7 +31460,7 @@ Turn on Viper emulation of Vi in Emacs. See Info node `(viper)Top'. ;;;*** ;;;### (autoloads nil "warnings" "emacs-lisp/warnings.el" (22230 -;;;;;; 48822 698219 978000)) +;;;;;; 48822 698219 0)) ;;; Generated autoloads from emacs-lisp/warnings.el (defvar warning-prefix-function nil "\ @@ -31553,7 +31550,7 @@ this is equivalent to `display-warning', using ;;;*** -;;;### (autoloads nil "wdired" "wdired.el" (22230 48822 943218 872000)) +;;;### (autoloads nil "wdired" "wdired.el" (22290 3771 338245 435000)) ;;; Generated autoloads from wdired.el (push (purecopy '(wdired 2 0)) package--builtin-versions) @@ -31572,7 +31569,7 @@ See `wdired-mode'. ;;;*** ;;;### (autoloads nil "webjump" "net/webjump.el" (22230 48822 817219 -;;;;;; 441000)) +;;;;;; 0)) ;;; Generated autoloads from net/webjump.el (autoload 'webjump "webjump" "\ @@ -31588,8 +31585,8 @@ Please submit bug reports and other feedback to the author, Neil W. Van Dyke ;;;*** -;;;### (autoloads nil "which-func" "progmodes/which-func.el" (22230 -;;;;;; 48822 899219 71000)) +;;;### (autoloads nil "which-func" "progmodes/which-func.el" (22290 +;;;;;; 3771 309245 623000)) ;;; Generated autoloads from progmodes/which-func.el (put 'which-func-format 'risky-local-variable t) (put 'which-func-current 'risky-local-variable t) @@ -31620,7 +31617,7 @@ in certain major modes. ;;;*** ;;;### (autoloads nil "whitespace" "whitespace.el" (22230 48822 943218 -;;;;;; 872000)) +;;;;;; 0)) ;;; Generated autoloads from whitespace.el (push (purecopy '(whitespace 13 2 2)) package--builtin-versions) @@ -31989,7 +31986,7 @@ cleaning up these problems. ;;;*** ;;;### (autoloads nil "wid-browse" "wid-browse.el" (22230 48822 943218 -;;;;;; 872000)) +;;;;;; 0)) ;;; Generated autoloads from wid-browse.el (autoload 'widget-browse-at "wid-browse" "\ @@ -32018,7 +32015,7 @@ if ARG is omitted or nil. ;;;*** ;;;### (autoloads nil "wid-edit" "wid-edit.el" (22230 48822 944218 -;;;;;; 868000)) +;;;;;; 0)) ;;; Generated autoloads from wid-edit.el (autoload 'widgetp "wid-edit" "\ @@ -32061,7 +32058,7 @@ Setup current buffer so editing string widgets works. ;;;*** ;;;### (autoloads nil "windmove" "windmove.el" (22230 48822 944218 -;;;;;; 868000)) +;;;;;; 0)) ;;; Generated autoloads from windmove.el (autoload 'windmove-left "windmove" "\ @@ -32113,7 +32110,7 @@ Default MODIFIER is `shift'. ;;;*** -;;;### (autoloads nil "winner" "winner.el" (22230 48822 945218 863000)) +;;;### (autoloads nil "winner" "winner.el" (22230 48822 945218 0)) ;;; Generated autoloads from winner.el (defvar winner-mode nil "\ @@ -32136,7 +32133,7 @@ the mode if ARG is omitted or nil, and toggle it if ARG is `toggle'. ;;;*** -;;;### (autoloads nil "woman" "woman.el" (22230 48822 946218 859000)) +;;;### (autoloads nil "woman" "woman.el" (22261 18214 542020 0)) ;;; Generated autoloads from woman.el (push (purecopy '(woman 0 551)) package--builtin-versions) @@ -32185,7 +32182,7 @@ Default bookmark handler for Woman buffers. ;;;*** -;;;### (autoloads nil "xml" "xml.el" (22230 48822 947218 854000)) +;;;### (autoloads nil "xml" "xml.el" (22266 10298 491370 0)) ;;; Generated autoloads from xml.el (autoload 'xml-parse-file "xml" "\ @@ -32241,8 +32238,8 @@ Both features can be combined by providing a cons cell ;;;*** -;;;### (autoloads nil "xmltok" "nxml/xmltok.el" (22230 48822 821219 -;;;;;; 423000)) +;;;### (autoloads nil "xmltok" "nxml/xmltok.el" (22290 3771 264245 +;;;;;; 913000)) ;;; Generated autoloads from nxml/xmltok.el (autoload 'xmltok-get-declared-encoding-position "xmltok" "\ @@ -32260,8 +32257,8 @@ If LIMIT is non-nil, then do not consider characters beyond LIMIT. ;;;*** -;;;### (autoloads nil "xref" "progmodes/xref.el" (22230 48822 899219 -;;;;;; 71000)) +;;;### (autoloads nil "xref" "progmodes/xref.el" (22290 3781 433180 +;;;;;; 192000)) ;;; Generated autoloads from progmodes/xref.el (autoload 'xref-find-backend "xref" "\ @@ -32328,8 +32325,8 @@ IGNORES is a list of glob patterns. ;;;*** -;;;### (autoloads nil "xt-mouse" "xt-mouse.el" (22230 48822 947218 -;;;;;; 854000)) +;;;### (autoloads nil "xt-mouse" "xt-mouse.el" (22290 3781 436180 +;;;;;; 173000)) ;;; Generated autoloads from xt-mouse.el (defvar xterm-mouse-mode nil "\ @@ -32358,8 +32355,7 @@ down the SHIFT key while pressing the mouse button. ;;;*** -;;;### (autoloads nil "xwidget" "xwidget.el" (22230 48822 947218 -;;;;;; 854000)) +;;;### (autoloads nil "xwidget" "xwidget.el" (22290 3781 436180 173000)) ;;; Generated autoloads from xwidget.el (autoload 'xwidget-webkit-browse-url "xwidget" "\ @@ -32371,7 +32367,7 @@ Interactively, URL defaults to the string looking like a url around point. ;;;*** -;;;### (autoloads nil "yenc" "gnus/yenc.el" (22230 48822 755219 721000)) +;;;### (autoloads nil "yenc" "gnus/yenc.el" (22290 3771 224246 172000)) ;;; Generated autoloads from gnus/yenc.el (autoload 'yenc-decode-region "yenc" "\ @@ -32386,7 +32382,7 @@ Extract file name from an yenc header. ;;;*** -;;;### (autoloads nil "zone" "play/zone.el" (22230 48822 862219 238000)) +;;;### (autoloads nil "zone" "play/zone.el" (22230 48822 862219 0)) ;;; Generated autoloads from play/zone.el (autoload 'zone "zone" "\ @@ -32402,46 +32398,46 @@ Zone out, completely. ;;;;;; "calc/calc-fin.el" "calc/calc-forms.el" "calc/calc-frac.el" ;;;;;; "calc/calc-funcs.el" "calc/calc-graph.el" "calc/calc-help.el" ;;;;;; "calc/calc-incom.el" "calc/calc-keypd.el" "calc/calc-lang.el" -;;;;;; "calc/calc-macs.el" "calc/calc-map.el" "calc/calc-math.el" -;;;;;; "calc/calc-menu.el" "calc/calc-misc.el" "calc/calc-mode.el" -;;;;;; "calc/calc-mtx.el" "calc/calc-nlfit.el" "calc/calc-poly.el" -;;;;;; "calc/calc-prog.el" "calc/calc-rewr.el" "calc/calc-rules.el" -;;;;;; "calc/calc-sel.el" "calc/calc-stat.el" "calc/calc-store.el" -;;;;;; "calc/calc-stuff.el" "calc/calc-trail.el" "calc/calc-units.el" -;;;;;; "calc/calc-vec.el" "calc/calc-yank.el" "calc/calcalg2.el" -;;;;;; "calc/calcalg3.el" "calc/calccomp.el" "calc/calcsel2.el" -;;;;;; "calendar/cal-bahai.el" "calendar/cal-coptic.el" "calendar/cal-french.el" -;;;;;; "calendar/cal-html.el" "calendar/cal-islam.el" "calendar/cal-iso.el" -;;;;;; "calendar/cal-julian.el" "calendar/cal-loaddefs.el" "calendar/cal-mayan.el" -;;;;;; "calendar/cal-menu.el" "calendar/cal-move.el" "calendar/cal-persia.el" -;;;;;; "calendar/cal-tex.el" "calendar/cal-x.el" "calendar/diary-loaddefs.el" -;;;;;; "calendar/hol-loaddefs.el" "cdl.el" "cedet/cedet-cscope.el" -;;;;;; "cedet/cedet-files.el" "cedet/cedet-global.el" "cedet/cedet-idutils.el" -;;;;;; "cedet/ede/auto.el" "cedet/ede/autoconf-edit.el" "cedet/ede/base.el" -;;;;;; "cedet/ede/config.el" "cedet/ede/cpp-root.el" "cedet/ede/custom.el" -;;;;;; "cedet/ede/detect.el" "cedet/ede/dired.el" "cedet/ede/emacs.el" -;;;;;; "cedet/ede/files.el" "cedet/ede/generic.el" "cedet/ede/linux.el" -;;;;;; "cedet/ede/locate.el" "cedet/ede/make.el" "cedet/ede/makefile-edit.el" -;;;;;; "cedet/ede/pconf.el" "cedet/ede/pmake.el" "cedet/ede/proj-archive.el" -;;;;;; "cedet/ede/proj-aux.el" "cedet/ede/proj-comp.el" "cedet/ede/proj-elisp.el" -;;;;;; "cedet/ede/proj-info.el" "cedet/ede/proj-misc.el" "cedet/ede/proj-obj.el" -;;;;;; "cedet/ede/proj-prog.el" "cedet/ede/proj-scheme.el" "cedet/ede/proj-shared.el" -;;;;;; "cedet/ede/proj.el" "cedet/ede/project-am.el" "cedet/ede/shell.el" -;;;;;; "cedet/ede/simple.el" "cedet/ede/source.el" "cedet/ede/speedbar.el" -;;;;;; "cedet/ede/srecode.el" "cedet/ede/system.el" "cedet/ede/util.el" -;;;;;; "cedet/semantic/analyze.el" "cedet/semantic/analyze/complete.el" -;;;;;; "cedet/semantic/analyze/debug.el" "cedet/semantic/analyze/fcn.el" -;;;;;; "cedet/semantic/analyze/refs.el" "cedet/semantic/bovine.el" -;;;;;; "cedet/semantic/bovine/c-by.el" "cedet/semantic/bovine/c.el" -;;;;;; "cedet/semantic/bovine/debug.el" "cedet/semantic/bovine/el.el" -;;;;;; "cedet/semantic/bovine/gcc.el" "cedet/semantic/bovine/make-by.el" -;;;;;; "cedet/semantic/bovine/make.el" "cedet/semantic/bovine/scm-by.el" -;;;;;; "cedet/semantic/bovine/scm.el" "cedet/semantic/chart.el" -;;;;;; "cedet/semantic/complete.el" "cedet/semantic/ctxt.el" "cedet/semantic/db-debug.el" -;;;;;; "cedet/semantic/db-ebrowse.el" "cedet/semantic/db-el.el" -;;;;;; "cedet/semantic/db-file.el" "cedet/semantic/db-find.el" "cedet/semantic/db-global.el" -;;;;;; "cedet/semantic/db-javascript.el" "cedet/semantic/db-mode.el" -;;;;;; "cedet/semantic/db-ref.el" "cedet/semantic/db-typecache.el" +;;;;;; "calc/calc-loaddefs.el" "calc/calc-macs.el" "calc/calc-map.el" +;;;;;; "calc/calc-math.el" "calc/calc-menu.el" "calc/calc-misc.el" +;;;;;; "calc/calc-mode.el" "calc/calc-mtx.el" "calc/calc-nlfit.el" +;;;;;; "calc/calc-poly.el" "calc/calc-prog.el" "calc/calc-rewr.el" +;;;;;; "calc/calc-rules.el" "calc/calc-sel.el" "calc/calc-stat.el" +;;;;;; "calc/calc-store.el" "calc/calc-stuff.el" "calc/calc-trail.el" +;;;;;; "calc/calc-units.el" "calc/calc-vec.el" "calc/calc-yank.el" +;;;;;; "calc/calcalg2.el" "calc/calcalg3.el" "calc/calccomp.el" +;;;;;; "calc/calcsel2.el" "calendar/cal-bahai.el" "calendar/cal-coptic.el" +;;;;;; "calendar/cal-french.el" "calendar/cal-html.el" "calendar/cal-islam.el" +;;;;;; "calendar/cal-iso.el" "calendar/cal-julian.el" "calendar/cal-loaddefs.el" +;;;;;; "calendar/cal-mayan.el" "calendar/cal-menu.el" "calendar/cal-move.el" +;;;;;; "calendar/cal-persia.el" "calendar/cal-tex.el" "calendar/cal-x.el" +;;;;;; "calendar/diary-loaddefs.el" "calendar/hol-loaddefs.el" "cdl.el" +;;;;;; "cedet/cedet-cscope.el" "cedet/cedet-files.el" "cedet/cedet-global.el" +;;;;;; "cedet/cedet-idutils.el" "cedet/ede/auto.el" "cedet/ede/autoconf-edit.el" +;;;;;; "cedet/ede/base.el" "cedet/ede/config.el" "cedet/ede/cpp-root.el" +;;;;;; "cedet/ede/custom.el" "cedet/ede/detect.el" "cedet/ede/dired.el" +;;;;;; "cedet/ede/emacs.el" "cedet/ede/files.el" "cedet/ede/generic.el" +;;;;;; "cedet/ede/linux.el" "cedet/ede/loaddefs.el" "cedet/ede/locate.el" +;;;;;; "cedet/ede/make.el" "cedet/ede/makefile-edit.el" "cedet/ede/pconf.el" +;;;;;; "cedet/ede/pmake.el" "cedet/ede/proj-archive.el" "cedet/ede/proj-aux.el" +;;;;;; "cedet/ede/proj-comp.el" "cedet/ede/proj-elisp.el" "cedet/ede/proj-info.el" +;;;;;; "cedet/ede/proj-misc.el" "cedet/ede/proj-obj.el" "cedet/ede/proj-prog.el" +;;;;;; "cedet/ede/proj-scheme.el" "cedet/ede/proj-shared.el" "cedet/ede/proj.el" +;;;;;; "cedet/ede/project-am.el" "cedet/ede/shell.el" "cedet/ede/simple.el" +;;;;;; "cedet/ede/source.el" "cedet/ede/speedbar.el" "cedet/ede/srecode.el" +;;;;;; "cedet/ede/system.el" "cedet/ede/util.el" "cedet/semantic/analyze.el" +;;;;;; "cedet/semantic/analyze/complete.el" "cedet/semantic/analyze/debug.el" +;;;;;; "cedet/semantic/analyze/fcn.el" "cedet/semantic/analyze/refs.el" +;;;;;; "cedet/semantic/bovine.el" "cedet/semantic/bovine/c-by.el" +;;;;;; "cedet/semantic/bovine/c.el" "cedet/semantic/bovine/debug.el" +;;;;;; "cedet/semantic/bovine/el.el" "cedet/semantic/bovine/gcc.el" +;;;;;; "cedet/semantic/bovine/make-by.el" "cedet/semantic/bovine/make.el" +;;;;;; "cedet/semantic/bovine/scm-by.el" "cedet/semantic/bovine/scm.el" +;;;;;; "cedet/semantic/chart.el" "cedet/semantic/complete.el" "cedet/semantic/ctxt.el" +;;;;;; "cedet/semantic/db-debug.el" "cedet/semantic/db-ebrowse.el" +;;;;;; "cedet/semantic/db-el.el" "cedet/semantic/db-file.el" "cedet/semantic/db-find.el" +;;;;;; "cedet/semantic/db-global.el" "cedet/semantic/db-javascript.el" +;;;;;; "cedet/semantic/db-mode.el" "cedet/semantic/db-ref.el" "cedet/semantic/db-typecache.el" ;;;;;; "cedet/semantic/db.el" "cedet/semantic/debug.el" "cedet/semantic/decorate.el" ;;;;;; "cedet/semantic/decorate/include.el" "cedet/semantic/decorate/mode.el" ;;;;;; "cedet/semantic/dep.el" "cedet/semantic/doc.el" "cedet/semantic/ede-grammar.el" @@ -32449,13 +32445,13 @@ Zone out, completely. ;;;;;; "cedet/semantic/fw.el" "cedet/semantic/grammar-wy.el" "cedet/semantic/grammar.el" ;;;;;; "cedet/semantic/html.el" "cedet/semantic/ia-sb.el" "cedet/semantic/ia.el" ;;;;;; "cedet/semantic/idle.el" "cedet/semantic/imenu.el" "cedet/semantic/java.el" -;;;;;; "cedet/semantic/lex-spp.el" "cedet/semantic/lex.el" "cedet/semantic/mru-bookmark.el" -;;;;;; "cedet/semantic/sb.el" "cedet/semantic/scope.el" "cedet/semantic/senator.el" -;;;;;; "cedet/semantic/sort.el" "cedet/semantic/symref.el" "cedet/semantic/symref/cscope.el" -;;;;;; "cedet/semantic/symref/filter.el" "cedet/semantic/symref/global.el" -;;;;;; "cedet/semantic/symref/grep.el" "cedet/semantic/symref/idutils.el" -;;;;;; "cedet/semantic/symref/list.el" "cedet/semantic/tag-file.el" -;;;;;; "cedet/semantic/tag-ls.el" "cedet/semantic/tag-write.el" +;;;;;; "cedet/semantic/lex-spp.el" "cedet/semantic/lex.el" "cedet/semantic/loaddefs.el" +;;;;;; "cedet/semantic/mru-bookmark.el" "cedet/semantic/sb.el" "cedet/semantic/scope.el" +;;;;;; "cedet/semantic/senator.el" "cedet/semantic/sort.el" "cedet/semantic/symref.el" +;;;;;; "cedet/semantic/symref/cscope.el" "cedet/semantic/symref/filter.el" +;;;;;; "cedet/semantic/symref/global.el" "cedet/semantic/symref/grep.el" +;;;;;; "cedet/semantic/symref/idutils.el" "cedet/semantic/symref/list.el" +;;;;;; "cedet/semantic/tag-file.el" "cedet/semantic/tag-ls.el" "cedet/semantic/tag-write.el" ;;;;;; "cedet/semantic/tag.el" "cedet/semantic/texi.el" "cedet/semantic/util-modes.el" ;;;;;; "cedet/semantic/util.el" "cedet/semantic/wisent.el" "cedet/semantic/wisent/comp.el" ;;;;;; "cedet/semantic/wisent/java-tags.el" "cedet/semantic/wisent/javascript.el" @@ -32467,16 +32463,16 @@ Zone out, completely. ;;;;;; "cedet/srecode/el.el" "cedet/srecode/expandproto.el" "cedet/srecode/extract.el" ;;;;;; "cedet/srecode/fields.el" "cedet/srecode/filters.el" "cedet/srecode/find.el" ;;;;;; "cedet/srecode/getset.el" "cedet/srecode/insert.el" "cedet/srecode/java.el" -;;;;;; "cedet/srecode/map.el" "cedet/srecode/mode.el" "cedet/srecode/semantic.el" -;;;;;; "cedet/srecode/srt-wy.el" "cedet/srecode/srt.el" "cedet/srecode/table.el" -;;;;;; "cedet/srecode/template.el" "cedet/srecode/texi.el" "cus-dep.el" -;;;;;; "dframe.el" "dired-aux.el" "dired-loaddefs.el" "dired-x.el" +;;;;;; "cedet/srecode/loaddefs.el" "cedet/srecode/map.el" "cedet/srecode/mode.el" +;;;;;; "cedet/srecode/semantic.el" "cedet/srecode/srt-wy.el" "cedet/srecode/srt.el" +;;;;;; "cedet/srecode/table.el" "cedet/srecode/template.el" "cedet/srecode/texi.el" +;;;;;; "cus-dep.el" "cus-load.el" "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-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-loaddefs.el" "emacs-lisp/eieio-opt.el" +;;;;;; "emacs-lisp/cl-extra.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" @@ -32492,32 +32488,32 @@ Zone out, completely. ;;;;;; "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-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" "htmlfontify-loaddefs.el" "ibuf-ext.el" "ibuffer-loaddefs.el" -;;;;;; "international/charscript.el" "international/fontset.el" -;;;;;; "international/iso-ascii.el" "international/ja-dic-cnv.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" "finder-inf.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/charprop.el" "international/charscript.el" +;;;;;; "international/fontset.el" "international/iso-ascii.el" "international/ja-dic-cnv.el" ;;;;;; "international/ja-dic-utl.el" "international/ogonek.el" "international/uni-bidi.el" ;;;;;; "international/uni-brackets.el" "international/uni-category.el" ;;;;;; "international/uni-combining.el" "international/uni-comment.el" @@ -32527,28 +32523,34 @@ Zone out, completely. ;;;;;; "international/uni-numeric.el" "international/uni-old-name.el" ;;;;;; "international/uni-titlecase.el" "international/uni-uppercase.el" ;;;;;; "kermit.el" "language/hanja-util.el" "language/thai-word.el" -;;;;;; "ldefs-boot.el" "leim/ja-dic/ja-dic.el" "leim/quail/arabic.el" -;;;;;; "leim/quail/croatian.el" "leim/quail/cyril-jis.el" "leim/quail/cyrillic.el" -;;;;;; "leim/quail/czech.el" "leim/quail/ethiopic.el" "leim/quail/georgian.el" -;;;;;; "leim/quail/greek.el" "leim/quail/hanja-jis.el" "leim/quail/hanja.el" -;;;;;; "leim/quail/hanja3.el" "leim/quail/hebrew.el" "leim/quail/indian.el" -;;;;;; "leim/quail/ipa-praat.el" "leim/quail/ipa.el" "leim/quail/japanese.el" -;;;;;; "leim/quail/lao.el" "leim/quail/latin-alt.el" "leim/quail/latin-ltx.el" -;;;;;; "leim/quail/latin-post.el" "leim/quail/latin-pre.el" "leim/quail/lrt.el" -;;;;;; "leim/quail/persian.el" "leim/quail/programmer-dvorak.el" -;;;;;; "leim/quail/py-punct.el" "leim/quail/pypunct-b5.el" "leim/quail/rfc1345.el" -;;;;;; "leim/quail/sgml-input.el" "leim/quail/sisheng.el" "leim/quail/slovak.el" -;;;;;; "leim/quail/symbol-ksc.el" "leim/quail/tamil-dvorak.el" "leim/quail/thai.el" -;;;;;; "leim/quail/tibetan.el" "leim/quail/viqr.el" "leim/quail/vntelex.el" +;;;;;; "ldefs-boot.el" "leim/ja-dic/ja-dic.el" "leim/quail/4Corner.el" +;;;;;; "leim/quail/ARRAY30.el" "leim/quail/CCDOSPY.el" "leim/quail/CTLau-b5.el" +;;;;;; "leim/quail/CTLau.el" "leim/quail/ECDICT.el" "leim/quail/ETZY.el" +;;;;;; "leim/quail/PY-b5.el" "leim/quail/PY.el" "leim/quail/Punct-b5.el" +;;;;;; "leim/quail/Punct.el" "leim/quail/QJ-b5.el" "leim/quail/QJ.el" +;;;;;; "leim/quail/SW.el" "leim/quail/TONEPY.el" "leim/quail/ZIRANMA.el" +;;;;;; "leim/quail/ZOZY.el" "leim/quail/arabic.el" "leim/quail/croatian.el" +;;;;;; "leim/quail/cyril-jis.el" "leim/quail/cyrillic.el" "leim/quail/czech.el" +;;;;;; "leim/quail/ethiopic.el" "leim/quail/georgian.el" "leim/quail/greek.el" +;;;;;; "leim/quail/hanja-jis.el" "leim/quail/hanja.el" "leim/quail/hanja3.el" +;;;;;; "leim/quail/hebrew.el" "leim/quail/indian.el" "leim/quail/ipa-praat.el" +;;;;;; "leim/quail/ipa.el" "leim/quail/japanese.el" "leim/quail/lao.el" +;;;;;; "leim/quail/latin-alt.el" "leim/quail/latin-ltx.el" "leim/quail/latin-post.el" +;;;;;; "leim/quail/latin-pre.el" "leim/quail/lrt.el" "leim/quail/persian.el" +;;;;;; "leim/quail/programmer-dvorak.el" "leim/quail/py-punct.el" +;;;;;; "leim/quail/pypunct-b5.el" "leim/quail/quick-b5.el" "leim/quail/quick-cns.el" +;;;;;; "leim/quail/rfc1345.el" "leim/quail/sgml-input.el" "leim/quail/sisheng.el" +;;;;;; "leim/quail/slovak.el" "leim/quail/symbol-ksc.el" "leim/quail/tamil-dvorak.el" +;;;;;; "leim/quail/thai.el" "leim/quail/tibetan.el" "leim/quail/tsang-b5.el" +;;;;;; "leim/quail/tsang-cns.el" "leim/quail/viqr.el" "leim/quail/vntelex.el" ;;;;;; "leim/quail/vnvni.el" "leim/quail/welsh.el" "loadup.el" "mail/blessmail.el" ;;;;;; "mail/mailheader.el" "mail/mspools.el" "mail/rfc2368.el" -;;;;;; "mail/rfc822.el" "mail/rmail-loaddefs.el" "mail/rmail-spam-filter.el" -;;;;;; "mail/rmailedit.el" "mail/rmailkwd.el" "mail/rmailmm.el" -;;;;;; "mail/rmailmsc.el" "mail/rmailsort.el" "mail/rmailsum.el" -;;;;;; "mail/undigest.el" "mh-e/mh-acros.el" "mh-e/mh-alias.el" -;;;;;; "mh-e/mh-buffers.el" "mh-e/mh-compat.el" "mh-e/mh-funcs.el" -;;;;;; "mh-e/mh-gnus.el" "mh-e/mh-identity.el" "mh-e/mh-inc.el" -;;;;;; "mh-e/mh-junk.el" "mh-e/mh-letter.el" "mh-e/mh-limit.el" +;;;;;; "mail/rfc822.el" "mail/rmail-spam-filter.el" "mail/rmailedit.el" +;;;;;; "mail/rmailkwd.el" "mail/rmailmm.el" "mail/rmailmsc.el" "mail/rmailsort.el" +;;;;;; "mail/rmailsum.el" "mail/undigest.el" "mh-e/mh-acros.el" +;;;;;; "mh-e/mh-alias.el" "mh-e/mh-buffers.el" "mh-e/mh-compat.el" +;;;;;; "mh-e/mh-funcs.el" "mh-e/mh-gnus.el" "mh-e/mh-identity.el" +;;;;;; "mh-e/mh-inc.el" "mh-e/mh-junk.el" "mh-e/mh-letter.el" "mh-e/mh-limit.el" ;;;;;; "mh-e/mh-loaddefs.el" "mh-e/mh-mime.el" "mh-e/mh-print.el" ;;;;;; "mh-e/mh-scan.el" "mh-e/mh-search.el" "mh-e/mh-seq.el" "mh-e/mh-show.el" ;;;;;; "mh-e/mh-speed.el" "mh-e/mh-thread.el" "mh-e/mh-tool-bar.el" @@ -32587,39 +32589,37 @@ Zone out, completely. ;;;;;; "org/org-eshell.el" "org/org-faces.el" "org/org-feed.el" ;;;;;; "org/org-footnote.el" "org/org-gnus.el" "org/org-habit.el" ;;;;;; "org/org-id.el" "org/org-indent.el" "org/org-info.el" "org/org-inlinetask.el" -;;;;;; "org/org-install.el" "org/org-irc.el" "org/org-list.el" "org/org-macro.el" -;;;;;; "org/org-mhe.el" "org/org-mobile.el" "org/org-mouse.el" "org/org-pcomplete.el" -;;;;;; "org/org-plot.el" "org/org-protocol.el" "org/org-rmail.el" -;;;;;; "org/org-src.el" "org/org-table.el" "org/org-timer.el" "org/org-w3m.el" -;;;;;; "org/ox-ascii.el" "org/ox-beamer.el" "org/ox-html.el" "org/ox-icalendar.el" -;;;;;; "org/ox-latex.el" "org/ox-man.el" "org/ox-md.el" "org/ox-odt.el" -;;;;;; "org/ox-org.el" "org/ox-publish.el" "org/ox-texinfo.el" "org/ox.el" -;;;;;; "play/gametree.el" "progmodes/ada-prj.el" "progmodes/cc-align.el" +;;;;;; "org/org-install.el" "org/org-irc.el" "org/org-list.el" "org/org-loaddefs.el" +;;;;;; "org/org-macro.el" "org/org-mhe.el" "org/org-mobile.el" "org/org-mouse.el" +;;;;;; "org/org-pcomplete.el" "org/org-plot.el" "org/org-protocol.el" +;;;;;; "org/org-rmail.el" "org/org-src.el" "org/org-table.el" "org/org-timer.el" +;;;;;; "org/org-w3m.el" "org/ox-ascii.el" "org/ox-beamer.el" "org/ox-html.el" +;;;;;; "org/ox-icalendar.el" "org/ox-latex.el" "org/ox-man.el" "org/ox-md.el" +;;;;;; "org/ox-odt.el" "org/ox-org.el" "org/ox-publish.el" "org/ox-texinfo.el" +;;;;;; "org/ox.el" "play/gametree.el" "progmodes/ada-prj.el" "progmodes/cc-align.el" ;;;;;; "progmodes/cc-awk.el" "progmodes/cc-bytecomp.el" "progmodes/cc-cmds.el" ;;;;;; "progmodes/cc-defs.el" "progmodes/cc-fonts.el" "progmodes/cc-langs.el" ;;;;;; "progmodes/cc-menus.el" "progmodes/ebnf-abn.el" "progmodes/ebnf-bnf.el" ;;;;;; "progmodes/ebnf-dtd.el" "progmodes/ebnf-ebx.el" "progmodes/ebnf-iso.el" ;;;;;; "progmodes/ebnf-otz.el" "progmodes/ebnf-yac.el" "progmodes/idlw-complete-structtag.el" ;;;;;; "progmodes/idlw-help.el" "progmodes/idlw-toolbar.el" "progmodes/mantemp.el" -;;;;;; "progmodes/xscheme.el" "ps-def.el" "ps-mule.el" "ps-print-loaddefs.el" -;;;;;; "ps-samp.el" "sb-image.el" "scroll-bar.el" "soundex.el" "subdirs.el" -;;;;;; "tempo.el" "textmodes/bib-mode.el" "textmodes/makeinfo.el" -;;;;;; "textmodes/page-ext.el" "textmodes/refbib.el" "textmodes/refer.el" -;;;;;; "textmodes/reftex-auc.el" "textmodes/reftex-cite.el" "textmodes/reftex-dcr.el" -;;;;;; "textmodes/reftex-global.el" "textmodes/reftex-index.el" -;;;;;; "textmodes/reftex-loaddefs.el" "textmodes/reftex-parse.el" -;;;;;; "textmodes/reftex-ref.el" "textmodes/reftex-sel.el" "textmodes/reftex-toc.el" -;;;;;; "textmodes/texnfo-upd.el" "timezone.el" "tooltip.el" "tree-widget.el" -;;;;;; "url/url-about.el" "url/url-cookie.el" "url/url-dired.el" -;;;;;; "url/url-domsuf.el" "url/url-expand.el" "url/url-ftp.el" -;;;;;; "url/url-future.el" "url/url-history.el" "url/url-imap.el" -;;;;;; "url/url-methods.el" "url/url-nfs.el" "url/url-proxy.el" -;;;;;; "url/url-vars.el" "vc/ediff-diff.el" "vc/ediff-init.el" "vc/ediff-merg.el" -;;;;;; "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" -;;;;;; "vc/vc-filewise.el" "vcursor.el" "vt-control.el" "vt100-led.el" -;;;;;; "w32-fns.el" "w32-vars.el" "x-dnd.el") (22231 5798 73781 -;;;;;; 185000)) +;;;;;; "progmodes/xscheme.el" "ps-def.el" "ps-mule.el" "ps-samp.el" +;;;;;; "sb-image.el" "scroll-bar.el" "soundex.el" "subdirs.el" "tempo.el" +;;;;;; "textmodes/bib-mode.el" "textmodes/makeinfo.el" "textmodes/page-ext.el" +;;;;;; "textmodes/refbib.el" "textmodes/refer.el" "textmodes/reftex-auc.el" +;;;;;; "textmodes/reftex-cite.el" "textmodes/reftex-dcr.el" "textmodes/reftex-global.el" +;;;;;; "textmodes/reftex-index.el" "textmodes/reftex-parse.el" "textmodes/reftex-ref.el" +;;;;;; "textmodes/reftex-sel.el" "textmodes/reftex-toc.el" "textmodes/texnfo-upd.el" +;;;;;; "timezone.el" "tooltip.el" "tree-widget.el" "url/url-about.el" +;;;;;; "url/url-cookie.el" "url/url-dired.el" "url/url-domsuf.el" +;;;;;; "url/url-expand.el" "url/url-ftp.el" "url/url-future.el" +;;;;;; "url/url-history.el" "url/url-imap.el" "url/url-methods.el" +;;;;;; "url/url-nfs.el" "url/url-proxy.el" "url/url-vars.el" "vc/ediff-diff.el" +;;;;;; "vc/ediff-init.el" "vc/ediff-merg.el" "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" "vc/vc-filewise.el" "vcursor.el" +;;;;;; "vt-control.el" "vt100-led.el" "w32-fns.el" "w32-vars.el" +;;;;;; "x-dnd.el") (22298 22322 823955 245000)) ;;;*** commit 78f9af707f711121ba24d8dce88d6757683a4dfe Author: Nicolas Petton Date: Fri Apr 22 18:54:52 2016 +0200 ; ChangeLog fixes * ChangeLog.2: * lisp/ChangeLog.17: Fix ChangeLog entries diff --git a/ChangeLog.2 b/ChangeLog.2 index 2197c41..eb336c7 100644 --- a/ChangeLog.2 +++ b/ChangeLog.2 @@ -10064,7 +10064,7 @@ * lisp/net/soap-inspect.el: Remove version header. - * soap-client.el, soap-inspect.el, jira2.el: Fix first line header + * lisp/net/soap-client.el, lisp/net/soap-inspect.el: Fix first line header format. 2015-11-11 Alan Mackenzie diff --git a/lisp/ChangeLog.17 b/lisp/ChangeLog.17 index ee03661..29081d3 100644 --- a/lisp/ChangeLog.17 +++ b/lisp/ChangeLog.17 @@ -6835,7 +6835,7 @@ console as well (bug#18629). * w32-common-fns.el: Remove. * loadup.el: Don't load w32-common-fns.el. - * w32-fns.elc: Don't require w32-common-fns. + * w32-fns.el: Don't require w32-common-fns. * icomplete.el: Move Iswitchb autoload here. Much simpler. * obsolete/iswitchb.el (iswitchb-mode): Use normal autoload cookie. commit 162e549c4e1b2461bd5e86f9bd062da036c230fe Author: Nicolas Petton Date: Fri Apr 22 18:50:26 2016 +0200 * admin/authors.el (authors-ignored-files): Additions. diff --git a/admin/authors.el b/admin/authors.el index ecdd5ca..f1aa2fa 100644 --- a/admin/authors.el +++ b/admin/authors.el @@ -279,7 +279,7 @@ Changes to files matching one of the regexps in this list are not listed.") "ChangeLog.nextstep" "Emacs.clr" "spec.txt" "gfdl.1" "texi/Makefile.in" - "lwlib/autodeps.mk" + "autodeps.mk" "oldXMenu/autodeps.mk" "src/autodeps.mk" "Imakefile" "icons/sink.ico" "aixcc.lex" @@ -371,7 +371,7 @@ Changes to files matching one of the regexps in this list are not listed.") "lib/qset-acl.c" "lib/qcopy-acl.c" "lib/file-has-acl.c" ;; files from old MS Windows build procedures "makefile.w32-in" - "admin/unidata/makefile.w32-in" + "unidata/makefile.w32-in" "lib/makefile.w32-in" "leim/makefile.w32-in" "src/makefile.w32-in" @@ -691,7 +691,8 @@ Changes to files in this list are not listed.") "mh-exec.el" "mh-init.el" "mh-customize.el" "net/zone-mode.el" "xesam.el" "term/mac-win.el" "sup-mouse.el" - "term/vt102.el" "term/vt201.el" "term/vt220.el" "term/vt300.el" + "term/apollo.el" + "term/vt102.el" "term/vt125.el" "term/vt201.el" "term/vt220.el" "term/vt300.el" "term/vt320.el" "term/vt400.el" "term/vt420.el" "url-https.el" "org-mac-message.el" "org-mew.el" "org-w3m.el" "org-vm.el" "org-wl.el" commit 2b31a0c21e51d39a82572a32d2d31b5a2aa174a3 Author: Martin Rudalics Date: Fri Apr 22 11:56:03 2016 +0200 In x_set_window_size restore do_pending_window_change calls * src/xterm.c (x_set_window_size): * src/w32term.c (x_set_window_size): Restore do_pending_window_change calls after their stupid removal on 2015-08-31. diff --git a/src/w32term.c b/src/w32term.c index 62ad4eb..51743f8 100644 --- a/src/w32term.c +++ b/src/w32term.c @@ -6231,6 +6231,8 @@ x_set_window_size (struct frame *f, bool change_gravity, } unblock_input (); + + do_pending_window_change (false); } /* Mouse warping. */ diff --git a/src/xterm.c b/src/xterm.c index ba9bf50..2f8e077 100644 --- a/src/xterm.c +++ b/src/xterm.c @@ -10746,6 +10746,8 @@ x_set_window_size (struct frame *f, bool change_gravity, cancel_mouse_face (f); unblock_input (); + + do_pending_window_change (false); } /* Move the mouse to position pixel PIX_X, PIX_Y relative to frame F. */ commit 401857eda39c57bd59a1e3a1dee57fd6420eeab5 Author: Ilya Zakharevich Date: Thu Apr 21 19:08:16 2016 +0300 Fix Alt-modified keys on some European MS-Windows keyboards * src/w32fns.c (deliver_wm_chars): If the reported character is ASCII, AND Meta modifier is a candidate, behave as if Meta is present, i.e. fall back to the legacy code. (Bug#23251) diff --git a/src/w32fns.c b/src/w32fns.c index b9002ba..c57b5a1 100644 --- a/src/w32fns.c +++ b/src/w32fns.c @@ -3154,9 +3154,45 @@ deliver_wm_chars (int do_translate, HWND hwnd, UINT msg, UINT wParam, SHORT r = VkKeyScanW (*b), bitmap = 0x1FF; FPRINTF_WM_CHARS((stderr, "VkKeyScanW %#06x %#04x\n", (int)r, - wParam)); + wParam)); if ((r & 0xFF) == wParam) bitmap = r>>8; /* *b is reachable via simple interface */ + else + { + /* VkKeyScanW() (essentially) returns the FIRST key with + the specified character; so here the pressed key is the + SECONDARY key producing the character. + + Essentially, we have no information about the "role" of + modifiers on this key: which contribute into the + produced character (so "are consumed"), and which are + "extra" (must attache to bindable events). + + The default above would consume ALL modifiers, so the + character is reported "as is". However, on many layouts + the ordering of the keys (in the layout table) is not + thought out well, so the "secondary" keys are often those + which the users would prefer to use with Alt-CHAR. + (Moreover - with e.g. Czech-QWERTY - the ASCII + punctuation is accessible from two equally [nu]preferable + AltGr-keys.) + + SO: Heuristic: if the reported char is ASCII, AND Meta + modifier is a candidate, behave as if Meta is present + (fallback to the legacy branch; bug#23251). + + (This would break layouts + - delivering ASCII characters + - on SECONDARY keys + - with not Shift/AltGr-like modifier combinations. + All 3 conditions together must be pretty exotic + cases - and a workaround exists: use "primary" keys!) */ + if (*b < 0x80 + && (wmsg.dwModifiers + & (alt_modifier | meta_modifier + | super_modifier | hyper_modifier))) + return 0; + } if (*type_CtrlAlt == 'a') /* Simple Alt seen */ { if ((bitmap & ~1) == 0) /* 1: KBDSHIFT */ commit a77cf24ada2f89194c0ac64aae27bcdf7021e697 Author: Eli Zaretskii Date: Thu Apr 21 05:27:58 2016 +0300 Document 'help-go-forward' * doc/emacs/help.texi (Help Mode): Document and index 'help-go-forward'. (Bug#23323) diff --git a/doc/emacs/help.texi b/doc/emacs/help.texi index ed813ff..172d058 100644 --- a/doc/emacs/help.texi +++ b/doc/emacs/help.texi @@ -410,6 +410,8 @@ Follow a hyperlink that you click on. @item C-c C-c Show all documentation about the symbol at point (@code{help-follow-symbol}). +@item C-c C-f +Go forward to the next help topic (@code{help-go-forward}). @item C-c C-b Go back to the previous help topic (@code{help-go-back}). @end table @@ -417,15 +419,18 @@ Go back to the previous help topic (@code{help-go-back}). @cindex hyperlink @findex help-follow @findex help-go-back +@findex help-go-forward @kindex RET @r{(Help mode)} @kindex C-c C-b @r{(Help mode)} +@kindex C-c C-f @r{(Help mode)} When a function name, variable name, or face name (@pxref{Faces}) appears in the documentation in the help buffer, it is normally an underlined @dfn{hyperlink}. To view the associated documentation, move point there and type @key{RET} (@code{help-follow}), or click on the hyperlink with @kbd{Mouse-1} or @kbd{Mouse-2}. Doing so replaces the contents of the help buffer; to retrace your steps, type @kbd{C-c -C-b} (@code{help-go-back}). +C-b} (@code{help-go-back}). While retracing your steps, you can go +forward by using @kbd{C-c C-b} (@code{help-go-forward}). @cindex URL, viewing in help @cindex help, viewing web pages commit 1ba947f275b9675e4c2802cfca52468ff84cfc5e Author: Eli Zaretskii Date: Thu Apr 21 05:08:29 2016 +0300 Revert "Allow to customize names of executables used by grep.el" This reverts commit c93ae7a1e5a94541189a8f36984014344d561ffc. diff --git a/lisp/progmodes/grep.el b/lisp/progmodes/grep.el index 5d1b68a..f04a722 100644 --- a/lisp/progmodes/grep.el +++ b/lisp/progmodes/grep.el @@ -411,34 +411,21 @@ Notice that using \\[next-error] or \\[compile-goto-error] modifies This gets tacked on the end of the generated expressions.") ;;;###autoload -(defcustom grep-program (purecopy "grep") +(defvar grep-program (purecopy "grep") "The default grep program for `grep-command' and `grep-find-command'. -This variable's value takes effect when `grep-compute-defaults' is called." - :type 'string - :version "25.1" - :group 'grep) +This variable's value takes effect when `grep-compute-defaults' is called.") ;;;###autoload -(defcustom grep-find-program (purecopy "find") +(defvar find-program (purecopy "find") "The default find program. This is used by commands like `grep-find-command', `find-dired' -and others." - :type 'string - :version "25.1" - :group 'grep) - -(define-obsolete-variable-alias 'find-program 'grep-find-program "25.1") +and others.") ;;;###autoload -(defcustom grep-xargs-program (purecopy "xargs") +(defvar xargs-program (purecopy "xargs") "The default xargs program for `grep-find-command'. See `grep-find-use-xargs'. -This variable's value takes effect when `grep-compute-defaults' is called." - :type 'string - :version "25.1" - :group 'grep) - -(define-obsolete-variable-alias 'xargs-program 'grep-xargs-program "25.1") +This variable's value takes effect when `grep-compute-defaults' is called.") ;;;###autoload (defvar grep-find-use-xargs nil @@ -608,14 +595,13 @@ This function is called from `compilation-filter-hook'." (unless grep-find-use-xargs (setq grep-find-use-xargs (cond - ((grep-probe grep-find-program + ((grep-probe find-program `(nil nil nil ,null-device "-exec" "echo" "{}" "+")) 'exec-plus) ((and - (grep-probe grep-find-program - `(nil nil nil ,null-device "-print0")) - (grep-probe grep-xargs-program `(nil nil nil "-0" "echo"))) + (grep-probe find-program `(nil nil nil ,null-device "-print0")) + (grep-probe xargs-program `(nil nil nil "-0" "echo"))) 'gnu) (t 'exec)))) @@ -626,11 +612,10 @@ This function is called from `compilation-filter-hook'." ;; after the pipe symbol be quoted if they use ;; forward slashes as directory separators. (format "%s . -type f -print0 | \"%s\" -0 %s" - grep-find-program grep-xargs-program - grep-command)) + find-program xargs-program grep-command)) ((memq grep-find-use-xargs '(exec exec-plus)) (let ((cmd0 (format "%s . -type f -exec %s" - grep-find-program grep-command)) + find-program grep-command)) (null (if grep-use-null-device (format "%s " null-device) ""))) @@ -642,8 +627,7 @@ This function is called from `compilation-filter-hook'." (1+ (length cmd0))))) (t (format "%s . -type f -print | \"%s\" %s" - grep-find-program grep-xargs-program - grep-command))))) + find-program xargs-program grep-command))))) (unless grep-find-template (setq grep-find-template (let ((gcmd (format "%s %s " @@ -653,17 +637,17 @@ This function is called from `compilation-filter-hook'." ""))) (cond ((eq grep-find-use-xargs 'gnu) (format "%s -type f -print0 | \"%s\" -0 %s" - grep-find-program grep-xargs-program gcmd)) + find-program xargs-program gcmd)) ((eq grep-find-use-xargs 'exec) (format "%s -type f -exec %s {} %s%s" - grep-find-program gcmd null + find-program gcmd null (shell-quote-argument ";"))) ((eq grep-find-use-xargs 'exec-plus) (format "%s -type f -exec %s %s{} +" - grep-find-program gcmd null)) + find-program gcmd null)) (t (format "%s -type f -print | \"%s\" %s" - grep-find-program grep-xargs-program gcmd)))))))) + find-program xargs-program gcmd)))))))) ;; Save defaults for this host. (setq grep-host-defaults-alist commit 570e0fa357eabb76babf87343d5b9c8ae13e9e53 Author: Eli Zaretskii Date: Thu Apr 21 05:07:27 2016 +0300 Revert "Don't use 'find-program'" This reverts commit 10597c977d55cbf9304b51c3b364ce58199384a0. diff --git a/lisp/progmodes/project.el b/lisp/progmodes/project.el index 82059c9..9c8a88c 100644 --- a/lisp/progmodes/project.el +++ b/lisp/progmodes/project.el @@ -162,7 +162,7 @@ end it with `/'. DIR must be one of `project-roots' or DIRS is a list of absolute directories; it should be some subset of the project roots and external roots. -The default implementation uses `grep-find-program'. PROJECT is used +The default implementation uses `find-program'. PROJECT is used to find the list of ignores for each directory." ;; FIXME: Uniquely abbreviate the roots? (require 'xref) @@ -171,7 +171,7 @@ to find the list of ignores for each directory." (lambda (dir) (let ((command (format "%s %s %s -type f -print0" - grep-find-program + find-program dir (xref--find-ignores-arguments (project-ignores project dir) commit 645f4ef13e6658e570cb6366ee3f2bc2dda8cce3 Author: Eli Zaretskii Date: Thu Apr 21 05:06:26 2016 +0300 Revert "Use 'grep-find-program' in check-declare.el" This reverts commit 33bef6e90bfd20609d044b8a076c1570c627684a. diff --git a/lisp/emacs-lisp/check-declare.el b/lisp/emacs-lisp/check-declare.el index b8a00b3..b6fa054 100644 --- a/lisp/emacs-lisp/check-declare.el +++ b/lisp/emacs-lisp/check-declare.el @@ -339,7 +339,7 @@ Returns non-nil if any false statements are found." errlist files) (message "%s" m) (message "%s" m2) - (setq files (process-lines grep-find-program root + (setq files (process-lines find-program root "-name" "*.el" "-exec" grep-program "-l" "^[ \t]*(declare-function" "{}" ";")) commit aa03257cb341691562101fcae8a6d6d54d420a99 Author: Eli Zaretskii Date: Wed Apr 20 17:52:25 2016 +0300 Clarify documentation of 'dired-mark-files-containing-regexp' * doc/emacs/dired.texi (Marks vs Flags): Clarify that for files visited in buffers, 'dired-mark-files-containing-regexp' searches the buffer rather than the file on disk. (Bug#22694) * lisp/dired.el (dired-mark-files-containing-regexp): Clarify that for files visited in buffers, 'dired-mark-files-containing-regexp' searches the buffer rather than the file on disk. (Bug#22694) diff --git a/doc/emacs/dired.texi b/doc/emacs/dired.texi index 8a72805..ea48a26 100644 --- a/doc/emacs/dired.texi +++ b/doc/emacs/dired.texi @@ -550,7 +550,13 @@ Mark (with @samp{*}) all files whose @emph{contents} contain a match for the regular expression @var{regexp} (@code{dired-mark-files-containing-regexp}). This command is like @kbd{% m}, except that it searches the file contents instead of the file -name. +name. Note that if a file is visited in an Emacs buffer, this command +will look in the buffer without revisiting the file, so the results +might be inconsistent with the file on disk if its contents has changed +since it was last visited. If you don't want this, you may wish +reverting the files you have visited in your buffers, or turning on +the @code{auto-revert} mode in those buffers, before invoking this +command. @xref{Reverting}. @item C-/ @itemx C-x u diff --git a/lisp/dired.el b/lisp/dired.el index 5741872..f1adcb4 100644 --- a/lisp/dired.el +++ b/lisp/dired.el @@ -3353,7 +3353,12 @@ object files--just `.o' will mark more than you might think." (defun dired-mark-files-containing-regexp (regexp &optional marker-char) "Mark all files with contents containing REGEXP for use in later commands. A prefix argument means to unmark them instead. -`.' and `..' are never marked." +`.' and `..' are never marked. + +Note that if a file is visited in an Emacs buffer, this command will +look in the buffer without revisiting the file, so the results might +be inconsistent with the file on disk if its contents has changed +since it was last visited." (interactive (list (read-regexp (concat (if current-prefix-arg "Unmark" "Mark") " files containing (regexp): ") commit ce0d8c7f2d8187942a8b45c3a71c22c5f30fa37d Author: Eli Zaretskii Date: Tue Apr 19 18:06:52 2016 +0300 Make tmm-menubar work in correct order again * lisp/tmm.el (tmm-prompt): Don't reverse 'tmm-km-list' right at the beginning; instead, pass a reversed copy to 'tmm--completion-table'. (Bug#23309) (tmm-menubar): Fix an off-by-one error in determining the menu item when the function is called with a non-nil 'x-position' argument. diff --git a/lisp/tmm.el b/lisp/tmm.el index 714de92..d1a08ab 100644 --- a/lisp/tmm.el +++ b/lisp/tmm.el @@ -72,13 +72,15 @@ to invoke `tmm-menubar' instead, customize the variable (tmm-get-keybind [menu-bar])) (setq menu-bar `(keymap ,@(nreverse menu-bar) ,@(nreverse menu-end))) (if x-position - (let ((column 0)) + (let ((column 0) + prev-key) (catch 'done (map-keymap (lambda (key binding) (when (> column x-position) - (setq menu-bar-item key) + (setq menu-bar-item prev-key) (throw 'done nil)) + (setq prev-key key) (pcase binding ((or `(,(and (pred stringp) name) . ,_) ;Simple menu item. `(menu-item ,name ,_cmd ;Extended menu item. @@ -187,7 +189,6 @@ Its value should be an event that has a binding in MENU." ((vectorp elt) (dotimes (i (length elt)) (tmm-get-keymap (cons i (aref elt i)) not-menu)))))) - (setq tmm-km-list (nreverse tmm-km-list)) ;; Choose an element of tmm-km-list; put it in choice. (if (and not-menu (= 1 (length tmm-km-list))) ;; If this is the top-level of an x-popup-menu menu, @@ -239,10 +240,17 @@ Its value should be an event that has a binding in MENU." (if default-item (car (nth index-of-default tmm-km-list)) (minibuffer-with-setup-hook #'tmm-add-prompt + ;; tmm-km-list is reversed, because history + ;; needs it in LIFO order. But completion + ;; needs it in non-reverse order, so that the + ;; menu items are displayed as completion + ;; candidates in the order they are shown on + ;; the menu bar. So pass completing-read the + ;; reversed copy of the list. (completing-read (concat gl-str " (up/down to change, PgUp to menu): ") - (tmm--completion-table tmm-km-list) nil t nil + (tmm--completion-table (reverse tmm-km-list)) nil t nil (cons 'tmm--history (- (* 2 history-len) index-of-default)))))))) (setq choice (cdr (assoc out tmm-km-list))) commit b8d5a8fd1a16a30ac42883bfea3f25ecef1e7fde Author: Dmitry Gutov Date: Tue Apr 19 01:20:59 2016 +0300 Remove the Meta-CVS VC backend * lisp/obsolete/vc-mcvs.el: Remove the file (bug#20475). * lisp/vc/log-view.el (log-view-extract-comment): Remove the MCVS reference. * doc/misc/efaq-w32.texi (Version control): Same. diff --git a/doc/misc/efaq-w32.texi b/doc/misc/efaq-w32.texi index fe65da6..28c09f6 100644 --- a/doc/misc/efaq-w32.texi +++ b/doc/misc/efaq-w32.texi @@ -2061,7 +2061,6 @@ Jonathan Arnold has written an @cindex mercurial, version control integration with Emacs @cindex hg, version control integration with Emacs @cindex monotone, version control integration with Emacs -@cindex mcvs, version control integration with Emacs If you are using a graphical revision control tool already, check if it comes with command-line tools. Many such GUI tools are just diff --git a/etc/NEWS b/etc/NEWS index bae42af..8e78b72 100644 --- a/etc/NEWS +++ b/etc/NEWS @@ -1020,6 +1020,9 @@ customization group. "Copyright-paperwork-exempt: yes". Set 'log-edit-rewrite-tiny-change' nil to disable this. ++++ +*** vc-mcvs.el has been removed. + --- ** VHDL mode now supports VHDL'08. diff --git a/lisp/obsolete/vc-mcvs.el b/lisp/obsolete/vc-mcvs.el deleted file mode 100644 index 4214e4d..0000000 --- a/lisp/obsolete/vc-mcvs.el +++ /dev/null @@ -1,593 +0,0 @@ -;;; vc-mcvs.el --- VC backend for the Meta-CVS version-control system - -;; Copyright (C) 2003-2016 Free Software Foundation, Inc. - -;; Author: FSF (see vc.el for full credits) -;; Maintainer: None -;; Obsolete-since: 23.1 - -;; This file is part of GNU Emacs. - -;; GNU Emacs is free software: you can redistribute it and/or modify -;; it under the terms of the GNU General Public License as published by -;; the Free Software Foundation, either version 3 of the License, or -;; (at your option) any later version. - -;; GNU Emacs is distributed in the hope that it will be useful, -;; but WITHOUT ANY WARRANTY; without even the implied warranty of -;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -;; GNU General Public License for more details. - -;; You should have received a copy of the GNU General Public License -;; along with GNU Emacs. If not, see . - -;;; Commentary: - -;; ********** READ THIS! ********** -;; -;; This file apparently does not work with the new (as of Emacs 23) -;; VC code. Use at your own risk. Please contact emacs-devel if you -;; can maintain this file and update it to work correctly. -;; -;; ********** READ THIS! ********** - -;; The home page of the Meta-CVS version control system is at -;; -;; http://users.footprints.net/~kaz/mcvs.html -;; -;; This is derived from vc-cvs.el as follows: -;; - cp vc-cvs.el vc-mcvs.el -;; - Replace CVS/ with MCVS/CVS/ -;; - Replace 'CVS with 'MCVS -;; - Replace -cvs- with -mcvs- -;; - Replace most of the rest of CVS to Meta-CVS -;; -;; Then of course started the hacking. Only a small part of the code -;; has been touched and not much more than that was tested, so if -;; you bump into a bug, don't be surprised: just report it to me. -;; -;; What has been partly tested: -;; - C-x v v to start editing a file that was checked out with CVSREAD on. -;; - C-x v v to commit a file -;; - C-x v = -;; - C-x v l -;; - C-x v i -;; - C-x v g -;; - M-x vc-rename-file RET - -;;; Bugs: - -;; - Retrieving tags doesn't filter `cvs update' output and thus -;; parses bogus filenames. Don't know if it harms. - -;;; Code: - -(eval-when-compile (require 'vc)) -(require 'vc-cvs) - -;;; -;;; Customization options -;;; - -(defcustom vc-mcvs-global-switches nil - "Global switches to pass to any Meta-CVS command." - :type '(choice (const :tag "None" nil) - (string :tag "Argument String") - (repeat :tag "Argument List" :value ("") string)) - :version "22.1" - :group 'vc) - -(defcustom vc-mcvs-register-switches nil - "Switches for registering a file into Meta-CVS. -A string or list of strings passed to the checkin program by -\\[vc-register]. If nil, use the value of `vc-register-switches'. -If t, use no switches." - :type '(choice (const :tag "Unspecified" nil) - (const :tag "None" t) - (string :tag "Argument String") - (repeat :tag "Argument List" :value ("") string)) - :version "22.1" - :group 'vc) - -(defcustom vc-mcvs-diff-switches nil - "String or list of strings specifying switches for Meta-CVS diff under VC. -If nil, use the value of `vc-diff-switches'. If t, use no switches." - :type '(choice (const :tag "Unspecified" nil) - (const :tag "None" t) - (string :tag "Argument String") - (repeat :tag "Argument List" :value ("") string)) - :version "22.1" - :group 'vc) - -(defcustom vc-mcvs-header vc-cvs-header - "Header keywords to be inserted by `vc-insert-headers'." - :version "24.1" ; no longer consult the obsolete vc-header-alist - :type '(repeat string) - :group 'vc) - -(defcustom vc-mcvs-use-edit vc-cvs-use-edit - "Non-nil means to use `cvs edit' to \"check out\" a file. -This is only meaningful if you don't use the implicit checkout model -\(i.e. if you have $CVSREAD set)." - :type 'boolean - :version "22.1" - :group 'vc) - -;;; Properties of the backend - -(defalias 'vc-mcvs-revision-granularity 'vc-cvs-revision-granularity) -(defalias 'vc-mcvs-checkout-model 'vc-cvs-checkout-model) - -;;; -;;; State-querying functions -;;; - -;;;###autoload (defun vc-mcvs-registered (file) -;;;###autoload (if (vc-find-root file "MCVS/CVS") -;;;###autoload (progn -;;;###autoload (load "vc-mcvs") -;;;###autoload (vc-mcvs-registered file)))) - -(defun vc-mcvs-root (file) - "Return the root directory of a Meta-CVS project, if any." - (or (vc-file-getprop file 'mcvs-root) - (vc-file-setprop file 'mcvs-root (vc-find-root file "MCVS/CVS")))) - -(defun vc-mcvs-read (file) - (if (file-readable-p file) - (with-temp-buffer - (insert-file-contents file) - (goto-char (point-min)) - (read (current-buffer))))) - -(defun vc-mcvs-map-file (dir file) - (let ((map (vc-mcvs-read (expand-file-name "MCVS/MAP" dir))) - inode) - (dolist (x map inode) - (if (equal (nth 2 x) file) (setq inode (nth 1 x)))))) - -(defun vc-mcvs-registered (file) - (let (root inode cvsfile) - (when (and (setq root (vc-mcvs-root file)) - (setq inode (vc-mcvs-map-file - root (file-relative-name file root)))) - (vc-file-setprop file 'mcvs-inode inode) - ;; Avoid calling `mcvs diff' in vc-workfile-unchanged-p. - (vc-file-setprop file 'vc-checkout-time - (if (vc-cvs-registered - (setq cvsfile (expand-file-name inode root))) - (vc-file-getprop cvsfile 'vc-checkout-time) - ;; The file might not be registered yet because - ;; of lazy-adding. - 0)) - t))) - -(defun vc-mcvs-state (file) - ;; This would assume the Meta-CVS sandbox is synchronized. - ;; (vc-mcvs-cvs state file)) - "Meta-CVS-specific version of `vc-state'." - (if (vc-stay-local-p file) - (let ((state (vc-file-getprop file 'vc-state))) - ;; If we should stay local, use the heuristic but only if - ;; we don't have a more precise state already available. - (if (memq state '(up-to-date edited)) - (vc-mcvs-state-heuristic file) - state)) - (with-temp-buffer - (setq default-directory (vc-mcvs-root file)) - (vc-mcvs-command t 0 file "status") - (vc-cvs-parse-status t)))) - - -(defalias 'vc-mcvs-state-heuristic 'vc-cvs-state-heuristic) - -(defun vc-mcvs-working-revision (file) - (vc-cvs-working-revision - (expand-file-name (vc-file-getprop file 'mcvs-inode) - (vc-file-getprop file 'mcvs-root)))) - -;;; -;;; State-changing functions -;;; -(autoload 'vc-checkout "vc") -(autoload 'vc-switches "vc") - -(defun vc-mcvs-register (files &optional rev comment) - "Register FILES into the Meta-CVS version-control system. -COMMENT can be used to provide an initial description of FILE. -Passes either `vc-mcvs-register-switches' or `vc-register-switches' -to the Meta-CVS command." - ;; FIXME: multiple-file case should be made to work. - (if (> (length files) 1) (error "Registering filesets is not yet supported")) - (let* ((file (car files)) - (filename (file-name-nondirectory file)) - (extpos (string-match "\\." filename)) - (ext (if extpos (substring filename (1+ extpos)))) - (root (vc-mcvs-root file)) - (types-file (expand-file-name "MCVS/TYPES" root)) - (map-file (expand-file-name "MCVS/MAP" root)) - (types (vc-mcvs-read types-file))) - ;; Make sure meta files like MCVS/MAP are not read-only (happens with - ;; CVSREAD) since Meta-CVS doesn't pay attention to it at all and goes - ;; belly-up. - (unless (file-writable-p map-file) - (vc-checkout map-file t)) - (unless (or (file-writable-p types-file) (not (file-exists-p types-file))) - (vc-checkout types-file t)) - ;; Make sure the `mcvs add' will not fire up the CVSEDITOR - ;; to add a rule for the given file's extension. - (when (and ext (not (assoc ext types))) - (let ((type (completing-read "Type to use (default): " - '("default" "name-only" "keep-old" - "binary" "value-only") - nil t nil nil "default"))) - (push (list ext (make-symbol (upcase (concat ":" type)))) types) - (setq types (sort types (lambda (x y) (string< (car x) (car y))))) - (with-current-buffer (find-file-noselect types-file) - (erase-buffer) - (pp types (current-buffer)) - (save-buffer) - (unless (get-buffer-window (current-buffer) t) - (kill-buffer (current-buffer)))))) - ;; Now do the ADD. - (prog1 (apply 'vc-mcvs-command nil 0 file - "add" - (and comment (string-match "[^\t\n ]" comment) - (concat "-m" comment)) - (vc-switches 'MCVS 'register)) - ;; I'm not sure exactly why, but if we don't setup the inode and root - ;; prop of the file, things break later on in vc-mode-line that - ;; ends up calling vc-mcvs-working-revision. - ;; We also need to set vc-checkout-time so that vc-workfile-unchanged-p - ;; doesn't try to call `mcvs diff' on the file. - (vc-mcvs-registered file)))) - -(defalias 'vc-mcvs-responsible-p 'vc-mcvs-root - "Return non-nil if CVS thinks it is responsible for FILE.") - -(defalias 'vc-cvs-could-register 'vc-cvs-responsible-p - "Return non-nil if FILE could be registered in Meta-CVS. -This is only possible if Meta-CVS is responsible for FILE's directory.") - -(defun vc-mcvs-checkin (files rev comment) - "Meta-CVS-specific version of `vc-backend-checkin'." - (unless (or (not rev) (vc-mcvs-valid-revision-number-p rev)) - (if (not (vc-mcvs-valid-symbolic-tag-name-p rev)) - (error "%s is not a valid symbolic tag name" rev) - ;; If the input revision is a valid symbolic tag name, we create it - ;; as a branch, commit and switch to it. - ;; This file-specific form of branching is deprecated. - ;; We can't use `mcvs branch' and `mcvs switch' because they cannot - ;; be applied just to this one file. - (apply 'vc-mcvs-command nil 0 files "tag" "-b" (list rev)) - (apply 'vc-mcvs-command nil 0 files "update" "-r" (list rev)) - (mapc (lambda (file) (vc-file-setprop file 'vc-mcvs-sticky-tag rev)) - files) - (setq rev nil))) - ;; This commit might cvs-commit several files (e.g. MAP and TYPES) - ;; so using numbered revs here is dangerous and somewhat meaningless. - (when rev (error "Cannot commit to a specific revision number")) - (let ((status (apply 'vc-mcvs-command nil 1 files - "ci" "-m" comment - (vc-switches 'MCVS 'checkin)))) - (set-buffer "*vc*") - (goto-char (point-min)) - (when (not (zerop status)) - ;; Check checkin problem. - (cond - ((re-search-forward "Up-to-date check failed" nil t) - (mapc (lambda (file) (vc-file-setprop file 'vc-state 'needs-merge)) - files) - (error "%s" (substitute-command-keys - (concat "Up-to-date check failed: " - "type \\[vc-next-action] to merge in changes")))) - (t - (pop-to-buffer (current-buffer)) - (goto-char (point-min)) - (shrink-window-if-larger-than-buffer) - (error "Check-in failed")))) - ;; Single-file commit? Then update the revision by parsing the buffer. - ;; Otherwise we can't necessarily tell what goes with what; clear - ;; its properties so they have to be refetched. - (if (= (length files) 1) - (vc-file-setprop - (car files) 'vc-working-revision - (vc-parse-buffer "^\\(new\\|initial\\) revision: \\([0-9.]+\\)" 2)) - (mapc (lambda (file) (vc-file-clearprops file)) files)) - ;; Anyway, forget the checkout model of the file, because we might have - ;; guessed wrong when we found the file. After commit, we can - ;; tell it from the permissions of the file (see - ;; vc-mcvs-checkout-model). - (mapc (lambda (file) (vc-file-setprop file 'vc-checkout-model nil)) - files) - - ;; if this was an explicit check-in (does not include creation of - ;; a branch), remove the sticky tag. - (if (and rev (not (vc-mcvs-valid-symbolic-tag-name-p rev))) - (vc-mcvs-command nil 0 files "update" "-A")))) - -(defun vc-mcvs-find-revision (file rev buffer) - (apply 'vc-mcvs-command - buffer 0 file - "-Q" ; suppress diagnostic output - "update" - (and rev (not (string= rev "")) - (concat "-r" rev)) - "-p" - (vc-switches 'MCVS 'checkout))) - -(defun vc-mcvs-checkout (file &optional editable rev) - (message "Checking out %s..." file) - (with-current-buffer (or (get-file-buffer file) (current-buffer)) - (vc-mcvs-update file editable rev (vc-switches 'MCVS 'checkout))) - (vc-mode-line file) - (message "Checking out %s...done" file)) - -(defun vc-mcvs-update (file editable rev switches) - (if (and (file-exists-p file) (not rev)) - ;; If no revision was specified, just make the file writable - ;; if necessary (using `cvs-edit' if requested). - (and editable (not (eq (vc-mcvs-checkout-model (list file)) 'implicit)) - (if vc-mcvs-use-edit - (vc-mcvs-command nil 0 file "edit") - (set-file-modes file (logior (file-modes file) 128)) - (if (equal file buffer-file-name) (read-only-mode -1)))) - ;; Check out a particular revision (or recreate the file). - (vc-file-setprop file 'vc-working-revision nil) - (apply 'vc-mcvs-command nil 0 file - (if editable "-w") - "update" - ;; default for verbose checkout: clear the sticky tag so - ;; that the actual update will get the head of the trunk - (if (or (not rev) (string= rev "")) - "-A" - (concat "-r" rev)) - switches))) - -(defun vc-mcvs-rename-file (old new) - (vc-mcvs-command nil 0 new "move" (file-relative-name old))) - -(autoload 'vc-default-revert "vc") - -(defun vc-mcvs-revert (file &optional contents-done) - "Revert FILE to the working revision it was based on." - (vc-default-revert 'MCVS file contents-done) - (unless (eq (vc-mcvs-checkout-model (list file)) 'implicit) - (if vc-mcvs-use-edit - (vc-mcvs-command nil 0 file "unedit") - ;; Make the file read-only by switching off all w-bits - (set-file-modes file (logand (file-modes file) 3950))))) - -(defun vc-mcvs-merge (file first-revision &optional second-revision) - "Merge changes into current working copy of FILE. -The changes are between FIRST-REVISION and SECOND-REVISION." - (vc-mcvs-command nil 0 file - "update" "-kk" - (concat "-j" first-revision) - (concat "-j" second-revision)) - (vc-file-setprop file 'vc-state 'edited) - (with-current-buffer (get-buffer "*vc*") - (goto-char (point-min)) - (if (re-search-forward "conflicts during merge" nil t) - 1 ; signal error - 0))) ; signal success - -(defun vc-mcvs-merge-news (file) - "Merge in any new changes made to FILE." - (message "Merging changes into %s..." file) - ;; (vc-file-setprop file 'vc-working-revision nil) - (vc-file-setprop file 'vc-checkout-time 0) - (vc-mcvs-command nil 0 file "update") - ;; Analyze the merge result reported by Meta-CVS, and set - ;; file properties accordingly. - (with-current-buffer (get-buffer "*vc*") - (goto-char (point-min)) - ;; get new working revision - (if (re-search-forward - "^Merging differences between [0-9.]* and \\([0-9.]*\\) into" nil t) - (vc-file-setprop file 'vc-working-revision (match-string 1)) - (vc-file-setprop file 'vc-working-revision nil)) - ;; get file status - (prog1 - (if (eq (buffer-size) 0) - 0 ;; there were no news; indicate success - (if (re-search-forward - (concat "^\\([CMUP] \\)?" - ".*" - "\\( already contains the differences between \\)?") - nil t) - (cond - ;; Merge successful, we are in sync with repository now - ((or (match-string 2) - (string= (match-string 1) "U ") - (string= (match-string 1) "P ")) - (vc-file-setprop file 'vc-state 'up-to-date) - (vc-file-setprop file 'vc-checkout-time - (nth 5 (file-attributes file))) - 0);; indicate success to the caller - ;; Merge successful, but our own changes are still in the file - ((string= (match-string 1) "M ") - (vc-file-setprop file 'vc-state 'edited) - 0);; indicate success to the caller - ;; Conflicts detected! - (t - (vc-file-setprop file 'vc-state 'edited) - 1);; signal the error to the caller - ) - (pop-to-buffer "*vc*") - (error "Couldn't analyze mcvs update result"))) - (message "Merging changes into %s...done" file)))) - -(defun vc-mcvs-modify-change-comment (files rev comment) - "Modify the change comments for FILES on a specified REV. -Will fail unless you have administrative privileges on the repo." - (vc-mcvs-command nil 0 files "rcs" (concat "-m" comment ":" rev))) - - -;;; -;;; History functions -;;; - -(defun vc-mcvs-print-log (files &optional buffer) - "Get change log associated with FILES." - (let ((default-directory (vc-mcvs-root (car files)))) - ;; Run the command from the root dir so that `mcvs filt' returns - ;; valid relative names. - (vc-mcvs-command - buffer - (if (vc-stay-local-p files) 'async 0) - files "log"))) - -(defun vc-mcvs-diff (files &optional oldvers newvers buffer) - "Get a difference report using Meta-CVS between two revisions of FILES." - (let* ((async (and (not vc-disable-async-diff) - (vc-stay-local-p files))) - ;; Run the command from the root dir so that `mcvs filt' returns - ;; valid relative names. - (default-directory (vc-mcvs-root (car files))) - (status - (apply 'vc-mcvs-command (or buffer "*vc-diff*") - (if async 'async 1) - files "diff" - (and oldvers (concat "-r" oldvers)) - (and newvers (concat "-r" newvers)) - (vc-switches 'MCVS 'diff)))) - (if async 1 status))) ; async diff, pessimistic assumption. - -(defun vc-mcvs-annotate-command (file buffer &optional revision) - "Execute \"mcvs annotate\" on FILE, inserting the contents in BUFFER. -Optional arg REVISION is a revision to annotate from." - (vc-mcvs-command - buffer - (if (vc-stay-local-p file) 'async 0) - file "annotate" (if revision (concat "-r" revision))) - (with-current-buffer buffer - (goto-char (point-min)) - (re-search-forward "^[0-9]") - (delete-region (point-min) (1- (point))))) - -(defalias 'vc-mcvs-annotate-current-time 'vc-cvs-annotate-current-time) -(defalias 'vc-mcvs-annotate-time 'vc-cvs-annotate-time) - -;;; -;;; Tag system -;;; - -(defun vc-mcvs-create-tag (dir name branchp) - "Assign to DIR's current revision a given NAME. -If BRANCHP is non-nil, the name is created as a branch (and the current -workspace is immediately moved to that new branch)." - (if (not branchp) - (vc-mcvs-command nil 0 dir "tag" "-c" name) - (vc-mcvs-command nil 0 dir "branch" name) - (vc-mcvs-command nil 0 dir "switch" name))) - -;; vc-mcvs-command calls the autoloaded vc-do-command from vc-dispatcher. -(declare-function vc-resynch-buffer "vc-dispatcher" - (file &optional keep noquery reset-vc-info)) - -(defun vc-mcvs-retrieve-tag (dir name update) - "Retrieve a tag at and below DIR. -NAME is the name of the tag; if it is empty, do a `cvs update'. -If UPDATE is non-nil, then update (resynch) any affected buffers." - (with-current-buffer (get-buffer-create "*vc*") - (let ((default-directory dir) - (sticky-tag)) - (erase-buffer) - (if (or (not name) (string= name "")) - (vc-mcvs-command t 0 nil "update") - (vc-mcvs-command t 0 nil "update" "-r" name) - (setq sticky-tag name)) - (when update - (goto-char (point-min)) - (while (not (eobp)) - (if (looking-at "\\([CMUP]\\) \\(.*\\)") - (let* ((file (expand-file-name (match-string 2) dir)) - (state (match-string 1)) - (buffer (find-buffer-visiting file))) - (when buffer - (cond - ((or (string= state "U") - (string= state "P")) - (vc-file-setprop file 'vc-state 'up-to-date) - (vc-file-setprop file 'vc-working-revision nil) - (vc-file-setprop file 'vc-checkout-time - (nth 5 (file-attributes file)))) - ((or (string= state "M") - (string= state "C")) - (vc-file-setprop file 'vc-state 'edited) - (vc-file-setprop file 'vc-working-revision nil) - (vc-file-setprop file 'vc-checkout-time 0))) - (vc-file-setprop file 'vc-mcvs-sticky-tag sticky-tag) - (vc-resynch-buffer file t t)))) - (forward-line 1)))))) - - -;;; -;;; Miscellaneous -;;; - -(defalias 'vc-mcvs-make-version-backups-p 'vc-stay-local-p - "Return non-nil if version backups should be made for FILE.") -(defalias 'vc-mcvs-check-headers 'vc-cvs-check-headers) - - -;;; -;;; Internal functions -;;; - -(defun vc-mcvs-command (buffer okstatus file &rest flags) - "A wrapper around `vc-do-command' for use in vc-mcvs.el. -The difference to vc-do-command is that this function always invokes `mcvs', -and that it passes `vc-mcvs-global-switches' to it before FLAGS." - (let ((args (append '("--error-terminate") - (if (stringp vc-mcvs-global-switches) - (cons vc-mcvs-global-switches flags) - (append vc-mcvs-global-switches flags))))) - (if (not (member (car flags) '("diff" "log" "status"))) - ;; No need to filter: do it the easy way. - (apply 'vc-do-command (or buffer "*vc*") okstatus "mcvs" file args) - ;; We need to filter the output. - ;; The output of the filter uses filenames relative to the root, - ;; so we need to change the default-directory. - ;; (assert (equal default-directory (vc-mcvs-root file))) - (vc-do-command - (or buffer "*vc*") okstatus "sh" nil "-c" - (concat "mcvs " - (mapconcat - 'shell-quote-argument - (append (remq nil args) - (if file (list (file-relative-name file)))) - " ") - " | mcvs filt"))))) - -(defun vc-mcvs-repository-hostname (dirname) - (vc-cvs-repository-hostname (vc-mcvs-root dirname))) - -(defun vc-mcvs-dir-state-heuristic (dir) - "Find the Meta-CVS state of all files in DIR, using only local information." - (with-temp-buffer - (vc-cvs-get-entries dir) - (goto-char (point-min)) - (while (not (eobp)) - ;; Meta-MCVS-removed files are not taken under VC control. - (when (looking-at "/\\([^/]*\\)/[^/-]") - (let ((file (expand-file-name (match-string 1) dir))) - (unless (vc-file-getprop file 'vc-state) - (vc-cvs-parse-entry file t)))) - (forward-line 1)))) - -(defalias 'vc-mcvs-valid-symbolic-tag-name-p 'vc-cvs-valid-symbolic-tag-name-p) -(defalias 'vc-mcvs-valid-revision-number-p 'vc-cvs-valid-revision-number-p) - -(provide 'vc-mcvs) - -;; ********** READ THIS! ********** -;; -;; This file apparently does not work with the new (as of Emacs 23) -;; VC code. Use at your own risk. Please contact emacs-devel if you -;; can maintain this file and update it to work correctly. -;; -;; ********** READ THIS! ********** - -;;; vc-mcvs.el ends here diff --git a/lisp/vc/log-view.el b/lisp/vc/log-view.el index 34ffb3c..63d5003 100644 --- a/lisp/vc/log-view.el +++ b/lisp/vc/log-view.el @@ -542,7 +542,7 @@ If called interactively, visit the version at point." (setq en (point)) (or (log-view-current-entry nil t) (throw 'beginning-of-buffer nil)) - (cond ((memq backend '(SCCS RCS CVS MCVS SVN)) + (cond ((memq backend '(SCCS RCS CVS SVN)) (forward-line 2)) ((eq backend 'Hg) (forward-line 4) diff --git a/lisp/vc/vc-hooks.el b/lisp/vc/vc-hooks.el index 4b5ec27..b3644cc 100644 --- a/lisp/vc/vc-hooks.el +++ b/lisp/vc/vc-hooks.el @@ -122,7 +122,7 @@ An empty list disables VC altogether." :group 'vc) ;; Note: we don't actually have a darcs back end yet. -;; Also, Meta-CVS (corresponding to MCVS) and Arch are unsupported. +;; Also, Arch is unsupported, and the Meta-CVS back end has been removed. ;; The Arch back end will be retrieved and fixed if it is ever required. (defcustom vc-directory-exclusion-list (purecopy '("SCCS" "RCS" "CVS" "MCVS" ".src" ".svn" ".git" ".hg" ".bzr"